hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2023 Rockchip Electronics Co., Ltd.
 *
 */
 
/dts-v1/;
 
#include "rk3588-vehicle-evb-v20.dtsi"
#include "rk3588-vehicle-evb-mipi-nvp6188.dtsi"
#include "rk3588-vehicle-evb-image-reverse.dtsi"
#include "rk3588-vehicle-serdes-display-v20.dtsi"
#include "rk3588-android.dtsi"
 
/ {
   model = "Rockchip RK3588 VEHICLE EVB V20 Board";
   compatible = "rockchip,rk3588-vehicle-evb-v20", "rockchip,rk3588";
 
   bt-sound {
       compatible = "simple-audio-card";
       simple-audio-card,format = "dsp_a";
       simple-audio-card,bitclock-inversion = <1>;
       simple-audio-card,mclk-fs = <256>;
       simple-audio-card,name = "rockchip,bt";
       simple-audio-card,cpu {
           sound-dai = <&i2s2_2ch>;
       };
 
       simple-audio-card,codec {
           sound-dai = <&bt_sco 1>;
       };
   };
 
   bt_sco: bt-sco {
       compatible = "delta,dfbmcs320";
       #sound-dai-cells = <1>;
       status = "okay";
   };
 
   nvp6188_osc: oscillator {
       compatible = "fixed-clock";
       #clock-cells = <1>;
       clock-frequency  = <27000000>;
       clock-output-names = "nvp6188-osc";
   };
};
 
&cif_sensor {
   nvp6188 {
       powerdown-gpios = <&gpio1 RK_PB2 GPIO_ACTIVE_HIGH>;
   };
};
 
&i2c7 {
   status = "okay";
   /delete-node/ nvp6188@33;
   nvp6188: nvp6188@31 {
       compatible = "nvp6188";
       status = "okay";
       reg = <0x31>;
       clocks = <&nvp6188_osc 0>;
       clock-names = "xvclk";
       power-domains = <&power RK3588_PD_VI>;
       rockchip,grf = <&sys_grf>;
       /*power-gpios = <&gpio3 RK_PC6 GPIO_ACTIVE_HIGH>;*/
       reset-gpios = <&gpio1 RK_PB2 GPIO_ACTIVE_HIGH>;
       rockchip,camera-module-index = <0>;
       rockchip,camera-module-facing = "back";
       rockchip,camera-module-name = "nvp6188";
       rockchip,camera-module-lens-name = "nvp6188";
 
       port {
           nvp6188_out: endpoint {
               remote-endpoint = <&mipi_dphy0_in_nvp6188>;
               data-lanes = <1 2 3 4>;
           };
       };
   };
};
 
&i2s2_2ch {
   pinctrl-0 = <&i2s2m1_lrck
            &i2s2m1_sclk
            &i2s2m1_sdi
            &i2s2m1_sdo>;
   status = "okay";
};
 
&rockchip_suspend {
   rockchip,sleep-mode-config = <
       (0
       | RKPM_SLP_ARMOFF_DDRPD
       | RKPM_SLP_PMU_PMUALIVE_32K
       | RKPM_SLP_PMU_DIS_OSC
       | RKPM_SLP_32K_EXT
       )
   >;
   rockchip,wakeup-config = <
       (0
       | RKPM_GPIO_WKUP_EN
       )
   >;
   status = "okay";
};
 
&vdd_log_s0 {
   regulator-state-mem {
       regulator-on-in-suspend;
       regulator-suspend-microvolt = <800000>;
   };
};
 
&vcc_3v3_s0 {
   regulator-state-mem {
       regulator-on-in-suspend;
       regulator-suspend-microvolt = <3300000>;
   };
};
 
&vcc_1v8_s0 {
   regulator-state-mem {
       regulator-on-in-suspend;
       regulator-suspend-microvolt = <1800000>;
   };
};