aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-meson
diff options
context:
space:
mode:
authorCarlo Caione <carlo@endlessm.com>2015-10-07 16:31:05 -0400
committerArnd Bergmann <arnd@arndb.de>2015-10-08 11:22:11 -0400
commit55fa3ee0815a355490c109416935563223af0ccc (patch)
treec60c1edb2e5cef8c540ae001add75ea3e57b6dcc /arch/arm/mach-meson
parentd64c5097ff1701ae54d02d36f68184756e6a80f0 (diff)
ARM: meson: Enable Meson8b SoCs
Signed-off-by: Carlo Caione <carlo@endlessm.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-meson')
-rw-r--r--arch/arm/mach-meson/Kconfig5
-rw-r--r--arch/arm/mach-meson/meson.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-meson/Kconfig b/arch/arm/mach-meson/Kconfig
index 0743e2059645..5d56f86ae1a4 100644
--- a/arch/arm/mach-meson/Kconfig
+++ b/arch/arm/mach-meson/Kconfig
@@ -19,4 +19,9 @@ config MACH_MESON8
19 default ARCH_MESON 19 default ARCH_MESON
20 select MESON6_TIMER 20 select MESON6_TIMER
21 21
22config MACH_MESON8B
23 bool "Amlogic Meson8b SoCs support"
24 default ARCH_MESON
25 select MESON6_TIMER
26
22endif 27endif
diff --git a/arch/arm/mach-meson/meson.c b/arch/arm/mach-meson/meson.c
index 5d6affe6a694..4e2357178625 100644
--- a/arch/arm/mach-meson/meson.c
+++ b/arch/arm/mach-meson/meson.c
@@ -19,6 +19,7 @@
19static const char * const meson_common_board_compat[] = { 19static const char * const meson_common_board_compat[] = {
20 "amlogic,meson6", 20 "amlogic,meson6",
21 "amlogic,meson8", 21 "amlogic,meson8",
22 "amlogic,meson8b",
22 NULL, 23 NULL,
23}; 24};
24 25