diff options
author | Arun Kumar K <arun.kk@samsung.com> | 2014-05-26 04:16:11 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2014-05-31 02:37:16 +0900 |
commit | 86c6f1488d9e53894cafc5671487269e80286d10 (patch) | |
tree | 8131477db871685ce840caab982546401072f9b5 /arch/arm/mach-exynos/platsmp.c | |
parent | ed08f10397cc18cd35fa3938fc55e4effa4fb66f (diff) | |
download | blackbird-op-linux-86c6f1488d9e53894cafc5671487269e80286d10.tar.gz blackbird-op-linux-86c6f1488d9e53894cafc5671487269e80286d10.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/platsmp.c')
-rw-r--r-- | arch/arm/mach-exynos/platsmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/platsmp.c b/arch/arm/mach-exynos/platsmp.c index c28cdb1c82cd..f5ec7e805298 100644 --- a/arch/arm/mach-exynos/platsmp.c +++ b/arch/arm/mach-exynos/platsmp.c @@ -45,7 +45,7 @@ static inline void __iomem *cpu_boot_reg(int cpu) boot_reg = cpu_boot_reg_base(); if (soc_is_exynos4412()) boot_reg += 4*cpu; - else if (soc_is_exynos5420()) + else if (soc_is_exynos5420() || soc_is_exynos5800()) boot_reg += 4; return boot_reg; } |