Lines Matching refs:dma_conf
199 struct dma_slave_config dma_conf; member
1036 host->dma_conf.direction = slave_dirn = DMA_DEV_TO_MEM; in atmci_prepare_data_dma()
1037 maxburst = atmci_convert_chksize(host->dma_conf.src_maxburst); in atmci_prepare_data_dma()
1040 host->dma_conf.direction = slave_dirn = DMA_MEM_TO_DEV; in atmci_prepare_data_dma()
1041 maxburst = atmci_convert_chksize(host->dma_conf.dst_maxburst); in atmci_prepare_data_dma()
1051 dmaengine_slave_config(chan, &host->dma_conf); in atmci_prepare_data_dma()
2290 host->dma_conf.src_addr = host->mapbase + ATMCI_RDR; in atmci_configure_dma()
2291 host->dma_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in atmci_configure_dma()
2292 host->dma_conf.src_maxburst = 1; in atmci_configure_dma()
2293 host->dma_conf.dst_addr = host->mapbase + ATMCI_TDR; in atmci_configure_dma()
2294 host->dma_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in atmci_configure_dma()
2295 host->dma_conf.dst_maxburst = 1; in atmci_configure_dma()
2296 host->dma_conf.device_fc = false; in atmci_configure_dma()