diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2013-03-14 04:37:15 +0100 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-04-04 15:22:42 +0200 |
commit | 0d9f8217db159cdef7d90f89c9b101550d0fe3aa (patch) | |
tree | a93b3030c999a8ff70e636aff463d0ecdca833ea /arch/arm/boot/dts/imx23-evk.dts | |
parent | video: mxsfb: get display timings from device tree (diff) | |
download | linux-0d9f8217db159cdef7d90f89c9b101550d0fe3aa.tar.xz linux-0d9f8217db159cdef7d90f89c9b101550d0fe3aa.zip |
ARM: mxs: move display timing configurations into device tree
Move display timing configurations into device tree, so that the
auxdata for mxsfb driver can be killed.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/boot/dts/imx23-evk.dts')
-rw-r--r-- | arch/arm/boot/dts/imx23-evk.dts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx23-evk.dts b/arch/arm/boot/dts/imx23-evk.dts index 035c13f9d3c0..7880e17e27f5 100644 --- a/arch/arm/boot/dts/imx23-evk.dts +++ b/arch/arm/boot/dts/imx23-evk.dts @@ -60,7 +60,32 @@ pinctrl-names = "default"; pinctrl-0 = <&lcdif_24bit_pins_a>; panel-enable-gpios = <&gpio1 18 0>; + display = <&display>; status = "okay"; + + display: display { + bits-per-pixel = <32>; + bus-width = <24>; + + display-timings { + native-mode = <&timing0>; + timing0: timing0 { + clock-frequency = <9200000>; + hactive = <480>; + vactive = <272>; + hback-porch = <15>; + hfront-porch = <8>; + vback-porch = <12>; + vfront-porch = <4>; + hsync-len = <1>; + vsync-len = <1>; + hsync-active = <0>; + vsync-active = <0>; + de-active = <1>; + pixelclk-active = <0>; + }; + }; + }; }; }; |