1/* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 soc { 9 reserved-memory { 10 #address-cells = <1>; 11 #size-cells = <1>; 12 13 sram_rx: memory@20018000 { 14 reg = <0x20018000 0x0800>; 15 }; 16 17 sram_tx: memory@20020000 { 18 reg = <0x20020000 0x0800>; 19 }; 20 }; 21 }; 22 23 ipc { 24 ipc0: ipc0 { 25 compatible = "zephyr,ipc-icbmsg"; 26 dcache-alignment = <32>; 27 tx-region = <&sram_tx>; 28 rx-region = <&sram_rx>; 29 tx-blocks = <16>; 30 rx-blocks = <18>; 31 mboxes = <&cpuapp_vevif_rx 20>, <&cpuapp_vevif_tx 21>; 32 mbox-names = "rx", "tx"; 33 status = "okay"; 34 }; 35 }; 36}; 37 38&cpuapp_vevif_rx { 39 status = "okay"; 40}; 41 42&cpuapp_vevif_tx { 43 status = "okay"; 44}; 45