1/*
2 * Copyright (c) 2024 Celina Sophie Kalus <hello@celinakalus.de>
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,console = &uart8;
10		zephyr,shell-uart = &uart8;
11	};
12
13	mbox-consumer {
14		compatible = "vnd,mbox-consumer";
15		mboxes = <&mailbox 10>, <&mailbox 11>;
16		mbox-names = "tx", "rx";
17	};
18};
19
20&uart8 {
21	status = "okay";
22};
23
24&mailbox {
25	status = "okay";
26};
27