mirror of
https://github.com/olofk/serv.git
synced 2026-01-13 07:09:33 +00:00
34 lines
452 B
Plaintext
34 lines
452 B
Plaintext
/*
|
|
* Copyright (c) 2020 Olof Kindgren <olof.kindgren@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <serv.dtsi>
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,sram = &ram;
|
|
zephyr,console = &uart0;
|
|
};
|
|
|
|
ram: memory@0 {
|
|
compatible = "mmio-sram";
|
|
reg = <0x0 0x8000>;
|
|
};
|
|
|
|
soc {
|
|
compatible = "olofk,serv";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
uart0: serial@0 {
|
|
reg = <0x0 0x1>;
|
|
compatible = "olofk,serial";
|
|
};
|
|
};
|
|
};
|
|
|