33
33
34
34
#include " DFUSync.h"
35
35
36
- #include < dfu/dfu_multi_image.h>
37
36
#include < dfu/dfu_target.h>
37
+
38
+ #ifdef CONFIG_SUIT
39
+ #include < dfu/dfu_target_suit.h>
40
+ #else
41
+ #include < dfu/dfu_multi_image.h>
38
42
#include < dfu/dfu_target_mcuboot.h>
39
43
#include < zephyr/dfu/mcuboot.h>
44
+ #endif
45
+
40
46
#include < zephyr/logging/log.h>
41
47
#include < zephyr/pm/device.h>
42
48
@@ -90,6 +96,7 @@ CHIP_ERROR OTAImageProcessorImpl::PrepareDownloadImpl()
90
96
{
91
97
mHeaderParser .Init ();
92
98
mParams = {};
99
+ #ifndef CONFIG_SUIT
93
100
ReturnErrorOnFailure (System::MapErrorZephyr (dfu_target_mcuboot_set_buf (mBuffer , sizeof (mBuffer ))));
94
101
ReturnErrorOnFailure (System::MapErrorZephyr (dfu_multi_image_init (mBuffer , sizeof (mBuffer ))));
95
102
@@ -103,6 +110,7 @@ CHIP_ERROR OTAImageProcessorImpl::PrepareDownloadImpl()
103
110
104
111
ReturnErrorOnFailure (System::MapErrorZephyr (dfu_multi_image_register_writer (&writer)));
105
112
};
113
+ #endif
106
114
107
115
#ifdef CONFIG_CHIP_CERTIFICATION_DECLARATION_STORAGE
108
116
dfu_image_writer cdWriter;
@@ -128,12 +136,25 @@ CHIP_ERROR OTAImageProcessorImpl::Finalize()
128
136
{
129
137
PostOTAStateChangeEvent (DeviceLayer::kOtaDownloadComplete );
130
138
DFUSync::GetInstance ().Free (mDfuSyncMutexId );
139
+
140
+ #ifdef CONFIG_SUIT
141
+ mDfuTargetSuitInitialized = false ;
142
+ return System::MapErrorZephyr (dfu_target_done (true ));
143
+ #else
131
144
return System::MapErrorZephyr (dfu_multi_image_done (true ));
145
+ #endif
132
146
}
133
147
134
148
CHIP_ERROR OTAImageProcessorImpl::Abort ()
135
149
{
136
- CHIP_ERROR error = System::MapErrorZephyr (dfu_multi_image_done (false ));
150
+ CHIP_ERROR error;
151
+
152
+ #ifdef CONFIG_SUIT
153
+ error = System::MapErrorZephyr (dfu_target_reset ());
154
+ mDfuTargetSuitInitialized = false ;
155
+ #else
156
+ error = System::MapErrorZephyr (dfu_multi_image_done (false ));
157
+ #endif
137
158
138
159
DFUSync::GetInstance ().Free (mDfuSyncMutexId );
139
160
TriggerFlashAction (ExternalFlashManager::Action::SLEEP);
@@ -145,6 +166,11 @@ CHIP_ERROR OTAImageProcessorImpl::Abort()
145
166
CHIP_ERROR OTAImageProcessorImpl::Apply ()
146
167
{
147
168
PostOTAStateChangeEvent (DeviceLayer::kOtaApplyInProgress );
169
+
170
+ #ifdef CONFIG_SUIT
171
+ mDfuTargetSuitInitialized = false ;
172
+ #endif
173
+
148
174
// Schedule update of all images
149
175
int err = dfu_target_schedule_update (-1 );
150
176
@@ -178,6 +204,16 @@ CHIP_ERROR OTAImageProcessorImpl::ProcessBlock(ByteSpan & aBlock)
178
204
179
205
CHIP_ERROR error = ProcessHeader (aBlock);
180
206
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
+
181
217
if (error == CHIP_NO_ERROR)
182
218
{
183
219
// DFU target library buffers data internally, so do not clone the block data.
@@ -187,9 +223,13 @@ CHIP_ERROR OTAImageProcessorImpl::ProcessBlock(ByteSpan & aBlock)
187
223
}
188
224
else
189
225
{
190
- error = System::MapErrorZephyr (
191
- dfu_multi_image_write (static_cast <size_t >(mParams .downloadedBytes ), aBlock.data (), aBlock.size ()));
226
+ #ifdef CONFIG_SUIT
227
+ int err = dfu_target_write (aBlock.data (), aBlock.size ());
228
+ #else
229
+ int err = dfu_multi_image_write (static_cast <size_t >(mParams .downloadedBytes ), aBlock.data (), aBlock.size ());
192
230
mParams .downloadedBytes += aBlock.size ();
231
+ #endif
232
+ error = System::MapErrorZephyr (err);
193
233
}
194
234
}
195
235
0 commit comments