altosdroid: Implement voice just like altosui
[fw/altos] / src / drivers / ao_mpu6000.c
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include <ao.h>
19 #include <ao_mpu6000.h>
20 #include <ao_exti.h>
21
22 static uint8_t  ao_mpu6000_wake;
23 static uint8_t  ao_mpu6000_configured;
24
25 static void
26 ao_mpu6000_write(uint8_t addr, uint8_t *data, uint8_t len)
27 {
28         ao_i2c_get(AO_MPU6000_I2C_INDEX);
29         ao_i2c_start(AO_MPU6000_I2C_INDEX, MPU6000_ADDR_WRITE);
30         ao_i2c_send(&addr, 1, AO_MPU6000_I2C_INDEX, FALSE);
31         ao_i2c_send(data, len, AO_MPU6000_I2C_INDEX, TRUE);
32         ao_i2c_put(AO_MPU6000_I2C_INDEX);
33 }
34
35 static void
36 ao_mpu6000_reg_write(uint8_t addr, uint8_t value)
37 {
38         uint8_t d[2] = { addr, value };
39         ao_i2c_get(AO_MPU6000_I2C_INDEX);
40         ao_i2c_start(AO_MPU6000_I2C_INDEX, MPU6000_ADDR_WRITE);
41         ao_i2c_send(d, 2, AO_MPU6000_I2C_INDEX, TRUE);
42         ao_i2c_put(AO_MPU6000_I2C_INDEX);
43 }
44
45 static void
46 ao_mpu6000_read(uint8_t addr, void *data, uint8_t len)
47 {
48         ao_i2c_get(AO_MPU6000_I2C_INDEX);
49         ao_i2c_start(AO_MPU6000_I2C_INDEX, MPU6000_ADDR_WRITE);
50         ao_i2c_send(&addr, 1, AO_MPU6000_I2C_INDEX, FALSE);
51         ao_i2c_start(AO_MPU6000_I2C_INDEX, MPU6000_ADDR_READ);
52         ao_i2c_recv(data, len, AO_MPU6000_I2C_INDEX, TRUE);
53         ao_i2c_put(AO_MPU6000_I2C_INDEX);
54 }
55
56 static uint8_t
57 ao_mpu6000_reg_read(uint8_t addr)
58 {
59         uint8_t value;
60         ao_i2c_get(AO_MPU6000_I2C_INDEX);
61         ao_i2c_start(AO_MPU6000_I2C_INDEX, MPU6000_ADDR_WRITE);
62         ao_i2c_send(&addr, 1, AO_MPU6000_I2C_INDEX, FALSE);
63         ao_i2c_start(AO_MPU6000_I2C_INDEX, MPU6000_ADDR_READ);
64         ao_i2c_recv(&value, 1, AO_MPU6000_I2C_INDEX, TRUE);
65         ao_i2c_put(AO_MPU6000_I2C_INDEX);
66         return value;
67 }
68
69 static void
70 ao_mpu6000_sample(struct ao_mpu6000_sample *sample)
71 {
72         uint16_t        *d = (uint16_t *) sample;
73         int             i = sizeof (*sample) / 2;
74
75         ao_mpu6000_read(MPU6000_ACCEL_XOUT_H, sample, sizeof (*sample));
76 #if __BYTE_ORDER == __LITTLE_ENDIAN
77         /* byte swap */
78         while (i--) {
79                 uint16_t        t = *d;
80                 *d++ = (t >> 8) | (t << 8);
81         }
82 #endif
83 }
84
85 #define G       981     /* in cm/s² */
86
87 static int16_t /* cm/s² */
88 ao_mpu6000_accel(int16_t v)
89 {
90         return (int16_t) ((v * (int32_t) (16.0 * 980.665 + 0.5)) / 32767);
91 }
92
93 static int16_t  /* deg*10/s */
94 ao_mpu6000_gyro(int16_t v)
95 {
96         return (int16_t) ((v * (int32_t) 20000) / 32767);
97 }
98
99 static uint8_t
100 ao_mpu6000_accel_check(int16_t normal, int16_t test, char *which)
101 {
102         int16_t diff = test - normal;
103
104         if (diff < MPU6000_ST_ACCEL(16) / 2) {
105                 return 1;
106         }
107         if (diff > MPU6000_ST_ACCEL(16) * 2) {
108                 return 1;
109         }
110         return 0;
111 }
112
113 static uint8_t
114 ao_mpu6000_gyro_check(int16_t normal, int16_t test, char *which)
115 {
116         int16_t diff = test - normal;
117
118         if (diff < 0)
119                 diff = -diff;
120         if (diff < MPU6000_ST_GYRO(2000) / 2) {
121                 return 1;
122         }
123         if (diff > MPU6000_ST_GYRO(2000) * 2) {
124                 return 1;
125         }
126         return 0;
127 }
128
129 static void
130 ao_mpu6000_setup(void)
131 {
132         struct ao_mpu6000_sample        normal_mode, test_mode;
133         int                             errors =0;
134
135         if (ao_mpu6000_configured)
136                 return;
137
138         /* Reset the whole chip */
139         
140         ao_mpu6000_reg_write(MPU6000_PWR_MGMT_1,
141                              (1 << MPU6000_PWR_MGMT_1_DEVICE_RESET));
142
143         /* Wait for it to reset. If we talk too quickly, it appears to get confused */
144         ao_delay(AO_MS_TO_TICKS(100));
145
146         /* Reset signal conditioning */
147         ao_mpu6000_reg_write(MPU6000_USER_CONTROL,
148                              (0 << MPU6000_USER_CONTROL_FIFO_EN) |
149                              (0 << MPU6000_USER_CONTROL_I2C_MST_EN) |
150                              (0 << MPU6000_USER_CONTROL_I2C_IF_DIS) |
151                              (0 << MPU6000_USER_CONTROL_FIFO_RESET) |
152                              (0 << MPU6000_USER_CONTROL_I2C_MST_RESET) |
153                              (1 << MPU6000_USER_CONTROL_SIG_COND_RESET));
154
155         while (ao_mpu6000_reg_read(MPU6000_USER_CONTROL) & (1 << MPU6000_USER_CONTROL_SIG_COND_RESET))
156                 ao_yield();
157
158         /* Reset signal paths */
159         ao_mpu6000_reg_write(MPU6000_SIGNAL_PATH_RESET,
160                              (1 << MPU6000_SIGNAL_PATH_RESET_GYRO_RESET) |
161                              (1 << MPU6000_SIGNAL_PATH_RESET_ACCEL_RESET) |
162                              (1 << MPU6000_SIGNAL_PATH_RESET_TEMP_RESET));
163
164         ao_mpu6000_reg_write(MPU6000_SIGNAL_PATH_RESET,
165                              (0 << MPU6000_SIGNAL_PATH_RESET_GYRO_RESET) |
166                              (0 << MPU6000_SIGNAL_PATH_RESET_ACCEL_RESET) |
167                              (0 << MPU6000_SIGNAL_PATH_RESET_TEMP_RESET));
168
169         /* Select clocks, disable sleep */
170         ao_mpu6000_reg_write(MPU6000_PWR_MGMT_1,
171                              (0 << MPU6000_PWR_MGMT_1_DEVICE_RESET) |
172                              (0 << MPU6000_PWR_MGMT_1_SLEEP) |
173                              (0 << MPU6000_PWR_MGMT_1_CYCLE) |
174                              (0 << MPU6000_PWR_MGMT_1_TEMP_DIS) |
175                              (MPU6000_PWR_MGMT_1_CLKSEL_PLL_X_AXIS << MPU6000_PWR_MGMT_1_CLKSEL));
176
177         /* Set sample rate divider to sample at full speed
178         ao_mpu6000_reg_write(MPU6000_SMPRT_DIV, 0);
179
180         /* Disable filtering */
181         ao_mpu6000_reg_write(MPU6000_CONFIG,
182                              (MPU6000_CONFIG_EXT_SYNC_SET_DISABLED << MPU6000_CONFIG_EXT_SYNC_SET) |
183                              (MPU6000_CONFIG_DLPF_CFG_260_256 << MPU6000_CONFIG_DLPF_CFG));
184
185         /* Configure accelerometer to +/-16G in self-test mode */
186         ao_mpu6000_reg_write(MPU6000_ACCEL_CONFIG,
187                              (1 << MPU600_ACCEL_CONFIG_XA_ST) |
188                              (1 << MPU600_ACCEL_CONFIG_YA_ST) |
189                              (1 << MPU600_ACCEL_CONFIG_ZA_ST) |
190                              (MPU600_ACCEL_CONFIG_AFS_SEL_16G << MPU600_ACCEL_CONFIG_AFS_SEL));
191
192         /* Configure gyro to +/- 2000°/s in self-test mode */
193         ao_mpu6000_reg_write(MPU6000_GYRO_CONFIG,
194                              (1 << MPU600_GYRO_CONFIG_XG_ST) |
195                              (1 << MPU600_GYRO_CONFIG_YG_ST) |
196                              (1 << MPU600_GYRO_CONFIG_ZG_ST) |
197                              (MPU600_GYRO_CONFIG_FS_SEL_2000 << MPU600_GYRO_CONFIG_FS_SEL));
198
199         ao_delay(AO_MS_TO_TICKS(200));
200         ao_mpu6000_sample(&test_mode);
201
202         /* Configure accelerometer to +/-16G */
203         ao_mpu6000_reg_write(MPU6000_ACCEL_CONFIG,
204                              (0 << MPU600_ACCEL_CONFIG_XA_ST) |
205                              (0 << MPU600_ACCEL_CONFIG_YA_ST) |
206                              (0 << MPU600_ACCEL_CONFIG_ZA_ST) |
207                              (MPU600_ACCEL_CONFIG_AFS_SEL_16G << MPU600_ACCEL_CONFIG_AFS_SEL));
208
209         /* Configure gyro to +/- 2000°/s */
210         ao_mpu6000_reg_write(MPU6000_GYRO_CONFIG,
211                              (0 << MPU600_GYRO_CONFIG_XG_ST) |
212                              (0 << MPU600_GYRO_CONFIG_YG_ST) |
213                              (0 << MPU600_GYRO_CONFIG_ZG_ST) |
214                              (MPU600_GYRO_CONFIG_FS_SEL_2000 << MPU600_GYRO_CONFIG_FS_SEL));
215
216         ao_delay(AO_MS_TO_TICKS(10));
217         ao_mpu6000_sample(&normal_mode);
218         
219         errors += ao_mpu6000_accel_check(normal_mode.accel_x, test_mode.accel_x, "x");
220         errors += ao_mpu6000_accel_check(normal_mode.accel_y, test_mode.accel_y, "y");
221         errors += ao_mpu6000_accel_check(normal_mode.accel_z, test_mode.accel_z, "z");
222
223         errors += ao_mpu6000_gyro_check(normal_mode.gyro_x, test_mode.gyro_x, "x");
224         errors += ao_mpu6000_gyro_check(normal_mode.gyro_y, test_mode.gyro_y, "y");
225         errors += ao_mpu6000_gyro_check(normal_mode.gyro_z, test_mode.gyro_z, "z");
226
227         if (errors)
228                 ao_panic(AO_PANIC_SELF_TEST);
229
230         /* Filter to about 100Hz, which also sets the gyro rate to 1000Hz */
231         ao_mpu6000_reg_write(MPU6000_CONFIG,
232                              (MPU6000_CONFIG_EXT_SYNC_SET_DISABLED << MPU6000_CONFIG_EXT_SYNC_SET) |
233                              (MPU6000_CONFIG_DLPF_CFG_94_98 << MPU6000_CONFIG_DLPF_CFG));
234
235         /* Set sample rate divider to sample at 200Hz (v = gyro/rate - 1) */
236         ao_mpu6000_reg_write(MPU6000_SMPRT_DIV,
237                              1000 / 200 - 1);
238         
239         ao_delay(AO_MS_TO_TICKS(100));
240         ao_mpu6000_configured = 1;
241 }
242
243 struct ao_mpu6000_sample ao_mpu6000_current;
244 uint8_t ao_mpu6000_valid;
245
246 static void
247 ao_mpu6000(void)
248 {
249         ao_mpu6000_setup();
250         for (;;)
251         {
252                 struct ao_mpu6000_sample ao_mpu6000_next;
253                 ao_mpu6000_sample(&ao_mpu6000_next);
254                 ao_arch_critical(
255                         ao_mpu6000_current = ao_mpu6000_next;
256                         ao_mpu6000_valid = 1;
257                         );
258                 ao_delay(0);
259         }
260 }
261
262 static struct ao_task ao_mpu6000_task;
263
264 static void
265 ao_mpu6000_show(void)
266 {
267         struct ao_mpu6000_sample        sample;
268
269         ao_arch_critical(
270                 sample = ao_mpu6000_current;
271                 );
272         printf ("Accel: %7d %7d %7d Gyro: %7d %7d %7d\n",
273                 sample.accel_x,
274                 sample.accel_y,
275                 sample.accel_z,
276                 sample.gyro_x,
277                 sample.gyro_y,
278                 sample.gyro_z);
279 }
280
281 static const struct ao_cmds ao_mpu6000_cmds[] = {
282         { ao_mpu6000_show,      "I\0Show MPU6000 status" },
283         { 0, NULL }
284 };
285
286 void
287 ao_mpu6000_init(void)
288 {
289         ao_mpu6000_configured = 0;
290         ao_mpu6000_valid = 0;
291
292         ao_add_task(&ao_mpu6000_task, ao_mpu6000, "mpu6000");
293         ao_cmd_register(&ao_mpu6000_cmds[0]);
294 }