1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (C) 2012 Invensense, Inc.
4 */
5 
6 #ifndef INV_MPU_IIO_H_
7 #define INV_MPU_IIO_H_
8 
9 #include <linux/i2c.h>
10 #include <linux/i2c-mux.h>
11 #include <linux/mutex.h>
12 #include <linux/iio/iio.h>
13 #include <linux/iio/buffer.h>
14 #include <linux/regmap.h>
15 #include <linux/iio/sysfs.h>
16 #include <linux/iio/kfifo_buf.h>
17 #include <linux/iio/trigger.h>
18 #include <linux/iio/triggered_buffer.h>
19 #include <linux/iio/trigger_consumer.h>
20 #include <linux/platform_data/invensense_mpu6050.h>
21 
22 /**
23  *  struct inv_mpu6050_reg_map - Notable registers.
24  *  @sample_rate_div:	Divider applied to gyro output rate.
25  *  @lpf:		Configures internal low pass filter.
26  *  @accel_lpf:		Configures accelerometer low pass filter.
27  *  @user_ctrl:		Enables/resets the FIFO.
28  *  @fifo_en:		Determines which data will appear in FIFO.
29  *  @gyro_config:	gyro config register.
30  *  @accl_config:	accel config register
31  *  @fifo_count_h:	Upper byte of FIFO count.
32  *  @fifo_r_w:		FIFO register.
33  *  @raw_gyro:		Address of first gyro register.
34  *  @raw_accl:		Address of first accel register.
35  *  @temperature:	temperature register
36  *  @int_enable:	Interrupt enable register.
37  *  @int_status:	Interrupt status register.
38  *  @pwr_mgmt_1:	Controls chip's power state and clock source.
39  *  @pwr_mgmt_2:	Controls power state of individual sensors.
40  *  @int_pin_cfg;	Controls interrupt pin configuration.
41  *  @accl_offset:	Controls the accelerometer calibration offset.
42  *  @gyro_offset:	Controls the gyroscope calibration offset.
43  *  @i2c_if:		Controls the i2c interface
44  */
45 struct inv_mpu6050_reg_map {
46 	u8 sample_rate_div;
47 	u8 lpf;
48 	u8 accel_lpf;
49 	u8 user_ctrl;
50 	u8 fifo_en;
51 	u8 gyro_config;
52 	u8 accl_config;
53 	u8 fifo_count_h;
54 	u8 fifo_r_w;
55 	u8 raw_gyro;
56 	u8 raw_accl;
57 	u8 temperature;
58 	u8 int_enable;
59 	u8 int_status;
60 	u8 pwr_mgmt_1;
61 	u8 pwr_mgmt_2;
62 	u8 int_pin_cfg;
63 	u8 accl_offset;
64 	u8 gyro_offset;
65 	u8 i2c_if;
66 };
67 
68 /*device enum */
69 enum inv_devices {
70 	INV_MPU6050,
71 	INV_MPU6500,
72 	INV_MPU6515,
73 	INV_MPU6000,
74 	INV_MPU9150,
75 	INV_MPU9250,
76 	INV_MPU9255,
77 	INV_ICM20608,
78 	INV_ICM20602,
79 	INV_NUM_PARTS
80 };
81 
82 /**
83  *  struct inv_mpu6050_chip_config - Cached chip configuration data.
84  *  @fsr:		Full scale range.
85  *  @lpf:		Digital low pass filter frequency.
86  *  @accl_fs:		accel full scale range.
87  *  @accl_fifo_enable:	enable accel data output
88  *  @gyro_fifo_enable:	enable gyro data output
89  *  @magn_fifo_enable:	enable magn data output
90  *  @divider:		chip sample rate divider (sample rate divider - 1)
91  */
92 struct inv_mpu6050_chip_config {
93 	unsigned int fsr:2;
94 	unsigned int lpf:3;
95 	unsigned int accl_fs:2;
96 	unsigned int accl_fifo_enable:1;
97 	unsigned int gyro_fifo_enable:1;
98 	unsigned int magn_fifo_enable:1;
99 	u8 divider;
100 	u8 user_ctrl;
101 };
102 
103 /**
104  *  struct inv_mpu6050_hw - Other important hardware information.
105  *  @whoami:	Self identification byte from WHO_AM_I register
106  *  @name:      name of the chip.
107  *  @reg:   register map of the chip.
108  *  @config:    configuration of the chip.
109  *  @fifo_size:	size of the FIFO in bytes.
110  */
111 struct inv_mpu6050_hw {
112 	u8 whoami;
113 	u8 *name;
114 	const struct inv_mpu6050_reg_map *reg;
115 	const struct inv_mpu6050_chip_config *config;
116 	size_t fifo_size;
117 };
118 
119 /*
120  *  struct inv_mpu6050_state - Driver state variables.
121  *  @lock:              Chip access lock.
122  *  @trig:              IIO trigger.
123  *  @chip_config:	Cached attribute information.
124  *  @reg:		Map of important registers.
125  *  @hw:		Other hardware-specific information.
126  *  @chip_type:		chip type.
127  *  @plat_data:		platform data (deprecated in favor of @orientation).
128  *  @orientation:	sensor chip orientation relative to main hardware.
129  *  @map		regmap pointer.
130  *  @irq		interrupt number.
131  *  @irq_mask		the int_pin_cfg mask to configure interrupt type.
132  *  @chip_period:	chip internal period estimation (~1kHz).
133  *  @it_timestamp:	timestamp from previous interrupt.
134  *  @data_timestamp:	timestamp for next data sample.
135  *  @vdd_supply:	VDD voltage regulator for the chip.
136  *  @vddio_supply	I/O voltage regulator for the chip.
137  *  @magn_disabled:     magnetometer disabled for backward compatibility reason.
138  *  @magn_raw_to_gauss:	coefficient to convert mag raw value to Gauss.
139  *  @magn_orient:       magnetometer sensor chip orientation if available.
140  */
141 struct inv_mpu6050_state {
142 	struct mutex lock;
143 	struct iio_trigger  *trig;
144 	struct inv_mpu6050_chip_config chip_config;
145 	const struct inv_mpu6050_reg_map *reg;
146 	const struct inv_mpu6050_hw *hw;
147 	enum   inv_devices chip_type;
148 	struct i2c_mux_core *muxc;
149 	struct i2c_client *mux_client;
150 	unsigned int powerup_count;
151 	struct inv_mpu6050_platform_data plat_data;
152 	struct iio_mount_matrix orientation;
153 	struct regmap *map;
154 	int irq;
155 	u8 irq_mask;
156 	unsigned skip_samples;
157 	s64 chip_period;
158 	s64 it_timestamp;
159 	s64 data_timestamp;
160 	struct regulator *vdd_supply;
161 	struct regulator *vddio_supply;
162 	bool magn_disabled;
163 	s32 magn_raw_to_gauss[3];
164 	struct iio_mount_matrix magn_orient;
165 };
166 
167 /*register and associated bit definition*/
168 #define INV_MPU6050_REG_ACCEL_OFFSET        0x06
169 #define INV_MPU6050_REG_GYRO_OFFSET         0x13
170 
171 #define INV_MPU6050_REG_SAMPLE_RATE_DIV     0x19
172 #define INV_MPU6050_REG_CONFIG              0x1A
173 #define INV_MPU6050_REG_GYRO_CONFIG         0x1B
174 #define INV_MPU6050_REG_ACCEL_CONFIG        0x1C
175 
176 #define INV_MPU6050_REG_FIFO_EN             0x23
177 #define INV_MPU6050_BIT_SLAVE_0             0x01
178 #define INV_MPU6050_BIT_SLAVE_1             0x02
179 #define INV_MPU6050_BIT_SLAVE_2             0x04
180 #define INV_MPU6050_BIT_ACCEL_OUT           0x08
181 #define INV_MPU6050_BITS_GYRO_OUT           0x70
182 
183 #define INV_MPU6050_REG_I2C_MST_CTRL        0x24
184 #define INV_MPU6050_BITS_I2C_MST_CLK_400KHZ 0x0D
185 #define INV_MPU6050_BIT_I2C_MST_P_NSR       0x10
186 #define INV_MPU6050_BIT_SLV3_FIFO_EN        0x20
187 #define INV_MPU6050_BIT_WAIT_FOR_ES         0x40
188 #define INV_MPU6050_BIT_MULT_MST_EN         0x80
189 
190 /* control I2C slaves from 0 to 3 */
191 #define INV_MPU6050_REG_I2C_SLV_ADDR(_x)    (0x25 + 3 * (_x))
192 #define INV_MPU6050_BIT_I2C_SLV_RNW         0x80
193 
194 #define INV_MPU6050_REG_I2C_SLV_REG(_x)     (0x26 + 3 * (_x))
195 
196 #define INV_MPU6050_REG_I2C_SLV_CTRL(_x)    (0x27 + 3 * (_x))
197 #define INV_MPU6050_BIT_SLV_GRP             0x10
198 #define INV_MPU6050_BIT_SLV_REG_DIS         0x20
199 #define INV_MPU6050_BIT_SLV_BYTE_SW         0x40
200 #define INV_MPU6050_BIT_SLV_EN              0x80
201 
202 /* I2C master delay register */
203 #define INV_MPU6050_REG_I2C_SLV4_CTRL       0x34
204 #define INV_MPU6050_BITS_I2C_MST_DLY(_x)    ((_x) & 0x1F)
205 
206 #define INV_MPU6050_REG_I2C_MST_STATUS      0x36
207 #define INV_MPU6050_BIT_I2C_SLV0_NACK       0x01
208 #define INV_MPU6050_BIT_I2C_SLV1_NACK       0x02
209 #define INV_MPU6050_BIT_I2C_SLV2_NACK       0x04
210 #define INV_MPU6050_BIT_I2C_SLV3_NACK       0x08
211 
212 #define INV_MPU6050_REG_INT_ENABLE          0x38
213 #define INV_MPU6050_BIT_DATA_RDY_EN         0x01
214 #define INV_MPU6050_BIT_DMP_INT_EN          0x02
215 
216 #define INV_MPU6050_REG_RAW_ACCEL           0x3B
217 #define INV_MPU6050_REG_TEMPERATURE         0x41
218 #define INV_MPU6050_REG_RAW_GYRO            0x43
219 
220 #define INV_MPU6050_REG_INT_STATUS          0x3A
221 #define INV_MPU6050_BIT_FIFO_OVERFLOW_INT   0x10
222 #define INV_MPU6050_BIT_RAW_DATA_RDY_INT    0x01
223 
224 #define INV_MPU6050_REG_EXT_SENS_DATA       0x49
225 
226 /* I2C slaves data output from 0 to 3 */
227 #define INV_MPU6050_REG_I2C_SLV_DO(_x)      (0x63 + (_x))
228 
229 #define INV_MPU6050_REG_I2C_MST_DELAY_CTRL  0x67
230 #define INV_MPU6050_BIT_I2C_SLV0_DLY_EN     0x01
231 #define INV_MPU6050_BIT_I2C_SLV1_DLY_EN     0x02
232 #define INV_MPU6050_BIT_I2C_SLV2_DLY_EN     0x04
233 #define INV_MPU6050_BIT_I2C_SLV3_DLY_EN     0x08
234 #define INV_MPU6050_BIT_DELAY_ES_SHADOW     0x80
235 
236 #define INV_MPU6050_REG_USER_CTRL           0x6A
237 #define INV_MPU6050_BIT_FIFO_RST            0x04
238 #define INV_MPU6050_BIT_DMP_RST             0x08
239 #define INV_MPU6050_BIT_I2C_MST_EN          0x20
240 #define INV_MPU6050_BIT_FIFO_EN             0x40
241 #define INV_MPU6050_BIT_DMP_EN              0x80
242 #define INV_MPU6050_BIT_I2C_IF_DIS          0x10
243 
244 #define INV_MPU6050_REG_PWR_MGMT_1          0x6B
245 #define INV_MPU6050_BIT_H_RESET             0x80
246 #define INV_MPU6050_BIT_SLEEP               0x40
247 #define INV_MPU6050_BIT_CLK_MASK            0x7
248 
249 #define INV_MPU6050_REG_PWR_MGMT_2          0x6C
250 #define INV_MPU6050_BIT_PWR_ACCL_STBY       0x38
251 #define INV_MPU6050_BIT_PWR_GYRO_STBY       0x07
252 
253 /* ICM20602 register */
254 #define INV_ICM20602_REG_I2C_IF             0x70
255 #define INV_ICM20602_BIT_I2C_IF_DIS         0x40
256 
257 #define INV_MPU6050_REG_FIFO_COUNT_H        0x72
258 #define INV_MPU6050_REG_FIFO_R_W            0x74
259 
260 #define INV_MPU6050_BYTES_PER_3AXIS_SENSOR   6
261 #define INV_MPU6050_FIFO_COUNT_BYTE          2
262 
263 /* MPU9X50 9-axis magnetometer */
264 #define INV_MPU9X50_BYTES_MAGN               7
265 
266 /* ICM20602 FIFO samples include temperature readings */
267 #define INV_ICM20602_BYTES_PER_TEMP_SENSOR   2
268 
269 /* mpu6500 registers */
270 #define INV_MPU6500_REG_ACCEL_CONFIG_2      0x1D
271 #define INV_MPU6500_REG_ACCEL_OFFSET        0x77
272 
273 /* delay time in milliseconds */
274 #define INV_MPU6050_POWER_UP_TIME            100
275 #define INV_MPU6050_TEMP_UP_TIME             100
276 #define INV_MPU6050_SENSOR_UP_TIME           30
277 
278 /* delay time in microseconds */
279 #define INV_MPU6050_REG_UP_TIME_MIN          5000
280 #define INV_MPU6050_REG_UP_TIME_MAX          10000
281 
282 #define INV_MPU6050_TEMP_OFFSET	             12421
283 #define INV_MPU6050_TEMP_SCALE               2941
284 #define INV_MPU6050_MAX_GYRO_FS_PARAM        3
285 #define INV_MPU6050_MAX_ACCL_FS_PARAM        3
286 #define INV_MPU6050_THREE_AXIS               3
287 #define INV_MPU6050_GYRO_CONFIG_FSR_SHIFT    3
288 #define INV_MPU6050_ACCL_CONFIG_FSR_SHIFT    3
289 
290 #define INV_ICM20602_TEMP_OFFSET	     8170
291 #define INV_ICM20602_TEMP_SCALE		     3060
292 
293 /* 6 + 6 + 7 (for MPU9x50) = 19 round up to 24 and plus 8 */
294 #define INV_MPU6050_OUTPUT_DATA_SIZE         32
295 
296 #define INV_MPU6050_REG_INT_PIN_CFG	0x37
297 #define INV_MPU6050_ACTIVE_HIGH		0x00
298 #define INV_MPU6050_ACTIVE_LOW		0x80
299 /* enable level triggering */
300 #define INV_MPU6050_LATCH_INT_EN	0x20
301 #define INV_MPU6050_BIT_BYPASS_EN	0x2
302 
303 /* Allowed timestamp period jitter in percent */
304 #define INV_MPU6050_TS_PERIOD_JITTER	4
305 
306 /* init parameters */
307 #define INV_MPU6050_INIT_FIFO_RATE           50
308 #define INV_MPU6050_MAX_FIFO_RATE            1000
309 #define INV_MPU6050_MIN_FIFO_RATE            4
310 
311 /* chip internal frequency: 1KHz */
312 #define INV_MPU6050_INTERNAL_FREQ_HZ		1000
313 /* return the frequency divider (chip sample rate divider + 1) */
314 #define INV_MPU6050_FREQ_DIVIDER(st)					\
315 	((st)->chip_config.divider + 1)
316 /* chip sample rate divider to fifo rate */
317 #define INV_MPU6050_FIFO_RATE_TO_DIVIDER(fifo_rate)			\
318 	((INV_MPU6050_INTERNAL_FREQ_HZ / (fifo_rate)) - 1)
319 #define INV_MPU6050_DIVIDER_TO_FIFO_RATE(divider)			\
320 	(INV_MPU6050_INTERNAL_FREQ_HZ / ((divider) + 1))
321 
322 #define INV_MPU6050_REG_WHOAMI			117
323 
324 #define INV_MPU6000_WHOAMI_VALUE		0x68
325 #define INV_MPU6050_WHOAMI_VALUE		0x68
326 #define INV_MPU6500_WHOAMI_VALUE		0x70
327 #define INV_MPU9150_WHOAMI_VALUE		0x68
328 #define INV_MPU9250_WHOAMI_VALUE		0x71
329 #define INV_MPU9255_WHOAMI_VALUE		0x73
330 #define INV_MPU6515_WHOAMI_VALUE		0x74
331 #define INV_ICM20608_WHOAMI_VALUE		0xAF
332 #define INV_ICM20602_WHOAMI_VALUE		0x12
333 
334 /* scan element definition for generic MPU6xxx devices */
335 enum inv_mpu6050_scan {
336 	INV_MPU6050_SCAN_ACCL_X,
337 	INV_MPU6050_SCAN_ACCL_Y,
338 	INV_MPU6050_SCAN_ACCL_Z,
339 	INV_MPU6050_SCAN_GYRO_X,
340 	INV_MPU6050_SCAN_GYRO_Y,
341 	INV_MPU6050_SCAN_GYRO_Z,
342 	INV_MPU6050_SCAN_TIMESTAMP,
343 
344 	INV_MPU9X50_SCAN_MAGN_X = INV_MPU6050_SCAN_GYRO_Z + 1,
345 	INV_MPU9X50_SCAN_MAGN_Y,
346 	INV_MPU9X50_SCAN_MAGN_Z,
347 	INV_MPU9X50_SCAN_TIMESTAMP,
348 };
349 
350 /* scan element definition for ICM20602, which includes temperature */
351 enum inv_icm20602_scan {
352 	INV_ICM20602_SCAN_ACCL_X,
353 	INV_ICM20602_SCAN_ACCL_Y,
354 	INV_ICM20602_SCAN_ACCL_Z,
355 	INV_ICM20602_SCAN_TEMP,
356 	INV_ICM20602_SCAN_GYRO_X,
357 	INV_ICM20602_SCAN_GYRO_Y,
358 	INV_ICM20602_SCAN_GYRO_Z,
359 	INV_ICM20602_SCAN_TIMESTAMP,
360 };
361 
362 enum inv_mpu6050_filter_e {
363 	INV_MPU6050_FILTER_256HZ_NOLPF2 = 0,
364 	INV_MPU6050_FILTER_188HZ,
365 	INV_MPU6050_FILTER_98HZ,
366 	INV_MPU6050_FILTER_42HZ,
367 	INV_MPU6050_FILTER_20HZ,
368 	INV_MPU6050_FILTER_10HZ,
369 	INV_MPU6050_FILTER_5HZ,
370 	INV_MPU6050_FILTER_2100HZ_NOLPF,
371 	NUM_MPU6050_FILTER
372 };
373 
374 /* IIO attribute address */
375 enum INV_MPU6050_IIO_ATTR_ADDR {
376 	ATTR_GYRO_MATRIX,
377 	ATTR_ACCL_MATRIX,
378 };
379 
380 enum inv_mpu6050_accl_fs_e {
381 	INV_MPU6050_FS_02G = 0,
382 	INV_MPU6050_FS_04G,
383 	INV_MPU6050_FS_08G,
384 	INV_MPU6050_FS_16G,
385 	NUM_ACCL_FSR
386 };
387 
388 enum inv_mpu6050_fsr_e {
389 	INV_MPU6050_FSR_250DPS = 0,
390 	INV_MPU6050_FSR_500DPS,
391 	INV_MPU6050_FSR_1000DPS,
392 	INV_MPU6050_FSR_2000DPS,
393 	NUM_MPU6050_FSR
394 };
395 
396 enum inv_mpu6050_clock_sel_e {
397 	INV_CLK_INTERNAL = 0,
398 	INV_CLK_PLL,
399 	NUM_CLK
400 };
401 
402 irqreturn_t inv_mpu6050_read_fifo(int irq, void *p);
403 int inv_mpu6050_probe_trigger(struct iio_dev *indio_dev, int irq_type);
404 int inv_reset_fifo(struct iio_dev *indio_dev);
405 int inv_mpu6050_switch_engine(struct inv_mpu6050_state *st, bool en, u32 mask);
406 int inv_mpu6050_write_reg(struct inv_mpu6050_state *st, int reg, u8 val);
407 int inv_mpu6050_set_power_itg(struct inv_mpu6050_state *st, bool power_on);
408 int inv_mpu_acpi_create_mux_client(struct i2c_client *client);
409 void inv_mpu_acpi_delete_mux_client(struct i2c_client *client);
410 int inv_mpu_core_probe(struct regmap *regmap, int irq, const char *name,
411 		int (*inv_mpu_bus_setup)(struct iio_dev *), int chip_type);
412 extern const struct dev_pm_ops inv_mpu_pmops;
413 
414 #endif
415