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	};
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 = <107 1>;
37		};
38
39		gpio@f0002000 {
40			interrupts = <85 1>;
41		};
42
43		spi@f0008000 {
44			interrupts = <83 1>;
45		};
46
47		spi@f1000000 {
48			interrupts = <84 1>;
49		};
50	};
51};
52