Skip to content
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
6 changes: 6 additions & 0 deletions drivers/clock_control/Kconfig.nrf
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,12 @@ config CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_REQ_LOW_FREQ
unnecessary HIGH -> LOW -> HIGH cycle given some module will
request a HIGH frequency on init anyway.

config CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_INIT_PRIORITY
int "Init priority of global HSFLL device driver"
default 52
help
Must be higher than NRFS backend

endif # CLOCK_CONTROL_NRF2_GLOBAL_HSFLL

endif # CLOCK_CONTROL_NRF2
2 changes: 1 addition & 1 deletion drivers/clock_control/clock_control_nrf2_global_hsfll.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,6 @@
&driver_data,
&driver_config,
POST_KERNEL,
CONFIG_CLOCK_CONTROL_INIT_PRIORITY,
CONFIG_CLOCK_CONTROL_NRF2_GLOBAL_HSFLL_INIT_PRIORITY,
&driver_api
);
4 changes: 4 additions & 0 deletions modules/hal_nordic/nrfs/nrfs_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
#define NRFS_CLOCK_SERVICE_ENABLED
#endif

#ifdef CONFIG_NRFS_GDFS_SERVICE_ENABLED
#define NRFS_GDFS_SERVICE_ENABLED
#endif

#ifdef CONFIG_SOC_POSIX
#define NRFS_UNIT_TESTS_ENABLED
#endif
Expand Down
Loading