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";
21			reg = <0x58026400 0x400>;
22			clocks = <&rcc STM32_CLOCK_BUS_AHB4 0x02000000>;
23			status = "disabled";
24		};
25	};
26};
27