Lines Matching refs:tx_conf
933 struct dma_slave_config tx_conf = { in configure_dma() local
979 tx_conf.dst_maxburst = 1; in configure_dma()
982 tx_conf.dst_maxburst = 4; in configure_dma()
985 tx_conf.dst_maxburst = 8; in configure_dma()
988 tx_conf.dst_maxburst = 16; in configure_dma()
991 tx_conf.dst_maxburst = 32; in configure_dma()
994 tx_conf.dst_maxburst = pl022->vendor->fifodepth >> 1; in configure_dma()
1017 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_UNDEFINED; in configure_dma()
1020 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE; in configure_dma()
1023 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES; in configure_dma()
1026 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in configure_dma()
1032 rx_conf.src_addr_width = tx_conf.dst_addr_width; in configure_dma()
1033 if (tx_conf.dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) in configure_dma()
1034 tx_conf.dst_addr_width = rx_conf.src_addr_width; in configure_dma()
1035 BUG_ON(rx_conf.src_addr_width != tx_conf.dst_addr_width); in configure_dma()
1038 dmaengine_slave_config(txchan, &tx_conf); in configure_dma()