Kconfig 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. #
  2. # IIO Digital Gyroscope Sensor drivers configuration
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. menu "Digital gyroscope sensors"
  6. config ADIS16080
  7. tristate "Analog Devices ADIS16080/100 Yaw Rate Gyroscope with SPI driver"
  8. depends on SPI
  9. help
  10. Say yes here to build support for Analog Devices ADIS16080, ADIS16100 Yaw
  11. Rate Gyroscope with SPI.
  12. config ADIS16130
  13. tristate "Analog Devices ADIS16130 High Precision Angular Rate Sensor driver"
  14. depends on SPI
  15. help
  16. Say yes here to build support for Analog Devices ADIS16130 High Precision
  17. Angular Rate Sensor driver.
  18. config ADIS16136
  19. tristate "Analog devices ADIS16136 and similar gyroscopes driver"
  20. depends on SPI_MASTER
  21. select IIO_ADIS_LIB
  22. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  23. help
  24. Say yes here to build support for the Analog Devices ADIS16133, ADIS16135,
  25. ADIS16136 gyroscope devices.
  26. config ADIS16260
  27. tristate "Analog Devices ADIS16260 Digital Gyroscope Sensor SPI driver"
  28. depends on SPI
  29. select IIO_ADIS_LIB
  30. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  31. help
  32. Say yes here to build support for Analog Devices ADIS16260 ADIS16265
  33. ADIS16250 ADIS16255 and ADIS16251 programmable digital gyroscope sensors.
  34. This driver can also be built as a module. If so, the module
  35. will be called adis16260.
  36. config ADXRS450
  37. tristate "Analog Devices ADXRS450/3 Digital Output Gyroscope SPI driver"
  38. depends on SPI
  39. help
  40. Say yes here to build support for Analog Devices ADXRS450 and ADXRS453
  41. programmable digital output gyroscope.
  42. This driver can also be built as a module. If so, the module
  43. will be called adxrs450.
  44. config BMG160
  45. tristate "BOSCH BMG160 Gyro Sensor"
  46. depends on (I2C || SPI_MASTER)
  47. select IIO_BUFFER
  48. select IIO_TRIGGERED_BUFFER
  49. select BMG160_I2C if (I2C)
  50. select BMG160_SPI if (SPI)
  51. help
  52. Say yes here to build support for BOSCH BMG160 Tri-axis Gyro Sensor
  53. driver connected via I2C or SPI. This driver also supports BMI055
  54. gyroscope.
  55. This driver can also be built as a module. If so, the module
  56. will be called bmg160_i2c or bmg160_spi.
  57. config BMG160_I2C
  58. tristate
  59. select REGMAP_I2C
  60. config BMG160_SPI
  61. tristate
  62. select REGMAP_SPI
  63. config HID_SENSOR_GYRO_3D
  64. depends on HID_SENSOR_HUB
  65. select IIO_BUFFER
  66. select IIO_TRIGGERED_BUFFER
  67. select HID_SENSOR_IIO_COMMON
  68. select HID_SENSOR_IIO_TRIGGER
  69. tristate "HID Gyroscope 3D"
  70. help
  71. Say yes here to build support for the HID SENSOR
  72. Gyroscope 3D.
  73. config IIO_ST_GYRO_3AXIS
  74. tristate "STMicroelectronics gyroscopes 3-Axis Driver"
  75. depends on (I2C || SPI_MASTER) && SYSFS
  76. select IIO_ST_SENSORS_CORE
  77. select IIO_ST_GYRO_I2C_3AXIS if (I2C)
  78. select IIO_ST_GYRO_SPI_3AXIS if (SPI_MASTER)
  79. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  80. help
  81. Say yes here to build support for STMicroelectronics gyroscopes:
  82. L3G4200D, LSM330DL, L3GD20, LSM330DLC, L3G4IS, LSM330.
  83. This driver can also be built as a module. If so, these modules
  84. will be created:
  85. - st_gyro (core functions for the driver [it is mandatory]);
  86. - st_gyro_i2c (necessary for the I2C devices [optional*]);
  87. - st_gyro_spi (necessary for the SPI devices [optional*]);
  88. (*) one of these is necessary to do something.
  89. config IIO_ST_GYRO_I2C_3AXIS
  90. tristate
  91. depends on IIO_ST_GYRO_3AXIS
  92. depends on IIO_ST_SENSORS_I2C
  93. config IIO_ST_GYRO_SPI_3AXIS
  94. tristate
  95. depends on IIO_ST_GYRO_3AXIS
  96. depends on IIO_ST_SENSORS_SPI
  97. config ITG3200
  98. tristate "InvenSense ITG3200 Digital 3-Axis Gyroscope I2C driver"
  99. depends on I2C
  100. select IIO_TRIGGERED_BUFFER if IIO_BUFFER
  101. help
  102. Say yes here to add support for the InvenSense ITG3200 digital
  103. 3-axis gyroscope sensor.
  104. endmenu