RE: [PATCH 2/2 v5] irqchip/Layerscape: Add SCFG MSI controller support

From: Minghuan Lian
Date: Wed Mar 23 2016 - 07:04:58 EST


Hi Alexander,

Thanks for your test.

Number 134742016 is calculated by the following code

/**
* pci_msi_domain_calc_hwirq - Generate a unique ID for an MSI source
* @dev: Pointer to the PCI device
* @desc: Pointer to the msi descriptor
*
* The ID number is only used within the irqdomain.
*/
irq_hw_number_t pci_msi_domain_calc_hwirq(struct pci_dev *dev,
struct msi_desc *desc)
{
return (irq_hw_number_t)desc->msi_attrib.entry_nr |
PCI_DEVID(dev->bus->number, dev->devfn) << 11 |
(pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27;
}

And this value is assigned to the hwirq in the function:
static void pci_msi_domain_set_desc(msi_alloc_info_t *arg,
struct msi_desc *desc)
{
arg->desc = desc;
arg->hwirq = pci_msi_domain_calc_hwirq(msi_desc_to_pci_dev(desc),
desc);
}


Thanks,
Minghuan

> -----Original Message-----
> From: Alexander Stein [mailto:alexander.stein@xxxxxxxxxxxxxxxxxxxxx]
> Sent: Wednesday, March 23, 2016 5:18 PM
> To: linux-kernel@xxxxxxxxxxxxxxx
> Cc: Minghuan Lian <minghuan.lian@xxxxxxx>;
> linux-arm-kernel@xxxxxxxxxxxxxxxxxxx; Marc Zyngier <marc.zyngier@xxxxxxx>;
> Thomas Gleixner <tglx@xxxxxxxxxxxxx>; Jason Cooper
> <jason@xxxxxxxxxxxxxx>; Roy Zang <roy.zang@xxxxxxx>; Mingkai Hu
> <mingkai.hu@xxxxxxx>; Stuart Yoder <stuart.yoder@xxxxxxx>; Yang-Leo Li
> <leoyang.li@xxxxxxx>
> Subject: Re: [PATCH 2/2 v5] irqchip/Layerscape: Add SCFG MSI controller
> support
>
> On Monday 07 March 2016 11:36:22, Minghuan Lian wrote:
> > Some kind of NXP Layerscape SoC provides a MSI
> > implementation which uses two SCFG registers MSIIR and
> > MSIR to support 32 MSI interrupts for each PCIe controller.
> > The patch is to support it.
> >
> > Signed-off-by: Minghuan Lian <Minghuan.Lian@xxxxxxx>
>
> Tested-by: Alexander Stein <alexander.stein@xxxxxxxxxxxxxxxxxxxxx>
>
> Using an intel e1000e card which uses 3 MSIs. But the IRQ numbers are a bit
> strange though:
> > grep eth3 /proc/interrupts
> >
> > 63: 49 0 MSI 134742016 Edge
> eth3-rx-0
> > 64: 3 0 MSI 134742017 Edge
> eth3-tx-0
> > 65: 4 0 MSI 134742018 Edge eth3
>
> Best regards,
> Alexander