View | Details | Raw Unified | Return to bug 237719
Collapse All | Expand All

(-)u-boot-${PORTVERSION}/arch/arm/dts/Makefile (+1 lines)
Lines 497-502 Link Here
497
	sun8i-h3-nanopi-m1-plus.dtb \
497
	sun8i-h3-nanopi-m1-plus.dtb \
498
	sun8i-h3-nanopi-neo.dtb \
498
	sun8i-h3-nanopi-neo.dtb \
499
	sun8i-h3-nanopi-neo-air.dtb \
499
	sun8i-h3-nanopi-neo-air.dtb \
500
	sun8i-h3-nanopi-r1.dtb \
500
	sun8i-h3-orangepi-2.dtb \
501
	sun8i-h3-orangepi-2.dtb \
501
	sun8i-h3-orangepi-lite.dtb \
502
	sun8i-h3-orangepi-lite.dtb \
502
	sun8i-h3-orangepi-one.dtb \
503
	sun8i-h3-orangepi-one.dtb \
(-)u-boot-${PORTVERSION}/arch/arm/dts/sun8i-h3-nanopi-r1.dts (+102 lines)
Line 0 Link Here
1
/*
2
 * Copyright (C) 2019 Igor Pecovnik <igor@armbian.com>
3
 *
4
 * This file is dual-licensed: you can use it either under the terms
5
 * of the GPL or the X11 license, at your option. Note that this dual
6
 * licensing only applies to this file, and not this project as a
7
 * whole.
8
 *
9
 *  a) This file is free software; you can redistribute it and/or
10
 *     modify it under the terms of the GNU General Public License as
11
 *     published by the Free Software Foundation; either version 2 of the
12
 *     License, or (at your option) any later version.
13
 *
14
 *     This file is distributed in the hope that it will be useful,
15
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 *     GNU General Public License for more details.
18
 *
19
 * Or, alternatively,
20
 *
21
 *  b) Permission is hereby granted, free of charge, to any person
22
 *     obtaining a copy of this software and associated documentation
23
 *     files (the "Software"), to deal in the Software without
24
 *     restriction, including without limitation the rights to use,
25
 *     copy, modify, merge, publish, distribute, sublicense, and/or
26
 *     sell copies of the Software, and to permit persons to whom the
27
 *     Software is furnished to do so, subject to the following
28
 *     conditions:
29
 *
30
 *     The above copyright notice and this permission notice shall be
31
 *     included in all copies or substantial portions of the Software.
32
 *
33
 *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
34
 *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
35
 *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
36
 *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
37
 *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
38
 *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
39
 *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
40
 *     OTHER DEALINGS IN THE SOFTWARE.
41
 */
42
43
#include "sun8i-h3-nanopi.dtsi"
44
45
/ {
46
	model = "FriendlyARM NanoPi R1";
47
	compatible = "friendlyarm,nanopi-neo", "allwinner,sun8i-h3";
48
49
	reg_gmac_3v3: gmac-3v3 {
50
		compatible = "regulator-fixed";
51
		pinctrl-names = "default";
52
		regulator-name = "gmac-3v3";
53
		regulator-min-microvolt = <3300000>;
54
		regulator-max-microvolt = <3300000>;
55
		startup-delay-us = <100000>;
56
		enable-active-high;
57
		gpio = <&pio 3 6 GPIO_ACTIVE_HIGH>;
58
	};
59
60
};
61
62
&ehci0 {
63
	status = "okay";
64
};
65
66
&pio {
67
	gmac_power_pin_nanopi: gmac_power_pin@0 {
68
		pins = "PD6";
69
		function = "gpio_out";
70
	};
71
};
72
73
&ohci0 {
74
	status = "okay";
75
};
76
77
&mmc2 {
78
	pinctrl-names = "default";
79
	pinctrl-0 = <&mmc2_8bit_pins>;
80
	vmmc-supply = <&reg_vcc3v3>;
81
	bus-width = <8>;
82
	non-removable;
83
	cap-mmc-hw-reset;
84
	status = "okay";
85
};
86
87
&emac {
88
	pinctrl-names = "default";
89
	pinctrl-0 = <&emac_rgmii_pins>;
90
	phy-supply = <&reg_gmac_3v3>;
91
	phy-handle = <&ext_rgmii_phy>;
92
	phy-mode = "rgmii";
93
94
	status = "okay";
95
};
96
97
&external_mdio {
98
	ext_rgmii_phy: ethernet-phy@1 {
99
		compatible = "ethernet-phy-ieee802.3-c22";
100
		reg = <7>;
101
	};
102
};
(-)u-boot-${PORTVERSION}/configs/nanopi_r1_defconfig (+22 lines)
Line 0 Link Here
1
CONFIG_ARM=y
2
CONFIG_ARCH_SUNXI=y
3
CONFIG_SPL=y
4
CONFIG_MACH_SUN8I_H3=y
5
CONFIG_DRAM_CLK=408
6
CONFIG_DRAM_ZQ=3881979
7
CONFIG_DRAM_ODT_EN=y
8
CONFIG_MACPWR="PD6"
9
# CONFIG_VIDEO_DE2 is not set
10
CONFIG_NR_DRAM_BANKS=1
11
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
12
CONFIG_CONSOLE_MUX=y
13
CONFIG_SYS_CLK_FREQ=480000000
14
# CONFIG_CMD_FLASH is not set
15
# CONFIG_SPL_DOS_PARTITION is not set
16
# CONFIG_SPL_EFI_PARTITION is not set
17
CONFIG_DEFAULT_DEVICE_TREE="sun8i-h3-nanopi-r1"
18
CONFIG_SUN8I_EMAC=y
19
CONFIG_USB_EHCI_HCD=y
20
CONFIG_USB_OHCI_HCD=y
21
CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE=y
22
CONFIG_MMC_SUNXI_SLOT_EXTRA=2

Return to bug 237719