diff options
author | Alistair Francis <alistair.francis@xilinx.com> | 2015-06-18 21:16:29 -0700 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2015-06-21 17:20:15 +1000 |
commit | 714461237083c1eadcb9d686f8ce4088737c1d0a (patch) | |
tree | 66599bcbe83d070ee1ee6d15e1278960bdf64bf3 /target-microblaze/cpu-qom.h | |
parent | be67e9ab9740d5a80e5c37bfd35247a4e449bc5a (diff) |
target-microblaze: Convert use-mmu to a CPU property
Originally the use-mmu PVR bits were manually set for each machine. This
is a hassle and difficult to read, instead set them based on the CPU
properties.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target-microblaze/cpu-qom.h')
-rw-r--r-- | target-microblaze/cpu-qom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-microblaze/cpu-qom.h b/target-microblaze/cpu-qom.h index aa9c0325cf..6bde2e9fc2 100644 --- a/target-microblaze/cpu-qom.h +++ b/target-microblaze/cpu-qom.h @@ -64,6 +64,7 @@ typedef struct MicroBlazeCPU { bool stackprot; uint32_t base_vectors; uint8_t use_fpu; + bool use_mmu; } cfg; CPUMBState env; |