147 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# humidity sensor drivers4#5menu "Humidity sensors"6 7config AM23158 tristate "Aosong AM2315 relative humidity and temperature sensor"9 depends on I2C10 select IIO_BUFFER11 select IIO_TRIGGERED_BUFFER12 help13 If you say yes here you get support for the Aosong AM231514 relative humidity and ambient temperature sensor.15 16 This driver can also be built as a module. If so, the module will17 be called am2315.18 19config DHT1120 tristate "DHT11 (and compatible sensors) driver"21 depends on GPIOLIB || COMPILE_TEST22 help23 This driver supports reading data via a single interrupt24 generating GPIO line. Currently tested are DHT11 and DHT22.25 Other sensors should work as well as long as they speak the26 same protocol.27 28config ENS21029 tristate "ENS210 temperature and humidity sensor"30 depends on I2C31 select CRC732 help33 Say yes here to get support for the ScioSense ENS210 family of34 humidity and temperature sensors.35 36 This driver can also be built as a module. If so, the module will be37 called ens210.38 39config HDC100X40 tristate "TI HDC100x relative humidity and temperature sensor"41 depends on I2C42 select IIO_BUFFER43 select IIO_TRIGGERED_BUFFER44 help45 Say yes here to build support for the Texas Instruments46 HDC1000, HDC1008, HDC1010, HDC1050, and HDC1080 relative47 humidity and temperature sensors.48 49 To compile this driver as a module, choose M here: the module50 will be called hdc100x.51 52config HDC201053 tristate "TI HDC2010 relative humidity and temperature sensor"54 depends on I2C55 help56 Say yes here to build support for the Texas Instruments57 HDC2010 and HDC2080 relative humidity and temperature sensors.58 59 To compile this driver as a module, choose M here: the module60 will be called hdc2010.61 62config HDC302063 tristate "TI HDC3020 relative humidity and temperature sensor"64 depends on I2C65 select CRC866 help67 Say yes here to build support for the Texas Instruments68 HDC3020, HDC3021 and HDC3022 relative humidity and temperature69 sensors.70 71 To compile this driver as a module, choose M here: the module72 will be called hdc3020.73 74config HID_SENSOR_HUMIDITY75 tristate "HID Environmental humidity sensor"76 depends on HID_SENSOR_HUB77 select IIO_BUFFER78 select HID_SENSOR_IIO_COMMON79 select HID_SENSOR_IIO_TRIGGER80 help81 Say yes here to build support for the HID SENSOR82 humidity driver83 84 To compile this driver as a module, choose M here: the module85 will be called hid-sensor-humidity.86 87config HTS22188 tristate "STMicroelectronics HTS221 sensor Driver"89 depends on (I2C || SPI)90 select IIO_BUFFER91 select IIO_TRIGGERED_BUFFER92 select HTS221_I2C if (I2C)93 select HTS221_SPI if (SPI_MASTER)94 help95 Say yes here to build support for STMicroelectronics HTS22196 temperature-humidity sensor97 98 To compile this driver as a module, choose M here: the module99 will be called hts221.100 101config HTS221_I2C102 tristate103 depends on HTS221104 select REGMAP_I2C105 106config HTS221_SPI107 tristate108 depends on HTS221109 select REGMAP_SPI110 111config HTU21112 tristate "Measurement Specialties HTU21 humidity & temperature sensor"113 depends on I2C114 select IIO_MS_SENSORS_I2C115 help116 If you say yes here you get support for the Measurement Specialties117 HTU21 humidity and temperature sensor.118 This driver is also used for MS8607 temperature, pressure & humidity119 sensor120 121 This driver can also be built as a module. If so, the module will122 be called htu21.123 124config SI7005125 tristate "SI7005 relative humidity and temperature sensor"126 depends on I2C127 help128 Say yes here to build support for the Silabs Si7005 relative129 humidity and temperature sensor.130 131 To compile this driver as a module, choose M here: the module132 will be called si7005. This driver also133 supports Hoperf TH02 Humidity and Temperature Sensor.134 135config SI7020136 tristate "Si7013/20/21 Relative Humidity and Temperature Sensors"137 depends on I2C138 help139 Say yes here to build support for the Silicon Labs Si7013/20/21140 Relative Humidity and Temperature Sensors. This driver also141 supports Hoperf TH06 Humidity and Temperature Sensor.142 143 To compile this driver as a module, choose M here: the module144 will be called si7020.145 146endmenu147