From cfa6e250e4ab7f6e38547f8d9b06f117bc1910bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Thu, 11 Apr 2024 14:03:32 +0200 Subject: [PATCH] soc: nordic: nrf54h: Remove redundant ICACHE kconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove CONFIG_NRF_ENABLE_ICACHE as it is not needed. There is CONFIG_ICACHE which is by default enabled for nrf54h. Signed-off-by: Krzysztof Chruściński --- soc/nordic/nrf54h/Kconfig | 8 -------- soc/nordic/nrf54h/soc.c | 2 -- 2 files changed, 10 deletions(-) diff --git a/soc/nordic/nrf54h/Kconfig b/soc/nordic/nrf54h/Kconfig index 2b967bece7c..8925669ae0d 100644 --- a/soc/nordic/nrf54h/Kconfig +++ b/soc/nordic/nrf54h/Kconfig @@ -31,11 +31,3 @@ config SOC_NRF54H20_CPURAD config SOC_NRF54H20_CPUPPR depends on RISCV_CORE_NORDIC_VPR - -if SOC_NRF54H20 - -config NRF_ENABLE_ICACHE - bool "Instruction cache (I-Cache)" - default y - -endif # SOC_NRF54H20 diff --git a/soc/nordic/nrf54h/soc.c b/soc/nordic/nrf54h/soc.c index 1d071f96b20..dd04dbe1b59 100644 --- a/soc/nordic/nrf54h/soc.c +++ b/soc/nordic/nrf54h/soc.c @@ -82,9 +82,7 @@ static int trim_hsfll(void) static int nordicsemi_nrf54h_init(void) { -#if defined(CONFIG_NRF_ENABLE_ICACHE) sys_cache_instr_enable(); -#endif power_domain_init();