Skip to content

Commit c397894

Browse files
jmondijic23
authored andcommitted
iio: chemical: Add Senseair Sunrise 006-0-007 driver
Add support for the Senseair Sunrise 006-0-0007 driver through the IIO subsystem. Datasheet: https://rmtplusstoragesenseair.blob.core.windows.net/docs/Dev/publicerat/TDE5531.pdf Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Link: https://lore.kernel.org/r/20210920135413.140310-4-jacopo+renesas@jmondi.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
1 parent c3c780e commit c397894

File tree

4 files changed

+555
-0
lines changed

4 files changed

+555
-0
lines changed

MAINTAINERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16887,6 +16887,13 @@ S: Maintained
1688716887
F: drivers/misc/phantom.c
1688816888
F: include/uapi/linux/phantom.h
1688916889

16890+
SENSEAIR SUNRISE 006-0-0007
16891+
M: Jacopo Mondi <jacopo@jmondi.org>
16892+
S: Maintained
16893+
F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
16894+
F: Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
16895+
F: drivers/iio/chemical/sunrise_co2.c
16896+
1689016897
SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
1689116898
M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
1689216899
S: Maintained

drivers/iio/chemical/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,16 @@ config SPS30_SERIAL
170170
To compile this driver as a module, choose M here: the module will
171171
be called sps30_serial.
172172

173+
config SENSEAIR_SUNRISE_CO2
174+
tristate "Senseair Sunrise 006-0-0007 CO2 sensor"
175+
select REGMAP_I2C
176+
help
177+
Say yes here to build support for Senseair Sunrise 006-0-0007 CO2
178+
sensor.
179+
180+
To compile this driver as a module, choose M here: the
181+
module will be called sunrise_co2.
182+
173183
config VZ89X
174184
tristate "SGX Sensortech MiCS VZ89X VOC sensor"
175185
depends on I2C

drivers/iio/chemical/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ obj-$(CONFIG_PMS7003) += pms7003.o
1515
obj-$(CONFIG_SCD30_CORE) += scd30_core.o
1616
obj-$(CONFIG_SCD30_I2C) += scd30_i2c.o
1717
obj-$(CONFIG_SCD30_SERIAL) += scd30_serial.o
18+
obj-$(CONFIG_SENSEAIR_SUNRISE_CO2) += sunrise_co2.o
1819
obj-$(CONFIG_SENSIRION_SGP30) += sgp30.o
1920
obj-$(CONFIG_SENSIRION_SGP40) += sgp40.o
2021
obj-$(CONFIG_SPS30) += sps30.o

0 commit comments

Comments
 (0)