Kconfig 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. #
  2. # Sensor device configuration
  3. #
  4. menu "I2C Hardware Bus support"
  5. config I2C_ALI1535
  6. tristate "ALI 1535"
  7. depends on PCI
  8. help
  9. If you say yes to this option, support will be included for the SMB
  10. Host controller on Acer Labs Inc. (ALI) M1535 South Bridges. The SMB
  11. controller is part of the 7101 device, which is an ACPI-compliant
  12. Power Management Unit (PMU).
  13. This driver can also be built as a module. If so, the module
  14. will be called i2c-ali1535.
  15. config I2C_ALI1563
  16. tristate "ALI 1563"
  17. depends on PCI && EXPERIMENTAL
  18. help
  19. If you say yes to this option, support will be included for the SMB
  20. Host controller on Acer Labs Inc. (ALI) M1563 South Bridges. The SMB
  21. controller is part of the 7101 device, which is an ACPI-compliant
  22. Power Management Unit (PMU).
  23. This driver can also be built as a module. If so, the module
  24. will be called i2c-ali1563.
  25. config I2C_ALI15X3
  26. tristate "ALI 15x3"
  27. depends on PCI
  28. help
  29. If you say yes to this option, support will be included for the
  30. Acer Labs Inc. (ALI) M1514 and M1543 motherboard I2C interfaces.
  31. This driver can also be built as a module. If so, the module
  32. will be called i2c-ali15x3.
  33. config I2C_AMD756
  34. tristate "AMD 756/766/768/8111 and nVidia nForce"
  35. depends on PCI
  36. help
  37. If you say yes to this option, support will be included for the AMD
  38. 756/766/768 mainboard I2C interfaces. The driver also includes
  39. support for the first (SMBus 1.0) I2C interface of the AMD 8111 and
  40. the nVidia nForce I2C interface.
  41. This driver can also be built as a module. If so, the module
  42. will be called i2c-amd756.
  43. config I2C_AMD756_S4882
  44. tristate "SMBus multiplexing on the Tyan S4882"
  45. depends on I2C_AMD756 && EXPERIMENTAL
  46. help
  47. Enabling this option will add specific SMBus support for the Tyan
  48. S4882 motherboard. On this 4-CPU board, the SMBus is multiplexed
  49. over 8 different channels, where the various memory module EEPROMs
  50. and temperature sensors live. Saying yes here will give you access
  51. to these in addition to the trunk.
  52. This driver can also be built as a module. If so, the module
  53. will be called i2c-amd756-s4882.
  54. config I2C_AMD8111
  55. tristate "AMD 8111"
  56. depends on PCI
  57. help
  58. If you say yes to this option, support will be included for the
  59. second (SMBus 2.0) AMD 8111 mainboard I2C interface.
  60. This driver can also be built as a module. If so, the module
  61. will be called i2c-amd8111.
  62. config I2C_AT91
  63. tristate "Atmel AT91 I2C Two-Wire interface (TWI)"
  64. depends on ARCH_AT91 && EXPERIMENTAL && BROKEN
  65. help
  66. This supports the use of the I2C interface on Atmel AT91
  67. processors.
  68. This driver is BROKEN because the controller which it uses
  69. will easily trigger RX overrun and TX underrun errors. Using
  70. low I2C clock rates may partially work around those issues
  71. on some systems. Another serious problem is that there is no
  72. documented way to issue repeated START conditions, as needed
  73. to support combined I2C messages. Use the i2c-gpio driver
  74. unless your system can cope with those limitations.
  75. config I2C_AU1550
  76. tristate "Au1550/Au1200 SMBus interface"
  77. depends on SOC_AU1550 || SOC_AU1200
  78. help
  79. If you say yes to this option, support will be included for the
  80. Au1550 and Au1200 SMBus interface.
  81. This driver can also be built as a module. If so, the module
  82. will be called i2c-au1550.
  83. config I2C_BLACKFIN_TWI
  84. tristate "Blackfin TWI I2C support"
  85. depends on BLACKFIN
  86. help
  87. This is the TWI I2C device driver for Blackfin BF522, BF525,
  88. BF527, BF534, BF536, BF537 and BF54x. For other Blackfin processors,
  89. please don't use this driver.
  90. This driver can also be built as a module. If so, the module
  91. will be called i2c-bfin-twi.
  92. config I2C_BLACKFIN_TWI_CLK_KHZ
  93. int "Blackfin TWI I2C clock (kHz)"
  94. depends on I2C_BLACKFIN_TWI
  95. range 10 400
  96. default 50
  97. help
  98. The unit of the TWI clock is kHz.
  99. config I2C_DAVINCI
  100. tristate "DaVinci I2C driver"
  101. depends on ARCH_DAVINCI
  102. help
  103. Support for TI DaVinci I2C controller driver.
  104. This driver can also be built as a module. If so, the module
  105. will be called i2c-davinci.
  106. Please note that this driver might be needed to bring up other
  107. devices such as DaVinci NIC.
  108. For details please see http://www.ti.com/davinci
  109. config I2C_ELEKTOR
  110. tristate "Elektor ISA card"
  111. depends on ISA && BROKEN_ON_SMP
  112. select I2C_ALGOPCF
  113. help
  114. This supports the PCF8584 ISA bus I2C adapter. Say Y if you own
  115. such an adapter.
  116. This support is also available as a module. If so, the module
  117. will be called i2c-elektor.
  118. config I2C_GPIO
  119. tristate "GPIO-based bitbanging I2C"
  120. depends on GENERIC_GPIO
  121. select I2C_ALGOBIT
  122. help
  123. This is a very simple bitbanging I2C driver utilizing the
  124. arch-neutral GPIO API to control the SCL and SDA lines.
  125. config I2C_HYDRA
  126. tristate "CHRP Apple Hydra Mac I/O I2C interface"
  127. depends on PCI && PPC_CHRP && EXPERIMENTAL
  128. select I2C_ALGOBIT
  129. help
  130. This supports the use of the I2C interface in the Apple Hydra Mac
  131. I/O chip on some CHRP machines (e.g. the LongTrail). Say Y if you
  132. have such a machine.
  133. This support is also available as a module. If so, the module
  134. will be called i2c-hydra.
  135. config I2C_I801
  136. tristate "Intel 82801 (ICH)"
  137. depends on PCI
  138. help
  139. If you say yes to this option, support will be included for the Intel
  140. 801 family of mainboard I2C interfaces. Specifically, the following
  141. versions of the chipset are supported:
  142. 82801AA
  143. 82801AB
  144. 82801BA
  145. 82801CA/CAM
  146. 82801DB
  147. 82801EB/ER (ICH5/ICH5R)
  148. 6300ESB
  149. ICH6
  150. ICH7
  151. ESB2
  152. ICH8
  153. ICH9
  154. Tolapai
  155. ICH10
  156. This driver can also be built as a module. If so, the module
  157. will be called i2c-i801.
  158. config I2C_I810
  159. tristate "Intel 810/815 (DEPRECATED)"
  160. default n
  161. depends on PCI
  162. select I2C_ALGOBIT
  163. help
  164. If you say yes to this option, support will be included for the Intel
  165. 810/815 family of mainboard I2C interfaces. Specifically, the
  166. following versions of the chipset are supported:
  167. i810AA
  168. i810AB
  169. i810E
  170. i815
  171. i845G
  172. This driver is deprecated in favor of the i810fb and intelfb drivers.
  173. This driver can also be built as a module. If so, the module
  174. will be called i2c-i810.
  175. config I2C_PXA
  176. tristate "Intel PXA2XX I2C adapter (EXPERIMENTAL)"
  177. depends on EXPERIMENTAL && ARCH_PXA
  178. help
  179. If you have devices in the PXA I2C bus, say yes to this option.
  180. This driver can also be built as a module. If so, the module
  181. will be called i2c-pxa.
  182. config I2C_PXA_SLAVE
  183. bool "Intel PXA2XX I2C Slave comms support"
  184. depends on I2C_PXA
  185. help
  186. Support I2C slave mode communications on the PXA I2C bus. This
  187. is necessary for systems where the PXA may be a target on the
  188. I2C bus.
  189. config I2C_PIIX4
  190. tristate "Intel PIIX4 and compatible (ATI/Serverworks/Broadcom/SMSC)"
  191. depends on PCI
  192. help
  193. If you say yes to this option, support will be included for the Intel
  194. PIIX4 family of mainboard I2C interfaces. Specifically, the following
  195. versions of the chipset are supported (note that Serverworks is part
  196. of Broadcom):
  197. Intel PIIX4
  198. Intel 440MX
  199. ATI IXP200
  200. ATI IXP300
  201. ATI IXP400
  202. ATI SB600
  203. ATI SB700
  204. ATI SB800
  205. Serverworks OSB4
  206. Serverworks CSB5
  207. Serverworks CSB6
  208. Serverworks HT-1000
  209. SMSC Victory66
  210. This driver can also be built as a module. If so, the module
  211. will be called i2c-piix4.
  212. config I2C_IBM_IIC
  213. tristate "IBM PPC 4xx on-chip I2C interface"
  214. depends on 4xx
  215. help
  216. Say Y here if you want to use IIC peripheral found on
  217. embedded IBM PPC 4xx based systems.
  218. This driver can also be built as a module. If so, the module
  219. will be called i2c-ibm_iic.
  220. config I2C_IOP3XX
  221. tristate "Intel IOPx3xx and IXP4xx on-chip I2C interface"
  222. depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IXP4XX || ARCH_IOP13XX
  223. help
  224. Say Y here if you want to use the IIC bus controller on
  225. the Intel IOPx3xx I/O Processors or IXP4xx Network Processors.
  226. This driver can also be built as a module. If so, the module
  227. will be called i2c-iop3xx.
  228. config I2C_IXP2000
  229. tristate "IXP2000 GPIO-Based I2C Interface (DEPRECATED)"
  230. depends on ARCH_IXP2000
  231. select I2C_ALGOBIT
  232. help
  233. Say Y here if you have an Intel IXP2000 (2400, 2800, 2850) based
  234. system and are using GPIO lines for an I2C bus.
  235. This support is also available as a module. If so, the module
  236. will be called i2c-ixp2000.
  237. This driver is deprecated and will be dropped soon. Use i2c-gpio
  238. instead.
  239. config I2C_POWERMAC
  240. tristate "Powermac I2C interface"
  241. depends on PPC_PMAC
  242. default y
  243. help
  244. This exposes the various PowerMac i2c interfaces to the linux i2c
  245. layer and to userland. It is used by various drivers on the PowerMac
  246. platform, and should generally be enabled.
  247. This support is also available as a module. If so, the module
  248. will be called i2c-powermac.
  249. config I2C_MPC
  250. tristate "MPC107/824x/85xx/52xx/86xx"
  251. depends on PPC32
  252. help
  253. If you say yes to this option, support will be included for the
  254. built-in I2C interface on the MPC107/Tsi107/MPC8240/MPC8245 and
  255. MPC85xx/MPC8641 family processors. The driver may also work on 52xx
  256. family processors, though interrupts are known not to work.
  257. This driver can also be built as a module. If so, the module
  258. will be called i2c-mpc.
  259. config I2C_NFORCE2
  260. tristate "Nvidia nForce2, nForce3 and nForce4"
  261. depends on PCI
  262. help
  263. If you say yes to this option, support will be included for the Nvidia
  264. nForce2, nForce3 and nForce4 families of mainboard I2C interfaces.
  265. This driver can also be built as a module. If so, the module
  266. will be called i2c-nforce2.
  267. config I2C_OCORES
  268. tristate "OpenCores I2C Controller"
  269. depends on EXPERIMENTAL
  270. help
  271. If you say yes to this option, support will be included for the
  272. OpenCores I2C controller. For details see
  273. http://www.opencores.org/projects.cgi/web/i2c/overview
  274. This driver can also be built as a module. If so, the module
  275. will be called i2c-ocores.
  276. config I2C_OMAP
  277. tristate "OMAP I2C adapter"
  278. depends on ARCH_OMAP
  279. default y if MACH_OMAP_H3 || MACH_OMAP_OSK
  280. help
  281. If you say yes to this option, support will be included for the
  282. I2C interface on the Texas Instruments OMAP1/2 family of processors.
  283. Like OMAP1510/1610/1710/5912 and OMAP242x.
  284. For details see http://www.ti.com/omap.
  285. config I2C_PARPORT
  286. tristate "Parallel port adapter"
  287. depends on PARPORT
  288. select I2C_ALGOBIT
  289. help
  290. This supports parallel port I2C adapters such as the ones made by
  291. Philips or Velleman, Analog Devices evaluation boards, and more.
  292. Basically any adapter using the parallel port as an I2C bus with
  293. no extra chipset is supported by this driver, or could be.
  294. This driver is a replacement for (and was inspired by) an older
  295. driver named i2c-philips-par. The new driver supports more devices,
  296. and makes it easier to add support for new devices.
  297. An adapter type parameter is now mandatory. Please read the file
  298. Documentation/i2c/busses/i2c-parport for details.
  299. Another driver exists, named i2c-parport-light, which doesn't depend
  300. on the parport driver. This is meant for embedded systems. Don't say
  301. Y here if you intend to say Y or M there.
  302. This support is also available as a module. If so, the module
  303. will be called i2c-parport.
  304. config I2C_PARPORT_LIGHT
  305. tristate "Parallel port adapter (light)"
  306. select I2C_ALGOBIT
  307. help
  308. This supports parallel port I2C adapters such as the ones made by
  309. Philips or Velleman, Analog Devices evaluation boards, and more.
  310. Basically any adapter using the parallel port as an I2C bus with
  311. no extra chipset is supported by this driver, or could be.
  312. This driver is a light version of i2c-parport. It doesn't depend
  313. on the parport driver, and uses direct I/O access instead. This
  314. might be preferred on embedded systems where wasting memory for
  315. the clean but heavy parport handling is not an option. The
  316. drawback is a reduced portability and the impossibility to
  317. daisy-chain other parallel port devices.
  318. Don't say Y here if you said Y or M to i2c-parport. Saying M to
  319. both is possible but both modules should not be loaded at the same
  320. time.
  321. This support is also available as a module. If so, the module
  322. will be called i2c-parport-light.
  323. config I2C_PASEMI
  324. tristate "PA Semi SMBus interface"
  325. depends on PPC_PASEMI && PCI
  326. help
  327. Supports the PA Semi PWRficient on-chip SMBus interfaces.
  328. config I2C_PROSAVAGE
  329. tristate "S3/VIA (Pro)Savage (DEPRECATED)"
  330. default n
  331. depends on PCI
  332. select I2C_ALGOBIT
  333. help
  334. If you say yes to this option, support will be included for the
  335. I2C bus and DDC bus of the S3VIA embedded Savage4 and ProSavage8
  336. graphics processors.
  337. chipsets supported:
  338. S3/VIA KM266/VT8375 aka ProSavage8
  339. S3/VIA KM133/VT8365 aka Savage4
  340. This driver is deprecated in favor of the savagefb driver.
  341. This support is also available as a module. If so, the module
  342. will be called i2c-prosavage.
  343. config I2C_S3C2410
  344. tristate "S3C2410 I2C Driver"
  345. depends on ARCH_S3C2410
  346. help
  347. Say Y here to include support for I2C controller in the
  348. Samsung S3C2410 based System-on-Chip devices.
  349. config I2C_SAVAGE4
  350. tristate "S3 Savage 4 (DEPRECATED)"
  351. default n
  352. depends on PCI
  353. select I2C_ALGOBIT
  354. help
  355. If you say yes to this option, support will be included for the
  356. S3 Savage 4 I2C interface.
  357. This driver is deprecated in favor of the savagefb driver.
  358. This driver can also be built as a module. If so, the module
  359. will be called i2c-savage4.
  360. config I2C_SIBYTE
  361. tristate "SiByte SMBus interface"
  362. depends on SIBYTE_SB1xxx_SOC
  363. help
  364. Supports the SiByte SOC on-chip I2C interfaces (2 channels).
  365. config I2C_SIMTEC
  366. tristate "Simtec Generic I2C interface"
  367. select I2C_ALGOBIT
  368. help
  369. If you say yes to this option, support will be included for
  370. the Simtec Generic I2C interface. This driver is for the
  371. simple I2C bus used on newer Simtec products for general
  372. I2C, such as DDC on the Simtec BBD2016A.
  373. This driver can also be built as a module. If so, the module
  374. will be called i2c-simtec.
  375. config SCx200_I2C
  376. tristate "NatSemi SCx200 I2C using GPIO pins (DEPRECATED)"
  377. depends on SCx200_GPIO
  378. select I2C_ALGOBIT
  379. help
  380. Enable the use of two GPIO pins of a SCx200 processor as an I2C bus.
  381. If you don't know what to do here, say N.
  382. This support is also available as a module. If so, the module
  383. will be called scx200_i2c.
  384. This driver is deprecated and will be dropped soon. Use i2c-gpio
  385. (or scx200_acb) instead.
  386. config SCx200_I2C_SCL
  387. int "GPIO pin used for SCL"
  388. depends on SCx200_I2C
  389. default "12"
  390. help
  391. Enter the GPIO pin number used for the SCL signal. This value can
  392. also be specified with a module parameter.
  393. config SCx200_I2C_SDA
  394. int "GPIO pin used for SDA"
  395. depends on SCx200_I2C
  396. default "13"
  397. help
  398. Enter the GPIO pin number used for the SSA signal. This value can
  399. also be specified with a module parameter.
  400. config SCx200_ACB
  401. tristate "Geode ACCESS.bus support"
  402. depends on X86_32 && PCI
  403. help
  404. Enable the use of the ACCESS.bus controllers on the Geode SCx200 and
  405. SC1100 processors and the CS5535 and CS5536 Geode companion devices.
  406. If you don't know what to do here, say N.
  407. This support is also available as a module. If so, the module
  408. will be called scx200_acb.
  409. config I2C_SIS5595
  410. tristate "SiS 5595"
  411. depends on PCI
  412. help
  413. If you say yes to this option, support will be included for the
  414. SiS5595 SMBus (a subset of I2C) interface.
  415. This driver can also be built as a module. If so, the module
  416. will be called i2c-sis5595.
  417. config I2C_SIS630
  418. tristate "SiS 630/730"
  419. depends on PCI
  420. help
  421. If you say yes to this option, support will be included for the
  422. SiS630 and SiS730 SMBus (a subset of I2C) interface.
  423. This driver can also be built as a module. If so, the module
  424. will be called i2c-sis630.
  425. config I2C_SIS96X
  426. tristate "SiS 96x"
  427. depends on PCI
  428. help
  429. If you say yes to this option, support will be included for the SiS
  430. 96x SMBus (a subset of I2C) interfaces. Specifically, the following
  431. chipsets are supported:
  432. 645/961
  433. 645DX/961
  434. 645DX/962
  435. 648/961
  436. 650/961
  437. 735
  438. 745
  439. This driver can also be built as a module. If so, the module
  440. will be called i2c-sis96x.
  441. config I2C_TAOS_EVM
  442. tristate "TAOS evaluation module"
  443. depends on EXPERIMENTAL
  444. select SERIO
  445. select SERIO_SERPORT
  446. default n
  447. help
  448. This supports TAOS evaluation modules on serial port. In order to
  449. use this driver, you will need the inputattach tool, which is part
  450. of the input-utils package.
  451. If unsure, say N.
  452. This support is also available as a module. If so, the module
  453. will be called i2c-taos-evm.
  454. config I2C_STUB
  455. tristate "I2C/SMBus Test Stub"
  456. depends on EXPERIMENTAL && m
  457. default 'n'
  458. help
  459. This module may be useful to developers of SMBus client drivers,
  460. especially for certain kinds of sensor chips.
  461. If you do build this module, be sure to read the notes and warnings
  462. in <file:Documentation/i2c/i2c-stub>.
  463. If you don't know what to do here, definitely say N.
  464. config I2C_TINY_USB
  465. tristate "I2C-Tiny-USB"
  466. depends on USB
  467. help
  468. If you say yes to this option, support will be included for the
  469. i2c-tiny-usb, a simple do-it-yourself USB to I2C interface. See
  470. http://www.harbaum.org/till/i2c_tiny_usb for hardware details.
  471. This driver can also be built as a module. If so, the module
  472. will be called i2c-tiny-usb.
  473. config I2C_VERSATILE
  474. tristate "ARM Versatile/Realview I2C bus support"
  475. depends on ARCH_VERSATILE || ARCH_REALVIEW
  476. select I2C_ALGOBIT
  477. help
  478. Say yes if you want to support the I2C serial bus on ARMs Versatile
  479. range of platforms.
  480. This driver can also be built as a module. If so, the module
  481. will be called i2c-versatile.
  482. config I2C_ACORN
  483. tristate "Acorn IOC/IOMD I2C bus support"
  484. depends on ARCH_ACORN
  485. default y
  486. select I2C_ALGOBIT
  487. help
  488. Say yes if you want to support the I2C bus on Acorn platforms.
  489. If you don't know, say Y.
  490. config I2C_VIA
  491. tristate "VIA 82C586B"
  492. depends on PCI && EXPERIMENTAL
  493. select I2C_ALGOBIT
  494. help
  495. If you say yes to this option, support will be included for the VIA
  496. 82C586B I2C interface
  497. This driver can also be built as a module. If so, the module
  498. will be called i2c-via.
  499. config I2C_VIAPRO
  500. tristate "VIA VT82C596/82C686/82xx and CX700"
  501. depends on PCI
  502. help
  503. If you say yes to this option, support will be included for the VIA
  504. VT82C596 and later SMBus interface. Specifically, the following
  505. chipsets are supported:
  506. VT82C596A/B
  507. VT82C686A/B
  508. VT8231
  509. VT8233/A
  510. VT8235
  511. VT8237R/A/S
  512. VT8251
  513. CX700
  514. This driver can also be built as a module. If so, the module
  515. will be called i2c-viapro.
  516. config I2C_VOODOO3
  517. tristate "Voodoo 3"
  518. depends on PCI
  519. select I2C_ALGOBIT
  520. help
  521. If you say yes to this option, support will be included for the
  522. Voodoo 3 I2C interface.
  523. This driver can also be built as a module. If so, the module
  524. will be called i2c-voodoo3.
  525. config I2C_PCA_ISA
  526. tristate "PCA9564 on an ISA bus"
  527. depends on ISA
  528. select I2C_ALGOPCA
  529. default n
  530. help
  531. This driver supports ISA boards using the Philips PCA9564
  532. parallel bus to I2C bus controller.
  533. This driver can also be built as a module. If so, the module
  534. will be called i2c-pca-isa.
  535. This device is almost undetectable and using this driver on a
  536. system which doesn't have this device will result in long
  537. delays when I2C/SMBus chip drivers are loaded (e.g. at boot
  538. time). If unsure, say N.
  539. config I2C_PCA_PLATFORM
  540. tristate "PCA9564 as platform device"
  541. select I2C_ALGOPCA
  542. default n
  543. help
  544. This driver supports a memory mapped Philips PCA9564
  545. parallel bus to I2C bus controller.
  546. This driver can also be built as a module. If so, the module
  547. will be called i2c-pca-platform.
  548. config I2C_MV64XXX
  549. tristate "Marvell mv64xxx I2C Controller"
  550. depends on (MV64X60 || PLAT_ORION) && EXPERIMENTAL
  551. help
  552. If you say yes to this option, support will be included for the
  553. built-in I2C interface on the Marvell 64xxx line of host bridges.
  554. This driver can also be built as a module. If so, the module
  555. will be called i2c-mv64xxx.
  556. config I2C_PNX
  557. tristate "I2C bus support for Philips PNX targets"
  558. depends on ARCH_PNX4008
  559. help
  560. This driver supports the Philips IP3204 I2C IP block master and/or
  561. slave controller
  562. This driver can also be built as a module. If so, the module
  563. will be called i2c-pnx.
  564. config I2C_PMCMSP
  565. tristate "PMC MSP I2C TWI Controller"
  566. depends on PMC_MSP
  567. help
  568. This driver supports the PMC TWI controller on MSP devices.
  569. This driver can also be built as module. If so, the module
  570. will be called i2c-pmcmsp.
  571. config I2C_SH7760
  572. tristate "Renesas SH7760 I2C Controller"
  573. depends on CPU_SUBTYPE_SH7760
  574. help
  575. This driver supports the 2 I2C interfaces on the Renesas SH7760.
  576. This driver can also be built as a module. If so, the module
  577. will be called i2c-sh7760.
  578. config I2C_SH_MOBILE
  579. tristate "SuperH Mobile I2C Controller"
  580. depends on SUPERH
  581. help
  582. If you say yes to this option, support will be included for the
  583. built-in I2C interface on the Renesas SH-Mobile processor.
  584. This driver can also be built as a module. If so, the module
  585. will be called i2c-sh_mobile.
  586. endmenu