Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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 BMP280 pressure sensor driver"
  8. depends on I2C
  9. select REGMAP_I2C
  10. help
  11. Say yes here to build support for Bosch Sensortec BMP280
  12. pressure and temperature sensor.
  13. To compile this driver as a module, choose M here: the module
  14. will be called bmp280.
  15. config HID_SENSOR_PRESS
  16. depends on HID_SENSOR_HUB
  17. select IIO_BUFFER
  18. select IIO_TRIGGERED_BUFFER
  19. select HID_SENSOR_IIO_COMMON
  20. select HID_SENSOR_IIO_TRIGGER
  21. tristate "HID PRESS"
  22. help
  23. Say yes here to build support for the HID SENSOR
  24. Pressure driver
  25. To compile this driver as a module, choose M here: the module
  26. will be called hid-sensor-press.
  27. config MPL115
  28. tristate "Freescale MPL115A2 pressure sensor driver"
  29. depends on I2C
  30. help
  31. Say yes here to build support for the Freescale MPL115A2
  32. pressure sensor connected via I2C.
  33. To compile this driver as a module, choose M here: the module
  34. will be called mpl115.
  35. config MPL3115
  36. tristate "Freescale MPL3115A2 pressure sensor driver"
  37. depends on I2C
  38. select IIO_BUFFER
  39. select IIO_TRIGGERED_BUFFER
  40. help
  41. Say yes here to build support for the Freescale MPL3115A2
  42. pressure sensor / altimeter.
  43. To compile this driver as a module, choose M here: the module
  44. will be called mpl3115.
  45. config MS5611
  46. tristate "Measurement Specialties MS5611 pressure sensor driver"
  47. help
  48. Say Y here to build support for the Measurement Specialties
  49. MS5611, MS5607 pressure and temperature sensors.
  50. To compile this driver as a module, choose M here: the module will
  51. be called ms5611_core.
  52. config MS5611_I2C
  53. tristate "support I2C bus connection"
  54. depends on I2C && MS5611
  55. help
  56. Say Y here to build I2C bus support for MS5611.
  57. To compile this driver as a module, choose M here: the module will
  58. be called ms5611_i2c.
  59. config MS5611_SPI
  60. tristate "support SPI bus connection"
  61. depends on SPI_MASTER && MS5611
  62. help
  63. Say Y here to build SPI bus support for MS5611.
  64. To compile this driver as a module, choose M here: the module will
  65. be called ms5611_spi.
  66. config MS5637
  67. tristate "Measurement Specialties MS5637 pressure & temperature sensor"
  68. depends on I2C
  69. select IIO_MS_SENSORS_I2C
  70. help
  71. If you say yes here you get support for the Measurement Specialties
  72. MS5637 pressure and temperature sensor.
  73. This driver is also used for MS8607 temperature, pressure & humidity
  74. sensor
  75. This driver can also be built as a module. If so, the module will
  76. be called ms5637.
  77. config IIO_ST_PRESS
  78. tristate "STMicroelectronics pressure sensor Driver"
  79. depends on (I2C || SPI_MASTER) && SYSFS
  80. select IIO_ST_SENSORS_CORE
  81. select IIO_ST_PRESS_I2C if (I2C)
  82. select IIO_ST_PRESS_SPI if (SPI_MASTER)
  83. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  84. help
  85. Say yes here to build support for STMicroelectronics pressure
  86. sensors: LPS001WP, LPS25H, LPS331AP.
  87. This driver can also be built as a module. If so, these modules
  88. will be created:
  89. - st_pressure (core functions for the driver [it is mandatory]);
  90. - st_pressure_i2c (necessary for the I2C devices [optional*]);
  91. - st_pressure_spi (necessary for the SPI devices [optional*]);
  92. (*) one of these is necessary to do something.
  93. config IIO_ST_PRESS_I2C
  94. tristate
  95. depends on IIO_ST_PRESS
  96. depends on IIO_ST_SENSORS_I2C
  97. config IIO_ST_PRESS_SPI
  98. tristate
  99. depends on IIO_ST_PRESS
  100. depends on IIO_ST_SENSORS_SPI
  101. config T5403
  102. tristate "EPCOS T5403 digital barometric pressure sensor driver"
  103. depends on I2C
  104. help
  105. Say yes here to build support for the EPCOS T5403 pressure sensor
  106. connected via I2C.
  107. To compile this driver as a module, choose M here: the module
  108. will be called t5403.
  109. endmenu