Commit 713337d9 authored by Andreas Klinger's avatar Andreas Klinger Committed by Jonathan Cameron

iio: pressure: Honeywell mprls0025pa pressure sensor

Honeywell mprls0025pa is a series of pressure sensors.

Add initial I2C support.

Note:
- IIO buffered mode is supported
- SPI mode is not supported
Signed-off-by: default avatarAndreas Klinger <ak@it-klinger.de>
Link: https://lore.kernel.org/r/ZGNp3SqyOJeEcLsj@arbadSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent a765c985
...@@ -148,6 +148,19 @@ config MPL3115 ...@@ -148,6 +148,19 @@ config MPL3115
To compile this driver as a module, choose M here: the module To compile this driver as a module, choose M here: the module
will be called mpl3115. will be called mpl3115.
config MPRLS0025PA
tristate "Honeywell MPRLS0025PA (MicroPressure sensors series)"
depends on I2C
select IIO_BUFFER
select IIO_TRIGGERED_BUFFER
help
Say Y here to build support for the Honeywell MicroPressure pressure
sensor series. There are many different types with different pressure
range. These ranges can be set up in the device tree.
To compile this driver as a module, choose M here: the module will be
called mprls0025pa.
config MS5611 config MS5611
tristate "Measurement Specialties MS5611 pressure sensor driver" tristate "Measurement Specialties MS5611 pressure sensor driver"
select IIO_BUFFER select IIO_BUFFER
......
...@@ -19,6 +19,7 @@ obj-$(CONFIG_MPL115) += mpl115.o ...@@ -19,6 +19,7 @@ obj-$(CONFIG_MPL115) += mpl115.o
obj-$(CONFIG_MPL115_I2C) += mpl115_i2c.o obj-$(CONFIG_MPL115_I2C) += mpl115_i2c.o
obj-$(CONFIG_MPL115_SPI) += mpl115_spi.o obj-$(CONFIG_MPL115_SPI) += mpl115_spi.o
obj-$(CONFIG_MPL3115) += mpl3115.o obj-$(CONFIG_MPL3115) += mpl3115.o
obj-$(CONFIG_MPRLS0025PA) += mprls0025pa.o
obj-$(CONFIG_MS5611) += ms5611_core.o obj-$(CONFIG_MS5611) += ms5611_core.o
obj-$(CONFIG_MS5611_I2C) += ms5611_i2c.o obj-$(CONFIG_MS5611_I2C) += ms5611_i2c.o
obj-$(CONFIG_MS5611_SPI) += ms5611_spi.o obj-$(CONFIG_MS5611_SPI) += ms5611_spi.o
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment