hc
2023-12-11 1f93a7dfd1f8d5ff7a5c53246c7534fe2332d6f4
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
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
// Copyright (c) 2021 Rockchip Electronics Co., Ltd.
 
/dts-v1/;
 
#include "rk3588-evb2-lp4.dtsi"
#include "rk3588-android.dtsi"
 
/ {
   model = "Rockchip RK3588 EVB2 LP4 V10 eDP to DP Board";
   compatible = "rockchip,rk3588-evb2-lp4-v10-edp2dp", "rockchip,rk3588";
 
   dp-con {
       compatible = "dp-connector";
       status = "okay";
 
       port {
           dp_con_in_edp0: endpoint {
               remote-endpoint = <&edp0_out_dp_con>;
           };
       };
   };
 
   edp0-sound {
       compatible = "simple-audio-card";
       simple-audio-card,name = "rockchip-edp-sound";
 
       simple-audio-card,cpu {
           sound-dai = <&spdif_tx3>;
       };
 
       simple-audio-card,codec {
           sound-dai = <&edp0 1>;
       };
   };
};
 
&edp0 {
   pinctrl-names = "default";
   pinctrl-0 = <&hdmim0_tx0_hpd>;
   #sound-dai-cells = <1>;
   status = "okay";
 
   ports {
       port@1 {
           reg = <1>;
 
           edp0_out_dp_con: endpoint {
               remote-endpoint = <&dp_con_in_edp0>;
           };
       };
   };
};
 
&edp0_in_vp2 {
   status = "okay";
};
 
&hdptxphy0 {
   status = "okay";
};
 
&hdptxphy_hdmi0 {
   status = "disabled";
};
 
&hdmi0 {
   status = "disabled";
};
 
&spdif_tx3 {
   status = "okay";
};