Moving the sbi_boot_print_general() call after the
sbi_platform_final_init() call allows to print devices initialized in the
latter.
To keep the overall print sequence the same also move
sbi_boot_print_domains().
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
sbi_hart_hang();
}
- sbi_boot_print_general(scratch);
-
/*
* Note: Finalize domains after HSM initialization so that we
* can startup non-root domains.
sbi_hart_hang();
}
- sbi_boot_print_domains(scratch);
-
rc = sbi_hart_pmp_configure(scratch);
if (rc) {
sbi_printf("%s: PMP configure failed (error %d)\n",
sbi_hart_hang();
}
+ sbi_boot_print_general(scratch);
+
+ sbi_boot_print_domains(scratch);
+
sbi_boot_print_hart(scratch, hartid);
wake_coldboot_harts(scratch, hartid);