1/* 2 * Copyright (C) 2015 Marek Vasut <marex@denx.de> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7#include "socfpga_cyclone5.dtsi" 8 9/ { 10 model = "DENX MCVEVK"; 11 compatible = "altr,socfpga-cyclone5", "altr,socfpga"; 12 13 chosen { 14 bootargs = "console=ttyS0,115200"; 15 }; 16 17 aliases { 18 ethernet0 = &gmac0; 19 }; 20 21 memory { 22 name = "memory"; 23 device_type = "memory"; 24 reg = <0x0 0x40000000>; /* 1GB */ 25 }; 26 27 soc { 28 u-boot,dm-pre-reloc; 29 }; 30}; 31 32&gmac0 { 33 status = "okay"; 34 phy-mode = "rgmii"; 35}; 36 37&gpio0 { 38 status = "okay"; 39}; 40 41&gpio1 { 42 status = "okay"; 43}; 44 45&gpio2 { 46 status = "okay"; 47}; 48 49&mmc0 { 50 status = "okay"; 51 bus-width = <8>; 52 u-boot,dm-pre-reloc; 53}; 54