2 * mpl3115.c - Support for Freescale MPL3115A2 pressure/temperature sensor
4 * Copyright (c) 2013 Peter Meerwald <pmeerw@pmeerw.net>
6 * This file is subject to the terms and conditions of version 2 of
7 * the GNU General Public License. See the file COPYING in the main
8 * directory of this archive for more details.
10 * (7-bit I2C slave address 0x60)
12 * TODO: FIFO buffer, altimeter mode, oversampling, continuous mode,
13 * interrupts, user offset correction, raw mode
16 #include <linux/module.h>
17 #include <linux/i2c.h>
18 #include <linux/iio/iio.h>
19 #include <linux/iio/sysfs.h>
20 #include <linux/iio/trigger_consumer.h>
21 #include <linux/iio/buffer.h>
22 #include <linux/iio/triggered_buffer.h>
23 #include <linux/delay.h>
25 #define MPL3115_STATUS 0x00
26 #define MPL3115_OUT_PRESS 0x01 /* MSB first, 20 bit */
27 #define MPL3115_OUT_TEMP 0x04 /* MSB first, 12 bit */
28 #define MPL3115_WHO_AM_I 0x0c
29 #define MPL3115_CTRL_REG1 0x26
31 #define MPL3115_DEVICE_ID 0xc4
33 #define MPL3115_STATUS_PRESS_RDY BIT(2)
34 #define MPL3115_STATUS_TEMP_RDY BIT(1)
36 #define MPL3115_CTRL_RESET BIT(2) /* software reset */
37 #define MPL3115_CTRL_OST BIT(1) /* initiate measurement */
38 #define MPL3115_CTRL_ACTIVE BIT(0) /* continuous measurement */
39 #define MPL3115_CTRL_OS_258MS (BIT(5) | BIT(4)) /* 64x oversampling */
42 struct i2c_client
*client
;
47 static int mpl3115_request(struct mpl3115_data
*data
)
51 /* trigger measurement */
52 ret
= i2c_smbus_write_byte_data(data
->client
, MPL3115_CTRL_REG1
,
53 data
->ctrl_reg1
| MPL3115_CTRL_OST
);
58 ret
= i2c_smbus_read_byte_data(data
->client
, MPL3115_CTRL_REG1
);
61 /* wait for data ready, i.e. OST cleared */
62 if (!(ret
& MPL3115_CTRL_OST
))
68 dev_err(&data
->client
->dev
, "data not ready\n");
75 static int mpl3115_read_raw(struct iio_dev
*indio_dev
,
76 struct iio_chan_spec
const *chan
,
77 int *val
, int *val2
, long mask
)
79 struct mpl3115_data
*data
= iio_priv(indio_dev
);
84 case IIO_CHAN_INFO_RAW
:
85 if (iio_buffer_enabled(indio_dev
))
89 case IIO_PRESSURE
: /* in 0.25 pascal / LSB */
90 mutex_lock(&data
->lock
);
91 ret
= mpl3115_request(data
);
93 mutex_unlock(&data
->lock
);
96 ret
= i2c_smbus_read_i2c_block_data(data
->client
,
97 MPL3115_OUT_PRESS
, 3, (u8
*) &tmp
);
98 mutex_unlock(&data
->lock
);
101 *val
= be32_to_cpu(tmp
) >> 12;
103 case IIO_TEMP
: /* in 0.0625 celsius / LSB */
104 mutex_lock(&data
->lock
);
105 ret
= mpl3115_request(data
);
107 mutex_unlock(&data
->lock
);
110 ret
= i2c_smbus_read_i2c_block_data(data
->client
,
111 MPL3115_OUT_TEMP
, 2, (u8
*) &tmp
);
112 mutex_unlock(&data
->lock
);
115 *val
= sign_extend32(be32_to_cpu(tmp
) >> 20, 11);
120 case IIO_CHAN_INFO_SCALE
:
121 switch (chan
->type
) {
124 *val2
= 250; /* want kilopascal */
125 return IIO_VAL_INT_PLUS_MICRO
;
129 return IIO_VAL_INT_PLUS_MICRO
;
137 static irqreturn_t
mpl3115_trigger_handler(int irq
, void *p
)
139 struct iio_poll_func
*pf
= p
;
140 struct iio_dev
*indio_dev
= pf
->indio_dev
;
141 struct mpl3115_data
*data
= iio_priv(indio_dev
);
142 u8 buffer
[16]; /* 32-bit channel + 16-bit channel + padding + ts */
145 mutex_lock(&data
->lock
);
146 ret
= mpl3115_request(data
);
148 mutex_unlock(&data
->lock
);
152 memset(buffer
, 0, sizeof(buffer
));
153 if (test_bit(0, indio_dev
->active_scan_mask
)) {
154 ret
= i2c_smbus_read_i2c_block_data(data
->client
,
155 MPL3115_OUT_PRESS
, 3, &buffer
[pos
]);
157 mutex_unlock(&data
->lock
);
163 if (test_bit(1, indio_dev
->active_scan_mask
)) {
164 ret
= i2c_smbus_read_i2c_block_data(data
->client
,
165 MPL3115_OUT_TEMP
, 2, &buffer
[pos
]);
167 mutex_unlock(&data
->lock
);
171 mutex_unlock(&data
->lock
);
173 iio_push_to_buffers_with_timestamp(indio_dev
, buffer
,
174 iio_get_time_ns(indio_dev
));
177 iio_trigger_notify_done(indio_dev
->trig
);
181 static const struct iio_chan_spec mpl3115_channels
[] = {
183 .type
= IIO_PRESSURE
,
184 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
185 .info_mask_shared_by_type
= BIT(IIO_CHAN_INFO_SCALE
),
192 .endianness
= IIO_BE
,
197 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
),
198 .info_mask_shared_by_type
= BIT(IIO_CHAN_INFO_SCALE
),
205 .endianness
= IIO_BE
,
208 IIO_CHAN_SOFT_TIMESTAMP(2),
211 static const struct iio_info mpl3115_info
= {
212 .read_raw
= &mpl3115_read_raw
,
213 .driver_module
= THIS_MODULE
,
216 static int mpl3115_probe(struct i2c_client
*client
,
217 const struct i2c_device_id
*id
)
219 struct mpl3115_data
*data
;
220 struct iio_dev
*indio_dev
;
223 ret
= i2c_smbus_read_byte_data(client
, MPL3115_WHO_AM_I
);
226 if (ret
!= MPL3115_DEVICE_ID
)
229 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*data
));
233 data
= iio_priv(indio_dev
);
234 data
->client
= client
;
235 mutex_init(&data
->lock
);
237 i2c_set_clientdata(client
, indio_dev
);
238 indio_dev
->info
= &mpl3115_info
;
239 indio_dev
->name
= id
->name
;
240 indio_dev
->dev
.parent
= &client
->dev
;
241 indio_dev
->modes
= INDIO_DIRECT_MODE
;
242 indio_dev
->channels
= mpl3115_channels
;
243 indio_dev
->num_channels
= ARRAY_SIZE(mpl3115_channels
);
245 /* software reset, I2C transfer is aborted (fails) */
246 i2c_smbus_write_byte_data(client
, MPL3115_CTRL_REG1
,
250 data
->ctrl_reg1
= MPL3115_CTRL_OS_258MS
;
251 ret
= i2c_smbus_write_byte_data(client
, MPL3115_CTRL_REG1
,
256 ret
= iio_triggered_buffer_setup(indio_dev
, NULL
,
257 mpl3115_trigger_handler
, NULL
);
261 ret
= iio_device_register(indio_dev
);
267 iio_triggered_buffer_cleanup(indio_dev
);
271 static int mpl3115_standby(struct mpl3115_data
*data
)
273 return i2c_smbus_write_byte_data(data
->client
, MPL3115_CTRL_REG1
,
274 data
->ctrl_reg1
& ~MPL3115_CTRL_ACTIVE
);
277 static int mpl3115_remove(struct i2c_client
*client
)
279 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
281 iio_device_unregister(indio_dev
);
282 iio_triggered_buffer_cleanup(indio_dev
);
283 mpl3115_standby(iio_priv(indio_dev
));
288 #ifdef CONFIG_PM_SLEEP
289 static int mpl3115_suspend(struct device
*dev
)
291 return mpl3115_standby(iio_priv(i2c_get_clientdata(
292 to_i2c_client(dev
))));
295 static int mpl3115_resume(struct device
*dev
)
297 struct mpl3115_data
*data
= iio_priv(i2c_get_clientdata(
298 to_i2c_client(dev
)));
300 return i2c_smbus_write_byte_data(data
->client
, MPL3115_CTRL_REG1
,
304 static SIMPLE_DEV_PM_OPS(mpl3115_pm_ops
, mpl3115_suspend
, mpl3115_resume
);
305 #define MPL3115_PM_OPS (&mpl3115_pm_ops)
307 #define MPL3115_PM_OPS NULL
310 static const struct i2c_device_id mpl3115_id
[] = {
314 MODULE_DEVICE_TABLE(i2c
, mpl3115_id
);
316 static struct i2c_driver mpl3115_driver
= {
319 .pm
= MPL3115_PM_OPS
,
321 .probe
= mpl3115_probe
,
322 .remove
= mpl3115_remove
,
323 .id_table
= mpl3115_id
,
325 module_i2c_driver(mpl3115_driver
);
327 MODULE_AUTHOR("Peter Meerwald <pmeerw@pmeerw.net>");
328 MODULE_DESCRIPTION("Freescale MPL3115 pressure/temperature driver");
329 MODULE_LICENSE("GPL");