mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 23:51:37 +00:00
a469226d97
Support for Amlogic Meson SoCs depends on ARCH_MULTI_V7, and thus on ARCH_MULTIPLATFORM. As the latter selects COMMON_CLK, there is no need for ARCH_MESON to select COMMON_CLK. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Cc: Kevin Hilman <khilman@baylibre.com> Cc: linux-amlogic@lists.infradead.org Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Link: https://lore.kernel.org/r/20200121103722.1781-12-geert+renesas@glider.be Signed-off-by: Kevin Hilman <khilman@baylibre.com>
30 lines
607 B
Plaintext
30 lines
607 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menuconfig ARCH_MESON
|
|
bool "Amlogic Meson SoCs"
|
|
depends on ARCH_MULTI_V7
|
|
select GPIOLIB
|
|
select GENERIC_IRQ_CHIP
|
|
select ARM_GIC
|
|
select ARM_GLOBAL_TIMER
|
|
select CACHE_L2X0
|
|
select PINCTRL
|
|
select PINCTRL_MESON
|
|
select HAVE_ARM_SCU if SMP
|
|
select HAVE_ARM_TWD 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, Meson8b and Meson8m2 SoCs support"
|
|
default ARCH_MESON
|
|
select MESON6_TIMER
|
|
select COMMON_CLK_MESON8B
|
|
select MESON_IRQ_GPIO
|
|
|
|
endif
|