hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2020 Rockchip Electronics Co., Ltd.
 */
 
#include "rv1126-evb-v10.dtsi"
/ {
   /delete-node/ vdd-npu;
   /delete-node/ vdd-vepu;
 
   vdd_logic: vdd-logic {
       compatible = "regulator-fixed";
       regulator-name = "vdd_logic";
       regulator-always-on;
       regulator-boot-on;
       regulator-min-microvolt = <810000>;
       regulator-max-microvolt = <810000>;
   };
};
 
&rk809 {
   regulators {
       /delete-node/ DCDC_REG1;
       vdd_npu_vepu: DCDC_REG1 {
           regulator-always-on;
           regulator-boot-on;
           regulator-min-microvolt = <650000>;
           regulator-max-microvolt = <950000>;
           regulator-ramp-delay = <6001>;
           regulator-initial-mode = <0x2>;
           regulator-name = "vdd_npu_vepu";
           regulator-state-mem {
               regulator-off-in-suspend;
           };
       };
   };
};
 
&ov4689 {
   reset-gpios = <&gpio2 RK_PA0 GPIO_ACTIVE_LOW>;
};
 
&os04a10 {
   reset-gpios = <&gpio1 RK_PD5 GPIO_ACTIVE_LOW>;
};
 
&npu {
   npu-supply = <&vdd_npu_vepu>;
};
 
&pwm0 {
   status = "disabled";
};
 
&pwm1 {
   status = "disabled";
};
 
&rkvenc {
   venc-supply = <&vdd_npu_vepu>;
};
 
&rkvenc_opp_table {
   /*
    * max IR-drop values on different freq condition for this board!
    */
   rockchip,board-irdrop = <
        /* MHz    MHz    uV */
       500    594    50000
   >;
};