unsigned int fifo_depth;
        unsigned int dataline;
        bool imx;
+       bool use_edma;
        u64  formats;
 };
 
        .fifo_depth = 32,
        .dataline =  0xf,
        .formats = SNDRV_PCM_FMTBIT_S32_LE,
+       .use_edma = true,
 };
 
 static const struct of_device_id fsl_micfil_dt_ids[] = {
        micfil->sdmacfg.n_fifos_src = channels;
        micfil->sdmacfg.sw_done = true;
        micfil->dma_params_rx.maxburst = channels * MICFIL_DMA_MAXBURST_RX;
+       if (micfil->soc->use_edma)
+               micfil->dma_params_rx.maxburst = channels;
 
        return 0;
 }