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, 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. 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/bno055/Kconfig"
  49. config FXOS8700
  50. tristate
  51. config FXOS8700_I2C
  52. tristate "NXP FXOS8700 I2C driver"
  53. depends on I2C
  54. select FXOS8700
  55. select REGMAP_I2C
  56. help
  57. Say yes here to build support for the NXP FXOS8700 m+g combo
  58. sensor on I2C.
  59. This driver can also be built as a module. If so, the module will be
  60. called fxos8700_i2c.
  61. config FXOS8700_SPI
  62. tristate "NXP FXOS8700 SPI driver"
  63. depends on SPI
  64. select FXOS8700
  65. select REGMAP_SPI
  66. help
  67. Say yes here to build support for the NXP FXOS8700 m+g combo
  68. sensor on SPI.
  69. This driver can also be built as a module. If so, the module will be
  70. called fxos8700_spi.
  71. config KMX61
  72. tristate "Kionix KMX61 6-axis accelerometer and magnetometer"
  73. depends on I2C
  74. select IIO_BUFFER
  75. select IIO_TRIGGERED_BUFFER
  76. help
  77. Say Y here if you want to build a driver for Kionix KMX61 6-axis
  78. accelerometer and magnetometer.
  79. To compile this driver as module, choose M here: the module will
  80. be called kmx61.
  81. source "drivers/iio/imu/inv_icm42600/Kconfig"
  82. source "drivers/iio/imu/inv_mpu6050/Kconfig"
  83. source "drivers/iio/imu/st_lsm6dsx/Kconfig"
  84. source "drivers/iio/imu/st_lsm9ds0/Kconfig"
  85. source "drivers/iio/imu/st_asm330lhhx/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.