]> git.karo-electronics.de Git - linux-beck.git/commitdiff
KVM: s390: vsie: support 64-bit-SCAO
authorDavid Hildenbrand <dahi@linux.vnet.ibm.com>
Wed, 25 Nov 2015 10:02:26 +0000 (11:02 +0100)
committerChristian Borntraeger <borntraeger@de.ibm.com>
Tue, 21 Jun 2016 07:43:39 +0000 (09:43 +0200)
Let's provide the 64-bit-SCAO facility to guest 2, so he can set up a SCA
for guest 3 that has a 64 bit address. Please note that we already require
the 64 bit SCAO for our vsie implementation, in order to forward the SCA
directly (by pinning the page).

Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
arch/s390/include/uapi/asm/kvm.h
arch/s390/kvm/kvm-s390.c
arch/s390/kvm/vsie.c

index 62423b1931c002bc35c4709982fb03c310eeff31..c5e4537e96d92e1bff6967dbead4269508f1208c 100644 (file)
@@ -99,6 +99,7 @@ struct kvm_s390_vm_cpu_machine {
 #define KVM_S390_VM_CPU_FEAT_NR_BITS   1024
 #define KVM_S390_VM_CPU_FEAT_ESOP      0
 #define KVM_S390_VM_CPU_FEAT_SIEF2     1
+#define KVM_S390_VM_CPU_FEAT_64BSCAO   2
 struct kvm_s390_vm_cpu_feat {
        __u64 feat[16];
 };
index 3fb124226e9796efcae9b0b18082e6564f96aaf2..e0c5a57bf58b9366331b7972760db38284962c8e 100644 (file)
@@ -265,6 +265,8 @@ static void kvm_s390_cpu_feat_init(void)
            !test_facility(3))
                return;
        allow_cpu_feat(KVM_S390_VM_CPU_FEAT_SIEF2);
+       if (sclp.has_64bscao)
+               allow_cpu_feat(KVM_S390_VM_CPU_FEAT_64BSCAO);
 }
 
 int kvm_arch_init(void *opaque)
index ebc988ffd3e50cb44110a4d1e4154a42bc0507bb..44e66c32902619dfbc69955980ad386d6efe0f76 100644 (file)
@@ -449,6 +449,8 @@ static void unpin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
        hpa = (u64) scb_s->scaoh << 32 | scb_s->scaol;
        if (hpa) {
                gpa = scb_o->scaol & ~0xfUL;
+               if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_64BSCAO))
+                       gpa |= (u64) scb_o->scaoh << 32;
                unpin_guest_page(vcpu->kvm, gpa, hpa);
                scb_s->scaol = 0;
                scb_s->scaoh = 0;
@@ -499,6 +501,8 @@ static int pin_blocks(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
        int rc = 0;
 
        gpa = scb_o->scaol & ~0xfUL;
+       if (test_kvm_cpu_feat(vcpu->kvm, KVM_S390_VM_CPU_FEAT_64BSCAO))
+               gpa |= (u64) scb_o->scaoh << 32;
        if (gpa) {
                if (!(gpa & ~0x1fffUL))
                        rc = set_validity_icpt(scb_s, 0x0038U);