1/*
2 * Copyright (c) 2020 Alexander Kozhinov <AlexanderKozhinov@yandex.com>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <mem.h>
8#include <st/h7/stm32h745.dtsi>
9
10/delete-node/ &flash1;
11
12/ {
13	cpus {
14		/delete-node/ cpu@1;
15	};
16
17	dtcm: memory@20000000 {
18		compatible = "zephyr,memory-region", "arm,dtcm";
19		reg = <0x20000000 DT_SIZE_K(128)>;
20		zephyr,memory-region = "DTCM";
21	};
22
23	soc {
24		flash-controller@52002000 {
25			flash0: flash@8000000 {
26				reg = <0x08000000 DT_SIZE_K(1024)>;
27			};
28		};
29
30		mailbox@58026400 {
31			interrupts = <125 0>;
32		};
33	};
34};
35