35
35
36
36
#include < dfu/dfu_target.h>
37
37
38
- #ifdef CONFIG_SUIT
38
+ #ifdef CONFIG_DFU_TARGET_SUIT
39
39
#include < dfu/dfu_target_suit.h>
40
40
#else
41
- #include < dfu/dfu_multi_image.h>
42
41
#include < dfu/dfu_target_mcuboot.h>
43
42
#include < zephyr/dfu/mcuboot.h>
44
43
#endif
44
+ #include < dfu/dfu_multi_image.h>
45
45
46
46
#include < zephyr/logging/log.h>
47
47
#include < zephyr/pm/device.h>
@@ -96,21 +96,32 @@ CHIP_ERROR OTAImageProcessorImpl::PrepareDownloadImpl()
96
96
{
97
97
mHeaderParser .Init ();
98
98
mParams = {};
99
- #ifndef CONFIG_SUIT
99
+ #ifdef CONFIG_DFU_TARGET_SUIT
100
+ ReturnErrorOnFailure (System::MapErrorZephyr (dfu_target_suit_set_buf (mBuffer , sizeof (mBuffer ))));
101
+ #else
100
102
ReturnErrorOnFailure (System::MapErrorZephyr (dfu_target_mcuboot_set_buf (mBuffer , sizeof (mBuffer ))));
103
+ #endif // CONFIG_DFU_TARGET_SUIT
101
104
ReturnErrorOnFailure (System::MapErrorZephyr (dfu_multi_image_init (mBuffer , sizeof (mBuffer ))));
102
105
103
106
for (int image_id = 0 ; image_id < CONFIG_UPDATEABLE_IMAGE_NUMBER; ++image_id)
104
107
{
105
108
dfu_image_writer writer;
109
+
110
+ #ifdef CONFIG_DFU_TARGET_SUIT
111
+ // The first image is the SUIT manifest and must be placed in id=0, while all other images must be placed in id + 1,
112
+ // because id=1 is dedicated for internal DFU purposes when the SUIT manifest contains the firmware.
113
+ // In our case, we use cache processing, so we need to put firmware images starting from id=2.
114
+ writer.image_id = image_id == 0 ? image_id : image_id + 1 ;
115
+ writer.open = [](int id, size_t size) { return dfu_target_init (DFU_TARGET_IMAGE_TYPE_SUIT, id, size, nullptr ); };
116
+ #else
106
117
writer.image_id = image_id;
107
118
writer.open = [](int id, size_t size) { return dfu_target_init (DFU_TARGET_IMAGE_TYPE_MCUBOOT, id, size, nullptr ); };
108
- writer.write = [](const uint8_t * chunk, size_t chunk_size) { return dfu_target_write (chunk, chunk_size); };
109
- writer.close = [](bool success) { return success ? dfu_target_done (success) : dfu_target_reset (); };
119
+ #endif
120
+ writer.write = [](const uint8_t * chunk, size_t chunk_size) { return dfu_target_write (chunk, chunk_size); };
121
+ writer.close = [](bool success) { return success ? dfu_target_done (success) : dfu_target_reset (); };
110
122
111
123
ReturnErrorOnFailure (System::MapErrorZephyr (dfu_multi_image_register_writer (&writer)));
112
124
};
113
- #endif
114
125
115
126
#ifdef CONFIG_CHIP_CERTIFICATION_DECLARATION_STORAGE
116
127
dfu_image_writer cdWriter;
@@ -137,24 +148,14 @@ CHIP_ERROR OTAImageProcessorImpl::Finalize()
137
148
PostOTAStateChangeEvent (DeviceLayer::kOtaDownloadComplete );
138
149
DFUSync::GetInstance ().Free (mDfuSyncMutexId );
139
150
140
- #ifdef CONFIG_SUIT
141
- mDfuTargetSuitInitialized = false ;
142
- return System::MapErrorZephyr (dfu_target_done (true ));
143
- #else
144
151
return System::MapErrorZephyr (dfu_multi_image_done (true ));
145
- #endif
146
152
}
147
153
148
154
CHIP_ERROR OTAImageProcessorImpl::Abort ()
149
155
{
150
156
CHIP_ERROR error;
151
157
152
- #ifdef CONFIG_SUIT
153
- error = System::MapErrorZephyr (dfu_target_reset ());
154
- mDfuTargetSuitInitialized = false ;
155
- #else
156
158
error = System::MapErrorZephyr (dfu_multi_image_done (false ));
157
- #endif
158
159
159
160
DFUSync::GetInstance ().Free (mDfuSyncMutexId );
160
161
TriggerFlashAction (ExternalFlashManager::Action::SLEEP);
@@ -167,10 +168,6 @@ CHIP_ERROR OTAImageProcessorImpl::Apply()
167
168
{
168
169
PostOTAStateChangeEvent (DeviceLayer::kOtaApplyInProgress );
169
170
170
- #ifdef CONFIG_SUIT
171
- mDfuTargetSuitInitialized = false ;
172
- #endif
173
-
174
171
// Schedule update of all images
175
172
int err = dfu_target_schedule_update (-1 );
176
173
@@ -184,7 +181,11 @@ CHIP_ERROR OTAImageProcessorImpl::Apply()
184
181
[](System::Layer *, void * /* context */ ) {
185
182
PlatformMgr ().HandleServerShuttingDown ();
186
183
k_msleep (CHIP_DEVICE_CONFIG_SERVER_SHUTDOWN_ACTIONS_SLEEP_MS);
184
+ #ifdef CONFIG_DFU_TARGET_SUIT
185
+ dfu_target_suit_reboot ();
186
+ #else
187
187
Reboot (SoftwareRebootReason::kSoftwareUpdate );
188
+ #endif
188
189
},
189
190
nullptr /* context */ );
190
191
}
@@ -204,16 +205,6 @@ CHIP_ERROR OTAImageProcessorImpl::ProcessBlock(ByteSpan & aBlock)
204
205
205
206
CHIP_ERROR error = ProcessHeader (aBlock);
206
207
207
- #ifdef CONFIG_SUIT
208
- if (!mDfuTargetSuitInitialized && error == CHIP_NO_ERROR)
209
- {
210
- ReturnErrorOnFailure (System::MapErrorZephyr (dfu_target_suit_set_buf (mBuffer , sizeof (mBuffer ))));
211
- ReturnErrorOnFailure (System::MapErrorZephyr (
212
- dfu_target_init (DFU_TARGET_IMAGE_TYPE_SUIT, 0 , static_cast <size_t >(mParams .totalFileBytes ), nullptr )));
213
- mDfuTargetSuitInitialized = true ;
214
- }
215
- #endif
216
-
217
208
if (error == CHIP_NO_ERROR)
218
209
{
219
210
// DFU target library buffers data internally, so do not clone the block data.
@@ -223,12 +214,8 @@ CHIP_ERROR OTAImageProcessorImpl::ProcessBlock(ByteSpan & aBlock)
223
214
}
224
215
else
225
216
{
226
- #ifdef CONFIG_SUIT
227
- int err = dfu_target_write (aBlock.data (), aBlock.size ());
228
- #else
229
217
int err = dfu_multi_image_write (static_cast <size_t >(mParams .downloadedBytes ), aBlock.data (), aBlock.size ());
230
218
mParams .downloadedBytes += aBlock.size ();
231
- #endif
232
219
error = System::MapErrorZephyr (err);
233
220
}
234
221
}
0 commit comments