Skip to content

Commit 085e5a6

Browse files
committed
suit: Add flash_ipuc pseudo-driver tests
Add tests for the pseudo-flash driver that writes data through SUIT IPUC. Ref: NCSDK-30809 Signed-off-by: Tomasz Chyrowicz <tomasz.chyrowicz@nordicsemi.no>
1 parent 6281bd4 commit 085e5a6

File tree

9 files changed

+1153
-0
lines changed

9 files changed

+1153
-0
lines changed

.github/test-spec.yml

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150
- "subsys/pcd/*"
151151
- "subsys/net/lib/*fota*/**/*"
152152
- "subsys/net/lib/downloader/**/*"
153+
- "tests/drivers/flash/flash_ipuc/**/*"
153154
- "tests/subsys/bootloader/**/*"
154155
- "tests/subsys/dfu/**/*"
155156

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -801,6 +801,7 @@
801801
/tests/crypto/ @stephen-nordic @magnev
802802
/tests/drivers/audio/pdm_loopback/ @nrfconnect/ncs-low-level-test
803803
/tests/drivers/gpio/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
804+
/tests/drivers/flash/flash_ipuc/ @nrfconnect/ncs-charon
804805
/tests/drivers/flash/flash_rpc/ @nrfconnect/ncs-pluto
805806
/tests/drivers/flash_patch/ @nrfconnect/ncs-pluto
806807
/tests/drivers/fprotect/ @nrfconnect/ncs-pluto
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
cmake_minimum_required(VERSION 3.20.0)
8+
9+
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
10+
11+
project(flash_ipuc)
12+
13+
target_include_directories(app PRIVATE ${ZEPHYR_NRF_MODULE_DIR}/subsys/suit/ipuc/include)
14+
target_include_directories(app PRIVATE mocks)
15+
16+
zephyr_compile_definitions(CONFIG_FLASH_IPUC_COUNT=2)
17+
zephyr_compile_definitions(CONFIG_FLASH_IPUC_LOG_LEVEL)
18+
zephyr_compile_definitions(CONFIG_FLASH_IPUC_LOG_LEVEL_DBG)
19+
# Pretend to call API as nRF54H20 application FW
20+
zephyr_compile_definitions(CONFIG_SOC_NRF54H20_CPUAPP)
21+
22+
target_sources(app PRIVATE
23+
src/main.c
24+
${ZEPHYR_NRF_MODULE_DIR}/drivers/flash/flash_ipuc/flash_ipuc.c
25+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
CONFIG_FLASH_SIMULATOR=y
8+
CONFIG_FLASH_SIMULATOR_DOUBLE_WRITES=y
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
CONFIG_FLASH_SIMULATOR=y
8+
CONFIG_FLASH_SIMULATOR_DOUBLE_WRITES=y
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
#ifndef MOCK_SUIT_IPUC_H__
8+
#define MOCK_SUIT_IPUC_H__
9+
10+
#include <suit_ipuc.h>
11+
#include <zephyr/fff.h>
12+
13+
DEFINE_FFF_GLOBALS;
14+
15+
FAKE_VALUE_FUNC(int, suit_ipuc_get_count, size_t *);
16+
FAKE_VALUE_FUNC(int, suit_ipuc_get_info, size_t, struct zcbor_string *, suit_manifest_role_t *);
17+
FAKE_VALUE_FUNC(int, suit_ipuc_write_setup, struct zcbor_string *, struct zcbor_string *,
18+
struct zcbor_string *);
19+
FAKE_VALUE_FUNC(int, suit_ipuc_write, struct zcbor_string *, size_t, uintptr_t, size_t, bool);
20+
21+
static inline void mock_suit_ipuc_reset(void)
22+
{
23+
RESET_FAKE(suit_ipuc_get_count);
24+
RESET_FAKE(suit_ipuc_get_info);
25+
RESET_FAKE(suit_ipuc_write_setup);
26+
RESET_FAKE(suit_ipuc_write);
27+
}
28+
29+
#endif /* MOCK_SUIT_IPUC_H__ */
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
CONFIG_ZTEST=y
8+
CONFIG_SUIT=y
9+
CONFIG_SUIT_UTILS=y
10+
CONFIG_SUIT_METADATA=y
11+
12+
CONFIG_ZCBOR=y
13+
CONFIG_ZCBOR_CANONICAL=y
14+
15+
CONFIG_FLASH=y

0 commit comments

Comments
 (0)