Skip to content

Commit c847afe

Browse files
[nrf noup] Adapt Matter SDK to te WiFi FW patch on external flash
This commit sets the default kconfigs if the WiFi FW patch on external flash is enabled.
1 parent c36fcaf commit c847afe

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

config/nrfconnect/chip-module/Kconfig.defaults

+9
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,18 @@ config CHIP_SPI_NOR
205205
config BOOT_IMAGE_ACCESS_HOOKS
206206
default y if SOC_SERIES_NRF53X
207207

208+
choice NRF_WIFI_PATCHES_EXT_FLASH_SUPPORT
209+
default NRF_WIFI_PATCHES_EXT_FLASH_STORE if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
210+
211+
endchoice
212+
208213
config UPDATEABLE_IMAGE_NUMBER
214+
default 3 if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
209215
default 2 if SOC_SERIES_NRF53X
210216

217+
config DFU_MULTI_IMAGE_MAX_IMAGE_COUNT
218+
default 3 if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
219+
211220
# ==============================================================================
212221
# OpenThread configuration
213222
# ==============================================================================

config/nrfconnect/chip-module/Kconfig.features

+13
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,9 @@ config MCUMGR_GRP_ZBASIC
207207
config MCUMGR_GRP_ZBASIC_STORAGE_ERASE
208208
default y
209209

210+
config NRF_WIFI_FW_PATCH_DFU
211+
default y if NRF_WIFI_PATCHES_EXT_FLASH_STORE
212+
210213
endif # SOC_SERIES_NRF53X
211214

212215
endif # CHIP_DFU_OVER_BT_SMP
@@ -290,4 +293,14 @@ config CHIP_LAST_FABRIC_REMOVED_ACTION_DELAY
290293
an action chosen by the CHIP_LAST_FABRIC_REMOVED_ACTION option. This schedule will allow for
291294
avoiding race conditions before the device removes non-volatile data.
292295

296+
config CHIP_WIFI_PATCHES_EXT_FLASH_STORE
297+
bool "Store nRF700x FW patches in external memory"
298+
depends on SHIELD_NRF7002EK
299+
depends on SOC_SERIES_NRF53X
300+
depends on !BOARD_NRF7002DK_NRF5340_CPUAPP
301+
imply NRF_WIFI_FW_PATCH_DFU
302+
help
303+
Helper for enabling the 3rd partition in mcuboot image when WiFi firmware patch
304+
is stored in the external memory
305+
293306
endif # CHIP

config/nrfconnect/chip-module/Kconfig.mcuboot.defaults

+12
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616

1717
# The purpose of this file is to define new default values of settings used when building mcuboot child image for Matter samples.
1818

19+
config CHIP_WIFI_PATCHES_EXT_FLASH_STORE
20+
bool "Store nRF700x FW patches in external memory"
21+
depends on SOC_SERIES_NRF53X
22+
depends on !BOARD_NRF7002DK_NRF5340_CPUAPP
23+
help
24+
Helper for enabling the 3rd partition in mcuboot image when WiFi firmware patch
25+
is stored in the external memory
26+
1927
config MAIN_STACK_SIZE
2028
default 10240
2129

@@ -122,8 +130,12 @@ config PCD_APP
122130
default y
123131

124132
config UPDATEABLE_IMAGE_NUMBER
133+
default 3 if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
125134
default 2
126135

136+
config MCUBOOT_VERIFY_IMG_ADDRESS
137+
default n if CHIP_WIFI_PATCHES_EXT_FLASH_STORE
138+
127139
# Multi-image updates do not support image swapping yet.
128140
choice BOOT_IMAGE_UPGRADE_MODE
129141
default BOOT_UPGRADE_ONLY

0 commit comments

Comments
 (0)