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-sec.dtsi> 11#include "em_starterkit_r23.dtsi" 12#include "board.dtsi" 13 14/ { 15 model = "em_starterkit-em7d"; 16 compatible = "snps,em_starterkit-em7d", "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 = &dccm0; 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(256)>; 34 }; 35 36 dccm0: dccm@80000000 { 37 compatible = "arc,dccm"; 38 reg = <0x80000000 DT_SIZE_K(128)>; 39 }; 40}; 41 42&uart1 { 43 status = "okay"; 44 current-speed = <115200>; 45}; 46 47&spi0 { 48 status = "okay"; 49}; 50 51&spi1 { 52 status = "okay"; 53}; 54