Kconfig 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  1. #
  2. # Sensor device configuration
  3. #
  4. menu "I2C Hardware Bus support"
  5. depends on HAS_IOMEM
  6. comment "PC SMBus host controller drivers"
  7. depends on PCI
  8. config I2C_ALI1535
  9. tristate "ALI 1535"
  10. depends on PCI
  11. help
  12. If you say yes to this option, support will be included for the SMB
  13. Host controller on Acer Labs Inc. (ALI) M1535 South Bridges. The SMB
  14. controller is part of the 7101 device, which is an ACPI-compliant
  15. Power Management Unit (PMU).
  16. This driver can also be built as a module. If so, the module
  17. will be called i2c-ali1535.
  18. config I2C_ALI1563
  19. tristate "ALI 1563"
  20. depends on PCI
  21. help
  22. If you say yes to this option, support will be included for the SMB
  23. Host controller on Acer Labs Inc. (ALI) M1563 South Bridges. The SMB
  24. controller is part of the 7101 device, which is an ACPI-compliant
  25. Power Management Unit (PMU).
  26. This driver can also be built as a module. If so, the module
  27. will be called i2c-ali1563.
  28. config I2C_ALI15X3
  29. tristate "ALI 15x3"
  30. depends on PCI
  31. help
  32. If you say yes to this option, support will be included for the
  33. Acer Labs Inc. (ALI) M1514 and M1543 motherboard I2C interfaces.
  34. This driver can also be built as a module. If so, the module
  35. will be called i2c-ali15x3.
  36. config I2C_AMD756
  37. tristate "AMD 756/766/768/8111 and nVidia nForce"
  38. depends on PCI
  39. help
  40. If you say yes to this option, support will be included for the AMD
  41. 756/766/768 mainboard I2C interfaces. The driver also includes
  42. support for the first (SMBus 1.0) I2C interface of the AMD 8111 and
  43. the nVidia nForce I2C interface.
  44. This driver can also be built as a module. If so, the module
  45. will be called i2c-amd756.
  46. config I2C_AMD756_S4882
  47. tristate "SMBus multiplexing on the Tyan S4882"
  48. depends on I2C_AMD756 && X86
  49. help
  50. Enabling this option will add specific SMBus support for the Tyan
  51. S4882 motherboard. On this 4-CPU board, the SMBus is multiplexed
  52. over 8 different channels, where the various memory module EEPROMs
  53. and temperature sensors live. Saying yes here will give you access
  54. to these in addition to the trunk.
  55. This driver can also be built as a module. If so, the module
  56. will be called i2c-amd756-s4882.
  57. config I2C_AMD8111
  58. tristate "AMD 8111"
  59. depends on PCI
  60. help
  61. If you say yes to this option, support will be included for the
  62. second (SMBus 2.0) AMD 8111 mainboard I2C interface.
  63. This driver can also be built as a module. If so, the module
  64. will be called i2c-amd8111.
  65. config I2C_I801
  66. tristate "Intel 82801 (ICH/PCH)"
  67. depends on PCI
  68. select CHECK_SIGNATURE if X86 && DMI
  69. help
  70. If you say yes to this option, support will be included for the Intel
  71. 801 family of mainboard I2C interfaces. Specifically, the following
  72. versions of the chipset are supported:
  73. 82801AA
  74. 82801AB
  75. 82801BA
  76. 82801CA/CAM
  77. 82801DB
  78. 82801EB/ER (ICH5/ICH5R)
  79. 6300ESB
  80. ICH6
  81. ICH7
  82. ESB2
  83. ICH8
  84. ICH9
  85. EP80579 (Tolapai)
  86. ICH10
  87. 5/3400 Series (PCH)
  88. 6 Series (PCH)
  89. Patsburg (PCH)
  90. DH89xxCC (PCH)
  91. Panther Point (PCH)
  92. Lynx Point (PCH)
  93. Lynx Point-LP (PCH)
  94. This driver can also be built as a module. If so, the module
  95. will be called i2c-i801.
  96. config I2C_ISCH
  97. tristate "Intel SCH SMBus 1.0"
  98. depends on PCI
  99. select LPC_SCH
  100. help
  101. Say Y here if you want to use SMBus controller on the Intel SCH
  102. based systems.
  103. This driver can also be built as a module. If so, the module
  104. will be called i2c-isch.
  105. config I2C_PIIX4
  106. tristate "Intel PIIX4 and compatible (ATI/AMD/Serverworks/Broadcom/SMSC)"
  107. depends on PCI
  108. help
  109. If you say yes to this option, support will be included for the Intel
  110. PIIX4 family of mainboard I2C interfaces. Specifically, the following
  111. versions of the chipset are supported (note that Serverworks is part
  112. of Broadcom):
  113. Intel PIIX4
  114. Intel 440MX
  115. ATI IXP200
  116. ATI IXP300
  117. ATI IXP400
  118. ATI SB600
  119. ATI SB700/SP5100
  120. ATI SB800
  121. AMD Hudson-2
  122. Serverworks OSB4
  123. Serverworks CSB5
  124. Serverworks CSB6
  125. Serverworks HT-1000
  126. Serverworks HT-1100
  127. SMSC Victory66
  128. Some AMD chipsets contain two PIIX4-compatible SMBus
  129. controllers. This driver will attempt to use both controllers
  130. on the SB700/SP5100, if they have been initialized by the BIOS.
  131. This driver can also be built as a module. If so, the module
  132. will be called i2c-piix4.
  133. config I2C_NFORCE2
  134. tristate "Nvidia nForce2, nForce3 and nForce4"
  135. depends on PCI
  136. help
  137. If you say yes to this option, support will be included for the Nvidia
  138. nForce2, nForce3 and nForce4 families of mainboard I2C interfaces.
  139. This driver can also be built as a module. If so, the module
  140. will be called i2c-nforce2.
  141. config I2C_NFORCE2_S4985
  142. tristate "SMBus multiplexing on the Tyan S4985"
  143. depends on I2C_NFORCE2 && X86
  144. help
  145. Enabling this option will add specific SMBus support for the Tyan
  146. S4985 motherboard. On this 4-CPU board, the SMBus is multiplexed
  147. over 4 different channels, where the various memory module EEPROMs
  148. live. Saying yes here will give you access to these in addition
  149. to the trunk.
  150. This driver can also be built as a module. If so, the module
  151. will be called i2c-nforce2-s4985.
  152. config I2C_SIS5595
  153. tristate "SiS 5595"
  154. depends on PCI
  155. help
  156. If you say yes to this option, support will be included for the
  157. SiS5595 SMBus (a subset of I2C) interface.
  158. This driver can also be built as a module. If so, the module
  159. will be called i2c-sis5595.
  160. config I2C_SIS630
  161. tristate "SiS 630/730"
  162. depends on PCI
  163. help
  164. If you say yes to this option, support will be included for the
  165. SiS630 and SiS730 SMBus (a subset of I2C) interface.
  166. This driver can also be built as a module. If so, the module
  167. will be called i2c-sis630.
  168. config I2C_SIS96X
  169. tristate "SiS 96x"
  170. depends on PCI
  171. help
  172. If you say yes to this option, support will be included for the SiS
  173. 96x SMBus (a subset of I2C) interfaces. Specifically, the following
  174. chipsets are supported:
  175. 645/961
  176. 645DX/961
  177. 645DX/962
  178. 648/961
  179. 650/961
  180. 735
  181. 745
  182. This driver can also be built as a module. If so, the module
  183. will be called i2c-sis96x.
  184. config I2C_VIA
  185. tristate "VIA VT82C586B"
  186. depends on PCI
  187. select I2C_ALGOBIT
  188. help
  189. If you say yes to this option, support will be included for the VIA
  190. 82C586B I2C interface
  191. This driver can also be built as a module. If so, the module
  192. will be called i2c-via.
  193. config I2C_VIAPRO
  194. tristate "VIA VT82C596/82C686/82xx and CX700/VX8xx/VX900"
  195. depends on PCI
  196. help
  197. If you say yes to this option, support will be included for the VIA
  198. VT82C596 and later SMBus interface. Specifically, the following
  199. chipsets are supported:
  200. VT82C596A/B
  201. VT82C686A/B
  202. VT8231
  203. VT8233/A
  204. VT8235
  205. VT8237R/A/S
  206. VT8251
  207. CX700
  208. VX800/VX820
  209. VX855/VX875
  210. VX900
  211. This driver can also be built as a module. If so, the module
  212. will be called i2c-viapro.
  213. if ACPI
  214. comment "ACPI drivers"
  215. config I2C_SCMI
  216. tristate "SMBus Control Method Interface"
  217. help
  218. This driver supports the SMBus Control Method Interface. It needs the
  219. BIOS to declare ACPI control methods as described in the SMBus Control
  220. Method Interface specification.
  221. To compile this driver as a module, choose M here:
  222. the module will be called i2c-scmi.
  223. endif # ACPI
  224. comment "Mac SMBus host controller drivers"
  225. depends on PPC_CHRP || PPC_PMAC
  226. config I2C_HYDRA
  227. tristate "CHRP Apple Hydra Mac I/O I2C interface"
  228. depends on PCI && PPC_CHRP
  229. select I2C_ALGOBIT
  230. help
  231. This supports the use of the I2C interface in the Apple Hydra Mac
  232. I/O chip on some CHRP machines (e.g. the LongTrail). Say Y if you
  233. have such a machine.
  234. This support is also available as a module. If so, the module
  235. will be called i2c-hydra.
  236. config I2C_POWERMAC
  237. tristate "Powermac I2C interface"
  238. depends on PPC_PMAC
  239. default y
  240. help
  241. This exposes the various PowerMac i2c interfaces to the linux i2c
  242. layer and to userland. It is used by various drivers on the PowerMac
  243. platform, and should generally be enabled.
  244. This support is also available as a module. If so, the module
  245. will be called i2c-powermac.
  246. comment "I2C system bus drivers (mostly embedded / system-on-chip)"
  247. config I2C_AT91
  248. tristate "Atmel AT91 I2C Two-Wire interface (TWI)"
  249. depends on ARCH_AT91
  250. help
  251. This supports the use of the I2C interface on Atmel AT91
  252. processors.
  253. A serious problem is that there is no documented way to issue
  254. repeated START conditions for more than two messages, as needed
  255. to support combined I2C messages. Use the i2c-gpio driver
  256. unless your system can cope with this limitation.
  257. Caution! at91rm9200, at91sam9261, at91sam9260, at91sam9263 devices
  258. don't have clock stretching in transmission mode. For that reason,
  259. you can encounter underrun issues causing premature stop sendings if
  260. the latency to fill the transmission register is too long. If you
  261. are facing this situation, use the i2c-gpio driver.
  262. config I2C_AU1550
  263. tristate "Au1550/Au1200/Au1300 SMBus interface"
  264. depends on MIPS_ALCHEMY
  265. help
  266. If you say yes to this option, support will be included for the
  267. Au1550/Au1200/Au1300 SMBus interface.
  268. This driver can also be built as a module. If so, the module
  269. will be called i2c-au1550.
  270. config I2C_BLACKFIN_TWI
  271. tristate "Blackfin TWI I2C support"
  272. depends on BLACKFIN
  273. depends on !BF561 && !BF531 && !BF532 && !BF533
  274. help
  275. This is the I2C bus driver for Blackfin on-chip TWI interface.
  276. This driver can also be built as a module. If so, the module
  277. will be called i2c-bfin-twi.
  278. config I2C_BLACKFIN_TWI_CLK_KHZ
  279. int "Blackfin TWI I2C clock (kHz)"
  280. depends on I2C_BLACKFIN_TWI
  281. range 21 400
  282. default 50
  283. help
  284. The unit of the TWI clock is kHz.
  285. config I2C_CBUS_GPIO
  286. tristate "CBUS I2C driver"
  287. depends on GENERIC_GPIO
  288. help
  289. Support for CBUS access using I2C API. Mostly relevant for Nokia
  290. Internet Tablets (770, N800 and N810).
  291. This driver can also be built as a module. If so, the module
  292. will be called i2c-cbus-gpio.
  293. config I2C_CPM
  294. tristate "Freescale CPM1 or CPM2 (MPC8xx/826x)"
  295. depends on (CPM1 || CPM2) && OF_I2C
  296. help
  297. This supports the use of the I2C interface on Freescale
  298. processors with CPM1 or CPM2.
  299. This driver can also be built as a module. If so, the module
  300. will be called i2c-cpm.
  301. config I2C_DAVINCI
  302. tristate "DaVinci I2C driver"
  303. depends on ARCH_DAVINCI
  304. help
  305. Support for TI DaVinci I2C controller driver.
  306. This driver can also be built as a module. If so, the module
  307. will be called i2c-davinci.
  308. Please note that this driver might be needed to bring up other
  309. devices such as DaVinci NIC.
  310. For details please see http://www.ti.com/davinci
  311. config I2C_DESIGNWARE_CORE
  312. tristate
  313. config I2C_DESIGNWARE_PLATFORM
  314. tristate "Synopsys DesignWare Platform"
  315. depends on HAVE_CLK
  316. select I2C_DESIGNWARE_CORE
  317. help
  318. If you say yes to this option, support will be included for the
  319. Synopsys DesignWare I2C adapter. Only master mode is supported.
  320. This driver can also be built as a module. If so, the module
  321. will be called i2c-designware-platform.
  322. config I2C_DESIGNWARE_PCI
  323. tristate "Synopsys DesignWare PCI"
  324. depends on PCI
  325. select I2C_DESIGNWARE_CORE
  326. help
  327. If you say yes to this option, support will be included for the
  328. Synopsys DesignWare I2C adapter. Only master mode is supported.
  329. This driver can also be built as a module. If so, the module
  330. will be called i2c-designware-pci.
  331. config I2C_EG20T
  332. tristate "Intel EG20T PCH/LAPIS Semicon IOH(ML7213/ML7223/ML7831) I2C"
  333. depends on PCI
  334. help
  335. This driver is for PCH(Platform controller Hub) I2C of EG20T which
  336. is an IOH(Input/Output Hub) for x86 embedded processor.
  337. This driver can access PCH I2C bus device.
  338. This driver also can be used for LAPIS Semiconductor IOH(Input/
  339. Output Hub), ML7213, ML7223 and ML7831.
  340. ML7213 IOH is for IVI(In-Vehicle Infotainment) use, ML7223 IOH is
  341. for MP(Media Phone) use and ML7831 IOH is for general purpose use.
  342. ML7213/ML7223/ML7831 is companion chip for Intel Atom E6xx series.
  343. ML7213/ML7223/ML7831 is completely compatible for Intel EG20T PCH.
  344. config I2C_GPIO
  345. tristate "GPIO-based bitbanging I2C"
  346. depends on GENERIC_GPIO
  347. select I2C_ALGOBIT
  348. help
  349. This is a very simple bitbanging I2C driver utilizing the
  350. arch-neutral GPIO API to control the SCL and SDA lines.
  351. config I2C_HIGHLANDER
  352. tristate "Highlander FPGA SMBus interface"
  353. depends on SH_HIGHLANDER
  354. help
  355. If you say yes to this option, support will be included for
  356. the SMBus interface located in the FPGA on various Highlander
  357. boards, particularly the R0P7780LC0011RL and R0P7785LC0011RL
  358. FPGAs. This is wholly unrelated to the SoC I2C.
  359. This driver can also be built as a module. If so, the module
  360. will be called i2c-highlander.
  361. config I2C_IBM_IIC
  362. tristate "IBM PPC 4xx on-chip I2C interface"
  363. depends on 4xx
  364. help
  365. Say Y here if you want to use IIC peripheral found on
  366. embedded IBM PPC 4xx based systems.
  367. This driver can also be built as a module. If so, the module
  368. will be called i2c-ibm_iic.
  369. config I2C_IMX
  370. tristate "IMX I2C interface"
  371. depends on ARCH_MXC
  372. help
  373. Say Y here if you want to use the IIC bus controller on
  374. the Freescale i.MX/MXC processors.
  375. This driver can also be built as a module. If so, the module
  376. will be called i2c-imx.
  377. config I2C_INTEL_MID
  378. tristate "Intel Moorestown/Medfield Platform I2C controller"
  379. depends on PCI
  380. help
  381. Say Y here if you have an Intel Moorestown/Medfield platform I2C
  382. controller.
  383. This support is also available as a module. If so, the module
  384. will be called i2c-intel-mid.
  385. config I2C_IOP3XX
  386. tristate "Intel IOPx3xx and IXP4xx on-chip I2C interface"
  387. depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IXP4XX || ARCH_IOP13XX
  388. help
  389. Say Y here if you want to use the IIC bus controller on
  390. the Intel IOPx3xx I/O Processors or IXP4xx Network Processors.
  391. This driver can also be built as a module. If so, the module
  392. will be called i2c-iop3xx.
  393. config I2C_MPC
  394. tristate "MPC107/824x/85xx/512x/52xx/83xx/86xx"
  395. depends on PPC
  396. help
  397. If you say yes to this option, support will be included for the
  398. built-in I2C interface on the MPC107, Tsi107, MPC512x, MPC52xx,
  399. MPC8240, MPC8245, MPC83xx, MPC85xx and MPC8641 family processors.
  400. This driver can also be built as a module. If so, the module
  401. will be called i2c-mpc.
  402. config I2C_MV64XXX
  403. tristate "Marvell mv64xxx I2C Controller"
  404. depends on (MV64X60 || PLAT_ORION)
  405. help
  406. If you say yes to this option, support will be included for the
  407. built-in I2C interface on the Marvell 64xxx line of host bridges.
  408. This driver can also be built as a module. If so, the module
  409. will be called i2c-mv64xxx.
  410. config I2C_MXS
  411. tristate "Freescale i.MX28 I2C interface"
  412. depends on SOC_IMX28
  413. select STMP_DEVICE
  414. help
  415. Say Y here if you want to use the I2C bus controller on
  416. the Freescale i.MX28 processors.
  417. This driver can also be built as a module. If so, the module
  418. will be called i2c-mxs.
  419. config I2C_NOMADIK
  420. tristate "ST-Ericsson Nomadik/Ux500 I2C Controller"
  421. depends on ARM_AMBA
  422. help
  423. If you say yes to this option, support will be included for the
  424. I2C interface from ST-Ericsson's Nomadik and Ux500 architectures,
  425. as well as the STA2X11 PCIe I/O HUB.
  426. config I2C_NUC900
  427. tristate "NUC900 I2C Driver"
  428. depends on ARCH_W90X900
  429. help
  430. Say Y here to include support for I2C controller in the
  431. Winbond/Nuvoton NUC900 based System-on-Chip devices.
  432. config I2C_OCORES
  433. tristate "OpenCores I2C Controller"
  434. help
  435. If you say yes to this option, support will be included for the
  436. OpenCores I2C controller. For details see
  437. http://www.opencores.org/projects.cgi/web/i2c/overview
  438. This driver can also be built as a module. If so, the module
  439. will be called i2c-ocores.
  440. config I2C_OMAP
  441. tristate "OMAP I2C adapter"
  442. depends on ARCH_OMAP
  443. default y if MACH_OMAP_H3 || MACH_OMAP_OSK
  444. help
  445. If you say yes to this option, support will be included for the
  446. I2C interface on the Texas Instruments OMAP1/2 family of processors.
  447. Like OMAP1510/1610/1710/5912 and OMAP242x.
  448. For details see http://www.ti.com/omap.
  449. config I2C_PASEMI
  450. tristate "PA Semi SMBus interface"
  451. depends on PPC_PASEMI && PCI
  452. help
  453. Supports the PA Semi PWRficient on-chip SMBus interfaces.
  454. config I2C_PCA_PLATFORM
  455. tristate "PCA9564/PCA9665 as platform device"
  456. select I2C_ALGOPCA
  457. default n
  458. help
  459. This driver supports a memory mapped Philips PCA9564/PCA9665
  460. parallel bus to I2C bus controller.
  461. This driver can also be built as a module. If so, the module
  462. will be called i2c-pca-platform.
  463. config I2C_PMCMSP
  464. tristate "PMC MSP I2C TWI Controller"
  465. depends on PMC_MSP
  466. help
  467. This driver supports the PMC TWI controller on MSP devices.
  468. This driver can also be built as module. If so, the module
  469. will be called i2c-pmcmsp.
  470. config I2C_PNX
  471. tristate "I2C bus support for Philips PNX and NXP LPC targets"
  472. depends on ARCH_LPC32XX
  473. help
  474. This driver supports the Philips IP3204 I2C IP block master and/or
  475. slave controller
  476. This driver can also be built as a module. If so, the module
  477. will be called i2c-pnx.
  478. config I2C_PUV3
  479. tristate "PKUnity v3 I2C bus support"
  480. depends on UNICORE32 && ARCH_PUV3
  481. select I2C_ALGOBIT
  482. help
  483. This driver supports the I2C IP inside the PKUnity-v3 SoC.
  484. This I2C bus controller is under AMBA/AXI bus.
  485. This driver can also be built as a module. If so, the module
  486. will be called i2c-puv3.
  487. config I2C_PXA
  488. tristate "Intel PXA2XX I2C adapter"
  489. depends on ARCH_PXA || ARCH_MMP || (X86_32 && PCI && OF)
  490. help
  491. If you have devices in the PXA I2C bus, say yes to this option.
  492. This driver can also be built as a module. If so, the module
  493. will be called i2c-pxa.
  494. config I2C_PXA_PCI
  495. def_bool I2C_PXA && X86_32 && PCI && OF
  496. config I2C_PXA_SLAVE
  497. bool "Intel PXA2XX I2C Slave comms support"
  498. depends on I2C_PXA && !X86_32
  499. help
  500. Support I2C slave mode communications on the PXA I2C bus. This
  501. is necessary for systems where the PXA may be a target on the
  502. I2C bus.
  503. config HAVE_S3C2410_I2C
  504. bool
  505. help
  506. This will include I2C support for Samsung SoCs. If you want to
  507. include I2C support for any machine, kindly select this in the
  508. respective Kconfig file.
  509. config I2C_S3C2410
  510. tristate "S3C2410 I2C Driver"
  511. depends on HAVE_S3C2410_I2C
  512. help
  513. Say Y here to include support for I2C controller in the
  514. Samsung SoCs.
  515. config I2C_S6000
  516. tristate "S6000 I2C support"
  517. depends on XTENSA_VARIANT_S6000
  518. help
  519. This driver supports the on chip I2C device on the
  520. S6000 xtensa processor family.
  521. To compile this driver as a module, choose M here. The module
  522. will be called i2c-s6000.
  523. config I2C_SH7760
  524. tristate "Renesas SH7760 I2C Controller"
  525. depends on CPU_SUBTYPE_SH7760
  526. help
  527. This driver supports the 2 I2C interfaces on the Renesas SH7760.
  528. This driver can also be built as a module. If so, the module
  529. will be called i2c-sh7760.
  530. config I2C_SH_MOBILE
  531. tristate "SuperH Mobile I2C Controller"
  532. depends on SUPERH || ARCH_SHMOBILE
  533. help
  534. If you say yes to this option, support will be included for the
  535. built-in I2C interface on the Renesas SH-Mobile processor.
  536. This driver can also be built as a module. If so, the module
  537. will be called i2c-sh_mobile.
  538. config I2C_SIMTEC
  539. tristate "Simtec Generic I2C interface"
  540. select I2C_ALGOBIT
  541. help
  542. If you say yes to this option, support will be included for
  543. the Simtec Generic I2C interface. This driver is for the
  544. simple I2C bus used on newer Simtec products for general
  545. I2C, such as DDC on the Simtec BBD2016A.
  546. This driver can also be built as a module. If so, the module
  547. will be called i2c-simtec.
  548. config I2C_SIRF
  549. tristate "CSR SiRFprimaII I2C interface"
  550. depends on ARCH_PRIMA2
  551. help
  552. If you say yes to this option, support will be included for the
  553. CSR SiRFprimaII I2C interface.
  554. This driver can also be built as a module. If so, the module
  555. will be called i2c-sirf.
  556. config I2C_STU300
  557. tristate "ST Microelectronics DDC I2C interface"
  558. depends on MACH_U300
  559. default y if MACH_U300
  560. help
  561. If you say yes to this option, support will be included for the
  562. I2C interface from ST Microelectronics simply called "DDC I2C"
  563. supporting both I2C and DDC, used in e.g. the U300 series
  564. mobile platforms.
  565. This driver can also be built as a module. If so, the module
  566. will be called i2c-stu300.
  567. config I2C_TEGRA
  568. tristate "NVIDIA Tegra internal I2C controller"
  569. depends on ARCH_TEGRA
  570. help
  571. If you say yes to this option, support will be included for the
  572. I2C controller embedded in NVIDIA Tegra SOCs
  573. config I2C_VERSATILE
  574. tristate "ARM Versatile/Realview I2C bus support"
  575. depends on ARCH_VERSATILE || ARCH_REALVIEW || ARCH_VEXPRESS
  576. select I2C_ALGOBIT
  577. help
  578. Say yes if you want to support the I2C serial bus on ARMs Versatile
  579. range of platforms.
  580. This driver can also be built as a module. If so, the module
  581. will be called i2c-versatile.
  582. config I2C_OCTEON
  583. tristate "Cavium OCTEON I2C bus support"
  584. depends on CPU_CAVIUM_OCTEON
  585. help
  586. Say yes if you want to support the I2C serial bus on Cavium
  587. OCTEON SOC.
  588. This driver can also be built as a module. If so, the module
  589. will be called i2c-octeon.
  590. config I2C_XILINX
  591. tristate "Xilinx I2C Controller"
  592. depends on HAS_IOMEM
  593. help
  594. If you say yes to this option, support will be included for the
  595. Xilinx I2C controller.
  596. This driver can also be built as a module. If so, the module
  597. will be called xilinx_i2c.
  598. config I2C_XLR
  599. tristate "XLR I2C support"
  600. depends on CPU_XLR
  601. help
  602. This driver enables support for the on-chip I2C interface of
  603. the Netlogic XLR/XLS MIPS processors.
  604. This driver can also be built as a module. If so, the module
  605. will be called i2c-xlr.
  606. config I2C_RCAR
  607. tristate "Renesas R-Car I2C Controller"
  608. depends on ARCH_SHMOBILE && I2C
  609. help
  610. If you say yes to this option, support will be included for the
  611. R-Car I2C controller.
  612. This driver can also be built as a module. If so, the module
  613. will be called i2c-rcar.
  614. comment "External I2C/SMBus adapter drivers"
  615. config I2C_DIOLAN_U2C
  616. tristate "Diolan U2C-12 USB adapter"
  617. depends on USB
  618. help
  619. If you say yes to this option, support will be included for Diolan
  620. U2C-12, a USB to I2C interface.
  621. This driver can also be built as a module. If so, the module
  622. will be called i2c-diolan-u2c.
  623. config I2C_PARPORT
  624. tristate "Parallel port adapter"
  625. depends on PARPORT
  626. select I2C_ALGOBIT
  627. select I2C_SMBUS
  628. help
  629. This supports parallel port I2C adapters such as the ones made by
  630. Philips or Velleman, Analog Devices evaluation boards, and more.
  631. Basically any adapter using the parallel port as an I2C bus with
  632. no extra chipset is supported by this driver, or could be.
  633. This driver is a replacement for (and was inspired by) an older
  634. driver named i2c-philips-par. The new driver supports more devices,
  635. and makes it easier to add support for new devices.
  636. An adapter type parameter is now mandatory. Please read the file
  637. Documentation/i2c/busses/i2c-parport for details.
  638. Another driver exists, named i2c-parport-light, which doesn't depend
  639. on the parport driver. This is meant for embedded systems. Don't say
  640. Y here if you intend to say Y or M there.
  641. This support is also available as a module. If so, the module
  642. will be called i2c-parport.
  643. config I2C_PARPORT_LIGHT
  644. tristate "Parallel port adapter (light)"
  645. select I2C_ALGOBIT
  646. select I2C_SMBUS
  647. help
  648. This supports parallel port I2C adapters such as the ones made by
  649. Philips or Velleman, Analog Devices evaluation boards, and more.
  650. Basically any adapter using the parallel port as an I2C bus with
  651. no extra chipset is supported by this driver, or could be.
  652. This driver is a light version of i2c-parport. It doesn't depend
  653. on the parport driver, and uses direct I/O access instead. This
  654. might be preferred on embedded systems where wasting memory for
  655. the clean but heavy parport handling is not an option. The
  656. drawback is a reduced portability and the impossibility to
  657. daisy-chain other parallel port devices.
  658. Don't say Y here if you said Y or M to i2c-parport. Saying M to
  659. both is possible but both modules should not be loaded at the same
  660. time.
  661. This support is also available as a module. If so, the module
  662. will be called i2c-parport-light.
  663. config I2C_TAOS_EVM
  664. tristate "TAOS evaluation module"
  665. depends on TTY
  666. select SERIO
  667. select SERIO_SERPORT
  668. default n
  669. help
  670. This supports TAOS evaluation modules on serial port. In order to
  671. use this driver, you will need the inputattach tool, which is part
  672. of the input-utils package.
  673. If unsure, say N.
  674. This support is also available as a module. If so, the module
  675. will be called i2c-taos-evm.
  676. config I2C_TINY_USB
  677. tristate "Tiny-USB adapter"
  678. depends on USB
  679. help
  680. If you say yes to this option, support will be included for the
  681. i2c-tiny-usb, a simple do-it-yourself USB to I2C interface. See
  682. http://www.harbaum.org/till/i2c_tiny_usb for hardware details.
  683. This driver can also be built as a module. If so, the module
  684. will be called i2c-tiny-usb.
  685. config I2C_VIPERBOARD
  686. tristate "Viperboard I2C master support"
  687. depends on MFD_VIPERBOARD && USB
  688. help
  689. Say yes here to access the I2C part of the Nano River
  690. Technologies Viperboard as I2C master.
  691. See viperboard API specification and Nano
  692. River Tech's viperboard.h for detailed meaning
  693. of the module parameters.
  694. comment "Other I2C/SMBus bus drivers"
  695. config I2C_ACORN
  696. tristate "Acorn IOC/IOMD I2C bus support"
  697. depends on ARCH_ACORN
  698. default y
  699. select I2C_ALGOBIT
  700. help
  701. Say yes if you want to support the I2C bus on Acorn platforms.
  702. If you don't know, say Y.
  703. config I2C_ELEKTOR
  704. tristate "Elektor ISA card"
  705. depends on ISA && HAS_IOPORT && BROKEN_ON_SMP
  706. select I2C_ALGOPCF
  707. help
  708. This supports the PCF8584 ISA bus I2C adapter. Say Y if you own
  709. such an adapter.
  710. This support is also available as a module. If so, the module
  711. will be called i2c-elektor.
  712. config I2C_PCA_ISA
  713. tristate "PCA9564/PCA9665 on an ISA bus"
  714. depends on ISA
  715. select I2C_ALGOPCA
  716. default n
  717. help
  718. This driver supports ISA boards using the Philips PCA9564/PCA9665
  719. parallel bus to I2C bus controller.
  720. This driver can also be built as a module. If so, the module
  721. will be called i2c-pca-isa.
  722. This device is almost undetectable and using this driver on a
  723. system which doesn't have this device will result in long
  724. delays when I2C/SMBus chip drivers are loaded (e.g. at boot
  725. time). If unsure, say N.
  726. config I2C_SIBYTE
  727. tristate "SiByte SMBus interface"
  728. depends on SIBYTE_SB1xxx_SOC
  729. help
  730. Supports the SiByte SOC on-chip I2C interfaces (2 channels).
  731. config SCx200_I2C
  732. tristate "NatSemi SCx200 I2C using GPIO pins (DEPRECATED)"
  733. depends on SCx200_GPIO
  734. select I2C_ALGOBIT
  735. help
  736. Enable the use of two GPIO pins of a SCx200 processor as an I2C bus.
  737. If you don't know what to do here, say N.
  738. This support is also available as a module. If so, the module
  739. will be called scx200_i2c.
  740. This driver is deprecated and will be dropped soon. Use i2c-gpio
  741. (or scx200_acb) instead.
  742. config SCx200_I2C_SCL
  743. int "GPIO pin used for SCL"
  744. depends on SCx200_I2C
  745. default "12"
  746. help
  747. Enter the GPIO pin number used for the SCL signal. This value can
  748. also be specified with a module parameter.
  749. config SCx200_I2C_SDA
  750. int "GPIO pin used for SDA"
  751. depends on SCx200_I2C
  752. default "13"
  753. help
  754. Enter the GPIO pin number used for the SSA signal. This value can
  755. also be specified with a module parameter.
  756. config SCx200_ACB
  757. tristate "Geode ACCESS.bus support"
  758. depends on X86_32 && PCI
  759. help
  760. Enable the use of the ACCESS.bus controllers on the Geode SCx200 and
  761. SC1100 processors and the CS5535 and CS5536 Geode companion devices.
  762. If you don't know what to do here, say N.
  763. This support is also available as a module. If so, the module
  764. will be called scx200_acb.
  765. endmenu