diff mbox

[1/2,v2] PCI: Add PCI_DEV_FLAGS_USE_NON_MSI_INTX_IRQ to enable non MSI/INTx interrupt

Message ID 1342409487-28256-1-git-send-email-Shengzhou.Liu@freescale.com
State Superseded
Headers show

Commit Message

Shengzhou Liu July 16, 2012, 3:31 a.m. UTC
On some platforms, in RC mode, root port has neither MSI/MSI-X nor INTx
interrupt generated, which are available only in EP mode on those platform.
In this case, we try to use other interrupt for port service driver to have
AER, Hot-plug, etc, services to work.

Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
---
v2: separated platform-specific part to arch/powerpc/sysdev.

 drivers/pci/pcie/portdrv_core.c |   10 ++++++++--
 drivers/pci/quirks.c            |    9 +++++++++
 include/linux/pci.h             |    5 +++++
 3 files changed, 22 insertions(+), 2 deletions(-)

Comments

Scott Wood July 16, 2012, 3:47 p.m. UTC | #1
On 07/15/2012 10:31 PM, Shengzhou Liu wrote:
> On some platforms, in RC mode, root port has neither MSI/MSI-X nor INTx
> interrupt generated, which are available only in EP mode on those platform.
> In this case, we try to use other interrupt for port service driver to have
> AER, Hot-plug, etc, services to work.
> 
> Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
> ---
> v2: separated platform-specific part to arch/powerpc/sysdev.
> 
>  drivers/pci/pcie/portdrv_core.c |   10 ++++++++--
>  drivers/pci/quirks.c            |    9 +++++++++
>  include/linux/pci.h             |    5 +++++
>  3 files changed, 22 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/pci/pcie/portdrv_core.c b/drivers/pci/pcie/portdrv_core.c
> index 75915b3..837ad15 100644
> --- a/drivers/pci/pcie/portdrv_core.c
> +++ b/drivers/pci/pcie/portdrv_core.c
> @@ -212,8 +212,14 @@ static int init_service_irqs(struct pci_dev *dev, int *irqs, int mask)
>  	if (!pcie_port_enable_msix(dev, irqs, mask))
>  		return 0;
>  
> -	/* We're not going to use MSI-X, so try MSI and fall back to INTx */
> -	if (!pci_enable_msi(dev) || dev->pin)
> +	/*
> +	 * We're not going to use MSI-X, so try MSI and fall back to INTx.
> +	 * Eventually, if neither MSI/MSI-X nor INTx available, try other
> +	 * interrupt. (On some platforms, root port doesn't support generating
> +	 * MSI/MSI-X/INTx in RC mode)
> +	 */
> +	if (!pci_enable_msi(dev) || dev->pin || ((dev->dev_flags &
> +			PCI_DEV_FLAGS_USE_NON_MSI_INTX_IRQ) && dev->irq))
>  		irq = dev->irq;

I didn't see a response on the question about what would happen if we
did this unconditionally (i.e. just s/dev->pin/dev->irq/ in the original
code).  We should avoid introducing flags like this unless there's a
good reason.

Maybe submit a patch that does it unconditionally, and see if that draws
a complaint.

-Scott

--
To unsubscribe from this list: send the line "unsubscribe linux-pci" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Liu Shengzhou-B36685 July 17, 2012, 3:01 a.m. UTC | #2
> -----Original Message-----

> From: Wood Scott-B07421

> Sent: Monday, July 16, 2012 11:47 PM

> To: Liu Shengzhou-B36685

> Cc: bhelgaas@google.com; linux-pci@vger.kernel.org; linuxppc-

> dev@lists.ozlabs.org

> Subject: Re: [PATCH 1/2 v2] PCI: Add PCI_DEV_FLAGS_USE_NON_MSI_INTX_IRQ to

> enable non MSI/INTx interrupt

> 

> On 07/15/2012 10:31 PM, Shengzhou Liu wrote:

> > On some platforms, in RC mode, root port has neither MSI/MSI-X nor

> > INTx interrupt generated, which are available only in EP mode on those

> platform.

> > In this case, we try to use other interrupt for port service driver to

> > have AER, Hot-plug, etc, services to work.

> >

> > Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>

> > ---

> > v2: separated platform-specific part to arch/powerpc/sysdev.

> >

> >  drivers/pci/pcie/portdrv_core.c |   10 ++++++++--

> >  drivers/pci/quirks.c            |    9 +++++++++

> >  include/linux/pci.h             |    5 +++++

