inv_mpu_iio.h 9.7 KB
Newer Older
G
Ge Gao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
* Copyright (C) 2012 Invensense, Inc.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* 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.
*/
#include <linux/i2c.h>
14
#include <linux/i2c-mux.h>
15
#include <linux/mutex.h>
G
Ge Gao 已提交
16 17
#include <linux/iio/iio.h>
#include <linux/iio/buffer.h>
18
#include <linux/regmap.h>
G
Ge Gao 已提交
19 20 21 22 23 24 25 26 27 28 29
#include <linux/iio/sysfs.h>
#include <linux/iio/kfifo_buf.h>
#include <linux/iio/trigger.h>
#include <linux/iio/triggered_buffer.h>
#include <linux/iio/trigger_consumer.h>
#include <linux/platform_data/invensense_mpu6050.h>

/**
 *  struct inv_mpu6050_reg_map - Notable registers.
 *  @sample_rate_div:	Divider applied to gyro output rate.
 *  @lpf:		Configures internal low pass filter.
30
 *  @accel_lpf:		Configures accelerometer low pass filter.
G
Ge Gao 已提交
31 32 33 34 35 36 37 38 39 40
 *  @user_ctrl:		Enables/resets the FIFO.
 *  @fifo_en:		Determines which data will appear in FIFO.
 *  @gyro_config:	gyro config register.
 *  @accl_config:	accel config register
 *  @fifo_count_h:	Upper byte of FIFO count.
 *  @fifo_r_w:		FIFO register.
 *  @raw_gyro:		Address of first gyro register.
 *  @raw_accl:		Address of first accel register.
 *  @temperature:	temperature register
 *  @int_enable:	Interrupt enable register.
41
 *  @int_status:	Interrupt status register.
G
Ge Gao 已提交
42 43
 *  @pwr_mgmt_1:	Controls chip's power state and clock source.
 *  @pwr_mgmt_2:	Controls power state of individual sensors.
44
 *  @int_pin_cfg;	Controls interrupt pin configuration.
45 46
 *  @accl_offset:	Controls the accelerometer calibration offset.
 *  @gyro_offset:	Controls the gyroscope calibration offset.
G
Ge Gao 已提交
47 48 49 50
 */
struct inv_mpu6050_reg_map {
	u8 sample_rate_div;
	u8 lpf;
51
	u8 accel_lpf;
G
Ge Gao 已提交
52 53 54 55 56 57 58 59 60 61
	u8 user_ctrl;
	u8 fifo_en;
	u8 gyro_config;
	u8 accl_config;
	u8 fifo_count_h;
	u8 fifo_r_w;
	u8 raw_gyro;
	u8 raw_accl;
	u8 temperature;
	u8 int_enable;
62
	u8 int_status;
G
Ge Gao 已提交
63 64
	u8 pwr_mgmt_1;
	u8 pwr_mgmt_2;
65
	u8 int_pin_cfg;
66 67
	u8 accl_offset;
	u8 gyro_offset;
G
Ge Gao 已提交
68 69 70 71 72
};

/*device enum */
enum inv_devices {
	INV_MPU6050,
73
	INV_MPU6500,
74
	INV_MPU6000,
75
	INV_MPU9150,
76
	INV_MPU9250,
77
	INV_MPU9255,
78
	INV_ICM20608,
G
Ge Gao 已提交
79 80 81 82 83 84 85 86 87 88
	INV_NUM_PARTS
};

/**
 *  struct inv_mpu6050_chip_config - Cached chip configuration data.
 *  @fsr:		Full scale range.
 *  @lpf:		Digital low pass filter frequency.
 *  @accl_fs:		accel full scale range.
 *  @accl_fifo_enable:	enable accel data output
 *  @gyro_fifo_enable:	enable gyro data output
89
 *  @divider:		chip sample rate divider (sample rate divider - 1)
G
Ge Gao 已提交
90 91 92 93 94 95 96
 */
