aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-11-20 10:03:19 -0500
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-11-20 10:03:37 -0500
commita1d53dab4f5b37c800d7a20c56e84a96180a8ea6 (patch)
tree117b07f3d84bcd80b68032a81d3e6016af8d09fc
parent0122eee890e28e466d682cdc4e1d125cc0ad9fdf (diff)
arm: mvebu: add XOR engines to Armada XP .dtsi
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--arch/arm/boot/dts/armada-xp.dtsi40
1 files changed, 40 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/armada-xp.dtsi b/arch/arm/boot/dts/armada-xp.dtsi
index f51554e80009..a09998523d40 100644
--- a/arch/arm/boot/dts/armada-xp.dtsi
+++ b/arch/arm/boot/dts/armada-xp.dtsi
@@ -71,5 +71,45 @@
71 compatible = "marvell,armada-370-xp-system-controller"; 71 compatible = "marvell,armada-370-xp-system-controller";
72 reg = <0xd0018200 0x500>; 72 reg = <0xd0018200 0x500>;
73 }; 73 };
74
75 xor@d0060900 {
76 compatible = "marvell,orion-xor";
77 reg = <0xd0060900 0x100
78 0xd0060b00 0x100>;
79 clocks = <&gateclk 22>;
80 status = "okay";
81
82 xor10 {
83 interrupts = <51>;
84 dmacap,memcpy;
85 dmacap,xor;
86 };
87 xor11 {
88 interrupts = <52>;
89 dmacap,memcpy;
90 dmacap,xor;
91 dmacap,memset;
92 };
93 };
94
95 xor@d00f0900 {
96 compatible = "marvell,orion-xor";
97 reg = <0xd00F0900 0x100
98 0xd00F0B00 0x100>;
99 clocks = <&gateclk 28>;
100 status = "okay";
101
102 xor00 {
103 interrupts = <94>;
104 dmacap,memcpy;
105 dmacap,xor;
106 };
107 xor01 {
108 interrupts = <95>;
109 dmacap,memcpy;
110 dmacap,xor;
111 dmacap,memset;
112 };
113 };
74 }; 114 };
75}; 115};