hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
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
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
// Copyright (c) 2016 ARM Ltd.
 
#include "sun50i-a64-pine64.dts"
 
/ {
   model = "Pine64+";
   compatible = "pine64,pine64-plus", "allwinner,sun50i-a64";
 
   /* TODO: Camera, touchscreen, etc. */
};
 
&emac {
   pinctrl-names = "default";
   pinctrl-0 = <&rgmii_pins>;
   phy-mode = "rgmii-txid";
   phy-handle = <&ext_rgmii_phy>;
   status = "okay";
};
 
&mdio {
   ext_rgmii_phy: ethernet-phy@1 {
       compatible = "ethernet-phy-ieee802.3-c22";
       reg = <1>;
   };
};
 
&reg_dc1sw {
   /*
    * Ethernet PHY needs 30ms to properly power up and some more
    * to initialize. 100ms should be plenty of time to finish
    * whole process.
    */
   regulator-enable-ramp-delay = <100000>;
};