blob: af267c35d813cc7548f060ef5771d6cd4232b4c9 [file] [log] [blame]
Rob Clark6ad11bc2012-04-10 13:19:55 -05001/*
Rob Clark8bb0daf2013-02-11 12:43:09 -05002 * drivers/gpu/drm/omapdrm/omap_gem_dmabuf.c
Rob Clark6ad11bc2012-04-10 13:19:55 -05003 *
4 * Copyright (C) 2011 Texas Instruments
5 * Author: Rob Clark <rob.clark@linaro.org>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Rob Clark6ad11bc2012-04-10 13:19:55 -050020#include <linux/dma-buf.h>
21
Laurent Pinchart2d278f52015-03-05 21:31:37 +020022#include "omap_drv.h"
23
Laurent Pinchartb22e6692015-12-14 22:39:44 +020024/* -----------------------------------------------------------------------------
25 * DMABUF Export
26 */
27
Rob Clark6ad11bc2012-04-10 13:19:55 -050028static struct sg_table *omap_gem_map_dma_buf(
29 struct dma_buf_attachment *attachment,
30 enum dma_data_direction dir)
31{
32 struct drm_gem_object *obj = attachment->dmabuf->priv;
33 struct sg_table *sg;
34 dma_addr_t paddr;
35 int ret;
36
37 sg = kzalloc(sizeof(*sg), GFP_KERNEL);
38 if (!sg)
39 return ERR_PTR(-ENOMEM);
40
41 /* camera, etc, need physically contiguous.. but we need a
42 * better way to know this..
43 */
44 ret = omap_gem_get_paddr(obj, &paddr, true);
45 if (ret)
46 goto out;
47
48 ret = sg_alloc_table(sg, 1, GFP_KERNEL);
49 if (ret)
50 goto out;
51
52 sg_init_table(sg->sgl, 1);
53 sg_dma_len(sg->sgl) = obj->size;
54 sg_set_page(sg->sgl, pfn_to_page(PFN_DOWN(paddr)), obj->size, 0);
55 sg_dma_address(sg->sgl) = paddr;
56
Rob Clark8b6b5692012-05-17 02:37:25 -060057 /* this should be after _get_paddr() to ensure we have pages attached */
58 omap_gem_dma_sync(obj, dir);
59
Rob Clark6ad11bc2012-04-10 13:19:55 -050060 return sg;
Cong Ding32ac1a52013-01-15 20:46:50 +010061out:
62 kfree(sg);
63 return ERR_PTR(ret);
Rob Clark6ad11bc2012-04-10 13:19:55 -050064}
65
66static void omap_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
67 struct sg_table *sg, enum dma_data_direction dir)
68{
69 struct drm_gem_object *obj = attachment->dmabuf->priv;
70 omap_gem_put_paddr(obj);
71 sg_free_table(sg);
72 kfree(sg);
73}
74
75static void omap_gem_dmabuf_release(struct dma_buf *buffer)
76{
77 struct drm_gem_object *obj = buffer->priv;
78 /* release reference that was taken when dmabuf was exported
79 * in omap_gem_prime_set()..
80 */
81 drm_gem_object_unreference_unlocked(obj);
82}
83
84
85static int omap_gem_dmabuf_begin_cpu_access(struct dma_buf *buffer,
Tiago Vignatti831e9da2015-12-22 19:36:45 -020086 enum dma_data_direction dir)
Rob Clark6ad11bc2012-04-10 13:19:55 -050087{
88 struct drm_gem_object *obj = buffer->priv;
89 struct page **pages;
90 if (omap_gem_flags(obj) & OMAP_BO_TILED) {
91 /* TODO we would need to pin at least part of the buffer to
92 * get de-tiled view. For now just reject it.
93 */
94 return -ENOMEM;
95 }
96 /* make sure we have the pages: */
97 return omap_gem_get_pages(obj, &pages, true);
98}
99
Chris Wilson18b862d2016-03-18 20:02:39 +0000100static int omap_gem_dmabuf_end_cpu_access(struct dma_buf *buffer,
101 enum dma_data_direction dir)
Rob Clark6ad11bc2012-04-10 13:19:55 -0500102{
103 struct drm_gem_object *obj = buffer->priv;
104 omap_gem_put_pages(obj);
Chris Wilson18b862d2016-03-18 20:02:39 +0000105 return 0;
Rob Clark6ad11bc2012-04-10 13:19:55 -0500106}
107
108
109static void *omap_gem_dmabuf_kmap_atomic(struct dma_buf *buffer,
110 unsigned long page_num)
111{
112 struct drm_gem_object *obj = buffer->priv;
113 struct page **pages;
114 omap_gem_get_pages(obj, &pages, false);
Rob Clark8b6b5692012-05-17 02:37:25 -0600115 omap_gem_cpu_sync(obj, page_num);
Rob Clark6ad11bc2012-04-10 13:19:55 -0500116 return kmap_atomic(pages[page_num]);
117}
118
119static void omap_gem_dmabuf_kunmap_atomic(struct dma_buf *buffer,
120 unsigned long page_num, void *addr)
121{
122 kunmap_atomic(addr);
123}
124
125static void *omap_gem_dmabuf_kmap(struct dma_buf *buffer,
126 unsigned long page_num)
127{
128 struct drm_gem_object *obj = buffer->priv;
129 struct page **pages;
130 omap_gem_get_pages(obj, &pages, false);
Rob Clark8b6b5692012-05-17 02:37:25 -0600131 omap_gem_cpu_sync(obj, page_num);
Rob Clark6ad11bc2012-04-10 13:19:55 -0500132 return kmap(pages[page_num]);
133}
134
135static void omap_gem_dmabuf_kunmap(struct dma_buf *buffer,
136 unsigned long page_num, void *addr)
137{
138 struct drm_gem_object *obj = buffer->priv;
139 struct page **pages;
140 omap_gem_get_pages(obj, &pages, false);
141 kunmap(pages[page_num]);
142}
143
Rob Clark8b6b5692012-05-17 02:37:25 -0600144static int omap_gem_dmabuf_mmap(struct dma_buf *buffer,
145 struct vm_area_struct *vma)
146{
147 struct drm_gem_object *obj = buffer->priv;
148 int ret = 0;
149
150 if (WARN_ON(!obj->filp))
151 return -EINVAL;
152
Laurent Pinchartbda3fda2013-04-16 14:21:23 +0200153 ret = drm_gem_mmap_obj(obj, omap_gem_mmap_size(obj), vma);
154 if (ret < 0)
155 return ret;
Rob Clark8b6b5692012-05-17 02:37:25 -0600156
157 return omap_gem_mmap_obj(obj, vma);
158}
159
Tomi Valkeinen6717cd22013-04-10 10:44:00 +0300160static struct dma_buf_ops omap_dmabuf_ops = {
Laurent Pinchart222025e2015-01-11 00:02:07 +0200161 .map_dma_buf = omap_gem_map_dma_buf,
162 .unmap_dma_buf = omap_gem_unmap_dma_buf,
163 .release = omap_gem_dmabuf_release,
164 .begin_cpu_access = omap_gem_dmabuf_begin_cpu_access,
165 .end_cpu_access = omap_gem_dmabuf_end_cpu_access,
166 .kmap_atomic = omap_gem_dmabuf_kmap_atomic,
167 .kunmap_atomic = omap_gem_dmabuf_kunmap_atomic,
168 .kmap = omap_gem_dmabuf_kmap,
169 .kunmap = omap_gem_dmabuf_kunmap,
170 .mmap = omap_gem_dmabuf_mmap,
Rob Clark6ad11bc2012-04-10 13:19:55 -0500171};
172
YAMANE Toshiaki11d3d272012-11-14 19:40:14 +0900173struct dma_buf *omap_gem_prime_export(struct drm_device *dev,
Rob Clark6ad11bc2012-04-10 13:19:55 -0500174 struct drm_gem_object *obj, int flags)
175{
Sumit Semwald8fbe342015-01-23 12:53:43 +0530176 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
177
178 exp_info.ops = &omap_dmabuf_ops;
179 exp_info.size = obj->size;
180 exp_info.flags = flags;
181 exp_info.priv = obj;
182
183 return dma_buf_export(&exp_info);
Rob Clark6ad11bc2012-04-10 13:19:55 -0500184}
Rob Clark3080b832012-05-17 02:37:26 -0600185
Laurent Pinchartb22e6692015-12-14 22:39:44 +0200186/* -----------------------------------------------------------------------------
187 * DMABUF Import
188 */
Rob Clark3080b832012-05-17 02:37:26 -0600189
Laurent Pinchartb22e6692015-12-14 22:39:44 +0200190struct drm_gem_object *omap_gem_prime_import(struct drm_device *dev,
191 struct dma_buf *dma_buf)
192{
193 struct dma_buf_attachment *attach;
194 struct drm_gem_object *obj;
195 struct sg_table *sgt;
196 int ret;
197
198 if (dma_buf->ops == &omap_dmabuf_ops) {
199 obj = dma_buf->priv;
Rob Clark3080b832012-05-17 02:37:26 -0600200 if (obj->dev == dev) {
Seung-Woo Kimbe8a42a2012-09-27 15:30:06 +0900201 /*
202 * Importing dmabuf exported from out own gem increases
203 * refcount on gem itself instead of f_count of dmabuf.
204 */
Rob Clark3080b832012-05-17 02:37:26 -0600205 drm_gem_object_reference(obj);
206 return obj;
207 }
208 }
209
Laurent Pinchartb22e6692015-12-14 22:39:44 +0200210 attach = dma_buf_attach(dma_buf, dev->dev);
211 if (IS_ERR(attach))
212 return ERR_CAST(attach);
213
214 get_dma_buf(dma_buf);
215
216 sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
217 if (IS_ERR(sgt)) {
218 ret = PTR_ERR(sgt);
219 goto fail_detach;
220 }
221
222 obj = omap_gem_new_dmabuf(dev, dma_buf->size, sgt);
223 if (IS_ERR(obj)) {
224 ret = PTR_ERR(obj);
225 goto fail_unmap;
226 }
227
228 obj->import_attach = attach;
229
230 return obj;
231
232fail_unmap:
233 dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL);
234fail_detach:
235 dma_buf_detach(dma_buf, attach);
236 dma_buf_put(dma_buf);
237
238 return ERR_PTR(ret);
Rob Clark3080b832012-05-17 02:37:26 -0600239}