diff options
author | Stefan Agner <stefan@agner.ch> | 2016-04-04 22:28:39 -0700 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2016-04-13 17:42:41 +0800 |
commit | 1d0fc33f4666f1bd29990f154767aa5d374c9e19 (patch) | |
tree | adbdd0884f0fe1f893b6a9359d298557b15debb3 /arch/arm/boot | |
parent | 56354959cfecd6501cd69c49edca483a7b11d461 (diff) | |
download | linux-1d0fc33f4666f1bd29990f154767aa5d374c9e19.tar.gz linux-1d0fc33f4666f1bd29990f154767aa5d374c9e19.tar.bz2 linux-1d0fc33f4666f1bd29990f154767aa5d374c9e19.zip |
ARM: dts: vf610: add display nodes
Add the dcu and tcon nodes to enable the Display Controller Unit
and Timing Controller in Vybrid's SoC level device-tree file.
Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/vfxxx.dtsi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi index 5c0975451d4e..d7d002d0cc5f 100644 --- a/arch/arm/boot/dts/vfxxx.dtsi +++ b/arch/arm/boot/dts/vfxxx.dtsi @@ -310,6 +310,14 @@ <20000000>; }; + tcon0: timing-controller@4003d000 { + compatible = "fsl,vf610-tcon"; + reg = <0x4003d000 0x1000>; + clocks = <&clks VF610_CLK_TCON0>; + clock-names = "ipg"; + status = "disabled"; + }; + wdoga5: wdog@4003e000 { compatible = "fsl,vf610-wdt", "fsl,imx21-wdt"; reg = <0x4003e000 0x1000>; @@ -415,6 +423,17 @@ status = "disabled"; }; + dcu0: dcu@40058000 { + compatible = "fsl,vf610-dcu"; + reg = <0x40058000 0x1200>; + interrupts = <30 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&clks VF610_CLK_DCU0>, + <&clks VF610_CLK_DCU0_DIV>; + clock-names = "dcu", "pix"; + fsl,tcon = <&tcon0>; + status = "disabled"; + }; + i2c0: i2c@40066000 { #address-cells = <1>; #size-cells = <0>; |