File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -987,6 +987,7 @@ config BOOT_WATCHDOG_FEED_NRFX_WDT
987
987
imply NRFX_WDT1
988
988
imply NRFX_WDT30
989
989
imply NRFX_WDT31
990
+ imply NRFX_WDT010
990
991
991
992
config BOOT_IMAGE_ACCESS_HOOKS
992
993
bool "Enable hooks for overriding MCUboot's native routines"
Original file line number Diff line number Diff line change @@ -36,6 +36,12 @@ BOOT_LOG_MODULE_DECLARE(mcuboot);
36
36
#define FLASH_DEVICE_BASE 0
37
37
#define FLASH_DEVICE_NODE DT_CHOSEN(zephyr_flash_controller)
38
38
39
+ #elif (defined(CONFIG_SOC_SERIES_NRF54HX ) && DT_HAS_CHOSEN (zephyr_flash ))
40
+
41
+ #define FLASH_DEVICE_ID SPI_FLASH_0_ID
42
+ #define FLASH_DEVICE_BASE CONFIG_FLASH_BASE_ADDRESS
43
+ #define FLASH_DEVICE_NODE DT_CHOSEN(zephyr_flash)
44
+
39
45
#else
40
46
#error "FLASH_DEVICE_ID could not be determined"
41
47
#endif
Original file line number Diff line number Diff line change 398
398
#elif defined(CONFIG_NRFX_WDT31 )
399
399
#define MCUBOOT_WATCHDOG_FEED () \
400
400
FEED_WDT_INST(31);
401
+ #elif defined(CONFIG_NRFX_WDT010 )
402
+ #define MCUBOOT_WATCHDOG_FEED () \
403
+ FEED_WDT_INST(010);
401
404
#else
402
405
#error "No NRFX WDT instances enabled"
403
406
#endif
Original file line number Diff line number Diff line change 32
32
/*
33
33
* Sanity check the target support.
34
34
*/
35
- #if (!defined(CONFIG_XTENSA ) && !DT_HAS_CHOSEN (zephyr_flash_controller )) || \
35
+ #if (!defined(CONFIG_XTENSA ) && !defined(CONFIG_SOC_SERIES_NRF54HX ) && \
36
+ !DT_HAS_CHOSEN (zephyr_flash_controller )) || \
36
37
(defined(CONFIG_XTENSA ) && !DT_NODE_EXISTS (DT_INST (0 , jedec_spi_nor )) && \
37
38
!defined(CONFIG_SOC_FAMILY_ESPRESSIF_ESP32 )) || \
39
+ (defined(CONFIG_SOC_SERIES_NRF54HX ) && !DT_HAS_CHOSEN (zephyr_flash )) || \
38
40
!defined(FLASH_ALIGN ) || \
39
41
!(FIXED_PARTITION_EXISTS (slot0_partition )) || \
40
42
!(FIXED_PARTITION_EXISTS (slot1_partition ) || CONFIG_SINGLE_APPLICATION_SLOT ) || \
You can’t perform that action at this time.
0 commit comments