-
Notifications
You must be signed in to change notification settings - Fork 636
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
[nrf noup] soc: nordic: add delay after wake up #1995
[nrf noup] soc: nordic: add delay after wake up #1995
Conversation
fb87b9b
to
98d1d02
Compare
98d1d02
to
13109f6
Compare
Can you add a comment with why this is needed? |
13109f6
to
c5d62db
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be justified why this delay is needed and why it is not applied upstream.
soc/nordic/nrf54h/power.c
Outdated
@@ -33,7 +33,6 @@ static void suspend_common(void) | |||
|
|||
/* Disable retention */ | |||
nrf_lrcconf_retain_set(NRF_LRCCONF010, NRF_LRCCONF_POWER_DOMAIN_0, false); | |||
nrf_lrcconf_poweron_force_set(NRF_LRCCONF010, NRF_LRCCONF_POWER_DOMAIN_0, false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change looks unrelated, and neither change has a comment that marks it as workaround or temporary when a better solution is in place
An additional delay after wake-up is needed. Signed-off-by: Adam Kondraciuk <[email protected]>
c5d62db
to
35e01a9
Compare
To my understanding we shouldn't do the delay method but just wait for a proper fix in sysctrl that doesn't turn on closed loop for fll16m. or is this supposed to fix something else? |
An additional delay after wake-up is needed.