All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: MSI-X support with Synopsys DesignWare IP core driver
       [not found] <CAN7O0+L8ergfE1_Thow2Lz+5UnhLvQO_LmEqhh=XqKfiu3m8XA@mail.gmail.com>
@ 2017-08-01 17:12 ` Bjorn Helgaas
  2017-08-02 19:06   ` Jingoo Han
  0 siblings, 1 reply; 3+ messages in thread
From: Bjorn Helgaas @ 2017-08-01 17:12 UTC (permalink / raw)
  To: vidya sagar
  Cc: Lucas Stach, Pratyush Anand, linux-pci, Jingoo Han, Joao Pinto

This was a multi-part message with HTML, which I think causes the
mailing list to automatically drop it.  Please post this as plain text
with a changelog and signed-off-by and copy the DesignWare maintainers
(Jingoo and Joao, cc'd).

On Tue, Aug 1, 2017 at 12:28 AM, vidya sagar <sagar.tv@gmail.com> wrote:
> Hi,
> As you might be knowing it already, in the current pcie-designware.c , there
> is no support for MSI-X
> Although there is no native support from Synopsys IP as well to have 2048
> interrupts, we can at least have basic support to get MSI-X also allocated
> (along with MSI) as many as possible in the system at that point. Of course,
> all these interrupts will have the same address to which downstream devices
> need to initiate mem-write transactions. Though it doesn't leverage one of
> the advantages of having MSI-X over MSI, it at least avoids drivers falling
> back to legacy interrupts when the card doesn't support MSI. Some of the
> Intel NVMe cards are examples here. Legacy interrupt being a shared
> interrupt, it unnecessarily triggers all other shared ISRs to be called
> whenever there is a legacy interrupt.
>
> I have the following patch which enables MSI-X support also. Would like to
> have your comments on this.
>
>
> diff --git a/drivers/pci/host/pcie-designware.c
> b/drivers/pci/host/pcie-designware.c
> index af8f6e9..9086253 100644
> --- a/drivers/pci/host/pcie-designware.c
> +++ b/drivers/pci/host/pcie-designware.c
> @@ -406,9 +406,6 @@ static int dw_msi_setup_irq(struct msi_controller *chip,
> struct pci_dev *pdev,
>      int irq, pos;
>      struct pcie_port *pp = pdev->bus->sysdata;
>
> -    if (desc->msi_attrib.is_msix)
> -        return -EINVAL;
> -
>      irq = assign_irq(1, desc, &pos);
>      if (irq < 0)
>          return irq;
> @@ -426,9 +423,16 @@ static int dw_msi_setup_irqs(struct msi_controller
> *chip, struct pci_dev *pdev,
>      struct msi_desc *desc;
>      struct pcie_port *pp = pdev->bus->sysdata;
>
> -    /* MSI-X interrupts are not supported */
> -    if (type == PCI_CAP_ID_MSIX)
> -        return -EINVAL;
> +    if (type == PCI_CAP_ID_MSIX) {
> +        for_each_pci_msi_entry(desc, pdev) {
> +            irq = arch_setup_msi_irq(pdev, desc);
> +            if (irq < 0)
> +                return irq;
> +            if (irq > 0)
> +                return -ENOSPC;
> +        }
> +        return 0;
> +    }
>
>      WARN_ON(!list_is_singular(&pdev->dev.msi_list));
>      desc = list_entry(pdev->dev.msi_list.next, struct msi_desc, list);
>

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

* Re: MSI-X support with Synopsys DesignWare IP core driver
  2017-08-01 17:12 ` MSI-X support with Synopsys DesignWare IP core driver Bjorn Helgaas
@ 2017-08-02 19:06   ` Jingoo Han
  2017-08-03 14:24     ` Joao Pinto
  0 siblings, 1 reply; 3+ messages in thread
From: Jingoo Han @ 2017-08-02 19:06 UTC (permalink / raw)
  To: 'Bjorn Helgaas', 'vidya sagar'
  Cc: 'Lucas Stach', 'Pratyush Anand',
	linux-pci, 'Joao Pinto'

On Tuesday, August 1, 2017 1:13 PM, Bjorn Helgaas wrote:
> 
> This was a multi-part message with HTML, which I think causes the
> mailing list to automatically drop it.  Please post this as plain text
> with a changelog and signed-off-by and copy the DesignWare maintainers
> (Jingoo and Joao, cc'd).
> 
> On Tue, Aug 1, 2017 at 12:28 AM, vidya sagar <sagar.tv@gmail.com> wrote:
> > Hi,
> > As you might be knowing it already, in the current pcie-designware.c ,
> there
> > is no support for MSI-X
> > Although there is no native support from Synopsys IP as well to have
> 2048
> > interrupts, we can at least have basic support to get MSI-X also
> allocated
> > (along with MSI) as many as possible in the system at that point. Of
> course,
> > all these interrupts will have the same address to which downstream
> devices
> > need to initiate mem-write transactions. Though it doesn't leverage one
> of
> > the advantages of having MSI-X over MSI, it at least avoids drivers
> falling
> > back to legacy interrupts when the card doesn't support MSI. Some of the
> > Intel NVMe cards are examples here. Legacy interrupt being a shared
> > interrupt, it unnecessarily triggers all other shared ISRs to be called
> > whenever there is a legacy interrupt.
> >
> > I have the following patch which enables MSI-X support also. Would like
> to
> > have your comments on this.

Hi all,

As far as I know, in order to support MSI-X with Synopsys IP, additional
controller is required. For example, GICv2m can be used to do so.

In addition, I think that some HACK patches can be used to support some
MSI-X only PCI cards. In this case, we cannot take advantage of MSI-X really.
Nevertheless, I am not sure that the following patch is safe.

Best regards,
Jingoo Han

> >
> >
> > diff --git a/drivers/pci/host/pcie-designware.c
> > b/drivers/pci/host/pcie-designware.c
> > index af8f6e9..9086253 100644
> > --- a/drivers/pci/host/pcie-designware.c
> > +++ b/drivers/pci/host/pcie-designware.c
> > @@ -406,9 +406,6 @@ static int dw_msi_setup_irq(struct msi_controller
> *chip,
> > struct pci_dev *pdev,
> >      int irq, pos;
> >      struct pcie_port *pp = pdev->bus->sysdata;
> >
> > -    if (desc->msi_attrib.is_msix)
> > -        return -EINVAL;
> > -
> >      irq = assign_irq(1, desc, &pos);
> >      if (irq < 0)
> >          return irq;
> > @@ -426,9 +423,16 @@ static int dw_msi_setup_irqs(struct msi_controller
> > *chip, struct pci_dev *pdev,
> >      struct msi_desc *desc;
> >      struct pcie_port *pp = pdev->bus->sysdata;
> >
> > -    /* MSI-X interrupts are not supported */
> > -    if (type == PCI_CAP_ID_MSIX)
> > -        return -EINVAL;
> > +    if (type == PCI_CAP_ID_MSIX) {
> > +        for_each_pci_msi_entry(desc, pdev) {
> > +            irq = arch_setup_msi_irq(pdev, desc);
> > +            if (irq < 0)
> > +                return irq;
> > +            if (irq > 0)
> > +                return -ENOSPC;
> > +        }
> > +        return 0;
> > +    }
> >
> >      WARN_ON(!list_is_singular(&pdev->dev.msi_list));
> >      desc = list_entry(pdev->dev.msi_list.next, struct msi_desc, list);
> >

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

* Re: MSI-X support with Synopsys DesignWare IP core driver
  2017-08-02 19:06   ` Jingoo Han
@ 2017-08-03 14:24     ` Joao Pinto
  0 siblings, 0 replies; 3+ messages in thread
From: Joao Pinto @ 2017-08-03 14:24 UTC (permalink / raw)
  To: Jingoo Han, 'Bjorn Helgaas', 'vidya sagar'
  Cc: 'Lucas Stach', 'Pratyush Anand',
	linux-pci, 'Joao Pinto'


Hi,

Às 8:06 PM de 8/2/2017, Jingoo Han escreveu:
> On Tuesday, August 1, 2017 1:13 PM, Bjorn Helgaas wrote:
>>
>> This was a multi-part message with HTML, which I think causes the
>> mailing list to automatically drop it.  Please post this as plain text
>> with a changelog and signed-off-by and copy the DesignWare maintainers
>> (Jingoo and Joao, cc'd).
>>
>> On Tue, Aug 1, 2017 at 12:28 AM, vidya sagar <sagar.tv@gmail.com> wrote:
>>> Hi,
>>> As you might be knowing it already, in the current pcie-designware.c ,
>> there
>>> is no support for MSI-X
>>> Although there is no native support from Synopsys IP as well to have
>> 2048
>>> interrupts, we can at least have basic support to get MSI-X also
>> allocated
>>> (along with MSI) as many as possible in the system at that point. Of
>> course,
>>> all these interrupts will have the same address to which downstream
>> devices
>>> need to initiate mem-write transactions. Though it doesn't leverage one
>> of
>>> the advantages of having MSI-X over MSI, it at least avoids drivers
>> falling
>>> back to legacy interrupts when the card doesn't support MSI. Some of the
>>> Intel NVMe cards are examples here. Legacy interrupt being a shared
>>> interrupt, it unnecessarily triggers all other shared ISRs to be called
>>> whenever there is a legacy interrupt.
>>>
>>> I have the following patch which enables MSI-X support also. Would like
>> to
>>> have your comments on this.
> 
> Hi all,
> 
> As far as I know, in order to support MSI-X with Synopsys IP, additional
> controller is required. For example, GICv2m can be used to do so.
> 
> In addition, I think that some HACK patches can be used to support some
> MSI-X only PCI cards. In this case, we cannot take advantage of MSI-X really.
> Nevertheless, I am not sure that the following patch is safe.
> 
> Best regards,
> Jingoo Han

I submitted a patch a few weeks ago with the goal of updating the
pcie-designware's interrupt API and adding MSIX. It is currently on-hold since
we are trying to find a solution for the Keystone SoC specific driver that its
unique way of handling msi.
Because of this I suggest that this patch is not applied and I suggest that we
solve the Keystone challenge and then follow to the pcie-designware interrupt
update.

Thanks,
Joao

> 
>>>
>>>
>>> diff --git a/drivers/pci/host/pcie-designware.c
>>> b/drivers/pci/host/pcie-designware.c
>>> index af8f6e9..9086253 100644
>>> --- a/drivers/pci/host/pcie-designware.c
>>> +++ b/drivers/pci/host/pcie-designware.c
>>> @@ -406,9 +406,6 @@ static int dw_msi_setup_irq(struct msi_controller
>> *chip,
>>> struct pci_dev *pdev,
>>>      int irq, pos;
>>>      struct pcie_port *pp = pdev->bus->sysdata;
>>>
>>> -    if (desc->msi_attrib.is_msix)
>>> -        return -EINVAL;
>>> -
>>>      irq = assign_irq(1, desc, &pos);
>>>      if (irq < 0)
>>>          return irq;
>>> @@ -426,9 +423,16 @@ static int dw_msi_setup_irqs(struct msi_controller
>>> *chip, struct pci_dev *pdev,
>>>      struct msi_desc *desc;
>>>      struct pcie_port *pp = pdev->bus->sysdata;
>>>
>>> -    /* MSI-X interrupts are not supported */
>>> -    if (type == PCI_CAP_ID_MSIX)
>>> -        return -EINVAL;
>>> +    if (type == PCI_CAP_ID_MSIX) {
>>> +        for_each_pci_msi_entry(desc, pdev) {
>>> +            irq = arch_setup_msi_irq(pdev, desc);
>>> +            if (irq < 0)
>>> +                return irq;
>>> +            if (irq > 0)
>>> +                return -ENOSPC;
>>> +        }
>>> +        return 0;
>>> +    }
>>>
>>>      WARN_ON(!list_is_singular(&pdev->dev.msi_list));
>>>      desc = list_entry(pdev->dev.msi_list.next, struct msi_desc, list);
>>>
> 

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

end of thread, other threads:[~2017-08-03 14:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CAN7O0+L8ergfE1_Thow2Lz+5UnhLvQO_LmEqhh=XqKfiu3m8XA@mail.gmail.com>
2017-08-01 17:12 ` MSI-X support with Synopsys DesignWare IP core driver Bjorn Helgaas
2017-08-02 19:06   ` Jingoo Han
2017-08-03 14:24     ` Joao Pinto

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.