From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60590) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXptS-0000SS-HS for qemu-devel@nongnu.org; Fri, 25 May 2012 04:29:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXptM-0006TM-JV for qemu-devel@nongnu.org; Fri, 25 May 2012 04:29:06 -0400 Received: from gate.crashing.org ([63.228.1.57]:32985) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXptM-0006TD-9S for qemu-devel@nongnu.org; Fri, 25 May 2012 04:29:00 -0400 Message-ID: <1337934518.16119.15.camel@pasglop> From: Benjamin Herrenschmidt Date: Fri, 25 May 2012 18:28:38 +1000 In-Reply-To: <4FBF3627.3030504@ozlabs.ru> References: <4FBF3627.3030504@ozlabs.ru> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Subject: Re: [Qemu-devel] [RFC PATCH] vfio: add fixup for broken PCI devices List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexey Kardashevskiy Cc: qemu-devel@nongnu.org, Alex Williamson , Alex Graf , kvm@vger.kernel.org, David Gibson On Fri, 2012-05-25 at 17:35 +1000, Alexey Kardashevskiy wrote: > 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. I think we should create a new quirk category... call it pci_fixup_reset or something like that, which is responsible for blasting the thing into submission when ownership changes. We'll need these for more than just USB I suspect. Cheers, Ben. > Signed-off-by: Alexey Kardashevskiy > --- > 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 |