File tree Expand file tree Collapse file tree 5 files changed +26
-1
lines changed Expand file tree Collapse file tree 5 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -27,3 +27,10 @@ config FLASH_LOAD_OFFSET
2727 default 0x2c000 if !USE_DT_CODE_PARTITION
2828
2929endif # BOARD_NRF54H20DK_NRF54H20_CPUAPP_IRON
30+
31+ if BOARD_NRF54H20DK_NRF54H20_CPURAD_IRON
32+
33+ config ROM_START_OFFSET
34+ default 0x800 if BOOTLOADER_MCUBOOT
35+
36+ endif # BOARD_NRF54H20DK_NRF54H20_CPURAD_IRON
Original file line number Diff line number Diff line change @@ -35,3 +35,11 @@ slot0_partition: &cpuapp_slot0_partition {
3535slot1_partition: &cpuapp_slot1_partition {
3636 label = "image-1";
3737};
38+
39+ slot2_partition: &cpurad_slot0_partition {
40+ label = "image-2";
41+ };
42+
43+ slot3_partition: &cpurad_slot1_partition {
44+ label = "image-3";
45+ };
Original file line number Diff line number Diff line change 1919 mbox-names = "tx", "rx";
2020 status = "okay";
2121};
22+
23+ slot0_partition: &cpurad_slot0_partition {
24+ label = "image-0";
25+ };
26+
27+ slot1_partition: &cpurad_slot1_partition {
28+ label = "image-1";
29+ };
Original file line number Diff line number Diff line change @@ -227,6 +227,7 @@ config MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP
227227
228228config MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP_WITH_REVERT
229229 bool "MCUboot has been configured for DirectXIP with revert"
230+ select MCUBOOT_BOOTUTIL_LIB
230231 select MCUBOOT_BOOTUTIL_LIB_FOR_DIRECT_XIP
231232 select MCUBOOT_BOOTLOADER_MODE_HAS_NO_DOWNGRADE
232233 select MCUBOOT_BOOTLOADER_NO_DOWNGRADE
Original file line number Diff line number Diff line change @@ -173,7 +173,8 @@ void soc_late_init_hook(void)
173173
174174 void * radiocore_address =
175175 (void * )(DT_REG_ADDR (DT_GPARENT (DT_NODELABEL_CPURAD_SLOT0_PARTITION )) +
176- DT_REG_ADDR (DT_NODELABEL_CPURAD_SLOT0_PARTITION ));
176+ DT_REG_ADDR (DT_NODELABEL_CPURAD_SLOT0_PARTITION ) +
177+ CONFIG_ROM_START_OFFSET );
177178
178179 /* Don't wait as this is not yet supported. */
179180 bool cpu_wait = false;
You can’t perform that action at this time.
0 commit comments