1/* 2 * Copyright (c) 2020 Linumiz 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8#include <nuvoton/m48x.dtsi> 9 10/ { 11 model = "Nuvoton PFM M487 board"; 12 compatible = "nuvoton,pfm-m487", "nuvoton,m487"; 13 14 chosen { 15 zephyr,console = &uart0; 16 zephyr,shell = &uart0; 17 zephyr,sram = &sram0; 18 zephyr,flash = &flash0; 19 }; 20}; 21 22&flash0 { 23 reg = <0x0 DT_SIZE_K(512)>; 24}; 25 26&sram0 { 27 reg = <0x20000000 DT_SIZE_K(160)>; 28}; 29 30&uart0 { 31 current-speed = <115200>; 32 status = "okay"; 33}; 34