1 // SPDX-License-Identifier: GPL-2.0
3 * MS5611 pressure and temperature sensor driver
8 * http://www.meas-spec.com/downloads/MS5611-01BA03.pdf
9 * http://www.meas-spec.com/downloads/MS5607-02BA03.pdf
13 #include <linux/module.h>
14 #include <linux/iio/iio.h>
15 #include <linux/delay.h>
16 #include <linux/regulator/consumer.h>
18 #include <linux/iio/sysfs.h>
19 #include <linux/iio/buffer.h>
20 #include <linux/iio/triggered_buffer.h>
21 #include <linux/iio/trigger_consumer.h>
24 #define MS5611_INIT_OSR(_cmd, _conv_usec, _rate) \
25 { .cmd = _cmd, .conv_usec = _conv_usec, .rate = _rate }
27 static const struct ms5611_osr ms5611_avail_pressure_osr[] = {
28 MS5611_INIT_OSR(0x40, 600, 256),
29 MS5611_INIT_OSR(0x42, 1170, 512),
30 MS5611_INIT_OSR(0x44, 2280, 1024),
31 MS5611_INIT_OSR(0x46, 4540, 2048),
32 MS5611_INIT_OSR(0x48, 9040, 4096)
35 static const struct ms5611_osr ms5611_avail_temp_osr[] = {
36 MS5611_INIT_OSR(0x50, 600, 256),
37 MS5611_INIT_OSR(0x52, 1170, 512),
38 MS5611_INIT_OSR(0x54, 2280, 1024),
39 MS5611_INIT_OSR(0x56, 4540, 2048),
40 MS5611_INIT_OSR(0x58, 9040, 4096)
43 static const char ms5611_show_osr[] = "256 512 1024 2048 4096";
45 static IIO_CONST_ATTR(oversampling_ratio_available, ms5611_show_osr);
47 static struct attribute *ms5611_attributes[] = {
48 &iio_const_attr_oversampling_ratio_available.dev_attr.attr,
52 static const struct attribute_group ms5611_attribute_group = {
53 .attrs = ms5611_attributes,
56 static bool ms5611_prom_is_valid(u16 *prom, size_t len)
59 uint16_t crc = 0, crc_orig = prom[7] & 0x000F;
63 for (i = 0; i < len * 2; i++) {
65 crc ^= prom[i >> 1] & 0x00FF;
67 crc ^= prom[i >> 1] >> 8;
69 for (j = 0; j < 8; j++) {
71 crc = (crc << 1) ^ 0x3000;
77 crc = (crc >> 12) & 0x000F;
79 return crc_orig != 0x0000 && crc == crc_orig;
82 static int ms5611_read_prom(struct iio_dev *indio_dev)
85 struct ms5611_state *st = iio_priv(indio_dev);
87 for (i = 0; i < MS5611_PROM_WORDS_NB; i++) {
88 ret = st->read_prom_word(&indio_dev->dev,
89 i, &st->chip_info->prom[i]);
91 dev_err(&indio_dev->dev,
92 "failed to read prom at %d\n", i);
97 if (!ms5611_prom_is_valid(st->chip_info->prom, MS5611_PROM_WORDS_NB)) {
98 dev_err(&indio_dev->dev, "PROM integrity check failed\n");
105 static int ms5611_read_temp_and_pressure(struct iio_dev *indio_dev,
106 s32 *temp, s32 *pressure)
109 struct ms5611_state *st = iio_priv(indio_dev);
111 ret = st->read_adc_temp_and_pressure(&indio_dev->dev, temp, pressure);
113 dev_err(&indio_dev->dev,
114 "failed to read temperature and pressure\n");
118 return st->chip_info->temp_and_pressure_compensate(st->chip_info,
122 static int ms5611_temp_and_pressure_compensate(struct ms5611_chip_info *chip_info,
123 s32 *temp, s32 *pressure)
125 s32 t = *temp, p = *pressure;
128 dt = t - (chip_info->prom[5] << 8);
129 off = ((s64)chip_info->prom[2] << 16) + ((chip_info->prom[4] * dt) >> 7);
130 sens = ((s64)chip_info->prom[1] << 15) + ((chip_info->prom[3] * dt) >> 8);
132 t = 2000 + ((chip_info->prom[6] * dt) >> 23);
136 t2 = (dt * dt) >> 31;
137 off2 = (5 * (t - 2000) * (t - 2000)) >> 1;
141 s64 tmp = (t + 1500) * (t + 1500);
144 sens2 += (11 * tmp) >> 1;
153 *pressure = (((p * sens) >> 21) - off) >> 15;
158 static int ms5607_temp_and_pressure_compensate(struct ms5611_chip_info *chip_info,
159 s32 *temp, s32 *pressure)
161 s32 t = *temp, p = *pressure;
164 dt = t - (chip_info->prom[5] << 8);
165 off = ((s64)chip_info->prom[2] << 17) + ((chip_info->prom[4] * dt) >> 6);
166 sens = ((s64)chip_info->prom[1] << 16) + ((chip_info->prom[3] * dt) >> 7);
168 t = 2000 + ((chip_info->prom[6] * dt) >> 23);
170 s64 off2, sens2, t2, tmp;
172 t2 = (dt * dt) >> 31;
173 tmp = (t - 2000) * (t - 2000);
174 off2 = (61 * tmp) >> 4;
178 tmp = (t + 1500) * (t + 1500);
189 *pressure = (((p * sens) >> 21) - off) >> 15;
194 static int ms5611_reset(struct iio_dev *indio_dev)
197 struct ms5611_state *st = iio_priv(indio_dev);
199 ret = st->reset(&indio_dev->dev);
201 dev_err(&indio_dev->dev, "failed to reset device\n");
205 usleep_range(3000, 4000);
210 static irqreturn_t ms5611_trigger_handler(int irq, void *p)
212 struct iio_poll_func *pf = p;
213 struct iio_dev *indio_dev = pf->indio_dev;
214 struct ms5611_state *st = iio_priv(indio_dev);
215 /* Ensure buffer elements are naturally aligned */
222 mutex_lock(&st->lock);
223 ret = ms5611_read_temp_and_pressure(indio_dev, &scan.channels[1],
225 mutex_unlock(&st->lock);
229 iio_push_to_buffers_with_timestamp(indio_dev, &scan,
230 iio_get_time_ns(indio_dev));
233 iio_trigger_notify_done(indio_dev->trig);
238 static int ms5611_read_raw(struct iio_dev *indio_dev,
239 struct iio_chan_spec const *chan,
240 int *val, int *val2, long mask)
244 struct ms5611_state *st = iio_priv(indio_dev);
247 case IIO_CHAN_INFO_PROCESSED:
248 mutex_lock(&st->lock);
249 ret = ms5611_read_temp_and_pressure(indio_dev,
251 mutex_unlock(&st->lock);
255 switch (chan->type) {
260 *val = pressure / 1000;
261 *val2 = (pressure % 1000) * 1000;
262 return IIO_VAL_INT_PLUS_MICRO;
266 case IIO_CHAN_INFO_SCALE:
267 switch (chan->type) {
274 return IIO_VAL_INT_PLUS_MICRO;
278 case IIO_CHAN_INFO_OVERSAMPLING_RATIO:
279 if (chan->type != IIO_TEMP && chan->type != IIO_PRESSURE)
281 mutex_lock(&st->lock);
282 if (chan->type == IIO_TEMP)
283 *val = (int)st->temp_osr->rate;
285 *val = (int)st->pressure_osr->rate;
286 mutex_unlock(&st->lock);
293 static const struct ms5611_osr *ms5611_find_osr(int rate,
294 const struct ms5611_osr *osr,
299 for (r = 0; r < count; r++)
300 if ((unsigned short)rate == osr[r].rate)
307 static int ms5611_write_raw(struct iio_dev *indio_dev,
308 struct iio_chan_spec const *chan,
309 int val, int val2, long mask)
311 struct ms5611_state *st = iio_priv(indio_dev);
312 const struct ms5611_osr *osr = NULL;
315 if (mask != IIO_CHAN_INFO_OVERSAMPLING_RATIO)
318 if (chan->type == IIO_TEMP)
319 osr = ms5611_find_osr(val, ms5611_avail_temp_osr,
320 ARRAY_SIZE(ms5611_avail_temp_osr));
321 else if (chan->type == IIO_PRESSURE)
322 osr = ms5611_find_osr(val, ms5611_avail_pressure_osr,
323 ARRAY_SIZE(ms5611_avail_pressure_osr));
327 ret = iio_device_claim_direct_mode(indio_dev);
331 mutex_lock(&st->lock);
333 if (chan->type == IIO_TEMP)
336 st->pressure_osr = osr;
338 mutex_unlock(&st->lock);
339 iio_device_release_direct_mode(indio_dev);
344 static const unsigned long ms5611_scan_masks[] = {0x3, 0};
346 static struct ms5611_chip_info chip_info_tbl[] = {
348 .temp_and_pressure_compensate = ms5611_temp_and_pressure_compensate,
351 .temp_and_pressure_compensate = ms5607_temp_and_pressure_compensate,
355 static const struct iio_chan_spec ms5611_channels[] = {
357 .type = IIO_PRESSURE,
358 .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED) |
359 BIT(IIO_CHAN_INFO_SCALE) |
360 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO),
366 .endianness = IIO_CPU,
371 .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED) |
372 BIT(IIO_CHAN_INFO_SCALE) |
373 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO),
379 .endianness = IIO_CPU,
382 IIO_CHAN_SOFT_TIMESTAMP(2),
385 static const struct iio_info ms5611_info = {
386 .read_raw = &ms5611_read_raw,
387 .write_raw = &ms5611_write_raw,
388 .attrs = &ms5611_attribute_group,
391 static int ms5611_init(struct iio_dev *indio_dev)
394 struct ms5611_state *st = iio_priv(indio_dev);
396 /* Enable attached regulator if any. */
397 st->vdd = devm_regulator_get(indio_dev->dev.parent, "vdd");
399 return PTR_ERR(st->vdd);
401 ret = regulator_enable(st->vdd);
403 dev_err(indio_dev->dev.parent,
404 "failed to enable Vdd supply: %d\n", ret);
408 ret = ms5611_reset(indio_dev);
410 goto err_regulator_disable;
412 ret = ms5611_read_prom(indio_dev);
414 goto err_regulator_disable;
418 err_regulator_disable:
419 regulator_disable(st->vdd);
423 static void ms5611_fini(const struct iio_dev *indio_dev)
425 const struct ms5611_state *st = iio_priv(indio_dev);
427 regulator_disable(st->vdd);
430 int ms5611_probe(struct iio_dev *indio_dev, struct device *dev,
431 const char *name, int type)
434 struct ms5611_state *st = iio_priv(indio_dev);
436 mutex_init(&st->lock);
437 st->chip_info = &chip_info_tbl[type];
439 &ms5611_avail_temp_osr[ARRAY_SIZE(ms5611_avail_temp_osr) - 1];
441 &ms5611_avail_pressure_osr[ARRAY_SIZE(ms5611_avail_pressure_osr)
443 indio_dev->name = name;
444 indio_dev->info = &ms5611_info;
445 indio_dev->channels = ms5611_channels;
446 indio_dev->num_channels = ARRAY_SIZE(ms5611_channels);
447 indio_dev->modes = INDIO_DIRECT_MODE;
448 indio_dev->available_scan_masks = ms5611_scan_masks;
450 ret = ms5611_init(indio_dev);
454 ret = iio_triggered_buffer_setup(indio_dev, NULL,
455 ms5611_trigger_handler, NULL);
457 dev_err(dev, "iio triggered buffer setup failed\n");
461 ret = iio_device_register(indio_dev);
463 dev_err(dev, "unable to register iio device\n");
464 goto err_buffer_cleanup;
470 iio_triggered_buffer_cleanup(indio_dev);
472 ms5611_fini(indio_dev);
475 EXPORT_SYMBOL(ms5611_probe);
477 int ms5611_remove(struct iio_dev *indio_dev)
479 iio_device_unregister(indio_dev);
480 iio_triggered_buffer_cleanup(indio_dev);
481 ms5611_fini(indio_dev);
485 EXPORT_SYMBOL(ms5611_remove);
488 MODULE_DESCRIPTION("MS5611 core driver");
489 MODULE_LICENSE("GPL v2");