]> git.sur5r.net Git - u-boot/commitdiff
Exynos542x: Fix secondary core booting for thumb
authorAkshay Saraswat <akshay.s@samsung.com>
Fri, 20 Feb 2015 07:57:18 +0000 (13:27 +0530)
committerMinkyu Kang <mk7.kang@samsung.com>
Sat, 28 Feb 2015 09:03:46 +0000 (18:03 +0900)
When compiled SPL for Thumb secondary cores failed to boot
at the kernel boot up. Only one core came up out of 4.
This was happening because the code relocated to the
address 0x02073000 by the primary core was an ARM asm
code which was executed by the secondary cores as if it
was a thumb code.
This patch fixes the issue of secondary cores considering
relocated code as Thumb instructions and not ARM instructions
by jumping to the relocated with the help of "bx" ARM instruction.
"bx" instruction changes the 5th bit of CPSR which allows
execution unit to consider the following instructions as ARM
instructions.

Signed-off-by: Akshay Saraswat <akshay.s@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
arch/arm/cpu/armv7/exynos/lowlevel_init.c
arch/arm/include/asm/arch-exynos/system.h

index 050457641ed1637503ce4194f5ff32b47dbe51d4..782ecd1115598d3db562db3b2bf8a59e463a7013 100644 (file)
@@ -89,7 +89,7 @@ static void secondary_cpu_start(void)
 {
        v7_enable_smp(EXYNOS5420_INFORM_BASE);
        svc32_mode_en();
-       set_pc(CONFIG_EXYNOS_RELOCATE_CODE_BASE);
+       branch_bx(CONFIG_EXYNOS_RELOCATE_CODE_BASE);
 }
 
 /*
index 86903c369697241404764d0e24d991134d050df8..a9fd5e6aa42980fd16f6722a79011fc38d4b92f8 100644 (file)
@@ -75,6 +75,9 @@ struct exynos5_sysreg {
 /* Set program counter with the given value */
 #define set_pc(x) __asm__ __volatile__ ("mov     pc, %0\n\t" : : "r"(x))
 
+/* Branch to the given location */
+#define branch_bx(x) __asm__ __volatile__ ("bx %0\n\t" : : "r"(x))
+
 /* Read Main Id register */
 #define mrc_midr(x) __asm__ __volatile__       \
                        ("mrc     p15, 0, %0, c0, c0, 0\n\t" : "=r"(x) : )