f44c65c7c8
Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 38571
26 lines
670 B
Diff
26 lines
670 B
Diff
From: Tim Harvey <tharvey@gateworks.com>
|
|
Subject: [PATCH 1/5] PCI: imx6: swizzle interrupts
|
|
|
|
|
|
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
|
|
---
|
|
drivers/pci/host/pcie-designware.c | 8 +++++++-
|
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/pci/host/pcie-designware.c
|
|
+++ b/drivers/pci/host/pcie-designware.c
|
|
@@ -447,7 +447,13 @@ int dw_pcie_map_irq(const struct pci_dev
|
|
{
|
|
struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata);
|
|
|
|
- return pp->irq;
|
|
+ switch (pin) {
|
|
+ case 1: return pp->irq - 3;
|
|
+ case 2: return pp->irq - 2;
|
|
+ case 3: return pp->irq - 1;
|
|
+ case 4: return pp->irq;
|
|
+ default: return -1;
|
|
+ }
|
|
}
|
|
|
|
static struct hw_pci dw_pci = {
|