Home
last modified time | relevance | path

Searched +full:bm1390glv +full:- +full:z (Results 1 – 3 of 3) sorted by relevance

/linux-6.12.1/Documentation/devicetree/bindings/iio/pressure/
Drohm,bm1390.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Matti Vaittinen <mazziesaccount@gmail.com>
13 BM1390GLV-Z is a pressure sensor which performs internal temperature
20 const: rohm,bm1390glv-z
28 vdd-supply: true
31 - compatible
32 - reg
33 - vdd-supply
[all …]
/linux-6.12.1/drivers/iio/pressure/
DKconfig1 # SPDX-License-Identifier: GPL-2.0-only
20 tristate "ROHM BM1390GLV-Z pressure sensor driver"
26 Support for the ROHM BM1390 pressure sensor. The BM1390GLV-Z
45 will be called bmp280 and you will also get bmp280-i2c for I2C
46 and/or bmp280-spi for SPI support.
104 will be called hid-sensor-press.
142 tristate "InvenSense ICP-101xx pressure and temperature sensor"
146 Say yes here to build support for InvenSense ICP-101xx barometric
Drohm-bm1390.c1 // SPDX-License-Identifier: GPL-2.0-only
6 * https://fscdn.rohm.com/en/products/databook/datasheet/ic/sensor/pressure/bm1390glv-z-e.pdf
39 * Data-sheet states that when the IIR is used, the AVE_NUM must be set to
214 ret = regmap_bulk_read(data->regmap, BM1390_REG_TEMP_HI, &temp_raw, in bm1390_read_temp()
226 /* Pressure data is in 3 8-bit registers */ in bm1390_pressure_read()
230 ret = regmap_bulk_read(data->regmap, BM1390_REG_PRESSURE_BASE, in bm1390_pressure_read()
249 return regmap_update_bits(data->regmap, BM1390_REG_MODE_CTRL, in bm1390_meas_set()
255 * completed. The data-sheet says maximum measurement cycle (regardless
266 mutex_lock(&data->mutex); in bm1390_read_data()
269 * data-sheet an one-shot mode can't be used with IIR filter. in bm1390_read_data()
[all …]