qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC PATCH] booke206: fix MAS update on tlb miss
@ 2017-08-01  8:44 KONRAD Frederic
  2017-08-02  0:43 ` David Gibson
  2017-08-03 11:37 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
  0 siblings, 2 replies; 6+ messages in thread
From: KONRAD Frederic @ 2017-08-01  8:44 UTC (permalink / raw)
  To: david, agraf; +Cc: qemu-devel, qemu-ppc, frederic.konrad

When a tlb instruction miss happen, rw is set to 0 at the bottom
of cpu_ppc_handle_mmu_fault which cause the MAS update function to miss
the SAS and TS bit in MAS6, MAS1 in booke206_update_mas_tlb_miss.

Just calling booke206_update_mas_tlb_miss with rw = 2 solve the issue.

Signed-off-by: KONRAD Frederic <frederic.konrad@adacore.com>
---
 target/ppc/mmu_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c
index b7b9088..f06b938 100644
--- a/target/ppc/mmu_helper.c
+++ b/target/ppc/mmu_helper.c
@@ -1551,7 +1551,7 @@ static int cpu_ppc_handle_mmu_fault(CPUPPCState *env, target_ulong address,
                     env->spr[SPR_40x_ESR] = 0x00000000;
                     break;
                 case POWERPC_MMU_BOOKE206:
-                    booke206_update_mas_tlb_miss(env, address, rw);
+                    booke206_update_mas_tlb_miss(env, address, 2);
                     /* fall through */
                 case POWERPC_MMU_BOOKE:
                     cs->exception_index = POWERPC_EXCP_ITLB;
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-08-07 12:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-01  8:44 [Qemu-devel] [RFC PATCH] booke206: fix MAS update on tlb miss KONRAD Frederic
2017-08-02  0:43 ` David Gibson
2017-08-03 11:37 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
2017-08-03 12:08   ` KONRAD Frederic
2017-08-03 13:13     ` Thomas Huth
2017-08-07 12:49       ` KONRAD Frederic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).