blob: a07ebf8f6938fef65b12e173a073278b728a1310 [file] [log] [blame]
Kuninori Morimoto5325f832015-07-28 07:06:45 +00001/*
2 * Common file for the AA121TD01 panel connected to Renesas R-Car boards
3 *
4 * Copyright (C) 2015 Renesas Electronics Corp.
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.
9 */
10
11/ {
12 panel {
13 compatible = "mitsubishi,aa121td01", "panel-dpi";
14
15 width-mm = <261>;
16 height-mm = <163>;
17
18 panel-timing {
19 /* 1280x800 @60Hz */
20 clock-frequency = <71000000>;
21 hactive = <1280>;
22 vactive = <800>;
23 hsync-len = <70>;
24 hfront-porch = <20>;
25 hback-porch = <70>;
26 vsync-len = <5>;
27 vfront-porch = <3>;
28 vback-porch = <15>;
29 };
30
31 port {
32 panel_in: endpoint {
33 remote-endpoint = <&lvds_connector>;
34 };
35 };
36 };
37};
38
39&lvds_connector {
40 remote-endpoint = <&panel_in>;
41};