hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
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
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (C) 2019 Amarula Solutions B.V.
 * Author: Jagan Teki <jagan@amarulasolutions.com>
 */
 
/dts-v1/;
 
#include "rk3399-nanopi4.dtsi"
 
/ {
   model = "FriendlyARM NanoPi NEO4";
   compatible = "friendlyarm,nanopi-neo4", "rockchip,rk3399";
 
   vdd_5v: vdd-5v {
       compatible = "regulator-fixed";
       regulator-name = "vdd_5v";
       regulator-always-on;
       regulator-boot-on;
   };
 
   vcc5v0_core: vcc5v0-core {
       compatible = "regulator-fixed";
       regulator-name = "vcc5v0_core";
       regulator-always-on;
       regulator-boot-on;
       vin-supply = <&vdd_5v>;
   };
 
   vcc5v0_usb1: vcc5v0-usb1 {
       compatible = "regulator-fixed";
       regulator-name = "vcc5v0_usb1";
       regulator-always-on;
       regulator-boot-on;
       vin-supply = <&vcc5v0_sys>;
   };
};
 
&vcc3v3_sys {
   vin-supply = <&vcc5v0_core>;
};
 
&u2phy0_host {
   phy-supply = <&vcc5v0_usb1>;
};
 
&vbus_typec {
   regulator-always-on;
   vin-supply = <&vdd_5v>;
};