1/*
2 * Copyright (c) 2024 Felipe Neves.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,sram = &sram1;
10		zephyr,ipc_shm = &shm0;
11		zephyr,ipc = &mbox0;
12	};
13
14	mbox-consumer {
15		compatible = "vnd,mbox-consumer";
16		mboxes = <&mbox0 0>, <&mbox0 1>;
17		mbox-names = "tx", "rx";
18	};
19};
20
21&mbox0 {
22	status = "okay";
23};
24