This commit adds support for NXP board LPCXpresso55S69 for mbox. - samples/drivers/mbox/ - mbox signaling mode - samples/drivers/mbox_data/ - mbox data transfer mode - tests/drivers/mbox/mbox_data/ - mbox test to verify functionality. Signed-off-by: Tomas Galbicka <tomas.galbicka@nxp.com>
29 lines
537 B
Text
29 lines
537 B
Text
/*
|
|
* Copyright 2024 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,lpc-mailbox */
|
|
/delete-node/ mailbox@8b000;
|
|
|
|
/* Attach MBOX driver to Mailbox Unit */
|
|
mbox:mailbox0@5008b000 {
|
|
compatible = "nxp,mbox-mailbox";
|
|
reg = <0x5008b000 0xEC>;
|
|
interrupts = <31 0>;
|
|
rx-channels = <4>;
|
|
#mbox-cells = <1>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|