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-sec.dtsi> 10#include "board.dtsi" 11 12/ { 13 model = "emsdp"; 14 compatible = "snps,emsdp", "snps,emsdp"; 15 16 aliases { 17 uart-0 = &uart0; 18 }; 19 20 chosen { 21 zephyr,sram = &sram0; 22 zephyr,console = &uart0; 23 zephyr,shell-uart = &uart0; 24 }; 25}; 26 27&uart0 { 28 status = "okay"; 29 current-speed = <115200>; 30}; 31 32/ { 33 soc { 34 35 uart@f0004000 { 36 interrupts = <108 1>; 37 }; 38 39 gpio@f0002000 { 40 interrupts = <86 1>; 41 }; 42 43 /* IRQ line in em7d_esp is different to others */ 44 spi@f0008000 { 45 interrupts = <84 1>; 46 }; 47 48 spi@f1000000 { 49 interrupts = <85 1>; 50 }; 51 }; 52}; 53