45 lines
538 B
Plaintext
45 lines
538 B
Plaintext
|
/*
|
||
|
* Copyright (c) 2019, Synopsys, Inc. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
#include <emsdp.dtsi>
|
||
|
#include "board.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "emsdp";
|
||
|
compatible = "snps,emsdp", "snps,emsdp";
|
||
|
|
||
|
aliases {
|
||
|
uart-0 = &uart0;
|
||
|
};
|
||
|
|
||
|
chosen {
|
||
|
zephyr,sram = &sram0;
|
||
|
zephyr,console = &uart0;
|
||
|
zephyr,shell-uart = &uart0;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&uart0 {
|
||
|
status = "okay";
|
||
|
current-speed = <115200>;
|
||
|
};
|
||
|
|
||
|
/ {
|
||
|
soc {
|
||
|
|
||
|
uart@f0004000 {
|
||
|
interrupts = <108 1>;
|
||
|
};
|
||
|
|
||
|
gpio@f0002000 {
|
||
|
interrupts = <86 1>;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
};
|