* [U-Boot] CPU errata workarounds are using the SPL stack before it is initialized
@ 2017-07-25 9:58 Siarhei Siamashka
0 siblings, 0 replies; only message in thread
From: Siarhei Siamashka @ 2017-07-25 9:58 UTC (permalink / raw)
To: u-boot
Hello,
Currently the code in 'arch/arm/cpu/armv7/start.S' calls
the 'cpu_init_cp15' function before 'cpu_init_crit'. The initial
SPL stack is initialized in 'lowlevel_init', which is called
from 'cpu_init_crit'. But 'cpu_init_cp15' is already using stack
when applying errata workarounds. Here is one example:
#ifdef CONFIG_ARM_ERRATA_430973
cmp r2, #0x21 @ Only on < r2p1
bge skip_errata_430973
mrc p15, 0, r0, c1, c0, 1 @ Read ACR
orr r0, r0, #(0x1 << 6) @ Set IBE bit
push {r1-r5} @ Save the cpu info registers
bl v7_arch_cp15_set_acr
pop {r1-r5} @ Restore the cpu info - fall through
skip_errata_430973:
#endif
--
Best regards,
Siarhei Siamashka
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-07-25 9:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-25 9:58 [U-Boot] CPU errata workarounds are using the SPL stack before it is initialized Siarhei Siamashka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox