]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/i2c/Kconfig
i2c: Merge omap i2c drivers from omap-historic
[linux-2.6-omap-h63xx.git] / drivers / i2c / Kconfig
1 #
2 # I2C subsystem configuration
3 #
4
5 menuconfig I2C
6         tristate "I2C support"
7         depends on HAS_IOMEM
8         default y if MACH_OMAP_H3 || MACH_OMAP_OSK
9         ---help---
10           I2C (pronounce: I-square-C) is a slow serial bus protocol used in
11           many micro controller applications and developed by Philips.  SMBus,
12           or System Management Bus is a subset of the I2C protocol.  More
13           information is contained in the directory <file:Documentation/i2c/>,
14           especially in the file called "summary" there.
15
16           Both I2C and SMBus are supported here. You will need this for
17           hardware sensors support, and also for Video For Linux support.
18
19           If you want I2C support, you should say Y here and also to the
20           specific driver for your bus adapter(s) below.
21
22           This I2C support can also be built as a module.  If so, the module
23           will be called i2c-core.
24
25 if I2C
26
27 config I2C_BOARDINFO
28         boolean
29         default y
30
31 config I2C_CHARDEV
32         tristate "I2C device interface"
33         help
34           Say Y here to use i2c-* device files, usually found in the /dev
35           directory on your system.  They make it possible to have user-space
36           programs use the I2C bus.  Information on how to do this is
37           contained in the file <file:Documentation/i2c/dev-interface>.
38
39           This support is also available as a module.  If so, the module 
40           will be called i2c-dev.
41
42 source drivers/i2c/algos/Kconfig
43 source drivers/i2c/busses/Kconfig
44 source drivers/i2c/chips/Kconfig
45
46 config I2C_DEBUG_CORE
47         bool "I2C Core debugging messages"
48         help
49           Say Y here if you want the I2C core to produce a bunch of debug
50           messages to the system log.  Select this if you are having a
51           problem with I2C support and want to see more of what is going on.
52
53 config I2C_DEBUG_ALGO
54         bool "I2C Algorithm debugging messages"
55         help
56           Say Y here if you want the I2C algorithm drivers to produce a bunch
57           of debug messages to the system log.  Select this if you are having
58           a problem with I2C support and want to see more of what is going
59           on.
60
61 config I2C_DEBUG_BUS
62         bool "I2C Bus debugging messages"
63         help
64           Say Y here if you want the I2C bus drivers to produce a bunch of
65           debug messages to the system log.  Select this if you are having
66           a problem with I2C support and want to see more of what is going
67           on.
68
69 config I2C_DEBUG_CHIP
70         bool "I2C Chip debugging messages"
71         help
72           Say Y here if you want the I2C chip drivers to produce a bunch of
73           debug messages to the system log.  Select this if you are having
74           a problem with I2C support and want to see more of what is going
75           on.
76
77 endif # I2C