aboutsummaryrefslogtreecommitdiff
path: root/target/arm/cpu-param.h
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2020-02-08 12:57:58 +0000
committerPeter Maydell <peter.maydell@linaro.org>2020-02-13 14:14:53 +0000
commit452ef8cb8c7b06f44a30a3c3a54d3be82c4aef59 (patch)
tree8cdfdebba973cc2c495154f80abbd8fa8eca77d5 /target/arm/cpu-param.h
parentfee7aa46edd76f06c3dc176abb8fd05b365efce6 (diff)
downloadqemu-452ef8cb8c7b06f44a30a3c3a54d3be82c4aef59.zip
qemu-452ef8cb8c7b06f44a30a3c3a54d3be82c4aef59.tar.gz
qemu-452ef8cb8c7b06f44a30a3c3a54d3be82c4aef59.tar.bz2
target/arm: Add mmu_idx for EL1 and EL2 w/ PAN enabled
To implement PAN, we will want to swap, for short periods of time, to a different privileged mmu_idx. In addition, we cannot do this with flushing alone, because the AT* instructions have both PAN and PAN-less versions. Add the ARMMMUIdx*_PAN constants where necessary next to the corresponding ARMMMUIdx* constant. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20200208125816.14954-3-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu-param.h')
-rw-r--r--target/arm/cpu-param.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/cpu-param.h b/target/arm/cpu-param.h
index 18ac562..d593b60 100644
--- a/target/arm/cpu-param.h
+++ b/target/arm/cpu-param.h
@@ -29,6 +29,6 @@
# define TARGET_PAGE_BITS_MIN 10
#endif
-#define NB_MMU_MODES 9
+#define NB_MMU_MODES 12
#endif