diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-02-26 17:20:02 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-02-26 17:20:02 +0000 |
commit | 0eef9d9833df1c2376bd3b761abc6580df15af3b (patch) | |
tree | b8e1e087321a63c0e5d44bc5a1dfa479912c00c5 /target-arm/cpu.h | |
parent | 7da845b0f42a791d65045284f90977d636c654cc (diff) | |
download | qemu-0eef9d9833df1c2376bd3b761abc6580df15af3b.tar.gz qemu-0eef9d9833df1c2376bd3b761abc6580df15af3b.tar.bz2 qemu-0eef9d9833df1c2376bd3b761abc6580df15af3b.zip |
target-arm: Implement AArch64 CurrentEL sysreg
Implement the CurrentEL sysreg.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Diffstat (limited to 'target-arm/cpu.h')
-rw-r--r-- | target-arm/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 8c4ed0f3e4..632b4d1722 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -731,7 +731,8 @@ static inline uint64_t cpreg_to_kvm_id(uint32_t cpregid) #define ARM_CP_NOP (ARM_CP_SPECIAL | (1 << 8)) #define ARM_CP_WFI (ARM_CP_SPECIAL | (2 << 8)) #define ARM_CP_NZCV (ARM_CP_SPECIAL | (3 << 8)) -#define ARM_LAST_SPECIAL ARM_CP_NZCV +#define ARM_CP_CURRENTEL (ARM_CP_SPECIAL | (4 << 8)) +#define ARM_LAST_SPECIAL ARM_CP_CURRENTEL /* Used only as a terminator for ARMCPRegInfo lists */ #define ARM_CP_SENTINEL 0xffff /* Mask of only the flag bits in a type field */ |