diff options
author | Alexey Brodkin <abrodkin@synopsys.com> | 2018-01-24 15:27:04 +0300 |
---|---|---|
committer | Alexey Brodkin <abrodkin@synopsys.com> | 2018-03-21 16:21:34 +0300 |
commit | 0a097ba54bee9ee9fb2f6c5529b55d4b46b872b2 (patch) | |
tree | e6dd07123176d2616abb6919deb0172993c27f65 /arch/arc | |
parent | 2178817c4a105ead044e054bf902f256e6d589c2 (diff) | |
download | u-boot-0a097ba54bee9ee9fb2f6c5529b55d4b46b872b2.zip u-boot-0a097ba54bee9ee9fb2f6c5529b55d4b46b872b2.tar.gz u-boot-0a097ba54bee9ee9fb2f6c5529b55d4b46b872b2.tar.bz2 |
arc: Don't halt slaves
This commit basically reverts two commits:
1. cf628f772ef2 ("arc: arcv1: Disable master/slave check")
2. 6cba327bd96f ("arcv2: Halt non-master cores")
With mentioned commits in-place we experience more trouble than
benefits. In case of SMP Linux kernel this is really required as
we have all the cores running from the very beginning and then we
need to allow master core to do some preparatory work while slaves
are not getting in the way.
In case of U-Boot we:
a) Don't really run more than 1 core in parallel
b) We may use whatever core for that
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'arch/arc')
-rw-r--r-- | arch/arc/lib/start.S | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/arch/arc/lib/start.S b/arch/arc/lib/start.S index 0d72fe7..ac9944c 100644 --- a/arch/arc/lib/start.S +++ b/arch/arc/lib/start.S @@ -10,26 +10,6 @@ #include <asm/arcregs.h> ENTRY(_start) -; ARCompact devices are not supposed to be SMP so master/slave check -; makes no sense. -#ifdef CONFIG_ISA_ARCV2 - ; Non-masters will be halted immediately, they might be kicked later - ; by platform code right before passing control to the Linux kernel - ; in bootm.c:boot_jump_linux(). - lr r5, [identity] - lsr r5, r5, 8 - bmsk r5, r5, 7 - cmp r5, 0 - mov.nz r0, r5 - bz .Lmaster_proceed - flag 1 - nop - nop - nop - -.Lmaster_proceed: -#endif - /* Setup interrupt vector base that matches "__text_start" */ sr __ivt_start, [ARC_AUX_INTR_VEC_BASE] |