diff options
author | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2019-01-04 15:05:10 +0100 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@xilinx.com> | 2019-01-22 03:17:34 -0800 |
commit | 2867a96ffb63fa363820e4b0110b96a06218068b (patch) | |
tree | 6b807b33f84eb513497e476fc385bbf0281ad3f3 /target/microblaze/cpu.h | |
parent | 619ddf5b1a518711b1d679a319f2a7aeb7bff7aa (diff) | |
download | qemu-2867a96ffb63fa363820e4b0110b96a06218068b.zip qemu-2867a96ffb63fa363820e4b0110b96a06218068b.tar.gz qemu-2867a96ffb63fa363820e4b0110b96a06218068b.tar.bz2 |
target/microblaze: Add props enabling exceptions on failed bus accesses
Add MicroBlaze CPU properties to enable exceptions on failed
bus accesses.
Reviewed-by: Luc Michel <luc.michel@greensocs.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target/microblaze/cpu.h')
-rw-r--r-- | target/microblaze/cpu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index 03ca910..792bbc9 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -308,6 +308,8 @@ struct MicroBlazeCPU { bool use_mmu; bool dcache_writeback; bool endi; + bool dopb_bus_exception; + bool iopb_bus_exception; char *version; uint8_t pvr; } cfg; |