1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/*
$License:
Copyright (C) 2010 InvenSense Corporation, All Rights Reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
$
*/
/**
* @defgroup ACCELDL (Motion Library - Accelerometer Driver Layer)
* @brief Provides the interface to setup and handle an accelerometers
* connected to the secondary I2C interface of the gyroscope.
*
* @{
* @file bma150.c
* @brief Accelerometer setup and handling methods.
*/
/* ------------------ */
/* - Include Files. - */
/* ------------------ */
#ifdef __KERNEL__
#include <linux/module.h>
#endif
#include "mpu.h"
#include "mlos.h"
#include "mlsl.h"
/* --------------------- */
/* - Variables. - */
/* --------------------- */
/*********************************************
Accelerometer Initialization Functions
**********************************************/
static int bma150_suspend(void *mlsl_handle,
struct ext_slave_descr *slave,
struct ext_slave_platform_data *pdata)
{
int result;
result =
MLSLSerialWriteSingle(mlsl_handle, pdata->address, 0x0a, 0x01);
MLOSSleep(3); /* 3 ms powerup time maximum */
ERROR_CHECK(result);
return result;
}
/* full scale setting - register and mask */
#define ACCEL_BOSCH_CTRL_REG (0x14)
#define ACCEL_BOSCH_CTRL_MASK (0x18)
static int bma150_resume(void *mlsl_handle,
struct ext_slave_descr *slave,
struct ext_slave_platform_data *pdata)
{
int result;
unsigned char reg = 0;
/* Soft reset */
result =
MLSLSerialWriteSingle(mlsl_handle, pdata->address, 0x0a, 0x02);
ERROR_CHECK(result);
MLOSSleep(3);
result =
MLSLSerialRead(mlsl_handle, pdata->address, 0x14, 1, ®);
ERROR_CHECK(result);
/* Bandwidth */
reg &= 0xc0;
reg |= 3; /* 3=190 Hz */
/* Full Scale */
reg &= ~ACCEL_BOSCH_CTRL_MASK;
if (slave->range.mantissa == 4)
reg |= 0x08;
else if (slave->range.mantissa == 8)
reg |= 0x10;
else {
slave->range.mantissa = 2;
reg |= 0x00;
}
slave->range.fraction = 0;
result =
MLSLSerialWriteSingle(mlsl_handle, pdata->address, 0x14, reg);
ERROR_CHECK(result);
return result;
}
static int bma150_read(void *mlsl_handle,
struct ext_slave_descr *slave,
struct ext_slave_platform_data *pdata,
unsigned char *data)
{
int result;
result = MLSLSerialRead(mlsl_handle, pdata->address,
slave->reg, slave->len, data);
return result;
}
static struct ext_slave_descr bma150_descr = {
/*.init = */ NULL,
/*.exit = */ NULL,
/*.suspend = */ bma150_suspend,
/*.resume = */ bma150_resume,
/*.read = */ bma150_read,
/*.config = */ NULL,
/*.get_config = */ NULL,
/*.name = */ "bma150",
/*.type = */ EXT_SLAVE_TYPE_ACCELEROMETER,
/*.id = */ ACCEL_ID_BMA150,
/*.reg = */ 0x02,
/*.len = */ 6,
/*.endian = */ EXT_SLAVE_LITTLE_ENDIAN,
/*.range = */ {2, 0},
};
struct ext_slave_descr *bma150_get_slave_descr(void)
{
return &bma150_descr;
}
EXPORT_SYMBOL(bma150_get_slave_descr);
#ifdef __KERNEL__
MODULE_AUTHOR("Invensense");
MODULE_DESCRIPTION("User space IRQ handler for MPU3xxx devices");
MODULE_LICENSE("GPL");
MODULE_ALIAS("bma");
#endif
/**
* @}
*/
|