Skip to content

Commit 5f6fc8a

Browse files
nika-nordicnashif
authored andcommitted
soc: nordic: nrf54l: tune configuration of DCDC regulator
DCDC regulator on nRF54L may not always works as intended. Tune the fix addressing that. Signed-off-by: Nikodem Kastelik <[email protected]>
1 parent b7fb101 commit 5f6fc8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

soc/nordic/nrf54l/soc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ static int nordicsemi_nrf54l_init(void)
154154

155155
#if (DT_PROP(DT_NODELABEL(vregmain), regulator_initial_mode) == NRF5X_REG_MODE_DCDC)
156156
#if defined(__CORTEX_M) && !defined(NRF_TRUSTZONE_NONSECURE) && defined(__ARM_FEATURE_CMSE)
157-
if (*(uint32_t *)0x00FFC334 <= 0x180A1D00) {
158-
*(uint32_t *)0x50120640 = 0x1FAAE85C;
157+
if (*(uint32_t volatile *)0x00FFC334 <= 0x180A1D00) {
158+
*(uint32_t volatile *)0x50120640 = 0x1EA9E040;
159159
}
160160
#endif
161161
nrf_regulators_vreg_enable_set(NRF_REGULATORS, NRF_REGULATORS_VREG_MAIN, true);

0 commit comments

Comments
 (0)