Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: pxa: add dma pxamci nodes to pxa3xx

Add the 3 possible mmc controllers on pxa3xx SoCs to the devicetree
description. Add the dma and clocks to the device-tree description of
pxa27x and pxa3xx at the same time.

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>

+37
+4
arch/arm/boot/dts/pxa2xx.dtsi
··· 128 128 compatible = "marvell,pxa-mmc"; 129 129 reg = <0x41100000 0x1000>; 130 130 interrupts = <23>; 131 + clocks = <&clks CLK_MMC>; 132 + dmas = <&pdma 21 3 133 + &pdma 22 3>; 134 + dma-names = "rx", "tx"; 131 135 status = "disabled"; 132 136 }; 133 137
+33
arch/arm/boot/dts/pxa3xx.dtsi
··· 53 53 interrupt-controller; 54 54 #interrupt-cells = <0x2>; 55 55 }; 56 + 57 + mmc0: mmc@41100000 { 58 + compatible = "marvell,pxa-mmc"; 59 + reg = <0x41100000 0x1000>; 60 + interrupts = <23>; 61 + clocks = <&clks CLK_MMC>; 62 + dmas = <&pdma 21 3 63 + &pdma 22 3>; 64 + dma-names = "rx", "tx"; 65 + status = "disabled"; 66 + }; 67 + 68 + mmc1: mmc@42000000 { 69 + compatible = "marvell,pxa-mmc"; 70 + reg = <0x42000000 0x1000>; 71 + interrupts = <41>; 72 + clocks = <&clks CLK_MMC1>; 73 + dmas = <&pdma 93 3 74 + &pdma 94 3>; 75 + dma-names = "rx", "tx"; 76 + status = "disabled"; 77 + }; 78 + 79 + mmc2: mmc@42500000 { 80 + compatible = "marvell,pxa-mmc"; 81 + reg = <0x42500000 0x1000>; 82 + interrupts = <55>; 83 + clocks = <&clks CLK_MMC2>; 84 + dmas = <&pdma 46 3 85 + &pdma 47 3>; 86 + dma-names = "rx", "tx"; 87 + status = "disabled"; 88 + }; 56 89 }; 57 90 58 91 clocks {