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/ &flash0;
11
12/ {
13	chosen {
14		/* Flash controller support is not yet supported on M4 core */
15		/delete-property/ zephyr,flash-controller;
16	};
17
18	cpus {
19		/delete-node/ cpu@0;
20	};
21
22	soc {
23		flash-controller@52002000 {
24			flash1: flash@8100000 {
25				reg = <0x08100000 DT_SIZE_K(1024)>;
26			};
27		};
28
29		mailbox@58026400 {
30			interrupts = <126 0>;
31		};
32	};
33};
34