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:
parent
6c130bcbab
commit
2773792490
3 changed files with 5 additions and 2 deletions
|
@ -21,6 +21,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
cpuapp_cpurad_ipc: ipc-2-3 {
|
cpuapp_cpurad_ipc: ipc-2-3 {
|
||||||
|
compatible = "zephyr,ipc-icbmsg";
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
mboxes = <&cpuapp_bellboard 18>,
|
mboxes = <&cpuapp_bellboard 18>,
|
||||||
<&cpurad_bellboard 12>;
|
<&cpurad_bellboard 12>;
|
||||||
|
|
|
@ -112,10 +112,11 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
&cpuapp_cpurad_ipc {
|
&cpuapp_cpurad_ipc {
|
||||||
compatible = "zephyr,ipc-icmsg-me-initiator";
|
|
||||||
mbox-names = "rx", "tx";
|
mbox-names = "rx", "tx";
|
||||||
tx-region = <&cpuapp_cpurad_ipc_shm>;
|
tx-region = <&cpuapp_cpurad_ipc_shm>;
|
||||||
rx-region = <&cpurad_cpuapp_ipc_shm>;
|
rx-region = <&cpurad_cpuapp_ipc_shm>;
|
||||||
|
tx-blocks = <32>;
|
||||||
|
rx-blocks = <32>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&cpuapp_cpusys_ipc {
|
&cpuapp_cpusys_ipc {
|
||||||
|
|
|
@ -46,10 +46,11 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
&cpuapp_cpurad_ipc {
|
&cpuapp_cpurad_ipc {
|
||||||
compatible = "zephyr,ipc-icmsg-me-follower";
|
|
||||||
mbox-names = "tx", "rx";
|
mbox-names = "tx", "rx";
|
||||||
tx-region = <&cpurad_cpuapp_ipc_shm>;
|
tx-region = <&cpurad_cpuapp_ipc_shm>;
|
||||||
rx-region = <&cpuapp_cpurad_ipc_shm>;
|
rx-region = <&cpuapp_cpurad_ipc_shm>;
|
||||||
|
tx-blocks = <32>;
|
||||||
|
rx-blocks = <32>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&cpurad_cpusys_ipc {
|
&cpurad_cpusys_ipc {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue