aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/imx6/patches-3.10/0034-PCI-imx6-swizzle-interrupts.patch
blob: d716fe4b6e3ece71004c49021a5da02fd0c4ed9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 = {