1 // SPDX-License-Identifier: GPL-2.0-only
3 * Freescale MMA7660FC 3-Axis Accelerometer
5 * Copyright (c) 2016, Intel Corporation.
7 * IIO driver for Freescale MMA7660FC; 7-bit I2C address: 0x4c.
10 #include <linux/acpi.h>
11 #include <linux/i2c.h>
12 #include <linux/module.h>
13 #include <linux/iio/iio.h>
14 #include <linux/iio/sysfs.h>
16 #define MMA7660_DRIVER_NAME "mma7660"
18 #define MMA7660_REG_XOUT 0x00
19 #define MMA7660_REG_YOUT 0x01
20 #define MMA7660_REG_ZOUT 0x02
21 #define MMA7660_REG_OUT_BIT_ALERT BIT(6)
23 #define MMA7660_REG_MODE 0x07
24 #define MMA7660_REG_MODE_BIT_MODE BIT(0)
25 #define MMA7660_REG_MODE_BIT_TON BIT(2)
27 #define MMA7660_I2C_READ_RETRIES 5
30 * The accelerometer has one measurement range:
32 * -1.5g - +1.5g (6-bit, signed)
34 * scale = (1.5 + 1.5) * 9.81 / (2^6 - 1) = 0.467142857
37 #define MMA7660_SCALE_AVAIL "0.467142857"
39 static const int mma7660_nscale
= 467142857;
41 #define MMA7660_CHANNEL(reg, axis) { \
45 .channel2 = IIO_MOD_##axis, \
46 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
47 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
50 static const struct iio_chan_spec mma7660_channels
[] = {
51 MMA7660_CHANNEL(MMA7660_REG_XOUT
, X
),
52 MMA7660_CHANNEL(MMA7660_REG_YOUT
, Y
),
53 MMA7660_CHANNEL(MMA7660_REG_ZOUT
, Z
),
62 struct i2c_client
*client
;
64 enum mma7660_mode mode
;
67 static IIO_CONST_ATTR(in_accel_scale_available
, MMA7660_SCALE_AVAIL
);
69 static struct attribute
*mma7660_attributes
[] = {
70 &iio_const_attr_in_accel_scale_available
.dev_attr
.attr
,
74 static const struct attribute_group mma7660_attribute_group
= {
75 .attrs
= mma7660_attributes
78 static int mma7660_set_mode(struct mma7660_data
*data
,
79 enum mma7660_mode mode
)
82 struct i2c_client
*client
= data
->client
;
84 if (mode
== data
->mode
)
87 ret
= i2c_smbus_read_byte_data(client
, MMA7660_REG_MODE
);
89 dev_err(&client
->dev
, "failed to read sensor mode\n");
93 if (mode
== MMA7660_MODE_ACTIVE
) {
94 ret
&= ~MMA7660_REG_MODE_BIT_TON
;
95 ret
|= MMA7660_REG_MODE_BIT_MODE
;
97 ret
&= ~MMA7660_REG_MODE_BIT_TON
;
98 ret
&= ~MMA7660_REG_MODE_BIT_MODE
;
101 ret
= i2c_smbus_write_byte_data(client
, MMA7660_REG_MODE
, ret
);
103 dev_err(&client
->dev
, "failed to change sensor mode\n");
112 static int mma7660_read_accel(struct mma7660_data
*data
, u8 address
)
114 int ret
, retries
= MMA7660_I2C_READ_RETRIES
;
115 struct i2c_client
*client
= data
->client
;
118 * Read data. If the Alert bit is set, the register was read at
119 * the same time as the device was attempting to update the content.
120 * The solution is to read the register again. Do this only
121 * MMA7660_I2C_READ_RETRIES times to avoid spending too much time
125 ret
= i2c_smbus_read_byte_data(client
, address
);
127 dev_err(&client
->dev
, "register read failed\n");
130 } while (retries
-- > 0 && ret
& MMA7660_REG_OUT_BIT_ALERT
);
132 if (ret
& MMA7660_REG_OUT_BIT_ALERT
) {
133 dev_err(&client
->dev
, "all register read retries failed\n");
140 static int mma7660_read_raw(struct iio_dev
*indio_dev
,
141 struct iio_chan_spec
const *chan
,
142 int *val
, int *val2
, long mask
)
144 struct mma7660_data
*data
= iio_priv(indio_dev
);
148 case IIO_CHAN_INFO_RAW
:
149 mutex_lock(&data
->lock
);
150 ret
= mma7660_read_accel(data
, chan
->address
);
151 mutex_unlock(&data
->lock
);
154 *val
= sign_extend32(ret
, 5);
156 case IIO_CHAN_INFO_SCALE
:
158 *val2
= mma7660_nscale
;
159 return IIO_VAL_INT_PLUS_NANO
;
167 static const struct iio_info mma7660_info
= {
168 .read_raw
= mma7660_read_raw
,
169 .attrs
= &mma7660_attribute_group
,
172 static int mma7660_probe(struct i2c_client
*client
,
173 const struct i2c_device_id
*id
)
176 struct iio_dev
*indio_dev
;
177 struct mma7660_data
*data
;
179 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*data
));
181 dev_err(&client
->dev
, "iio allocation failed!\n");
185 data
= iio_priv(indio_dev
);
186 data
->client
= client
;
187 i2c_set_clientdata(client
, indio_dev
);
188 mutex_init(&data
->lock
);
189 data
->mode
= MMA7660_MODE_STANDBY
;
191 indio_dev
->dev
.parent
= &client
->dev
;
192 indio_dev
->info
= &mma7660_info
;
193 indio_dev
->name
= MMA7660_DRIVER_NAME
;
194 indio_dev
->modes
= INDIO_DIRECT_MODE
;
195 indio_dev
->channels
= mma7660_channels
;
196 indio_dev
->num_channels
= ARRAY_SIZE(mma7660_channels
);
198 ret
= mma7660_set_mode(data
, MMA7660_MODE_ACTIVE
);
202 ret
= iio_device_register(indio_dev
);
204 dev_err(&client
->dev
, "device_register failed\n");
205 mma7660_set_mode(data
, MMA7660_MODE_STANDBY
);
211 static int mma7660_remove(struct i2c_client
*client
)
213 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
215 iio_device_unregister(indio_dev
);
217 return mma7660_set_mode(iio_priv(indio_dev
), MMA7660_MODE_STANDBY
);
220 #ifdef CONFIG_PM_SLEEP
221 static int mma7660_suspend(struct device
*dev
)
223 struct mma7660_data
*data
;
225 data
= iio_priv(i2c_get_clientdata(to_i2c_client(dev
)));
227 return mma7660_set_mode(data
, MMA7660_MODE_STANDBY
);
230 static int mma7660_resume(struct device
*dev
)
232 struct mma7660_data
*data
;
234 data
= iio_priv(i2c_get_clientdata(to_i2c_client(dev
)));
236 return mma7660_set_mode(data
, MMA7660_MODE_ACTIVE
);
239 static SIMPLE_DEV_PM_OPS(mma7660_pm_ops
, mma7660_suspend
, mma7660_resume
);
241 #define MMA7660_PM_OPS (&mma7660_pm_ops)
243 #define MMA7660_PM_OPS NULL
246 static const struct i2c_device_id mma7660_i2c_id
[] = {
250 MODULE_DEVICE_TABLE(i2c
, mma7660_i2c_id
);
252 static const struct of_device_id mma7660_of_match
[] = {
253 { .compatible
= "fsl,mma7660" },
256 MODULE_DEVICE_TABLE(of
, mma7660_of_match
);
258 static const struct acpi_device_id mma7660_acpi_id
[] = {
263 MODULE_DEVICE_TABLE(acpi
, mma7660_acpi_id
);
265 static struct i2c_driver mma7660_driver
= {
268 .pm
= MMA7660_PM_OPS
,
269 .of_match_table
= mma7660_of_match
,
270 .acpi_match_table
= ACPI_PTR(mma7660_acpi_id
),
272 .probe
= mma7660_probe
,
273 .remove
= mma7660_remove
,
274 .id_table
= mma7660_i2c_id
,
277 module_i2c_driver(mma7660_driver
);
279 MODULE_AUTHOR("Constantin Musca <constantin.musca@intel.com>");
280 MODULE_DESCRIPTION("Freescale MMA7660FC 3-Axis Accelerometer driver");
281 MODULE_LICENSE("GPL v2");