1/*
2 * Copyright (c) 2022 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7ipc0: ipc0 {
8	compatible = "zephyr,ipc-icbmsg";
9	status = "okay";
10	mboxes = <&mbox 0>, <&mbox 1>;
11	mbox-names = "tx", "rx";
12	tx-region = <&cpuapp_cpunet_ipc_shm>;
13	rx-region = <&cpunet_cpuapp_ipc_shm>;
14	tx-blocks = <32>;
15	rx-blocks = <32>;
16
17	bt_hci_ipc0: bt_hci_ipc0 {
18		compatible = "zephyr,bt-hci-ipc";
19		status = "okay";
20	};
21};
22