Lines Matching refs:txconf
274 struct dma_slave_config txconf;
276 memset(&txconf, 0, sizeof(txconf));
277 txconf.direction = DMA_MEM_TO_DEV;
278 txconf.dst_addr = dws->dma_addr;
279 txconf.dst_maxburst = dws->txburst;
280 txconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
281 txconf.dst_addr_width = dw_spi_dma_convert_width(dws->n_bytes);
282 txconf.device_fc = false;
284 return dmaengine_slave_config(dws->txchan, &txconf);