-
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: Test fast UART with different GD frequencies
Default GD frequency is 320MHz Validate fast UART with 256, 128 and 64MHz Signed-off-by: Bartosz Miller <[email protected]>
- Loading branch information
1 parent
26eb8eb
commit 6942e59
Showing
5 changed files
with
120 additions
and
6 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,32 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
choice GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION | ||
prompt "Global domain clock frequency" | ||
default GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ | ||
|
||
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ | ||
bool "320MHz" | ||
|
||
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_256MHZ | ||
bool "256MHz" | ||
|
||
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ | ||
bool "128MHz" | ||
|
||
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ | ||
bool "64MHz" | ||
|
||
endchoice | ||
|
||
config GLOBAL_DOMAIN_CLOCK_FREQUENCY_MHZ | ||
int | ||
default 320 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_320MHZ | ||
default 256 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_256MHZ | ||
default 128 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_128MHZ | ||
default 64 if GLOBAL_DOMAIN_CLOCK_FREQUENCY_OPTION_64MHZ | ||
|
||
source "Kconfig.zephyr" |
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# | ||
# Copyright (c) 2023 Nordic Semiconductor ASA | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
source "${ZEPHYR_BASE}/share/sysbuild/Kconfig" | ||
|
||
config REMOTE_BOARD | ||
string "The board used for remote target" | ||
string | ||
default "$(BOARD)/nrf54h20/cpurad" if SOC_NRF54H20_CPUAPP |
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
1 change: 0 additions & 1 deletion
1
tests/benchmarks/multicore/idle_uarte/sysbuild/nrf54h20dk_nrf54h20_cpurad.conf
This file was deleted.
Oops, something went wrong.
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