Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git] / hw / s390x / s390-pci-kvm.c
blob9eef4fc3ec72ee68e5d2998f979ee595902b1723
1 /*
2 * s390 zPCI KVM interfaces
4 * Copyright 2022 IBM Corp.
5 * Author(s): Matthew Rosato <mjrosato@linux.ibm.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
9 * directory.
12 #include "qemu/osdep.h"
14 #include <linux/kvm.h>
16 #include "kvm/kvm_s390x.h"
17 #include "target/s390x/kvm/pv.h"
18 #include "hw/s390x/s390-pci-bus.h"
19 #include "hw/s390x/s390-pci-kvm.h"
20 #include "hw/s390x/s390-pci-inst.h"
21 #include "hw/s390x/s390-pci-vfio.h"
22 #include "cpu_models.h"
24 bool s390_pci_kvm_interp_allowed(void)
26 return kvm_s390_get_zpci_op() && !s390_is_pv();
29 int s390_pci_kvm_aif_enable(S390PCIBusDevice *pbdev, ZpciFib *fib, bool assist)
31 int rc;
32 struct kvm_s390_zpci_op args = {
33 .fh = pbdev->fh,
34 .op = KVM_S390_ZPCIOP_REG_AEN,
35 .u.reg_aen.ibv = fib->aibv,
36 .u.reg_aen.sb = fib->aisb,
37 .u.reg_aen.noi = FIB_DATA_NOI(fib->data),
38 .u.reg_aen.isc = FIB_DATA_ISC(fib->data),
39 .u.reg_aen.sbo = FIB_DATA_AISBO(fib->data),
40 .u.reg_aen.flags = (assist) ? 0 : KVM_S390_ZPCIOP_REGAEN_HOST
43 if (pbdev->aif) {
44 return -EINVAL;
47 rc = kvm_vm_ioctl(kvm_state, KVM_S390_ZPCI_OP, &args);
48 if (rc == 0) {
49 pbdev->aif = true;
52 return rc;
55 int s390_pci_kvm_aif_disable(S390PCIBusDevice *pbdev)
57 int rc;
59 struct kvm_s390_zpci_op args = {
60 .fh = pbdev->fh,
61 .op = KVM_S390_ZPCIOP_DEREG_AEN
64 if (!pbdev->aif) {
65 return -EINVAL;
69 * The device may have already been reset but we still want to relinquish
70 * the guest ISC, so always be sure to use an up-to-date host fh.
72 if (!s390_pci_get_host_fh(pbdev, &args.fh)) {
73 return -EPERM;
76 rc = kvm_vm_ioctl(kvm_state, KVM_S390_ZPCI_OP, &args);
77 if (rc == 0) {
78 pbdev->aif = false;
81 return rc;