Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #
  2. # Pressure drivers
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. menu "Pressure sensors"
  6. config HID_SENSOR_PRESS
  7. depends on HID_SENSOR_HUB
  8. select IIO_BUFFER
  9. select IIO_TRIGGERED_BUFFER
  10. select HID_SENSOR_IIO_COMMON
  11. select HID_SENSOR_IIO_TRIGGER
  12. tristate "HID PRESS"
  13. help
  14. Say yes here to build support for the HID SENSOR
  15. Pressure driver
  16. To compile this driver as a module, choose M here: the module
  17. will be called hid-sensor-press.
  18. config MPL115
  19. tristate "Freescale MPL115A2 pressure sensor driver"
  20. depends on I2C
  21. help
  22. Say yes here to build support for the Freescale MPL115A2
  23. pressure sensor connected via I2C.
  24. To compile this driver as a module, choose M here: the module
  25. will be called mpl115.
  26. config MPL3115
  27. tristate "Freescale MPL3115A2 pressure sensor driver"
  28. depends on I2C
  29. select IIO_BUFFER
  30. select IIO_TRIGGERED_BUFFER
  31. help
  32. Say yes here to build support for the Freescale MPL3115A2
  33. pressure sensor / altimeter.
  34. To compile this driver as a module, choose M here: the module
  35. will be called mpl3115.
  36. config IIO_ST_PRESS
  37. tristate "STMicroelectronics pressure sensor Driver"
  38. depends on (I2C || SPI_MASTER) && SYSFS
  39. select IIO_ST_SENSORS_CORE
  40. select IIO_ST_PRESS_I2C if (I2C)
  41. select IIO_ST_PRESS_SPI if (SPI_MASTER)
  42. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  43. help
  44. Say yes here to build support for STMicroelectronics pressure
  45. sensors: LPS001WP, LPS25H, LPS331AP.
  46. This driver can also be built as a module. If so, these modules
  47. will be created:
  48. - st_pressure (core functions for the driver [it is mandatory]);
  49. - st_pressure_i2c (necessary for the I2C devices [optional*]);
  50. - st_pressure_spi (necessary for the SPI devices [optional*]);
  51. (*) one of these is necessary to do something.
  52. config IIO_ST_PRESS_I2C
  53. tristate
  54. depends on IIO_ST_PRESS
  55. depends on IIO_ST_SENSORS_I2C
  56. config IIO_ST_PRESS_SPI
  57. tristate
  58. depends on IIO_ST_PRESS
  59. depends on IIO_ST_SENSORS_SPI
  60. config T5403
  61. tristate "EPCOS T5403 digital barometric pressure sensor driver"
  62. depends on I2C
  63. help
  64. Say yes here to build support for the EPCOS T5403 pressure sensor
  65. connected via I2C.
  66. To compile this driver as a module, choose M here: the module
  67. will be called t5403.
  68. endmenu