xref: /openbmc/linux/drivers/iio/accel/st_accel_i2c.c (revision ae213c44)
1 /*
2  * STMicroelectronics accelerometers driver
3  *
4  * Copyright 2012-2013 STMicroelectronics Inc.
5  *
6  * Denis Ciocca <denis.ciocca@st.com>
7  *
8  * Licensed under the GPL-2.
9  */
10 
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/acpi.h>
15 #include <linux/i2c.h>
16 #include <linux/iio/iio.h>
17 #include <linux/property.h>
18 
19 #include <linux/iio/common/st_sensors_i2c.h>
20 #include "st_accel.h"
21 
22 #ifdef CONFIG_OF
23 static const struct of_device_id st_accel_of_match[] = {
24 	{
25 		/* An older compatible */
26 		.compatible = "st,lis3lv02d",
27 		.data = LIS3LV02DL_ACCEL_DEV_NAME,
28 	},
29 	{
30 		.compatible = "st,lis3lv02dl-accel",
31 		.data = LIS3LV02DL_ACCEL_DEV_NAME,
32 	},
33 	{
34 		.compatible = "st,lsm303dlh-accel",
35 		.data = LSM303DLH_ACCEL_DEV_NAME,
36 	},
37 	{
38 		.compatible = "st,lsm303dlhc-accel",
39 		.data = LSM303DLHC_ACCEL_DEV_NAME,
40 	},
41 	{
42 		.compatible = "st,lis3dh-accel",
43 		.data = LIS3DH_ACCEL_DEV_NAME,
44 	},
45 	{
46 		.compatible = "st,lsm330d-accel",
47 		.data = LSM330D_ACCEL_DEV_NAME,
48 	},
49 	{
50 		.compatible = "st,lsm330dl-accel",
51 		.data = LSM330DL_ACCEL_DEV_NAME,
52 	},
53 	{
54 		.compatible = "st,lsm330dlc-accel",
55 		.data = LSM330DLC_ACCEL_DEV_NAME,
56 	},
57 	{
58 		.compatible = "st,lis331dl-accel",
59 		.data = LIS331DL_ACCEL_DEV_NAME,
60 	},
61 	{
62 		.compatible = "st,lis331dlh-accel",
63 		.data = LIS331DLH_ACCEL_DEV_NAME,
64 	},
65 	{
66 		.compatible = "st,lsm303dl-accel",
67 		.data = LSM303DL_ACCEL_DEV_NAME,
68 	},
69 	{
70 		.compatible = "st,lsm303dlm-accel",
71 		.data = LSM303DLM_ACCEL_DEV_NAME,
72 	},
73 	{
74 		.compatible = "st,lsm330-accel",
75 		.data = LSM330_ACCEL_DEV_NAME,
76 	},
77 	{
78 		.compatible = "st,lsm303agr-accel",
79 		.data = LSM303AGR_ACCEL_DEV_NAME,
80 	},
81 	{
82 		.compatible = "st,lis2dh12-accel",
83 		.data = LIS2DH12_ACCEL_DEV_NAME,
84 	},
85 	{
86 		.compatible = "st,h3lis331dl-accel",
87 		.data = H3LIS331DL_ACCEL_DEV_NAME,
88 	},
89 	{
90 		.compatible = "st,lis3l02dq",
91 		.data = LIS3L02DQ_ACCEL_DEV_NAME,
92 	},
93 	{
94 		.compatible = "st,lng2dm-accel",
95 		.data = LNG2DM_ACCEL_DEV_NAME,
96 	},
97 	{
98 		.compatible = "st,lis2dw12",
99 		.data = LIS2DW12_ACCEL_DEV_NAME,
100 	},
101 	{
102 		.compatible = "st,lis3de",
103 		.data = LIS3DE_ACCEL_DEV_NAME,
104 	},
105 	{
106 		.compatible = "st,lis2de12",
107 		.data = LIS2DE12_ACCEL_DEV_NAME,
108 	},
109 	{},
110 };
111 MODULE_DEVICE_TABLE(of, st_accel_of_match);
112 #else
113 #define st_accel_of_match NULL
114 #endif
115 
116 #ifdef CONFIG_ACPI
117 static const struct acpi_device_id st_accel_acpi_match[] = {
118 	{"SMO8840", (kernel_ulong_t)LNG2DM_ACCEL_DEV_NAME},
119 	{"SMO8A90", (kernel_ulong_t)LNG2DM_ACCEL_DEV_NAME},
120 	{ },
121 };
122 MODULE_DEVICE_TABLE(acpi, st_accel_acpi_match);
123 #else
124 #define st_accel_acpi_match NULL
125 #endif
126 
127 static const struct i2c_device_id st_accel_id_table[] = {
128 	{ LSM303DLH_ACCEL_DEV_NAME },
129 	{ LSM303DLHC_ACCEL_DEV_NAME },
130 	{ LIS3DH_ACCEL_DEV_NAME },
131 	{ LSM330D_ACCEL_DEV_NAME },
132 	{ LSM330DL_ACCEL_DEV_NAME },
133 	{ LSM330DLC_ACCEL_DEV_NAME },
134 	{ LIS331DLH_ACCEL_DEV_NAME },
135 	{ LSM303DL_ACCEL_DEV_NAME },
136 	{ LSM303DLM_ACCEL_DEV_NAME },
137 	{ LSM330_ACCEL_DEV_NAME },
138 	{ LSM303AGR_ACCEL_DEV_NAME },
139 	{ LIS2DH12_ACCEL_DEV_NAME },
140 	{ LIS3L02DQ_ACCEL_DEV_NAME },
141 	{ LNG2DM_ACCEL_DEV_NAME },
142 	{ H3LIS331DL_ACCEL_DEV_NAME },
143 	{ LIS331DL_ACCEL_DEV_NAME },
144 	{ LIS3LV02DL_ACCEL_DEV_NAME },
145 	{ LIS2DW12_ACCEL_DEV_NAME },
146 	{ LIS3DE_ACCEL_DEV_NAME },
147 	{ LIS2DE12_ACCEL_DEV_NAME },
148 	{},
149 };
150 MODULE_DEVICE_TABLE(i2c, st_accel_id_table);
151 
152 static int st_accel_i2c_probe(struct i2c_client *client)
153 {
154 	struct iio_dev *indio_dev;
155 	struct st_sensor_data *adata;
156 	const char *match;
157 	int ret;
158 
159 	indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*adata));
160 	if (!indio_dev)
161 		return -ENOMEM;
162 
163 	adata = iio_priv(indio_dev);
164 
165 	match = device_get_match_data(&client->dev);
166 	if (match)
167 		strlcpy(client->name, match, sizeof(client->name));
168 
169 	st_sensors_i2c_configure(indio_dev, client, adata);
170 
171 	ret = st_accel_common_probe(indio_dev);
172 	if (ret < 0)
173 		return ret;
174 
175 	return 0;
176 }
177 
178 static int st_accel_i2c_remove(struct i2c_client *client)
179 {
180 	st_accel_common_remove(i2c_get_clientdata(client));
181 
182 	return 0;
183 }
184 
185 static struct i2c_driver st_accel_driver = {
186 	.driver = {
187 		.name = "st-accel-i2c",
188 		.of_match_table = of_match_ptr(st_accel_of_match),
189 		.acpi_match_table = ACPI_PTR(st_accel_acpi_match),
190 	},
191 	.probe_new = st_accel_i2c_probe,
192 	.remove = st_accel_i2c_remove,
193 	.id_table = st_accel_id_table,
194 };
195 module_i2c_driver(st_accel_driver);
196 
197 MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
198 MODULE_DESCRIPTION("STMicroelectronics accelerometers i2c driver");
199 MODULE_LICENSE("GPL v2");
200