mirror of
https://github.com/torvalds/linux.git
synced 2024-12-22 10:56:40 +00:00
71a3dfd07c
Now that the GPIO interrupt controller also supports the Meson8 SoCs we can enable it via Kconfig. Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
36 lines
687 B
Plaintext
36 lines
687 B
Plaintext
menuconfig ARCH_MESON
|
|
bool "Amlogic Meson SoCs"
|
|
depends on ARCH_MULTI_V7
|
|
select GPIOLIB
|
|
select GENERIC_IRQ_CHIP
|
|
select ARM_GIC
|
|
select CACHE_L2X0
|
|
select PINCTRL
|
|
select PINCTRL_MESON
|
|
select COMMON_CLK
|
|
select COMMON_CLK_AMLOGIC
|
|
select HAVE_ARM_SCU if SMP
|
|
|
|
if ARCH_MESON
|
|
|
|
config MACH_MESON6
|
|
bool "Amlogic Meson6 (8726MX) SoCs support"
|
|
default ARCH_MESON
|
|
select MESON6_TIMER
|
|
|
|
config MACH_MESON8
|
|
bool "Amlogic Meson8 SoCs support"
|
|
default ARCH_MESON
|
|
select MESON6_TIMER
|
|
select COMMON_CLK_MESON8B
|
|
select MESON_IRQ_GPIO
|
|
|
|
config MACH_MESON8B
|
|
bool "Amlogic Meson8b SoCs support"
|
|
default ARCH_MESON
|
|
select MESON6_TIMER
|
|
select COMMON_CLK_MESON8B
|
|
select MESON_IRQ_GPIO
|
|
|
|
endif
|