From 22ebb10c42e71a348a35bf9e32ec505abc9f3822 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 8 Nov 2023 10:14:57 +0100 Subject: [PATCH] hw/drivers/nrf53_ipc: Apply errata 161 on networking core restart Restart code was not implementing errata 161 which could lead to erroneous networking core behavior after reset. --- hw/drivers/ipc_nrf5340/src/ipc_nrf5340.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/drivers/ipc_nrf5340/src/ipc_nrf5340.c b/hw/drivers/ipc_nrf5340/src/ipc_nrf5340.c index da24746ee5..6d586799d2 100644 --- a/hw/drivers/ipc_nrf5340/src/ipc_nrf5340.c +++ b/hw/drivers/ipc_nrf5340/src/ipc_nrf5340.c @@ -403,7 +403,7 @@ ipc_nrf5340_reset(void) } /* Start Network Core */ - NRF_RESET->NETWORK.FORCEOFF = RESET_NETWORK_FORCEOFF_FORCEOFF_Release; + ipc_nrf5340_netcore_init(); } #endif