Skip to content

Commit

Permalink
[nrf fromtree] boards: nordic: nrf54h20dk: make RAM3x DMA region larg…
Browse files Browse the repository at this point in the history
…er 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)
  • Loading branch information
nika-nordic committed Oct 14, 2024
1 parent 187d590 commit a093fcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20-memory_map.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,16 @@

cpuapp_dma_region: memory@e80 {
compatible = "zephyr,memory-region";
reg = <0xe80 DT_SIZE_K(4)>;
reg = <0xe80 DT_SIZE_K(3)>;
status = "disabled";
#memory-region-cells = <0>;
zephyr,memory-region = "DMA_RAM3x_APP";
zephyr,memory-attr = <( DT_MEM_DMA )>;
};

cpurad_dma_region: memory@1e80 {
cpurad_dma_region: memory@1a80 {
compatible = "zephyr,memory-region";
reg = <0x1e80 0x80>;
reg = <0x1a80 0x480>;
status = "disabled";
#memory-region-cells = <0>;
zephyr,memory-region = "DMA_RAM3x_RAD";
Expand Down

0 comments on commit a093fcd

Please sign in to comment.