* [PATCH] PCI: INTx disable fix
@ 2014-03-11 17:48 Bjorn Helgaas
2014-03-11 17:48 ` [PATCH] PCI: Do not enable INTx in pci_reenable_device() Bjorn Helgaas
0 siblings, 1 reply; 4+ messages in thread
From: Bjorn Helgaas @ 2014-03-11 17:48 UTC (permalink / raw)
To: linux-pci
Cc: Sarah Sharp, Rafael J. Wysocki, linux-kernel, Chris Cheng,
Jamie Chen, Andreas Noever
My earlier "Enable INTx if BIOS left them disabled" patch fixed a problem
with EHCI devices on Intel Baytrail platforms, but had the unintended
consequence of breaking pciehp surprise removal.
This patch should fix the pciehp issue.
This is in my pci/misc branch and intended for v3.14.
---
Bjorn Helgaas (1):
PCI: Do not enable INTx in pci_reenable_device()
drivers/pci/pci.c | 3 +++
1 file changed, 3 insertions(+)
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH] PCI: Do not enable INTx in pci_reenable_device() 2014-03-11 17:48 [PATCH] PCI: INTx disable fix Bjorn Helgaas @ 2014-03-11 17:48 ` Bjorn Helgaas 2014-03-15 0:30 ` Yinghai Lu 0 siblings, 1 reply; 4+ messages in thread From: Bjorn Helgaas @ 2014-03-11 17:48 UTC (permalink / raw) To: linux-pci Cc: Sarah Sharp, Rafael J. Wysocki, linux-kernel, Chris Cheng, Jamie Chen, Andreas Noever Andreas reported that after 1f42db786b14 ("PCI: Enable INTx if BIOS left them disabled"), pciehp surprise removal stopped working. This happens because pci_reenable_device() on the hotplug bridge (used in the pciehp_configure_device() path) clears the Interrupt Disable bit, which apparently breaks the bridge's MSI hotplug event reporting. Previously we cleared the Interrupt Disable bit in do_pci_enable_device(), which is used by both pci_enable_device() and pci_reenable_device(). But we use pci_reenable_device() after the driver may have enabled MSI or MSI-X, and we *set* Interrupt Disable as part of enabling MSI/MSI-X. This patch clears Interrupt Disable only when MSI/MSI-X has not been enabled. Fixes: 1f42db786b14 PCI: Enable INTx if BIOS left them disabled Link: https://bugzilla.kernel.org/show_bug.cgi?id=71691 Reported-and-tested-by: Andreas Noever <andreas.noever@gmail.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> CC: stable@vger.kernel.org CC: Sarah Sharp <sarah.a.sharp@linux.intel.com> --- drivers/pci/pci.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 8dc3e701ec57..79fc89c6c3f3 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -1192,6 +1192,9 @@ static int do_pci_enable_device(struct pci_dev *dev, int bars) return err; pci_fixup_device(pci_fixup_enable, dev); + if (dev->msi_enabled || dev->msix_enabled) + return 0; + pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin); if (pin) { pci_read_config_word(dev, PCI_COMMAND, &cmd); ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] PCI: Do not enable INTx in pci_reenable_device() 2014-03-11 17:48 ` [PATCH] PCI: Do not enable INTx in pci_reenable_device() Bjorn Helgaas @ 2014-03-15 0:30 ` Yinghai Lu 2014-03-17 16:23 ` Bjorn Helgaas 0 siblings, 1 reply; 4+ messages in thread From: Yinghai Lu @ 2014-03-15 0:30 UTC (permalink / raw) To: Bjorn Helgaas Cc: linux-pci@vger.kernel.org, Sarah Sharp, Rafael J. Wysocki, Linux Kernel Mailing List, Chris Cheng, Jamie Chen, Andreas Noever On Tue, Mar 11, 2014 at 10:48 AM, Bjorn Helgaas <bhelgaas@google.com> wrote: > Andreas reported that after 1f42db786b14 ("PCI: Enable INTx if BIOS left > them disabled"), pciehp surprise removal stopped working. > > This happens because pci_reenable_device() on the hotplug bridge (used in > the pciehp_configure_device() path) clears the Interrupt Disable bit, which > apparently breaks the bridge's MSI hotplug event reporting. > > Previously we cleared the Interrupt Disable bit in do_pci_enable_device(), > which is used by both pci_enable_device() and pci_reenable_device(). But > we use pci_reenable_device() after the driver may have enabled MSI or > MSI-X, and we *set* Interrupt Disable as part of enabling MSI/MSI-X. > > This patch clears Interrupt Disable only when MSI/MSI-X has not been > enabled. > > Fixes: 1f42db786b14 PCI: Enable INTx if BIOS left them disabled > Link: https://bugzilla.kernel.org/show_bug.cgi?id=71691 > Reported-and-tested-by: Andreas Noever <andreas.noever@gmail.com> > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > CC: stable@vger.kernel.org > CC: Sarah Sharp <sarah.a.sharp@linux.intel.com> > --- > drivers/pci/pci.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c > index 8dc3e701ec57..79fc89c6c3f3 100644 > --- a/drivers/pci/pci.c > +++ b/drivers/pci/pci.c > @@ -1192,6 +1192,9 @@ static int do_pci_enable_device(struct pci_dev *dev, int bars) > return err; > pci_fixup_device(pci_fixup_enable, dev); > > + if (dev->msi_enabled || dev->msix_enabled) > + return 0; > + > pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin); > if (pin) { > pci_read_config_word(dev, PCI_COMMAND, &cmd); looks ugly. We really should move out those irq handling out of pci_enable_device. Yinghai ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] PCI: Do not enable INTx in pci_reenable_device() 2014-03-15 0:30 ` Yinghai Lu @ 2014-03-17 16:23 ` Bjorn Helgaas 0 siblings, 0 replies; 4+ messages in thread From: Bjorn Helgaas @ 2014-03-17 16:23 UTC (permalink / raw) To: Yinghai Lu Cc: linux-pci@vger.kernel.org, Sarah Sharp, Rafael J. Wysocki, Linux Kernel Mailing List, Chris Cheng, Jamie Chen, Andreas Noever On Fri, Mar 14, 2014 at 6:30 PM, Yinghai Lu <yinghai@kernel.org> wrote: > On Tue, Mar 11, 2014 at 10:48 AM, Bjorn Helgaas <bhelgaas@google.com> wrote: >> Andreas reported that after 1f42db786b14 ("PCI: Enable INTx if BIOS left >> them disabled"), pciehp surprise removal stopped working. >> >> This happens because pci_reenable_device() on the hotplug bridge (used in >> the pciehp_configure_device() path) clears the Interrupt Disable bit, which >> apparently breaks the bridge's MSI hotplug event reporting. >> >> Previously we cleared the Interrupt Disable bit in do_pci_enable_device(), >> which is used by both pci_enable_device() and pci_reenable_device(). But >> we use pci_reenable_device() after the driver may have enabled MSI or >> MSI-X, and we *set* Interrupt Disable as part of enabling MSI/MSI-X. >> >> This patch clears Interrupt Disable only when MSI/MSI-X has not been >> enabled. >> >> Fixes: 1f42db786b14 PCI: Enable INTx if BIOS left them disabled >> Link: https://bugzilla.kernel.org/show_bug.cgi?id=71691 >> Reported-and-tested-by: Andreas Noever <andreas.noever@gmail.com> >> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> >> CC: stable@vger.kernel.org >> CC: Sarah Sharp <sarah.a.sharp@linux.intel.com> >> --- >> drivers/pci/pci.c | 3 +++ >> 1 file changed, 3 insertions(+) >> >> diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c >> index 8dc3e701ec57..79fc89c6c3f3 100644 >> --- a/drivers/pci/pci.c >> +++ b/drivers/pci/pci.c >> @@ -1192,6 +1192,9 @@ static int do_pci_enable_device(struct pci_dev *dev, int bars) >> return err; >> pci_fixup_device(pci_fixup_enable, dev); >> >> + if (dev->msi_enabled || dev->msix_enabled) >> + return 0; >> + >> pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin); >> if (pin) { >> pci_read_config_word(dev, PCI_COMMAND, &cmd); > > looks ugly. > > We really should move out those irq handling out of pci_enable_device. OK, I'll watch for your patch. Bjorn ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-17 16:24 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-03-11 17:48 [PATCH] PCI: INTx disable fix Bjorn Helgaas 2014-03-11 17:48 ` [PATCH] PCI: Do not enable INTx in pci_reenable_device() Bjorn Helgaas 2014-03-15 0:30 ` Yinghai Lu 2014-03-17 16:23 ` Bjorn Helgaas
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).