]> git.ipfire.org Git - thirdparty/qemu.git/commit
sparc: fix leon3 casa instruction when MMU is disabled
authorKONRAD Frederic <frederic.konrad@adacore.com>
Fri, 2 Mar 2018 09:59:25 +0000 (10:59 +0100)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Thu, 21 Jun 2018 01:44:58 +0000 (20:44 -0500)
commit499211829d4bb85aab018dfe2c42d9e9881c3690
treebc6fa03a22943a8e9f441d6e5c8eca989f408879
parente1f5a04d17d88ee490408766dfdaa814ab91895f
sparc: fix leon3 casa instruction when MMU is disabled

Since the commit af7a06bac7d3abb2da48ef3277d2a415772d2ae8:
`casa [..](10), .., ..` (and probably others alternate space instructions)
triggers a data access exception when the MMU is disabled.

When we enter get_asi(...) dc->mem_idx is set to MMU_PHYS_IDX when the MMU
is disabled. Just keep mem_idx unchanged in this case so we passthrough the
MMU when it is disabled.

Signed-off-by: KONRAD Frederic <frederic.konrad@adacore.com>
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
(cherry picked from commit 6e10f37c86068e35151f982c976a85f1bec07ef2)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
target/sparc/translate.c