boards: nordic: nrf54h20dk: Add ETR buffer to the memory map
Add 4k ETR buffer to the memory map. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
This commit is contained in:
parent
3e5a66d43d
commit
46c2988a4c
2 changed files with 21 additions and 0 deletions
|
@ -51,6 +51,23 @@
|
|||
};
|
||||
};
|
||||
|
||||
etr_buf_ram0x_region: memory@2f0be000 {
|
||||
compatible = "nordic,owned-memory";
|
||||
reg = <0x2f0be000 DT_SIZE_K(4)>;
|
||||
status = "disabled";
|
||||
perm-read;
|
||||
perm-write;
|
||||
perm-secure;
|
||||
#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)>;
|
||||
|
|
|
@ -112,6 +112,10 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
&etr_buf_ram0x_region {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&cpuapp_cpurad_ram0x_region {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue