2 * Copyright (C) 2012 Invensense, Inc.
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <linux/acpi.h>
15 #include <linux/delay.h>
16 #include <linux/err.h>
17 #include <linux/i2c.h>
18 #include <linux/iio/iio.h>
19 #include <linux/module.h>
20 #include "inv_mpu_iio.h"
22 static const struct regmap_config inv_mpu_regmap_config
= {
27 static int inv_mpu6050_select_bypass(struct i2c_mux_core
*muxc
, u32 chan_id
)
29 struct iio_dev
*indio_dev
= i2c_mux_priv(muxc
);
30 struct inv_mpu6050_state
*st
= iio_priv(indio_dev
);
33 /* Use the same mutex which was used everywhere to protect power-op */
34 mutex_lock(&indio_dev
->mlock
);
35 if (!st
->powerup_count
) {
36 ret
= regmap_write(st
->map
, st
->reg
->pwr_mgmt_1
, 0);
40 usleep_range(INV_MPU6050_REG_UP_TIME_MIN
,
41 INV_MPU6050_REG_UP_TIME_MAX
);
45 ret
= regmap_write(st
->map
, st
->reg
->int_pin_cfg
,
46 INV_MPU6050_INT_PIN_CFG
|
47 INV_MPU6050_BIT_BYPASS_EN
);
50 mutex_unlock(&indio_dev
->mlock
);
55 static int inv_mpu6050_deselect_bypass(struct i2c_mux_core
*muxc
, u32 chan_id
)
57 struct iio_dev
*indio_dev
= i2c_mux_priv(muxc
);
58 struct inv_mpu6050_state
*st
= iio_priv(indio_dev
);
60 mutex_lock(&indio_dev
->mlock
);
61 /* It doesn't really mattter, if any of the calls fails */
62 regmap_write(st
->map
, st
->reg
->int_pin_cfg
, INV_MPU6050_INT_PIN_CFG
);
64 if (!st
->powerup_count
)
65 regmap_write(st
->map
, st
->reg
->pwr_mgmt_1
,
66 INV_MPU6050_BIT_SLEEP
);
67 mutex_unlock(&indio_dev
->mlock
);
72 static const char *inv_mpu_match_acpi_device(struct device
*dev
, int *chip_id
)
74 const struct acpi_device_id
*id
;
76 id
= acpi_match_device(dev
->driver
->acpi_match_table
, dev
);
80 *chip_id
= (int)id
->driver_data
;
86 * inv_mpu_probe() - probe function.
87 * @client: i2c client.
90 * Returns 0 on success, a negative error code otherwise.
92 static int inv_mpu_probe(struct i2c_client
*client
,
93 const struct i2c_device_id
*id
)
95 struct inv_mpu6050_state
*st
;
96 int result
, chip_type
;
97 struct regmap
*regmap
;
100 if (!i2c_check_functionality(client
->adapter
,
101 I2C_FUNC_SMBUS_I2C_BLOCK
))
105 chip_type
= (int)id
->driver_data
;
107 } else if (ACPI_HANDLE(&client
->dev
)) {
108 name
= inv_mpu_match_acpi_device(&client
->dev
, &chip_type
);
115 regmap
= devm_regmap_init_i2c(client
, &inv_mpu_regmap_config
);
116 if (IS_ERR(regmap
)) {
117 dev_err(&client
->dev
, "Failed to register i2c regmap %d\n",
118 (int)PTR_ERR(regmap
));
119 return PTR_ERR(regmap
);
122 result
= inv_mpu_core_probe(regmap
, client
->irq
, name
,
127 st
= iio_priv(dev_get_drvdata(&client
->dev
));
128 st
->muxc
= i2c_mux_alloc(client
->adapter
, &client
->dev
,
129 1, 0, I2C_MUX_LOCKED
,
130 inv_mpu6050_select_bypass
,
131 inv_mpu6050_deselect_bypass
);
134 goto out_unreg_device
;
136 st
->muxc
->priv
= dev_get_drvdata(&client
->dev
);
137 result
= i2c_mux_add_adapter(st
->muxc
, 0, 0, 0);
139 goto out_unreg_device
;
141 result
= inv_mpu_acpi_create_mux_client(client
);
148 i2c_mux_del_adapters(st
->muxc
);
150 inv_mpu_core_remove(&client
->dev
);
154 static int inv_mpu_remove(struct i2c_client
*client
)
156 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
157 struct inv_mpu6050_state
*st
= iio_priv(indio_dev
);
159 inv_mpu_acpi_delete_mux_client(client
);
160 i2c_mux_del_adapters(st
->muxc
);
162 return inv_mpu_core_remove(&client
->dev
);
166 * device id table is used to identify what device can be
167 * supported by this driver
169 static const struct i2c_device_id inv_mpu_id
[] = {
170 {"mpu6050", INV_MPU6050
},
171 {"mpu6500", INV_MPU6500
},
172 {"mpu9150", INV_MPU9150
},
173 {"icm20608", INV_ICM20608
},
177 MODULE_DEVICE_TABLE(i2c
, inv_mpu_id
);
179 static const struct acpi_device_id inv_acpi_match
[] = {
180 {"INVN6500", INV_MPU6500
},
184 MODULE_DEVICE_TABLE(acpi
, inv_acpi_match
);
186 static struct i2c_driver inv_mpu_driver
= {
187 .probe
= inv_mpu_probe
,
188 .remove
= inv_mpu_remove
,
189 .id_table
= inv_mpu_id
,
191 .acpi_match_table
= ACPI_PTR(inv_acpi_match
),
192 .name
= "inv-mpu6050-i2c",
193 .pm
= &inv_mpu_pmops
,
197 module_i2c_driver(inv_mpu_driver
);
199 MODULE_AUTHOR("Invensense Corporation");
200 MODULE_DESCRIPTION("Invensense device MPU6050 driver");
201 MODULE_LICENSE("GPL");