xref: /freebsd-src/sys/contrib/device-tree/src/arm/renesas/r8a77xx-aa121td01-panel.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Common file for the AA121TD01 panel connected to Renesas R-Car boards
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright (C) 2015 Renesas Electronics Corp.
6*f126890aSEmmanuel Vadot */
7*f126890aSEmmanuel Vadot
8*f126890aSEmmanuel Vadot/ {
9*f126890aSEmmanuel Vadot	panel {
10*f126890aSEmmanuel Vadot		compatible = "mitsubishi,aa121td01", "panel-lvds";
11*f126890aSEmmanuel Vadot
12*f126890aSEmmanuel Vadot		width-mm = <261>;
13*f126890aSEmmanuel Vadot		height-mm = <163>;
14*f126890aSEmmanuel Vadot		data-mapping = "jeida-18";
15*f126890aSEmmanuel Vadot
16*f126890aSEmmanuel Vadot		panel-timing {
17*f126890aSEmmanuel Vadot			/* 1280x800 @60Hz */
18*f126890aSEmmanuel Vadot			clock-frequency = <71000000>;
19*f126890aSEmmanuel Vadot			hactive = <1280>;
20*f126890aSEmmanuel Vadot			vactive = <800>;
21*f126890aSEmmanuel Vadot			hsync-len = <70>;
22*f126890aSEmmanuel Vadot			hfront-porch = <20>;
23*f126890aSEmmanuel Vadot			hback-porch = <70>;
24*f126890aSEmmanuel Vadot			vsync-len = <5>;
25*f126890aSEmmanuel Vadot			vfront-porch = <3>;
26*f126890aSEmmanuel Vadot			vback-porch = <15>;
27*f126890aSEmmanuel Vadot		};
28*f126890aSEmmanuel Vadot
29*f126890aSEmmanuel Vadot		port {
30*f126890aSEmmanuel Vadot			panel_in: endpoint {
31*f126890aSEmmanuel Vadot				remote-endpoint = <&lvds_connector>;
32*f126890aSEmmanuel Vadot			};
33*f126890aSEmmanuel Vadot		};
34*f126890aSEmmanuel Vadot	};
35*f126890aSEmmanuel Vadot};
36*f126890aSEmmanuel Vadot
37*f126890aSEmmanuel Vadot&lvds_connector {
38*f126890aSEmmanuel Vadot	remote-endpoint = <&panel_in>;
39*f126890aSEmmanuel Vadot};
40