Lines Matching refs:conf
135 struct dma_slave_config conf; in msm_request_tx_dma() local
149 memset(&conf, 0, sizeof(conf)); in msm_request_tx_dma()
150 conf.direction = DMA_MEM_TO_DEV; in msm_request_tx_dma()
151 conf.device_fc = true; in msm_request_tx_dma()
152 conf.dst_addr = base + UARTDM_TF; in msm_request_tx_dma()
153 conf.dst_maxburst = UARTDM_BURST_SIZE; in msm_request_tx_dma()
154 conf.slave_id = crci; in msm_request_tx_dma()
156 ret = dmaengine_slave_config(dma->chan, &conf); in msm_request_tx_dma()
178 struct dma_slave_config conf; in msm_request_rx_dma() local
196 memset(&conf, 0, sizeof(conf)); in msm_request_rx_dma()
197 conf.direction = DMA_DEV_TO_MEM; in msm_request_rx_dma()
198 conf.device_fc = true; in msm_request_rx_dma()
199 conf.src_addr = base + UARTDM_RF; in msm_request_rx_dma()
200 conf.src_maxburst = UARTDM_BURST_SIZE; in msm_request_rx_dma()
201 conf.slave_id = crci; in msm_request_rx_dma()
203 ret = dmaengine_slave_config(dma->chan, &conf); in msm_request_rx_dma()