Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #
  2. # Accelerometer drivers
  3. #
  4. menu "Accelerometers"
  5. config HID_SENSOR_ACCEL_3D
  6. depends on HID_SENSOR_HUB
  7. select IIO_BUFFER
  8. select IIO_TRIGGERED_BUFFER
  9. select HID_SENSOR_IIO_COMMON
  10. select HID_SENSOR_IIO_TRIGGER
  11. tristate "HID Accelerometers 3D"
  12. help
  13. Say yes here to build support for the HID SENSOR
  14. accelerometers 3D.
  15. config KXSD9
  16. tristate "Kionix KXSD9 Accelerometer Driver"
  17. depends on SPI
  18. help
  19. Say yes here to build support for the Kionix KXSD9 accelerometer.
  20. Currently this only supports the device via an SPI interface.
  21. config IIO_ST_ACCEL_3AXIS
  22. tristate "STMicroelectronics accelerometers 3-Axis Driver"
  23. depends on (I2C || SPI_MASTER) && SYSFS
  24. select IIO_ST_SENSORS_CORE
  25. select IIO_ST_ACCEL_I2C_3AXIS if (I2C)
  26. select IIO_ST_ACCEL_SPI_3AXIS if (SPI_MASTER)
  27. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  28. select IIO_ST_ACCEL_BUFFER if (IIO_TRIGGERED_BUFFER)
  29. help
  30. Say yes here to build support for STMicroelectronics accelerometers:
  31. LSM303DLH, LSM303DLHC, LIS3DH, LSM330D, LSM330DL, LSM330DLC,
  32. LIS331DLH, LSM303DL, LSM303DLM, LSM330.
  33. This driver can also be built as a module. If so, will be created
  34. these modules:
  35. - st_accel (core functions for the driver [it is mandatory]);
  36. - st_accel_i2c (necessary for the I2C devices [optional*]);
  37. - st_accel_spi (necessary for the SPI devices [optional*]);
  38. (*) one of these is necessary to do something.
  39. config IIO_ST_ACCEL_I2C_3AXIS
  40. tristate
  41. depends on IIO_ST_ACCEL_3AXIS
  42. depends on IIO_ST_SENSORS_I2C
  43. config IIO_ST_ACCEL_SPI_3AXIS
  44. tristate
  45. depends on IIO_ST_ACCEL_3AXIS
  46. depends on IIO_ST_SENSORS_SPI
  47. endmenu