Skip to content

Commit fd8e621

Browse files
[nrf noup] Add SUIT to the Matter configuration
Added the new CHIP_SUIT config to enable all required dependencies for SUIT. Added SUIT for CHIP_DFU_OVER_BT_SMP to automatically enable SUIT module and BT SMP for nRF54H20.
1 parent 2b9dc09 commit fd8e621

File tree

2 files changed

+51
-17
lines changed

2 files changed

+51
-17
lines changed

config/nrfconnect/chip-module/Kconfig

+49-6
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,59 @@ config CHIP_NFC_COMMISSIONING
5555
help
5656
Enables sharing the onboarding payload in the NFC tag.
5757

58-
# See config/zephyr/Kconfig for full definition
59-
config CHIP_OTA_REQUESTOR
60-
bool
61-
imply DFU_MULTI_IMAGE
62-
imply DFU_TARGET
58+
choice CHIP_BOOTLOADER
59+
prompt "Bootloader implementation for Matter purposes"
60+
default CHIP_BOOTLOADER_SUIT if SOC_SERIES_NRF54HX
61+
default CHIP_BOOTLOADER_MCUBOOT if !BOARD_NRF21540DK
62+
default CHIP_BOOTLOADER_NONE
63+
64+
config CHIP_BOOTLOADER_SUIT
65+
bool "SUIT for Matter purposes"
66+
imply SUIT
67+
imply SSF_SUIT_SERVICE_ENABLED
68+
69+
config CHIP_BOOTLOADER_MCUBOOT
70+
bool "MCUBOOT for Matter Bootloader purpose"
6371
imply BOOTLOADER_MCUBOOT
64-
imply IMG_MANAGER
72+
select IMG_MANAGER
73+
74+
config CHIP_BOOTLOADER_NONE
75+
bool "No bootloader selected for Matter purposes"
76+
77+
endchoice
78+
79+
config CHIP_DFU_LIBRARY_MCUMGR
80+
bool "Use mcumgr library for Matter DFU purposes"
81+
# MCUBOOT
82+
select MCUMGR_GRP_IMG if CHIP_BOOTLOADER_MCUBOOT
83+
select MCUMGR_GRP_OS if CHIP_BOOTLOADER_MCUBOOT
84+
# SUIT
85+
select MGMT_SUITFU if CHIP_BOOTLOADER_SUIT
86+
select MGMT_SUITFU_GRP_SUIT if CHIP_BOOTLOADER_SUIT
87+
select MCUMGR_SMP_LEGACY_RC_BEHAVIOUR if CHIP_BOOTLOADER_SUIT
88+
# COMMON
89+
select MCUMGR
6590
imply STREAM_FLASH
6691
imply STREAM_FLASH_ERASE
6792

93+
config CHIP_DFU_LIBRARY_DFU_TARGET
94+
bool "Use dfu target library for Matter DFU purposes"
95+
# MCUBOOT
96+
imply DFU_MULTI_IMAGE if CHIP_BOOTLOADER_MCUBOOT
97+
# SUIT
98+
imply DFU_TARGET_SUIT if CHIP_BOOTLOADER_SUIT
99+
# COMMON
100+
imply DFU_TARGET
101+
imply STREAM_FLASH
102+
imply STREAM_FLASH_ERASE
103+
select ZCBOR
104+
select ZCBOR_CANONICAL
105+
106+
# See config/zephyr/Kconfig for full definition
107+
config CHIP_OTA_REQUESTOR
108+
bool
109+
select CHIP_DFU_LIBRARY_DFU_TARGET
110+
68111
config CHIP_OTA_REQUESTOR_BUFFER_SIZE
69112
int "OTA Requestor image buffer size"
70113
default 1024

config/nrfconnect/chip-module/Kconfig.features

+2-11
Original file line numberDiff line numberDiff line change
@@ -146,19 +146,13 @@ config CHIP_NUS_MAX_COMMANDS
146146

147147
endif
148148

149-
150149
config CHIP_DFU_OVER_BT_SMP
151150
bool "Enable DFU over Bluetooth LE SMP feature set"
151+
depends on !CHIP_BOOTLOADER_NONE
152152
imply CHIP_QSPI_NOR if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF52840DK_NRF52840
153153
imply CHIP_SPI_NOR if BOARD_NRF7002DK_NRF5340_CPUAPP || BOARD_NRF7002DK_NRF7001_NRF5340_CPUAPP || BOARD_NRF54L15PDK_NRF54L15_CPUAPP
154-
imply BOOTLOADER_MCUBOOT
155-
select MCUMGR
154+
select CHIP_DFU_LIBRARY_MCUMGR
156155
select MCUMGR_TRANSPORT_BT
157-
select IMG_MANAGER
158-
select STREAM_FLASH
159-
select ZCBOR
160-
select MCUMGR_GRP_IMG
161-
select MCUMGR_GRP_OS
162156
# Enable custom SMP request to erase settings partition.
163157
select MCUMGR_GRP_ZBASIC
164158
select MCUMGR_GRP_ZBASIC_STORAGE_ERASE
@@ -176,15 +170,12 @@ config MCUMGR_TRANSPORT_NETBUF_COUNT
176170
default 6
177171

178172
config MCUMGR_MGMT_NOTIFICATION_HOOKS
179-
bool
180173
default y
181174

182175
config MCUMGR_GRP_IMG_UPLOAD_CHECK_HOOK
183-
bool
184176
default y
185177

186178
config MCUMGR_SMP_COMMAND_STATUS_HOOKS
187-
bool
188179
default y
189180

190181
# Increase BT MTU and RX buffer for big size DFU messages

0 commit comments

Comments
 (0)