Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. #
  2. # Accelerometer drivers
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. menu "Accelerometers"
  6. config BMA180
  7. tristate "Bosch BMA180/BMA250 3-Axis Accelerometer Driver"
  8. depends on I2C
  9. select IIO_BUFFER
  10. select IIO_TRIGGERED_BUFFER
  11. help
  12. Say Y here if you want to build a driver for the Bosch BMA180 or
  13. BMA250 triaxial acceleration sensor.
  14. To compile this driver as a module, choose M here: the
  15. module will be called bma180.
  16. config BMC150_ACCEL
  17. tristate "Bosch BMC150 Accelerometer Driver"
  18. depends on I2C
  19. select IIO_BUFFER
  20. select IIO_TRIGGERED_BUFFER
  21. help
  22. Say yes here to build support for the following Bosch accelerometers:
  23. BMC150, BMI055, BMA250E, BMA222E, BMA255, BMA280.
  24. Currently this only supports the device via an i2c interface.
  25. This is a combo module with both accelerometer and magnetometer.
  26. This driver is only implementing accelerometer part, which has
  27. its own address and register map.
  28. config HID_SENSOR_ACCEL_3D
  29. depends on HID_SENSOR_HUB
  30. select IIO_BUFFER
  31. select IIO_TRIGGERED_BUFFER
  32. select HID_SENSOR_IIO_COMMON
  33. select HID_SENSOR_IIO_TRIGGER
  34. tristate "HID Accelerometers 3D"
  35. help
  36. Say yes here to build support for the HID SENSOR
  37. accelerometers 3D.
  38. config IIO_ST_ACCEL_3AXIS
  39. tristate "STMicroelectronics accelerometers 3-Axis Driver"
  40. depends on (I2C || SPI_MASTER) && SYSFS
  41. select IIO_ST_SENSORS_CORE
  42. select IIO_ST_ACCEL_I2C_3AXIS if (I2C)
  43. select IIO_ST_ACCEL_SPI_3AXIS if (SPI_MASTER)
  44. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  45. help
  46. Say yes here to build support for STMicroelectronics accelerometers:
  47. LSM303DLH, LSM303DLHC, LIS3DH, LSM330D, LSM330DL, LSM330DLC,
  48. LIS331DLH, LSM303DL, LSM303DLM, LSM330.
  49. This driver can also be built as a module. If so, these modules
  50. will be created:
  51. - st_accel (core functions for the driver [it is mandatory]);
  52. - st_accel_i2c (necessary for the I2C devices [optional*]);
  53. - st_accel_spi (necessary for the SPI devices [optional*]);
  54. (*) one of these is necessary to do something.
  55. config IIO_ST_ACCEL_I2C_3AXIS
  56. tristate
  57. depends on IIO_ST_ACCEL_3AXIS
  58. depends on IIO_ST_SENSORS_I2C
  59. config IIO_ST_ACCEL_SPI_3AXIS
  60. tristate
  61. depends on IIO_ST_ACCEL_3AXIS
  62. depends on IIO_ST_SENSORS_SPI
  63. config KXSD9
  64. tristate "Kionix KXSD9 Accelerometer Driver"
  65. depends on SPI
  66. help
  67. Say yes here to build support for the Kionix KXSD9 accelerometer.
  68. Currently this only supports the device via an SPI interface.
  69. config MMA8452
  70. tristate "Freescale MMA8452Q Accelerometer Driver"
  71. depends on I2C
  72. select IIO_BUFFER
  73. select IIO_TRIGGERED_BUFFER
  74. help
  75. Say yes here to build support for the Freescale MMA8452Q 3-axis
  76. accelerometer.
  77. To compile this driver as a module, choose M here: the module
  78. will be called mma8452.
  79. config KXCJK1013
  80. tristate "Kionix 3-Axis Accelerometer Driver"
  81. depends on I2C
  82. select IIO_BUFFER
  83. select IIO_TRIGGERED_BUFFER
  84. help
  85. Say Y here if you want to build a driver for the Kionix KXCJK-1013
  86. triaxial acceleration sensor. This driver also supports KXCJ9-1008
  87. and KXTJ2-1009.
  88. To compile this driver as a module, choose M here: the module will
  89. be called kxcjk-1013.
  90. endmenu