mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
5c34a4e89c
This replaces: - "select ARCH_REQUIRE_GPIOLIB" with "select GPIOLIB" as this can now be selected directly. - "select ARCH_WANT_OPTIONAL_GPIOLIB" with no dependency: GPIOLIB is now selectable by everyone, so we need not declare our intent to select it. When ordering the symbols the following rationale was used: if the selects were in alphabetical order, I moved select GPIOLIB to be in alphabetical order, but if the selects were not maintained in alphabetical order, I just replaced "select ARCH_REQUIRE_GPIOLIB" with "select GPIOLIB". Cc: Michael Büsch <m@bues.ch> Cc: arm@kernel.org Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Olof Johansson <olof@lixom.net>
38 lines
775 B
Plaintext
38 lines
775 B
Plaintext
menuconfig ARCH_BERLIN
|
|
bool "Marvell Berlin SoCs"
|
|
depends on ARCH_MULTI_V7
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select ARM_GIC
|
|
select DW_APB_ICTL
|
|
select DW_APB_TIMER_OF
|
|
select GENERIC_IRQ_CHIP
|
|
select GPIOLIB
|
|
select MFD_SYSCON
|
|
select PINCTRL
|
|
|
|
if ARCH_BERLIN
|
|
|
|
config MACH_BERLIN_BG2
|
|
bool "Marvell Armada 1500 (BG2)"
|
|
select CACHE_L2X0
|
|
select CPU_PJ4B
|
|
select HAVE_ARM_SCU if SMP
|
|
select HAVE_ARM_TWD if SMP
|
|
select HAVE_SMP
|
|
select PINCTRL_BERLIN_BG2
|
|
|
|
config MACH_BERLIN_BG2CD
|
|
bool "Marvell Armada 1500-mini (BG2CD)"
|
|
select CACHE_L2X0
|
|
select HAVE_ARM_TWD if SMP
|
|
select PINCTRL_BERLIN_BG2CD
|
|
|
|
config MACH_BERLIN_BG2Q
|
|
bool "Marvell Armada 1500 Pro (BG2-Q)"
|
|
select CACHE_L2X0
|
|
select HAVE_ARM_SCU if SMP
|
|
select HAVE_ARM_TWD if SMP
|
|
select PINCTRL_BERLIN_BG2Q
|
|
|
|
endif
|