Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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, ADIS16501, ADIS16505,
  35. ADIS16507 inertial 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. select CRC32
  44. help
  45. Say yes here to build support for Analog Devices ADIS16375, ADIS16480,
  46. ADIS16485, ADIS16488 inertial sensors.
  47. source "drivers/iio/imu/bmi160/Kconfig"
  48. source "drivers/iio/imu/bmi323/Kconfig"
  49. source "drivers/iio/imu/bno055/Kconfig"
  50. config FXOS8700
  51. tristate
  52. config FXOS8700_I2C
  53. tristate "NXP FXOS8700 I2C driver"
  54. depends on I2C
  55. select FXOS8700
  56. select REGMAP_I2C
  57. help
  58. Say yes here to build support for the NXP FXOS8700 m+g combo
  59. sensor on I2C.
  60. This driver can also be built as a module. If so, the module will be
  61. called fxos8700_i2c.
  62. config FXOS8700_SPI
  63. tristate "NXP FXOS8700 SPI driver"
  64. depends on SPI
  65. select FXOS8700
  66. select REGMAP_SPI
  67. help
  68. Say yes here to build support for the NXP FXOS8700 m+g combo
  69. sensor on SPI.
  70. This driver can also be built as a module. If so, the module will be
  71. called fxos8700_spi.
  72. config KMX61
  73. tristate "Kionix KMX61 6-axis accelerometer and magnetometer"
  74. depends on I2C
  75. select IIO_BUFFER
  76. select IIO_TRIGGERED_BUFFER
  77. help
  78. Say Y here if you want to build a driver for Kionix KMX61 6-axis
  79. accelerometer and magnetometer.
  80. To compile this driver as module, choose M here: the module will
  81. be called kmx61.
  82. source "drivers/iio/imu/inv_icm42600/Kconfig"
  83. source "drivers/iio/imu/inv_mpu6050/Kconfig"
  84. source "drivers/iio/imu/st_lsm6dsx/Kconfig"
  85. source "drivers/iio/imu/st_lsm9ds0/Kconfig"
  86. endmenu
  87. config IIO_ADIS_LIB
  88. tristate
  89. help
  90. A set of IO helper functions for the Analog Devices ADIS* device family.
  91. config IIO_ADIS_LIB_BUFFER
  92. bool
  93. select IIO_TRIGGERED_BUFFER
  94. help
  95. A set of buffer helper functions for the Analog Devices ADIS* device
  96. family.