software/bios: Gate flush_l2_cache() if L2 Cache isn't present.

This commit is contained in:
William D. Jones 2018-08-22 23:03:08 -04:00
parent 077f939169
commit 3146109af3
1 changed files with 2 additions and 0 deletions

View File

@ -27,7 +27,9 @@ static void __attribute__((noreturn)) boot(unsigned int r1, unsigned int r2, uns
irq_setie(0);
flush_cpu_icache();
flush_cpu_dcache();
#ifdef L2_SIZE
flush_l2_cache();
#endif
boot_helper(r1, r2, r3, addr);
while(1);
}