Skip to content

Commit e703a94

Browse files
nika-nordic57300
authored andcommitted
[nrf fromtree] boards: nordic: nrf54h20dk: make RAM3x DMA region larger for cpurad
Some tests are failing on nrf54h20 cpurad in non-obvious manner because of this memory region being too small. Instead of adding overlays to each individual application, make this region larger at expense of cpuapp equivalent. Signed-off-by: Nikodem Kastelik <[email protected]> (cherry picked from commit e0860eb)
1 parent d87af2f commit e703a94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20-memory_map.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,16 +183,16 @@
183183

184184
cpuapp_dma_region: memory@e80 {
185185
compatible = "zephyr,memory-region";
186-
reg = <0xe80 DT_SIZE_K(4)>;
186+
reg = <0xe80 DT_SIZE_K(3)>;
187187
status = "disabled";
188188
#memory-region-cells = <0>;
189189
zephyr,memory-region = "DMA_RAM3x_APP";
190190
zephyr,memory-attr = <( DT_MEM_DMA )>;
191191
};
192192

193-
cpurad_dma_region: memory@1e80 {
193+
cpurad_dma_region: memory@1a80 {
194194
compatible = "zephyr,memory-region";
195-
reg = <0x1e80 0x80>;
195+
reg = <0x1a80 0x480>;
196196
status = "disabled";
197197
#memory-region-cells = <0>;
198198
zephyr,memory-region = "DMA_RAM3x_RAD";

0 commit comments

Comments
 (0)