summaryrefslogtreecommitdiff
path: root/arch/arm/mach-exynos
diff options
context:
space:
mode:
authorArun Kumar K <arun.kk@samsung.com>2014-05-26 04:16:11 +0900
committerHyungwon Hwang <human.hwang@samsung.com>2014-12-17 16:18:13 +0900
commitcac856a2dd77a6291695ba16d81fc678303313f6 (patch)
treef600c66760c15a46b1d60d40e5478790e10bc266 /arch/arm/mach-exynos
parentc8ad9848ad7972413d96527caec51291e324805a (diff)
downloadlinux-3.10-cac856a2dd77a6291695ba16d81fc678303313f6.tar.gz
linux-3.10-cac856a2dd77a6291695ba16d81fc678303313f6.tar.bz2
linux-3.10-cac856a2dd77a6291695ba16d81fc678303313f6.zip
ARM: EXYNOS: Add 5800 SoC support
Exynos5800 is an octa core SoC which is based on the 5420 platform. This patch adds the basic support for it in the mach-exynos. Signed-off-by: Arun Kumar K <arun.kk@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos')
-rw-r--r--arch/arm/mach-exynos/Kconfig5
-rw-r--r--arch/arm/mach-exynos/platsmp.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig
index c2564984d7b..8589081b473 100644
--- a/arch/arm/mach-exynos/Kconfig
+++ b/arch/arm/mach-exynos/Kconfig
@@ -505,6 +505,11 @@ config EXYNOS4_SDHCI_CH2_8BIT
If selected, Channel 3 is disabled.
endif
+config SOC_EXYNOS5800
+ bool "SAMSUNG EXYNOS5800"
+ default y
+ depends on SOC_EXYNOS5420
+
endmenu
endif
diff --git a/arch/arm/mach-exynos/platsmp.c b/arch/arm/mach-exynos/platsmp.c
index c30c5baf0dd..9a8d557054c 100644
--- a/arch/arm/mach-exynos/platsmp.c
+++ b/arch/arm/mach-exynos/platsmp.c
@@ -50,6 +50,8 @@ static inline void __iomem *cpu_boot_reg(int cpu)
boot_reg = cpu_boot_reg_base();
if (soc_is_exynos4412())
boot_reg += 4*cpu;
+ if (soc_is_exynos5800())
+ boot_reg += 4;
return boot_reg;
}