hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// SPDX-License-Identifier: GPL-2.0
/*
 * Device Tree Source for the Advantech idk-1110wr LVDS panel connected
 * to RZ/G2 boards
 *
 * Copyright (C) 2019 Renesas Electronics Corp.
 */
 
/ {
   panel-lvds {
       compatible = "advantech,idk-1110wr", "panel-lvds";
 
       width-mm = <223>;
       height-mm = <125>;
 
       data-mapping = "jeida-24";
 
       panel-timing {
           /* 1024x600 @60Hz */
           clock-frequency = <51200000>;
           hactive = <1024>;
           vactive = <600>;
           hsync-len = <240>;
           hfront-porch = <40>;
           hback-porch = <40>;
           vfront-porch = <15>;
           vback-porch = <10>;
           vsync-len = <10>;
       };
 
       port {
           panel_in: endpoint {
               remote-endpoint = <&lvds_connector>;
           };
       };
   };
};
 
&lvds_connector {
   remote-endpoint = <&panel_in>;
};