Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. help
  29. Say yes here to build support for STMicroelectronics accelerometers:
  30. LSM303DLH, LSM303DLHC, LIS3DH, LSM330D, LSM330DL, LSM330DLC,
  31. LIS331DLH, LSM303DL, LSM303DLM, LSM330.
  32. This driver can also be built as a module. If so, these modules
  33. will be created:
  34. - st_accel (core functions for the driver [it is mandatory]);
  35. - st_accel_i2c (necessary for the I2C devices [optional*]);
  36. - st_accel_spi (necessary for the SPI devices [optional*]);
  37. (*) one of these is necessary to do something.
  38. config IIO_ST_ACCEL_I2C_3AXIS
  39. tristate
  40. depends on IIO_ST_ACCEL_3AXIS
  41. depends on IIO_ST_SENSORS_I2C
  42. config IIO_ST_ACCEL_SPI_3AXIS
  43. tristate
  44. depends on IIO_ST_ACCEL_3AXIS
  45. depends on IIO_ST_SENSORS_SPI
  46. endmenu