1/* 2 * Copyright (c) 2019, Synopsys, Inc. All rights reserved. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8 9#include <synopsys/emsdp.dtsi> 10#include "board.dtsi" 11 12/ { 13 model = "emsdp"; 14 compatible = "snps,emsdp", "snps,emsdp"; 15 16 aliases { 17 uart-0 = &uart0; 18 spi-flash0 = &s25fl256s; 19 }; 20 21 chosen { 22 zephyr,sram = &sram0; 23 zephyr,console = &uart0; 24 zephyr,shell-uart = &uart0; 25 }; 26}; 27 28&uart0 { 29 status = "okay"; 30 current-speed = <115200>; 31}; 32 33/ { 34 soc { 35 36 uart@f0004000 { 37 interrupts = <108 1>; 38 }; 39 40 gpio@f0002000 { 41 interrupts = <86 1>; 42 }; 43 44 spi@f0008000 { 45 interrupts = <83 1>; 46 }; 47 48 spi@f1000000 { 49 interrupts = <84 1>; 50 }; 51 }; 52}; 53