Skip to content

Commit f63bb8d

Browse files
tests: drivers: clock_control_api: Adjust to nRF54L09 and nRF54L20
nRF54L09 and nRF54L20 need double the time for startup of their clocks. Signed-off-by: Michał Stasiak <[email protected]>
1 parent eca5790 commit f63bb8d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/drivers/clock_control/clock_control_api/src/nrf_device_subsys.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ static const struct device_subsys_data subsys_data[] = {
1111
{
1212
.subsys = CLOCK_CONTROL_NRF_SUBSYS_HF,
1313
.startup_us =
14-
IS_ENABLED(CONFIG_SOC_SERIES_NRF91X) ?
15-
3000 : 500
14+
(IS_ENABLED(CONFIG_SOC_NRF54L20_ENGA) ||
15+
IS_ENABLED(CONFIG_SOC_NRF54L09_ENGA)) ?
16+
1000 : (IS_ENABLED(CONFIG_SOC_SERIES_NRF91X) ? 3000 : 500)
1617
},
1718
#ifndef CONFIG_SOC_NRF52832
1819
/* On nrf52832 LF clock cannot be stopped because it leads

0 commit comments

Comments
 (0)