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

SUIT: add "enter recovery button" handling #18738

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
5 changes: 5 additions & 0 deletions samples/suit/recovery/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,13 @@ CONFIG_BT_DEVICE_NAME="SUIT Recovery"
########

# Disable unneeded drivers, peripherals and features to optimize for size

CONFIG_SIZE_OPTIMIZATIONS=y

# Enable LTO
CONFIG_LTO=y
CONFIG_ISR_TABLES_LOCAL_DECLARATION=y

CONFIG_I2C=n
CONFIG_WATCHDOG=n
CONFIG_SPI=n
Expand Down
5 changes: 5 additions & 0 deletions samples/suit/recovery/sysbuild/hci_ipc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ CONFIG_PRINTK=n

CONFIG_SIZE_OPTIMIZATIONS=y

# Enable LTO
CONFIG_LTO=y
CONFIG_ISR_TABLES_LOCAL_DECLARATION=y


CONFIG_BT_CTLR_CRYPTO=n
CONFIG_ENTROPY_GENERATOR=y

Expand Down
6 changes: 6 additions & 0 deletions samples/suit/smp_transfer/sysbuild/recovery.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@
*/

#include "../boards/nrf54h20dk_nrf54h20_cpuapp_common.dtsi"

/ {
chosen {
recovery-button = &button0;
};
};
1 change: 1 addition & 0 deletions subsys/suit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ add_subdirectory_ifdef(CONFIG_SUIT_DFU orchestrator_app)
add_subdirectory_ifdef(CONFIG_SUIT_ENVELOPE_INFO envelope_info)
add_subdirectory_ifdef(CONFIG_SUIT_EXECUTION_MODE execution_mode)
add_subdirectory_ifdef(CONFIG_SUIT_VALIDATOR validator)
add_subdirectory_ifdef(CONFIG_SUIT_RECOVERY_BUTTON recovery_button)
2 changes: 2 additions & 0 deletions subsys/suit/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,12 @@ rsource "envelope_info/Kconfig"
rsource "execution_mode/Kconfig"
rsource "memory_layout/Kconfig"
rsource "validator/Kconfig"
rsource "recovery_button/Kconfig"

# Configure SUIT_LOG_LEVEL
module = SUIT
module-str = Software Updates for Internet of Things
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"


endif # SUIT
11 changes: 11 additions & 0 deletions subsys/suit/recovery_button/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

zephyr_library()
zephyr_library_sources(src/suit_recovery_button.c)

zephyr_library_link_libraries(suit_platform_err)
zephyr_library_link_libraries(suit_utils)
16 changes: 16 additions & 0 deletions subsys/suit/recovery_button/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

menuconfig SUIT_RECOVERY_BUTTON
bool "Enable SUIT enter recovery button checking on startup"
depends on $(dt_chosen_enabled,recovery-button)
help
This will make the firmware check if the recovery button specified in the
device tree is pressed on startup. If it is, the firmware will enter
the "foreground update mode", in which the same SUIT manifests are booted
as in case of the recovery mode.

select SSF_SUIT_SERVICE_ENABLED
65 changes: 65 additions & 0 deletions subsys/suit/recovery_button/src/suit_recovery_button.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

#include <zephyr/kernel.h>
#include <zephyr/drivers/gpio.h>
#include <nrfx_gpiote.h>
#include <sdfw/sdfw_services/suit_service.h>

#define RECOVERY_BUTTON_NODE DT_CHOSEN(recovery_button)
#define RECOVERY_BUTTON_PIN DT_GPIO_PIN(RECOVERY_BUTTON_NODE, gpios)
#define RECOVERY_BUTTON_PORT_NUM DT_PROP(DT_GPIO_CTLR(RECOVERY_BUTTON_NODE, gpios), port)
#define RECOVERY_BUTTON_FLAGS DT_GPIO_FLAGS(RECOVERY_BUTTON_NODE, gpios)

#define RECOVERY_BUTTON_ABS_PIN NRF_GPIO_PIN_MAP(RECOVERY_BUTTON_PORT_NUM, RECOVERY_BUTTON_PIN)
#define RECOVERY_BUTTON_PULL (RECOVERY_BUTTON_FLAGS & GPIO_PULL_UP ? NRF_GPIO_PIN_PULLUP : \
RECOVERY_BUTTON_FLAGS & GPIO_PULL_DOWN ? NRF_GPIO_PIN_PULLDOWN : \
NRF_GPIO_PIN_NOPULL)

#define RECOVERY_BUTTON_PRESSED(pin_value) (RECOVERY_BUTTON_FLAGS & GPIO_ACTIVE_LOW ? (!pin_value) \
: pin_value)

BUILD_ASSERT(DT_NODE_EXISTS(DT_CHOSEN(recovery_button)), "No recovery button chosen in dts");

static int recovery_button_check(void)
{
suit_boot_mode_t mode = SUIT_BOOT_MODE_INVOKE_RECOVERY;
suit_ssf_err_t err = SUIT_PLAT_SUCCESS;

err = suit_boot_mode_read(&mode);

if (err != SUIT_PLAT_SUCCESS) {
suit_invoke_confirm(-EPIPE);
return -EPIPE;
}

/** Using the recovery button makes sense in two cases:
* 1. From a companion application during SUIT manifest processing while the device
* is booting(mode == SUIT_BOOT_MODE_INVOKE).
* 2. From the main application, when the device is already booted
* (mode == SUIT_BOOT_MODE_POST_INVOKE).
*/
if (mode == SUIT_BOOT_MODE_INVOKE
|| mode == SUIT_BOOT_MODE_POST_INVOKE) {
nrf_gpio_pin_dir_t dir = NRF_GPIO_PIN_DIR_INPUT;
nrf_gpio_pin_input_t input = NRF_GPIO_PIN_INPUT_CONNECT;
nrf_gpio_pin_pull_t pull = RECOVERY_BUTTON_PULL;

nrf_gpio_reconfigure(RECOVERY_BUTTON_ABS_PIN, &dir, &input, &pull, NULL, NULL);

uint32_t pin_value = nrf_gpio_pin_read(RECOVERY_BUTTON_ABS_PIN);

if (RECOVERY_BUTTON_PRESSED(pin_value)) {
suit_foreground_dfu_required();
} else {
suit_invoke_confirm(0);
}
}

return 0;
}

SYS_INIT(recovery_button_check, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY);
Loading