Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # IIO imu drivers configuration
  4. #
  5. # When adding new entries keep the list in alphabetical order
  6. menu "Inertial measurement units"
  7. config ADIS16400
  8. tristate "Analog Devices ADIS16400 and similar IMU SPI driver"
  9. depends on SPI
  10. select IIO_ADIS_LIB
  11. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  12. help
  13. Say yes here to build support for Analog Devices adis16300, adis16344,
  14. adis16350, adis16354, adis16355, adis16360, adis16362, adis16364,
  15. adis16365, adis16400 and adis16405 triaxial inertial sensors
  16. (adis16400 series also have magnetometers).
  17. config ADIS16460
  18. tristate "Analog Devices ADIS16460 and similar IMU driver"
  19. depends on SPI
  20. select IIO_ADIS_LIB
  21. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  22. help
  23. Say yes here to build support for Analog Devices ADIS16460 inertial
  24. sensor.
  25. To compile this driver as a module, choose M here: the module will be
  26. called adis16460.
  27. config ADIS16475
  28. tristate "Analog Devices ADIS16475 and similar IMU driver"
  29. depends on SPI
  30. select IIO_ADIS_LIB
  31. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  32. help
  33. Say yes here to build support for Analog Devices ADIS16470, ADIS16475,
  34. ADIS16477, ADIS16465, ADIS16467, ADIS16500, ADIS16505, ADIS16507 inertial
  35. sensors.
  36. To compile this driver as a module, choose M here: the module will be
  37. called adis16475.
  38. config ADIS16480
  39. tristate "Analog Devices ADIS16480 and similar IMU driver"
  40. depends on SPI
  41. select IIO_ADIS_LIB
  42. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  43. help
  44. Say yes here to build support for Analog Devices ADIS16375, ADIS16480,
  45. ADIS16485, ADIS16488 inertial sensors.
  46. source "drivers/iio/imu/bmi160/Kconfig"
  47. config FXOS8700
  48. tristate
  49. config FXOS8700_I2C
  50. tristate "NXP FXOS8700 I2C driver"
  51. depends on I2C
  52. select FXOS8700
  53. select REGMAP_I2C
  54. help
  55. Say yes here to build support for the NXP FXOS8700 m+g combo
  56. sensor on I2C.
  57. This driver can also be built as a module. If so, the module will be
  58. called fxos8700_i2c.
  59. config FXOS8700_SPI
  60. tristate "NXP FXOS8700 SPI driver"
  61. depends on SPI
  62. select FXOS8700
  63. select REGMAP_SPI
  64. help
  65. Say yes here to build support for the NXP FXOS8700 m+g combo
  66. sensor on SPI.
  67. This driver can also be built as a module. If so, the module will be
  68. called fxos8700_spi.
  69. config KMX61
  70. tristate "Kionix KMX61 6-axis accelerometer and magnetometer"
  71. depends on I2C
  72. select IIO_BUFFER
  73. select IIO_TRIGGERED_BUFFER
  74. help
  75. Say Y here if you want to build a driver for Kionix KMX61 6-axis
  76. accelerometer and magnetometer.
  77. To compile this driver as module, choose M here: the module will
  78. be called kmx61.
  79. source "drivers/iio/imu/inv_icm42600/Kconfig"
  80. source "drivers/iio/imu/inv_mpu6050/Kconfig"
  81. source "drivers/iio/imu/st_lsm6dsx/Kconfig"
  82. endmenu
  83. config IIO_ADIS_LIB
  84. tristate
  85. help
  86. A set of IO helper functions for the Analog Devices ADIS* device family.
  87. config IIO_ADIS_LIB_BUFFER
  88. bool
  89. select IIO_TRIGGERED_BUFFER
  90. help
  91. A set of buffer helper functions for the Analog Devices ADIS* device
  92. family.