qemu-ppc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-ppc] [QEMU-PPC] [PATCH 2/3] target/ppc: Don't require private l1d


From: Suraj Jitindar Singh
Subject: [Qemu-ppc] [QEMU-PPC] [PATCH 2/3] target/ppc: Don't require private l1d cache on POWER8 for cap_ppc_safe_cache
Date: Fri, 11 May 2018 16:25:08 +1000

For cap_ppc_safe_cache to be set to workaround, we require both a l1d
cache flush instruction and private l1d cache.

On POWER8 don't require private l1d cache. This means a guest on a
POWER8 machine can make use of the cache flush workarounds.

Signed-off-by: Suraj Jitindar Singh <address@hidden>
---
 target/ppc/kvm.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/target/ppc/kvm.c b/target/ppc/kvm.c
index 2c0c34e125..7b33119b1a 100644
--- a/target/ppc/kvm.c
+++ b/target/ppc/kvm.c
@@ -2414,9 +2414,17 @@ bool kvmppc_has_cap_mmu_hash_v3(void)
 
 static int parse_cap_ppc_safe_cache(struct kvm_ppc_cpu_char c)
 {
+    PowerPCCPUClass *pcc = kvm_ppc_get_host_cpu_class();
+    bool l1d_thread_priv_req = true;
+
+    if (pcc->pvr_match(pcc, CPU_POWERPC_POWER8_BASE)) {
+        l1d_thread_priv_req = false;
+    }
+
     if (~c.behaviour & c.behaviour_mask & H_CPU_BEHAV_L1D_FLUSH_PR) {
         return 2;
-    } else if ((c.character & c.character_mask & H_CPU_CHAR_L1D_THREAD_PRIV) &&
+    } else if ((!l1d_thread_priv_req ||
+                c.character & c.character_mask & H_CPU_CHAR_L1D_THREAD_PRIV) &&
                (c.character & c.character_mask
                 & (H_CPU_CHAR_L1D_FLUSH_ORI30 | H_CPU_CHAR_L1D_FLUSH_TRIG2))) {
         return 1;
-- 
2.13.6




reply via email to

[Prev in Thread] Current Thread [Next in Thread]