Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #
  2. # IIO imu drivers configuration
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. menu "Inertial measurement units"
  6. config ADIS16400
  7. tristate "Analog Devices ADIS16400 and similar IMU SPI driver"
  8. depends on SPI
  9. select IIO_ADIS_LIB
  10. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  11. help
  12. Say yes here to build support for Analog Devices adis16300, adis16344,
  13. adis16350, adis16354, adis16355, adis16360, adis16362, adis16364,
  14. adis16365, adis16400 and adis16405 triaxial inertial sensors
  15. (adis16400 series also have magnetometers).
  16. config ADIS16480
  17. tristate "Analog Devices ADIS16480 and similar IMU driver"
  18. depends on SPI
  19. select IIO_ADIS_LIB
  20. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  21. help
  22. Say yes here to build support for Analog Devices ADIS16375, ADIS16480,
  23. ADIS16485, ADIS16488 inertial sensors.
  24. config KMX61
  25. tristate "Kionix KMX61 6-axis accelerometer and magnetometer"
  26. depends on I2C
  27. select IIO_BUFFER
  28. select IIO_TRIGGERED_BUFFER
  29. help
  30. Say Y here if you want to build a driver for Kionix KMX61 6-axis
  31. accelerometer and magnetometer.
  32. To compile this driver as module, choose M here: the module will
  33. be called kmx61.
  34. source "drivers/iio/imu/inv_mpu6050/Kconfig"
  35. endmenu
  36. config IIO_ADIS_LIB
  37. tristate
  38. help
  39. A set of IO helper functions for the Analog Devices ADIS* device family.
  40. config IIO_ADIS_LIB_BUFFER
  41. bool
  42. select IIO_TRIGGERED_BUFFER
  43. help
  44. A set of buffer helper functions for the Analog Devices ADIS* device
  45. family.