Skip to content

Commit cfb34c2

Browse files
committed
[nrf fromlist] modules: hal_nordic: nrfs: Enable DVFS service on nRF54H20 EngB
Upstream PR: zephyrproject-rtos/zephyr#80226 Just like on nRF54H20 EngC. Signed-off-by: Grzegorz Swiderski <[email protected]> (cherry picked from commit d323ced0ad967177a8344289a2d1f61fc68341f2)
1 parent f65c4ed commit cfb34c2

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
@@ -103,7 +103,7 @@ config NRFS_PMIC_SERVICE_ENABLED
103103
config NRFS_DVFS_SERVICE_ENABLED
104104
bool "DVFS service"
105105
depends on NRFS_HAS_DVFS_SERVICE
106-
default y if SOC_NRF54H20_CPUAPP || SOC_NRF9280_CPUAPP
106+
default y if SOC_NRF54H20_CPUAPP || SOC_NRF54H20_ENGB_CPUAPP || SOC_NRF9280_CPUAPP
107107

108108
config NRFS_DIAG_SERVICE_ENABLED
109109
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)