target/s390x: Indicate and check for local tlb clearing
authorDavid Hildenbrand <david@redhat.com>
Thu, 22 Jun 2017 09:41:49 +0000 (11:41 +0200)
committerRichard Henderson <rth@twiddle.net>
Fri, 23 Jun 2017 16:17:45 +0000 (09:17 -0700)
Let's allow to enable it for the qemu cpu model and correctly emulate
it.

Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20170622094151.28633-2-david@redhat.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
target/s390x/cpu_models.c
target/s390x/mem_helper.c
target/s390x/translate.c

index d4fcddb1d3bc5a44e579249fdc3e7a3a35477560..51b17b98f31114de75daae275f09d9f576d1f4e7 100644 (file)
@@ -688,6 +688,7 @@ static void add_qemu_cpu_model_features(S390FeatBitmap fbm)
         S390_FEAT_FLOATING_POINT_SUPPPORT_ENH,
         S390_FEAT_STFLE_45,
         S390_FEAT_STFLE_49,
+        S390_FEAT_LOCAL_TLB_CLEARING,
         S390_FEAT_STFLE_53,
     };
     int i;
index a0a805cd1b827dbdfc234bef5b2e2a9d4c170835..182c46f6b501309591c06841330109f3d7496267 100644 (file)
@@ -1629,8 +1629,6 @@ void HELPER(ipte)(CPUS390XState *env, uint64_t pto, uint64_t vaddr,
 
     /* XXX we exploit the fact that Linux passes the exact virtual
        address here - it's not obliged to! */
-    /* XXX: the LC bit should be considered as 0 if the local-TLB-clearing
-       facility is not installed.  */
     if (m4 & 1) {
         tlb_flush_page(cs, page);
     } else {
index df3fefab977ab2c55a89484bb3861c53fca39c3b..1db5f2d5b9c3d8e6de814a823e7759c2ac060feb 100644 (file)
@@ -2385,7 +2385,11 @@ static ExitStatus op_ipte(DisasContext *s, DisasOps *o)
     TCGv_i32 m4;
 
     check_privileged(s);
-    m4 = tcg_const_i32(get_field(s->fields, m4));
+    if (s390_has_feat(S390_FEAT_LOCAL_TLB_CLEARING)) {
+        m4 = tcg_const_i32(get_field(s->fields, m4));
+    } else {
+        m4 = tcg_const_i32(0);
+    }
     gen_helper_ipte(cpu_env, o->in1, o->in2, m4);
     tcg_temp_free_i32(m4);
     return NO_EXIT;