Lines Matching refs:attach

53 			struct dma_buf_attachment *attach;  member
226 struct dma_buf_attachment *attach) in dmabuf_exp_ops_attach() argument
236 attach->priv = gntdev_dmabuf_attach; in dmabuf_exp_ops_attach()
241 struct dma_buf_attachment *attach) in dmabuf_exp_ops_detach() argument
243 struct gntdev_dmabuf_attachment *gntdev_dmabuf_attach = attach->priv; in dmabuf_exp_ops_detach()
250 dma_unmap_sg_attrs(attach->dev, sgt->sgl, in dmabuf_exp_ops_detach()
259 attach->priv = NULL; in dmabuf_exp_ops_detach()
264 dmabuf_exp_ops_map_dma_buf(struct dma_buf_attachment *attach, in dmabuf_exp_ops_map_dma_buf() argument
267 struct gntdev_dmabuf_attachment *gntdev_dmabuf_attach = attach->priv; in dmabuf_exp_ops_map_dma_buf()
268 struct gntdev_dmabuf *gntdev_dmabuf = attach->dmabuf->priv; in dmabuf_exp_ops_map_dma_buf()
272 attach->dev); in dmabuf_exp_ops_map_dma_buf()
291 if (!dma_map_sg_attrs(attach->dev, sgt->sgl, sgt->nents, dir, in dmabuf_exp_ops_map_dma_buf()
302 pr_debug("Failed to map sg table for dev %p\n", attach->dev); in dmabuf_exp_ops_map_dma_buf()
306 static void dmabuf_exp_ops_unmap_dma_buf(struct dma_buf_attachment *attach, in dmabuf_exp_ops_unmap_dma_buf() argument
366 .attach = dmabuf_exp_ops_attach,
612 struct dma_buf_attachment *attach; in dmabuf_imp_to_refs() local
630 attach = dma_buf_attach(dma_buf, dev); in dmabuf_imp_to_refs()
631 if (IS_ERR(attach)) { in dmabuf_imp_to_refs()
632 ret = ERR_CAST(attach); in dmabuf_imp_to_refs()
636 gntdev_dmabuf->u.imp.attach = attach; in dmabuf_imp_to_refs()
638 sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL); in dmabuf_imp_to_refs()
653 if (attach->dmabuf->size != gntdev_dmabuf->nr_pages << PAGE_SHIFT) { in dmabuf_imp_to_refs()
656 attach->dmabuf->size, gntdev_dmabuf->nr_pages); in dmabuf_imp_to_refs()
696 dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL); in dmabuf_imp_to_refs()
698 dma_buf_detach(dma_buf, attach); in dmabuf_imp_to_refs()
731 struct dma_buf_attachment *attach; in dmabuf_imp_release() local
743 attach = gntdev_dmabuf->u.imp.attach; in dmabuf_imp_release()
746 dma_buf_unmap_attachment(attach, gntdev_dmabuf->u.imp.sgt, in dmabuf_imp_release()
748 dma_buf = attach->dmabuf; in dmabuf_imp_release()
749 dma_buf_detach(attach->dmabuf, attach); in dmabuf_imp_release()