arch-arm: Fix PCAlignmentFault routing to Hypervisor
This patch enables PCAlignmentFault routing to Hypervisor in case HCR_EL2.TGE == 1, as is happening for other arm exceptions. Change-Id: I48364ef1a0bcb5d030135221ae4bc6429e32759e Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/8841 Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
@@ -1432,6 +1432,20 @@ PCAlignmentFault::invoke(ThreadContext *tc, const StaticInstPtr &inst)
|
||||
tc->setMiscReg(getFaultAddrReg64(), faultPC);
|
||||
}
|
||||
|
||||
bool
|
||||
PCAlignmentFault::routeToHyp(ThreadContext *tc) const
|
||||
{
|
||||
bool toHyp = false;
|
||||
|
||||
SCR scr = tc->readMiscRegNoEffect(MISCREG_SCR_EL3);
|
||||
HCR hcr = tc->readMiscRegNoEffect(MISCREG_HCR_EL2);
|
||||
CPSR cpsr = tc->readMiscRegNoEffect(MISCREG_CPSR);
|
||||
|
||||
// if HCR.TGE is set to 1, take to Hyp mode through Hyp Trap vector
|
||||
toHyp |= !inSecureState(scr, cpsr) && hcr.tge && (cpsr.el == EL0);
|
||||
return toHyp;
|
||||
}
|
||||
|
||||
SPAlignmentFault::SPAlignmentFault()
|
||||
{}
|
||||
|
||||
|
||||
@@ -535,6 +535,7 @@ class PCAlignmentFault : public ArmFaultVals<PCAlignmentFault>
|
||||
{}
|
||||
void invoke(ThreadContext *tc, const StaticInstPtr &inst =
|
||||
StaticInst::nullStaticInstPtr) override;
|
||||
bool routeToHyp(ThreadContext *tc) const override;
|
||||
};
|
||||
|
||||
/// Stack pointer alignment fault (AArch64 only)
|
||||
|
||||
Reference in New Issue
Block a user