diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2021-08-16 19:03:05 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2021-08-26 17:02:01 +0100 |
| commit | 8e228c9e4bcfea634e7ee404f4d13136d2072c71 (patch) | |
| tree | dc82dfa1366d417dd3f1fe3c6e35365104ced5b7 /target/arm/cpu.h | |
| parent | cc7613bfaa1f653a6eb6ff50ac45d5c5fd717052 (diff) | |
| download | focaccia-qemu-8e228c9e4bcfea634e7ee404f4d13136d2072c71.tar.gz focaccia-qemu-8e228c9e4bcfea634e7ee404f4d13136d2072c71.zip | |
target/arm: Implement HSTR.TJDBX
In v7A, the HSTR register has a TJDBX bit which traps NS EL0/EL1 access to the JOSCR and JMCR trivial Jazelle registers, and also BXJ. Implement these traps. In v8A this HSTR bit doesn't exist, so don't trap for v8A CPUs. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20210816180305.20137-3-peter.maydell@linaro.org
Diffstat (limited to 'target/arm/cpu.h')
| -rw-r--r-- | target/arm/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 0cd3206041..09760333cc 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -1542,6 +1542,7 @@ static inline void xpsr_write(CPUARMState *env, uint32_t val, uint32_t mask) #define SCR_ATA (1U << 26) #define HSTR_TTEE (1 << 16) +#define HSTR_TJDBX (1 << 17) /* Return the current FPSCR value. */ uint32_t vfp_get_fpscr(CPUARMState *env); |