struct inv_mpu6050_chip_config {
	unsigned int fsr:2;
	unsigned int lpf:3;
	unsigned int accl_fs:2;
	unsigned int accl_fifo_enable:1;
	unsigned int gyro_fifo_enable:1;
97
	u8 divider;
98
	u8 user_ctrl;
G
Ge Gao 已提交
99 100 101 102
};

/**
 *  struct inv_mpu6050_hw - Other important hardware information.
103
 *  @whoami:	Self identification byte from WHO_AM_I register
G
Ge Gao 已提交
104 105 106 107 108
 *  @name:      name of the chip.
 *  @reg:   register map of the chip.
 *  @config:    configuration of the chip.
 */
struct inv_mpu6050_hw {
109
	u8 whoami;
G
Ge Gao 已提交
110 111 112 113 114 115 116
	u8 *name;
	const struct inv_mpu6050_reg_map *reg;
	const struct inv_mpu6050_chip_config *config;
};

/*
 *  struct inv_mpu6050_state - Driver state variables.
117
 *  @lock:              Chip access lock.
G
Ge Gao 已提交
118 119 120 121 122
 *  @trig:              IIO trigger.
 *  @chip_config:	Cached attribute information.
 *  @reg:		Map of important registers.
 *  @hw:		Other hardware-specific information.
 *  @chip_type:		chip type.
123 124
 *  @plat_data:		platform data (deprecated in favor of @orientation).
 *  @orientation:	sensor chip orientation relative to main hardware.
125 126
 *  @map		regmap pointer.
 *  @irq		interrupt number.
127
 *  @irq_mask		the int_pin_cfg mask to configure interrupt type.
G
Ge Gao 已提交
128 129
 */
struct inv_mpu6050_state {
130
	struct mutex lock;
G
Ge Gao 已提交
131 132 133 134 135
	struct iio_trigger  *trig;
	struct inv_mpu6050_chip_config chip_config;
	const struct inv_mpu6050_reg_map *reg;
	const struct inv_mpu6050_hw *hw;
	enum   inv_devices chip_type;
136
	struct i2c_mux_core *muxc;
137
	struct i2c_client *mux_client;
138
	unsigned int powerup_count;
G
Ge Gao 已提交
139
	struct inv_mpu6050_platform_data plat_data;
140
	struct iio_mount_matrix orientation;
141
	struct regmap *map;
142
	int irq;
143
	u8 irq_mask;
144
	unsigned skip_samples;
G
Ge Gao 已提交
145 146 147
};

/*register and associated bit definition*/
148 149 150
#define INV_MPU6050_REG_ACCEL_OFFSET        0x06
#define INV_MPU6050_REG_GYRO_OFFSET         0x13

G
Ge Gao 已提交
151 152 153
#define INV_MPU6050_REG_SAMPLE_RATE_DIV     0x19
#define INV_MPU6050_REG_CONFIG              0x1A
#define INV_MPU6050_REG_GYRO_CONFIG         0x1B
154
#define INV_MPU6050_REG_ACCEL_CONFIG        0x1C
G
Ge Gao 已提交
155 156

#define INV_MPU6050_REG_FIFO_EN             0x23
157 158
#define INV_MPU6050_BIT_ACCEL_OUT           0x08
#define INV_MPU6050_BITS_GYRO_OUT           0x70
G
Ge Gao 已提交
159 160

#define INV_MPU6050_REG_INT_ENABLE          0x38
161 162
#define INV_MPU6050_BIT_DATA_RDY_EN         0x01
#define INV_MPU6050_BIT_DMP_INT_EN          0x02
G
Ge Gao 已提交
163 164 165 166 167

#define INV_MPU6050_REG_RAW_ACCEL           0x3B
#define INV_MPU6050_REG_TEMPERATURE         0x41
#define INV_MPU6050_REG_RAW_GYRO            0x43

168 169 170
#define INV_MPU6050_REG_INT_STATUS          0x3A
#define INV_MPU6050_BIT_RAW_DATA_RDY_INT    0x01

