1/* 2 * Copyright 2023 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 /* Delete ipc chosen property where old IPM mailbox driver bellow is 10 * configured. 11 */ 12 /delete-property/ zephyr,ipc; 13 }; 14 15 soc { 16 /* Delete IPM Driver node nxp,imx-mu */ 17 /delete-node/ mailbox@40c48000; 18 19 /* Attach MBOX driver to MU Unit */ 20 mbox:mbox@40c48000 { 21 compatible = "nxp,mbox-imx-mu"; 22 reg = <0x40c48000 0x4000>; 23 interrupts = <118 0>; 24 rx-channels = <4>; 25 #mbox-cells = <1>; 26 status = "okay"; 27 }; 28 }; 29}; 30