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
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
// Copyright (C) 2018 Aleksandr Aleksandrov <aleksandr.aleksandrov@emlid.com>
 
/*
 * DTS for Emlid Neutis N5 Dev board.
 */
 
/dts-v1/;
 
#include "sun50i-h5-emlid-neutis-n5.dtsi"
 
/ {
   model = "Emlid Neutis N5 Developer board";
   compatible = "emlid,neutis-n5-devboard",
            "emlid,neutis-n5",
            "allwinner,sun50i-h5";
 
   connector {
       compatible = "hdmi-connector";
       type = "a";
 
       port {
           hdmi_con_in: endpoint {
               remote-endpoint = <&hdmi_out_con>;
           };
       };
   };
 
   vdd_cpux: gpio-regulator {
       compatible = "regulator-gpio";
       regulator-name = "vdd-cpux";
       regulator-type = "voltage";
       regulator-boot-on;
       regulator-always-on;
       regulator-min-microvolt = <1100000>;
       regulator-max-microvolt = <1300000>;
       regulator-ramp-delay = <50>; /* 4ms */
       gpios = <&r_pio 0 6 GPIO_ACTIVE_HIGH>; /* PL6 */
       gpios-states = <0x1>;
       states = <1100000 0>, <1300000 1>;
   };
};
 
&cpu0 {
   cpu-supply = <&vdd_cpux>;
};
 
&codec {
   status = "okay";
};
 
&emac {
   phy-handle = <&int_mii_phy>;
   phy-mode = "mii";
   allwinner,leds-active-low;
   status = "okay";
};
 
&hdmi {
   status = "okay";
};
 
&hdmi_out {
   hdmi_out_con: endpoint {
       remote-endpoint = <&hdmi_con_in>;
   };
};
 
&i2c1 {
   status = "okay";
};