1 // SPDX-License-Identifier: GPL-2.0-only
3 * STMicroelectronics accelerometers 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/acpi.h>
14 #include <linux/i2c.h>
15 #include <linux/iio/iio.h>
16 #include <linux/property.h>
18 #include <linux/iio/common/st_sensors_i2c.h>
21 static const struct of_device_id st_accel_of_match
[] = {
23 /* An older compatible */
24 .compatible
= "st,lis3lv02d",
25 .data
= LIS3LV02DL_ACCEL_DEV_NAME
,
28 .compatible
= "st,lis3lv02dl-accel",
29 .data
= LIS3LV02DL_ACCEL_DEV_NAME
,
32 .compatible
= "st,lsm303dlh-accel",
33 .data
= LSM303DLH_ACCEL_DEV_NAME
,
36 .compatible
= "st,lsm303dlhc-accel",
37 .data
= LSM303DLHC_ACCEL_DEV_NAME
,
40 .compatible
= "st,lis3dh-accel",
41 .data
= LIS3DH_ACCEL_DEV_NAME
,
44 .compatible
= "st,lsm330d-accel",
45 .data
= LSM330D_ACCEL_DEV_NAME
,
48 .compatible
= "st,lsm330dl-accel",
49 .data
= LSM330DL_ACCEL_DEV_NAME
,
52 .compatible
= "st,lsm330dlc-accel",
53 .data
= LSM330DLC_ACCEL_DEV_NAME
,
56 .compatible
= "st,lis331dl-accel",
57 .data
= LIS331DL_ACCEL_DEV_NAME
,
60 .compatible
= "st,lis331dlh-accel",
61 .data
= LIS331DLH_ACCEL_DEV_NAME
,
64 .compatible
= "st,lsm303dl-accel",
65 .data
= LSM303DL_ACCEL_DEV_NAME
,
68 .compatible
= "st,lsm303dlm-accel",
69 .data
= LSM303DLM_ACCEL_DEV_NAME
,
72 .compatible
= "st,lsm330-accel",
73 .data
= LSM330_ACCEL_DEV_NAME
,
76 .compatible
= "st,lsm303agr-accel",
77 .data
= LSM303AGR_ACCEL_DEV_NAME
,
80 .compatible
= "st,lis2dh12-accel",
81 .data
= LIS2DH12_ACCEL_DEV_NAME
,
84 .compatible
= "st,h3lis331dl-accel",
85 .data
= H3LIS331DL_ACCEL_DEV_NAME
,
88 .compatible
= "st,lis3l02dq",
89 .data
= LIS3L02DQ_ACCEL_DEV_NAME
,
92 .compatible
= "st,lng2dm-accel",
93 .data
= LNG2DM_ACCEL_DEV_NAME
,
96 .compatible
= "st,lis2dw12",
97 .data
= LIS2DW12_ACCEL_DEV_NAME
,
100 .compatible
= "st,lis3de",
101 .data
= LIS3DE_ACCEL_DEV_NAME
,
104 .compatible
= "st,lis2de12",
105 .data
= LIS2DE12_ACCEL_DEV_NAME
,
108 .compatible
= "st,lis2hh12",
109 .data
= LIS2HH12_ACCEL_DEV_NAME
,
113 MODULE_DEVICE_TABLE(of
, st_accel_of_match
);
116 static const struct acpi_device_id st_accel_acpi_match
[] = {
117 {"SMO8840", (kernel_ulong_t
)LIS2DH12_ACCEL_DEV_NAME
},
118 {"SMO8A90", (kernel_ulong_t
)LNG2DM_ACCEL_DEV_NAME
},
121 MODULE_DEVICE_TABLE(acpi
, st_accel_acpi_match
);
124 static const struct i2c_device_id st_accel_id_table
[] = {
125 { LSM303DLH_ACCEL_DEV_NAME
},
126 { LSM303DLHC_ACCEL_DEV_NAME
},
127 { LIS3DH_ACCEL_DEV_NAME
},
128 { LSM330D_ACCEL_DEV_NAME
},
129 { LSM330DL_ACCEL_DEV_NAME
},
130 { LSM330DLC_ACCEL_DEV_NAME
},
131 { LIS331DLH_ACCEL_DEV_NAME
},
132 { LSM303DL_ACCEL_DEV_NAME
},
133 { LSM303DLM_ACCEL_DEV_NAME
},
134 { LSM330_ACCEL_DEV_NAME
},
135 { LSM303AGR_ACCEL_DEV_NAME
},
136 { LIS2DH12_ACCEL_DEV_NAME
},
137 { LIS3L02DQ_ACCEL_DEV_NAME
},
138 { LNG2DM_ACCEL_DEV_NAME
},
139 { H3LIS331DL_ACCEL_DEV_NAME
},
140 { LIS331DL_ACCEL_DEV_NAME
},
141 { LIS3LV02DL_ACCEL_DEV_NAME
},
142 { LIS2DW12_ACCEL_DEV_NAME
},
143 { LIS3DE_ACCEL_DEV_NAME
},
144 { LIS2DE12_ACCEL_DEV_NAME
},
145 { LIS2HH12_ACCEL_DEV_NAME
},
148 MODULE_DEVICE_TABLE(i2c
, st_accel_id_table
);
150 static int st_accel_i2c_probe(struct i2c_client
*client
)
152 const struct st_sensor_settings
*settings
;
153 struct st_sensor_data
*adata
;
154 struct iio_dev
*indio_dev
;
157 st_sensors_dev_name_probe(&client
->dev
, client
->name
, sizeof(client
->name
));
159 settings
= st_accel_get_settings(client
->name
);
161 dev_err(&client
->dev
, "device name %s not recognized.\n",
166 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*adata
));
170 adata
= iio_priv(indio_dev
);
171 adata
->sensor_settings
= (struct st_sensor_settings
*)settings
;
173 ret
= st_sensors_i2c_configure(indio_dev
, client
);
177 ret
= st_accel_common_probe(indio_dev
);
184 static int st_accel_i2c_remove(struct i2c_client
*client
)
186 st_accel_common_remove(i2c_get_clientdata(client
));
191 static struct i2c_driver st_accel_driver
= {
193 .name
= "st-accel-i2c",
194 .of_match_table
= st_accel_of_match
,
195 .acpi_match_table
= ACPI_PTR(st_accel_acpi_match
),
197 .probe_new
= st_accel_i2c_probe
,
198 .remove
= st_accel_i2c_remove
,
199 .id_table
= st_accel_id_table
,
201 module_i2c_driver(st_accel_driver
);
203 MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
204 MODULE_DESCRIPTION("STMicroelectronics accelerometers i2c driver");
205 MODULE_LICENSE("GPL v2");