2 * Copyright (c) 2010 Christoph Mair <christoph.mair@gmail.com>
3 * Copyright (c) 2012 Bosch Sensortec GmbH
4 * Copyright (c) 2012 Unixphere AB
5 * Copyright (c) 2014 Intel Corporation
6 * Copyright (c) 2016 Linus Walleij <linus.walleij@linaro.org>
8 * Driver for Bosch Sensortec BMP180 and BMP280 digital pressure sensor.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 * https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP180-DS000-121.pdf
16 * https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001-12.pdf
17 * https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME280_DS001-11.pdf
20 #define pr_fmt(fmt) "bmp280: " fmt
22 #include <linux/device.h>
23 #include <linux/module.h>
24 #include <linux/regmap.h>
25 #include <linux/delay.h>
26 #include <linux/iio/iio.h>
27 #include <linux/iio/sysfs.h>
28 #include <linux/gpio/consumer.h>
29 #include <linux/regulator/consumer.h>
30 #include <linux/interrupt.h>
31 #include <linux/irq.h> /* For irq_get_irq_data() */
32 #include <linux/completion.h>
33 #include <linux/pm_runtime.h>
34 #include <linux/random.h>
39 * These enums are used for indexing into the array of calibration
40 * coefficients for BMP180.
42 enum { AC1
, AC2
, AC3
, AC4
, AC5
, AC6
, B1
, B2
, MB
, MC
, MD
};
61 struct regmap
*regmap
;
62 struct completion done
;
64 const struct bmp280_chip_info
*chip_info
;
65 struct bmp180_calib calib
;
66 struct regulator
*vddd
;
67 struct regulator
*vdda
;
68 unsigned int start_up_time
; /* in milliseconds */
70 /* log of base 2 of oversampling rate */
71 u8 oversampling_press
;
73 u8 oversampling_humid
;
76 * Carryover value from temperature conversion, used in pressure
82 struct bmp280_chip_info
{
83 const int *oversampling_temp_avail
;
84 int num_oversampling_temp_avail
;
86 const int *oversampling_press_avail
;
87 int num_oversampling_press_avail
;
89 const int *oversampling_humid_avail
;
90 int num_oversampling_humid_avail
;
92 int (*chip_config
)(struct bmp280_data
*);
93 int (*read_temp
)(struct bmp280_data
*, int *);
94 int (*read_press
)(struct bmp280_data
*, int *, int *);
95 int (*read_humid
)(struct bmp280_data
*, int *, int *);
99 * These enums are used for indexing into the array of compensation
100 * parameters for BMP280.
103 enum { P1
, P2
, P3
, P4
, P5
, P6
, P7
, P8
, P9
};
105 static const struct iio_chan_spec bmp280_channels
[] = {
107 .type
= IIO_PRESSURE
,
108 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
) |
109 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO
),
113 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
) |
114 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO
),
117 .type
= IIO_HUMIDITYRELATIVE
,
118 .info_mask_separate
= BIT(IIO_CHAN_INFO_PROCESSED
) |
119 BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO
),
124 * Returns humidity in percent, resolution is 0.01 percent. Output value of
125 * "47445" represents 47445/1024 = 46.333 %RH.
127 * Taken from BME280 datasheet, Section 4.2.3, "Compensation formula".
130 static u32
bmp280_compensate_humidity(struct bmp280_data
*data
,
133 struct device
*dev
= data
->dev
;
134 unsigned int H1
, H3
, tmp
;
135 int H2
, H4
, H5
, H6
, ret
, var
;
137 ret
= regmap_read(data
->regmap
, BMP280_REG_COMP_H1
, &H1
);
139 dev_err(dev
, "failed to read H1 comp value\n");
143 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_COMP_H2
, &tmp
, 2);
145 dev_err(dev
, "failed to read H2 comp value\n");
148 H2
= sign_extend32(le16_to_cpu(tmp
), 15);
150 ret
= regmap_read(data
->regmap
, BMP280_REG_COMP_H3
, &H3
);
152 dev_err(dev
, "failed to read H3 comp value\n");
156 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_COMP_H4
, &tmp
, 2);
158 dev_err(dev
, "failed to read H4 comp value\n");
161 H4
= sign_extend32(((be16_to_cpu(tmp
) >> 4) & 0xff0) |
162 (be16_to_cpu(tmp
) & 0xf), 11);
164 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_COMP_H5
, &tmp
, 2);
166 dev_err(dev
, "failed to read H5 comp value\n");
169 H5
= sign_extend32(((le16_to_cpu(tmp
) >> 4) & 0xfff), 11);
171 ret
= regmap_read(data
->regmap
, BMP280_REG_COMP_H6
, &tmp
);
173 dev_err(dev
, "failed to read H6 comp value\n");
176 H6
= sign_extend32(tmp
, 7);
178 var
= ((s32
)data
->t_fine
) - (s32
)76800;
179 var
= ((((adc_humidity
<< 14) - (H4
<< 20) - (H5
* var
))
180 + (s32
)16384) >> 15) * (((((((var
* H6
) >> 10)
181 * (((var
* (s32
)H3
) >> 11) + (s32
)32768)) >> 10)
182 + (s32
)2097152) * H2
+ 8192) >> 14);
183 var
-= ((((var
>> 15) * (var
>> 15)) >> 7) * (s32
)H1
) >> 4;
189 * Returns temperature in DegC, resolution is 0.01 DegC. Output value of
190 * "5123" equals 51.23 DegC. t_fine carries fine temperature as global
193 * Taken from datasheet, Section 3.11.3, "Compensation formula".
195 static s32
bmp280_compensate_temp(struct bmp280_data
*data
,
200 __le16 buf
[BMP280_COMP_TEMP_REG_COUNT
/ 2];
202 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_COMP_TEMP_START
,
203 buf
, BMP280_COMP_TEMP_REG_COUNT
);
206 "failed to read temperature calibration parameters\n");
211 * The double casts are necessary because le16_to_cpu returns an
212 * unsigned 16-bit value. Casting that value directly to a
213 * signed 32-bit will not do proper sign extension.
215 * Conversely, T1 and P1 are unsigned values, so they can be
216 * cast straight to the larger type.
218 var1
= (((adc_temp
>> 3) - ((s32
)le16_to_cpu(buf
[T1
]) << 1)) *
219 ((s32
)(s16
)le16_to_cpu(buf
[T2
]))) >> 11;
220 var2
= (((((adc_temp
>> 4) - ((s32
)le16_to_cpu(buf
[T1
]))) *
221 ((adc_temp
>> 4) - ((s32
)le16_to_cpu(buf
[T1
])))) >> 12) *
222 ((s32
)(s16
)le16_to_cpu(buf
[T3
]))) >> 14;
223 data
->t_fine
= var1
+ var2
;
225 return (data
->t_fine
* 5 + 128) >> 8;
229 * Returns pressure in Pa as unsigned 32 bit integer in Q24.8 format (24
230 * integer bits and 8 fractional bits). Output value of "24674867"
231 * represents 24674867/256 = 96386.2 Pa = 963.862 hPa
233 * Taken from datasheet, Section 3.11.3, "Compensation formula".
235 static u32
bmp280_compensate_press(struct bmp280_data
*data
,
240 __le16 buf
[BMP280_COMP_PRESS_REG_COUNT
/ 2];
242 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_COMP_PRESS_START
,
243 buf
, BMP280_COMP_PRESS_REG_COUNT
);
246 "failed to read pressure calibration parameters\n");
250 var1
= ((s64
)data
->t_fine
) - 128000;
251 var2
= var1
* var1
* (s64
)(s16
)le16_to_cpu(buf
[P6
]);
252 var2
+= (var1
* (s64
)(s16
)le16_to_cpu(buf
[P5
])) << 17;
253 var2
+= ((s64
)(s16
)le16_to_cpu(buf
[P4
])) << 35;
254 var1
= ((var1
* var1
* (s64
)(s16
)le16_to_cpu(buf
[P3
])) >> 8) +
255 ((var1
* (s64
)(s16
)le16_to_cpu(buf
[P2
])) << 12);
256 var1
= ((((s64
)1) << 47) + var1
) * ((s64
)le16_to_cpu(buf
[P1
])) >> 33;
261 p
= ((((s64
)1048576 - adc_press
) << 31) - var2
) * 3125;
262 p
= div64_s64(p
, var1
);
263 var1
= (((s64
)(s16
)le16_to_cpu(buf
[P9
])) * (p
>> 13) * (p
>> 13)) >> 25;
264 var2
= (((s64
)(s16
)le16_to_cpu(buf
[P8
])) * p
) >> 19;
265 p
= ((p
+ var1
+ var2
) >> 8) + (((s64
)(s16
)le16_to_cpu(buf
[P7
])) << 4);
270 static int bmp280_read_temp(struct bmp280_data
*data
,
275 s32 adc_temp
, comp_temp
;
277 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_TEMP_MSB
,
280 dev_err(data
->dev
, "failed to read temperature\n");
284 adc_temp
= be32_to_cpu(tmp
) >> 12;
285 comp_temp
= bmp280_compensate_temp(data
, adc_temp
);
288 * val might be NULL if we're called by the read_press routine,
289 * who only cares about the carry over t_fine value.
292 *val
= comp_temp
* 10;
299 static int bmp280_read_press(struct bmp280_data
*data
,
307 /* Read and compensate temperature so we get a reading of t_fine. */
308 ret
= bmp280_read_temp(data
, NULL
);
312 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_PRESS_MSB
,
315 dev_err(data
->dev
, "failed to read pressure\n");
319 adc_press
= be32_to_cpu(tmp
) >> 12;
320 comp_press
= bmp280_compensate_press(data
, adc_press
);
325 return IIO_VAL_FRACTIONAL
;
328 static int bmp280_read_humid(struct bmp280_data
*data
, int *val
, int *val2
)
335 /* Read and compensate temperature so we get a reading of t_fine. */
336 ret
= bmp280_read_temp(data
, NULL
);
340 ret
= regmap_bulk_read(data
->regmap
, BMP280_REG_HUMIDITY_MSB
,
343 dev_err(data
->dev
, "failed to read humidity\n");
347 adc_humidity
= be16_to_cpu(tmp
);
348 comp_humidity
= bmp280_compensate_humidity(data
, adc_humidity
);
350 *val
= comp_humidity
;
353 return IIO_VAL_FRACTIONAL
;
356 static int bmp280_read_raw(struct iio_dev
*indio_dev
,
357 struct iio_chan_spec
const *chan
,
358 int *val
, int *val2
, long mask
)
361 struct bmp280_data
*data
= iio_priv(indio_dev
);
363 pm_runtime_get_sync(data
->dev
);
364 mutex_lock(&data
->lock
);
367 case IIO_CHAN_INFO_PROCESSED
:
368 switch (chan
->type
) {
369 case IIO_HUMIDITYRELATIVE
:
370 ret
= data
->chip_info
->read_humid(data
, val
, val2
);
373 ret
= data
->chip_info
->read_press(data
, val
, val2
);
376 ret
= data
->chip_info
->read_temp(data
, val
);
383 case IIO_CHAN_INFO_OVERSAMPLING_RATIO
:
384 switch (chan
->type
) {
385 case IIO_HUMIDITYRELATIVE
:
386 *val
= 1 << data
->oversampling_humid
;
390 *val
= 1 << data
->oversampling_press
;
394 *val
= 1 << data
->oversampling_temp
;
407 mutex_unlock(&data
->lock
);
408 pm_runtime_mark_last_busy(data
->dev
);
409 pm_runtime_put_autosuspend(data
->dev
);
414 static int bmp280_write_oversampling_ratio_humid(struct bmp280_data
*data
,
418 const int *avail
= data
->chip_info
->oversampling_humid_avail
;
419 const int n
= data
->chip_info
->num_oversampling_humid_avail
;
421 for (i
= 0; i
< n
; i
++) {
422 if (avail
[i
] == val
) {
423 data
->oversampling_humid
= ilog2(val
);
425 return data
->chip_info
->chip_config(data
);
431 static int bmp280_write_oversampling_ratio_temp(struct bmp280_data
*data
,
435 const int *avail
= data
->chip_info
->oversampling_temp_avail
;
436 const int n
= data
->chip_info
->num_oversampling_temp_avail
;
438 for (i
= 0; i
< n
; i
++) {
439 if (avail
[i
] == val
) {
440 data
->oversampling_temp
= ilog2(val
);
442 return data
->chip_info
->chip_config(data
);
448 static int bmp280_write_oversampling_ratio_press(struct bmp280_data
*data
,
452 const int *avail
= data
->chip_info
->oversampling_press_avail
;
453 const int n
= data
->chip_info
->num_oversampling_press_avail
;
455 for (i
= 0; i
< n
; i
++) {
456 if (avail
[i
] == val
) {
457 data
->oversampling_press
= ilog2(val
);
459 return data
->chip_info
->chip_config(data
);
465 static int bmp280_write_raw(struct iio_dev
*indio_dev
,
466 struct iio_chan_spec
const *chan
,
467 int val
, int val2
, long mask
)
470 struct bmp280_data
*data
= iio_priv(indio_dev
);
473 case IIO_CHAN_INFO_OVERSAMPLING_RATIO
:
474 pm_runtime_get_sync(data
->dev
);
475 mutex_lock(&data
->lock
);
476 switch (chan
->type
) {
477 case IIO_HUMIDITYRELATIVE
:
478 ret
= bmp280_write_oversampling_ratio_humid(data
, val
);
481 ret
= bmp280_write_oversampling_ratio_press(data
, val
);
484 ret
= bmp280_write_oversampling_ratio_temp(data
, val
);
490 mutex_unlock(&data
->lock
);
491 pm_runtime_mark_last_busy(data
->dev
);
492 pm_runtime_put_autosuspend(data
->dev
);
501 static ssize_t
bmp280_show_avail(char *buf
, const int *vals
, const int n
)
506 for (i
= 0; i
< n
; i
++)
507 len
+= scnprintf(buf
+ len
, PAGE_SIZE
- len
, "%d ", vals
[i
]);
514 static ssize_t
bmp280_show_temp_oversampling_avail(struct device
*dev
,
515 struct device_attribute
*attr
, char *buf
)
517 struct bmp280_data
*data
= iio_priv(dev_to_iio_dev(dev
));
519 return bmp280_show_avail(buf
, data
->chip_info
->oversampling_temp_avail
,
520 data
->chip_info
->num_oversampling_temp_avail
);
523 static ssize_t
bmp280_show_press_oversampling_avail(struct device
*dev
,
524 struct device_attribute
*attr
, char *buf
)
526 struct bmp280_data
*data
= iio_priv(dev_to_iio_dev(dev
));
528 return bmp280_show_avail(buf
, data
->chip_info
->oversampling_press_avail
,
529 data
->chip_info
->num_oversampling_press_avail
);
532 static IIO_DEVICE_ATTR(in_temp_oversampling_ratio_available
,
533 S_IRUGO
, bmp280_show_temp_oversampling_avail
, NULL
, 0);
535 static IIO_DEVICE_ATTR(in_pressure_oversampling_ratio_available
,
536 S_IRUGO
, bmp280_show_press_oversampling_avail
, NULL
, 0);
538 static struct attribute
*bmp280_attributes
[] = {
539 &iio_dev_attr_in_temp_oversampling_ratio_available
.dev_attr
.attr
,
540 &iio_dev_attr_in_pressure_oversampling_ratio_available
.dev_attr
.attr
,
544 static const struct attribute_group bmp280_attrs_group
= {
545 .attrs
= bmp280_attributes
,
548 static const struct iio_info bmp280_info
= {
549 .driver_module
= THIS_MODULE
,
550 .read_raw
= &bmp280_read_raw
,
551 .write_raw
= &bmp280_write_raw
,
552 .attrs
= &bmp280_attrs_group
,
555 static int bmp280_chip_config(struct bmp280_data
*data
)
558 u8 osrs
= BMP280_OSRS_TEMP_X(data
->oversampling_temp
+ 1) |
559 BMP280_OSRS_PRESS_X(data
->oversampling_press
+ 1);
561 ret
= regmap_write_bits(data
->regmap
, BMP280_REG_CTRL_MEAS
,
562 BMP280_OSRS_TEMP_MASK
|
563 BMP280_OSRS_PRESS_MASK
|
565 osrs
| BMP280_MODE_NORMAL
);
568 "failed to write ctrl_meas register\n");
572 ret
= regmap_update_bits(data
->regmap
, BMP280_REG_CONFIG
,
577 "failed to write config register\n");
584 static const int bmp280_oversampling_avail
[] = { 1, 2, 4, 8, 16 };
586 static const struct bmp280_chip_info bmp280_chip_info
= {
587 .oversampling_temp_avail
= bmp280_oversampling_avail
,
588 .num_oversampling_temp_avail
= ARRAY_SIZE(bmp280_oversampling_avail
),
590 .oversampling_press_avail
= bmp280_oversampling_avail
,
591 .num_oversampling_press_avail
= ARRAY_SIZE(bmp280_oversampling_avail
),
593 .chip_config
= bmp280_chip_config
,
594 .read_temp
= bmp280_read_temp
,
595 .read_press
= bmp280_read_press
,
598 static int bme280_chip_config(struct bmp280_data
*data
)
600 int ret
= bmp280_chip_config(data
);
601 u8 osrs
= BMP280_OSRS_HUMIDITIY_X(data
->oversampling_humid
+ 1);
606 return regmap_update_bits(data
->regmap
, BMP280_REG_CTRL_HUMIDITY
,
607 BMP280_OSRS_HUMIDITY_MASK
, osrs
);
610 static const struct bmp280_chip_info bme280_chip_info
= {
611 .oversampling_temp_avail
= bmp280_oversampling_avail
,
612 .num_oversampling_temp_avail
= ARRAY_SIZE(bmp280_oversampling_avail
),
614 .oversampling_press_avail
= bmp280_oversampling_avail
,
615 .num_oversampling_press_avail
= ARRAY_SIZE(bmp280_oversampling_avail
),
617 .oversampling_humid_avail
= bmp280_oversampling_avail
,
618 .num_oversampling_humid_avail
= ARRAY_SIZE(bmp280_oversampling_avail
),
620 .chip_config
= bme280_chip_config
,
621 .read_temp
= bmp280_read_temp
,
622 .read_press
= bmp280_read_press
,
623 .read_humid
= bmp280_read_humid
,
626 static int bmp180_measure(struct bmp280_data
*data
, u8 ctrl_meas
)
629 const int conversion_time_max
[] = { 4500, 7500, 13500, 25500 };
630 unsigned int delay_us
;
634 init_completion(&data
->done
);
636 ret
= regmap_write(data
->regmap
, BMP280_REG_CTRL_MEAS
, ctrl_meas
);
642 * If we have a completion interrupt, use it, wait up to
643 * 100ms. The longest conversion time listed is 76.5 ms for
644 * advanced resolution mode.
646 ret
= wait_for_completion_timeout(&data
->done
,
647 1 + msecs_to_jiffies(100));
649 dev_err(data
->dev
, "timeout waiting for completion\n");
651 if (ctrl_meas
== BMP180_MEAS_TEMP
)
655 conversion_time_max
[data
->oversampling_press
];
657 usleep_range(delay_us
, delay_us
+ 1000);
660 ret
= regmap_read(data
->regmap
, BMP280_REG_CTRL_MEAS
, &ctrl
);
664 /* The value of this bit reset to "0" after conversion is complete */
665 if (ctrl
& BMP180_MEAS_SCO
)
671 static int bmp180_read_adc_temp(struct bmp280_data
*data
, int *val
)
676 ret
= bmp180_measure(data
, BMP180_MEAS_TEMP
);
680 ret
= regmap_bulk_read(data
->regmap
, BMP180_REG_OUT_MSB
, (u8
*)&tmp
, 2);
684 *val
= be16_to_cpu(tmp
);
689 static int bmp180_read_calib(struct bmp280_data
*data
,
690 struct bmp180_calib
*calib
)
694 __be16 buf
[BMP180_REG_CALIB_COUNT
/ 2];
696 ret
= regmap_bulk_read(data
->regmap
, BMP180_REG_CALIB_START
, buf
,
702 /* None of the words has the value 0 or 0xFFFF */
703 for (i
= 0; i
< ARRAY_SIZE(buf
); i
++) {
704 if (buf
[i
] == cpu_to_be16(0) || buf
[i
] == cpu_to_be16(0xffff))
708 /* Toss the calibration data into the entropy pool */
709 add_device_randomness(buf
, sizeof(buf
));
711 calib
->AC1
= be16_to_cpu(buf
[AC1
]);
712 calib
->AC2
= be16_to_cpu(buf
[AC2
]);
713 calib
->AC3
= be16_to_cpu(buf
[AC3
]);
714 calib
->AC4
= be16_to_cpu(buf
[AC4
]);
715 calib
->AC5
= be16_to_cpu(buf
[AC5
]);
716 calib
->AC6
= be16_to_cpu(buf
[AC6
]);
717 calib
->B1
= be16_to_cpu(buf
[B1
]);
718 calib
->B2
= be16_to_cpu(buf
[B2
]);
719 calib
->MB
= be16_to_cpu(buf
[MB
]);
720 calib
->MC
= be16_to_cpu(buf
[MC
]);
721 calib
->MD
= be16_to_cpu(buf
[MD
]);
727 * Returns temperature in DegC, resolution is 0.1 DegC.
728 * t_fine carries fine temperature as global value.
730 * Taken from datasheet, Section 3.5, "Calculating pressure and temperature".
732 static s32
bmp180_compensate_temp(struct bmp280_data
*data
, s32 adc_temp
)
735 struct bmp180_calib
*calib
= &data
->calib
;
737 x1
= ((adc_temp
- calib
->AC6
) * calib
->AC5
) >> 15;
738 x2
= (calib
->MC
<< 11) / (x1
+ calib
->MD
);
739 data
->t_fine
= x1
+ x2
;
741 return (data
->t_fine
+ 8) >> 4;
744 static int bmp180_read_temp(struct bmp280_data
*data
, int *val
)
747 s32 adc_temp
, comp_temp
;
749 ret
= bmp180_read_adc_temp(data
, &adc_temp
);
753 comp_temp
= bmp180_compensate_temp(data
, adc_temp
);
756 * val might be NULL if we're called by the read_press routine,
757 * who only cares about the carry over t_fine value.
760 *val
= comp_temp
* 100;
767 static int bmp180_read_adc_press(struct bmp280_data
*data
, int *val
)
771 u8 oss
= data
->oversampling_press
;
773 ret
= bmp180_measure(data
, BMP180_MEAS_PRESS_X(oss
));
777 ret
= regmap_bulk_read(data
->regmap
, BMP180_REG_OUT_MSB
, (u8
*)&tmp
, 3);
781 *val
= (be32_to_cpu(tmp
) >> 8) >> (8 - oss
);
787 * Returns pressure in Pa, resolution is 1 Pa.
789 * Taken from datasheet, Section 3.5, "Calculating pressure and temperature".
791 static u32
bmp180_compensate_press(struct bmp280_data
*data
, s32 adc_press
)
796 s32 oss
= data
->oversampling_press
;
797 struct bmp180_calib
*calib
= &data
->calib
;
799 b6
= data
->t_fine
- 4000;
800 x1
= (calib
->B2
* (b6
* b6
>> 12)) >> 11;
801 x2
= calib
->AC2
* b6
>> 11;
803 b3
= ((((s32
)calib
->AC1
* 4 + x3
) << oss
) + 2) / 4;
804 x1
= calib
->AC3
* b6
>> 13;
805 x2
= (calib
->B1
* ((b6
* b6
) >> 12)) >> 16;
806 x3
= (x1
+ x2
+ 2) >> 2;
807 b4
= calib
->AC4
* (u32
)(x3
+ 32768) >> 15;
808 b7
= ((u32
)adc_press
- b3
) * (50000 >> oss
);
814 x1
= (p
>> 8) * (p
>> 8);
815 x1
= (x1
* 3038) >> 16;
816 x2
= (-7357 * p
) >> 16;
818 return p
+ ((x1
+ x2
+ 3791) >> 4);
821 static int bmp180_read_press(struct bmp280_data
*data
,
828 /* Read and compensate temperature so we get a reading of t_fine. */
829 ret
= bmp180_read_temp(data
, NULL
);
833 ret
= bmp180_read_adc_press(data
, &adc_press
);
837 comp_press
= bmp180_compensate_press(data
, adc_press
);
842 return IIO_VAL_FRACTIONAL
;
845 static int bmp180_chip_config(struct bmp280_data
*data
)
850 static const int bmp180_oversampling_temp_avail
[] = { 1 };
851 static const int bmp180_oversampling_press_avail
[] = { 1, 2, 4, 8 };
853 static const struct bmp280_chip_info bmp180_chip_info
= {
854 .oversampling_temp_avail
= bmp180_oversampling_temp_avail
,
855 .num_oversampling_temp_avail
=
856 ARRAY_SIZE(bmp180_oversampling_temp_avail
),
858 .oversampling_press_avail
= bmp180_oversampling_press_avail
,
859 .num_oversampling_press_avail
=
860 ARRAY_SIZE(bmp180_oversampling_press_avail
),
862 .chip_config
= bmp180_chip_config
,
863 .read_temp
= bmp180_read_temp
,
864 .read_press
= bmp180_read_press
,
867 static irqreturn_t
bmp085_eoc_irq(int irq
, void *d
)
869 struct bmp280_data
*data
= d
;
871 complete(&data
->done
);
876 static int bmp085_fetch_eoc_irq(struct device
*dev
,
879 struct bmp280_data
*data
)
881 unsigned long irq_trig
;
884 irq_trig
= irqd_get_trigger_type(irq_get_irq_data(irq
));
885 if (irq_trig
!= IRQF_TRIGGER_RISING
) {
886 dev_err(dev
, "non-rising trigger given for EOC interrupt, "
887 "trying to enforce it\n");
888 irq_trig
= IRQF_TRIGGER_RISING
;
890 ret
= devm_request_threaded_irq(dev
,
898 /* Bail out without IRQ but keep the driver in place */
899 dev_err(dev
, "unable to request DRDY IRQ\n");
903 data
->use_eoc
= true;
907 int bmp280_common_probe(struct device
*dev
,
908 struct regmap
*regmap
,
914 struct iio_dev
*indio_dev
;
915 struct bmp280_data
*data
;
916 unsigned int chip_id
;
917 struct gpio_desc
*gpiod
;
919 indio_dev
= devm_iio_device_alloc(dev
, sizeof(*data
));
923 data
= iio_priv(indio_dev
);
924 mutex_init(&data
->lock
);
927 indio_dev
->dev
.parent
= dev
;
928 indio_dev
->name
= name
;
929 indio_dev
->channels
= bmp280_channels
;
930 indio_dev
->info
= &bmp280_info
;
931 indio_dev
->modes
= INDIO_DIRECT_MODE
;
935 indio_dev
->num_channels
= 2;
936 data
->chip_info
= &bmp180_chip_info
;
937 data
->oversampling_press
= ilog2(8);
938 data
->oversampling_temp
= ilog2(1);
939 data
->start_up_time
= 10;
942 indio_dev
->num_channels
= 2;
943 data
->chip_info
= &bmp280_chip_info
;
944 data
->oversampling_press
= ilog2(16);
945 data
->oversampling_temp
= ilog2(2);
946 data
->start_up_time
= 2;
949 indio_dev
->num_channels
= 3;
950 data
->chip_info
= &bme280_chip_info
;
951 data
->oversampling_press
= ilog2(16);
952 data
->oversampling_humid
= ilog2(16);
953 data
->oversampling_temp
= ilog2(2);
954 data
->start_up_time
= 2;
960 /* Bring up regulators */
961 data
->vddd
= devm_regulator_get(dev
, "vddd");
962 if (IS_ERR(data
->vddd
)) {
963 dev_err(dev
, "failed to get VDDD regulator\n");
964 return PTR_ERR(data
->vddd
);
966 ret
= regulator_enable(data
->vddd
);
968 dev_err(dev
, "failed to enable VDDD regulator\n");
971 data
->vdda
= devm_regulator_get(dev
, "vdda");
972 if (IS_ERR(data
->vdda
)) {
973 dev_err(dev
, "failed to get VDDA regulator\n");
974 ret
= PTR_ERR(data
->vdda
);
975 goto out_disable_vddd
;
977 ret
= regulator_enable(data
->vdda
);
979 dev_err(dev
, "failed to enable VDDA regulator\n");
980 goto out_disable_vddd
;
982 /* Wait to make sure we started up properly */
983 mdelay(data
->start_up_time
);
985 /* Bring chip out of reset if there is an assigned GPIO line */
986 gpiod
= devm_gpiod_get(dev
, "reset", GPIOD_OUT_HIGH
);
987 /* Deassert the signal */
988 if (!IS_ERR(gpiod
)) {
989 dev_info(dev
, "release reset\n");
990 gpiod_set_value(gpiod
, 0);
993 data
->regmap
= regmap
;
994 ret
= regmap_read(regmap
, BMP280_REG_ID
, &chip_id
);
996 goto out_disable_vdda
;
997 if (chip_id
!= chip
) {
998 dev_err(dev
, "bad chip id: expected %x got %x\n",
1001 goto out_disable_vdda
;
1004 ret
= data
->chip_info
->chip_config(data
);
1006 goto out_disable_vdda
;
1008 dev_set_drvdata(dev
, indio_dev
);
1011 * The BMP085 and BMP180 has calibration in an E2PROM, read it out
1012 * at probe time. It will not change.
1014 if (chip_id
== BMP180_CHIP_ID
) {
1015 ret
= bmp180_read_calib(data
, &data
->calib
);
1018 "failed to read calibration coefficients\n");
1019 goto out_disable_vdda
;
1024 * Attempt to grab an optional EOC IRQ - only the BMP085 has this
1025 * however as it happens, the BMP085 shares the chip ID of BMP180
1026 * so we look for an IRQ if we have that.
1028 if (irq
> 0 || (chip_id
== BMP180_CHIP_ID
)) {
1029 ret
= bmp085_fetch_eoc_irq(dev
, name
, irq
, data
);
1031 goto out_disable_vdda
;
1034 /* Enable runtime PM */
1035 pm_runtime_get_noresume(dev
);
1036 pm_runtime_set_active(dev
);
1037 pm_runtime_enable(dev
);
1039 * Set autosuspend to two orders of magnitude larger than the
1042 pm_runtime_set_autosuspend_delay(dev
, data
->start_up_time
*100);
1043 pm_runtime_use_autosuspend(dev
);
1044 pm_runtime_put(dev
);
1046 ret
= iio_device_register(indio_dev
);
1048 goto out_runtime_pm_disable
;
1053 out_runtime_pm_disable
:
1054 pm_runtime_get_sync(data
->dev
);
1055 pm_runtime_put_noidle(data
->dev
);
1056 pm_runtime_disable(data
->dev
);
1058 regulator_disable(data
->vdda
);
1060 regulator_disable(data
->vddd
);
1063 EXPORT_SYMBOL(bmp280_common_probe
);
1065 int bmp280_common_remove(struct device
*dev
)
1067 struct iio_dev
*indio_dev
= dev_get_drvdata(dev
);
1068 struct bmp280_data
*data
= iio_priv(indio_dev
);
1070 iio_device_unregister(indio_dev
);
1071 pm_runtime_get_sync(data
->dev
);
1072 pm_runtime_put_noidle(data
->dev
);
1073 pm_runtime_disable(data
->dev
);
1074 regulator_disable(data
->vdda
);
1075 regulator_disable(data
->vddd
);
1078 EXPORT_SYMBOL(bmp280_common_remove
);
1081 static int bmp280_runtime_suspend(struct device
*dev
)
1083 struct iio_dev
*indio_dev
= dev_get_drvdata(dev
);
1084 struct bmp280_data
*data
= iio_priv(indio_dev
);
1087 ret
= regulator_disable(data
->vdda
);
1090 return regulator_disable(data
->vddd
);
1093 static int bmp280_runtime_resume(struct device
*dev
)
1095 struct iio_dev
*indio_dev
= dev_get_drvdata(dev
);
1096 struct bmp280_data
*data
= iio_priv(indio_dev
);
1099 ret
= regulator_enable(data
->vddd
);
1102 ret
= regulator_enable(data
->vdda
);
1105 msleep(data
->start_up_time
);
1106 return data
->chip_info
->chip_config(data
);
1108 #endif /* CONFIG_PM */
1110 const struct dev_pm_ops bmp280_dev_pm_ops
= {
1111 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
1112 pm_runtime_force_resume
)
1113 SET_RUNTIME_PM_OPS(bmp280_runtime_suspend
,
1114 bmp280_runtime_resume
, NULL
)
1116 EXPORT_SYMBOL(bmp280_dev_pm_ops
);
1118 MODULE_AUTHOR("Vlad Dogaru <vlad.dogaru@intel.com>");
1119 MODULE_DESCRIPTION("Driver for Bosch Sensortec BMP180/BMP280 pressure and temperature sensor");
1120 MODULE_LICENSE("GPL v2");