Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp.dts
Original file line number Diff line number Diff line change
Expand Up @@ -345,23 +345,23 @@ zephyr_udc0: &usbhs {

/* Trim this RAM block for making room on all run-time common S2RAM cpu context. */
&cpuapp_ram0 {
reg = <0x22000000 (DT_SIZE_K(32) - 52)>;
ranges = <0x0 0x22000000 (0x8000 - 0x34)>;
reg = <0x22000000 (DT_SIZE_K(32) - 56)>;
ranges = <0x0 0x22000000 (0x8000 - 0x38)>;
};

/ {
soc {
/* temporary stack for S2RAM resume logic */
pm_s2ram_stack: cpuapp_s2ram_stack@22007fcc {
pm_s2ram_stack: cpuapp_s2ram_stack@22007fc8 {
compatible = "zephyr,memory-region", "mmio-sram";
reg = <0x22007fcc 16>;
reg = <0x22007fc8 16>;
zephyr,memory-region = "pm_s2ram_stack";
};

/* run-time common mcuboot S2RAM support section */
mcuboot_s2ram: cpuapp_s2ram@22007fdc {
mcuboot_s2ram: cpuapp_s2ram@22007fd8 {
compatible = "zephyr,memory-region", "mmio-sram";
reg = <0x22007fdc 4>;
reg = <0x22007fd8 8>;
zephyr,memory-region = "mcuboot_s2ram_context";
};

Expand Down
1 change: 1 addition & 0 deletions soc/nordic/nrf54h/pm_s2ram.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

struct mcuboot_resume_s {
uint32_t magic; /* magic value to identify valid structure */
uint32_t slot_info;
};

/**
Expand Down