Message ID | 20180516185146.30708-10-edgar.iglesias@gmail.com |
---|---|
State | New |
Headers | show |
Series | target-microblaze: Add support for Extended Addressing | expand |
On 05/16/2018 11:51 AM, Edgar E. Iglesias wrote: > - env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17); > + env->pvr.regs[11] = cpu->cfg.use_mmu ? PVR11_USE_MMU : 0 | > + 16 << 17; I believe this needs parenthesis around the ?:. r~
On Thu, May 17, 2018 at 10:26:00AM -0700, Richard Henderson wrote: > On 05/16/2018 11:51 AM, Edgar E. Iglesias wrote: > > - env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17); > > + env->pvr.regs[11] = cpu->cfg.use_mmu ? PVR11_USE_MMU : 0 | > > + 16 << 17; > > I believe this needs parenthesis around the ?:. Goot catch, I've fixed that for v4. Cheers, Edgar
diff --git a/target/microblaze/cpu.c b/target/microblaze/cpu.c index 06476f6efc..6fdf0fd223 100644 --- a/target/microblaze/cpu.c +++ b/target/microblaze/cpu.c @@ -201,7 +201,8 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp) PVR5_DCACHE_WRITEBACK_MASK : 0; env->pvr.regs[10] = 0x0c000000; /* Default to spartan 3a dsp family. */ - env->pvr.regs[11] = PVR11_USE_MMU | (16 << 17); + env->pvr.regs[11] = cpu->cfg.use_mmu ? PVR11_USE_MMU : 0 | + 16 << 17; mcc->parent_realize(dev, errp); }