mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
29525484cd
The Integrator/AP can be used with a logic module called IM-PD1, which contains a few AMBA PrimeCell devices, one of which is the PL061 GPIO controller. As the lines from this GPIO controller are looped back to devices on the board itself and provides resources back to it, we need to always have GPIO and the PL061 driver available for other devices to work. Cc: Russell King <linux@arm.linux.org.uk> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
if ARCH_INTEGRATOR
|
|
|
|
menu "Integrator Options"
|
|
|
|
config ARCH_INTEGRATOR_AP
|
|
bool "Support Integrator/AP and Integrator/PP2 platforms"
|
|
select CLKSRC_MMIO
|
|
select MIGHT_HAVE_PCI
|
|
select SERIAL_AMBA_PL010
|
|
select SERIAL_AMBA_PL010_CONSOLE
|
|
select SOC_BUS
|
|
help
|
|
Include support for the ARM(R) Integrator/AP and
|
|
Integrator/PP2 platforms.
|
|
|
|
config ARCH_INTEGRATOR_CP
|
|
bool "Support Integrator/CP platform"
|
|
select ARCH_CINTEGRATOR
|
|
select ARM_TIMER_SP804
|
|
select PLAT_VERSATILE_CLCD
|
|
select SERIAL_AMBA_PL011
|
|
select SERIAL_AMBA_PL011_CONSOLE
|
|
select SOC_BUS
|
|
help
|
|
Include support for the ARM(R) Integrator CP platform.
|
|
|
|
config ARCH_CINTEGRATOR
|
|
bool
|
|
|
|
config INTEGRATOR_IMPD1
|
|
tristate "Include support for Integrator/IM-PD1"
|
|
depends on ARCH_INTEGRATOR_AP
|
|
select ARCH_REQUIRE_GPIOLIB
|
|
select ARM_VIC
|
|
select GPIO_PL061 if GPIOLIB
|
|
help
|
|
The IM-PD1 is an add-on logic module for the Integrator which
|
|
allows ARM(R) Ltd PrimeCells to be developed and evaluated.
|
|
The IM-PD1 can be found on the Integrator/PP2 platform.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called impd1.
|
|
|
|
endmenu
|
|
|
|
endif
|