[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1366279934-30761-31-git-send-email-lee.jones@linaro.org>
Date: Thu, 18 Apr 2013 11:12:12 +0100
From: Lee Jones <lee.jones@...aro.org>
To: linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Cc: arnd@...db.de, linus.walleij@...ricsson.com,
Lee Jones <lee.jones@...aro.org>
Subject: [PATCH 30/32] ARM: ux500: Supply MMC DMA configuration via Device Tree
When requesting a channel, a DMA client needs to pass some pieces of
information such as; request channel, device type, channel type and
direction etc. Normally we do this in the form of platform data, but
when DT is enabled we need to pass it using the driver's bindings
instead.
Signed-off-by: Lee Jones <lee.jones@...aro.org>
---
arch/arm/boot/dts/dbx5x0.dtsi | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/arch/arm/boot/dts/dbx5x0.dtsi b/arch/arm/boot/dts/dbx5x0.dtsi
index bd0fe5f..c064a9a 100644
--- a/arch/arm/boot/dts/dbx5x0.dtsi
+++ b/arch/arm/boot/dts/dbx5x0.dtsi
@@ -605,6 +605,11 @@
compatible = "arm,pl18x", "arm,primecell";
reg = <0x80126000 0x1000>;
interrupts = <0 60 0x4>;
+
+ dmas = <&dma 0 29 0x8>, /* Logical - DevToMem */
+ <&dma 0 29 0x4>; /* Logical - MemToDev */
+ dma-names = "rx", "tx";
+
status = "disabled";
};
@@ -612,6 +617,11 @@
compatible = "arm,pl18x", "arm,primecell";
reg = <0x80118000 0x1000>;
interrupts = <0 50 0x4>;
+
+ dmas = <&dma 0 32 0x8>, /* Logical - DevToMem */
+ <&dma 0 32 0x4>; /* Logical - MemToDev */
+ dma-names = "rx", "tx";
+
status = "disabled";
};
@@ -619,6 +629,11 @@
compatible = "arm,pl18x", "arm,primecell";
reg = <0x80005000 0x1000>;
interrupts = <0 41 0x4>;
+
+ dmas = <&dma 0 28 0x8>, /* Logical - DevToMem */
+ <&dma 0 28 0x4>; /* Logical - MemToDev */
+ dma-names = "rx", "tx";
+
status = "disabled";
};
@@ -633,6 +648,11 @@
compatible = "arm,pl18x", "arm,primecell";
reg = <0x80114000 0x1000>;
interrupts = <0 99 0x4>;
+
+ dmas = <&dma 0 42 0x8>, /* Logical - DevToMem */
+ <&dma 0 42 0x4>; /* Logical - MemToDev */
+ dma-names = "rx", "tx";
+
status = "disabled";
};
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists