1/*
2 * Copyright (c) 2020 Moonkwun Jung
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <st/h7/stm32h7.dtsi>
8
9/ {
10	cpus {
11		cpu1: cpu@1 {
12			device_type = "cpu";
13			compatible = "arm,cortex-m4f";
14			reg = <1>;
15		};
16	};
17
18	soc {
19		mailbox: mailbox@58026400 {
20			compatible = "st,stm32-hsem-mailbox", "st,mbox-stm32-hsem";
21			reg = <0x58026400 0x400>;
22			clocks = <&rcc STM32_CLOCK(AHB4, 25U)>;
23			#mbox-cells = <1>;
24			status = "disabled";
25		};
26	};
27};
28
29&flash {
30	clocks = <&rcc STM32_CLOCK(AHB3, 8U)>;
31};
32