From 359b2cdda521b3da9d9e8e3eeec654d4f70827f2 Mon Sep 17 00:00:00 2001 From: Nikodem Kastelik Date: Wed, 18 Sep 2024 13:56:06 +0200 Subject: [PATCH] [nrf fromlist] soc: nordic: nrf54l: remove normal voltage mode Normal voltage mode is no longer supported by MDK 8.67.0. Upstream PR: https://github.com/zephyrproject-rtos/zephyr/pull/78643 Signed-off-by: Nikodem Kastelik (cherry picked from commit 243111c25d712a4fb426a6ddd86ee7814a713131) --- soc/nordic/nrf54l/Kconfig | 3 --- soc/nordic/nrf54l/soc.c | 4 ---- 2 files changed, 7 deletions(-) diff --git a/soc/nordic/nrf54l/Kconfig b/soc/nordic/nrf54l/Kconfig index 43d914c4de6..acea21ad8be 100644 --- a/soc/nordic/nrf54l/Kconfig +++ b/soc/nordic/nrf54l/Kconfig @@ -87,9 +87,6 @@ config SOC_NRF_FORCE_CONSTLAT of base resources on while in sleep. The advantage of having a constant and predictable latency will be at the cost of having increased power consumption. -config SOC_NRF54L_NORMAL_VOLTAGE_MODE - bool "NRF54L Normal Voltage Mode." - if NRF_GRTC_TIMER config ELV_GRTC_LFXO_ALLOWED diff --git a/soc/nordic/nrf54l/soc.c b/soc/nordic/nrf54l/soc.c index eaa1531bde4..56e48800ed4 100644 --- a/soc/nordic/nrf54l/soc.c +++ b/soc/nordic/nrf54l/soc.c @@ -157,10 +157,6 @@ static inline void power_and_clock_configuration(void) nrf_regulators_vreg_enable_set(NRF_REGULATORS, NRF_REGULATORS_VREG_MAIN, true); #endif - if (IS_ENABLED(CONFIG_SOC_NRF54L_NORMAL_VOLTAGE_MODE)) { - nrf_regulators_vreg_enable_set(NRF_REGULATORS, NRF_REGULATORS_VREG_MEDIUM, false); - } - #if defined(CONFIG_ELV_GRTC_LFXO_ALLOWED) nrf_regulators_elv_mode_allow_set(NRF_REGULATORS, NRF_REGULATORS_ELV_ELVGRTCLFXO_MASK); #endif /* CONFIG_ELV_GRTC_LFXO_ALLOWED */