Skip to content

Commit e5afc47

Browse files
committed
suit: Verify usage of SUIT IPUCs in SUTFU
Verify that it is possible to push IPUC_based updates using SUITFU SMP protocol extensions. Ref: NCSDK-NONE Signed-off-by: Tomasz Chyrowicz <tomasz.chyrowicz@nordicsemi.no>
1 parent e5750d7 commit e5afc47

File tree

2 files changed

+66
-18
lines changed

2 files changed

+66
-18
lines changed

subsys/mgmt/suitfu/src/suitfu_mgmt_img.c

+35-13
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
#ifdef CONFIG_SUIT_CACHE_RW
2626
#include <suit_dfu_cache_rw.h>
2727
#endif
28+
#ifdef CONFIG_FLASH_IPUC
29+
#include <drivers/flash/flash_ipuc.h>
30+
#endif /* CONFIG_FLASH_IPUC */
2831

2932
#include <zephyr/logging/log.h>
3033
LOG_MODULE_DECLARE(suitfu_mgmt, CONFIG_MGMT_SUITFU_LOG_LEVEL);
@@ -87,27 +90,43 @@ static int suitfu_mgmt_img_upload(struct smp_streamer *ctx)
8790
return MGMT_ERR_EINVAL;
8891
}
8992

93+
device_info.fdev = NULL;
9094
if (req.image == 0) {
9195
suit_plat_err_t err = suit_dfu_partition_device_info_get(&device_info);
9296

9397
if (err != SUIT_PLAT_SUCCESS) {
9498
LOG_ERR("DFU Partition not found");
9599
return MGMT_ERR_ENOENT;
96100
}
97-
98101
} else {
102+
#ifdef CONFIG_FLASH_IPUC
103+
device_info.partition_offset = 0;
104+
device_info.erase_block_size = 1;
105+
device_info.write_block_size = 1;
106+
device_info.fdev = flash_image_ipuc_create(
107+
req.image, NULL, NULL, (uintptr_t *)&device_info.mapped_address,
108+
&device_info.partition_size);
109+
if (device_info.fdev != NULL) {
110+
LOG_INF("Found IPUC for image %d (0x%lx, 0x%x)", req.image,
111+
(uintptr_t)device_info.mapped_address,
112+
device_info.partition_size);
113+
}
114+
#endif /* CONFIG_FLASH_IPUC */
99115
#ifdef CONFIG_SUIT_CACHE_RW
100-
uint32_t cache_pool_id = req.image - 1;
101-
suit_plat_err_t err =
102-
suit_dfu_cache_rw_device_info_get(cache_pool_id, &device_info);
103-
104-
if (err != SUIT_PLAT_SUCCESS) {
105-
LOG_ERR("Cache pool %d not found", cache_pool_id);
116+
if (device_info.fdev == NULL) {
117+
uint32_t cache_pool_id = req.image - 1;
118+
suit_plat_err_t err = suit_dfu_cache_rw_device_info_get(
119+
cache_pool_id, &device_info);
120+
121+
if (err != SUIT_PLAT_SUCCESS) {
122+
LOG_ERR("Cache pool %d not found", cache_pool_id);
123+
return MGMT_ERR_ENOENT;
124+
}
125+
}
126+
#endif /* CONFIG_SUIT_CACHE_RW */
127+
if (device_info.fdev == NULL) {
106128
return MGMT_ERR_ENOENT;
107129
}
108-
#else
109-
return MGMT_ERR_ENOENT;
110-
#endif
111130
}
112131

113132
if (req.size > device_info.partition_size) {
@@ -165,9 +184,12 @@ static int suitfu_mgmt_img_upload(struct smp_streamer *ctx)
165184
LOG_INF("Candidate envelope stored");
166185
rc = suitfu_mgmt_candidate_envelope_stored();
167186
} else {
168-
uint32_t cache_pool_id = image_id - 1;
169-
170-
LOG_INF("Cache pool %d updated with RAW image", cache_pool_id);
187+
uint32_t cache_pool_id = req.image - 1;
188+
#ifdef CONFIG_FLASH_IPUC
189+
flash_image_ipuc_release(image_id);
190+
#endif /* CONFIG_FLASH_IPUC */
191+
LOG_INF("Cache pool %d or image %d updated with RAW image",
192+
cache_pool_id, req.image);
171193
}
172194

173195
image_size = 0;

subsys/mgmt/suitfu/src/suitfu_mgmt_suit_cache_raw_upload.c

+31-5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
#include <zephyr/mgmt/mcumgr/mgmt/handlers.h>
2222
#include "suitfu_mgmt_priv.h"
2323
#include <suit_dfu_cache_rw.h>
24+
#ifdef CONFIG_FLASH_IPUC
25+
#include <drivers/flash/flash_ipuc.h>
26+
#endif /* CONFIG_FLASH_IPUC */
2427

2528
#include <zephyr/logging/log.h>
2629
LOG_MODULE_DECLARE(suitfu_mgmt, CONFIG_MGMT_SUITFU_LOG_LEVEL);
@@ -74,10 +77,30 @@ int suitfu_mgmt_suit_cache_raw_upload(struct smp_streamer *ctx)
7477
return MGMT_ERR_EINVAL;
7578
}
7679

77-
suit_plat_err_t err =
78-
suit_dfu_cache_rw_device_info_get(req.target_id, &device_info);
79-
if (err != SUIT_PLAT_SUCCESS) {
80-
LOG_ERR("Cache pool %d not found", req.target_id);
80+
#ifdef CONFIG_FLASH_IPUC
81+
device_info.partition_offset = 0;
82+
device_info.erase_block_size = 1;
83+
device_info.write_block_size = 1;
84+
device_info.fdev = flash_image_ipuc_create(req.target_id, NULL, NULL,
85+
(uintptr_t *)&device_info.mapped_address,
86+
&device_info.partition_size);
87+
if (device_info.fdev != NULL) {
88+
LOG_INF("Found IPUC for image %d (0x%lx, 0x%x)", req.target_id,
89+
(uintptr_t)device_info.mapped_address, device_info.partition_size);
90+
}
91+
#endif /* CONFIG_FLASH_IPUC */
92+
#ifdef CONFIG_SUIT_CACHE_RW
93+
if (device_info.fdev == NULL) {
94+
suit_plat_err_t err =
95+
suit_dfu_cache_rw_device_info_get(req.target_id, &device_info);
96+
97+
if (err != SUIT_PLAT_SUCCESS) {
98+
LOG_ERR("Cache pool %d not found", req.target_id);
99+
return MGMT_ERR_ENOENT;
100+
}
101+
}
102+
#endif /* CONFIG_SUIT_CACHE_RW */
103+
if (device_info.fdev == NULL) {
81104
return MGMT_ERR_ENOENT;
82105
}
83106

@@ -131,7 +154,10 @@ int suitfu_mgmt_suit_cache_raw_upload(struct smp_streamer *ctx)
131154
req.off += req.img_data.len;
132155
offset_in_image += req.img_data.len;
133156
if (last) {
134-
LOG_INF("Cache pool %d updated with RAW image", target_id);
157+
#ifdef CONFIG_FLASH_IPUC
158+
flash_image_ipuc_release(target_id);
159+
#endif /* CONFIG_FLASH_IPUC */
160+
LOG_INF("Cache pool or image %d updated with RAW image", target_id);
135161
image_size = 0;
136162
}
137163
}

0 commit comments

Comments
 (0)