2 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/dma-buf.h>
22 /* -----------------------------------------------------------------------------
26 static struct sg_table *omap_gem_map_dma_buf(
27 struct dma_buf_attachment *attachment,
28 enum dma_data_direction dir)
30 struct drm_gem_object *obj = attachment->dmabuf->priv;
35 sg = kzalloc(sizeof(*sg), GFP_KERNEL);
37 return ERR_PTR(-ENOMEM);
39 /* camera, etc, need physically contiguous.. but we need a
40 * better way to know this..
42 ret = omap_gem_pin(obj, &dma_addr);
46 ret = sg_alloc_table(sg, 1, GFP_KERNEL);
50 sg_init_table(sg->sgl, 1);
51 sg_dma_len(sg->sgl) = obj->size;
52 sg_set_page(sg->sgl, pfn_to_page(PFN_DOWN(dma_addr)), obj->size, 0);
53 sg_dma_address(sg->sgl) = dma_addr;
55 /* this must be after omap_gem_pin() to ensure we have pages attached */
56 omap_gem_dma_sync_buffer(obj, dir);
64 static void omap_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
65 struct sg_table *sg, enum dma_data_direction dir)
67 struct drm_gem_object *obj = attachment->dmabuf->priv;
73 static int omap_gem_dmabuf_begin_cpu_access(struct dma_buf *buffer,
74 enum dma_data_direction dir)
76 struct drm_gem_object *obj = buffer->priv;
78 if (omap_gem_flags(obj) & OMAP_BO_TILED) {
79 /* TODO we would need to pin at least part of the buffer to
80 * get de-tiled view. For now just reject it.
84 /* make sure we have the pages: */
85 return omap_gem_get_pages(obj, &pages, true);
88 static int omap_gem_dmabuf_end_cpu_access(struct dma_buf *buffer,
89 enum dma_data_direction dir)
91 struct drm_gem_object *obj = buffer->priv;
92 omap_gem_put_pages(obj);
96 static void *omap_gem_dmabuf_kmap(struct dma_buf *buffer,
97 unsigned long page_num)
99 struct drm_gem_object *obj = buffer->priv;
101 omap_gem_get_pages(obj, &pages, false);
102 omap_gem_cpu_sync_page(obj, page_num);
103 return kmap(pages[page_num]);
106 static void omap_gem_dmabuf_kunmap(struct dma_buf *buffer,
107 unsigned long page_num, void *addr)
109 struct drm_gem_object *obj = buffer->priv;
111 omap_gem_get_pages(obj, &pages, false);
112 kunmap(pages[page_num]);
115 static int omap_gem_dmabuf_mmap(struct dma_buf *buffer,
116 struct vm_area_struct *vma)
118 struct drm_gem_object *obj = buffer->priv;
121 ret = drm_gem_mmap_obj(obj, omap_gem_mmap_size(obj), vma);
125 return omap_gem_mmap_obj(obj, vma);
128 static const struct dma_buf_ops omap_dmabuf_ops = {
129 .map_dma_buf = omap_gem_map_dma_buf,
130 .unmap_dma_buf = omap_gem_unmap_dma_buf,
131 .release = drm_gem_dmabuf_release,
132 .begin_cpu_access = omap_gem_dmabuf_begin_cpu_access,
133 .end_cpu_access = omap_gem_dmabuf_end_cpu_access,
134 .map = omap_gem_dmabuf_kmap,
135 .unmap = omap_gem_dmabuf_kunmap,
136 .mmap = omap_gem_dmabuf_mmap,
139 struct dma_buf *omap_gem_prime_export(struct drm_device *dev,
140 struct drm_gem_object *obj, int flags)
142 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
144 exp_info.ops = &omap_dmabuf_ops;
145 exp_info.size = obj->size;
146 exp_info.flags = flags;
149 return drm_gem_dmabuf_export(dev, &exp_info);
152 /* -----------------------------------------------------------------------------
156 struct drm_gem_object *omap_gem_prime_import(struct drm_device *dev,
157 struct dma_buf *dma_buf)
159 struct dma_buf_attachment *attach;
160 struct drm_gem_object *obj;
161 struct sg_table *sgt;
164 if (dma_buf->ops == &omap_dmabuf_ops) {
166 if (obj->dev == dev) {
168 * Importing dmabuf exported from out own gem increases
169 * refcount on gem itself instead of f_count of dmabuf.
171 drm_gem_object_get(obj);
176 attach = dma_buf_attach(dma_buf, dev->dev);
178 return ERR_CAST(attach);
180 get_dma_buf(dma_buf);
182 sgt = dma_buf_map_attachment(attach, DMA_TO_DEVICE);
188 obj = omap_gem_new_dmabuf(dev, dma_buf->size, sgt);
194 obj->import_attach = attach;
199 dma_buf_unmap_attachment(attach, sgt, DMA_TO_DEVICE);
201 dma_buf_detach(dma_buf, attach);
202 dma_buf_put(dma_buf);