blob: 89717e15e784d3bd4b4ffcb41630f6f9c78d16a4 (
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
|
#
# I2C slave subsystem configuration
#
menuconfig I2C_SLAVE
bool "I2C Slave support"
depends on HAS_IOMEM
---help---
I2C (pronounce: I-square-C) is a slow serial bus protocol used in
many micro controller applications and developed by Philips.
If you want I2C Slave support, you should say Y here.
This I2C Slave support can also be built as a module. If so, the module
will be called i2c-slave.
if I2C_SLAVE
config I2C_SLAVE_CORE
tristate "I2C SLAVE CORE"
default y
---help---
i2c slave core.
config MXC_I2C_SLAVE
tristate "MXC I2C SLAVE"
depends on I2C_SLAVE_CORE
default y
---help---
mxc i2c slave support.
config I2C_SLAVE_CLIENT
tristate "I2C SLAVE CLIENT"
default y
---help---
i2c slave client that used when the master is on the same board.
this is for i2c master which is on the same board with the slave.
endif # I2C_SLAVE
|