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

mpsl: clock_ctrl: Fix wait for LFCLK if timeout returned earlier #20782

Conversation

ppryga-nordic
Copy link
Contributor

There is a workaround implemented in the MPSL clock control integration layer for cases where nrf2 clock control desn't get response from sysctrl for the LFCLK request,

The workaround was incorreclty implemented, so that after a -NRF_ETIMEDOUT was returned by clock driver another call to m_lfclk_wait attempte to wait and timedout on a semaphore. The second call with semaphore timeout returned -NRF_EFAULT error code that caused an assert in later initialization stage.

The change makes sure if a clock driver returns -NRF_ETIMEDOUT error for LFCLK then next m_lfclk_wait immediately returns 0 (as if the clock was ready). That is based on an assumption:

  • the sysctrl implicitly provided a LFCLK with accuracy that is the same or better than requested by MPSL.
  • there are not other LFLCK requests from Radio core FW
  • if there is another request put, it is for a LFCLK that accuracy is the same or better than required by radio protocols.

The change also affects lfclk request and response APIs, so that new requests or released for the clock will return immediately until the mpsl_clock_ctrl_uninit()_is executed, that resets the sated of the m_lflclk_req_timedout flag.

There is added a Kconfig option:CONFIG_MPSL_EXT_CLK_CTRL- _LFCLK_REQ_TIMEOUT_ALLOW that can be use to disable the workatround.

@ppryga-nordic ppryga-nordic requested review from a team as code owners March 6, 2025 20:02
@github-actions github-actions bot added the changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. label Mar 6, 2025
@NordicBuilder
Copy link
Contributor

NordicBuilder commented Mar 6, 2025

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 8

Inputs:

Sources:

sdk-nrf: PR head: 502d45d39682d214fb671be61c0c857a82958993

more details

sdk-nrf:

PR head: 502d45d39682d214fb671be61c0c857a82958993
merge base: 4fd93483d5ffae3943763292a80b849562e8ecd7
target head (main): e07457e1616d65c48716756602c60a5ffaa1d1bf
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (2)
subsys
│  ├── mpsl
│  │  ├── clock_ctrl
│  │  │  ├── Kconfig
│  │  │  │ mpsl_clock_ctrl.c

Outputs:

Toolchain

Version: acee3b0b2b
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:acee3b0b2b_bece0367df

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister - Skipped: Skipping Build & Test as it succeeded in a previous run: 7
  • ✅ Integration tests
    • ✅ test-fw-nrfconnect-ble_samples - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-chip - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-rs - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-fem - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-thread
    • ✅ test-fw-nrfconnect-zigbee - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-sdk-find-my - Skipped: Job was skipped as it succeeded in a previous run
    • ⚠️ test_ble_nrf_config
Disabled integration tests
    • desktop52_verification
    • doc-internal
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-ble_mesh
    • test-fw-nrfconnect-boot
    • test-fw-nrfconnect-nfc
    • test-fw-nrfconnect-nrf-iot_cloud
    • test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • test-fw-nrfconnect-nrf-iot_mosh
    • test-fw-nrfconnect-nrf-iot_positioning
    • test-fw-nrfconnect-nrf-iot_samples
    • test-fw-nrfconnect-nrf-iot_serial_lte_modem
    • test-fw-nrfconnect-nrf-iot_thingy91
    • test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • test-fw-nrfconnect-nrf_crypto
    • test-fw-nrfconnect-proprietary_esb
    • test-fw-nrfconnect-ps
    • test-fw-nrfconnect-rpc
    • test-fw-nrfconnect-tfm
    • test-low-level
    • test-sdk-audio
    • test-sdk-dfu
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-sidewalk
    • test-sdk-wifi
    • test-secdom-samples-public

Note: This message is automatically posted and updated by the CI

Copy link

github-actions bot commented Mar 6, 2025

You can find the documentation preview for this PR here.

@ppryga-nordic ppryga-nordic force-pushed the mpsl-fix-double-wait-for-lfclk-if-timedout branch 4 times, most recently from a38404e to 09a3f44 Compare March 6, 2025 20:32
There is a workaround implemented in the MPSL clock control
integration layer for cases where nrf2 clock control doesn't
get response from sysctrl for the LFCLK request.

The workaround was incorrectly implemented. After clock driver
returned -NRF_ETIMEDOUT new call to m_lfclk_wait() was done.
The new call waits on a semaphore that also returns timeout error.
The second m_lfclk_wait() call returns -NRF_EFAULT error code that
causes an assert in later stage of initialization.

The change done is to make sure if a clock driver returns
-NRF_ETIMEDOUT error for m_lfclk_wait then next m_lfclk_wait call
immediately returns 0 (as if the clock was ready). That is based
on an assumption:
- the sysctrl implicitly provides a LFCLK with accuracy that is
  the same or better than requested by MPSL,
- there are not other LFLCK requests from Radio core FW
- if there is another LFCLK request put, it is for a LFCLK with
  accuracy the same or better than required by radio protocols.

The change also affects LFCLK request and response APIs, so that
the new requests or released for the clock will return immediately
until the mpsl_clock_ctrl_uninit() is executed, that resets the sate
of the m_lflclk_req_timeout flag.

There is added a KConfig option: CONFIG_MPSL_EXT_CLK_CTRL_LFCLK_REQ-
_TIMEOUT_ALLOW that can be used to disable the workaround.

Signed-off-by: Piotr Pryga <piotr.pryga@nordicsemi.no>
@ppryga-nordic ppryga-nordic force-pushed the mpsl-fix-double-wait-for-lfclk-if-timedout branch from 09a3f44 to 502d45d Compare March 10, 2025 09:57
@nordicjm nordicjm merged commit 0479f08 into nrfconnect:main Mar 12, 2025
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants