xref: /linux/drivers/iio/imu/bmi323/Kconfig (revision 06d07429858317ded2db7986113a9e0129cd599b)
1# SPDX-License-Identifier: GPL-2.0
2#
3# BMI323 IMU driver
4#
5
6config BMI323
7	tristate
8	select IIO_BUFFER
9	select IIO_TRIGGERED_BUFFER
10
11config BMI323_I2C
12	tristate "Bosch BMI323 I2C driver"
13	depends on I2C
14	select BMI323
15	select REGMAP_I2C
16	help
17	  Enable support for the Bosch BMI323 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 bmi323_i2c.
22
23config BMI323_SPI
24	tristate "Bosch BMI323 SPI driver"
25	depends on SPI
26	select BMI323
27	select REGMAP_SPI
28	help
29	  Enable support for the Bosch BMI323 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 bmi323_spi.
34