Skip to content

Commit 9747c53

Browse files
committed
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 <daniel.baluta@nxp.com>
1 parent 34a8d7c commit 9747c53

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

app/boards/imx95_evk_mimx9596_m7_ddr.overlay

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
status = "okay";
2727
};
2828

29+
&edma1 {
30+
compatbile = "disabled";
31+
}
32+
2933
&edma2 {
3034
compatible = "nxp,edma";
3135
reg = <0x42000000 (DT_SIZE_K(64) * 33)>;

0 commit comments

Comments
 (0)