diff mbox series

[U-Boot] arc: bootm: Move slave cores kick-starting under !fake

Message ID 1510923597-26575-1-git-send-email-abrodkin@synopsys.com
State Accepted
Commit d764a20f2bcab2e76bce0751ed125b0c32f9d82f
Delegated to: Alexey Brodkin
Headers show
Series [U-Boot] arc: bootm: Move slave cores kick-starting under !fake | expand

Commit Message

Alexey Brodkin Nov. 17, 2017, 12:59 p.m. UTC
Currently slave cores will be kick-started even if we want
to dry run bootm which is not what we really want.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Eugeniy Paltsev <paltsev@synopsys.com>
---
 arch/arc/lib/bootm.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/arch/arc/lib/bootm.c b/arch/arc/lib/bootm.c
index a498ce5b297c..9eef7070cf43 100644
--- a/arch/arc/lib/bootm.c
+++ b/arch/arc/lib/bootm.c
@@ -88,11 +88,11 @@  static void boot_jump_linux(bootm_headers_t *images, int flag)
 		r2 = (unsigned int)env_get("bootargs");
 	}
 
-	smp_set_core_boot_addr((unsigned long)kernel_entry, -1);
-	smp_kick_all_cpus();
-
-	if (!fake)
+	if (!fake) {
+		smp_set_core_boot_addr((unsigned long)kernel_entry, -1);
+		smp_kick_all_cpus();
 		kernel_entry(r0, 0, r2);
+	}
 }
 
 int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)