|
|
@@ -45,6 +45,7 @@
|
|
|
#include <asm/debugreg.h>
|
|
|
#include <asm/kexec.h>
|
|
|
#include <asm/apic.h>
|
|
|
+#include <asm/irq_remapping.h>
|
|
|
|
|
|
#include "trace.h"
|
|
|
#include "pmu.h"
|
|
|
@@ -603,6 +604,11 @@ static inline struct vcpu_vmx *to_vmx(struct kvm_vcpu *vcpu)
|
|
|
return container_of(vcpu, struct vcpu_vmx, vcpu);
|
|
|
}
|
|
|
|
|
|
+static struct pi_desc *vcpu_to_pi_desc(struct kvm_vcpu *vcpu)
|
|
|
+{
|
|
|
+ return &(to_vmx(vcpu)->pi_desc);
|
|
|
+}
|
|
|
+
|
|
|
#define VMCS12_OFFSET(x) offsetof(struct vmcs12, x)
|
|
|
#define FIELD(number, name) [number] = VMCS12_OFFSET(name)
|
|
|
#define FIELD64(number, name) [number] = VMCS12_OFFSET(name), \
|
|
|
@@ -10345,6 +10351,81 @@ static void vmx_enable_log_dirty_pt_masked(struct kvm *kvm,
|
|
|
kvm_mmu_clear_dirty_pt_masked(kvm, memslot, offset, mask);
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * vmx_update_pi_irte - set IRTE for Posted-Interrupts
|
|
|
+ *
|
|
|
+ * @kvm: kvm
|
|
|
+ * @host_irq: host irq of the interrupt
|
|
|
+ * @guest_irq: gsi of the interrupt
|
|
|
+ * @set: set or unset PI
|
|
|
+ * returns 0 on success, < 0 on failure
|
|
|
+ */
|
|
|
+static int vmx_update_pi_irte(struct kvm *kvm, unsigned int host_irq,
|
|
|
+ uint32_t guest_irq, bool set)
|
|
|
+{
|
|
|
+ struct kvm_kernel_irq_routing_entry *e;
|
|
|
+ struct kvm_irq_routing_table *irq_rt;
|
|
|
+ struct kvm_lapic_irq irq;
|
|
|
+ struct kvm_vcpu *vcpu;
|
|
|
+ struct vcpu_data vcpu_info;
|
|
|
+ int idx, ret = -EINVAL;
|
|
|
+
|
|
|
+ if (!kvm_arch_has_assigned_device(kvm) ||
|
|
|
+ !irq_remapping_cap(IRQ_POSTING_CAP))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ idx = srcu_read_lock(&kvm->irq_srcu);
|
|
|
+ irq_rt = srcu_dereference(kvm->irq_routing, &kvm->irq_srcu);
|
|
|
+ BUG_ON(guest_irq >= irq_rt->nr_rt_entries);
|
|
|
+
|
|
|
+ hlist_for_each_entry(e, &irq_rt->map[guest_irq], link) {
|
|
|
+ if (e->type != KVM_IRQ_ROUTING_MSI)
|
|
|
+ continue;
|
|
|
+ /*
|
|
|
+ * VT-d PI cannot support posting multicast/broadcast
|
|
|
+ * interrupts to a vCPU, we still use interrupt remapping
|
|
|
+ * for these kind of interrupts.
|
|
|
+ *
|
|
|
+ * For lowest-priority interrupts, we only support
|
|
|
+ * those with single CPU as the destination, e.g. user
|
|
|
+ * configures the interrupts via /proc/irq or uses
|
|
|
+ * irqbalance to make the interrupts single-CPU.
|
|
|
+ *
|
|
|
+ * We will support full lowest-priority interrupt later.
|
|
|
+ */
|
|
|
+
|
|
|
+ kvm_set_msi_irq(e, &irq);
|
|
|
+ if (!kvm_intr_is_single_vcpu(kvm, &irq, &vcpu))
|
|
|
+ continue;
|
|
|
+
|
|
|
+ vcpu_info.pi_desc_addr = __pa(vcpu_to_pi_desc(vcpu));
|
|
|
+ vcpu_info.vector = irq.vector;
|
|
|
+
|
|
|
+ trace_kvm_pi_irte_update(vcpu->vcpu_id, e->gsi,
|
|
|
+ vcpu_info.vector, vcpu_info.pi_desc_addr, set);
|
|
|
+
|
|
|
+ if (set)
|
|
|
+ ret = irq_set_vcpu_affinity(host_irq, &vcpu_info);
|
|
|
+ else {
|
|
|
+ /* suppress notification event before unposting */
|
|
|
+ pi_set_sn(vcpu_to_pi_desc(vcpu));
|
|
|
+ ret = irq_set_vcpu_affinity(host_irq, NULL);
|
|
|
+ pi_clear_sn(vcpu_to_pi_desc(vcpu));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ret < 0) {
|
|
|
+ printk(KERN_INFO "%s: failed to update PI IRTE\n",
|
|
|
+ __func__);
|
|
|
+ goto out;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ ret = 0;
|
|
|
+out:
|
|
|
+ srcu_read_unlock(&kvm->irq_srcu, idx);
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
static struct kvm_x86_ops vmx_x86_ops = {
|
|
|
.cpu_has_kvm_support = cpu_has_kvm_support,
|
|
|
.disabled_by_bios = vmx_disabled_by_bios,
|
|
|
@@ -10462,6 +10543,8 @@ static struct kvm_x86_ops vmx_x86_ops = {
|
|
|
.enable_log_dirty_pt_masked = vmx_enable_log_dirty_pt_masked,
|
|
|
|
|
|
.pmu_ops = &intel_pmu_ops,
|
|
|
+
|
|
|
+ .update_pi_irte = vmx_update_pi_irte,
|
|
|
};
|
|
|
|
|
|
static int __init vmx_init(void)
|