2 * Kernel-based Virtual Machine - device assignment support
4 * Copyright (C) 2010 Red Hat, Inc. and/or its affiliates.
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
11 #include <linux/kvm_host.h>
12 #include <linux/kvm.h>
13 #include <linux/uaccess.h>
14 #include <linux/vmalloc.h>
15 #include <linux/errno.h>
16 #include <linux/spinlock.h>
17 #include <linux/pci.h>
18 #include <linux/interrupt.h>
19 #include <linux/slab.h>
20 #include <linux/namei.h>
24 static struct kvm_assigned_dev_kernel *kvm_find_assigned_dev(struct list_head *head,
27 struct list_head *ptr;
28 struct kvm_assigned_dev_kernel *match;
30 list_for_each(ptr, head) {
31 match = list_entry(ptr, struct kvm_assigned_dev_kernel, list);
32 if (match->assigned_dev_id == assigned_dev_id)
38 static int find_index_from_host_irq(struct kvm_assigned_dev_kernel
39 *assigned_dev, int irq)
42 struct msix_entry *host_msix_entries;
44 host_msix_entries = assigned_dev->host_msix_entries;
47 for (i = 0; i < assigned_dev->entries_nr; i++)
48 if (irq == host_msix_entries[i].vector) {
53 printk(KERN_WARNING "Fail to find correlated MSI-X entry!\n");
58 static irqreturn_t kvm_assigned_dev_intx(int irq, void *dev_id)
60 struct kvm_assigned_dev_kernel *assigned_dev = dev_id;
63 spin_lock(&assigned_dev->intx_lock);
64 if (pci_check_and_mask_intx(assigned_dev->dev)) {
65 assigned_dev->host_irq_disabled = true;
66 ret = IRQ_WAKE_THREAD;
69 spin_unlock(&assigned_dev->intx_lock);
75 kvm_assigned_dev_raise_guest_irq(struct kvm_assigned_dev_kernel *assigned_dev,
78 if (unlikely(assigned_dev->irq_requested_type &
79 KVM_DEV_IRQ_GUEST_INTX)) {
80 spin_lock(&assigned_dev->intx_mask_lock);
81 if (!(assigned_dev->flags & KVM_DEV_ASSIGN_MASK_INTX))
82 kvm_set_irq(assigned_dev->kvm,
83 assigned_dev->irq_source_id, vector, 1,
85 spin_unlock(&assigned_dev->intx_mask_lock);
87 kvm_set_irq(assigned_dev->kvm, assigned_dev->irq_source_id,
91 static irqreturn_t kvm_assigned_dev_thread_intx(int irq, void *dev_id)
93 struct kvm_assigned_dev_kernel *assigned_dev = dev_id;
95 if (!(assigned_dev->flags & KVM_DEV_ASSIGN_PCI_2_3)) {
96 spin_lock_irq(&assigned_dev->intx_lock);
97 disable_irq_nosync(irq);
98 assigned_dev->host_irq_disabled = true;
99 spin_unlock_irq(&assigned_dev->intx_lock);
102 kvm_assigned_dev_raise_guest_irq(assigned_dev,
103 assigned_dev->guest_irq);
108 #ifdef __KVM_HAVE_MSI
109 static irqreturn_t kvm_assigned_dev_msi(int irq, void *dev_id)
111 struct kvm_assigned_dev_kernel *assigned_dev = dev_id;
112 int ret = kvm_set_irq_inatomic(assigned_dev->kvm,
113 assigned_dev->irq_source_id,
114 assigned_dev->guest_irq, 1);
115 return unlikely(ret == -EWOULDBLOCK) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
118 static irqreturn_t kvm_assigned_dev_thread_msi(int irq, void *dev_id)
120 struct kvm_assigned_dev_kernel *assigned_dev = dev_id;
122 kvm_assigned_dev_raise_guest_irq(assigned_dev,
123 assigned_dev->guest_irq);
129 #ifdef __KVM_HAVE_MSIX
130 static irqreturn_t kvm_assigned_dev_msix(int irq, void *dev_id)
132 struct kvm_assigned_dev_kernel *assigned_dev = dev_id;
133 int index = find_index_from_host_irq(assigned_dev, irq);
138 vector = assigned_dev->guest_msix_entries[index].vector;
139 ret = kvm_set_irq_inatomic(assigned_dev->kvm,
140 assigned_dev->irq_source_id,
144 return unlikely(ret == -EWOULDBLOCK) ? IRQ_WAKE_THREAD : IRQ_HANDLED;
147 static irqreturn_t kvm_assigned_dev_thread_msix(int irq, void *dev_id)
149 struct kvm_assigned_dev_kernel *assigned_dev = dev_id;
150 int index = find_index_from_host_irq(assigned_dev, irq);
154 vector = assigned_dev->guest_msix_entries[index].vector;
155 kvm_assigned_dev_raise_guest_irq(assigned_dev, vector);
162 /* Ack the irq line for an assigned device */
163 static void kvm_assigned_dev_ack_irq(struct kvm_irq_ack_notifier *kian)
165 struct kvm_assigned_dev_kernel *dev =
166 container_of(kian, struct kvm_assigned_dev_kernel,
169 kvm_set_irq(dev->kvm, dev->irq_source_id, dev->guest_irq, 0, false);
171 spin_lock(&dev->intx_mask_lock);
173 if (!(dev->flags & KVM_DEV_ASSIGN_MASK_INTX)) {
174 bool reassert = false;
176 spin_lock_irq(&dev->intx_lock);
178 * The guest IRQ may be shared so this ack can come from an
179 * IRQ for another guest device.
181 if (dev->host_irq_disabled) {
182 if (!(dev->flags & KVM_DEV_ASSIGN_PCI_2_3))
183 enable_irq(dev->host_irq);
184 else if (!pci_check_and_unmask_intx(dev->dev))
186 dev->host_irq_disabled = reassert;
188 spin_unlock_irq(&dev->intx_lock);
191 kvm_set_irq(dev->kvm, dev->irq_source_id,
192 dev->guest_irq, 1, false);
195 spin_unlock(&dev->intx_mask_lock);
198 static void deassign_guest_irq(struct kvm *kvm,
199 struct kvm_assigned_dev_kernel *assigned_dev)
201 if (assigned_dev->ack_notifier.gsi != -1)
202 kvm_unregister_irq_ack_notifier(kvm,
203 &assigned_dev->ack_notifier);
205 kvm_set_irq(assigned_dev->kvm, assigned_dev->irq_source_id,
206 assigned_dev->guest_irq, 0, false);
208 if (assigned_dev->irq_source_id != -1)
209 kvm_free_irq_source_id(kvm, assigned_dev->irq_source_id);
210 assigned_dev->irq_source_id = -1;
211 assigned_dev->irq_requested_type &= ~(KVM_DEV_IRQ_GUEST_MASK);
214 /* The function implicit hold kvm->lock mutex due to cancel_work_sync() */
215 static void deassign_host_irq(struct kvm *kvm,
216 struct kvm_assigned_dev_kernel *assigned_dev)
219 * We disable irq here to prevent further events.
221 * Notice this maybe result in nested disable if the interrupt type is
222 * INTx, but it's OK for we are going to free it.
224 * If this function is a part of VM destroy, please ensure that till
225 * now, the kvm state is still legal for probably we also have to wait
226 * on a currently running IRQ handler.
228 if (assigned_dev->irq_requested_type & KVM_DEV_IRQ_HOST_MSIX) {
230 for (i = 0; i < assigned_dev->entries_nr; i++)
231 disable_irq(assigned_dev->host_msix_entries[i].vector);
233 for (i = 0; i < assigned_dev->entries_nr; i++)
234 free_irq(assigned_dev->host_msix_entries[i].vector,
237 assigned_dev->entries_nr = 0;
238 kfree(assigned_dev->host_msix_entries);
239 kfree(assigned_dev->guest_msix_entries);
240 pci_disable_msix(assigned_dev->dev);
242 /* Deal with MSI and INTx */
243 if ((assigned_dev->irq_requested_type &
244 KVM_DEV_IRQ_HOST_INTX) &&
245 (assigned_dev->flags & KVM_DEV_ASSIGN_PCI_2_3)) {
246 spin_lock_irq(&assigned_dev->intx_lock);
247 pci_intx(assigned_dev->dev, false);
248 spin_unlock_irq(&assigned_dev->intx_lock);
249 synchronize_irq(assigned_dev->host_irq);
251 disable_irq(assigned_dev->host_irq);
253 free_irq(assigned_dev->host_irq, assigned_dev);
255 if (assigned_dev->irq_requested_type & KVM_DEV_IRQ_HOST_MSI)
256 pci_disable_msi(assigned_dev->dev);
259 assigned_dev->irq_requested_type &= ~(KVM_DEV_IRQ_HOST_MASK);
262 static int kvm_deassign_irq(struct kvm *kvm,
263 struct kvm_assigned_dev_kernel *assigned_dev,
264 unsigned long irq_requested_type)
266 unsigned long guest_irq_type, host_irq_type;
268 if (!irqchip_in_kernel(kvm))
270 /* no irq assignment to deassign */
271 if (!assigned_dev->irq_requested_type)
274 host_irq_type = irq_requested_type & KVM_DEV_IRQ_HOST_MASK;
275 guest_irq_type = irq_requested_type & KVM_DEV_IRQ_GUEST_MASK;
278 deassign_host_irq(kvm, assigned_dev);
280 deassign_guest_irq(kvm, assigned_dev);
285 static void kvm_free_assigned_irq(struct kvm *kvm,
286 struct kvm_assigned_dev_kernel *assigned_dev)
288 kvm_deassign_irq(kvm, assigned_dev, assigned_dev->irq_requested_type);
291 static void kvm_free_assigned_device(struct kvm *kvm,
292 struct kvm_assigned_dev_kernel
295 kvm_free_assigned_irq(kvm, assigned_dev);
297 pci_reset_function(assigned_dev->dev);
298 if (pci_load_and_free_saved_state(assigned_dev->dev,
299 &assigned_dev->pci_saved_state))
300 printk(KERN_INFO "%s: Couldn't reload %s saved state\n",
301 __func__, dev_name(&assigned_dev->dev->dev));
303 pci_restore_state(assigned_dev->dev);
305 assigned_dev->dev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
307 pci_release_regions(assigned_dev->dev);
308 pci_disable_device(assigned_dev->dev);
309 pci_dev_put(assigned_dev->dev);
311 list_del(&assigned_dev->list);
315 void kvm_free_all_assigned_devices(struct kvm *kvm)
317 struct list_head *ptr, *ptr2;
318 struct kvm_assigned_dev_kernel *assigned_dev;
320 list_for_each_safe(ptr, ptr2, &kvm->arch.assigned_dev_head) {
321 assigned_dev = list_entry(ptr,
322 struct kvm_assigned_dev_kernel,
325 kvm_free_assigned_device(kvm, assigned_dev);
329 static int assigned_device_enable_host_intx(struct kvm *kvm,
330 struct kvm_assigned_dev_kernel *dev)
332 irq_handler_t irq_handler;
335 dev->host_irq = dev->dev->irq;
338 * We can only share the IRQ line with other host devices if we are
339 * able to disable the IRQ source at device-level - independently of
340 * the guest driver. Otherwise host devices may suffer from unbounded
341 * IRQ latencies when the guest keeps the line asserted.
343 if (dev->flags & KVM_DEV_ASSIGN_PCI_2_3) {
344 irq_handler = kvm_assigned_dev_intx;
348 flags = IRQF_ONESHOT;
350 if (request_threaded_irq(dev->host_irq, irq_handler,
351 kvm_assigned_dev_thread_intx, flags,
355 if (dev->flags & KVM_DEV_ASSIGN_PCI_2_3) {
356 spin_lock_irq(&dev->intx_lock);
357 pci_intx(dev->dev, true);
358 spin_unlock_irq(&dev->intx_lock);
363 #ifdef __KVM_HAVE_MSI
364 static int assigned_device_enable_host_msi(struct kvm *kvm,
365 struct kvm_assigned_dev_kernel *dev)
369 if (!dev->dev->msi_enabled) {
370 r = pci_enable_msi(dev->dev);
375 dev->host_irq = dev->dev->irq;
376 if (request_threaded_irq(dev->host_irq, kvm_assigned_dev_msi,
377 kvm_assigned_dev_thread_msi, 0,
378 dev->irq_name, dev)) {
379 pci_disable_msi(dev->dev);
387 #ifdef __KVM_HAVE_MSIX
388 static int assigned_device_enable_host_msix(struct kvm *kvm,
389 struct kvm_assigned_dev_kernel *dev)
393 /* host_msix_entries and guest_msix_entries should have been
395 if (dev->entries_nr == 0)
398 r = pci_enable_msix(dev->dev, dev->host_msix_entries, dev->entries_nr);
402 for (i = 0; i < dev->entries_nr; i++) {
403 r = request_threaded_irq(dev->host_msix_entries[i].vector,
404 kvm_assigned_dev_msix,
405 kvm_assigned_dev_thread_msix,
406 0, dev->irq_name, dev);
413 for (i -= 1; i >= 0; i--)
414 free_irq(dev->host_msix_entries[i].vector, dev);
415 pci_disable_msix(dev->dev);
421 static int assigned_device_enable_guest_intx(struct kvm *kvm,
422 struct kvm_assigned_dev_kernel *dev,
423 struct kvm_assigned_irq *irq)
425 dev->guest_irq = irq->guest_irq;
426 dev->ack_notifier.gsi = irq->guest_irq;
430 #ifdef __KVM_HAVE_MSI
431 static int assigned_device_enable_guest_msi(struct kvm *kvm,
432 struct kvm_assigned_dev_kernel *dev,
433 struct kvm_assigned_irq *irq)
435 dev->guest_irq = irq->guest_irq;
436 dev->ack_notifier.gsi = -1;
441 #ifdef __KVM_HAVE_MSIX
442 static int assigned_device_enable_guest_msix(struct kvm *kvm,
443 struct kvm_assigned_dev_kernel *dev,
444 struct kvm_assigned_irq *irq)
446 dev->guest_irq = irq->guest_irq;
447 dev->ack_notifier.gsi = -1;
452 static int assign_host_irq(struct kvm *kvm,
453 struct kvm_assigned_dev_kernel *dev,
458 if (dev->irq_requested_type & KVM_DEV_IRQ_HOST_MASK)
461 snprintf(dev->irq_name, sizeof(dev->irq_name), "kvm:%s",
464 switch (host_irq_type) {
465 case KVM_DEV_IRQ_HOST_INTX:
466 r = assigned_device_enable_host_intx(kvm, dev);
468 #ifdef __KVM_HAVE_MSI
469 case KVM_DEV_IRQ_HOST_MSI:
470 r = assigned_device_enable_host_msi(kvm, dev);
473 #ifdef __KVM_HAVE_MSIX
474 case KVM_DEV_IRQ_HOST_MSIX:
475 r = assigned_device_enable_host_msix(kvm, dev);
481 dev->host_irq_disabled = false;
484 dev->irq_requested_type |= host_irq_type;
489 static int assign_guest_irq(struct kvm *kvm,
490 struct kvm_assigned_dev_kernel *dev,
491 struct kvm_assigned_irq *irq,
492 unsigned long guest_irq_type)
497 if (dev->irq_requested_type & KVM_DEV_IRQ_GUEST_MASK)
500 id = kvm_request_irq_source_id(kvm);
504 dev->irq_source_id = id;
506 switch (guest_irq_type) {
507 case KVM_DEV_IRQ_GUEST_INTX:
508 r = assigned_device_enable_guest_intx(kvm, dev, irq);
510 #ifdef __KVM_HAVE_MSI
511 case KVM_DEV_IRQ_GUEST_MSI:
512 r = assigned_device_enable_guest_msi(kvm, dev, irq);
515 #ifdef __KVM_HAVE_MSIX
516 case KVM_DEV_IRQ_GUEST_MSIX:
517 r = assigned_device_enable_guest_msix(kvm, dev, irq);
525 dev->irq_requested_type |= guest_irq_type;
526 if (dev->ack_notifier.gsi != -1)
527 kvm_register_irq_ack_notifier(kvm, &dev->ack_notifier);
529 kvm_free_irq_source_id(kvm, dev->irq_source_id);
534 /* TODO Deal with KVM_DEV_IRQ_ASSIGNED_MASK_MSIX */
535 static int kvm_vm_ioctl_assign_irq(struct kvm *kvm,
536 struct kvm_assigned_irq *assigned_irq)
539 struct kvm_assigned_dev_kernel *match;
540 unsigned long host_irq_type, guest_irq_type;
542 if (!irqchip_in_kernel(kvm))
545 mutex_lock(&kvm->lock);
547 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
548 assigned_irq->assigned_dev_id);
552 host_irq_type = (assigned_irq->flags & KVM_DEV_IRQ_HOST_MASK);
553 guest_irq_type = (assigned_irq->flags & KVM_DEV_IRQ_GUEST_MASK);
556 /* can only assign one type at a time */
557 if (hweight_long(host_irq_type) > 1)
559 if (hweight_long(guest_irq_type) > 1)
561 if (host_irq_type == 0 && guest_irq_type == 0)
566 r = assign_host_irq(kvm, match, host_irq_type);
571 r = assign_guest_irq(kvm, match, assigned_irq, guest_irq_type);
573 mutex_unlock(&kvm->lock);
577 static int kvm_vm_ioctl_deassign_dev_irq(struct kvm *kvm,
578 struct kvm_assigned_irq
582 struct kvm_assigned_dev_kernel *match;
583 unsigned long irq_type;
585 mutex_lock(&kvm->lock);
587 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
588 assigned_irq->assigned_dev_id);
592 irq_type = assigned_irq->flags & (KVM_DEV_IRQ_HOST_MASK |
593 KVM_DEV_IRQ_GUEST_MASK);
594 r = kvm_deassign_irq(kvm, match, irq_type);
596 mutex_unlock(&kvm->lock);
601 * We want to test whether the caller has been granted permissions to
602 * use this device. To be able to configure and control the device,
603 * the user needs access to PCI configuration space and BAR resources.
604 * These are accessed through PCI sysfs. PCI config space is often
605 * passed to the process calling this ioctl via file descriptor, so we
606 * can't rely on access to that file. We can check for permissions
607 * on each of the BAR resource files, which is a pretty clear
608 * indicator that the user has been granted access to the device.
610 static int probe_sysfs_permissions(struct pci_dev *dev)
614 bool bar_found = false;
616 for (i = PCI_STD_RESOURCES; i <= PCI_STD_RESOURCE_END; i++) {
617 char *kpath, *syspath;
622 if (!pci_resource_len(dev, i))
625 kpath = kobject_get_path(&dev->dev.kobj, GFP_KERNEL);
629 /* Per sysfs-rules, sysfs is always at /sys */
630 syspath = kasprintf(GFP_KERNEL, "/sys%s/resource%d", kpath, i);
635 r = kern_path(syspath, LOOKUP_FOLLOW, &path);
640 inode = path.dentry->d_inode;
642 r = inode_permission(inode, MAY_READ | MAY_WRITE | MAY_ACCESS);
650 /* If no resources, probably something special */
656 return -EINVAL; /* No way to control the device without sysfs */
660 static int kvm_vm_ioctl_assign_device(struct kvm *kvm,
661 struct kvm_assigned_pci_dev *assigned_dev)
664 struct kvm_assigned_dev_kernel *match;
667 if (!(assigned_dev->flags & KVM_DEV_ASSIGN_ENABLE_IOMMU))
670 mutex_lock(&kvm->lock);
671 idx = srcu_read_lock(&kvm->srcu);
673 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
674 assigned_dev->assigned_dev_id);
676 /* device already assigned */
681 match = kzalloc(sizeof(struct kvm_assigned_dev_kernel), GFP_KERNEL);
683 printk(KERN_INFO "%s: Couldn't allocate memory\n",
688 dev = pci_get_domain_bus_and_slot(assigned_dev->segnr,
690 assigned_dev->devfn);
692 printk(KERN_INFO "%s: host device not found\n", __func__);
697 /* Don't allow bridges to be assigned */
698 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL) {
703 r = probe_sysfs_permissions(dev);
707 if (pci_enable_device(dev)) {
708 printk(KERN_INFO "%s: Could not enable PCI device\n", __func__);
712 r = pci_request_regions(dev, "kvm_assigned_device");
714 printk(KERN_INFO "%s: Could not get access to device regions\n",
719 pci_reset_function(dev);
721 match->pci_saved_state = pci_store_saved_state(dev);
722 if (!match->pci_saved_state)
723 printk(KERN_DEBUG "%s: Couldn't store %s saved state\n",
724 __func__, dev_name(&dev->dev));
726 if (!pci_intx_mask_supported(dev))
727 assigned_dev->flags &= ~KVM_DEV_ASSIGN_PCI_2_3;
729 match->assigned_dev_id = assigned_dev->assigned_dev_id;
730 match->host_segnr = assigned_dev->segnr;
731 match->host_busnr = assigned_dev->busnr;
732 match->host_devfn = assigned_dev->devfn;
733 match->flags = assigned_dev->flags;
735 spin_lock_init(&match->intx_lock);
736 spin_lock_init(&match->intx_mask_lock);
737 match->irq_source_id = -1;
739 match->ack_notifier.irq_acked = kvm_assigned_dev_ack_irq;
741 list_add(&match->list, &kvm->arch.assigned_dev_head);
743 if (!kvm->arch.iommu_domain) {
744 r = kvm_iommu_map_guest(kvm);
748 r = kvm_assign_device(kvm, match);
753 srcu_read_unlock(&kvm->srcu, idx);
754 mutex_unlock(&kvm->lock);
757 if (pci_load_and_free_saved_state(dev, &match->pci_saved_state))
758 printk(KERN_INFO "%s: Couldn't reload %s saved state\n",
759 __func__, dev_name(&dev->dev));
760 list_del(&match->list);
761 pci_release_regions(dev);
763 pci_disable_device(dev);
768 srcu_read_unlock(&kvm->srcu, idx);
769 mutex_unlock(&kvm->lock);
773 static int kvm_vm_ioctl_deassign_device(struct kvm *kvm,
774 struct kvm_assigned_pci_dev *assigned_dev)
777 struct kvm_assigned_dev_kernel *match;
779 mutex_lock(&kvm->lock);
781 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
782 assigned_dev->assigned_dev_id);
784 printk(KERN_INFO "%s: device hasn't been assigned before, "
785 "so cannot be deassigned\n", __func__);
790 kvm_deassign_device(kvm, match);
792 kvm_free_assigned_device(kvm, match);
795 mutex_unlock(&kvm->lock);
800 #ifdef __KVM_HAVE_MSIX
801 static int kvm_vm_ioctl_set_msix_nr(struct kvm *kvm,
802 struct kvm_assigned_msix_nr *entry_nr)
805 struct kvm_assigned_dev_kernel *adev;
807 mutex_lock(&kvm->lock);
809 adev = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
810 entry_nr->assigned_dev_id);
816 if (adev->entries_nr == 0) {
817 adev->entries_nr = entry_nr->entry_nr;
818 if (adev->entries_nr == 0 ||
819 adev->entries_nr > KVM_MAX_MSIX_PER_DEV) {
824 adev->host_msix_entries = kzalloc(sizeof(struct msix_entry) *
827 if (!adev->host_msix_entries) {
831 adev->guest_msix_entries =
832 kzalloc(sizeof(struct msix_entry) * entry_nr->entry_nr,
834 if (!adev->guest_msix_entries) {
835 kfree(adev->host_msix_entries);
839 } else /* Not allowed set MSI-X number twice */
842 mutex_unlock(&kvm->lock);
846 static int kvm_vm_ioctl_set_msix_entry(struct kvm *kvm,
847 struct kvm_assigned_msix_entry *entry)
850 struct kvm_assigned_dev_kernel *adev;
852 mutex_lock(&kvm->lock);
854 adev = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
855 entry->assigned_dev_id);
862 for (i = 0; i < adev->entries_nr; i++)
863 if (adev->guest_msix_entries[i].vector == 0 ||
864 adev->guest_msix_entries[i].entry == entry->entry) {
865 adev->guest_msix_entries[i].entry = entry->entry;
866 adev->guest_msix_entries[i].vector = entry->gsi;
867 adev->host_msix_entries[i].entry = entry->entry;
870 if (i == adev->entries_nr) {
876 mutex_unlock(&kvm->lock);
882 static int kvm_vm_ioctl_set_pci_irq_mask(struct kvm *kvm,
883 struct kvm_assigned_pci_dev *assigned_dev)
886 struct kvm_assigned_dev_kernel *match;
888 mutex_lock(&kvm->lock);
890 match = kvm_find_assigned_dev(&kvm->arch.assigned_dev_head,
891 assigned_dev->assigned_dev_id);
897 spin_lock(&match->intx_mask_lock);
899 match->flags &= ~KVM_DEV_ASSIGN_MASK_INTX;
900 match->flags |= assigned_dev->flags & KVM_DEV_ASSIGN_MASK_INTX;
902 if (match->irq_requested_type & KVM_DEV_IRQ_GUEST_INTX) {
903 if (assigned_dev->flags & KVM_DEV_ASSIGN_MASK_INTX) {
904 kvm_set_irq(match->kvm, match->irq_source_id,
905 match->guest_irq, 0, false);
907 * Masking at hardware-level is performed on demand,
908 * i.e. when an IRQ actually arrives at the host.
910 } else if (!(assigned_dev->flags & KVM_DEV_ASSIGN_PCI_2_3)) {
912 * Unmask the IRQ line if required. Unmasking at
913 * device level will be performed by user space.
915 spin_lock_irq(&match->intx_lock);
916 if (match->host_irq_disabled) {
917 enable_irq(match->host_irq);
918 match->host_irq_disabled = false;
920 spin_unlock_irq(&match->intx_lock);
924 spin_unlock(&match->intx_mask_lock);
927 mutex_unlock(&kvm->lock);
931 long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
934 void __user *argp = (void __user *)arg;
938 case KVM_ASSIGN_PCI_DEVICE: {
939 struct kvm_assigned_pci_dev assigned_dev;
942 if (copy_from_user(&assigned_dev, argp, sizeof assigned_dev))
944 r = kvm_vm_ioctl_assign_device(kvm, &assigned_dev);
949 case KVM_ASSIGN_IRQ: {
953 case KVM_ASSIGN_DEV_IRQ: {
954 struct kvm_assigned_irq assigned_irq;
957 if (copy_from_user(&assigned_irq, argp, sizeof assigned_irq))
959 r = kvm_vm_ioctl_assign_irq(kvm, &assigned_irq);
964 case KVM_DEASSIGN_DEV_IRQ: {
965 struct kvm_assigned_irq assigned_irq;
968 if (copy_from_user(&assigned_irq, argp, sizeof assigned_irq))
970 r = kvm_vm_ioctl_deassign_dev_irq(kvm, &assigned_irq);
975 case KVM_DEASSIGN_PCI_DEVICE: {
976 struct kvm_assigned_pci_dev assigned_dev;
979 if (copy_from_user(&assigned_dev, argp, sizeof assigned_dev))
981 r = kvm_vm_ioctl_deassign_device(kvm, &assigned_dev);
986 #ifdef __KVM_HAVE_MSIX
987 case KVM_ASSIGN_SET_MSIX_NR: {
988 struct kvm_assigned_msix_nr entry_nr;
990 if (copy_from_user(&entry_nr, argp, sizeof entry_nr))
992 r = kvm_vm_ioctl_set_msix_nr(kvm, &entry_nr);
997 case KVM_ASSIGN_SET_MSIX_ENTRY: {
998 struct kvm_assigned_msix_entry entry;
1000 if (copy_from_user(&entry, argp, sizeof entry))
1002 r = kvm_vm_ioctl_set_msix_entry(kvm, &entry);
1008 case KVM_ASSIGN_SET_INTX_MASK: {
1009 struct kvm_assigned_pci_dev assigned_dev;
1012 if (copy_from_user(&assigned_dev, argp, sizeof assigned_dev))
1014 r = kvm_vm_ioctl_set_pci_irq_mask(kvm, &assigned_dev);