Skip to content

Commit 28be8d1

Browse files
nika-nordicjonathannilsen
authored andcommitted
[nrf fromlist] boards: nordic: nrf54h20dk: add miscellaneous shared mem for cpusec
This is auxiliary shared memory needed for some of IPC communication. Upstream PR: zephyrproject-rtos/zephyr#74302 Signed-off-by: Nikodem Kastelik <[email protected]>
1 parent 2167ce2 commit 28be8d1

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20-memory_map.dtsi

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,17 @@
2626
reg = <0x800 DT_SIZE_K(2)>;
2727
};
2828

29-
cpuapp_data: memory@1000 {
30-
reg = <0x1000 DT_SIZE_K(256)>;
29+
/* todo: remove once cpuapp_ram0x_region can be used by cache helpers */
30+
cpuapp_cpusec_misc_shm: memory@1000 {
31+
compatible = "zephyr,memory-region";
32+
reg = <0x1000 DT_SIZE_K(16)>;
33+
#memory-region-cells = <0>;
34+
zephyr,memory-region = "CPUAPP_CPUSEC_MISC_SHM";
35+
zephyr,memory-attr = <( DT_MEM_CACHEABLE )>;
36+
};
37+
38+
cpuapp_data: memory@5000 {
39+
reg = <0x5000 DT_SIZE_K(240)>;
3140
};
3241
};
3342

0 commit comments

Comments
 (0)