1Device Tree bindings for Freescale DCU DRM Driver
2
3Required properties:
4- compatible:		Should be one of
5	* "fsl,ls1021a-dcu".
6	* "fsl,vf610-dcu".
7
8- reg:			Address and length of the register set for dcu.
9- clocks:		From common clock binding: handle to dcu clock.
10- clock-names:		From common clock binding: Shall be "dcu".
11- big-endian		Boolean property, LS1021A DCU registers are big-endian.
12- fsl,panel:		The phandle to panel node.
13
14Examples:
15dcu: dcu@2ce0000 {
16	compatible = "fsl,ls1021a-dcu";
17	reg = <0x0 0x2ce0000 0x0 0x10000>;
18	clocks = <&platform_clk 0>;
19	clock-names = "dcu";
20	big-endian;
21	fsl,panel = <&panel>;
22};
23