Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b7ee717 authored by Viresh Kumar's avatar Viresh Kumar Committed by Arnd Bergmann
Browse files

SPEAr: Add PL080 DMA support for 3xx and 6xx



Both SPEAr3xx and SPEAr6xx families have one instance of ARM PL080 DMA
controller. This patch adds in support for that.

Signed-off-by: default avatarViresh Kumar <viresh.kumar@st.com>
parent c5fa4fdc
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -29,6 +29,10 @@
			status = "okay";
		};

		dma@fc400000 {
			status = "okay";
		};

		fsmc: flash@94000000 {
			status = "okay";
		};
+4 −0
Original line number Diff line number Diff line
@@ -25,6 +25,10 @@
	};

	ahb {
		dma@fc400000 {
			status = "okay";
		};

		fsmc: flash@44000000 {
			status = "okay";
		};
+4 −0
Original line number Diff line number Diff line
@@ -29,6 +29,10 @@
			status = "okay";
		};

		dma@fc400000 {
			status = "okay";
		};

		fsmc: flash@4c000000 {
			status = "okay";
		};
+8 −0
Original line number Diff line number Diff line
@@ -40,6 +40,14 @@
			#interrupt-cells = <1>;
		};

		dma@fc400000 {
			compatible = "arm,pl080", "arm,primecell";
			reg = <0xfc400000 0x1000>;
			interrupt-parent = <&vic>;
			interrupts = <8>;
			status = "disabled";
		};

		gmac: eth@e0800000 {
			compatible = "st,spear600-gmac";
			reg = <0xe0800000 0x8000>;
+4 −0
Original line number Diff line number Diff line
@@ -24,6 +24,10 @@
	};

	ahb {
		dma@fc400000 {
			status = "okay";
		};

		gmac: ethernet@e0800000 {
			phy-mode = "gmii";
			status = "okay";
Loading