Skip to content

Commit

Permalink
sparc: fix leon3 casa instruction when MMU is disabled
Browse files Browse the repository at this point in the history
Since the commit af7a06b:
`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>
  • Loading branch information
KONRAD Frederic authored and mcayland committed Mar 8, 2018
1 parent 12850b1 commit 6e10f37
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions target/sparc/translate.c
Expand Up @@ -2093,6 +2093,11 @@ static DisasASI get_asi(DisasContext *dc, int insn, TCGMemOp memop)
type = GET_ASI_BFILL;
break;
}

/* MMU_PHYS_IDX is used when the MMU is disabled to passthrough the
* permissions check in get_physical_address(..).
*/
mem_idx = (dc->mem_idx == MMU_PHYS_IDX) ? MMU_PHYS_IDX : mem_idx;
} else {
gen_exception(dc, TT_PRIV_INSN);
type = GET_ASI_EXCP;
Expand Down

0 comments on commit 6e10f37

Please sign in to comment.