From b16db68d6d66b11479a5f9562b55bcfe26a050ee Mon Sep 17 00:00:00 2001 From: Daniel Baluta Date: Fri, 12 Jun 2026 14:44:30 +0300 Subject: [PATCH] app: boards: imx95: Disable edma1 node Zephyr commit 58e859c5dd37b88 ("boards: nxp: imx95_evk: enable EDMA1 for M7 core") enables EDMA1 node which in turn enables dma_mcux_edma.c driver. dma_mcux_edma.c requires some attention w.r.t cache configuration options. SOF doesnt use EDMA1 nodes but inherits edma1 node which selects DMA_MCUX_EDMA and causes the following compilation errors: dma_mcux_edma.c:1225:2: error: #error Unexpected or disallowed cache situation for dma descriptors So disable edma1 node as we don't use it. Signed-off-by: Daniel Baluta --- app/boards/imx95_evk_mimx9596_m7_ddr.overlay | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/boards/imx95_evk_mimx9596_m7_ddr.overlay b/app/boards/imx95_evk_mimx9596_m7_ddr.overlay index f1d2cce00781..4c9ce43c9452 100644 --- a/app/boards/imx95_evk_mimx9596_m7_ddr.overlay +++ b/app/boards/imx95_evk_mimx9596_m7_ddr.overlay @@ -26,6 +26,10 @@ status = "okay"; }; +&edma1 { + status = "disabled"; +}; + &edma2 { compatible = "nxp,edma"; reg = <0x42000000 (DT_SIZE_K(64) * 33)>;