arch/arm: armv8-r PL at startup needs to be checked

When the system startup from the PL1 SYS mode, the initialization
of the PL2 HYP register needs to be skipped. Put the Hypervisor
initialization code together and skip it all at once.

Signed-off-by: yukangzhi <yukangzhi@xiaomi.com>
This commit is contained in:
yukangzhi
2025-08-08 09:52:08 +08:00
committed by Xiang Xiao
parent 98d4d887da
commit 3448e84a4c
+16 -10
View File
@@ -198,10 +198,6 @@ __cpu0_start:
ldr sp, .Lstackpointer
mov fp, #0
/* Set Hyp/PL2 Vector table base register */
ldr r0, .Lhypvectorstart
mcr CP15_HVBAR(r0)
/* Invalidate caches and TLBs.
*
* NOTE: "The ARMv7 Virtual Memory System Architecture (VMSA) does not
@@ -223,11 +219,6 @@ __cpu0_start:
bl cp15_dcache_op_level
isb
bl hsctlr_initialize /* Init Hyp system control register */
ldr r0, =HACTLR_INIT
mcr CP15_HACTLR(r0) /* Enable EL1 access all IMP DEFINED registers */
#ifdef CONFIG_ARCH_FPU
bl arm_fpuconfig
#endif
@@ -238,7 +229,22 @@ __cpu0_start:
/* Platform hook for highest EL */
bl arm_el_init
/* Move to PL1 SYS with all exceptions masked */
/* Skip hypervisor register initializition */
mrs r0, CPSR
and r0, r0, #PSR_MODE_MASK
cmp r0, #PSR_MODE_HYP /* Check the current processor mode */
bne 1f
/* Set Hyp/PL2 Vector table base register */
ldr r0, .Lhypvectorstart
mcr CP15_HVBAR(r0)
/* Initialize Hyp system control register */
bl hsctlr_initialize /* Init Hyp system control register */
ldr r0, =HACTLR_INIT
mcr CP15_HACTLR(r0) /* Enable EL1 access all IMP DEFINED registers */
/* Move to PL1 SYS with all exceptions masked */
mov r0, #(PSR_MODE_SYS | PSR_I_BIT | PSR_F_BIT | PSR_A_BIT)
msr spsr_hyp, r0