1/* 2 * Copyright (C) 2018 Marek Vasut <marex@denx.de> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7#include "socfpga_cyclone5.dtsi" 8 9/ { 10 model = "Devboards.de DBM-SoC1"; 11 compatible = "altr,socfpga-cyclone5", "altr,socfpga"; 12 13 chosen { 14 bootargs = "console=ttyS0,115200"; 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