mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
cbd159ed4f
This adds the initial driver support for the Broadcom Cygnus IOMUX controller. The Cygnus IOMUX controller supports group based mux configuration but allows certain pins to be muxed to GPIO individually Signed-off-by: Ray Jui <rjui@broadcom.com> Reviewed-by: Scott Branden <sbranden@broadcom.com> Tested-by: Dmitry Torokhov <dtor@chromium.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
35 lines
968 B
Plaintext
35 lines
968 B
Plaintext
#
|
|
# Broadcom pinctrl drivers
|
|
#
|
|
|
|
config PINCTRL_BCM281XX
|
|
bool "Broadcom BCM281xx pinctrl driver"
|
|
depends on OF && (ARCH_BCM_MOBILE || COMPILE_TEST)
|
|
select PINMUX
|
|
select PINCONF
|
|
select GENERIC_PINCONF
|
|
select REGMAP_MMIO
|
|
help
|
|
Say Y here to support Broadcom BCM281xx pinctrl driver, which is used
|
|
for the BCM281xx SoC family, including BCM11130, BCM11140, BCM11351,
|
|
BCM28145, and BCM28155 SoCs. This driver requires the pinctrl
|
|
framework. GPIO is provided by a separate GPIO driver.
|
|
|
|
config PINCTRL_BCM2835
|
|
bool
|
|
select PINMUX
|
|
select PINCONF
|
|
|
|
config PINCTRL_CYGNUS_MUX
|
|
bool "Broadcom Cygnus IOMUX driver"
|
|
depends on (ARCH_BCM_CYGNUS || COMPILE_TEST)
|
|
select PINMUX
|
|
select GENERIC_PINCONF
|
|
default ARCH_BCM_CYGNUS
|
|
help
|
|
Say yes here to enable the Broadcom Cygnus IOMUX driver.
|
|
|
|
The Broadcom Cygnus IOMUX driver supports group based IOMUX
|
|
configuration, with the exception that certain individual pins
|
|
can be overrided to GPIO function
|