Hi
I want to configure spi3 to dma mode on imx9352, there is no dma configured by default in imx93.dtsi, I changed the device tree to the following
lpspi3: spi@42550000 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "fsl,imx93-spi", "fsl,imx7ulp-spi";
reg = <0x42550000 0x10000>;
interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clk IMX93_CLK_LPSPI3_GATE>, <&clk IMX93_CLK_LPSPI3_GATE
<&clk IMX93_CLK_BUS_WAKEUP>;
clock-names = "per", "ipg";
dmas = <&edma2 12 0 0>, <&edma2 13 0 1>;
dma-names = "tx", "rx";
status = "okay";
};
But spi doesn't work anymore, I would like to ask why spi3 is not paired with dma in the default dtsi? I can't even use it myself.