Lines Matching refs:txconf
326 struct dma_slave_config txconf;
328 memset(&txconf, 0, sizeof(txconf));
329 txconf.direction = DMA_MEM_TO_DEV;
330 txconf.dst_addr = dws->dma_addr;
331 txconf.dst_maxburst = dws->txburst;
332 txconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
333 txconf.dst_addr_width = dw_spi_dma_convert_width(dws->n_bytes);
334 txconf.device_fc = false;
336 return dmaengine_slave_config(dws->txchan, &txconf);