Skip to content

Commit

Permalink
boards: nordic: nrf54h20dk: Move etr region
Browse files Browse the repository at this point in the history
Drop the standalone etr buffer memory region and move the etr buffer
into the basic app core memory.

Signed-off-by: Karsten Koenig <karsten.koenig@nordicsemi.no>
  • Loading branch information
karstenkoenig committed Nov 4, 2024
1 parent ad0f474 commit bdf9b12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 21 deletions.
23 changes: 6 additions & 17 deletions boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20-memory_map.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@
reg = <0x800 DT_SIZE_K(2)>;
};

cpuapp_data: memory@1000 {
reg = <0x1000 DT_SIZE_K(256)>;
etr_buffer: memory@1000 {
reg = <0x1000 DT_SIZE_K(4)>;
};

cpuapp_data: memory@2000 {
reg = <0x2000 DT_SIZE_K(252)>;
};
};

Expand All @@ -47,21 +51,6 @@
};
};

etr_buf_ram0x_region: memory@2f0be000 {
compatible = "nordic,owned-memory";
reg = <0x2f0be000 DT_SIZE_K(4)>;
status = "disabled";
nordic,access = <NRF_OWNER_ID_APPLICATION NRF_PERM_RWS>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x2f0be000 0x1000>;

/* TODO In future move this region to cpuapp_ram0x_region. */
etr_buffer: memory@0 {
reg = <0x0 DT_SIZE_K(4)>;
};
};

cpuapp_cpurad_ram0x_region: memory@2f0bf000 {
compatible = "nordic,owned-memory";
reg = <0x2f0bf000 DT_SIZE_K(4)>;
Expand Down
4 changes: 0 additions & 4 deletions boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp.dts
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,6 @@
status = "okay";
};

&etr_buf_ram0x_region {
status = "okay";
};

&ram21_region {
status = "okay";
};
Expand Down

0 comments on commit bdf9b12

Please sign in to comment.