1/* 2 * Copyright (c) 2018, Synopsys, Inc. All rights reserved. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8 9#include <mem.h> 10#include <synopsys/emsk.dtsi> 11#include "em_starterkit_r23.dtsi" 12#include "board.dtsi" 13 14/ { 15 model = "em_starterkit-em11d"; 16 compatible = "snps,em_starterkit-em11d", "snps,em_starterkit"; 17 18 aliases { 19 uart-0 = &uart0; 20 uart-1 = &uart1; 21 uart-2 = &uart2; 22 spi-flash0 = &w25q128bv; 23 }; 24 25 chosen { 26 zephyr,sram = &ddr0; 27 zephyr,console = &uart1; 28 zephyr,shell-uart = &uart1; 29 }; 30 31 iccm0: iccm@0 { 32 compatible = "arc,iccm"; 33 reg = <0x0 DT_SIZE_K(64)>; 34 }; 35 36 dccm0: dccm@80000000 { 37 compatible = "arc,dccm"; 38 reg = <0x80000000 DT_SIZE_K(64)>; 39 }; 40 41 xccm@c0000000 { 42 compatible = "arc,xccm"; 43 reg = <0xc0000000 DT_SIZE_K(8)>; 44 }; 45 46 yccm@e0000000 { 47 compatible = "arc,yccm"; 48 reg = <0xe0000000 DT_SIZE_K(8)>; 49 }; 50}; 51 52&uart1 { 53 status = "okay"; 54 current-speed = <115200>; 55}; 56