Skip to content

Commit d1c1ae1

Browse files
committed
applications: nrf_desktop: Use high Global Domain frequency on nRF54H20
In nRF Desktop application, the DVFS module running on the application core selects clock control and enables automatic low GD frequency request. Update IPC radio configuration to ensure high GD frequency, which is required to ensure stability of the Bluetooth stack with SoftDevice Link Layer. Jira: NCSDK-31824 Signed-off-by: Marek Pieta <Marek.Pieta@nordicsemi.no> Signed-off-by: Piotr Pryga <piotr.pryga@nordicsemi.no> Signed-off-by: Pekka Niskanen <pekka.niskanen@nordicsemi.no>
1 parent 11f3037 commit d1c1ae1

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

applications/nrf_desktop/configuration/nrf54h20dk_nrf54h20_cpurad/images/ipc_radio/prj.conf

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ CONFIG_SPEED_OPTIMIZATIONS=y
4444
CONFIG_LTO=y
4545
CONFIG_ISR_TABLES_LOCAL_DECLARATION=y
4646

47+
# Bluetooth stack with SoftDevice Link Layer requires high frequency in Global Domain (GD) to make L2 cache and MRAM run fast to avoid code execution delays.
48+
CONFIG_CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_REQ_LOW_FREQ=n
49+
4750
################################################################################
4851
# Debug logs
4952

applications/nrf_desktop/configuration/nrf54h20dk_nrf54h20_cpurad/images/ipc_radio/prj_release.conf

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ CONFIG_SPEED_OPTIMIZATIONS=y
4141
CONFIG_LTO=y
4242
CONFIG_ISR_TABLES_LOCAL_DECLARATION=y
4343

44+
# Bluetooth stack with SoftDevice Link Layer requires high frequency in Global Domain (GD) to make L2 cache and MRAM run fast to avoid code execution delays.
45+
CONFIG_CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_REQ_LOW_FREQ=n
46+
4447
################################################################################
4548
# Disable unused features
4649

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,12 @@ nRF Desktop
246246
* Disabled Bluetooth long workqueue (:kconfig:option:`CONFIG_BT_LONG_WQ`).
247247
* Limited the number of key slots in the PSA Crypto core to 10 (:kconfig:option:`CONFIG_MBEDTLS_PSA_KEY_SLOT_COUNT`).
248248

249+
* Disabled the :kconfig:option:`CONFIG_CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_REQ_LOW_FREQ` Kconfig option in the IPC radio image configuration for the nRF54H20 SoC.
250+
This is done to ensure that the radio core requests high Global Domain (GD) frequency.
251+
The option was enabled by default, because the clock control is enabled by the Multiprotocol Service Layer (MPSL).
252+
Bluetooth stack with the SoftDevice Link Layer requires high frequency in GD to make the L2 cache and MRAM run fast to avoid code execution delays.
253+
The :ref:`nrf_desktop_dvfs` running on the application core selects the clock control and enables an automatic low GD frequency request (:kconfig:option:`CONFIG_CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_REQ_LOW_FREQ`), so the application core would not request high frequency in the GD.
254+
249255
* Added:
250256

251257
* System Power Management for the :ref:`zephyr:nrf54h20dk_nrf54h20` board target on the application and radio cores.

0 commit comments

Comments
 (0)