xref: /openbmc/linux/drivers/iio/humidity/Kconfig (revision a5d46d9a)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# humidity sensor drivers
4#
5menu "Humidity sensors"
6
7config AM2315
8	tristate "Aosong AM2315 relative humidity and temperature sensor"
9	depends on I2C
10	select IIO_BUFFER
11	select IIO_TRIGGERED_BUFFER
12	help
13	  If you say yes here you get support for the Aosong AM2315
14	  relative humidity and ambient temperature sensor.
15
16	  This driver can also be built as a module. If so, the module will
17	  be called am2315.
18
19config DHT11
20	tristate "DHT11 (and compatible sensors) driver"
21	depends on GPIOLIB || COMPILE_TEST
22	help
23	  This driver supports reading data via a single interrupt
24	  generating GPIO line. Currently tested are DHT11 and DHT22.
25	  Other sensors should work as well as long as they speak the
26	  same protocol.
27
28config HDC100X
29	tristate "TI HDC100x relative humidity and temperature sensor"
30	depends on I2C
31	select IIO_BUFFER
32	select IIO_TRIGGERED_BUFFER
33	help
34	  Say yes here to build support for the Texas Instruments
35	  HDC1000, HDC1008, HDC1010, HDC1050, and HDC1080 relative
36	  humidity and temperature sensors.
37
38	  To compile this driver as a module, choose M here: the module
39	  will be called hdc100x.
40
41config HDC2010
42	tristate "TI HDC2010 relative humidity and temperature sensor"
43	depends on I2C
44	help
45	  Say yes here to build support for the Texas Instruments
46	  HDC2010 and HDC2080 relative humidity and temperature sensors.
47
48	  To compile this driver as a module, choose M here: the module
49	  will be called hdc2010.
50
51config HID_SENSOR_HUMIDITY
52	tristate "HID Environmental humidity sensor"
53	depends on HID_SENSOR_HUB
54	select IIO_BUFFER
55	select HID_SENSOR_IIO_COMMON
56	select HID_SENSOR_IIO_TRIGGER
57	help
58	  Say yes here to build support for the HID SENSOR
59	  humidity driver
60
61	  To compile this driver as a module, choose M here: the module
62	  will be called hid-sensor-humidity.
63
64config HTS221
65	tristate "STMicroelectronics HTS221 sensor Driver"
66	depends on (I2C || SPI)
67	select IIO_BUFFER
68	select IIO_TRIGGERED_BUFFER
69	select HTS221_I2C if (I2C)
70	select HTS221_SPI if (SPI_MASTER)
71	help
72	  Say yes here to build support for STMicroelectronics HTS221
73	  temperature-humidity sensor
74
75	  To compile this driver as a module, choose M here: the module
76	  will be called hts221.
77
78config HTS221_I2C
79	tristate
80	depends on HTS221
81	select REGMAP_I2C
82
83config HTS221_SPI
84	tristate
85	depends on HTS221
86	select REGMAP_SPI
87
88config HTU21
89	tristate "Measurement Specialties HTU21 humidity & temperature sensor"
90	depends on I2C
91	select IIO_MS_SENSORS_I2C
92	help
93	  If you say yes here you get support for the Measurement Specialties
94	  HTU21 humidity and temperature sensor.
95	  This driver is also used for MS8607 temperature, pressure & humidity
96	  sensor
97
98	  This driver can also be built as a module. If so, the module will
99	  be called htu21.
100
101config SI7005
102	tristate "SI7005 relative humidity and temperature sensor"
103	depends on I2C
104	help
105	  Say yes here to build support for the Silabs Si7005 relative
106	  humidity and temperature sensor.
107
108	  To compile this driver as a module, choose M here: the module
109	  will be called si7005. This driver also
110	  supports Hoperf TH02 Humidity and Temperature Sensor.
111
112config SI7020
113	tristate "Si7013/20/21 Relative Humidity and Temperature Sensors"
114	depends on I2C
115	help
116	  Say yes here to build support for the Silicon Labs Si7013/20/21
117	  Relative Humidity and Temperature Sensors. This driver also
118	  supports Hoperf TH06 Humidity and Temperature Sensor.
119
120	  To compile this driver as a module, choose M here: the module
121	  will be called si7020.
122
123endmenu
124