G
Ge Gao 已提交
171
#define INV_MPU6050_REG_USER_CTRL           0x6A
172 173 174 175 176
#define INV_MPU6050_BIT_FIFO_RST            0x04
#define INV_MPU6050_BIT_DMP_RST             0x08
#define INV_MPU6050_BIT_I2C_MST_EN          0x20
#define INV_MPU6050_BIT_FIFO_EN             0x40
#define INV_MPU6050_BIT_DMP_EN              0x80
177
#define INV_MPU6050_BIT_I2C_IF_DIS          0x10
G
Ge Gao 已提交
178 179

#define INV_MPU6050_REG_PWR_MGMT_1          0x6B
180 181 182
#define INV_MPU6050_BIT_H_RESET             0x80
#define INV_MPU6050_BIT_SLEEP               0x40
#define INV_MPU6050_BIT_CLK_MASK            0x7
G
Ge Gao 已提交
183 184

#define INV_MPU6050_REG_PWR_MGMT_2          0x6C
185 186
#define INV_MPU6050_BIT_PWR_ACCL_STBY       0x38
#define INV_MPU6050_BIT_PWR_GYRO_STBY       0x07
G
Ge Gao 已提交
187 188 189 190 191 192 193

#define INV_MPU6050_REG_FIFO_COUNT_H        0x72
#define INV_MPU6050_REG_FIFO_R_W            0x74

#define INV_MPU6050_BYTES_PER_3AXIS_SENSOR   6
#define INV_MPU6050_FIFO_COUNT_BYTE          2
#define INV_MPU6050_FIFO_THRESHOLD           500
194

195
/* mpu6500 registers */
196
#define INV_MPU6500_REG_ACCEL_CONFIG_2      0x1D
197 198
#define INV_MPU6500_REG_ACCEL_OFFSET        0x77

199
/* delay time in milliseconds */
G
Ge Gao 已提交
200 201 202
#define INV_MPU6050_POWER_UP_TIME            100
#define INV_MPU6050_TEMP_UP_TIME             100
#define INV_MPU6050_SENSOR_UP_TIME           30
203 204 205 206

/* delay time in microseconds */
#define INV_MPU6050_REG_UP_TIME_MIN          5000
#define INV_MPU6050_REG_UP_TIME_MAX          10000
G
Ge Gao 已提交
207 208 209 210 211 212 213 214 215 216 217 218

#define INV_MPU6050_TEMP_OFFSET	             12421
#define INV_MPU6050_TEMP_SCALE               2941
#define INV_MPU6050_MAX_GYRO_FS_PARAM        3
#define INV_MPU6050_MAX_ACCL_FS_PARAM        3
#define INV_MPU6050_THREE_AXIS               3
#define INV_MPU6050_GYRO_CONFIG_FSR_SHIFT    3
#define INV_MPU6050_ACCL_CONFIG_FSR_SHIFT    3

/* 6 + 6 round up and plus 8 */
#define INV_MPU6050_OUTPUT_DATA_SIZE         24

219
#define INV_MPU6050_REG_INT_PIN_CFG	0x37
220 221 222 223
#define INV_MPU6050_ACTIVE_HIGH		0x00
#define INV_MPU6050_ACTIVE_LOW		0x80
/* enable level triggering */
#define INV_MPU6050_LATCH_INT_EN	0x20
224
#define INV_MPU6050_BIT_BYPASS_EN	0x2
225

226

G
Ge Gao 已提交
227 228
/* init parameters */
#define INV_MPU6050_INIT_FIFO_RATE           50
229 230
#define INV_MPU6050_MAX_FIFO_RATE            1000
#define INV_MPU6050_MIN_FIFO_RATE            4
231 232 233 234 235 236 237 238 239 240 241

/* chip internal frequency: 1KHz */
#define INV_MPU6050_INTERNAL_FREQ_HZ		1000
/* return the frequency divider (chip sample rate divider + 1) */
#define INV_MPU6050_FREQ_DIVIDER(st)					\
	((st)->chip_config.divider + 1)
