-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: benchmarks: multicore: Add PM tests with FLPR core
Add test that confirms Power Management on FLPR core. Signed-off-by: Sebastian Głąb <[email protected]>
- Loading branch information
1 parent
6586628
commit cb16172
Showing
15 changed files
with
432 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
cmake_minimum_required(VERSION 3.20.0) | ||
|
||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) | ||
|
||
if(NOT SYSBUILD) | ||
message(FATAL_ERROR | ||
" This is a multi-image application that should be built using sysbuild.\n" | ||
" Add --sysbuild argument to west build command to prepare all the images.") | ||
endif() | ||
|
||
project(idle_flpr) | ||
|
||
target_sources(app PRIVATE src/main.c) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
config TEST_SLEEP_DURATION_MS | ||
int "Core sleep duration (miliseconds)" | ||
default 1000 | ||
help | ||
Set sleep duration to TEST_SLEEP_DURATION_MS miliseconds. | ||
Based on the value of 'min-residency-us' specified for each power state defined in the DTS, | ||
core enters the lowest possible power state. | ||
|
||
source "Kconfig.zephyr" |
27 changes: 27 additions & 0 deletions
27
tests/benchmarks/multicore/idle_flpr/boards/nrf54h20dk_nrf54h20_cpuapp.overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
|
||
&cpuflpr_vpr { | ||
status = "okay"; | ||
}; | ||
|
||
&uart120 { | ||
status = "reserved"; | ||
interrupt-parent = <&cpuflpr_clic>; | ||
}; | ||
|
||
/ { | ||
aliases { | ||
/delete-property/ led1; | ||
}; | ||
}; | ||
|
||
/delete-node/ &led1; | ||
|
||
&gpiote130 { | ||
status = "okay"; | ||
owned-channels = <0>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CONFIG_BOOT_BANNER=n | ||
CONFIG_NCS_BOOT_BANNER=n | ||
|
||
CONFIG_LOG=y | ||
CONFIG_ASSERT=y | ||
CONFIG_GPIO=y | ||
|
||
CONFIG_NRF_REGTOOL_VERBOSITY=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
CONFIG_PM=y | ||
CONFIG_PM_S2RAM=y | ||
CONFIG_PM_S2RAM_CUSTOM_MARKING=y | ||
CONFIG_POWEROFF=y | ||
|
||
CONFIG_PM_DEVICE=y | ||
CONFIG_PM_DEVICE_RUNTIME=y | ||
|
||
CONFIG_BOOT_BANNER=n | ||
CONFIG_NCS_BOOT_BANNER=n | ||
CONFIG_PRINTK=n | ||
CONFIG_LOG=n | ||
CONFIG_CONSOLE=n | ||
CONFIG_UART_CONSOLE=n | ||
CONFIG_SERIAL=n | ||
|
||
CONFIG_ASSERT=y | ||
CONFIG_GPIO=y |
14 changes: 14 additions & 0 deletions
14
tests/benchmarks/multicore/idle_flpr/remote/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
cmake_minimum_required(VERSION 3.20.0) | ||
|
||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) | ||
project(remote) | ||
|
||
target_sources(app PRIVATE src/main.c) | ||
target_sources(app PRIVATE src/power_off.c) | ||
message(STATUS "Power Mode handler for RISC V is included.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
config TEST_SLEEP_DURATION_MS | ||
int "Core sleep duration (miliseconds)" | ||
default 1000 | ||
help | ||
Set sleep duration to TEST_SLEEP_DURATION_MS miliseconds. | ||
Based on the value of 'min-residency-us' specified for each power state defined in the DTS, | ||
core enters the lowest possible power state. | ||
|
||
config APP_PROVIDE_PM_HOOKS | ||
bool "Application provides PM hooks" | ||
default y | ||
select HAS_PM | ||
select HAS_POWEROFF | ||
|
||
source "Kconfig.zephyr" |
29 changes: 29 additions & 0 deletions
29
tests/benchmarks/multicore/idle_flpr/remote/boards/nrf54h20dk_nrf54h20_cpuflpr.overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
|
||
/ { | ||
cpus { | ||
power-states { | ||
wait: wait { | ||
compatible = "zephyr,power-state"; | ||
power-state-name = "standby"; | ||
substate-id = <0>; | ||
min-residency-us = <20000>; | ||
}; | ||
|
||
hibernate: hibernate { | ||
compatible = "zephyr,power-state"; | ||
power-state-name = "suspend-to-ram"; | ||
substate-id = <0>; | ||
min-residency-us = <400000>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&cpu { | ||
cpu-power-states = <&wait &hibernate>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CONFIG_LOG=y | ||
CONFIG_CONSOLE=n | ||
CONFIG_UART_CONSOLE=n | ||
CONFIG_SERIAL=n | ||
CONFIG_BOOT_BANNER=n | ||
CONFIG_NCS_BOOT_BANNER=n | ||
CONFIG_PRINTK=n | ||
|
||
CONFIG_ASSERT=y | ||
|
||
CONFIG_NRF_REGTOOL_VERBOSITY=1 |
13 changes: 13 additions & 0 deletions
13
tests/benchmarks/multicore/idle_flpr/remote/prj_s2ram.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
CONFIG_PM=y | ||
CONFIG_POWEROFF=y | ||
|
||
CONFIG_PM_DEVICE=y | ||
CONFIG_PM_DEVICE_RUNTIME=y | ||
|
||
CONFIG_CONSOLE=n | ||
CONFIG_UART_CONSOLE=n | ||
CONFIG_SERIAL=n | ||
CONFIG_BOOT_BANNER=n | ||
CONFIG_NCS_BOOT_BANNER=n | ||
|
||
CONFIG_ASSERT=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
#include <zephyr/kernel.h> | ||
|
||
#include <zephyr/logging/log.h> | ||
LOG_MODULE_REGISTER(idle_flpr, LOG_LEVEL_INF); | ||
|
||
int main(void) | ||
{ | ||
LOG_INF("Multicore idle_flpr test on %s", CONFIG_BOARD_TARGET); | ||
LOG_INF("Main sleeps for %d ms", CONFIG_TEST_SLEEP_DURATION_MS); | ||
|
||
return 0; | ||
} |
94 changes: 94 additions & 0 deletions
94
tests/benchmarks/multicore/idle_flpr/remote/src/power_off.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
#include <zephyr/kernel.h> | ||
#include <zephyr/pm/pm.h> | ||
#include <zephyr/devicetree.h> | ||
#include <hal/nrf_vpr_csr.h> | ||
|
||
#include <zephyr/logging/log.h> | ||
LOG_MODULE_REGISTER(power_off, LOG_LEVEL_INF); | ||
|
||
#define VIPER_SLEEP_SUBSTATE_WAIT 0 | ||
#define VIPER_SLEEP_SUBSTATE_SLEEP 1 | ||
#define VIPER_SLEEP_SUBSTATE_HIBERNATE 0 | ||
#define VIPER_SLEEP_SUBSTATE_DEEPSLEEP 1 | ||
|
||
static void pm_go_to_wait(void) | ||
{ | ||
LOG_INF("Wait Sleep State"); | ||
|
||
csr_write(VPRCSR_NORDIC_VPRNORDICSLEEPCTRL, | ||
VPRCSR_NORDIC_VPRNORDICSLEEPCTRL_SLEEPSTATE_WAIT); | ||
nrf_barrier_w(); | ||
arch_cpu_idle(); | ||
} | ||
|
||
static void pm_go_to_hibernate(void) | ||
{ | ||
LOG_INF("Hibernate Sleep State"); | ||
|
||
csr_write(VPRCSR_NORDIC_VPRNORDICSLEEPCTRL, | ||
VPRCSR_NORDIC_VPRNORDICSLEEPCTRL_SLEEPSTATE_HIBERNATE); | ||
nrf_barrier_w(); | ||
arch_cpu_idle(); | ||
} | ||
|
||
/** | ||
* @brief Zephyr callback function to set/enter new PM State | ||
* | ||
* @param state Current PM State | ||
* @param substate_id Substate of current PM State | ||
*/ | ||
void pm_state_set(enum pm_state state, uint8_t substate_id) | ||
{ | ||
LOG_INF("PPR pm_state_set: %d\t%d", (int)state, (int)substate_id); | ||
|
||
switch (state) { | ||
case PM_STATE_SUSPEND_TO_RAM: { | ||
switch (substate_id) { | ||
case VIPER_SLEEP_SUBSTATE_HIBERNATE: | ||
pm_go_to_hibernate(); | ||
break; | ||
case VIPER_SLEEP_SUBSTATE_DEEPSLEEP: | ||
/* do nothing */ | ||
break; | ||
} | ||
} break; | ||
case PM_STATE_STANDBY: { | ||
switch (substate_id) { | ||
case VIPER_SLEEP_SUBSTATE_WAIT: | ||
pm_go_to_wait(); | ||
break; | ||
} | ||
} break; | ||
case PM_STATE_SUSPEND_TO_IDLE: | ||
case PM_STATE_SUSPEND_TO_DISK: | ||
case PM_STATE_SOFT_OFF: | ||
case PM_STATE_COUNT: | ||
case PM_STATE_ACTIVE: | ||
case PM_STATE_RUNTIME_IDLE: | ||
break; | ||
} | ||
} | ||
|
||
/** | ||
* @brief Zephyr callback function to exit current PM State | ||
* | ||
* @param state Current PM State | ||
* @param substate_id Substate of current PM State | ||
* | ||
*/ | ||
void pm_state_exit_post_ops(enum pm_state state, uint8_t substate_id) | ||
{ | ||
LOG_INF("PPR pm_state_exit_post_ops"); | ||
ARG_UNUSED(substate_id); | ||
|
||
csr_write(VPRCSR_NORDIC_VPRNORDICSLEEPCTRL, | ||
VPRCSR_NORDIC_VPRNORDICSLEEPCTRL_SLEEPSTATE_WAIT); | ||
|
||
/* unlock interrupts after sleep */ | ||
irq_unlock(MSTATUS_IEN); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
#include <zephyr/kernel.h> | ||
#include <zephyr/drivers/gpio.h> | ||
|
||
#include <zephyr/logging/log.h> | ||
LOG_MODULE_REGISTER(idle_flpr, LOG_LEVEL_INF); | ||
|
||
static const struct gpio_dt_spec led = GPIO_DT_SPEC_GET(DT_ALIAS(led0), gpios); | ||
|
||
/* Variables used to make CPU active for ~1 second */ | ||
static struct k_timer my_timer; | ||
static bool timer_expired; | ||
|
||
void my_timer_handler(struct k_timer *dummy) | ||
{ | ||
timer_expired = true; | ||
} | ||
|
||
int main(void) | ||
{ | ||
int counter = 0; | ||
int ret; | ||
|
||
LOG_INF("Multicore idle_flpr test on %s", CONFIG_BOARD_TARGET); | ||
LOG_INF("Main sleeps for %d ms", CONFIG_TEST_SLEEP_DURATION_MS); | ||
|
||
ret = gpio_is_ready_dt(&led); | ||
if (!ret) { | ||
LOG_ERR("LED is not ready"); | ||
} | ||
__ASSERT(ret, "LED is not ready\n"); | ||
|
||
ret = gpio_pin_configure_dt(&led, GPIO_OUTPUT_ACTIVE); | ||
if (ret < 0) { | ||
LOG_ERR("Unable to configure GPIO as output"); | ||
} | ||
__ASSERT(ret == 0, "Unable to configure GPIO as output\n"); | ||
|
||
k_timer_init(&my_timer, my_timer_handler, NULL); | ||
|
||
/* Run test forever */ | ||
while (1) { | ||
timer_expired = false; | ||
|
||
/* start a one-shot timer that expires after 1 second */ | ||
k_timer_start(&my_timer, K_MSEC(1000), K_NO_WAIT); | ||
|
||
/* Turn ON LED */ | ||
ret = gpio_pin_set_dt(&led, 1); | ||
if (ret < 0) { | ||
LOG_ERR("Unable to turn on LED"); | ||
} | ||
__ASSERT(ret == 0, "Unable to turn on LED\n"); | ||
|
||
/* Keep CPU active for ~ 1 second */ | ||
while (!timer_expired) { | ||
k_busy_wait(10000); | ||
k_yield(); | ||
} | ||
|
||
/* Turn OFF LED */ | ||
ret = gpio_pin_set_dt(&led, 0); | ||
if (ret < 0) { | ||
LOG_ERR("Unable to turn off LED"); | ||
} | ||
__ASSERT(ret == 0, "Unable to turn off LED\n"); | ||
|
||
LOG_INF("Run %d", counter); | ||
counter++; | ||
|
||
/* Sleep / enter low power state */ | ||
k_msleep(CONFIG_TEST_SLEEP_DURATION_MS); | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
ExternalZephyrProject_Add( | ||
APPLICATION remote_flpr | ||
SOURCE_DIR ${APP_DIR}/remote | ||
BOARD ${SB_CONFIG_BOARD}/${SB_CONFIG_SOC}/cpuflpr | ||
BOARD_REVISION ${BOARD_REVISION} | ||
) | ||
|
||
ExternalZephyrProject_Add( | ||
APPLICATION remote_rad | ||
SOURCE_DIR ${SYSBUILD_NRF_MODULE_DIR}/tests/benchmarks/power_consumption/common/remote_sleep_forever | ||
BOARD ${SB_CONFIG_BOARD}/${SB_CONFIG_SOC}/cpurad | ||
BOARD_REVISION ${BOARD_REVISION} | ||
) |
Oops, something went wrong.