1 /* SPDX-License-Identifier: GPL-2.0 */
3 * s390 kvm PCI passthrough support
5 * Copyright IBM Corp. 2022
10 #ifndef __KVM_S390_PCI_H
11 #define __KVM_S390_PCI_H
13 #include <linux/kvm.h>
14 #include <linux/kvm_host.h>
15 #include <linux/mutex.h>
16 #include <linux/pci.h>
21 struct zpci_dev *zdev;
24 struct list_head entry;
37 struct zpci_gaite *gait;
39 struct kvm_zdev **kzdev;
40 spinlock_t gait_lock; /* Protects the gait, used during AEN forward */
41 struct mutex aift_lock; /* Protects the other structures in aift */
44 extern struct zpci_aift *aift;
46 static inline struct kvm *kvm_s390_pci_si_to_kvm(struct zpci_aift *aift,
49 if (!IS_ENABLED(CONFIG_VFIO_PCI_ZDEV_KVM) || !aift->kzdev ||
52 return aift->kzdev[si]->kvm;
55 int kvm_s390_pci_aen_init(u8 nisc);
56 void kvm_s390_pci_aen_exit(void);
58 void kvm_s390_pci_init_list(struct kvm *kvm);
59 void kvm_s390_pci_clear_list(struct kvm *kvm);
61 int kvm_s390_pci_zpci_op(struct kvm *kvm, struct kvm_s390_zpci_op *args);
63 int __init kvm_s390_pci_init(void);
64 void kvm_s390_pci_exit(void);
66 static inline bool kvm_s390_pci_interp_allowed(void)
71 switch (cpu_id.machine) {
78 /* No SHM on certain machines */
81 return (IS_ENABLED(CONFIG_VFIO_PCI_ZDEV_KVM) &&
82 sclp.has_zpci_lsi && sclp.has_aeni && sclp.has_aisi &&
87 #endif /* __KVM_S390_PCI_H */