Skip to content

Commit

Permalink
[nrf fromlist] boards: nrf54h20pdk: add APP<->RADIO shared memory reg…
Browse files Browse the repository at this point in the history
…ions

Add memory regions shared between APP and RADIO cores.

Upstream PR: zephyrproject-rtos/zephyr#69487

Signed-off-by: Gerard Marull-Paretas <[email protected]>
(cherry picked from commit 34583f1bdd77a17a3bf63d6002134b5537d80df1)
  • Loading branch information
gmarull authored and carlescufi committed Feb 28, 2024
1 parent b6f24af commit 0fa93fa
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@

/ {
reserved-memory {
cpuapp_cpurad_ram0x_region: memory@2f0bf000 {
compatible = "nordic,owned-memory";
reg = <0x2f0bf000 DT_SIZE_K(4)>;
status = "disabled";
perm-read;
perm-write;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x2f0bf000 0x1000>;

cpuapp_cpurad_ipc_shm: memory@0 {
reg = <0x0 DT_SIZE_K(2)>;
};

cpurad_cpuapp_ipc_shm: memory@800 {
reg = <0x800 DT_SIZE_K(2)>;
};
};

cpuppr_ram3x_region: memory@2fc00000 {
compatible = "nordic,owned-memory";
reg = <0x2fc00000 DT_SIZE_K(28)>;
Expand Down

0 comments on commit 0fa93fa

Please sign in to comment.