[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 1/8] booke:Use MMU API for creating initial mapping fo
From: |
Alexander Graf |
Subject: |
[Qemu-ppc] [PATCH 1/8] booke:Use MMU API for creating initial mapping for secondary cpus |
Date: |
Tue, 1 May 2012 10:58:53 +0200 |
From: Bharat Bhushan <address@hidden>
Initial Mapping creation for secondary CPU in SMP was missing new MMU API.
Signed-off-by: Bharat Bhushan <address@hidden>
Signed-off-by: Alexander Graf <address@hidden>
---
hw/ppce500_spin.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/hw/ppce500_spin.c b/hw/ppce500_spin.c
index 960b7b0..95a2825 100644
--- a/hw/ppce500_spin.c
+++ b/hw/ppce500_spin.c
@@ -86,6 +86,7 @@ static void mmubooke_create_initial_mapping(CPUPPCState *env,
tlb->mas2 = (va & TARGET_PAGE_MASK) | MAS2_M;
tlb->mas7_3 = pa & TARGET_PAGE_MASK;
tlb->mas7_3 |= MAS3_UR | MAS3_UW | MAS3_UX | MAS3_SR | MAS3_SW | MAS3_SX;
+ env->tlb_dirty = true;
}
static void spin_kick(void *data)
--
1.6.0.2
[Qemu-ppc] [PATCH 1/8] booke:Use MMU API for creating initial mapping for secondary cpus,
Alexander Graf <=
[Qemu-ppc] [PATCH 2/8] PPC: Fix up e500 cache size setting, Alexander Graf, 2012/05/01
[Qemu-ppc] [PATCH 8/8] target-ppc: Some support for dumping TLB_EMB TLBs, Alexander Graf, 2012/05/01
[Qemu-ppc] [PATCH 7/8] ppce500_spin: Replace assert by hw_error (fixes compiler warning), Alexander Graf, 2012/05/01
[Qemu-ppc] [PATCH 5/8] pseries: Use the same interrupt swizzling for host bridges as p2p bridges, Alexander Graf, 2012/05/01
[Qemu-ppc] [PATCH 4/8] pseries: Implement automatic PAPR VIO address allocation, Alexander Graf, 2012/05/01
[Qemu-ppc] [PATCH 6/8] pseries: Fix use of global CPU state, Alexander Graf, 2012/05/01