diff options
author | Tony Lindgren <tony@atomide.com> | 2013-10-18 02:15:22 +0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-10-22 16:34:49 +0400 |
commit | d7c8f25965b6931de93f2b55b00f0f3fca995a21 (patch) | |
tree | faa358fe03ddb9f4185815714808a6203b9bc3ec /arch/arm/boot/dts/omap36xx.dtsi | |
parent | fbc364773febd9eaf4e3b01c1178d81d8060907e (diff) | |
download | linux-d7c8f25965b6931de93f2b55b00f0f3fca995a21.tar.xz |
ARM: dts: Add missing reg, interrupt and dma entries for omap3
Looks like omap3 is still relying on hwmod data for some basic
device tree information. Let's add the information to omap3.dtsi
so we can remove the related hwmod data once omap3 is DT only.
Acked-by: Benoit Cousson <bcousson@baylibre.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/omap36xx.dtsi')
-rw-r--r-- | arch/arm/boot/dts/omap36xx.dtsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/omap36xx.dtsi b/arch/arm/boot/dts/omap36xx.dtsi index f8b3765eb9be..380c22eb468e 100644 --- a/arch/arm/boot/dts/omap36xx.dtsi +++ b/arch/arm/boot/dts/omap36xx.dtsi @@ -31,6 +31,10 @@ ocp { uart4: serial@49042000 { compatible = "ti,omap3-uart"; + reg = <0x49042000 0x400>; + interrupts = <80>; + dmas = <&sdma 81 &sdma 82>; + dma-names = "tx", "rx"; ti,hwmods = "uart4"; clock-frequency = <48000000>; }; |