From f5281bb15b55ea0cbf68ea7fcdf5eca13842ca06 Mon Sep 17 00:00:00 2001 From: Chaitanya Tata Date: Sun, 8 Dec 2024 21:43:29 +0530 Subject: [PATCH] nrf_wifi: Disable RPU recovery 2.7.0 doesn't have proper recovery support, so, disable WDT IRQ processing, it will just be ignored. Signed-off-by: Chaitanya Tata --- nrf_wifi/hw_if/hal/src/hal_interrupt.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nrf_wifi/hw_if/hal/src/hal_interrupt.c b/nrf_wifi/hw_if/hal/src/hal_interrupt.c index 2086f89ed9..afff6aeba7 100644 --- a/nrf_wifi/hw_if/hal/src/hal_interrupt.c +++ b/nrf_wifi/hw_if/hal/src/hal_interrupt.c @@ -506,6 +506,11 @@ static enum nrf_wifi_status hal_rpu_process_wdog(struct nrf_wifi_hal_dev_ctx *ha unsigned long flags = 0; #endif + /* NCS 2.7.0 doesn't have proper recovery mechanism for RPU, so + * ignore the watchdog interrupt. + */ + return 0; + nrf_wifi_osal_log_dbg(hal_dev_ctx->hpriv->opriv, "Processing watchdog interrupt");