/* chip sample rate divider to fifo rate */
#define INV_MPU6050_FIFO_RATE_TO_DIVIDER(fifo_rate)			\
	((INV_MPU6050_INTERNAL_FREQ_HZ / (fifo_rate)) - 1)
#define INV_MPU6050_DIVIDER_TO_FIFO_RATE(divider)			\
	(INV_MPU6050_INTERNAL_FREQ_HZ / ((divider) + 1))
G
Ge Gao 已提交
242

243 244 245 246 247
#define INV_MPU6050_REG_WHOAMI			117

#define INV_MPU6000_WHOAMI_VALUE		0x68
#define INV_MPU6050_WHOAMI_VALUE		0x68
#define INV_MPU6500_WHOAMI_VALUE		0x70
248
#define INV_MPU9150_WHOAMI_VALUE		0x68
249
#define INV_MPU9250_WHOAMI_VALUE		0x71
250
#define INV_MPU9255_WHOAMI_VALUE		0x73
251
#define INV_ICM20608_WHOAMI_VALUE		0xAF
252

G
Ge Gao 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
/* scan element definition */
enum inv_mpu6050_scan {
	INV_MPU6050_SCAN_ACCL_X,
	INV_MPU6050_SCAN_ACCL_Y,
	INV_MPU6050_SCAN_ACCL_Z,
	INV_MPU6050_SCAN_GYRO_X,
	INV_MPU6050_SCAN_GYRO_Y,
	INV_MPU6050_SCAN_GYRO_Z,
	INV_MPU6050_SCAN_TIMESTAMP,
};

enum inv_mpu6050_filter_e {
	INV_MPU6050_FILTER_256HZ_NOLPF2 = 0,
	INV_MPU6050_FILTER_188HZ,
	INV_MPU6050_FILTER_98HZ,
	INV_MPU6050_FILTER_42HZ,
	INV_MPU6050_FILTER_20HZ,
	INV_MPU6050_FILTER_10HZ,
	INV_MPU6050_FILTER_5HZ,
	INV_MPU6050_FILTER_2100HZ_NOLPF,
	NUM_MPU6050_FILTER
};

/* IIO attribute address */
enum INV_MPU6050_IIO_ATTR_ADDR {
	ATTR_GYRO_MATRIX,
	ATTR_ACCL_MATRIX,
};

enum inv_mpu6050_accl_fs_e {
	INV_MPU6050_FS_02G = 0,
	INV_MPU6050_FS_04G,
	INV_MPU6050_FS_08G,
	INV_MPU6050_FS_16G,
	NUM_ACCL_FSR
};

enum inv_mpu6050_fsr_e {
	INV_MPU6050_FSR_250DPS = 0,
	INV_MPU6050_FSR_500DPS,
	INV_MPU6050_FSR_1000DPS,
	INV_MPU6050_FSR_2000DPS,
	NUM_MPU6050_FSR
};

enum inv_mpu6050_clock_sel_e {
	INV_CLK_INTERNAL = 0,
	INV_CLK_PLL,
	NUM_CLK
};

irqreturn_t inv_mpu6050_read_fifo(int irq, void *p);
305
int inv_mpu6050_probe_trigger(struct iio_dev *indio_dev, int irq_type);
G
Ge Gao 已提交
306 307 308 309
int inv_reset_fifo(struct iio_dev *indio_dev);
int inv_mpu6050_switch_engine(struct inv_mpu6050_state *st, bool en, u32 mask);
int inv_mpu6050_write_reg(struct inv_mpu6050_state *st, int reg, u8 val);
int inv_mpu6050_set_power_itg(struct inv_mpu6050_state *st, bool power_on);
310 311
int inv_mpu_acpi_create_mux_client(struct i2c_client *client);
void inv_mpu_acpi_delete_mux_client(struct i2c_client *client);
312
int inv_mpu_core_probe(struct regmap *regmap, int irq, const char *name,
313
		int (*inv_mpu_bus_setup)(struct iio_dev *), int chip_type);
314
extern const struct dev_pm_ops inv_mpu_pmops;