mirror of
https://review.coreboot.org/arm-trusted-firmware.git
synced 2024-10-06 11:34:58 +02:00
Merge "fix(pmu): unconditionally save PMCR_EL0" into integration
This commit is contained in:
commit
c84200ecd9
4 changed files with 7 additions and 78 deletions
|
@ -218,9 +218,7 @@ unexpected_sync_exception:
|
|||
smc_handler:
|
||||
/* -----------------------------------------------------
|
||||
* Save x0-x29 and ARMv8.3-PAuth (if enabled) registers.
|
||||
* If Secure Cycle Counter is not disabled in MDCR_EL3
|
||||
* when ARMv8.5-PMU is implemented, save PMCR_EL0 and
|
||||
* disable Cycle Counter.
|
||||
* Save PMCR_EL0 and disable Cycle Counter.
|
||||
* TODO: Revisit to store only SMCCC specified registers.
|
||||
* -----------------------------------------------------
|
||||
*/
|
||||
|
|
|
@ -81,9 +81,7 @@ func handle_lower_el_sync_ea
|
|||
1:
|
||||
/*
|
||||
* Save general purpose and ARMv8.3-PAuth registers (if enabled).
|
||||
* If Secure Cycle Counter is not disabled in MDCR_EL3 when
|
||||
* ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter.
|
||||
* Also set the PSTATE to a known state.
|
||||
* Also save PMCR_EL0 and set the PSTATE to a known state.
|
||||
*/
|
||||
bl prepare_el3_entry
|
||||
|
||||
|
@ -123,9 +121,7 @@ func handle_lower_el_async_ea
|
|||
|
||||
/*
|
||||
* Save general purpose and ARMv8.3-PAuth registers (if enabled).
|
||||
* If Secure Cycle Counter is not disabled in MDCR_EL3 when
|
||||
* ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter.
|
||||
* Also set the PSTATE to a known state.
|
||||
* Also save PMCR_EL0 and set the PSTATE to a known state.
|
||||
*/
|
||||
bl prepare_el3_entry
|
||||
|
||||
|
|
|
@ -72,9 +72,7 @@
|
|||
|
||||
/*
|
||||
* Save general purpose and ARMv8.3-PAuth registers (if enabled).
|
||||
* If Secure Cycle Counter is not disabled in MDCR_EL3 when
|
||||
* ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter.
|
||||
* Also set the PSTATE to a known state.
|
||||
* Also save PMCR_EL0 and set the PSTATE to a known state.
|
||||
*/
|
||||
bl prepare_el3_entry
|
||||
|
||||
|
@ -164,9 +162,7 @@
|
|||
|
||||
/*
|
||||
* Save general purpose and ARMv8.3-PAuth registers (if enabled).
|
||||
* If Secure Cycle Counter is not disabled in MDCR_EL3 when
|
||||
* ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter.
|
||||
* Also set the PSTATE to a known state.
|
||||
* Also save PMCR_EL0 and set the PSTATE to a known state.
|
||||
*/
|
||||
bl prepare_el3_entry
|
||||
|
||||
|
@ -440,9 +436,7 @@ sync_handler64:
|
|||
|
||||
/*
|
||||
* Save general purpose and ARMv8.3-PAuth registers (if enabled).
|
||||
* If Secure Cycle Counter is not disabled in MDCR_EL3 when
|
||||
* ARMv8.5-PMU is implemented, save PMCR_EL0 and disable Cycle Counter.
|
||||
* Also set the PSTATE to a known state.
|
||||
* Also save PMCR_EL0 and set the PSTATE to a known state.
|
||||
*/
|
||||
bl prepare_el3_entry
|
||||
|
||||
|
|
|
@ -568,48 +568,12 @@ endfunc fpregs_context_restore
|
|||
stp x28, x29, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X28]
|
||||
mrs x18, sp_el0
|
||||
str x18, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_SP_EL0]
|
||||
|
||||
/* ----------------------------------------------------------
|
||||
* Check if earlier initialization of MDCR_EL3.SCCD/MCCD to 1
|
||||
* has failed.
|
||||
*
|
||||
* MDCR_EL3:
|
||||
* MCCD bit set, Prohibits the Cycle Counter PMCCNTR_EL0 from
|
||||
* counting at EL3.
|
||||
* SCCD bit set, Secure Cycle Counter Disable. Prohibits PMCCNTR_EL0
|
||||
* from counting in Secure state.
|
||||
* If these bits are not set, meaning that FEAT_PMUv3p5/7 is
|
||||
* not implemented and PMCR_EL0 should be saved in non-secure
|
||||
* context.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
mov_imm x10, (MDCR_SCCD_BIT | MDCR_MCCD_BIT)
|
||||
mrs x9, mdcr_el3
|
||||
tst x9, x10
|
||||
bne 1f
|
||||
|
||||
/* ----------------------------------------------------------
|
||||
* If control reaches here, it ensures the Secure Cycle
|
||||
* Counter (PMCCNTR_EL0) is not prohibited from counting at
|
||||
* EL3 and in secure states.
|
||||
* Henceforth, PMCR_EL0 to be saved before world switch.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
mrs x9, pmcr_el0
|
||||
|
||||
/* Check caller's security state */
|
||||
mrs x10, scr_el3
|
||||
tst x10, #SCR_NS_BIT
|
||||
beq 2f
|
||||
|
||||
/* Save PMCR_EL0 if called from Non-secure state */
|
||||
str x9, [sp, #CTX_EL3STATE_OFFSET + CTX_PMCR_EL0]
|
||||
|
||||
/* Disable cycle counter when event counting is prohibited */
|
||||
2: orr x9, x9, #PMCR_EL0_DP_BIT
|
||||
orr x9, x9, #PMCR_EL0_DP_BIT
|
||||
msr pmcr_el0, x9
|
||||
isb
|
||||
1:
|
||||
#if CTX_INCLUDE_PAUTH_REGS
|
||||
/* ----------------------------------------------------------
|
||||
* Save the ARMv8.3-PAuth keys as they are not banked
|
||||
|
@ -687,31 +651,8 @@ func restore_gp_pmcr_pauth_regs
|
|||
msr APGAKeyLo_EL1, x8
|
||||
msr APGAKeyHi_EL1, x9
|
||||
#endif /* CTX_INCLUDE_PAUTH_REGS */
|
||||
|
||||
/* ----------------------------------------------------------
|
||||
* Restore PMCR_EL0 when returning to Non-secure state if
|
||||
* Secure Cycle Counter is not disabled in MDCR_EL3 when
|
||||
* ARMv8.5-PMU is implemented.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
mrs x0, scr_el3
|
||||
tst x0, #SCR_NS_BIT
|
||||
beq 2f
|
||||
|
||||
/* ----------------------------------------------------------
|
||||
* Back to Non-secure state.
|
||||
* Check if earlier initialization MDCR_EL3.SCCD/MCCD to 1
|
||||
* failed, meaning that FEAT_PMUv3p5/7 is not implemented and
|
||||
* PMCR_EL0 should be restored from non-secure context.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
mov_imm x1, (MDCR_SCCD_BIT | MDCR_MCCD_BIT)
|
||||
mrs x0, mdcr_el3
|
||||
tst x0, x1
|
||||
bne 2f
|
||||
ldr x0, [sp, #CTX_EL3STATE_OFFSET + CTX_PMCR_EL0]
|
||||
msr pmcr_el0, x0
|
||||
2:
|
||||
ldp x0, x1, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X0]
|
||||
ldp x2, x3, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X2]
|
||||
ldp x4, x5, [sp, #CTX_GPREGS_OFFSET + CTX_GPREG_X4]
|
||||
|
|
Loading…
Reference in a new issue