blob: dc133402f6d75f8c050100e8475404e00993818b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# SPDX-License-Identifier: GPL-2.0-or-later
config INV_ICM45600
tristate
select IIO_BUFFER
select IIO_KFIFO_BUF
select IIO_INV_SENSORS_TIMESTAMP
config INV_ICM45600_I2C
tristate "InvenSense ICM-456xx I2C driver"
depends on I2C
select INV_ICM45600
select REGMAP_I2C
help
This driver supports the InvenSense ICM-456xx motion tracking
devices over I2C.
Supported devices:
- ICM-45605
- ICM-45606
- ICM-45608
- ICM-45634
- ICM-45686
- ICM-45687
- ICM-45688-P
- ICM-45689
This driver can be built as a module. The module will be called
inv-icm45600-i2c.
config INV_ICM45600_SPI
tristate "InvenSense ICM-456xx SPI driver"
depends on SPI_MASTER
select INV_ICM45600
select REGMAP_SPI
help
This driver supports the InvenSense ICM-456xx motion tracking
devices over SPI.
Supported devices:
- ICM-45605
- ICM-45606
- ICM-45608
- ICM-45634
- ICM-45686
- ICM-45687
- ICM-45688-P
- ICM-45689
This driver can be built as a module. The module will be called
inv-icm45600-spi.
config INV_ICM45600_I3C
tristate "InvenSense ICM-456xx I3C driver"
depends on I3C
select INV_ICM45600
select REGMAP_I3C
help
This driver supports the InvenSense ICM-456xx motion tracking
devices over I3C.
Supported devices:
- ICM-45605
- ICM-45606
- ICM-45608
- ICM-45634
- ICM-45686
- ICM-45687
- ICM-45688-P
- ICM-45689
This driver can be built as a module. The module will be called
inv-icm45600-i3c.
|