1# SPDX-License-Identifier: GPL-2.0-or-later
2
3config INV_ICM42600
4	tristate
5
6config INV_ICM42600_I2C
7	tristate "InvenSense ICM-426xx I2C driver"
8	depends on I2C
9	select INV_ICM42600
10	select REGMAP_I2C
11	help
12	  This driver supports the InvenSense ICM-426xx motion tracking
13	  devices over I2C.
14
15	  This driver can be built as a module. The module will be called
16	  inv-icm42600-i2c.
17
18config INV_ICM42600_SPI
19	tristate "InvenSense ICM-426xx SPI driver"
20	depends on SPI_MASTER
21	select INV_ICM42600
22	select REGMAP_SPI
23	help
24	  This driver supports the InvenSense ICM-426xx motion tracking
25	  devices over SPI.
26
27	  This driver can be built as a module. The module will be called
28	  inv-icm42600-spi.
29