diff options
author | Peter Maydell | 2017-09-07 14:54:51 +0200 |
---|---|---|
committer | Peter Maydell | 2017-09-07 14:54:51 +0200 |
commit | 0e1a46bbd2d6c39614b87f4e88ea305acce8a35f (patch) | |
tree | f60754bcef3ac2228d9c92eb246b8e3b4d95b70b /target/arm/cpu.h | |
parent | hw/arm/allwinner-a10: Mark the allwinner-a10 device with user_creatable = false (diff) | |
download | qemu-0e1a46bbd2d6c39614b87f4e88ea305acce8a35f.tar.gz qemu-0e1a46bbd2d6c39614b87f4e88ea305acce8a35f.tar.xz qemu-0e1a46bbd2d6c39614b87f4e88ea305acce8a35f.zip |
target/arm: Implement ARMv8M's PMSAv8 registers
As part of ARMv8M, we need to add support for the PMSAv8 MPU
architecture.
PMSAv8 differs from PMSAv7 both in register/data layout (for instance
using base and limit registers rather than base and size) and also in
behaviour (for example it does not have subregions); rather than
trying to wedge it into the existing PMSAv7 code and data structures,
we define separate ones.
This commit adds the data structures which hold the state for a
PMSAv8 MPU and the register interface to it. The implementation of
the MPU behaviour will be added in a subsequent commit.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 1503414539-28762-2-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 92771d3790..9fd5de7313 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -522,6 +522,19 @@ typedef struct CPUARMState { uint32_t rnr; } pmsav7; + /* PMSAv8 MPU */ + struct { + /* The PMSAv8 implementation also shares some PMSAv7 config + * and state: + * pmsav7.rnr (region number register) + * pmsav7_dregion (number of configured regions) + */ + uint32_t *rbar; + uint32_t *rlar; + uint32_t mair0; + uint32_t mair1; + } pmsav8; + void *nvic; const struct arm_boot_info *boot_info; /* Store GICv3CPUState to access from this struct */ |