From d82b27b08bd7a9dce716b5932b4beeb37b287ea3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Thu, 11 Apr 2024 14:06:57 +0200 Subject: [PATCH] soc: nordic: nrf54h: Add DCACHE initialization MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add initialization of the data cache. Signed-off-by: Krzysztof Chruściński --- soc/nordic/nrf54h/soc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/soc/nordic/nrf54h/soc.c b/soc/nordic/nrf54h/soc.c index dd04dbe1b59..df72cdb977b 100644 --- a/soc/nordic/nrf54h/soc.c +++ b/soc/nordic/nrf54h/soc.c @@ -83,6 +83,7 @@ static int trim_hsfll(void) static int nordicsemi_nrf54h_init(void) { sys_cache_instr_enable(); + sys_cache_data_enable(); power_domain_init();