1 // SPDX-License-Identifier: GPL-2.0-only
3 * STMicroelectronics gyroscopes driver
5 * Copyright 2012-2013 STMicroelectronics Inc.
7 * Denis Ciocca <denis.ciocca@st.com>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/slab.h>
13 #include <linux/i2c.h>
14 #include <linux/iio/iio.h>
16 #include <linux/iio/common/st_sensors.h>
17 #include <linux/iio/common/st_sensors_i2c.h>
21 static const struct of_device_id st_gyro_of_match
[] = {
23 .compatible
= "st,l3g4200d-gyro",
24 .data
= L3G4200D_GYRO_DEV_NAME
,
27 .compatible
= "st,lsm330d-gyro",
28 .data
= LSM330D_GYRO_DEV_NAME
,
31 .compatible
= "st,lsm330dl-gyro",
32 .data
= LSM330DL_GYRO_DEV_NAME
,
35 .compatible
= "st,lsm330dlc-gyro",
36 .data
= LSM330DLC_GYRO_DEV_NAME
,
39 .compatible
= "st,l3gd20-gyro",
40 .data
= L3GD20_GYRO_DEV_NAME
,
43 .compatible
= "st,l3gd20h-gyro",
44 .data
= L3GD20H_GYRO_DEV_NAME
,
47 .compatible
= "st,l3g4is-gyro",
48 .data
= L3G4IS_GYRO_DEV_NAME
,
51 .compatible
= "st,lsm330-gyro",
52 .data
= LSM330_GYRO_DEV_NAME
,
55 .compatible
= "st,lsm9ds0-gyro",
56 .data
= LSM9DS0_GYRO_DEV_NAME
,
60 MODULE_DEVICE_TABLE(of
, st_gyro_of_match
);
62 #define st_gyro_of_match NULL
65 static int st_gyro_i2c_probe(struct i2c_client
*client
,
66 const struct i2c_device_id
*id
)
68 struct iio_dev
*indio_dev
;
69 struct st_sensor_data
*gdata
;
72 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*gdata
));
76 gdata
= iio_priv(indio_dev
);
77 st_sensors_of_name_probe(&client
->dev
, st_gyro_of_match
,
78 client
->name
, sizeof(client
->name
));
80 st_sensors_i2c_configure(indio_dev
, client
, gdata
);
82 err
= st_gyro_common_probe(indio_dev
);
89 static int st_gyro_i2c_remove(struct i2c_client
*client
)
91 st_gyro_common_remove(i2c_get_clientdata(client
));
96 static const struct i2c_device_id st_gyro_id_table
[] = {
97 { L3G4200D_GYRO_DEV_NAME
},
98 { LSM330D_GYRO_DEV_NAME
},
99 { LSM330DL_GYRO_DEV_NAME
},
100 { LSM330DLC_GYRO_DEV_NAME
},
101 { L3GD20_GYRO_DEV_NAME
},
102 { L3GD20H_GYRO_DEV_NAME
},
103 { L3G4IS_GYRO_DEV_NAME
},
104 { LSM330_GYRO_DEV_NAME
},
105 { LSM9DS0_GYRO_DEV_NAME
},
108 MODULE_DEVICE_TABLE(i2c
, st_gyro_id_table
);
110 static struct i2c_driver st_gyro_driver
= {
112 .name
= "st-gyro-i2c",
113 .of_match_table
= of_match_ptr(st_gyro_of_match
),
115 .probe
= st_gyro_i2c_probe
,
116 .remove
= st_gyro_i2c_remove
,
117 .id_table
= st_gyro_id_table
,
119 module_i2c_driver(st_gyro_driver
);
121 MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
122 MODULE_DESCRIPTION("STMicroelectronics gyroscopes i2c driver");
123 MODULE_LICENSE("GPL v2");