diff options
Diffstat (limited to 'src/arch/arm/utility.cc')
-rw-r--r-- | src/arch/arm/utility.cc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/arch/arm/utility.cc b/src/arch/arm/utility.cc index b41134f03..2888ebbf3 100644 --- a/src/arch/arm/utility.cc +++ b/src/arch/arm/utility.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2014, 2016-2018 ARM Limited + * Copyright (c) 2009-2014, 2016-2019 ARM Limited * All rights reserved. * * The license below extends only to copyright in the software and shall @@ -580,6 +580,16 @@ mcrMrc15TrapToHyp(const MiscRegIndex miscReg, ThreadContext *tc, uint32_t iss) case MISCREG_PMCR: trapToHype = hdcr.tpmcr; break; + // GICv3 regs + case MISCREG_ICC_SGI0R: + if (tc->getIsaPtr()->haveGICv3CpuIfc()) + trapToHype = hcr.fmo; + break; + case MISCREG_ICC_SGI1R: + case MISCREG_ICC_ASGI1R: + if (tc->getIsaPtr()->haveGICv3CpuIfc()) + trapToHype = hcr.imo; + break; // No default action needed default: break; |