diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-10-19 17:41:22 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-10-19 17:41:22 +0200 |
commit | a777713c3aec461a4a4d516b45c799e7c5d847a9 (patch) | |
tree | ff048262c37e46d2aa02454fdc4013cd622249a6 /arch/arm | |
parent | 840907f94117f7a77846a8cfe3bca6ecabc0abe5 (diff) | |
parent | 1c86c9dd82f859b474474a7fee0d5195da2c9c1d (diff) | |
download | linux-stable-a777713c3aec461a4a4d516b45c799e7c5d847a9.tar.gz linux-stable-a777713c3aec461a4a4d516b45c799e7c5d847a9.tar.bz2 linux-stable-a777713c3aec461a4a4d516b45c799e7c5d847a9.zip |
Merge tag 'imx-fixes-4.14' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into fixes
Pull "i.MX fixes for 4.14" from Shawn Guo:
- Fix the legacy PCI interrupt numbers for i.MX7. The numbers were
wrongly coded in an inverted order than what Reference Manual tells.
It causes problem for PCI devices using legacy interrupt.
* tag 'imx-fixes-4.14' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux:
ARM: dts: imx7d: Invert legacy PCI irq mapping
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/imx7d.dtsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/imx7d.dtsi b/arch/arm/boot/dts/imx7d.dtsi index f46814a7ea44..4d308d17f040 100644 --- a/arch/arm/boot/dts/imx7d.dtsi +++ b/arch/arm/boot/dts/imx7d.dtsi @@ -144,10 +144,10 @@ interrupt-names = "msi"; #interrupt-cells = <1>; interrupt-map-mask = <0 0 0 0x7>; - interrupt-map = <0 0 0 1 &intc GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>, - <0 0 0 2 &intc GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>, - <0 0 0 3 &intc GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, - <0 0 0 4 &intc GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>; + interrupt-map = <0 0 0 1 &intc GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>, + <0 0 0 2 &intc GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, + <0 0 0 3 &intc GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>, + <0 0 0 4 &intc GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>; clocks = <&clks IMX7D_PCIE_CTRL_ROOT_CLK>, <&clks IMX7D_PLL_ENET_MAIN_100M_CLK>, <&clks IMX7D_PCIE_PHY_ROOT_CLK>; |