Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NCSDK-30809: Add flash ipuc driver #19915

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,12 @@
- "include/fw_info.*"
- "include/mgmt/*"
- "include/dfu/**/*"
- "include/drivers/flash/flash_ipuc.h"
- "include/net/**/*"
- "lib/lte_link_control/**/*"
- "modules/mcuboot/**/*"
- "modules/trusted-firmware-m/*"
- "drivers/flash/flash_ipuc/*"
- "samples/cellular/*fota/**/*"
- "samples/cellular/fmfu_smp_svr/**/*"
- "samples/cellular/http_update/**/*"
Expand All @@ -148,6 +150,7 @@
- "subsys/pcd/*"
- "subsys/net/lib/*fota*/**/*"
- "subsys/net/lib/downloader/**/*"
- "tests/drivers/flash/flash_ipuc/**/*"
- "tests/subsys/bootloader/**/*"
- "tests/subsys/dfu/**/*"

Expand Down
3 changes: 3 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@
/drivers/bluetooth/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-dragoon
/drivers/entropy/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-aegir
/drivers/flash/ @nrfconnect/ncs-co-drivers
/drivers/flash/flash_ipuc/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-charon
/drivers/gpio/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-ll-ursus
/drivers/hw_cc3xx/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-aegir
/drivers/mpsl/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-dragoon
Expand Down Expand Up @@ -329,6 +330,7 @@
/include/dfu/suit_dfu_fetch_source.h @nrfconnect/ncs-charon
/include/dfu/suit_dfu.h @nrfconnect/ncs-charon
/include/drivers/flash/ @nrfconnect/ncs-co-drivers
/include/drivers/flash/flash_ipuc.h @nrfconnect/ncs-co-drivers @nrfconnect/ncs-charon
/include/drivers/gpio/ @nrfconnect/ncs-co-drivers @nrfconnect/ncs-ll-ursus
/include/drivers/bme68x_iaq.h @nrfconnect/ncs-co-drivers @nrfconnect/ncs-cia
/include/drivers/mspi/nrfe_mspi.h @nrfconnect/ncs-co-drivers @nrfconnect/ncs-ll-ursus
Expand Down Expand Up @@ -802,6 +804,7 @@
/tests/crypto/ @stephen-nordic @magnev
/tests/drivers/audio/pdm_loopback/ @nrfconnect/ncs-low-level-test
/tests/drivers/gpio/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
/tests/drivers/flash/flash_ipuc/ @nrfconnect/ncs-charon
/tests/drivers/flash/flash_rpc/ @nrfconnect/ncs-pluto
/tests/drivers/flash_patch/ @nrfconnect/ncs-pluto
/tests/drivers/fprotect/ @nrfconnect/ncs-pluto
Expand Down
1 change: 1 addition & 0 deletions drivers/flash/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
#

add_subdirectory_ifdef(CONFIG_FLASH_RPC flash_rpc)
add_subdirectory_ifdef(CONFIG_FLASH_IPUC flash_ipuc)
19 changes: 19 additions & 0 deletions drivers/flash/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

config FLASH_IPUC
bool "Flash over SUIT IPUC [EXPERIMENTAL]"
depends on SUIT
depends on SUIT_UTILS
depends on SUIT_IPUC
select EXPERIMENTAL

if FLASH_IPUC

config FLASH_IPUC_COUNT
int "Number of available flash IPUC drivers"
default 1

module = FLASH_IPUC
module-str = Flash over SUIT IPUC
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"

endif # FLASH_IPUC

config FLASH_RPC
bool "Flash over RPC [EXPERIMENTAL]"
select NRF_RPC
Expand Down
10 changes: 10 additions & 0 deletions drivers/flash/flash_ipuc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# Copyright (c) 2025 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

zephyr_library()
zephyr_library_sources(flash_ipuc.c)
zephyr_library_link_libraries(suit_utils)
zephyr_library_link_libraries(suit_ipuc)
Loading