Back to home page

OSCL-LXR

 
 

    


0001 Device Tree bindings for Freescale DCU DRM Driver
0002 
0003 Required properties:
0004 - compatible:           Should be one of
0005         * "fsl,ls1021a-dcu".
0006         * "fsl,vf610-dcu".
0007 
0008 - reg:                  Address and length of the register set for dcu.
0009 - clocks:               Handle to "dcu" and "pix" clock (in the order below)
0010                         This can be the same clock (e.g. LS1021a)
0011                         See ../clocks/clock-bindings.txt for details.
0012 - clock-names:          Should be "dcu" and "pix"
0013                         See ../clocks/clock-bindings.txt for details.
0014 - big-endian            Boolean property, LS1021A DCU registers are big-endian.
0015 - port                  Video port for the panel output
0016 
0017 Optional properties:
0018 - fsl,tcon:             The phandle to the timing controller node.
0019 
0020 Examples:
0021 dcu: dcu@2ce0000 {
0022         compatible = "fsl,ls1021a-dcu";
0023         reg = <0x0 0x2ce0000 0x0 0x10000>;
0024         clocks = <&platform_clk 0>, <&platform_clk 0>;
0025         clock-names = "dcu", "pix";
0026         big-endian;
0027         fsl,tcon = <&tcon>;
0028 
0029         port {
0030                 dcu_out: endpoint {
0031                         remote-endpoint = <&panel_out>;
0032              };
0033         };
0034 };