2 * STMicroelectronics gyroscopes driver
4 * Copyright 2012-2013 STMicroelectronics Inc.
6 * Denis Ciocca <denis.ciocca@st.com>
8 * Licensed under the GPL-2.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/i2c.h>
15 #include <linux/iio/iio.h>
17 #include <linux/iio/common/st_sensors.h>
18 #include <linux/iio/common/st_sensors_i2c.h>
22 static const struct of_device_id st_gyro_of_match
[] = {
24 .compatible
= "st,l3g4200d-gyro",
25 .data
= L3G4200D_GYRO_DEV_NAME
,
28 .compatible
= "st,lsm330d-gyro",
29 .data
= LSM330D_GYRO_DEV_NAME
,
32 .compatible
= "st,lsm330dl-gyro",
33 .data
= LSM330DL_GYRO_DEV_NAME
,
36 .compatible
= "st,lsm330dlc-gyro",
37 .data
= LSM330DLC_GYRO_DEV_NAME
,
40 .compatible
= "st,l3gd20-gyro",
41 .data
= L3GD20_GYRO_DEV_NAME
,
44 .compatible
= "st,l3g4is-gyro",
45 .data
= L3G4IS_GYRO_DEV_NAME
,
48 .compatible
= "st,lsm330-gyro",
49 .data
= LSM330_GYRO_DEV_NAME
,
53 MODULE_DEVICE_TABLE(of
, st_gyro_of_match
);
55 #define st_gyro_of_match NULL
58 static int st_gyro_i2c_probe(struct i2c_client
*client
,
59 const struct i2c_device_id
*id
)
61 struct iio_dev
*indio_dev
;
62 struct st_sensor_data
*gdata
;
65 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*gdata
));
69 gdata
= iio_priv(indio_dev
);
70 st_sensors_of_i2c_probe(client
, st_gyro_of_match
);
72 st_sensors_i2c_configure(indio_dev
, client
, gdata
);
74 err
= st_gyro_common_probe(indio_dev
);
81 static int st_gyro_i2c_remove(struct i2c_client
*client
)
83 st_gyro_common_remove(i2c_get_clientdata(client
));
88 static const struct i2c_device_id st_gyro_id_table
[] = {
89 { L3G4200D_GYRO_DEV_NAME
},
90 { LSM330D_GYRO_DEV_NAME
},
91 { LSM330DL_GYRO_DEV_NAME
},
92 { LSM330DLC_GYRO_DEV_NAME
},
93 { L3GD20_GYRO_DEV_NAME
},
94 { L3G4IS_GYRO_DEV_NAME
},
95 { LSM330_GYRO_DEV_NAME
},
98 MODULE_DEVICE_TABLE(i2c
, st_gyro_id_table
);
100 static struct i2c_driver st_gyro_driver
= {
102 .owner
= THIS_MODULE
,
103 .name
= "st-gyro-i2c",
104 .of_match_table
= of_match_ptr(st_gyro_of_match
),
106 .probe
= st_gyro_i2c_probe
,
107 .remove
= st_gyro_i2c_remove
,
108 .id_table
= st_gyro_id_table
,
110 module_i2c_driver(st_gyro_driver
);
112 MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
113 MODULE_DESCRIPTION("STMicroelectronics gyroscopes i2c driver");
114 MODULE_LICENSE("GPL v2");