diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-21 15:41:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-21 15:41:50 -0500 |
commit | 295324556c427d60b41668ab81a43f604533f456 (patch) | |
tree | a9a9acc5f790ba7093ee61a295bba7ac1f54a298 /drivers/i2c/busses/Kconfig | |
parent | 18a8d49973667aa016e68826eeb374788b7c63b0 (diff) | |
parent | 0d8fb59924cf20e7bef2c41f8d4e87127f573546 (diff) |
Merge branch 'i2c/for-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
Pull i2c updates from Wolfram Sang:
"Summary:
- legacy PM code removed from the core, there were no users anymore
(thanks to Lars-Peter Clausen)
- new driver for Broadcom iProc
- bigger driver updates for designware, rk3x, cadence, ocores
- a bunch of smaller updates and bugfixes"
* 'i2c/for-3.20' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux: (31 commits)
i2c: ocores: rework clk code to handle NULL cookie
i2c: designware-baytrail: another fixup for proper Kconfig dependencies
i2c: fix reference to functionality constants definition
i2c: iproc: Add Broadcom iProc I2C Driver
i2c: designware-pci: update Intel copyright line
i2c: ocores: add common clock support
i2c: hix5hd2: add COMPILE_TEST
i2c: clarify comments about the dev_released completion
i2c: ocores: fix clock-frequency binding usage
i2c: tegra: Maintain CPU endianness
i2c: designware-baytrail: use proper Kconfig dependencies
i2c: designware: Do not calculate SCL timing parameters needlessly
i2c: do not try to load modules for of-registered devices
i2c: designware: Add Intel Baytrail PMIC I2C bus support
i2c: designware: Add i2c bus locking support
of: i2c: Add i2c-mux-idle-disconnect DT property to PCA954x mux driver
i2c: designware: use {readl|writel}_relaxed instead of readl/writel
i2c: designware-pci: no need to provide clk_khz
i2c: designware-pci: remove Moorestown support
i2c: imx: whitespace and checkpatch cleanup
...
Diffstat (limited to 'drivers/i2c/busses/Kconfig')
-rw-r--r-- | drivers/i2c/busses/Kconfig | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index ab838d9e28b6..22da9c2ffa22 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig | |||
@@ -79,7 +79,7 @@ config I2C_AMD8111 | |||
79 | 79 | ||
80 | config I2C_HIX5HD2 | 80 | config I2C_HIX5HD2 |
81 | tristate "Hix5hd2 high-speed I2C driver" | 81 | tristate "Hix5hd2 high-speed I2C driver" |
82 | depends on ARCH_HIX5HD2 | 82 | depends on ARCH_HIX5HD2 || COMPILE_TEST |
83 | help | 83 | help |
84 | Say Y here to include support for high-speed I2C controller in the | 84 | Say Y here to include support for high-speed I2C controller in the |
85 | Hisilicon based hix5hd2 SoCs. | 85 | Hisilicon based hix5hd2 SoCs. |
@@ -372,6 +372,16 @@ config I2C_BCM2835 | |||
372 | This support is also available as a module. If so, the module | 372 | This support is also available as a module. If so, the module |
373 | will be called i2c-bcm2835. | 373 | will be called i2c-bcm2835. |
374 | 374 | ||
375 | config I2C_BCM_IPROC | ||
376 | tristate "Broadcom iProc I2C controller" | ||
377 | depends on ARCH_BCM_IPROC || COMPILE_TEST | ||
378 | default ARCH_BCM_IPROC | ||
379 | help | ||
380 | If you say yes to this option, support will be included for the | ||
381 | Broadcom iProc I2C controller. | ||
382 | |||
383 | If you don't know what to do here, say N. | ||
384 | |||
375 | config I2C_BCM_KONA | 385 | config I2C_BCM_KONA |
376 | tristate "BCM Kona I2C adapter" | 386 | tristate "BCM Kona I2C adapter" |
377 | depends on ARCH_BCM_MOBILE | 387 | depends on ARCH_BCM_MOBILE |
@@ -465,6 +475,16 @@ config I2C_DESIGNWARE_PCI | |||
465 | This driver can also be built as a module. If so, the module | 475 | This driver can also be built as a module. If so, the module |
466 | will be called i2c-designware-pci. | 476 | will be called i2c-designware-pci. |
467 | 477 | ||
478 | config I2C_DESIGNWARE_BAYTRAIL | ||
479 | bool "Intel Baytrail I2C semaphore support" | ||
480 | depends on I2C_DESIGNWARE_PLATFORM && IOSF_MBI=y && ACPI | ||
481 | help | ||
482 | This driver enables managed host access to the PMIC I2C bus on select | ||
483 | Intel BayTrail platforms using the X-Powers AXP288 PMIC. It allows | ||
484 | the host to request uninterrupted access to the PMIC's I2C bus from | ||
485 | the platform firmware controlling it. You should say Y if running on | ||
486 | a BayTrail system using the AXP288. | ||
487 | |||
468 | config I2C_EFM32 | 488 | config I2C_EFM32 |
469 | tristate "EFM32 I2C controller" | 489 | tristate "EFM32 I2C controller" |
470 | depends on ARCH_EFM32 || COMPILE_TEST | 490 | depends on ARCH_EFM32 || COMPILE_TEST |