1Mitsubishi AA121TD01 LVDS Display Panel
2=======================================
3
4The AA121TD01 is a 12.1" WXGA TFT-LCD display panel.
5
6These DT bindings follow the LVDS panel bindings defined in panel-lvds.txt
7with the following device-specific properties.
8
9
10Required properties:
11
12- compatible: Shall contain "mitsubishi,aa121td01" and "panel-lvds", in that
13  order.
14- vcc-supply: Reference to the regulator powering the panel VCC pins.
15
16
17Example
18-------
19
20panel {
21	compatible = "mitsubishi,aa121td01", "panel-lvds";
22	vcc-supply = <&vcc_3v3>;
23
24	width-mm = <261>;
25	height-mm = <163>;
26
27	data-mapping = "jeida-24";
28
29	panel-timing {
30		/* 1280x800 @60Hz */
31		clock-frequency = <71000000>;
32		hactive = <1280>;
33		vactive = <800>;
34		hsync-len = <70>;
35		hfront-porch = <20>;
36		hback-porch = <70>;
37		vsync-len = <5>;
38		vfront-porch = <3>;
39		vback-porch = <15>;
40	};
41
42	port {
43		panel_in: endpoint {
44			remote-endpoint = <&lvds_encoder>;
45		};
46	};
47};
48