2 * IIO accel core driver for Freescale MMA7455L 3-axis 10-bit accelerometer
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * UNSUPPORTED hardware features:
10 * - 8-bit mode with different scales
11 * - INT1/INT2 interrupts
12 * - Offset calibration
16 #include <linux/delay.h>
17 #include <linux/iio/iio.h>
18 #include <linux/iio/sysfs.h>
19 #include <linux/iio/buffer.h>
20 #include <linux/iio/trigger.h>
21 #include <linux/iio/trigger_consumer.h>
22 #include <linux/iio/triggered_buffer.h>
23 #include <linux/module.h>
24 #include <linux/regmap.h>
28 #define MMA7455_REG_XOUTL 0x00
29 #define MMA7455_REG_XOUTH 0x01
30 #define MMA7455_REG_YOUTL 0x02
31 #define MMA7455_REG_YOUTH 0x03
32 #define MMA7455_REG_ZOUTL 0x04
33 #define MMA7455_REG_ZOUTH 0x05
34 #define MMA7455_REG_STATUS 0x09
35 #define MMA7455_STATUS_DRDY BIT(0)
36 #define MMA7455_REG_WHOAMI 0x0f
37 #define MMA7455_WHOAMI_ID 0x55
38 #define MMA7455_REG_MCTL 0x16
39 #define MMA7455_MCTL_MODE_STANDBY 0x00
40 #define MMA7455_MCTL_MODE_MEASURE 0x01
41 #define MMA7455_REG_CTL1 0x18
42 #define MMA7455_CTL1_DFBW_MASK BIT(7)
43 #define MMA7455_CTL1_DFBW_125HZ BIT(7)
44 #define MMA7455_CTL1_DFBW_62_5HZ 0
45 #define MMA7455_REG_TW 0x1e
48 * When MMA7455 is used in 10-bit it has a fullscale of -8g
49 * corresponding to raw value -512. The userspace interface
50 * uses m/s^2 and we declare micro units.
51 * So scale factor is given by:
52 * g * 8 * 1e6 / 512 = 153228.90625, with g = 9.80665
54 #define MMA7455_10BIT_SCALE 153229
57 struct regmap *regmap;
61 static int mma7455_drdy(struct mma7455_data *mma7455)
68 ret = regmap_read(mma7455->regmap, MMA7455_REG_STATUS, ®);
72 if (reg & MMA7455_STATUS_DRDY)
78 dev_warn(mma7455->dev, "data not ready\n");
83 static irqreturn_t mma7455_trigger_handler(int irq, void *p)
85 struct iio_poll_func *pf = p;
86 struct iio_dev *indio_dev = pf->indio_dev;
87 struct mma7455_data *mma7455 = iio_priv(indio_dev);
88 u8 buf[16]; /* 3 x 16-bit channels + padding + ts */
91 ret = mma7455_drdy(mma7455);
95 ret = regmap_bulk_read(mma7455->regmap, MMA7455_REG_XOUTL, buf,
100 iio_push_to_buffers_with_timestamp(indio_dev, buf, iio_get_time_ns());
103 iio_trigger_notify_done(indio_dev->trig);
108 static int mma7455_read_raw(struct iio_dev *indio_dev,
109 struct iio_chan_spec const *chan,
110 int *val, int *val2, long mask)
112 struct mma7455_data *mma7455 = iio_priv(indio_dev);
118 case IIO_CHAN_INFO_RAW:
119 if (iio_buffer_enabled(indio_dev))
122 ret = mma7455_drdy(mma7455);
126 ret = regmap_bulk_read(mma7455->regmap, chan->address, &data,
131 *val = sign_extend32(le16_to_cpu(data), 9);
135 case IIO_CHAN_INFO_SCALE:
137 *val2 = MMA7455_10BIT_SCALE;
139 return IIO_VAL_INT_PLUS_MICRO;
141 case IIO_CHAN_INFO_SAMP_FREQ:
142 ret = regmap_read(mma7455->regmap, MMA7455_REG_CTL1, ®);
146 if (reg & MMA7455_CTL1_DFBW_MASK)
157 static int mma7455_write_raw(struct iio_dev *indio_dev,
158 struct iio_chan_spec const *chan,
159 int val, int val2, long mask)
161 struct mma7455_data *mma7455 = iio_priv(indio_dev);
165 case IIO_CHAN_INFO_SAMP_FREQ:
166 if (val == 250 && val2 == 0)
167 i = MMA7455_CTL1_DFBW_125HZ;
168 else if (val == 125 && val2 == 0)
169 i = MMA7455_CTL1_DFBW_62_5HZ;
173 return regmap_update_bits(mma7455->regmap, MMA7455_REG_CTL1,
174 MMA7455_CTL1_DFBW_MASK, i);
176 case IIO_CHAN_INFO_SCALE:
177 /* In 10-bit mode there is only one scale available */
178 if (val == 0 && val2 == MMA7455_10BIT_SCALE)
186 static IIO_CONST_ATTR(sampling_frequency_available, "125 250");
188 static struct attribute *mma7455_attributes[] = {
189 &iio_const_attr_sampling_frequency_available.dev_attr.attr,
193 static const struct attribute_group mma7455_group = {
194 .attrs = mma7455_attributes,
197 static const struct iio_info mma7455_info = {
198 .attrs = &mma7455_group,
199 .read_raw = mma7455_read_raw,
200 .write_raw = mma7455_write_raw,
201 .driver_module = THIS_MODULE,
204 #define MMA7455_CHANNEL(axis, idx) { \
207 .address = MMA7455_REG_##axis##OUTL,\
208 .channel2 = IIO_MOD_##axis, \
209 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
210 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SAMP_FREQ) | \
211 BIT(IIO_CHAN_INFO_SCALE), \
217 .endianness = IIO_LE, \
221 static const struct iio_chan_spec mma7455_channels[] = {
222 MMA7455_CHANNEL(X, 0),
223 MMA7455_CHANNEL(Y, 1),
224 MMA7455_CHANNEL(Z, 2),
225 IIO_CHAN_SOFT_TIMESTAMP(3),
228 static const unsigned long mma7455_scan_masks[] = {0x7, 0};
230 const struct regmap_config mma7455_core_regmap = {
233 .max_register = MMA7455_REG_TW,
235 EXPORT_SYMBOL_GPL(mma7455_core_regmap);
237 int mma7455_core_probe(struct device *dev, struct regmap *regmap,
240 struct mma7455_data *mma7455;
241 struct iio_dev *indio_dev;
245 ret = regmap_read(regmap, MMA7455_REG_WHOAMI, ®);
247 dev_err(dev, "unable to read reg\n");
251 if (reg != MMA7455_WHOAMI_ID) {
252 dev_err(dev, "device id mismatch\n");
256 indio_dev = devm_iio_device_alloc(dev, sizeof(*mma7455));
260 dev_set_drvdata(dev, indio_dev);
261 mma7455 = iio_priv(indio_dev);
262 mma7455->regmap = regmap;
265 indio_dev->info = &mma7455_info;
266 indio_dev->name = name;
267 indio_dev->dev.parent = dev;
268 indio_dev->modes = INDIO_DIRECT_MODE;
269 indio_dev->channels = mma7455_channels;
270 indio_dev->num_channels = ARRAY_SIZE(mma7455_channels);
271 indio_dev->available_scan_masks = mma7455_scan_masks;
273 regmap_write(mma7455->regmap, MMA7455_REG_MCTL,
274 MMA7455_MCTL_MODE_MEASURE);
276 ret = iio_triggered_buffer_setup(indio_dev, NULL,
277 mma7455_trigger_handler, NULL);
279 dev_err(dev, "unable to setup triggered buffer\n");
283 ret = iio_device_register(indio_dev);
285 dev_err(dev, "unable to register device\n");
286 iio_triggered_buffer_cleanup(indio_dev);
292 EXPORT_SYMBOL_GPL(mma7455_core_probe);
294 int mma7455_core_remove(struct device *dev)
296 struct iio_dev *indio_dev = dev_get_drvdata(dev);
297 struct mma7455_data *mma7455 = iio_priv(indio_dev);
299 iio_device_unregister(indio_dev);
300 iio_triggered_buffer_cleanup(indio_dev);
302 regmap_write(mma7455->regmap, MMA7455_REG_MCTL,
303 MMA7455_MCTL_MODE_STANDBY);
307 EXPORT_SYMBOL_GPL(mma7455_core_remove);
310 MODULE_DESCRIPTION("Freescale MMA7455L core accelerometer driver");
311 MODULE_LICENSE("GPL v2");