mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-03 16:04:47 +01:00
runmulticore: Added secondary core status prints
Change-Id: I16b88abfbd2e518ce6259e3a5f0329303462389f Signed-off-by: Gokul Sriram Palanisamy <gokulsri@codeaurora.org>
This commit is contained in:
parent
4459f567fa
commit
e7dbf7657c
1 changed files with 8 additions and 0 deletions
|
|
@ -175,6 +175,14 @@ int do_runmulticore(cmd_tbl_t *cmdtp,
|
|||
free(core[i - 1].stack_top_ptr);
|
||||
}
|
||||
|
||||
printf("Status:\n");
|
||||
for (i = 1; i < argc; i++) {
|
||||
printf("Core %d: %s\n", i,
|
||||
core[i - 1].cmd_complete ?
|
||||
((core[i - 1].cmd_result == -1) ?
|
||||
"FAIL" : "PASS"): "INCOMPLETE");
|
||||
}
|
||||
|
||||
invalidate_dcache_all();
|
||||
dcache_enable();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue