2023-12-21 22:15:22 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2023 NXP
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
chosen {
|
|
|
|
/* Delete ipc chosen property where old IPM mailbox driver bellow is
|
|
|
|
* configured.
|
|
|
|
*/
|
|
|
|
/delete-property/ zephyr,ipc;
|
|
|
|
};
|
|
|
|
|
|
|
|
soc {
|
|
|
|
/* Delete IPM Driver node nxp,imx-mu */
|
|
|
|
/delete-node/ mailbox@40c48000;
|
|
|
|
|
|
|
|
/* Attach MBOX driver to MU Unit */
|
|
|
|
mbox:mbox@40c48000 {
|
|
|
|
compatible = "nxp,mbox-imx-mu";
|
|
|
|
reg = <0x40c48000 0x4000>;
|
|
|
|
interrupts = <118 0>;
|
|
|
|
rx-channels = <4>;
|
|
|
|
#mbox-cells = <1>;
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
};
|
2024-02-23 18:25:41 +08:00
|
|
|
|
|
|
|
mbox-consumer {
|
|
|
|
compatible = "vnd,mbox-consumer";
|
|
|
|
mboxes = <&mbox 1>, <&mbox 0>;
|
|
|
|
mbox-names = "tx", "rx";
|
|
|
|
};
|
2023-12-21 22:15:22 +08:00
|
|
|
};
|