1/* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 /* 10 * shared memory reserved for the inter-processor communication 11 */ 12 zephyr,ipc_shm = &shram; 13 zephyr,ipc = &mailbox0; 14 }; 15 16 shram: memory@55000000 { 17 compatible = "mmio-sram"; 18 reg = <0x55000000 0x500000>; 19 }; 20}; 21 22&mailbox0 { 23 status = "okay"; 24}; 25