Kconfig 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. #
  2. # Pressure drivers
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. menu "Pressure sensors"
  6. config BMP280
  7. tristate "Bosch Sensortec BMP180/BMP280 pressure sensor I2C driver"
  8. depends on (I2C || SPI_MASTER)
  9. select REGMAP
  10. select BMP280_I2C if (I2C)
  11. select BMP280_SPI if (SPI_MASTER)
  12. help
  13. Say yes here to build support for Bosch Sensortec BMP180 and BMP280
  14. pressure and temperature sensors. Also supports the BE280 with
  15. an additional humidity sensor channel.
  16. To compile this driver as a module, choose M here: the core module
  17. will be called bmp280 and you will also get bmp280-i2c for I2C
  18. and/or bmp280-spi for SPI support.
  19. config BMP280_I2C
  20. tristate
  21. depends on BMP280
  22. depends on I2C
  23. select REGMAP_I2C
  24. config BMP280_SPI
  25. tristate
  26. depends on BMP280
  27. depends on SPI_MASTER
  28. select REGMAP
  29. config HID_SENSOR_PRESS
  30. depends on HID_SENSOR_HUB
  31. select IIO_BUFFER
  32. select IIO_TRIGGERED_BUFFER
  33. select HID_SENSOR_IIO_COMMON
  34. select HID_SENSOR_IIO_TRIGGER
  35. tristate "HID PRESS"
  36. help
  37. Say yes here to build support for the HID SENSOR
  38. Pressure driver
  39. To compile this driver as a module, choose M here: the module
  40. will be called hid-sensor-press.
  41. config HP03
  42. tristate "Hope RF HP03 temperature and pressure sensor driver"
  43. depends on I2C
  44. select REGMAP_I2C
  45. help
  46. Say yes here to build support for Hope RF HP03 pressure and
  47. temperature sensor.
  48. To compile this driver as a module, choose M here: the module
  49. will be called hp03.
  50. config MPL115
  51. tristate
  52. config MPL115_I2C
  53. tristate "Freescale MPL115A2 pressure sensor driver"
  54. depends on I2C
  55. select MPL115
  56. help
  57. Say yes here to build support for the Freescale MPL115A2
  58. pressure sensor connected via I2C.
  59. To compile this driver as a module, choose M here: the module
  60. will be called mpl115_i2c.
  61. config MPL115_SPI
  62. tristate "Freescale MPL115A1 pressure sensor driver"
  63. depends on SPI_MASTER
  64. select MPL115
  65. help
  66. Say yes here to build support for the Freescale MPL115A1
  67. pressure sensor connected via SPI.
  68. To compile this driver as a module, choose M here: the module
  69. will be called mpl115_spi.
  70. config MPL3115
  71. tristate "Freescale MPL3115A2 pressure sensor driver"
  72. depends on I2C
  73. select IIO_BUFFER
  74. select IIO_TRIGGERED_BUFFER
  75. help
  76. Say yes here to build support for the Freescale MPL3115A2
  77. pressure sensor / altimeter.
  78. To compile this driver as a module, choose M here: the module
  79. will be called mpl3115.
  80. config MS5611
  81. tristate "Measurement Specialties MS5611 pressure sensor driver"
  82. select IIO_BUFFER
  83. select IIO_TRIGGERED_BUFFER
  84. help
  85. Say Y here to build support for the Measurement Specialties
  86. MS5611, MS5607 pressure and temperature sensors.
  87. To compile this driver as a module, choose M here: the module will
  88. be called ms5611_core.
  89. config MS5611_I2C
  90. tristate "support I2C bus connection"
  91. depends on I2C && MS5611
  92. help
  93. Say Y here to build I2C bus support for MS5611.
  94. To compile this driver as a module, choose M here: the module will
  95. be called ms5611_i2c.
  96. config MS5611_SPI
  97. tristate "support SPI bus connection"
  98. depends on SPI_MASTER && MS5611
  99. help
  100. Say Y here to build SPI bus support for MS5611.
  101. To compile this driver as a module, choose M here: the module will
  102. be called ms5611_spi.
  103. config MS5637
  104. tristate "Measurement Specialties MS5637 pressure & temperature sensor"
  105. depends on I2C
  106. select IIO_MS_SENSORS_I2C
  107. help
  108. If you say yes here you get support for the Measurement Specialties
  109. MS5637 pressure and temperature sensor.
  110. This driver is also used for MS8607 temperature, pressure & humidity
  111. sensor
  112. This driver can also be built as a module. If so, the module will
  113. be called ms5637.
  114. config IIO_ST_PRESS
  115. tristate "STMicroelectronics pressure sensor Driver"
  116. depends on (I2C || SPI_MASTER) && SYSFS
  117. select IIO_ST_SENSORS_CORE
  118. select IIO_ST_PRESS_I2C if (I2C)
  119. select IIO_ST_PRESS_SPI if (SPI_MASTER)
  120. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  121. help
  122. Say yes here to build support for STMicroelectronics pressure
  123. sensors: LPS001WP, LPS25H, LPS331AP, LPS22HB.
  124. This driver can also be built as a module. If so, these modules
  125. will be created:
  126. - st_pressure (core functions for the driver [it is mandatory]);
  127. - st_pressure_i2c (necessary for the I2C devices [optional*]);
  128. - st_pressure_spi (necessary for the SPI devices [optional*]);
  129. (*) one of these is necessary to do something.
  130. config IIO_ST_PRESS_I2C
  131. tristate
  132. depends on IIO_ST_PRESS
  133. depends on IIO_ST_SENSORS_I2C
  134. config IIO_ST_PRESS_SPI
  135. tristate
  136. depends on IIO_ST_PRESS
  137. depends on IIO_ST_SENSORS_SPI
  138. config T5403
  139. tristate "EPCOS T5403 digital barometric pressure sensor driver"
  140. depends on I2C
  141. help
  142. Say yes here to build support for the EPCOS T5403 pressure sensor
  143. connected via I2C.
  144. To compile this driver as a module, choose M here: the module
  145. will be called t5403.
  146. config HP206C
  147. tristate "HOPERF HP206C precision barometer and altimeter sensor"
  148. depends on I2C
  149. help
  150. Say yes here to build support for the HOPREF HP206C precision
  151. barometer and altimeter sensor.
  152. This driver can also be built as a module. If so, the module will
  153. be called hp206c.
  154. config ZPA2326
  155. tristate "Murata ZPA2326 pressure sensor driver"
  156. select IIO_BUFFER
  157. select IIO_TRIGGERED_BUFFER
  158. select REGMAP
  159. select ZPA2326_I2C if I2C
  160. select ZPA2326_SPI if SPI_MASTER
  161. help
  162. Say Y here to build support for the Murata ZPA2326 pressure and
  163. temperature sensor.
  164. To compile this driver as a module, choose M here: the module will
  165. be called zpa2326.
  166. config ZPA2326_I2C
  167. tristate
  168. select REGMAP_I2C
  169. config ZPA2326_SPI
  170. tristate
  171. select REGMAP_SPI
  172. endmenu