1/*
2 * Copyright 2024 Nordic Semiconductor ASA
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/ {
7	mbox-consumer {
8		compatible = "vnd,mbox-consumer";
9		mboxes = <&cpuapp_vevif_tx 21>, <&cpuapp_vevif_tx 32>,
10				 <&cpuapp_vevif_rx 20>, <&cpuapp_vevif_rx 32>;
11		mbox-names = "remote_valid", "remote_incorrect",
12					 "local_valid", "local_incorrect";
13
14	};
15};
16
17&cpuapp_vevif_rx {
18	status = "okay";
19};
20
21&cpuapp_vevif_tx {
22	status = "okay";
23};
24