1/*
2 * Copyright (c) 2025 Nuvoton Technology Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8#include <nuvoton/m55m1x.dtsi>
9
10/ {
11	sram0: memory@20100000 {
12		compatible = "mmio-sram";
13		reg = <0x20100000 DT_SIZE_K(1344)>;
14	};
15
16	dtcm: memory@20000000 {
17		compatible = "zephyr,memory-region", "arm,dtcm";
18		reg = <0x20000000 DT_SIZE_K(128)>;
19		zephyr,memory-region = "DTCM";
20	};
21
22	itcm: memory@0 {
23		compatible = "zephyr,memory-region", "arm,itcm";
24		reg = <0x00000000 DT_SIZE_K(64)>;
25		zephyr,memory-region = "ITCM";
26	};
27
28	soc {
29		fmc: flash-controller@40044000 {
30			flash0: flash@100000 {
31				reg = <0x100000 DT_SIZE_K(2048)>;
32			};
33		};
34	};
35};
36