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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
// Copyright (C) 2019 Oceanic Systems (UK) Ltd.
// Copyright (C) 2019 Amarula Solutions B.V.
// Author: Jagan Teki <jagan@amarulasolutions.com>
 
/dts-v1/;
 
#include "sun50i-a64-sopine.dtsi"
 
/ {
   model = "Oceanic 5205 5inMFD";
   compatible = "oceanic,5205-5inmfd", "allwinner,sun50i-a64";
 
   aliases {
       ethernet0 = &emac;
       serial0 = &uart0;
   };
 
   chosen {
       stdout-path = "serial0:115200n8";
   };
};
 
&ehci0 {
   status = "okay";
};
 
&emac {
   pinctrl-names = "default";
   pinctrl-0 = <&rgmii_pins>;
   phy-mode = "rgmii";
   phy-handle = <&ext_rgmii_phy>;
   phy-supply = <&reg_dc1sw>;
   allwinner,tx-delay-ps = <600>;
   status = "okay";
};
 
&i2c0 {
   status = "okay";
 
   touchscreen@5d {
       compatible = "goodix,gt911";
       reg = <0x5d>;
       AVDD28-supply = <&reg_ldo_io0>;            /* VDD_CTP: GPIO0-LDO */
       interrupt-parent = <&pio>;
       interrupts = <7 4 IRQ_TYPE_EDGE_FALLING>;
       irq-gpios = <&pio 7 4 GPIO_ACTIVE_HIGH>;    /* CTP-INT: PH4 */
       reset-gpios = <&pio 7 11 GPIO_ACTIVE_HIGH>;    /* CTP-RST: PH11 */
       touchscreen-inverted-x;
       touchscreen-inverted-y;
   };
};
 
&mdio {
   ext_rgmii_phy: ethernet-phy@1 {
       compatible = "ethernet-phy-ieee802.3-c22";
       reg = <1>;
   };
};
 
&ohci0 {
   status = "okay";
};
 
&reg_dc1sw {
   regulator-name = "vcc-phy";
};
 
&reg_ldo_io0 {
   regulator-min-microvolt = <2800000>;
   regulator-max-microvolt = <2800000>;
   regulator-name = "vdd-ctp";
   status = "okay";
};
 
&uart0 {
   pinctrl-names = "default";
   pinctrl-0 = <&uart0_pb_pins>;
   status = "okay";
};
 
&usb_otg {
   dr_mode = "host";
   status = "okay";
};
 
&usbphy {
   status = "okay";
};