aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorEdgar E. Iglesias <edgar.iglesias@xilinx.com>2018-04-17 18:17:40 +0200
committerEdgar E. Iglesias <edgar.iglesias@xilinx.com>2018-05-29 09:35:14 +0200
commit25ec2fdd7bb4957f15fa6153bf446d43dd7acb3e (patch)
treee9d6abcbdbf271bd616de39c8a11bad12987732a /target
parentf0f7e7f7b284f536389a3c5b67de681055325317 (diff)
downloadqemu-25ec2fdd7bb4957f15fa6153bf446d43dd7acb3e.zip
qemu-25ec2fdd7bb4957f15fa6153bf446d43dd7acb3e.tar.gz
qemu-25ec2fdd7bb4957f15fa6153bf446d43dd7acb3e.tar.bz2
target-microblaze: Allow address sizes between 32 and 64 bits
Allow address sizes between 32 and 64 bits. Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target')
-rw-r--r--target/microblaze/cpu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/target/microblaze/cpu.c b/target/microblaze/cpu.c
index 71fc8d0..9b546a2 100644
--- a/target/microblaze/cpu.c
+++ b/target/microblaze/cpu.c
@@ -155,9 +155,8 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
return;
}
- if (cpu->cfg.addr_size != 32) {
- error_setg(errp, "addr-size %d is out of range. "
- "Only 32bit is supported.",
+ if (cpu->cfg.addr_size < 32 || cpu->cfg.addr_size > 64) {
+ error_setg(errp, "addr-size %d is out of range (32 - 64)",
cpu->cfg.addr_size);
return;
}