Merge tag 'rust-6.9' of https://github.com/Rust-for-Linux/linux
[sfrench/cifs-2.6.git] / drivers / iio / humidity / Kconfig
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # humidity sensor drivers
4 #
5 menu "Humidity sensors"
6
7 config 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
19 config 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
28 config 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
41 config 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
51 config HDC3020
52         tristate "TI HDC3020 relative humidity and temperature sensor"
53         depends on I2C
54         select CRC8
55         help
56           Say yes here to build support for the Texas Instruments
57           HDC3020, HDC3021 and HDC3022 relative humidity and temperature
58           sensors.
59
60           To compile this driver as a module, choose M here: the module
61           will be called hdc3020.
62
63 config HID_SENSOR_HUMIDITY
64         tristate "HID Environmental humidity sensor"
65         depends on HID_SENSOR_HUB
66         select IIO_BUFFER
67         select HID_SENSOR_IIO_COMMON
68         select HID_SENSOR_IIO_TRIGGER
69         help
70           Say yes here to build support for the HID SENSOR
71           humidity driver
72
73           To compile this driver as a module, choose M here: the module
74           will be called hid-sensor-humidity.
75
76 config HTS221
77         tristate "STMicroelectronics HTS221 sensor Driver"
78         depends on (I2C || SPI)
79         select IIO_BUFFER
80         select IIO_TRIGGERED_BUFFER
81         select HTS221_I2C if (I2C)
82         select HTS221_SPI if (SPI_MASTER)
83         help
84           Say yes here to build support for STMicroelectronics HTS221
85           temperature-humidity sensor
86
87           To compile this driver as a module, choose M here: the module
88           will be called hts221.
89
90 config HTS221_I2C
91         tristate
92         depends on HTS221
93         select REGMAP_I2C
94
95 config HTS221_SPI
96         tristate
97         depends on HTS221
98         select REGMAP_SPI
99
100 config HTU21
101         tristate "Measurement Specialties HTU21 humidity & temperature sensor"
102         depends on I2C
103         select IIO_MS_SENSORS_I2C
104         help
105           If you say yes here you get support for the Measurement Specialties
106           HTU21 humidity and temperature sensor.
107           This driver is also used for MS8607 temperature, pressure & humidity
108           sensor
109
110           This driver can also be built as a module. If so, the module will
111           be called htu21.
112
113 config SI7005
114         tristate "SI7005 relative humidity and temperature sensor"
115         depends on I2C
116         help
117           Say yes here to build support for the Silabs Si7005 relative
118           humidity and temperature sensor.
119
120           To compile this driver as a module, choose M here: the module
121           will be called si7005. This driver also
122           supports Hoperf TH02 Humidity and Temperature Sensor.
123
124 config SI7020
125         tristate "Si7013/20/21 Relative Humidity and Temperature Sensors"
126         depends on I2C
127         help
128           Say yes here to build support for the Silicon Labs Si7013/20/21
129           Relative Humidity and Temperature Sensors. This driver also
130           supports Hoperf TH06 Humidity and Temperature Sensor.
131
132           To compile this driver as a module, choose M here: the module
133           will be called si7020.
134
135 endmenu