Lines Matching refs:txd
70 struct dma_async_tx_descriptor *txd; member
145 struct dma_chan *chan = desc->txd.chan; in mx3_cam_dma_done()
150 desc->txd.cookie, mx3_cam->active ? sg_dma_address(&mx3_cam->active->sg) : 0); in mx3_cam_dma_done()
265 struct dma_async_tx_descriptor *txd; in mx3_videobuf_queue() local
280 if (!buf->txd) { in mx3_videobuf_queue()
284 txd = dmaengine_prep_slave_sg( in mx3_videobuf_queue()
287 if (!txd) in mx3_videobuf_queue()
290 txd->callback_param = txd; in mx3_videobuf_queue()
291 txd->callback = mx3_cam_dma_done; in mx3_videobuf_queue()
293 buf->txd = txd; in mx3_videobuf_queue()
295 txd = buf->txd; in mx3_videobuf_queue()
338 cookie = txd->tx_submit(txd); in mx3_videobuf_queue()
364 struct dma_async_tx_descriptor *txd = buf->txd; in mx3_videobuf_release() local
380 if (txd) { in mx3_videobuf_release()
381 buf->txd = NULL; in mx3_videobuf_release()
383 async_tx_ack(txd); in mx3_videobuf_release()
398 if (!buf->txd) { in mx3_videobuf_init()