Lines Matching refs:dma_conf
200 struct dma_slave_config dma_conf; member
1037 host->dma_conf.direction = slave_dirn = DMA_DEV_TO_MEM; in atmci_prepare_data_dma()
1038 maxburst = atmci_convert_chksize(host->dma_conf.src_maxburst); in atmci_prepare_data_dma()
1041 host->dma_conf.direction = slave_dirn = DMA_MEM_TO_DEV; in atmci_prepare_data_dma()
1042 maxburst = atmci_convert_chksize(host->dma_conf.dst_maxburst); in atmci_prepare_data_dma()
1052 dmaengine_slave_config(chan, &host->dma_conf); in atmci_prepare_data_dma()
2307 host->dma_conf.src_addr = host->mapbase + ATMCI_RDR; in atmci_configure_dma()
2308 host->dma_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in atmci_configure_dma()
2309 host->dma_conf.src_maxburst = 1; in atmci_configure_dma()
2310 host->dma_conf.dst_addr = host->mapbase + ATMCI_TDR; in atmci_configure_dma()
2311 host->dma_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in atmci_configure_dma()
2312 host->dma_conf.dst_maxburst = 1; in atmci_configure_dma()
2313 host->dma_conf.device_fc = false; in atmci_configure_dma()