Kconfig 4.1 KB

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