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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
/*
$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 mmc314x.c
* @brief Magnetometer setup and handling methods for ???? compass.
*/
/* ------------------ */
/* - Include Files. - */
/* ------------------ */
#ifdef __KERNEL__
#include <linux/module.h>
#endif
#include "mpu.h"
#include "mlsl.h"
#include "mlos.h"
#include <log.h>
#undef MPL_LOG_TAG
#define MPL_LOG_TAG "MPL-compass"
/* --------------------- */
/* - Variables. - */
/* --------------------- */
static int reset_int = 1000;
static int read_count = 1;
static char reset_mode; /* in Z-init section */
#define MMC314X_REG_ST (0x00)
#define MMC314X_REG_X_MSB (0x01)
#define MMC314X_CNTL_MODE_WAKE_UP (0x01)
#define MMC314X_CNTL_MODE_SET (0x02)
#define MMC314X_CNTL_MODE_RESET (0x04)
/*****************************************
Accelerometer Initialization Functions
*****************************************/
int mmc314x_suspend(void *mlsl_handle,
struct ext_slave_descr *slave,
struct ext_slave_platform_data *pdata)
{
int result = ML_SUCCESS;
return result;
}
int mmc314x_resume(void *mlsl_handle,
struct ext_slave_descr *slave,
struct ext_slave_platform_data *pdata)
{
int result;
result =
MLSLSerialWriteSingle(mlsl_handle, pdata->address,
MMC314X_REG_ST, MMC314X_CNTL_MODE_RESET);
ERROR_CHECK(result);
MLOSSleep(10);
result =
MLSLSerialWriteSingle(mlsl_handle, pdata->address,
MMC314X_REG_ST, MMC314X_CNTL_MODE_SET);
ERROR_CHECK(result);
MLOSSleep(10);
read_count = 1;
return ML_SUCCESS;
}
int mmc314x_read(void *mlsl_handle,
struct ext_slave_descr *slave,
struct ext_slave_platform_data *pdata,
unsigned char *data)
{
int result, ii;
short tmp[3];
unsigned char tmpdata[6];
if (read_count > 1000)
read_count = 1;
result =
MLSLSerialRead(mlsl_handle, pdata->address, MMC314X_REG_X_MSB,
6, (unsigned char *) data);
ERROR_CHECK(result);
for (ii = 0; ii < 6; ii++)
tmpdata[ii] = data[ii];
for (ii = 0; ii < 3; ii++) {
tmp[ii] =
(short) ((tmpdata[2 * ii] << 8) + tmpdata[2 * ii + 1]);
tmp[ii] = tmp[ii] - 4096;
tmp[ii] = tmp[ii] * 16;
}
for (ii = 0; ii < 3; ii++) {
data[2 * ii] = (unsigned char) (tmp[ii] >> 8);
data[2 * ii + 1] = (unsigned char) (tmp[ii]);
}
if (read_count % reset_int == 0) {
if (reset_mode) {
result =
MLSLSerialWriteSingle(mlsl_handle,
pdata->address,
MMC314X_REG_ST,
MMC314X_CNTL_MODE_RESET);
ERROR_CHECK(result);
reset_mode = 0;
return ML_ERROR_COMPASS_DATA_NOT_READY;
} else {
result =
MLSLSerialWriteSingle(mlsl_handle,
pdata->address,
MMC314X_REG_ST,
MMC314X_CNTL_MODE_SET);
ERROR_CHECK(result);
reset_mode = 1;
read_count++;
return ML_ERROR_COMPASS_DATA_NOT_READY;
}
}
result =
MLSLSerialWriteSingle(mlsl_handle, pdata->address,
MMC314X_REG_ST,
MMC314X_CNTL_MODE_WAKE_UP);
ERROR_CHECK(result);
read_count++;
return ML_SUCCESS;
}
struct ext_slave_descr mmc314x_descr = {
/*.init = */ NULL,
/*.exit = */ NULL,
/*.suspend = */ mmc314x_suspend,
/*.resume = */ mmc314x_resume,
/*.read = */ mmc314x_read,
/*.config = */ NULL,
/*.get_config = */ NULL,
/*.name = */ "mmc314x",
/*.type = */ EXT_SLAVE_TYPE_COMPASS,
/*.id = */ COMPASS_ID_MMC314X,
/*.reg = */ 0x01,
/*.len = */ 6,
/*.endian = */ EXT_SLAVE_BIG_ENDIAN,
/*.range = */ {400, 0},
};
struct ext_slave_descr *mmc314x_get_slave_descr(void)
{
return &mmc314x_descr;
}
EXPORT_SYMBOL(mmc314x_get_slave_descr);
/**
* @}
**/
|