Skip to content
Snippets Groups Projects
Commit 0c9ab437 authored by York Sun's avatar York Sun Committed by Andy Fleming
Browse files

powerpc/mpc85xx: check if core is disabled for showing status


"cpu <num> status" should check if core is disabled before printing
the spin table location.

Signed-off-by: default avatarYork Sun <yorksun@freescale.com>
Signed-off-by: default avatarAndy Fleming <afleming@freescale.com>
parent d54097b6
No related branches found
No related tags found
No related merge requests found
...@@ -80,6 +80,8 @@ int cpu_status(int nr) ...@@ -80,6 +80,8 @@ int cpu_status(int nr)
if (nr == id) { if (nr == id) {
table = (u32 *)&__spin_table; table = (u32 *)&__spin_table;
printf("table base @ 0x%p\n", table); printf("table base @ 0x%p\n", table);
} else if (is_core_disabled(nr)) {
puts("Disabled\n");
} else { } else {
table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY; table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY;
printf("Running on cpu %d\n", id); printf("Running on cpu %d\n", id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment