Kconfig 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 IIO_ST_PRESS
  46. tristate "STMicroelectronics pressure sensor Driver"
  47. depends on (I2C || SPI_MASTER) && SYSFS
  48. select IIO_ST_SENSORS_CORE
  49. select IIO_ST_PRESS_I2C if (I2C)
  50. select IIO_ST_PRESS_SPI if (SPI_MASTER)
  51. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  52. help
  53. Say yes here to build support for STMicroelectronics pressure
  54. sensors: LPS001WP, LPS25H, LPS331AP.
  55. This driver can also be built as a module. If so, these modules
  56. will be created:
  57. - st_pressure (core functions for the driver [it is mandatory]);
  58. - st_pressure_i2c (necessary for the I2C devices [optional*]);
  59. - st_pressure_spi (necessary for the SPI devices [optional*]);
  60. (*) one of these is necessary to do something.
  61. config IIO_ST_PRESS_I2C
  62. tristate
  63. depends on IIO_ST_PRESS
  64. depends on IIO_ST_SENSORS_I2C
  65. config IIO_ST_PRESS_SPI
  66. tristate
  67. depends on IIO_ST_PRESS
  68. depends on IIO_ST_SENSORS_SPI
  69. config T5403
  70. tristate "EPCOS T5403 digital barometric pressure sensor driver"
  71. depends on I2C
  72. help
  73. Say yes here to build support for the EPCOS T5403 pressure sensor
  74. connected via I2C.
  75. To compile this driver as a module, choose M here: the module
  76. will be called t5403.
  77. endmenu