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