Skip to content

Commit 5375d6e

Browse files
nordic-seglnordic-piks
authored andcommitted
tests: benchmarks: multicore: Cleanup Global Domain Freq. switching
Remove Kconfigs related to global domain frequency switching. There were significant changes to GDF switching. Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 353dfa1 commit 5375d6e

File tree

13 files changed

+2
-234
lines changed

13 files changed

+2
-234
lines changed

tests/benchmarks/multicore/common/remote_gdf_switching/CMakeLists.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

tests/benchmarks/multicore/common/remote_gdf_switching/boards/nrf54h20dk_nrf54h20_cpurad.overlay

Lines changed: 0 additions & 36 deletions
This file was deleted.

tests/benchmarks/multicore/common/remote_gdf_switching/prj.conf

Lines changed: 0 additions & 9 deletions
This file was deleted.

tests/benchmarks/multicore/common/remote_gdf_switching/src/main.c

Lines changed: 0 additions & 74 deletions
This file was deleted.

tests/benchmarks/multicore/idle_counter/Kconfig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,4 @@ config TEST_SLEEP_DURATION_MS
1212
Based on the value of 'min-residency-us' specified for each power state defined in the DTS,
1313
core enters the lowest possible power state.
1414

15-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_SWITCHING
16-
bool "Enable global domain frequency changing"
17-
select CLOCK_CONTROL
18-
1915
source "Kconfig.zephyr"

tests/benchmarks/multicore/idle_counter/remote/Kconfig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,4 @@ config TEST_ROLE_REMOTE
1919
KConfig used in synchronization phase.
2020
Set TEST_ROLE_REMOTE=y on core that shall synchronize with the Host core.
2121

22-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_SWITCHING
23-
bool "Enable global domain frequency changing from remote"
24-
select CLOCK_CONTROL
25-
2622
source "Kconfig.zephyr"

tests/benchmarks/multicore/idle_pwm_loopback/Kconfig

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,4 @@ config TEST_SLEEP_DURATION_MS
1212
Based on the value of 'min-residency-us' specified for each power state defined in the DTS,
1313
core enters the lowest possible power state.
1414

15-
choice GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION
16-
prompt "Global domain clock frequency"
17-
default GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ
18-
19-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ
20-
bool "320MHz"
21-
22-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_256MHZ
23-
bool "256MHz"
24-
25-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ
26-
bool "128MHz"
27-
28-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ
29-
bool "64MHz"
30-
31-
endchoice
32-
33-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_MHZ
34-
int
35-
default 320 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ
36-
default 256 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_256MHZ
37-
default 128 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ
38-
default 64 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ
39-
40-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_SWITCHING
41-
bool "Enable global domain frequency changing when driver is active"
42-
4315
source "Kconfig.zephyr"

tests/benchmarks/multicore/idle_pwm_loopback/Kconfig.sysbuild

Lines changed: 0 additions & 10 deletions
This file was deleted.

tests/benchmarks/multicore/idle_pwm_loopback/sysbuild.cmake

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
#
66

77
if(SB_CONFIG_SOC_NRF54H20)
8-
if(SB_CONFIG_REMOTE_GLOBAL_DOMAIN_CLOCK_FREQUENCY_SWITCHING)
9-
set(REMOTE_SOURCE_DIR ${ZEPHYR_NRF_MODULE_DIR}/tests/benchmarks/multicore/common/remote_gdf_switching)
10-
else()
11-
set(REMOTE_SOURCE_DIR ${APP_DIR}/remote)
12-
endif()
8+
set(REMOTE_SOURCE_DIR ${APP_DIR}/remote)
139

1410
# Add remote project
1511
ExternalZephyrProject_Add(

tests/benchmarks/multicore/idle_spim_loopback/Kconfig

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -45,32 +45,4 @@ config TEST_SPI_RELEASE_BEFORE_SLEEP
4545
first test iteration will see SPI CS signal activation. Next test iterations
4646
will NOT observe changes on SPI CS signal.
4747

48-
choice GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION
49-
prompt "Global domain clock frequency"
50-
default GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ
51-
52-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ
53-
bool "320MHz"
54-
55-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_256MHZ
56-
bool "256MHz"
57-
58-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ
59-
bool "128MHz"
60-
61-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ
62-
bool "64MHz"
63-
64-
endchoice
65-
66-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_MHZ
67-
int
68-
default 320 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ
69-
default 256 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_256MHZ
70-
default 128 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ
71-
default 64 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ
72-
73-
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_SWITCHING
74-
bool "Enable global domain frequency changing when driver is active"
75-
7648
source "Kconfig.zephyr"

0 commit comments

Comments
 (0)