Kconfig 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056
  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_HIX5HD2
  66. tristate "Hix5hd2 high-speed I2C driver"
  67. depends on ARCH_HIX5HD2
  68. help
  69. Say Y here to include support for high-speed I2C controller in the
  70. Hisilicon based hix5hd2 SoCs.
  71. This driver can also be built as a module. If so, the module
  72. will be called i2c-hix5hd2.
  73. config I2C_I801
  74. tristate "Intel 82801 (ICH/PCH)"
  75. depends on PCI
  76. select CHECK_SIGNATURE if X86 && DMI
  77. help
  78. If you say yes to this option, support will be included for the Intel
  79. 801 family of mainboard I2C interfaces. Specifically, the following
  80. versions of the chipset are supported:
  81. 82801AA
  82. 82801AB
  83. 82801BA
  84. 82801CA/CAM
  85. 82801DB
  86. 82801EB/ER (ICH5/ICH5R)
  87. 6300ESB
  88. ICH6
  89. ICH7
  90. ESB2
  91. ICH8
  92. ICH9
  93. EP80579 (Tolapai)
  94. ICH10
  95. 5/3400 Series (PCH)
  96. 6 Series (PCH)
  97. Patsburg (PCH)
  98. DH89xxCC (PCH)
  99. Panther Point (PCH)
  100. Lynx Point (PCH)
  101. Lynx Point-LP (PCH)
  102. Avoton (SOC)
  103. Wellsburg (PCH)
  104. Coleto Creek (PCH)
  105. Wildcat Point (PCH)
  106. Wildcat Point-LP (PCH)
  107. BayTrail (SOC)
  108. Sunrise Point-H (PCH)
  109. This driver can also be built as a module. If so, the module
  110. will be called i2c-i801.
  111. config I2C_ISCH
  112. tristate "Intel SCH SMBus 1.0"
  113. depends on PCI
  114. select LPC_SCH
  115. help
  116. Say Y here if you want to use SMBus controller on the Intel SCH
  117. based systems.
  118. This driver can also be built as a module. If so, the module
  119. will be called i2c-isch.
  120. config I2C_ISMT
  121. tristate "Intel iSMT SMBus Controller"
  122. depends on PCI && X86
  123. help
  124. If you say yes to this option, support will be included for the Intel
  125. iSMT SMBus host controller interface.
  126. This driver can also be built as a module. If so, the module will be
  127. called i2c-ismt.
  128. config I2C_PIIX4
  129. tristate "Intel PIIX4 and compatible (ATI/AMD/Serverworks/Broadcom/SMSC)"
  130. depends on PCI
  131. help
  132. If you say yes to this option, support will be included for the Intel
  133. PIIX4 family of mainboard I2C interfaces. Specifically, the following
  134. versions of the chipset are supported (note that Serverworks is part
  135. of Broadcom):
  136. Intel PIIX4
  137. Intel 440MX
  138. ATI IXP200
  139. ATI IXP300
  140. ATI IXP400
  141. ATI SB600
  142. ATI SB700/SP5100
  143. ATI SB800
  144. AMD Hudson-2
  145. AMD ML
  146. AMD CZ
  147. Serverworks OSB4
  148. Serverworks CSB5
  149. Serverworks CSB6
  150. Serverworks HT-1000
  151. Serverworks HT-1100
  152. SMSC Victory66
  153. Some AMD chipsets contain two PIIX4-compatible SMBus
  154. controllers. This driver will attempt to use both controllers
  155. on the SB700/SP5100, if they have been initialized by the BIOS.
  156. This driver can also be built as a module. If so, the module
  157. will be called i2c-piix4.
  158. config I2C_NFORCE2
  159. tristate "Nvidia nForce2, nForce3 and nForce4"
  160. depends on PCI
  161. help
  162. If you say yes to this option, support will be included for the Nvidia
  163. nForce2, nForce3 and nForce4 families of mainboard I2C interfaces.
  164. This driver can also be built as a module. If so, the module
  165. will be called i2c-nforce2.
  166. config I2C_NFORCE2_S4985
  167. tristate "SMBus multiplexing on the Tyan S4985"
  168. depends on I2C_NFORCE2 && X86
  169. help
  170. Enabling this option will add specific SMBus support for the Tyan
  171. S4985 motherboard. On this 4-CPU board, the SMBus is multiplexed
  172. over 4 different channels, where the various memory module EEPROMs
  173. live. Saying yes here will give you access to these in addition
  174. to the trunk.
  175. This driver can also be built as a module. If so, the module
  176. will be called i2c-nforce2-s4985.
  177. config I2C_SIS5595
  178. tristate "SiS 5595"
  179. depends on PCI
  180. help
  181. If you say yes to this option, support will be included for the
  182. SiS5595 SMBus (a subset of I2C) interface.
  183. This driver can also be built as a module. If so, the module
  184. will be called i2c-sis5595.
  185. config I2C_SIS630
  186. tristate "SiS 630/730/964"
  187. depends on PCI
  188. help
  189. If you say yes to this option, support will be included for the
  190. SiS630, SiS730 and SiS964 SMBus (a subset of I2C) interface.
  191. This driver can also be built as a module. If so, the module
  192. will be called i2c-sis630.
  193. config I2C_SIS96X
  194. tristate "SiS 96x"
  195. depends on PCI
  196. help
  197. If you say yes to this option, support will be included for the SiS
  198. 96x SMBus (a subset of I2C) interfaces. Specifically, the following
  199. chipsets are supported:
  200. 645/961
  201. 645DX/961
  202. 645DX/962
  203. 648/961
  204. 650/961
  205. 735
  206. 745
  207. This driver can also be built as a module. If so, the module
  208. will be called i2c-sis96x.
  209. config I2C_VIA
  210. tristate "VIA VT82C586B"
  211. depends on PCI
  212. select I2C_ALGOBIT
  213. help
  214. If you say yes to this option, support will be included for the VIA
  215. 82C586B I2C interface
  216. This driver can also be built as a module. If so, the module
  217. will be called i2c-via.
  218. config I2C_VIAPRO
  219. tristate "VIA VT82C596/82C686/82xx and CX700/VX8xx/VX900"
  220. depends on PCI
  221. help
  222. If you say yes to this option, support will be included for the VIA
  223. VT82C596 and later SMBus interface. Specifically, the following
  224. chipsets are supported:
  225. VT82C596A/B
  226. VT82C686A/B
  227. VT8231
  228. VT8233/A
  229. VT8235
  230. VT8237R/A/S
  231. VT8251
  232. CX700
  233. VX800/VX820
  234. VX855/VX875
  235. VX900
  236. This driver can also be built as a module. If so, the module
  237. will be called i2c-viapro.
  238. if ACPI
  239. comment "ACPI drivers"
  240. config I2C_SCMI
  241. tristate "SMBus Control Method Interface"
  242. help
  243. This driver supports the SMBus Control Method Interface. It needs the
  244. BIOS to declare ACPI control methods as described in the SMBus Control
  245. Method Interface specification.
  246. To compile this driver as a module, choose M here:
  247. the module will be called i2c-scmi.
  248. endif # ACPI
  249. comment "Mac SMBus host controller drivers"
  250. depends on PPC_CHRP || PPC_PMAC
  251. config I2C_HYDRA
  252. tristate "CHRP Apple Hydra Mac I/O I2C interface"
  253. depends on PCI && PPC_CHRP
  254. select I2C_ALGOBIT
  255. help
  256. This supports the use of the I2C interface in the Apple Hydra Mac
  257. I/O chip on some CHRP machines (e.g. the LongTrail). Say Y if you
  258. have such a machine.
  259. This support is also available as a module. If so, the module
  260. will be called i2c-hydra.
  261. config I2C_POWERMAC
  262. tristate "Powermac I2C interface"
  263. depends on PPC_PMAC
  264. default y
  265. help
  266. This exposes the various PowerMac i2c interfaces to the linux i2c
  267. layer and to userland. It is used by various drivers on the PowerMac
  268. platform, and should generally be enabled.
  269. This support is also available as a module. If so, the module
  270. will be called i2c-powermac.
  271. comment "I2C system bus drivers (mostly embedded / system-on-chip)"
  272. config I2C_AT91
  273. tristate "Atmel AT91 I2C Two-Wire interface (TWI)"
  274. depends on ARCH_AT91
  275. help
  276. This supports the use of the I2C interface on Atmel AT91
  277. processors.
  278. A serious problem is that there is no documented way to issue
  279. repeated START conditions for more than two messages, as needed
  280. to support combined I2C messages. Use the i2c-gpio driver
  281. unless your system can cope with this limitation.
  282. Caution! at91rm9200, at91sam9261, at91sam9260, at91sam9263 devices
  283. don't have clock stretching in transmission mode. For that reason,
  284. you can encounter underrun issues causing premature stop sendings if
  285. the latency to fill the transmission register is too long. If you
  286. are facing this situation, use the i2c-gpio driver.
  287. config I2C_AU1550
  288. tristate "Au1550/Au1200/Au1300 SMBus interface"
  289. depends on MIPS_ALCHEMY
  290. help
  291. If you say yes to this option, support will be included for the
  292. Au1550/Au1200/Au1300 SMBus interface.
  293. This driver can also be built as a module. If so, the module
  294. will be called i2c-au1550.
  295. config I2C_AXXIA
  296. tristate "Axxia I2C controller"
  297. depends on ARCH_AXXIA || COMPILE_TEST
  298. default ARCH_AXXIA
  299. help
  300. Say yes if you want to support the I2C bus on Axxia platforms.
  301. Please note that this controller is limited to transfers of maximum
  302. 255 bytes in length. Any attempt to to a larger transfer will return
  303. an error.
  304. config I2C_BCM2835
  305. tristate "Broadcom BCM2835 I2C controller"
  306. depends on ARCH_BCM2835
  307. help
  308. If you say yes to this option, support will be included for the
  309. BCM2835 I2C controller.
  310. If you don't know what to do here, say N.
  311. This support is also available as a module. If so, the module
  312. will be called i2c-bcm2835.
  313. config I2C_BCM_KONA
  314. tristate "BCM Kona I2C adapter"
  315. depends on ARCH_BCM_MOBILE
  316. default y
  317. help
  318. If you say yes to this option, support will be included for the
  319. I2C interface on the Broadcom Kona family of processors.
  320. If you do not need KONA I2C interface, say N.
  321. config I2C_BLACKFIN_TWI
  322. tristate "Blackfin TWI I2C support"
  323. depends on BLACKFIN
  324. depends on !BF561 && !BF531 && !BF532 && !BF533
  325. help
  326. This is the I2C bus driver for Blackfin on-chip TWI interface.
  327. This driver can also be built as a module. If so, the module
  328. will be called i2c-bfin-twi.
  329. config I2C_BLACKFIN_TWI_CLK_KHZ
  330. int "Blackfin TWI I2C clock (kHz)"
  331. depends on I2C_BLACKFIN_TWI
  332. range 21 400
  333. default 50
  334. help
  335. The unit of the TWI clock is kHz.
  336. config I2C_CADENCE
  337. tristate "Cadence I2C Controller"
  338. depends on ARCH_ZYNQ
  339. help
  340. Say yes here to select Cadence I2C Host Controller. This controller is
  341. e.g. used by Xilinx Zynq.
  342. config I2C_CBUS_GPIO
  343. tristate "CBUS I2C driver"
  344. depends on GPIOLIB
  345. help
  346. Support for CBUS access using I2C API. Mostly relevant for Nokia
  347. Internet Tablets (770, N800 and N810).
  348. This driver can also be built as a module. If so, the module
  349. will be called i2c-cbus-gpio.
  350. config I2C_CPM
  351. tristate "Freescale CPM1 or CPM2 (MPC8xx/826x)"
  352. depends on CPM1 || CPM2
  353. help
  354. This supports the use of the I2C interface on Freescale
  355. processors with CPM1 or CPM2.
  356. This driver can also be built as a module. If so, the module
  357. will be called i2c-cpm.
  358. config I2C_DAVINCI
  359. tristate "DaVinci I2C driver"
  360. depends on ARCH_DAVINCI || ARCH_KEYSTONE
  361. help
  362. Support for TI DaVinci I2C controller driver.
  363. This driver can also be built as a module. If so, the module
  364. will be called i2c-davinci.
  365. Please note that this driver might be needed to bring up other
  366. devices such as DaVinci NIC.
  367. For details please see http://www.ti.com/davinci
  368. config I2C_DESIGNWARE_CORE
  369. tristate
  370. config I2C_DESIGNWARE_PLATFORM
  371. tristate "Synopsys DesignWare Platform"
  372. select I2C_DESIGNWARE_CORE
  373. depends on (ACPI && COMMON_CLK) || !ACPI
  374. help
  375. If you say yes to this option, support will be included for the
  376. Synopsys DesignWare I2C adapter. Only master mode is supported.
  377. This driver can also be built as a module. If so, the module
  378. will be called i2c-designware-platform.
  379. config I2C_DESIGNWARE_PCI
  380. tristate "Synopsys DesignWare PCI"
  381. depends on PCI
  382. select I2C_DESIGNWARE_CORE
  383. help
  384. If you say yes to this option, support will be included for the
  385. Synopsys DesignWare I2C adapter. Only master mode is supported.
  386. This driver can also be built as a module. If so, the module
  387. will be called i2c-designware-pci.
  388. config I2C_EFM32
  389. tristate "EFM32 I2C controller"
  390. depends on ARCH_EFM32 || COMPILE_TEST
  391. help
  392. This driver supports the i2c block found in Energy Micro's EFM32
  393. SoCs.
  394. config I2C_EG20T
  395. tristate "Intel EG20T PCH/LAPIS Semicon IOH(ML7213/ML7223/ML7831) I2C"
  396. depends on PCI && (X86_32 || COMPILE_TEST)
  397. help
  398. This driver is for PCH(Platform controller Hub) I2C of EG20T which
  399. is an IOH(Input/Output Hub) for x86 embedded processor.
  400. This driver can access PCH I2C bus device.
  401. This driver also can be used for LAPIS Semiconductor IOH(Input/
  402. Output Hub), ML7213, ML7223 and ML7831.
  403. ML7213 IOH is for IVI(In-Vehicle Infotainment) use, ML7223 IOH is
  404. for MP(Media Phone) use and ML7831 IOH is for general purpose use.
  405. ML7213/ML7223/ML7831 is companion chip for Intel Atom E6xx series.
  406. ML7213/ML7223/ML7831 is completely compatible for Intel EG20T PCH.
  407. config I2C_EXYNOS5
  408. tristate "Exynos5 high-speed I2C driver"
  409. depends on ARCH_EXYNOS && OF
  410. default y
  411. help
  412. High-speed I2C controller on Exynos5 based Samsung SoCs.
  413. config I2C_GPIO
  414. tristate "GPIO-based bitbanging I2C"
  415. depends on GPIOLIB
  416. select I2C_ALGOBIT
  417. help
  418. This is a very simple bitbanging I2C driver utilizing the
  419. arch-neutral GPIO API to control the SCL and SDA lines.
  420. config I2C_HIGHLANDER
  421. tristate "Highlander FPGA SMBus interface"
  422. depends on SH_HIGHLANDER
  423. help
  424. If you say yes to this option, support will be included for
  425. the SMBus interface located in the FPGA on various Highlander
  426. boards, particularly the R0P7780LC0011RL and R0P7785LC0011RL
  427. FPGAs. This is wholly unrelated to the SoC I2C.
  428. This driver can also be built as a module. If so, the module
  429. will be called i2c-highlander.
  430. config I2C_IBM_IIC
  431. tristate "IBM PPC 4xx on-chip I2C interface"
  432. depends on 4xx
  433. help
  434. Say Y here if you want to use IIC peripheral found on
  435. embedded IBM PPC 4xx based systems.
  436. This driver can also be built as a module. If so, the module
  437. will be called i2c-ibm_iic.
  438. config I2C_IMX
  439. tristate "IMX I2C interface"
  440. depends on ARCH_MXC
  441. help
  442. Say Y here if you want to use the IIC bus controller on
  443. the Freescale i.MX/MXC processors.
  444. This driver can also be built as a module. If so, the module
  445. will be called i2c-imx.
  446. config I2C_IOP3XX
  447. tristate "Intel IOPx3xx and IXP4xx on-chip I2C interface"
  448. depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IXP4XX || ARCH_IOP13XX
  449. help
  450. Say Y here if you want to use the IIC bus controller on
  451. the Intel IOPx3xx I/O Processors or IXP4xx Network Processors.
  452. This driver can also be built as a module. If so, the module
  453. will be called i2c-iop3xx.
  454. config I2C_KEMPLD
  455. tristate "Kontron COM I2C Controller"
  456. depends on MFD_KEMPLD
  457. help
  458. This enables support for the I2C bus interface on some Kontron ETX
  459. and COMexpress (ETXexpress) modules.
  460. This driver can also be built as a module. If so, the module
  461. will be called i2c-kempld.
  462. config I2C_MPC
  463. tristate "MPC107/824x/85xx/512x/52xx/83xx/86xx"
  464. depends on PPC
  465. help
  466. If you say yes to this option, support will be included for the
  467. built-in I2C interface on the MPC107, Tsi107, MPC512x, MPC52xx,
  468. MPC8240, MPC8245, MPC83xx, MPC85xx and MPC8641 family processors.
  469. This driver can also be built as a module. If so, the module
  470. will be called i2c-mpc.
  471. config I2C_MT65XX
  472. tristate "MediaTek I2C adapter"
  473. depends on ARCH_MEDIATEK || COMPILE_TEST
  474. help
  475. This selects the MediaTek(R) Integrated Inter Circuit bus driver
  476. for MT65xx and MT81xx.
  477. If you want to use MediaTek(R) I2C interface, say Y or M here.
  478. If unsure, say N.
  479. config I2C_MV64XXX
  480. tristate "Marvell mv64xxx I2C Controller"
  481. depends on MV64X60 || PLAT_ORION || ARCH_SUNXI
  482. help
  483. If you say yes to this option, support will be included for the
  484. built-in I2C interface on the Marvell 64xxx line of host bridges.
  485. This driver is also used for Allwinner SoCs I2C controllers.
  486. This driver can also be built as a module. If so, the module
  487. will be called i2c-mv64xxx.
  488. config I2C_MXS
  489. tristate "Freescale i.MX28 I2C interface"
  490. depends on SOC_IMX28
  491. select STMP_DEVICE
  492. help
  493. Say Y here if you want to use the I2C bus controller on
  494. the Freescale i.MX28 processors.
  495. This driver can also be built as a module. If so, the module
  496. will be called i2c-mxs.
  497. config I2C_NOMADIK
  498. tristate "ST-Ericsson Nomadik/Ux500 I2C Controller"
  499. depends on ARM_AMBA
  500. help
  501. If you say yes to this option, support will be included for the
  502. I2C interface from ST-Ericsson's Nomadik and Ux500 architectures,
  503. as well as the STA2X11 PCIe I/O HUB.
  504. config I2C_OCORES
  505. tristate "OpenCores I2C Controller"
  506. help
  507. If you say yes to this option, support will be included for the
  508. OpenCores I2C controller. For details see
  509. http://www.opencores.org/projects.cgi/web/i2c/overview
  510. This driver can also be built as a module. If so, the module
  511. will be called i2c-ocores.
  512. config I2C_OMAP
  513. tristate "OMAP I2C adapter"
  514. depends on ARCH_OMAP
  515. default y if MACH_OMAP_H3 || MACH_OMAP_OSK
  516. help
  517. If you say yes to this option, support will be included for the
  518. I2C interface on the Texas Instruments OMAP1/2 family of processors.
  519. Like OMAP1510/1610/1710/5912 and OMAP242x.
  520. For details see http://www.ti.com/omap.
  521. config I2C_PASEMI
  522. tristate "PA Semi SMBus interface"
  523. depends on PPC_PASEMI && PCI
  524. help
  525. Supports the PA Semi PWRficient on-chip SMBus interfaces.
  526. config I2C_PCA_PLATFORM
  527. tristate "PCA9564/PCA9665 as platform device"
  528. select I2C_ALGOPCA
  529. default n
  530. help
  531. This driver supports a memory mapped Philips PCA9564/PCA9665
  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-platform.
  535. config I2C_PMCMSP
  536. tristate "PMC MSP I2C TWI Controller"
  537. depends on PMC_MSP
  538. help
  539. This driver supports the PMC TWI controller on MSP devices.
  540. This driver can also be built as module. If so, the module
  541. will be called i2c-pmcmsp.
  542. config I2C_PNX
  543. tristate "I2C bus support for Philips PNX and NXP LPC targets"
  544. depends on ARCH_LPC32XX
  545. help
  546. This driver supports the Philips IP3204 I2C IP block master and/or
  547. slave controller
  548. This driver can also be built as a module. If so, the module
  549. will be called i2c-pnx.
  550. config I2C_PUV3
  551. tristate "PKUnity v3 I2C bus support"
  552. depends on UNICORE32 && ARCH_PUV3
  553. select I2C_ALGOBIT
  554. help
  555. This driver supports the I2C IP inside the PKUnity-v3 SoC.
  556. This I2C bus controller is under AMBA/AXI bus.
  557. This driver can also be built as a module. If so, the module
  558. will be called i2c-puv3.
  559. config I2C_PXA
  560. tristate "Intel PXA2XX I2C adapter"
  561. depends on ARCH_PXA || ARCH_MMP || (X86_32 && PCI && OF)
  562. help
  563. If you have devices in the PXA I2C bus, say yes to this option.
  564. This driver can also be built as a module. If so, the module
  565. will be called i2c-pxa.
  566. config I2C_PXA_PCI
  567. def_bool I2C_PXA && X86_32 && PCI && OF
  568. config I2C_PXA_SLAVE
  569. bool "Intel PXA2XX I2C Slave comms support"
  570. depends on I2C_PXA && !X86_32
  571. help
  572. Support I2C slave mode communications on the PXA I2C bus. This
  573. is necessary for systems where the PXA may be a target on the
  574. I2C bus.
  575. config I2C_QUP
  576. tristate "Qualcomm QUP based I2C controller"
  577. depends on ARCH_QCOM
  578. help
  579. If you say yes to this option, support will be included for the
  580. built-in I2C interface on the Qualcomm SoCs.
  581. This driver can also be built as a module. If so, the module
  582. will be called i2c-qup.
  583. config I2C_RIIC
  584. tristate "Renesas RIIC adapter"
  585. depends on ARCH_SHMOBILE || COMPILE_TEST
  586. help
  587. If you say yes to this option, support will be included for the
  588. Renesas RIIC I2C interface.
  589. This driver can also be built as a module. If so, the module
  590. will be called i2c-riic.
  591. config I2C_RK3X
  592. tristate "Rockchip RK3xxx I2C adapter"
  593. depends on OF
  594. help
  595. Say Y here to include support for the I2C adapter in Rockchip RK3xxx
  596. SoCs.
  597. This driver can also be built as a module. If so, the module will
  598. be called i2c-rk3x.
  599. config HAVE_S3C2410_I2C
  600. bool
  601. help
  602. This will include I2C support for Samsung SoCs. If you want to
  603. include I2C support for any machine, kindly select this in the
  604. respective Kconfig file.
  605. config I2C_S3C2410
  606. tristate "S3C2410 I2C Driver"
  607. depends on HAVE_S3C2410_I2C
  608. help
  609. Say Y here to include support for I2C controller in the
  610. Samsung SoCs.
  611. config I2C_SH7760
  612. tristate "Renesas SH7760 I2C Controller"
  613. depends on CPU_SUBTYPE_SH7760
  614. help
  615. This driver supports the 2 I2C interfaces on the Renesas SH7760.
  616. This driver can also be built as a module. If so, the module
  617. will be called i2c-sh7760.
  618. config I2C_SH_MOBILE
  619. tristate "SuperH Mobile I2C Controller"
  620. depends on SUPERH || ARCH_SHMOBILE || COMPILE_TEST
  621. help
  622. If you say yes to this option, support will be included for the
  623. built-in I2C interface on the Renesas SH-Mobile processor.
  624. This driver can also be built as a module. If so, the module
  625. will be called i2c-sh_mobile.
  626. config I2C_SIMTEC
  627. tristate "Simtec Generic I2C interface"
  628. select I2C_ALGOBIT
  629. help
  630. If you say yes to this option, support will be included for
  631. the Simtec Generic I2C interface. This driver is for the
  632. simple I2C bus used on newer Simtec products for general
  633. I2C, such as DDC on the Simtec BBD2016A.
  634. This driver can also be built as a module. If so, the module
  635. will be called i2c-simtec.
  636. config I2C_SIRF
  637. tristate "CSR SiRFprimaII I2C interface"
  638. depends on ARCH_SIRF
  639. help
  640. If you say yes to this option, support will be included for the
  641. CSR SiRFprimaII I2C interface.
  642. This driver can also be built as a module. If so, the module
  643. will be called i2c-sirf.
  644. config I2C_ST
  645. tristate "STMicroelectronics SSC I2C support"
  646. depends on ARCH_STI
  647. help
  648. Enable this option to add support for STMicroelectronics SoCs
  649. hardware SSC (Synchronous Serial Controller) as an I2C controller.
  650. This driver can also be built as module. If so, the module
  651. will be called i2c-st.
  652. config I2C_STU300
  653. tristate "ST Microelectronics DDC I2C interface"
  654. depends on MACH_U300
  655. default y if MACH_U300
  656. help
  657. If you say yes to this option, support will be included for the
  658. I2C interface from ST Microelectronics simply called "DDC I2C"
  659. supporting both I2C and DDC, used in e.g. the U300 series
  660. mobile platforms.
  661. This driver can also be built as a module. If so, the module
  662. will be called i2c-stu300.
  663. config I2C_SUN6I_P2WI
  664. tristate "Allwinner sun6i internal P2WI controller"
  665. depends on RESET_CONTROLLER
  666. depends on MACH_SUN6I || COMPILE_TEST
  667. help
  668. If you say yes to this option, support will be included for the
  669. P2WI (Push/Pull 2 Wire Interface) controller embedded in some sunxi
  670. SOCs.
  671. The P2WI looks like an SMBus controller (which supports only byte
  672. accesses), except that it only supports one slave device.
  673. This interface is used to connect to specific PMIC devices (like the
  674. AXP221).
  675. config I2C_TEGRA
  676. tristate "NVIDIA Tegra internal I2C controller"
  677. depends on ARCH_TEGRA
  678. help
  679. If you say yes to this option, support will be included for the
  680. I2C controller embedded in NVIDIA Tegra SOCs
  681. config I2C_VERSATILE
  682. tristate "ARM Versatile/Realview I2C bus support"
  683. depends on ARCH_VERSATILE || ARCH_REALVIEW || ARCH_VEXPRESS
  684. select I2C_ALGOBIT
  685. help
  686. Say yes if you want to support the I2C serial bus on ARMs Versatile
  687. range of platforms.
  688. This driver can also be built as a module. If so, the module
  689. will be called i2c-versatile.
  690. config I2C_WMT
  691. tristate "Wondermedia WM8xxx SoC I2C bus support"
  692. depends on ARCH_VT8500
  693. help
  694. Say yes if you want to support the I2C bus on Wondermedia 8xxx-series
  695. SoCs.
  696. This driver can also be built as a module. If so, the module will be
  697. called i2c-wmt.
  698. config I2C_OCTEON
  699. tristate "Cavium OCTEON I2C bus support"
  700. depends on CAVIUM_OCTEON_SOC
  701. help
  702. Say yes if you want to support the I2C serial bus on Cavium
  703. OCTEON SOC.
  704. This driver can also be built as a module. If so, the module
  705. will be called i2c-octeon.
  706. config I2C_XILINX
  707. tristate "Xilinx I2C Controller"
  708. depends on HAS_IOMEM
  709. help
  710. If you say yes to this option, support will be included for the
  711. Xilinx I2C controller.
  712. This driver can also be built as a module. If so, the module
  713. will be called xilinx_i2c.
  714. config I2C_XLR
  715. tristate "XLR I2C support"
  716. depends on CPU_XLR
  717. help
  718. This driver enables support for the on-chip I2C interface of
  719. the Netlogic XLR/XLS MIPS processors.
  720. This driver can also be built as a module. If so, the module
  721. will be called i2c-xlr.
  722. config I2C_RCAR
  723. tristate "Renesas R-Car I2C Controller"
  724. depends on ARCH_SHMOBILE || COMPILE_TEST
  725. help
  726. If you say yes to this option, support will be included for the
  727. R-Car I2C controller.
  728. This driver can also be built as a module. If so, the module
  729. will be called i2c-rcar.
  730. comment "External I2C/SMBus adapter drivers"
  731. config I2C_DIOLAN_U2C
  732. tristate "Diolan U2C-12 USB adapter"
  733. depends on USB
  734. help
  735. If you say yes to this option, support will be included for Diolan
  736. U2C-12, a USB to I2C interface.
  737. This driver can also be built as a module. If so, the module
  738. will be called i2c-diolan-u2c.
  739. config I2C_PARPORT
  740. tristate "Parallel port adapter"
  741. depends on PARPORT
  742. select I2C_ALGOBIT
  743. select I2C_SMBUS
  744. help
  745. This supports parallel port I2C adapters such as the ones made by
  746. Philips or Velleman, Analog Devices evaluation boards, and more.
  747. Basically any adapter using the parallel port as an I2C bus with
  748. no extra chipset is supported by this driver, or could be.
  749. This driver is a replacement for (and was inspired by) an older
  750. driver named i2c-philips-par. The new driver supports more devices,
  751. and makes it easier to add support for new devices.
  752. An adapter type parameter is now mandatory. Please read the file
  753. Documentation/i2c/busses/i2c-parport for details.
  754. Another driver exists, named i2c-parport-light, which doesn't depend
  755. on the parport driver. This is meant for embedded systems. Don't say
  756. Y here if you intend to say Y or M there.
  757. This support is also available as a module. If so, the module
  758. will be called i2c-parport.
  759. config I2C_PARPORT_LIGHT
  760. tristate "Parallel port adapter (light)"
  761. select I2C_ALGOBIT
  762. select I2C_SMBUS
  763. help
  764. This supports parallel port I2C adapters such as the ones made by
  765. Philips or Velleman, Analog Devices evaluation boards, and more.
  766. Basically any adapter using the parallel port as an I2C bus with
  767. no extra chipset is supported by this driver, or could be.
  768. This driver is a light version of i2c-parport. It doesn't depend
  769. on the parport driver, and uses direct I/O access instead. This
  770. might be preferred on embedded systems where wasting memory for
  771. the clean but heavy parport handling is not an option. The
  772. drawback is a reduced portability and the impossibility to
  773. daisy-chain other parallel port devices.
  774. Don't say Y here if you said Y or M to i2c-parport. Saying M to
  775. both is possible but both modules should not be loaded at the same
  776. time.
  777. This support is also available as a module. If so, the module
  778. will be called i2c-parport-light.
  779. config I2C_ROBOTFUZZ_OSIF
  780. tristate "RobotFuzz Open Source InterFace USB adapter"
  781. depends on USB
  782. help
  783. If you say yes to this option, support will be included for the
  784. RobotFuzz Open Source InterFace USB to I2C interface.
  785. This driver can also be built as a module. If so, the module
  786. will be called i2c-osif.
  787. config I2C_TAOS_EVM
  788. tristate "TAOS evaluation module"
  789. depends on TTY
  790. select SERIO
  791. select SERIO_SERPORT
  792. default n
  793. help
  794. This supports TAOS evaluation modules on serial port. In order to
  795. use this driver, you will need the inputattach tool, which is part
  796. of the input-utils package.
  797. If unsure, say N.
  798. This support is also available as a module. If so, the module
  799. will be called i2c-taos-evm.
  800. config I2C_TINY_USB
  801. tristate "Tiny-USB adapter"
  802. depends on USB
  803. help
  804. If you say yes to this option, support will be included for the
  805. i2c-tiny-usb, a simple do-it-yourself USB to I2C interface. See
  806. http://www.harbaum.org/till/i2c_tiny_usb for hardware details.
  807. This driver can also be built as a module. If so, the module
  808. will be called i2c-tiny-usb.
  809. config I2C_VIPERBOARD
  810. tristate "Viperboard I2C master support"
  811. depends on MFD_VIPERBOARD && USB
  812. help
  813. Say yes here to access the I2C part of the Nano River
  814. Technologies Viperboard as I2C master.
  815. See viperboard API specification and Nano
  816. River Tech's viperboard.h for detailed meaning
  817. of the module parameters.
  818. comment "Other I2C/SMBus bus drivers"
  819. config I2C_ACORN
  820. tristate "Acorn IOC/IOMD I2C bus support"
  821. depends on ARCH_ACORN
  822. default y
  823. select I2C_ALGOBIT
  824. help
  825. Say yes if you want to support the I2C bus on Acorn platforms.
  826. If you don't know, say Y.
  827. config I2C_ELEKTOR
  828. tristate "Elektor ISA card"
  829. depends on ISA && HAS_IOPORT_MAP && BROKEN_ON_SMP
  830. select I2C_ALGOPCF
  831. help
  832. This supports the PCF8584 ISA bus I2C adapter. Say Y if you own
  833. such an adapter.
  834. This support is also available as a module. If so, the module
  835. will be called i2c-elektor.
  836. config I2C_PCA_ISA
  837. tristate "PCA9564/PCA9665 on an ISA bus"
  838. depends on ISA
  839. select I2C_ALGOPCA
  840. default n
  841. help
  842. This driver supports ISA boards using the Philips PCA9564/PCA9665
  843. parallel bus to I2C bus controller.
  844. This driver can also be built as a module. If so, the module
  845. will be called i2c-pca-isa.
  846. This device is almost undetectable and using this driver on a
  847. system which doesn't have this device will result in long
  848. delays when I2C/SMBus chip drivers are loaded (e.g. at boot
  849. time). If unsure, say N.
  850. config I2C_SIBYTE
  851. tristate "SiByte SMBus interface"
  852. depends on SIBYTE_SB1xxx_SOC
  853. help
  854. Supports the SiByte SOC on-chip I2C interfaces (2 channels).
  855. config I2C_CROS_EC_TUNNEL
  856. tristate "ChromeOS EC tunnel I2C bus"
  857. depends on MFD_CROS_EC
  858. help
  859. If you say yes here you get an I2C bus that will tunnel i2c commands
  860. through to the other side of the ChromeOS EC to the i2c bus
  861. connected there. This will work whatever the interface used to
  862. talk to the EC (SPI, I2C or LPC).
  863. config SCx200_ACB
  864. tristate "Geode ACCESS.bus support"
  865. depends on X86_32 && PCI
  866. help
  867. Enable the use of the ACCESS.bus controllers on the Geode SCx200 and
  868. SC1100 processors and the CS5535 and CS5536 Geode companion devices.
  869. If you don't know what to do here, say N.
  870. This support is also available as a module. If so, the module
  871. will be called scx200_acb.
  872. endmenu