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