1# SPDX-License-Identifier: GPL-2.0 2# 3# BMI270 IMU driver 4# 5 6config BMI270 7 tristate 8 select IIO_BUFFER 9 10config BMI270_I2C 11 tristate "Bosch BMI270 I2C driver" 12 depends on I2C 13 select BMI270 14 select REGMAP_I2C 15 help 16 Enable support for the Bosch BMI270 6-Axis IMU connected to I2C 17 interface. 18 19 This driver can also be built as a module. If so, the module will be 20 called bmi270_i2c. 21 22config BMI270_SPI 23 tristate "Bosch BMI270 SPI driver" 24 depends on SPI 25 select BMI270 26 select REGMAP_SPI 27 help 28 Enable support for the Bosch BMI270 6-Axis IMU connected to SPI 29 interface. 30 31 This driver can also be built as a module. If so, the module will be 32 called bmi270_spi. 33