blob: 9f3a4cd0b07f7468db3f086022e108bd86516805 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Sensor device configuration
3#
4
5menu "I2C Hardware Bus support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7config I2C_ALI1535
8 tristate "ALI 1535"
Jan Engelhardt16538e62007-05-01 23:26:34 +02009 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 help
11 If you say yes to this option, support will be included for the SMB
12 Host controller on Acer Labs Inc. (ALI) M1535 South Bridges. The SMB
13 controller is part of the 7101 device, which is an ACPI-compliant
14 Power Management Unit (PMU).
15
16 This driver can also be built as a module. If so, the module
17 will be called i2c-ali1535.
18
19config I2C_ALI1563
20 tristate "ALI 1563"
Jan Engelhardt16538e62007-05-01 23:26:34 +020021 depends on PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 help
23 If you say yes to this option, support will be included for the SMB
24 Host controller on Acer Labs Inc. (ALI) M1563 South Bridges. The SMB
25 controller is part of the 7101 device, which is an ACPI-compliant
26 Power Management Unit (PMU).
27
28 This driver can also be built as a module. If so, the module
29 will be called i2c-ali1563.
30
31config I2C_ALI15X3
32 tristate "ALI 15x3"
Jan Engelhardt16538e62007-05-01 23:26:34 +020033 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 help
35 If you say yes to this option, support will be included for the
36 Acer Labs Inc. (ALI) M1514 and M1543 motherboard I2C interfaces.
37
38 This driver can also be built as a module. If so, the module
39 will be called i2c-ali15x3.
40
41config I2C_AMD756
42 tristate "AMD 756/766/768/8111 and nVidia nForce"
Jan Engelhardt16538e62007-05-01 23:26:34 +020043 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 help
45 If you say yes to this option, support will be included for the AMD
46 756/766/768 mainboard I2C interfaces. The driver also includes
47 support for the first (SMBus 1.0) I2C interface of the AMD 8111 and
48 the nVidia nForce I2C interface.
49
50 This driver can also be built as a module. If so, the module
51 will be called i2c-amd756.
52
53config I2C_AMD756_S4882
54 tristate "SMBus multiplexing on the Tyan S4882"
55 depends on I2C_AMD756 && EXPERIMENTAL
56 help
57 Enabling this option will add specific SMBus support for the Tyan
58 S4882 motherboard. On this 4-CPU board, the SMBus is multiplexed
59 over 8 different channels, where the various memory module EEPROMs
60 and temperature sensors live. Saying yes here will give you access
61 to these in addition to the trunk.
62
63 This driver can also be built as a module. If so, the module
64 will be called i2c-amd756-s4882.
65
66config I2C_AMD8111
67 tristate "AMD 8111"
Jan Engelhardt16538e62007-05-01 23:26:34 +020068 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 help
70 If you say yes to this option, support will be included for the
71 second (SMBus 2.0) AMD 8111 mainboard I2C interface.
72
73 This driver can also be built as a module. If so, the module
74 will be called i2c-amd8111.
75
Andrew Victor813e30e2006-12-10 21:21:30 +010076config I2C_AT91
77 tristate "Atmel AT91 I2C Two-Wire interface (TWI)"
Jan Engelhardt16538e62007-05-01 23:26:34 +020078 depends on ARCH_AT91 && EXPERIMENTAL
Andrew Victor813e30e2006-12-10 21:21:30 +010079 help
80 This supports the use of the I2C interface on Atmel AT91
81 processors.
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083config I2C_AU1550
Domen Puncera294de42006-08-13 23:37:13 +020084 tristate "Au1550/Au1200 SMBus interface"
Jan Engelhardt16538e62007-05-01 23:26:34 +020085 depends on SOC_AU1550 || SOC_AU1200
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 help
87 If you say yes to this option, support will be included for the
Domen Puncera294de42006-08-13 23:37:13 +020088 Au1550 and Au1200 SMBus interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 This driver can also be built as a module. If so, the module
91 will be called i2c-au1550.
92
Bryan Wud24ecfc2007-05-01 23:26:32 +020093config I2C_BLACKFIN_TWI
94 tristate "Blackfin TWI I2C support"
Bryan Wud8e71542007-07-25 16:58:03 +080095 depends on BF534 || BF536 || BF537 || BF54x
Bryan Wud24ecfc2007-05-01 23:26:32 +020096 help
Bryan Wud8e71542007-07-25 16:58:03 +080097 This is the TWI I2C device driver for Blackfin 534/536/537/54x.
Bryan Wud24ecfc2007-05-01 23:26:32 +020098 This driver can also be built as a module. If so, the module
99 will be called i2c-bfin-twi.
100
101config I2C_BLACKFIN_TWI_CLK_KHZ
102 int "Blackfin TWI I2C clock (kHz)"
103 depends on I2C_BLACKFIN_TWI
104 range 10 400
105 default 50
106 help
107 The unit of the TWI clock is kHz.
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109config I2C_ELEKTOR
110 tristate "Elektor ISA card"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200111 depends on ISA && BROKEN_ON_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 select I2C_ALGOPCF
113 help
114 This supports the PCF8584 ISA bus I2C adapter. Say Y if you own
115 such an adapter.
116
117 This support is also available as a module. If so, the module
118 will be called i2c-elektor.
119
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +0200120config I2C_GPIO
121 tristate "GPIO-based bitbanging I2C"
122 depends on GENERIC_GPIO
123 select I2C_ALGOBIT
124 help
125 This is a very simple bitbanging I2C driver utilizing the
126 arch-neutral GPIO API to control the SCL and SDA lines.
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128config I2C_HYDRA
129 tristate "CHRP Apple Hydra Mac I/O I2C interface"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200130 depends on PCI && PPC_CHRP && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 select I2C_ALGOBIT
132 help
133 This supports the use of the I2C interface in the Apple Hydra Mac
134 I/O chip on some CHRP machines (e.g. the LongTrail). Say Y if you
135 have such a machine.
136
137 This support is also available as a module. If so, the module
138 will be called i2c-hydra.
139
140config I2C_I801
141 tristate "Intel 82801 (ICH)"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200142 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 help
144 If you say yes to this option, support will be included for the Intel
145 801 family of mainboard I2C interfaces. Specifically, the following
146 versions of the chipset are supported:
147 82801AA
148 82801AB
149 82801BA
150 82801CA/CAM
151 82801DB
152 82801EB/ER (ICH5/ICH5R)
153 6300ESB
154 ICH6
155 ICH7
Jason Gastonb0a70b52005-04-16 15:24:45 -0700156 ESB2
Jason Gaston8254fc42006-01-09 10:58:08 -0800157 ICH8
Jason Gastonadbc2a12006-11-22 15:19:12 -0800158 ICH9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 This driver can also be built as a module. If so, the module
161 will be called i2c-i801.
162
163config I2C_I810
164 tristate "Intel 810/815"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200165 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 select I2C_ALGOBIT
167 help
168 If you say yes to this option, support will be included for the Intel
169 810/815 family of mainboard I2C interfaces. Specifically, the
Jean Delvare142078f2005-10-26 21:21:50 +0200170 following versions of the chipset are supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 i810AA
172 i810AB
173 i810E
174 i815
Jean Delvare142078f2005-10-26 21:21:50 +0200175 i845G
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 This driver can also be built as a module. If so, the module
178 will be called i2c-i810.
179
Russell Kingb652b432005-06-15 12:38:14 +0100180config I2C_PXA
181 tristate "Intel PXA2XX I2C adapter (EXPERIMENTAL)"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200182 depends on EXPERIMENTAL && ARCH_PXA
Russell Kingb652b432005-06-15 12:38:14 +0100183 help
184 If you have devices in the PXA I2C bus, say yes to this option.
185 This driver can also be built as a module. If so, the module
186 will be called i2c-pxa.
187
188config I2C_PXA_SLAVE
189 bool "Intel PXA2XX I2C Slave comms support"
190 depends on I2C_PXA
191 help
192 Support I2C slave mode communications on the PXA I2C bus. This
193 is necessary for systems where the PXA may be a target on the
194 I2C bus.
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196config I2C_PIIX4
Rudolf Marek02e0c5d2006-03-23 16:48:09 +0100197 tristate "Intel PIIX4 and compatible (ATI/Serverworks/Broadcom/SMSC)"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200198 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 help
200 If you say yes to this option, support will be included for the Intel
201 PIIX4 family of mainboard I2C interfaces. Specifically, the following
Martin Devera5f7ea3c2006-02-27 23:11:45 +0100202 versions of the chipset are supported (note that Serverworks is part
203 of Broadcom):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 Intel PIIX4
205 Intel 440MX
Rudolf Marek02e0c5d2006-03-23 16:48:09 +0100206 ATI IXP200
207 ATI IXP300
208 ATI IXP400
Jean Delvare4e6697f2007-02-13 22:08:59 +0100209 ATI SB600
Henry Suc29c2222007-07-12 14:12:29 +0200210 ATI SB700
Shane Huang60693e52007-08-30 23:56:38 -0700211 ATI SB800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 Serverworks OSB4
213 Serverworks CSB5
214 Serverworks CSB6
Martin Devera5f7ea3c2006-02-27 23:11:45 +0100215 Serverworks HT-1000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 SMSC Victory66
217
218 This driver can also be built as a module. If so, the module
219 will be called i2c-piix4.
220
221config I2C_IBM_IIC
222 tristate "IBM PPC 4xx on-chip I2C interface"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200223 depends on IBM_OCP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 help
225 Say Y here if you want to use IIC peripheral found on
226 embedded IBM PPC 4xx based systems.
227
228 This driver can also be built as a module. If so, the module
229 will be called i2c-ibm_iic.
230
231config I2C_IOP3XX
Dan Williams285f5fa2006-12-07 02:59:39 +0100232 tristate "Intel IOPx3xx and IXP4xx on-chip I2C interface"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200233 depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IXP4XX || ARCH_IOP13XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 help
235 Say Y here if you want to use the IIC bus controller on
Dan Williams285f5fa2006-12-07 02:59:39 +0100236 the Intel IOPx3xx I/O Processors or IXP4xx Network Processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 This driver can also be built as a module. If so, the module
239 will be called i2c-iop3xx.
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241config I2C_IXP4XX
Jean Delvare11de70b2007-05-01 23:26:34 +0200242 tristate "IXP4xx GPIO-Based I2C Interface (DEPRECATED)"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200243 depends on ARCH_IXP4XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 select I2C_ALGOBIT
245 help
246 Say Y here if you have an Intel IXP4xx(420,421,422,425) based
247 system and are using GPIO lines for an I2C bus.
248
249 This support is also available as a module. If so, the module
250 will be called i2c-ixp4xx.
251
Jean Delvare11de70b2007-05-01 23:26:34 +0200252 This driver is deprecated and will be dropped soon. Use i2c-gpio
253 instead.
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255config I2C_IXP2000
Jean Delvare11de70b2007-05-01 23:26:34 +0200256 tristate "IXP2000 GPIO-Based I2C Interface (DEPRECATED)"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200257 depends on ARCH_IXP2000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 select I2C_ALGOBIT
259 help
260 Say Y here if you have an Intel IXP2000(2400, 2800, 2850) based
261 system and are using GPIO lines for an I2C bus.
262
263 This support is also available as a module. If so, the module
264 will be called i2c-ixp2000.
265
Jean Delvare11de70b2007-05-01 23:26:34 +0200266 This driver is deprecated and will be dropped soon. Use i2c-gpio
267 instead.
268
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +1100269config I2C_POWERMAC
270 tristate "Powermac I2C interface"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200271 depends on PPC_PMAC
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +1100272 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 help
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +1100274 This exposes the various PowerMac i2c interfaces to the linux i2c
275 layer and to userland. It is used by various drivers on the powemac
276 platform, thus should generally be enabled.
Benjamin Herrenschmidt0365ba72005-09-22 21:44:06 -0700277
278 This support is also available as a module. If so, the module
Benjamin Herrenschmidta28d3af2006-01-07 11:35:26 +1100279 will be called i2c-powermac.
Benjamin Herrenschmidt0365ba72005-09-22 21:44:06 -0700280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281config I2C_MPC
Jon Loeliger2097c7f2006-06-17 17:52:54 -0500282 tristate "MPC107/824x/85xx/52xx/86xx"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200283 depends on PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 help
285 If you say yes to this option, support will be included for the
286 built-in I2C interface on the MPC107/Tsi107/MPC8240/MPC8245 and
Jon Loeliger2097c7f2006-06-17 17:52:54 -0500287 MPC85xx/MPC8641 family processors. The driver may also work on 52xx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 family processors, though interrupts are known not to work.
289
290 This driver can also be built as a module. If so, the module
291 will be called i2c-mpc.
292
293config I2C_NFORCE2
R.Marek@sh.cvut.cz5d740fe2005-05-28 11:26:24 +0000294 tristate "Nvidia nForce2, nForce3 and nForce4"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200295 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 help
297 If you say yes to this option, support will be included for the Nvidia
R.Marek@sh.cvut.cz5d740fe2005-05-28 11:26:24 +0000298 nForce2, nForce3 and nForce4 families of mainboard I2C interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 This driver can also be built as a module. If so, the module
301 will be called i2c-nforce2.
302
Peter Korsgaard18f98b12006-06-04 20:01:08 +0200303config I2C_OCORES
304 tristate "OpenCores I2C Controller"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200305 depends on EXPERIMENTAL
Peter Korsgaard18f98b12006-06-04 20:01:08 +0200306 help
307 If you say yes to this option, support will be included for the
308 OpenCores I2C controller. For details see
309 http://www.opencores.org/projects.cgi/web/i2c/overview
310
311 This driver can also be built as a module. If so, the module
312 will be called i2c-ocores.
313
Komal Shah010d442c42006-08-13 23:44:09 +0200314config I2C_OMAP
315 tristate "OMAP I2C adapter"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200316 depends on ARCH_OMAP
Komal Shah010d442c42006-08-13 23:44:09 +0200317 default y if MACH_OMAP_H3 || MACH_OMAP_OSK
318 help
319 If you say yes to this option, support will be included for the
320 I2C interface on the Texas Instruments OMAP1/2 family of processors.
321 Like OMAP1510/1610/1710/5912 and OMAP242x.
322 For details see http://www.ti.com/omap.
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324config I2C_PARPORT
325 tristate "Parallel port adapter"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200326 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 select I2C_ALGOBIT
328 help
329 This supports parallel port I2C adapters such as the ones made by
330 Philips or Velleman, Analog Devices evaluation boards, and more.
331 Basically any adapter using the parallel port as an I2C bus with
332 no extra chipset is supported by this driver, or could be.
333
334 This driver is a replacement for (and was inspired by) an older
335 driver named i2c-philips-par. The new driver supports more devices,
336 and makes it easier to add support for new devices.
Mark M. Hoffmane97b81d2006-03-23 16:50:25 +0100337
338 An adapter type parameter is now mandatory. Please read the file
339 Documentation/i2c/busses/i2c-parport for details.
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 Another driver exists, named i2c-parport-light, which doesn't depend
342 on the parport driver. This is meant for embedded systems. Don't say
343 Y here if you intend to say Y or M there.
344
345 This support is also available as a module. If so, the module
346 will be called i2c-parport.
347
348config I2C_PARPORT_LIGHT
349 tristate "Parallel port adapter (light)"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 select I2C_ALGOBIT
351 help
352 This supports parallel port I2C adapters such as the ones made by
353 Philips or Velleman, Analog Devices evaluation boards, and more.
354 Basically any adapter using the parallel port as an I2C bus with
355 no extra chipset is supported by this driver, or could be.
356
357 This driver is a light version of i2c-parport. It doesn't depend
358 on the parport driver, and uses direct I/O access instead. This
Matt LaPlante09509602006-10-03 22:31:37 +0200359 might be preferred on embedded systems where wasting memory for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 the clean but heavy parport handling is not an option. The
361 drawback is a reduced portability and the impossibility to
Matt LaPlante09509602006-10-03 22:31:37 +0200362 daisy-chain other parallel port devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 Don't say Y here if you said Y or M to i2c-parport. Saying M to
365 both is possible but both modules should not be loaded at the same
366 time.
367
368 This support is also available as a module. If so, the module
369 will be called i2c-parport-light.
370
Olof Johanssonbeb58aa2007-02-13 22:09:03 +0100371config I2C_PASEMI
372 tristate "PA Semi SMBus interface"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200373 depends on PPC_PASEMI && PCI
Olof Johanssonbeb58aa2007-02-13 22:09:03 +0100374 help
375 Supports the PA Semi PWRficient on-chip SMBus interfaces.
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377config I2C_PROSAVAGE
378 tristate "S3/VIA (Pro)Savage"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200379 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 select I2C_ALGOBIT
381 help
382 If you say yes to this option, support will be included for the
383 I2C bus and DDC bus of the S3VIA embedded Savage4 and ProSavage8
384 graphics processors.
385 chipsets supported:
386 S3/VIA KM266/VT8375 aka ProSavage8
387 S3/VIA KM133/VT8365 aka Savage4
388
389 This support is also available as a module. If so, the module
390 will be called i2c-prosavage.
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392config I2C_S3C2410
393 tristate "S3C2410 I2C Driver"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200394 depends on ARCH_S3C2410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 help
396 Say Y here to include support for I2C controller in the
397 Samsung S3C2410 based System-on-Chip devices.
398
399config I2C_SAVAGE4
400 tristate "S3 Savage 4"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200401 depends on PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 select I2C_ALGOBIT
403 help
404 If you say yes to this option, support will be included for the
405 S3 Savage 4 I2C interface.
406
407 This driver can also be built as a module. If so, the module
408 will be called i2c-savage4.
409
410config I2C_SIBYTE
411 tristate "SiByte SMBus interface"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200412 depends on SIBYTE_SB1xxx_SOC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 help
414 Supports the SiByte SOC on-chip I2C interfaces (2 channels).
415
Ben Dooksbcda9f12007-05-01 23:26:34 +0200416config I2C_SIMTEC
417 tristate "Simtec Generic I2C interface"
418 select I2C_ALGOBIT
419 help
420 If you say yes to this option, support will be inclyded for
421 the Simtec Generic I2C interface. This driver is for the
422 simple I2C bus used on newer Simtec products for general
423 I2C, such as DDC on the Simtec BBD2016A.
424
425 This driver can also be build as a module. If so, the module
426 will be called i2c-simtec.
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428config SCx200_I2C
Jean Delvare11de70b2007-05-01 23:26:34 +0200429 tristate "NatSemi SCx200 I2C using GPIO pins (DEPRECATED)"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200430 depends on SCx200_GPIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 select I2C_ALGOBIT
432 help
433 Enable the use of two GPIO pins of a SCx200 processor as an I2C bus.
434
435 If you don't know what to do here, say N.
436
437 This support is also available as a module. If so, the module
438 will be called scx200_i2c.
439
Jean Delvare11de70b2007-05-01 23:26:34 +0200440 This driver is deprecated and will be dropped soon. Use i2c-gpio
441 (or scx200_acb) instead.
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443config SCx200_I2C_SCL
444 int "GPIO pin used for SCL"
445 depends on SCx200_I2C
446 default "12"
447 help
448 Enter the GPIO pin number used for the SCL signal. This value can
449 also be specified with a module parameter.
450
451config SCx200_I2C_SDA
452 int "GPIO pin used for SDA"
453 depends on SCx200_I2C
454 default "13"
455 help
456 Enter the GPIO pin number used for the SSA signal. This value can
457 also be specified with a module parameter.
458
459config SCx200_ACB
Ben Gardnera417bbd2006-01-18 22:53:09 +0100460 tristate "Geode ACCESS.bus support"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200461 depends on X86_32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 help
Ben Gardnera417bbd2006-01-18 22:53:09 +0100463 Enable the use of the ACCESS.bus controllers on the Geode SCx200 and
464 SC1100 processors and the CS5535 and CS5536 Geode companion devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 If you don't know what to do here, say N.
467
468 This support is also available as a module. If so, the module
469 will be called scx200_acb.
470
471config I2C_SIS5595
472 tristate "SiS 5595"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200473 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 help
475 If you say yes to this option, support will be included for the
476 SiS5595 SMBus (a subset of I2C) interface.
477
478 This driver can also be built as a module. If so, the module
479 will be called i2c-sis5595.
480
481config I2C_SIS630
482 tristate "SiS 630/730"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200483 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 help
485 If you say yes to this option, support will be included for the
486 SiS630 and SiS730 SMBus (a subset of I2C) interface.
487
488 This driver can also be built as a module. If so, the module
489 will be called i2c-sis630.
490
491config I2C_SIS96X
492 tristate "SiS 96x"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200493 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 help
495 If you say yes to this option, support will be included for the SiS
496 96x SMBus (a subset of I2C) interfaces. Specifically, the following
497 chipsets are supported:
498 645/961
499 645DX/961
500 645DX/962
501 648/961
502 650/961
503 735
R.Marek@sh.cvut.cz5d740fe2005-05-28 11:26:24 +0000504 745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 This driver can also be built as a module. If so, the module
507 will be called i2c-sis96x.
508
Jean Delvareb9cdad72007-07-12 14:12:31 +0200509config I2C_TAOS_EVM
510 tristate "TAOS evaluation module"
511 depends on EXPERIMENTAL
512 select SERIO
513 select SERIO_SERPORT
514 default n
515 help
516 This supports TAOS evaluation modules on serial port. In order to
517 use this driver, you will need the inputattach tool, which is part
518 of the input-utils package.
519
520 If unsure, say N.
521
522 This support is also available as a module. If so, the module
523 will be called i2c-taos-evm.
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525config I2C_STUB
526 tristate "I2C/SMBus Test Stub"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200527 depends on EXPERIMENTAL && m
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 default 'n'
529 help
530 This module may be useful to developers of SMBus client drivers,
531 especially for certain kinds of sensor chips.
532
533 If you do build this module, be sure to read the notes and warnings
534 in <file:Documentation/i2c/i2c-stub>.
535
536 If you don't know what to do here, definitely say N.
537
Till Harbaume8c76ee2007-05-01 23:26:35 +0200538config I2C_TINY_USB
539 tristate "I2C-Tiny-USB"
540 depends on USB
541 help
542 If you say yes to this option, support will be included for the
543 i2c-tiny-usb, a simple do-it-yourself USB to I2C interface. See
544 http://www.harbaum.org/till/i2c_tiny_usb for hardware details.
545
546 This driver can also be built as a module. If so, the module
547 will be called i2c-tiny-usb.
548
Russell King6b65cd72006-12-10 21:21:32 +0100549config I2C_VERSATILE
550 tristate "ARM Versatile/Realview I2C bus support"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200551 depends on ARCH_VERSATILE || ARCH_REALVIEW
Russell King6b65cd72006-12-10 21:21:32 +0100552 select I2C_ALGOBIT
553 help
554 Say yes if you want to support the I2C serial bus on ARMs Versatile
555 range of platforms.
556
557 This driver can also be built as a module. If so, the module
558 will be called i2c-versatile.
559
Russell King8d91cba2007-03-04 20:40:50 +0000560config I2C_ACORN
Al Viro2a9915c2007-07-15 21:37:16 +0100561 tristate "Acorn IOC/IOMD I2C bus support"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200562 depends on ARCH_ACORN
Russell King8d91cba2007-03-04 20:40:50 +0000563 default y
564 select I2C_ALGOBIT
565 help
566 Say yes if you want to support the I2C bus on Acorn platforms.
567
568 If you don't know, say Y.
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570config I2C_VIA
571 tristate "VIA 82C586B"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200572 depends on PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 select I2C_ALGOBIT
574 help
575 If you say yes to this option, support will be included for the VIA
576 82C586B I2C interface
577
578 This driver can also be built as a module. If so, the module
579 will be called i2c-via.
580
581config I2C_VIAPRO
Jean Delvareab6a6ed2007-02-13 22:09:02 +0100582 tristate "VIA VT82C596/82C686/82xx and CX700"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200583 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 help
585 If you say yes to this option, support will be included for the VIA
Jean Delvareab6a6ed2007-02-13 22:09:02 +0100586 VT82C596 and later SMBus interface. Specifically, the following
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 chipsets are supported:
Rudolf Marekc2433532006-09-03 22:35:21 +0200588 VT82C596A/B
589 VT82C686A/B
590 VT8231
591 VT8233/A
592 VT8235
593 VT8237R/A
594 VT8251
Jean Delvareab6a6ed2007-02-13 22:09:02 +0100595 CX700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 This driver can also be built as a module. If so, the module
598 will be called i2c-viapro.
599
600config I2C_VOODOO3
601 tristate "Voodoo 3"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200602 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 select I2C_ALGOBIT
604 help
605 If you say yes to this option, support will be included for the
606 Voodoo 3 I2C interface.
607
608 This driver can also be built as a module. If so, the module
609 will be called i2c-voodoo3.
610
611config I2C_PCA_ISA
612 tristate "PCA9564 on an ISA bus"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200613 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 select I2C_ALGOPCA
Jean Delvareaee62302006-06-04 19:59:57 +0200615 default n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 help
617 This driver supports ISA boards using the Philips PCA 9564
618 Parallel bus to I2C bus controller
619
620 This driver can also be built as a module. If so, the module
621 will be called i2c-pca-isa.
622
Jean Delvareaee62302006-06-04 19:59:57 +0200623 This device is almost undetectable and using this driver on a
624 system which doesn't have this device will result in long
625 delays when I2C/SMBus chip drivers are loaded (e.g. at boot
626 time). If unsure, say N.
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628config I2C_MV64XXX
629 tristate "Marvell mv64xxx I2C Controller"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200630 depends on MV64X60 && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 help
632 If you say yes to this option, support will be included for the
633 built-in I2C interface on the Marvell 64xxx line of host bridges.
634
635 This driver can also be built as a module. If so, the module
636 will be called i2c-mv64xxx.
637
Vitaly Wool41561f22006-12-10 21:21:29 +0100638config I2C_PNX
639 tristate "I2C bus support for Philips PNX targets"
Jan Engelhardt16538e62007-05-01 23:26:34 +0200640 depends on ARCH_PNX4008
Vitaly Wool41561f22006-12-10 21:21:29 +0100641 help
642 This driver supports the Philips IP3204 I2C IP block master and/or
643 slave controller
644
645 This driver can also be built as a module. If so, the module
646 will be called i2c-pnx.
647
Marc St-Jean1b144df2007-07-12 14:12:31 +0200648config I2C_PMCMSP
649 tristate "PMC MSP I2C TWI Controller"
650 depends on PMC_MSP
651 help
652 This driver supports the PMC TWI controller on MSP devices.
653
654 This driver can also be built as module. If so, the module
655 will be called i2c-pmcmsp.
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657endmenu