mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
f98852bfa9
The Linux device tree for the Allwinner A64 SoC has changed a lot since the U-Boot version was merged. Let's replace the current DT with a exact copy of the Linux one as of: commit c6778ff813d2ca3e3c8733c87dc8b6831a64578b Merge: 0ff4c01 3c0e3abd Author: Linus Torvalds <torvalds@linux-foundation.org> Date: Tue May 9 10:07:33 2017 -0700 This is the DT used in Linux 4.12-rc1. Since U-Boot has an Ethernet driver (while Linux does not yet), we provide the required DT nodes for it in an ...-u-boot.dtsi file, to both mark them as U-Boot specific and to allow easier upgrading once Linux gets the driver and its own binding later. Compared to the existing Ethernet DT nodes we just slightly tweak the clock and reset nodes in there to match the new bindings used by Linux for those. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com> Tested-by: Jagan Teki <jagan@amarulasolutions.com>
50 lines
1.1 KiB
Text
50 lines
1.1 KiB
Text
/ {
|
|
aliases {
|
|
ethernet0 = &emac;
|
|
};
|
|
|
|
soc {
|
|
emac: ethernet@01c30000 {
|
|
compatible = "allwinner,sun50i-a64-emac";
|
|
reg = <0x01c30000 0x2000>, <0x01c00030 0x4>;
|
|
reg-names = "emac", "syscon";
|
|
interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
|
|
resets = <&ccu RST_BUS_EMAC>;
|
|
reset-names = "ahb";
|
|
clocks = <&ccu CLK_BUS_EMAC>;
|
|
clock-names = "ahb";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&rgmii_pins>;
|
|
phy-mode = "rgmii";
|
|
phy = <&phy1>;
|
|
status = "okay";
|
|
|
|
phy1: ethernet-phy@1 {
|
|
reg = <1>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&pio {
|
|
rmii_pins: rmii_pins {
|
|
allwinner,pins = "PD10", "PD11", "PD13", "PD14",
|
|
"PD17", "PD18", "PD19", "PD20",
|
|
"PD22", "PD23";
|
|
allwinner,function = "emac";
|
|
allwinner,drive = <3>;
|
|
allwinner,pull = <0>;
|
|
};
|
|
|
|
rgmii_pins: rgmii_pins {
|
|
allwinner,pins = "PD8", "PD9", "PD10", "PD11",
|
|
"PD12", "PD13", "PD15",
|
|
"PD16", "PD17", "PD18", "PD19",
|
|
"PD20", "PD21", "PD22", "PD23";
|
|
allwinner,function = "emac";
|
|
allwinner,drive = <3>;
|
|
allwinner,pull = <0>;
|
|
};
|
|
};
|