Kconfig 805 B

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # BMI160 IMU driver
  4. #
  5. config BMI160
  6. tristate
  7. select IIO_BUFFER
  8. select IIO_TRIGGERED_BUFFER
  9. config BMI160_I2C
  10. tristate "Bosch BMI160 I2C driver"
  11. depends on I2C
  12. select BMI160
  13. select REGMAP_I2C
  14. help
  15. If you say yes here you get support for BMI160 IMU on I2C with
  16. accelerometer, gyroscope and external BMG160 magnetometer.
  17. This driver can also be built as a module. If so, the module will be
  18. called bmi160_i2c.
  19. config BMI160_SPI
  20. tristate "Bosch BMI160 SPI driver"
  21. depends on SPI
  22. select BMI160
  23. select REGMAP_SPI
  24. help
  25. If you say yes here you get support for BMI160 IMU on SPI with
  26. accelerometer, gyroscope and external BMG160 magnetometer.
  27. This driver can also be built as a module. If so, the module will be
  28. called bmi160_spi.