hc
2024-03-22 ac5f19e89dcbd5c7428fcc78a0d407c887564466
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2020 Rockchip Electronics Co., Ltd.
 */
 
#include <dt-bindings/display/media-bus-format.h>
#include "rk3566-evb1-ddr4-v10.dtsi"
#include "rk3568-android.dtsi"
 
/ {
   panel {
       compatible = "simple-panel";
       backlight = <&backlight>;
       power-supply = <&vcc3v3_lcd1_n>;
       enable-delay-ms = <20>;
       prepare-delay-ms = <20>;
       unprepare-delay-ms = <20>;
       disable-delay-ms = <20>;
       bus-format = <MEDIA_BUS_FMT_RGB666_1X7X3_SPWG>;
       width-mm = <217>;
       height-mm = <136>;
 
       display-timings {
           native-mode = <&timing0>;
 
           timing0: timing0 {
               clock-frequency = <68000000>;
               hactive = <800>;
               vactive = <1280>;
               hback-porch = <30>;
               hfront-porch = <30>;
               vback-porch = <4>;
               vfront-porch = <2>;
               hsync-len = <4>;
               vsync-len = <2>;
               hsync-active = <0>;
               vsync-active = <0>;
               de-active = <0>;
               pixelclk-active = <0>;
           };
       };
 
       ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           port@0 {
               reg = <0>;
               dual-lvds-even-pixels;
               panel_in_lvds: endpoint {
                   remote-endpoint = <&lvds_out_panel>;
               };
           };
       };
   };
};
 
&dsi0 {
   status = "disabled";
};
 
&dsi0_in_vp0 {
   status = "disabled";
};
 
&dsi0_in_vp1 {
   status = "disabled";
};
 
&video_phy0 {
   status = "okay";
};
 
&lvds {
   status = "okay";
 
   ports {
       port@1 {
           reg = <1>;
 
           lvds_out_panel: endpoint {
               remote-endpoint = <&panel_in_lvds>;
           };
       };
   };
};
 
&lvds_in_vp1 {
   status = "okay";
};
 
&lvds_in_vp2 {
   status = "disabled";
};
 
&route_lvds {
   status = "okay";
   connect = <&vp1_out_lvds>;
};