Linux Audio

Check our new training course

Loading...
Note: File does not exist in v6.13.7.
 1/*
 2 * Common file for the AA104XD12 panel connected to Renesas R-Car boards
 3 *
 4 * Copyright (C) 2014 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,aa104xd12", "panel-lvds";
14
15		width-mm = <210>;
16		height-mm = <158>;
17		data-mapping = "jeida-18";
18
19		panel-timing {
20			/* 1024x768 @65Hz */
21			clock-frequency = <65000000>;
22			hactive = <1024>;
23			vactive = <768>;
24			hsync-len = <136>;
25			hfront-porch = <20>;
26			hback-porch = <160>;
27			vfront-porch = <3>;
28			vback-porch = <29>;
29			vsync-len = <6>;
30		};
31
32		port {
33			panel_in: endpoint {
34				remote-endpoint = <&lvds_connector>;
35			};
36		};
37	};
38};
39
40&lvds_connector {
41	remote-endpoint = <&panel_in>;
42};