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 <synopsys/arc_iot.dtsi> 10#include <mem.h> 11 12/ { 13 model = "iotdk"; 14 compatible = "snps,iotdk", "snps,iotdk"; 15 16 aliases { 17 uart-0 = &uart0; 18 }; 19 20 chosen { 21 zephyr,sram = &dccm0; 22 zephyr,flash = &flash0; 23 zephyr,console = &uart0; 24 zephyr,shell-uart = &uart0; 25 }; 26 27 xccm@c0000000 { 28 compatible = "arc,xccm"; 29 reg = <0xc0000000 DT_SIZE_K(32)>; 30 }; 31 32 yccm@e0000000 { 33 compatible = "arc,yccm"; 34 reg = <0xe0000000 DT_SIZE_K(32)>; 35 }; 36}; 37 38&cpu0 { 39 clock-frequency = <144000000>; 40}; 41 42&uart0 { 43 status = "okay"; 44 current-speed = <115200>; 45}; 46