Message ID | 20170806000351.17952-3-paul.burton@imgtec.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
On Sat, Aug 05, 2017 at 05:03:47PM -0700, Paul Burton wrote: > Legacy PCI INTx interrupts are represented in both the PCI_INTERRUPT_PIN > register & in device trees using the range 1-4. This has led to various > drivers using this range internally with an IRQ domain of size 5 whose > first entry is wasted, and to other drivers getting this wrong resulting > in broken interrupts. > > In order to save the wasted IRQ domain entry this patch introduces a new > pci_irqd_intx_xlate() helper function, which drivers can assign as the > xlate callback for their INTx IRQ domain. Further patches will make use > of this in drivers to allow them to use an IRQ domain of size 4 for > legacy INTx interrupts. > > Note that although it seems tempting to instead perform this translation > in of_irq_parse_pci() in order to catch all drivers in one shot, this > would present complications with handling interrupt-map properties in > device trees, since those are handled outside of of_irq_parse_pci() & > expect the 1-4 range for INTx interrupts. It would also require that all > drivers are modified at once, where this approach allows them to be > tackled one by one. > > Signed-off-by: Paul Burton <paul.burton@imgtec.com> > Cc: Bjorn Helgaas <bhelgaas@google.com> > Cc: linux-pci@vger.kernel.org > > --- > Bjorn, if this works for you then I can prepare another series to fix up > other drivers to use this if you like. I think this is a good start, and being able to do it incrementally is nice. I don't fully understand the issue you mentioned with of_irq_parse_pci() above, but I think we can go ahead with this approach for now. It's too bad to have to include ".xlate = pci_irqd_intx_xlate" in each driver, but there's a lot of similarity between drivers in that setup, so maybe something can be factored out in the future. > Changes in v6: > - New patch. > > include/linux/pci.h | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > > diff --git a/include/linux/pci.h b/include/linux/pci.h > index 4869e66dd659..40c4f5f48d5b 100644 > --- a/include/linux/pci.h > +++ b/include/linux/pci.h > @@ -33,6 +33,7 @@ > #include <linux/resource_ext.h> > #include <uapi/linux/pci.h> > > +#include <linux/pci-common.h> > #include <linux/pci_ids.h> > > /* > @@ -1394,6 +1395,38 @@ pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs, > NULL); > } > > +/** > + * pci_irqd_intx_xlate() - Translate PCI INTx value to an IRQ domain hwirq > + * @d: the INTx IRQ domain > + * @node: the DT node for the device whose interrupt we're translating > + * @intspec: the interrupt specifier data from the DT > + * @intsize: the number of entries in @intspec > + * @out_hwirq: pointer at which to write the hwirq number > + * @out_type: pointer at which to write the interrupt type > + * > + * Translate a PCI INTx interrupt number from device tree in the range 1-4, as > + * stored in the standard PCI_INTERRUPT_PIN register, to a value in the range > + * 0-3 suitable for use in a 4 entry IRQ domain. That is, subtract one from the > + * INTx value to obtain the hwirq number. > + * > + * Returns 0 on success, or -EINVAL if the interrupt specifier is out of range. > + */ > +static inline int pci_irqd_intx_xlate(struct irq_domain *d, > + struct device_node *node, > + const u32 *intspec, > + unsigned int intsize, > + unsigned long *out_hwirq, > + unsigned int *out_type) > +{ > + const u32 intx = intspec[0]; > + > + if (intx < PCI_INTERRUPT_INTA || intx > PCI_INTERRUPT_INTD) > + return -EINVAL; > + > + *out_hwirq = intx - PCI_INTERRUPT_INTA; > + return 0; > +} > + > #ifdef CONFIG_PCIEPORTBUS > extern bool pcie_ports_disabled; > extern bool pcie_ports_auto; > -- > 2.13.4 >
diff --git a/include/linux/pci.h b/include/linux/pci.h index 4869e66dd659..40c4f5f48d5b 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -33,6 +33,7 @@ #include <linux/resource_ext.h> #include <uapi/linux/pci.h> +#include <linux/pci-common.h> #include <linux/pci_ids.h> /* @@ -1394,6 +1395,38 @@ pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs, NULL); } +/** + * pci_irqd_intx_xlate() - Translate PCI INTx value to an IRQ domain hwirq + * @d: the INTx IRQ domain + * @node: the DT node for the device whose interrupt we're translating + * @intspec: the interrupt specifier data from the DT + * @intsize: the number of entries in @intspec + * @out_hwirq: pointer at which to write the hwirq number + * @out_type: pointer at which to write the interrupt type + * + * Translate a PCI INTx interrupt number from device tree in the range 1-4, as + * stored in the standard PCI_INTERRUPT_PIN register, to a value in the range + * 0-3 suitable for use in a 4 entry IRQ domain. That is, subtract one from the + * INTx value to obtain the hwirq number. + * + * Returns 0 on success, or -EINVAL if the interrupt specifier is out of range. + */ +static inline int pci_irqd_intx_xlate(struct irq_domain *d, + struct device_node *node, + const u32 *intspec, + unsigned int intsize, + unsigned long *out_hwirq, + unsigned int *out_type) +{ + const u32 intx = intspec[0]; + + if (intx < PCI_INTERRUPT_INTA || intx > PCI_INTERRUPT_INTD) + return -EINVAL; + + *out_hwirq = intx - PCI_INTERRUPT_INTA; + return 0; +} + #ifdef CONFIG_PCIEPORTBUS extern bool pcie_ports_disabled; extern bool pcie_ports_auto;
Legacy PCI INTx interrupts are represented in both the PCI_INTERRUPT_PIN register & in device trees using the range 1-4. This has led to various drivers using this range internally with an IRQ domain of size 5 whose first entry is wasted, and to other drivers getting this wrong resulting in broken interrupts. In order to save the wasted IRQ domain entry this patch introduces a new pci_irqd_intx_xlate() helper function, which drivers can assign as the xlate callback for their INTx IRQ domain. Further patches will make use of this in drivers to allow them to use an IRQ domain of size 4 for legacy INTx interrupts. Note that although it seems tempting to instead perform this translation in of_irq_parse_pci() in order to catch all drivers in one shot, this would present complications with handling interrupt-map properties in device trees, since those are handled outside of of_irq_parse_pci() & expect the 1-4 range for INTx interrupts. It would also require that all drivers are modified at once, where this approach allows them to be tackled one by one. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: linux-pci@vger.kernel.org --- Bjorn, if this works for you then I can prepare another series to fix up other drivers to use this if you like. Changes in v6: - New patch. include/linux/pci.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+)