Skip to content

Commit a7415b9

Browse files
committedJul 2, 2024
[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 022f2c9 commit a7415b9

File tree

2 files changed

+49
-14
lines changed

2 files changed

+49
-14
lines changed
 

‎config/nrfconnect/chip-module/Kconfig

+47-6
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,57 @@ 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
62+
63+
config CHIP_BOOTLOADER_SUIT
64+
bool "SUIT for Matter purposes"
65+
imply SUIT
66+
imply SSF_SUIT_SERVICE_ENABLED
67+
68+
config CHIP_BOOTLOADER_MCUBOOT
69+
bool "MCUBOOT for Matter Bootloader purpose"
6370
imply BOOTLOADER_MCUBOOT
64-
imply IMG_MANAGER
71+
72+
config CHIP_BOOTLOADER_NONE
73+
bool "No bootloader selected for Matter purposes"
74+
75+
endchoice
76+
77+
config CHIP_DFU_LIBRARY_MCUMGR
78+
bool "Use mcumgr library for Matter DFU purposes"
79+
# MCUBOOT
80+
select MCUMGR_GRP_IMG if CHIP_BOOTLOADER_MCUBOOT
81+
select IMG_MANAGER if CHIP_BOOTLOADER_MCUBOOT
82+
select MCUMGR_GRP_OS if CHIP_BOOTLOADER_MCUBOOT
83+
# SUIT
84+
select MGMT_SUITFU if CHIP_BOOTLOADER_SUIT
85+
select MGMT_SUITFU_GRP_SUIT if CHIP_BOOTLOADER_SUIT
86+
select MCUMGR_SMP_LEGACY_RC_BEHAVIOUR if CHIP_BOOTLOADER_SUIT
87+
# COMMON
6588
imply STREAM_FLASH
6689
imply STREAM_FLASH_ERASE
6790

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

‎config/nrfconnect/chip-module/Kconfig.features

+2-8
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

0 commit comments

Comments
 (0)