Skip to content

Commit bdf9b12

Browse files
committed
boards: nordic: nrf54h20dk: Move etr region
Drop the standalone etr buffer memory region and move the etr buffer into the basic app core memory. Signed-off-by: Karsten Koenig <[email protected]>
1 parent ad0f474 commit bdf9b12

File tree

2 files changed

+6
-21
lines changed

2 files changed

+6
-21
lines changed

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20-memory_map.dtsi

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@
2424
reg = <0x800 DT_SIZE_K(2)>;
2525
};
2626

27-
cpuapp_data: memory@1000 {
28-
reg = <0x1000 DT_SIZE_K(256)>;
27+
etr_buffer: memory@1000 {
28+
reg = <0x1000 DT_SIZE_K(4)>;
29+
};
30+
31+
cpuapp_data: memory@2000 {
32+
reg = <0x2000 DT_SIZE_K(252)>;
2933
};
3034
};
3135

@@ -47,21 +51,6 @@
4751
};
4852
};
4953

50-
etr_buf_ram0x_region: memory@2f0be000 {
51-
compatible = "nordic,owned-memory";
52-
reg = <0x2f0be000 DT_SIZE_K(4)>;
53-
status = "disabled";
54-
nordic,access = <NRF_OWNER_ID_APPLICATION NRF_PERM_RWS>;
55-
#address-cells = <1>;
56-
#size-cells = <1>;
57-
ranges = <0x0 0x2f0be000 0x1000>;
58-
59-
/* TODO In future move this region to cpuapp_ram0x_region. */
60-
etr_buffer: memory@0 {
61-
reg = <0x0 DT_SIZE_K(4)>;
62-
};
63-
};
64-
6554
cpuapp_cpurad_ram0x_region: memory@2f0bf000 {
6655
compatible = "nordic,owned-memory";
6756
reg = <0x2f0bf000 DT_SIZE_K(4)>;

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp.dts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,6 @@
119119
status = "okay";
120120
};
121121

122-
&etr_buf_ram0x_region {
123-
status = "okay";
124-
};
125-
126122
&ram21_region {
127123
status = "okay";
128124
};

0 commit comments

Comments
 (0)