Kconfig 813 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # inv-mpu6050 drivers for Invensense MPU devices and combos
  3. #
  4. config INV_MPU6050_IIO
  5. tristate
  6. select IIO_BUFFER
  7. select IIO_TRIGGERED_BUFFER
  8. config INV_MPU6050_I2C
  9. tristate "Invensense MPU6050 devices (I2C)"
  10. depends on I2C_MUX
  11. select INV_MPU6050_IIO
  12. select REGMAP_I2C
  13. help
  14. This driver supports the Invensense MPU6050/6500/9150 and ICM20608
  15. motion tracking devices over I2C.
  16. This driver can be built as a module. The module will be called
  17. inv-mpu6050-i2c.
  18. config INV_MPU6050_SPI
  19. tristate "Invensense MPU6050 devices (SPI)"
  20. depends on SPI_MASTER
  21. select INV_MPU6050_IIO
  22. select REGMAP_SPI
  23. help
  24. This driver supports the Invensense MPU6050/6500/9150 and ICM20608
  25. motion tracking devices over SPI.
  26. This driver can be built as a module. The module will be called
  27. inv-mpu6050-spi.