3 #include <linux/i2c-mux.h>
4 #include <linux/iio/iio.h>
5 #include <linux/module.h>
6 #include <linux/regmap.h>
7 #include <linux/pm_runtime.h>
11 static const struct regmap_config mpu3050_i2c_regmap_config
= {
16 static int mpu3050_i2c_bypass_select(struct i2c_mux_core
*mux
, u32 chan_id
)
18 struct mpu3050
*mpu3050
= i2c_mux_priv(mux
);
20 /* Just power up the device, that is all that is needed */
21 pm_runtime_get_sync(mpu3050
->dev
);
25 static int mpu3050_i2c_bypass_deselect(struct i2c_mux_core
*mux
, u32 chan_id
)
27 struct mpu3050
*mpu3050
= i2c_mux_priv(mux
);
29 pm_runtime_mark_last_busy(mpu3050
->dev
);
30 pm_runtime_put_autosuspend(mpu3050
->dev
);
34 static int mpu3050_i2c_probe(struct i2c_client
*client
,
35 const struct i2c_device_id
*id
)
37 struct regmap
*regmap
;
39 struct mpu3050
*mpu3050
;
42 if (!i2c_check_functionality(client
->adapter
,
43 I2C_FUNC_SMBUS_I2C_BLOCK
))
51 regmap
= devm_regmap_init_i2c(client
, &mpu3050_i2c_regmap_config
);
53 dev_err(&client
->dev
, "Failed to register i2c regmap %d\n",
54 (int)PTR_ERR(regmap
));
55 return PTR_ERR(regmap
);
58 ret
= mpu3050_common_probe(&client
->dev
, regmap
, client
->irq
, name
);
62 /* The main driver is up, now register the I2C mux */
63 mpu3050
= iio_priv(dev_get_drvdata(&client
->dev
));
64 mpu3050
->i2cmux
= i2c_mux_alloc(client
->adapter
, &client
->dev
,
65 1, 0, I2C_MUX_LOCKED
| I2C_MUX_GATE
,
66 mpu3050_i2c_bypass_select
,
67 mpu3050_i2c_bypass_deselect
);
68 /* Just fail the mux, there is no point in killing the driver */
70 dev_err(&client
->dev
, "failed to allocate I2C mux\n");
72 mpu3050
->i2cmux
->priv
= mpu3050
;
73 ret
= i2c_mux_add_adapter(mpu3050
->i2cmux
, 0, 0, 0);
75 dev_err(&client
->dev
, "failed to add I2C mux\n");
81 static int mpu3050_i2c_remove(struct i2c_client
*client
)
83 struct iio_dev
*indio_dev
= dev_get_drvdata(&client
->dev
);
84 struct mpu3050
*mpu3050
= iio_priv(indio_dev
);
87 i2c_mux_del_adapters(mpu3050
->i2cmux
);
89 return mpu3050_common_remove(&client
->dev
);
93 * device id table is used to identify what device can be
94 * supported by this driver
96 static const struct i2c_device_id mpu3050_i2c_id
[] = {
100 MODULE_DEVICE_TABLE(i2c
, mpu3050_i2c_id
);
102 static const struct of_device_id mpu3050_i2c_of_match
[] = {
103 { .compatible
= "invensense,mpu3050", .data
= "mpu3050" },
104 /* Deprecated vendor ID from the Input driver */
105 { .compatible
= "invn,mpu3050", .data
= "mpu3050" },
108 MODULE_DEVICE_TABLE(of
, mpu3050_i2c_of_match
);
110 static struct i2c_driver mpu3050_i2c_driver
= {
111 .probe
= mpu3050_i2c_probe
,
112 .remove
= mpu3050_i2c_remove
,
113 .id_table
= mpu3050_i2c_id
,
115 .of_match_table
= mpu3050_i2c_of_match
,
116 .name
= "mpu3050-i2c",
117 .pm
= &mpu3050_dev_pm_ops
,
120 module_i2c_driver(mpu3050_i2c_driver
);
122 MODULE_AUTHOR("Linus Walleij");
123 MODULE_DESCRIPTION("Invensense MPU3050 gyroscope driver");
124 MODULE_LICENSE("GPL");