mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-04 00:14:48 +01:00
Merge "runmulticore: Added secondary core status prints"
This commit is contained in:
commit
294f6eb36d
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