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-em9d"; 16 compatible = "snps,em_starterkit-em9d", "snps,em_starterkit"; 17 18 aliases { 19 uart-0 = &uart0; 20 uart-1 = &uart1; 21 uart-2 = &uart2; 22 }; 23 24 chosen { 25 zephyr,sram = &dccm0; 26 zephyr,console = &uart1; 27 zephyr,shell-uart = &uart1; 28 }; 29 30 iccm0: iccm@0 { 31 compatible = "arc,iccm"; 32 reg = <0x0 DT_SIZE_K(256)>; 33 }; 34 35 dccm0: dccm@80000000 { 36 compatible = "arc,dccm"; 37 reg = <0x80000000 DT_SIZE_K(128)>; 38 }; 39 40 xccm@c0000000 { 41 compatible = "arc,xccm"; 42 reg = <0xc0000000 DT_SIZE_K(8)>; 43 }; 44 45 yccm@e0000000 { 46 compatible = "arc,yccm"; 47 reg = <0xe0000000 DT_SIZE_K(8)>; 48 }; 49}; 50 51&uart1 { 52 status = "okay"; 53 current-speed = <115200>; 54}; 55