Skip to content

Commit 5708d4e

Browse files
nordic-krchrlubos
authored andcommitted
[nrf fromlist] boards: nordic: nrf54h20dk: Add ETR buffer to memory map
Add 4k ETR buffer to the memory map. Upstream PR: zephyrproject-rtos/zephyr#72476 Signed-off-by: Krzysztof Chruściński <[email protected]>
1 parent e8ce359 commit 5708d4e

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20-memory_map.dtsi

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,23 @@
5151
};
5252
};
5353

54+
etr_buf_ram0x_region: memory@2f0be000 {
55+
/* TODO to be reworked when SDFW with STM support is released.*/
56+
compatible = "nordic,owned-memory";
57+
reg = <0x2f0be000 DT_SIZE_K(4)>;
58+
status = "disabled";
59+
perm-read;
60+
perm-write;
61+
perm-secure;
62+
#address-cells = <1>;
63+
#size-cells = <1>;
64+
ranges = <0x0 0x2f0be000 0x1000>;
65+
66+
etr_buffer: memory@0 {
67+
reg = <0x0 DT_SIZE_K(4)>;
68+
};
69+
};
70+
5471
cpuapp_cpurad_ram0x_region: memory@2f0bf000 {
5572
compatible = "nordic,owned-memory";
5673
reg = <0x2f0bf000 DT_SIZE_K(4)>;

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp.dts

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

124+
&etr_buf_ram0x_region {
125+
status = "okay";
126+
};
127+
124128
&cpuapp_cpurad_ram0x_region {
125129
status = "okay";
126130
};

0 commit comments

Comments
 (0)