zephyr/boards/arc/iotdk/iotdk.dts
Wayne Ren 022f061632 board: add the initial support of iotdk
The initial support of iotdk which is a board based on Synopsys
ARC IoT SoC.

In this commit, it includes

* processor support
* UART driver

Signed-off-by: Wayne Ren <wei.ren@synopsys.com>
2019-01-10 07:05:51 -05:00

30 lines
417 B
Text

/*
* Copyright (c) 2018, Synopsys, Inc. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <arc_iot.dtsi>
#include "board.dtsi"
/ {
model = "iotdk";
compatible = "snps,iotdk", "snps,iotdk";
aliases {
uart-0 = &uart0;
};
chosen {
zephyr,sram = &dccm0;
zephyr,flash = &flash0;
zephyr,console = &uart0;
};
};
&uart0 {
status = "ok";
current-speed = <115200>;
};