blob: de305f89a65905fc5b16aa700c4aabf1061d9d6f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Arthur Othienobe53f9b2006-08-13 23:39:11 +02002# I2C subsystem configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
4
Lan Tianyuda3c6642014-05-20 20:59:24 +08005menu "I2C support"
6
7config I2C
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 tristate "I2C support"
Mika Kuoppala194684e2009-12-06 17:06:22 +01009 select RT_MUTEXES
Benjamin Tissoires4d5538f2016-10-13 14:10:40 +020010 select IRQ_DOMAIN
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 ---help---
Michael Witten622e0402011-07-08 22:33:24 +000012 I2C (pronounce: I-squared-C) is a slow serial bus protocol used in
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 many micro controller applications and developed by Philips. SMBus,
14 or System Management Bus is a subset of the I2C protocol. More
15 information is contained in the directory <file:Documentation/i2c/>,
16 especially in the file called "summary" there.
17
18 Both I2C and SMBus are supported here. You will need this for
19 hardware sensors support, and also for Video For Linux support.
20
21 If you want I2C support, you should say Y here and also to the
22 specific driver for your bus adapter(s) below.
23
24 This I2C support can also be built as a module. If so, the module
25 will be called i2c-core.
26
Lan Tianyu36604752014-08-15 13:38:59 +080027config ACPI_I2C_OPREGION
28 bool "ACPI I2C Operation region support"
29 depends on I2C=y && ACPI
Lan Tianyuda3c6642014-05-20 20:59:24 +080030 default y
31 help
Lan Tianyu36604752014-08-15 13:38:59 +080032 Say Y here if you want to enable ACPI I2C operation region support.
33 Operation Regions allow firmware (BIOS) code to access I2C slave devices,
34 such as smart batteries through an I2C host controller driver.
Lan Tianyuda3c6642014-05-20 20:59:24 +080035
Jan Engelhardt16538e62007-05-01 23:26:34 +020036if I2C
37
David Brownell9c1600e2007-05-01 23:26:31 +020038config I2C_BOARDINFO
Christoph Jaeger6341e622014-12-20 15:41:11 -050039 bool
David Brownell9c1600e2007-05-01 23:26:31 +020040 default y
41
Jean Delvare2bb50952009-09-18 22:45:46 +020042config I2C_COMPAT
Christoph Jaeger6341e622014-12-20 15:41:11 -050043 bool "Enable compatibility bits for old user-space"
Jean Delvare2bb50952009-09-18 22:45:46 +020044 default y
45 help
46 Say Y here if you intend to run lm-sensors 3.1.1 or older, or any
47 other user-space package which expects i2c adapters to be class
48 devices. If you don't know, say Y.
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050config I2C_CHARDEV
51 tristate "I2C device interface"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 help
53 Say Y here to use i2c-* device files, usually found in the /dev
54 directory on your system. They make it possible to have user-space
55 programs use the I2C bus. Information on how to do this is
56 contained in the file <file:Documentation/i2c/dev-interface>.
57
58 This support is also available as a module. If so, the module
59 will be called i2c-dev.
60
Michael Lawnick08263742010-08-11 18:21:02 +020061config I2C_MUX
62 tristate "I2C bus multiplexing support"
Peter Huewe3ddb59d2012-10-05 22:23:52 +020063 depends on HAS_IOMEM
Michael Lawnick08263742010-08-11 18:21:02 +020064 help
65 Say Y here if you want the I2C core to support the ability to
66 handle multiplexed I2C bus topologies, by presenting each
67 multiplexed segment as a I2C adapter.
68
69 This support is also available as a module. If so, the module
70 will be called i2c-mux.
71
Michael Lawnick7f528132010-08-11 18:21:03 +020072source drivers/i2c/muxes/Kconfig
73
Jean Delvare8d24f8d2008-08-10 22:56:15 +020074config I2C_HELPER_AUTO
75 bool "Autoselect pertinent helper modules"
76 default y
77 help
78 Some I2C bus drivers require so-called "I2C algorithm" modules
79 to work. These are basically software-only abstractions of generic
80 I2C interfaces. This option will autoselect them so that you don't
81 have to care.
82
83 Unselect this only if you need to enable additional helper
84 modules, for example for use with external I2C bus drivers.
85
86 In doubt, say Y.
87
Jean Delvaree2ca3072010-03-02 12:23:43 +010088config I2C_SMBUS
Arnaud Lacombedfc518d2010-11-06 18:30:25 -030089 tristate "SMBus-specific protocols" if !I2C_HELPER_AUTO
Jean Delvaree2ca3072010-03-02 12:23:43 +010090 help
91 Say Y here if you want support for SMBus extensions to the I2C
Jean Delvared380a202016-07-18 12:39:43 +020092 specification. At the moment, two extensions are supported:
93 the SMBus Alert protocol and the SMBus Host Notify protocol.
Jean Delvaree2ca3072010-03-02 12:23:43 +010094
95 This support is also available as a module. If so, the module
96 will be called i2c-smbus.
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098source drivers/i2c/algos/Kconfig
99source drivers/i2c/busses/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Peter Huewe3ddb59d2012-10-05 22:23:52 +0200101config I2C_STUB
102 tristate "I2C/SMBus Test Stub"
Kees Cook417e86c2013-01-16 18:53:37 -0800103 depends on m
Peter Huewe3ddb59d2012-10-05 22:23:52 +0200104 default 'n'
105 help
106 This module may be useful to developers of SMBus client drivers,
107 especially for certain kinds of sensor chips.
108
109 If you do build this module, be sure to read the notes and warnings
110 in <file:Documentation/i2c/i2c-stub>.
111
112 If you don't know what to do here, definitely say N.
113
Wolfram Sang389be322014-11-18 17:04:54 +0100114config I2C_SLAVE
115 bool "I2C slave support"
116
117if I2C_SLAVE
118
119config I2C_SLAVE_EEPROM
120 tristate "I2C eeprom slave driver"
121
122endif
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124config I2C_DEBUG_CORE
125 bool "I2C Core debugging messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 help
127 Say Y here if you want the I2C core to produce a bunch of debug
128 messages to the system log. Select this if you are having a
129 problem with I2C support and want to see more of what is going on.
130
131config I2C_DEBUG_ALGO
132 bool "I2C Algorithm debugging messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 help
134 Say Y here if you want the I2C algorithm drivers to produce a bunch
135 of debug messages to the system log. Select this if you are having
136 a problem with I2C support and want to see more of what is going
137 on.
138
139config I2C_DEBUG_BUS
140 bool "I2C Bus debugging messages"
Peter Huewe3ddb59d2012-10-05 22:23:52 +0200141 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 help
143 Say Y here if you want the I2C bus drivers to produce a bunch of
144 debug messages to the system log. Select this if you are having
145 a problem with I2C support and want to see more of what is going
146 on.
147
Jan Engelhardt16538e62007-05-01 23:26:34 +0200148endif # I2C
Lan Tianyuda3c6642014-05-20 20:59:24 +0800149
150endmenu