qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC PATCH] vfio: add fixup for broken PCI devices
@ 2012-05-25  7:35 Alexey Kardashevskiy
  2012-05-25  8:28 ` Benjamin Herrenschmidt
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Alexey Kardashevskiy @ 2012-05-25  7:35 UTC (permalink / raw)
  To: Alex Williamson; +Cc: kvm, qemu-devel, Alex Graf, David Gibson

Some adapters (like NEC PCI USB controller) do not flush their config
on a sioftware reset and remember DMA config, etc.

If we use such an adapter with QEMU, then crash QEMU (stop it with
ctrl-A ctrl-X), and try to use it in QEMU again, it may start working
immediately with previous config when pci_enable_device() is called
on that PCI function.

To eliminate such effect, some quirk should be called. The proposed
pci_fixup_final does its job well for mentioned NEC PCI USB but not
sure if it is 100% correct.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 drivers/vfio/pci/vfio_pci.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c
index 1e5315c..6e7c12d 100644
--- a/drivers/vfio/pci/vfio_pci.c
+++ b/drivers/vfio/pci/vfio_pci.c
@@ -88,6 +88,8 @@ static void vfio_pci_disable(struct vfio_pci_device *vdev)
 {
 	int bar;
 
+	pci_fixup_device(pci_fixup_final, vdev->pdev);
+
 	pci_disable_device(vdev->pdev);
 
 	vfio_pci_set_irqs_ioctl(vdev, VFIO_IRQ_SET_DATA_NONE |
-- 
1.7.7.3

^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2012-08-21  2:31 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-25  7:35 [Qemu-devel] [RFC PATCH] vfio: add fixup for broken PCI devices Alexey Kardashevskiy
2012-05-25  8:28 ` Benjamin Herrenschmidt
2012-05-25 12:24   ` Alex Williamson
2012-05-25 12:36     ` Benjamin Herrenschmidt
2012-05-28 12:44 ` Michael S. Tsirkin
2012-05-28 12:48   ` Jan Kiszka
2012-05-28 13:15     ` Michael S. Tsirkin
2012-06-06 23:17 ` Alex Williamson
2012-06-07  2:52   ` Benjamin Herrenschmidt
2012-06-07  3:56     ` Alex Williamson
2012-06-07  4:37       ` Benjamin Herrenschmidt
2012-06-22  8:16   ` Alexey Kardashevskiy
2012-08-17 14:28     ` Alexey Kardashevskiy
2012-08-21  2:31       ` Alex Williamson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).