1 // SPDX-License-Identifier: GPL-2.0
3 * MS5611 pressure and temperature sensor driver
5 * Copyright (c) Tomasz Duszynski <tduszyns@gmail.com>
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 s32 buf
[4]; /* s32 (pressure) + s32 (temp) + 2 * s32 (timestamp) */
218 mutex_lock(&st
->lock
);
219 ret
= ms5611_read_temp_and_pressure(indio_dev
, &buf
[1], &buf
[0]);
220 mutex_unlock(&st
->lock
);
224 iio_push_to_buffers_with_timestamp(indio_dev
, buf
,
225 iio_get_time_ns(indio_dev
));
228 iio_trigger_notify_done(indio_dev
->trig
);
233 static int ms5611_read_raw(struct iio_dev
*indio_dev
,
234 struct iio_chan_spec
const *chan
,
235 int *val
, int *val2
, long mask
)
239 struct ms5611_state
*st
= iio_priv(indio_dev
);
242 case IIO_CHAN_INFO_PROCESSED
:
243 mutex_lock(&st
->lock
);
244 ret
= ms5611_read_temp_and_pressure(indio_dev
,
246 mutex_unlock(&st
->lock
);
250 switch (chan
->type
) {
255 *val
= pressure
/ 1000;
256 *val2
= (pressure
% 1000) * 1000;
257 return IIO_VAL_INT_PLUS_MICRO
;
261 case IIO_CHAN_INFO_SCALE
:
262 switch (chan
->type
) {
269 return IIO_VAL_INT_PLUS_MICRO
;
273 case IIO_CHAN_INFO_OVERSAMPLING_RATIO
:
274 if (chan
->type
!= IIO_TEMP
&& chan
->type
!= IIO_PRESSURE
)
276 mutex_lock(&st
->lock
);
277 if (chan
->type
== IIO_TEMP
)
278 *val
= (int)st
->temp_osr
->rate
;
280 *val
= (int)st
->pressure_osr
->rate
;
281 mutex_unlock(&st
->lock
);
288 static const struct ms5611_osr
*ms5611_find_osr(int rate
,
289 const struct ms5611_osr
*osr
,
294 for (r
= 0; r
< count
; r
++)
295 if ((unsigned short)rate
== osr
[r
].rate
)
302 static int ms5611_write_raw(struct iio_dev
*indio_dev
,
303 struct iio_chan_spec
const *chan
,
304 int val
, int val2
, long mask
)
306 struct ms5611_state
*st
= iio_priv(indio_dev
);
307 const struct ms5611_osr
*osr
= NULL
;
310 if (mask
!= IIO_CHAN_INFO_OVERSAMPLING_RATIO
)
313 if (chan
->type
== IIO_TEMP
)
314 osr
= ms5611_find_osr(val
, ms5611_avail_temp_osr
,
315 ARRAY_SIZE(ms5611_avail_temp_osr
));
316 else if (chan
->type
== IIO_PRESSURE
)
317 osr
= ms5611_find_osr(val
, ms5611_avail_pressure_osr
,
318 ARRAY_SIZE(ms5611_avail_pressure_osr
));
322 ret
= iio_device_claim_direct_mode(indio_dev
);
326 mutex_lock(&st
->lock
);
328 if (chan
->type
== IIO_TEMP
)
331 st
->pressure_osr
= osr
;
333 mutex_unlock(&st
->lock
);
334 iio_device_release_direct_mode(indio_dev
);
339 static const unsigned long ms5611_scan_masks
[] = {0x3, 0};
341 static struct ms5611_chip_info chip_info_tbl
[] = {
343 .temp_and_pressure_compensate
= ms5611_temp_and_pressure_compensate
,
346 .temp_and_pressure_compensate
= ms5607_temp_and_pressure_compensate
,
350 static const struct iio_chan_spec ms5611_channels
[] = {
352 .type
= IIO_PRESSURE
,
353 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
) |
354 BIT(IIO_CHAN_INFO_SCALE
) |
355 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO
),
361 .endianness
= IIO_CPU
,
366 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
) |
367 BIT(IIO_CHAN_INFO_SCALE
) |
368 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO
),
374 .endianness
= IIO_CPU
,
377 IIO_CHAN_SOFT_TIMESTAMP(2),
380 static const struct iio_info ms5611_info
= {
381 .read_raw
= &ms5611_read_raw
,
382 .write_raw
= &ms5611_write_raw
,
383 .attrs
= &ms5611_attribute_group
,
386 static int ms5611_init(struct iio_dev
*indio_dev
)
389 struct ms5611_state
*st
= iio_priv(indio_dev
);
391 /* Enable attached regulator if any. */
392 st
->vdd
= devm_regulator_get(indio_dev
->dev
.parent
, "vdd");
394 return PTR_ERR(st
->vdd
);
396 ret
= regulator_enable(st
->vdd
);
398 dev_err(indio_dev
->dev
.parent
,
399 "failed to enable Vdd supply: %d\n", ret
);
403 ret
= ms5611_reset(indio_dev
);
405 goto err_regulator_disable
;
407 ret
= ms5611_read_prom(indio_dev
);
409 goto err_regulator_disable
;
413 err_regulator_disable
:
414 regulator_disable(st
->vdd
);
418 static void ms5611_fini(const struct iio_dev
*indio_dev
)
420 const struct ms5611_state
*st
= iio_priv(indio_dev
);
422 regulator_disable(st
->vdd
);
425 int ms5611_probe(struct iio_dev
*indio_dev
, struct device
*dev
,
426 const char *name
, int type
)
429 struct ms5611_state
*st
= iio_priv(indio_dev
);
431 mutex_init(&st
->lock
);
432 st
->chip_info
= &chip_info_tbl
[type
];
434 &ms5611_avail_temp_osr
[ARRAY_SIZE(ms5611_avail_temp_osr
) - 1];
436 &ms5611_avail_pressure_osr
[ARRAY_SIZE(ms5611_avail_pressure_osr
)
438 indio_dev
->dev
.parent
= dev
;
439 indio_dev
->name
= name
;
440 indio_dev
->info
= &ms5611_info
;
441 indio_dev
->channels
= ms5611_channels
;
442 indio_dev
->num_channels
= ARRAY_SIZE(ms5611_channels
);
443 indio_dev
->modes
= INDIO_DIRECT_MODE
;
444 indio_dev
->available_scan_masks
= ms5611_scan_masks
;
446 ret
= ms5611_init(indio_dev
);
450 ret
= iio_triggered_buffer_setup(indio_dev
, NULL
,
451 ms5611_trigger_handler
, NULL
);
453 dev_err(dev
, "iio triggered buffer setup failed\n");
457 ret
= iio_device_register(indio_dev
);
459 dev_err(dev
, "unable to register iio device\n");
460 goto err_buffer_cleanup
;
466 iio_triggered_buffer_cleanup(indio_dev
);
468 ms5611_fini(indio_dev
);
471 EXPORT_SYMBOL(ms5611_probe
);
473 int ms5611_remove(struct iio_dev
*indio_dev
)
475 iio_device_unregister(indio_dev
);
476 iio_triggered_buffer_cleanup(indio_dev
);
477 ms5611_fini(indio_dev
);
481 EXPORT_SYMBOL(ms5611_remove
);
483 MODULE_AUTHOR("Tomasz Duszynski <tduszyns@gmail.com>");
484 MODULE_DESCRIPTION("MS5611 core driver");
485 MODULE_LICENSE("GPL v2");