Skip to content

Commit de9d988

Browse files
57300hakonfam
authored andcommitted
[nrf fromtree] modules: hal_nordic: nrfs: Enable DVFS service on nRF54H20 EngB
Just like on nRF54H20 EngC. Signed-off-by: Grzegorz Swiderski <[email protected]> (cherry picked from commit 0379424)
1 parent 55546ec commit de9d988

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/hal_nordic/nrfs/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ config NRFS_PMIC_SERVICE_ENABLED
106106
config NRFS_DVFS_SERVICE_ENABLED
107107
bool "DVFS service"
108108
depends on NRFS_HAS_DVFS_SERVICE
109-
default y if SOC_NRF54H20_CPUAPP || SOC_NRF9280_CPUAPP
109+
default y if SOC_NRF54H20_CPUAPP || SOC_NRF54H20_ENGB_CPUAPP || SOC_NRF9280_CPUAPP
110110

111111
config NRFS_DIAG_SERVICE_ENABLED
112112
bool "System Diagnostics service (only for development purposes)"

modules/hal_nordic/nrfs/dvfs/ld_dvfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ int32_t ld_dvfs_configure_hsfll(enum dvfs_frequency_setting oppoint)
269269
freq_trim = 2;
270270
}
271271

272-
#if defined(CONFIG_SOC_NRF54H20_CPUAPP) || defined(CONFIG_SOC_NRF9280_CPUAPP)
272+
#if defined(NRF_APPLICATION)
273273
hsfll_trim.vsup = NRF_FICR->TRIM.APPLICATION.HSFLL.TRIM.VSUP;
274274
hsfll_trim.coarse = NRF_FICR->TRIM.APPLICATION.HSFLL.TRIM.COARSE[freq_trim];
275275
hsfll_trim.fine = NRF_FICR->TRIM.APPLICATION.HSFLL.TRIM.FINE[freq_trim];

0 commit comments

Comments
 (0)