MAINTAINERS: Add myself as reviewer for the PWM subsystem
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / display / panel / mitsubishi,aa121td01.txt
1 Mitsubishi AA121TD01 LVDS Display Panel
2 =======================================
3
4 The AA121TD01 is a 12.1" WXGA TFT-LCD display panel.
5
6 These DT bindings follow the LVDS panel bindings defined in panel-lvds.txt
7 with the following device-specific properties.
8
9
10 Required 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
17 Example
18 -------
19
20 panel {
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 };