> >  3 files changed, 22 insertions(+), 2 deletions(-)

> >

> > diff --git a/drivers/pci/pcie/portdrv_core.c

> > b/drivers/pci/pcie/portdrv_core.c index 75915b3..837ad15 100644

> > --- a/drivers/pci/pcie/portdrv_core.c

> > +++ b/drivers/pci/pcie/portdrv_core.c

> > @@ -212,8 +212,14 @@ static int init_service_irqs(struct pci_dev *dev, int

> *irqs, int mask)

> >  	if (!pcie_port_enable_msix(dev, irqs, mask))

> >  		return 0;

> >

> > -	/* We're not going to use MSI-X, so try MSI and fall back to INTx */

> > -	if (!pci_enable_msi(dev) || dev->pin)

> > +	/*

> > +	 * We're not going to use MSI-X, so try MSI and fall back to INTx.

> > +	 * Eventually, if neither MSI/MSI-X nor INTx available, try other

> > +	 * interrupt. (On some platforms, root port doesn't support generating

> > +	 * MSI/MSI-X/INTx in RC mode)

> > +	 */

> > +	if (!pci_enable_msi(dev) || dev->pin || ((dev->dev_flags &

> > +			PCI_DEV_FLAGS_USE_NON_MSI_INTX_IRQ) && dev->irq))

> >  		irq = dev->irq;

> 

> I didn't see a response on the question about what would happen if we did this

> unconditionally (i.e. just s/dev->pin/dev->irq/ in the original code).  We

> should avoid introducing flags like this unless there's a good reason.

> 

> Maybe submit a patch that does it unconditionally, and see if that draws a

> complaint.

> 

> -Scott

[Shengzhou] 
Well, the patch without flag condition have been posted to draw more comments.
diff mbox

Patch

diff --git a/drivers/pci/pcie/portdrv_core.c b/drivers/pci/pcie/portdrv_core.c
index 75915b3..837ad15 100644
--- a/drivers/pci/pcie/portdrv_core.c
+++ b/drivers/pci/pcie/portdrv_core.c
@@ -212,8 +212,14 @@  static int init_service_irqs(struct pci_dev *dev, int *irqs, int mask)
 	if (!pcie_port_enable_msix(dev, irqs, mask))
 		return 0;
 
-	/* We're not going to use MSI-X, so try MSI and fall back to INTx */
-	if (!pci_enable_msi(dev) || dev->pin)
+	/*
+	 * We're not going to use MSI-X, so try MSI and fall back to INTx.
+	 * Eventually, if neither MSI/MSI-X nor INTx available, try other
+	 * interrupt. (On some platforms, root port doesn't support generating
+	 * MSI/MSI-X/INTx in RC mode)
+	 */
+	if (!pci_enable_msi(dev) || dev->pin || ((dev->dev_flags &
+			PCI_DEV_FLAGS_USE_NON_MSI_INTX_IRQ) && dev->irq))
 		irq = dev->irq;
 
  no_msi:
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 2a75216..2922cb8 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -2640,6 +2640,15 @@  DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x1083,
 			quirk_msi_intx_disable_bug);
 #endif /* CONFIG_PCI_MSI */
 
+/*
+ * Under some circumstances, root port has neither MSI/MSI-X nor INTx generated,
+ * so try other interrupt if supported.
+ */
+void __devinit quirk_enable_non_msi_intx_interrupt(struct pci_dev *dev)
+{
+	dev->dev_flags |= PCI_DEV_FLAGS_USE_NON_MSI_INTX_IRQ;
+}
+
 /* Allow manual resource allocation for PCI hotplug bridges
  * via pci=hpmemsize=nnM and pci=hpiosize=nnM parameters. For
  * some PCI-PCI hotplug bridges, like PLX 6254 (former HINT HB6),
diff --git a/include/linux/pci.h b/include/linux/pci.h
index d8c379d..f051a66 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -176,6 +176,11 @@  enum pci_dev_flags {
 	PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) 2,
 	/* Provide indication device is assigned by a Virtual Machine Manager */
 	PCI_DEV_FLAGS_ASSIGNED = (__force pci_dev_flags_t) 4,
+	/*
+	 * Use other interrupt (i.e. system shared interrupt) when MSI/MSI-X
+	 * and INTx are not supported in RC mode on some platforms.
+	 */
+	PCI_DEV_FLAGS_USE_NON_MSI_INTX_IRQ = (__force pci_dev_flags_t) 8,
 };
 
 enum pci_irq_reroute_variant {