boards: nordic: nrf54h20dk: Change IPC default backend

Change IPC backend between Application and Radio core
to icbmsg which is more future proof than legacy
icmsg_me backend.

Signed-off-by: Kamil Gawor <Kamil.Gawor@nordicsemi.no>
This commit is contained in:
Kamil Gawor 2024-04-15 11:52:36 +02:00 committed by Fabio Baltieri
commit 2773792490
3 changed files with 5 additions and 2 deletions

View file

@ -21,6 +21,7 @@
};
cpuapp_cpurad_ipc: ipc-2-3 {
compatible = "zephyr,ipc-icbmsg";
status = "disabled";
mboxes = <&cpuapp_bellboard 18>,
<&cpurad_bellboard 12>;

View file

@ -112,10 +112,11 @@
};
&cpuapp_cpurad_ipc {
compatible = "zephyr,ipc-icmsg-me-initiator";
mbox-names = "rx", "tx";
tx-region = <&cpuapp_cpurad_ipc_shm>;
rx-region = <&cpurad_cpuapp_ipc_shm>;
tx-blocks = <32>;
rx-blocks = <32>;
};
&cpuapp_cpusys_ipc {

View file

@ -46,10 +46,11 @@
};
&cpuapp_cpurad_ipc {
compatible = "zephyr,ipc-icmsg-me-follower";
mbox-names = "tx", "rx";
tx-region = <&cpurad_cpuapp_ipc_shm>;
rx-region = <&cpuapp_cpurad_ipc_shm>;
tx-blocks = <32>;
rx-blocks = <32>;
};
&cpurad_cpusys_ipc {