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

Revert "applications: nrf_desktop: Use high Global Domain frequency o… #20577

Merged
merged 1 commit into from
Feb 24, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ CONFIG_SPEED_OPTIMIZATIONS=y
CONFIG_LTO=y
CONFIG_ISR_TABLES_LOCAL_DECLARATION=y

# 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.
CONFIG_CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_REQ_LOW_FREQ=n

################################################################################
# Debug logs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ CONFIG_SPEED_OPTIMIZATIONS=y
CONFIG_LTO=y
CONFIG_ISR_TABLES_LOCAL_DECLARATION=y

# 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.
CONFIG_CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_REQ_LOW_FREQ=n

################################################################################
# Disable unused features

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,6 @@ nRF Desktop
* Disabled Bluetooth long workqueue (:kconfig:option:`CONFIG_BT_LONG_WQ`).
* Limited the number of key slots in the PSA Crypto core to 10 (:kconfig:option:`CONFIG_MBEDTLS_PSA_KEY_SLOT_COUNT`).

* 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.
This is done to ensure that the radio core requests high Global Domain (GD) frequency.
The option was enabled by default, because the clock control is enabled by the Multiprotocol Service Layer (MPSL).
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.
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.
* Application configurations for HID peripherals by increasing the following thread stack sizes to prevent stack overflows during the :c:func:`settings_load` operation:

* The system workqueue thread stack (:kconfig:option:`CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE`).
Expand Down