drop the bootscript, new u-boots won't need it
[openwrt/openwrt.git] / target / linux / omap / patches-3.12 / 409-ARM-dts-am33xx-mcasp-Add-new-dma-register-location-t.patch
1 From 15ffa765da3f2427b506472baa72d0f3a90b6be5 Mon Sep 17 00:00:00 2001
2 From: Jyri Sarha <jsarha@ti.com>
3 Date: Thu, 5 Sep 2013 21:49:35 +0300
4 Subject: [PATCH 220/752] ARM/dts: am33xx: mcasp: Add new dma register
5 location to reg-property
6
7 This patch adds an optional address range to reg property. The range
8 describes the register location for DMA controller on am33xx. The both
9 address ranges are named accordingly in the reg-names property.
10
11 Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
12 Signed-off-by: Darren Etheridge <detheridge@ti.com>
13 Signed-off-by: Jyri Sarha <jsarha@ti.com>
14 ---
15 arch/arm/boot/dts/am33xx.dtsi | 14 ++++++++++++--
16 1 file changed, 12 insertions(+), 2 deletions(-)
17
18 --- a/arch/arm/boot/dts/am33xx.dtsi
19 +++ b/arch/arm/boot/dts/am33xx.dtsi
20 @@ -730,19 +730,29 @@
21 mcasp0: mcasp@48038000 {
22 compatible = "ti,omap2-mcasp-audio";
23 ti,hwmods = "mcasp0";
24 - reg = <0x48038000 0x2000>;
25 + reg = <0x48038000 0x2000>,
26 + <0x46400000 0x400000>;
27 + reg-names = "mpu", "dma";
28 interrupts = <80 81>;
29 interrupts-names = "tx", "rx";
30 status = "disabled";
31 + dmas = <&edma 8
32 + &edma 9>;
33 + dma-names = "tx", "rx";
34 };
35
36 mcasp1: mcasp@4803C000 {
37 compatible = "ti,omap2-mcasp-audio";
38 ti,hwmods = "mcasp1";
39 - reg = <0x4803C000 0x2000>;
40 + reg = <0x4803C000 0x2000>,
41 + <0x46400000 0x400000>;
42 + reg-names = "mpu", "dma";
43 interrupts = <82 83>;
44 interrupts-names = "tx", "rx";
45 status = "disabled";
46 + dmas = <&edma 10
47 + &edma 11>;
48 + dma-names = "tx", "rx";
49 };
50
51 };