diff options
author | Peter Maydell | 2015-08-25 16:45:08 +0200 |
---|---|---|
committer | Peter Maydell | 2015-08-25 16:45:08 +0200 |
commit | e76157264da20b85698b09fa5eb8e02e515e232c (patch) | |
tree | 52d30516838d9ec4e46a46910dc9d80b8825e598 /target-arm/cpu.h | |
parent | target-arm: Wire up AArch64 EL2 and EL3 address translation ops (diff) | |
download | qemu-e76157264da20b85698b09fa5eb8e02e515e232c.tar.gz qemu-e76157264da20b85698b09fa5eb8e02e515e232c.tar.xz qemu-e76157264da20b85698b09fa5eb8e02e515e232c.zip |
target-arm: Add CP_ACCESS_TRAP_UNCATEGORIZED_EL2, 3
Some coprocessor register access functions need to be able
to report "trap to EL3 with an 'uncategorized' syndrome";
add the necessary CPAccessResult enum and handling for it.
I don't currently know of any registers that need to trap
to EL2 with the 'uncategorized' syndrome, but adding the
_EL2 enum as well is trivial and fills in what would
otherwise be an odd gap in the handling.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Message-id: 1437751263-21913-4-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'target-arm/cpu.h')
-rw-r--r-- | target-arm/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 2e680da1fc..31825d34a1 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -1284,6 +1284,9 @@ typedef enum CPAccessResult { /* As CP_ACCESS_TRAP, but for traps directly to EL2 or EL3 */ CP_ACCESS_TRAP_EL2 = 3, CP_ACCESS_TRAP_EL3 = 4, + /* As CP_ACCESS_UNCATEGORIZED, but for traps directly to EL2 or EL3 */ + CP_ACCESS_TRAP_UNCATEGORIZED_EL2 = 5, + CP_ACCESS_TRAP_UNCATEGORIZED_EL3 = 6, } CPAccessResult; /* Access functions for coprocessor registers. These cannot fail and |