1
0
Fork 0

fix mmu table uninitialized on core1

This commit is contained in:
Simon Renblad 2024-11-18 17:38:30 +08:00
parent e894f502a4
commit fa3fe497e1
1 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,8 @@ unsafe extern "C" fn boot_core1() -> ! {
let mpcore = mpcore::RegisterBlock::mpcore();
mpcore.scu_invalidate.invalidate_core1();
let mmu_table = mmu::L1Table::get();
let mmu_table = mmu::L1Table::get()
.setup_flat_layout();
mmu::with_mmu(mmu_table, || {
ACTLR.enable_smp();
ACTLR.enable_prefetch();