Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #
  2. # IIO Digital Gyroscope Sensor drivers configuration
  3. #
  4. menu "Digital gyroscope sensors"
  5. config ADIS16080
  6. tristate "Analog Devices ADIS16080/100 Yaw Rate Gyroscope with SPI driver"
  7. depends on SPI
  8. help
  9. Say yes here to build support for Analog Devices ADIS16080, ADIS16100 Yaw
  10. Rate Gyroscope with SPI.
  11. config ADIS16136
  12. tristate "Analog devices ADIS16136 and similar gyroscopes driver"
  13. depends on SPI_MASTER
  14. select IIO_ADIS_LIB
  15. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  16. help
  17. Say yes here to build support for the Analog Devices ADIS16133, ADIS16135,
  18. ADIS16136 gyroscope devices.
  19. config ADXRS450
  20. tristate "Analog Devices ADXRS450/3 Digital Output Gyroscope SPI driver"
  21. depends on SPI
  22. help
  23. Say yes here to build support for Analog Devices ADXRS450 and ADXRS453
  24. programmable digital output gyroscope.
  25. This driver can also be built as a module. If so, the module
  26. will be called adxrs450.
  27. config HID_SENSOR_GYRO_3D
  28. depends on HID_SENSOR_HUB
  29. select IIO_BUFFER
  30. select IIO_TRIGGERED_BUFFER
  31. select HID_SENSOR_IIO_COMMON
  32. select HID_SENSOR_IIO_TRIGGER
  33. tristate "HID Gyroscope 3D"
  34. help
  35. Say yes here to build support for the HID SENSOR
  36. Gyroscope 3D.
  37. config IIO_ST_GYRO_3AXIS
  38. tristate "STMicroelectronics gyroscopes 3-Axis Driver"
  39. depends on (I2C || SPI_MASTER) && SYSFS
  40. select IIO_ST_SENSORS_CORE
  41. select IIO_ST_GYRO_I2C_3AXIS if (I2C)
  42. select IIO_ST_GYRO_SPI_3AXIS if (SPI_MASTER)
  43. select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
  44. select IIO_ST_GYRO_BUFFER if (IIO_TRIGGERED_BUFFER)
  45. help
  46. Say yes here to build support for STMicroelectronics gyroscopes:
  47. L3G4200D, LSM330DL, L3GD20, L3GD20H, LSM330DLC, L3G4IS, LSM330.
  48. This driver can also be built as a module. If so, will be created
  49. these modules:
  50. - st_gyro (core functions for the driver [it is mandatory]);
  51. - st_gyro_i2c (necessary for the I2C devices [optional*]);
  52. - st_gyro_spi (necessary for the SPI devices [optional*]);
  53. (*) one of these is necessary to do something.
  54. config IIO_ST_GYRO_I2C_3AXIS
  55. tristate
  56. depends on IIO_ST_GYRO_3AXIS
  57. depends on IIO_ST_SENSORS_I2C
  58. config IIO_ST_GYRO_SPI_3AXIS
  59. tristate
  60. depends on IIO_ST_GYRO_3AXIS
  61. depends on IIO_ST_SENSORS_SPI
  62. config ITG3200
  63. tristate "InvenSense ITG3200 Digital 3-Axis Gyroscope I2C driver"
  64. depends on I2C
  65. select IIO_TRIGGERED_BUFFER if IIO_BUFFER
  66. help
  67. Say yes here to add support for the InvenSense ITG3200 digital
  68. 3-axis gyroscope sensor.
  69. endmenu