1/* 2 * Copyright (C) 2017 Synopsys, Inc. All rights reserved. 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6/dts-v1/; 7 8#include "skeleton.dtsi" 9 10/ { 11 #address-cells = <1>; 12 #size-cells = <1>; 13 14 aliases { 15 console = &uart0; 16 }; 17 18 cpu_card { 19 core_clk: core_clk { 20 #clock-cells = <0>; 21 compatible = "fixed-clock"; 22 clock-frequency = <1000000000>; 23 u-boot,dm-pre-reloc; 24 }; 25 }; 26 27 uart0: serial0@f0005000 { 28 compatible = "snps,dw-apb-uart"; 29 reg = <0xf0005000 0x1000>; 30 reg-shift = <2>; 31 reg-io-width = <4>; 32 }; 33 34 ethernet@f0008000 { 35 #interrupt-cells = <1>; 36 compatible = "altr,socfpga-stmmac"; 37 reg = <0xf0008000 0x2000>; 38 phy-mode = "gmii"; 39 }; 40 41 ehci@0xf0040000 { 42 compatible = "generic-ehci"; 43 reg = <0xf0040000 0x100>; 44 }; 45 46 ohci@0xf0060000 { 47 compatible = "generic-ohci"; 48 reg = <0xf0060000 0x100>; 49 }; 50}; 51