summaryrefslogtreecommitdiff
path: root/src/arch/arm/miscregs.cc
diff options
context:
space:
mode:
authorChander Sudanthi <Chander.Sudanthi@ARM.com>2011-09-13 12:06:13 -0500
committerChander Sudanthi <Chander.Sudanthi@ARM.com>2011-09-13 12:06:13 -0500
commit7c479d734922d0b9dd5c9b4404ef6d62b3d91075 (patch)
tree769ca64c18b45fb6505d24233a601c879778ecd2 /src/arch/arm/miscregs.cc
parent09a6e424ec966d66ec2f8cfba86d4b4141438c5a (diff)
downloadgem5-7c479d734922d0b9dd5c9b4404ef6d62b3d91075.tar.xz
CP15 c15: enable execution with accesses to c15 registers
Previously, coprocessor accesses to CP15 c15 would fault. This patch enables accesses but prints out a warning, as the registers are not implemented.
Diffstat (limited to 'src/arch/arm/miscregs.cc')
-rw-r--r--src/arch/arm/miscregs.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/miscregs.cc b/src/arch/arm/miscregs.cc
index 1fecaa38d..db097c653 100644
--- a/src/arch/arm/miscregs.cc
+++ b/src/arch/arm/miscregs.cc
@@ -463,7 +463,7 @@ decodeCP15Reg(unsigned crn, unsigned opc1, unsigned crm, unsigned opc2)
break;
case 15:
// Implementation defined
- break;
+ return MISCREG_CRN15;
}
// Unrecognized register
return NUM_MISCREGS;