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
27
27
default 0x2c000 if !USE_DT_CODE_PARTITION
28
28
29
29
endif # 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 {
35
35
slot1_partition: &cpuapp_slot1_partition {
36
36
label = "image-1";
37
37
};
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 19
19
mbox-names = "tx", "rx";
20
20
status = "okay";
21
21
};
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
227
227
228
228
config MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP_WITH_REVERT
229
229
bool "MCUboot has been configured for DirectXIP with revert"
230
+ select MCUBOOT_BOOTUTIL_LIB
230
231
select MCUBOOT_BOOTUTIL_LIB_FOR_DIRECT_XIP
231
232
select MCUBOOT_BOOTLOADER_MODE_HAS_NO_DOWNGRADE
232
233
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)
173
173
174
174
void * radiocore_address =
175
175
(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 );
177
178
178
179
/* Don't wait as this is not yet supported. */
179
180
bool cpu_wait = false;
You can’t perform that action at this time.
0 commit comments