blob: 1f3eef6fb345cdb97ccd31b8cefe750ab65b9c2b [file] [log] [blame]
Daniel Vetter1286ff72012-05-10 15:25:09 +02001/*
2 * Copyright 2012 Red Hat Inc
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Dave Airlie <airlied@redhat.com>
25 */
David Howells760285e2012-10-02 18:01:07 +010026#include <drm/drmP.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020027#include "i915_drv.h"
28#include <linux/dma-buf.h>
29
Daniel Vetter608806a2013-08-08 09:10:38 +020030static struct drm_i915_gem_object *dma_buf_to_obj(struct dma_buf *buf)
31{
32 return to_intel_bo(buf->priv);
33}
34
Dave Airlie6a101cb2012-05-23 14:09:32 +010035static struct sg_table *i915_gem_map_dma_buf(struct dma_buf_attachment *attachment,
Chris Wilson9da3da62012-06-01 15:20:22 +010036 enum dma_data_direction dir)
Daniel Vetter1286ff72012-05-10 15:25:09 +020037{
Daniel Vetter608806a2013-08-08 09:10:38 +020038 struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
Chris Wilson9da3da62012-06-01 15:20:22 +010039 struct sg_table *st;
40 struct scatterlist *src, *dst;
41 int ret, i;
Daniel Vetter1286ff72012-05-10 15:25:09 +020042
Chris Wilson9da3da62012-06-01 15:20:22 +010043 ret = i915_mutex_lock_interruptible(obj->base.dev);
Daniel Vetter1286ff72012-05-10 15:25:09 +020044 if (ret)
Chris Wilson5cfacde2013-08-26 19:50:55 -030045 goto err;
Daniel Vetter1286ff72012-05-10 15:25:09 +020046
Chris Wilson37e680a2012-06-07 15:38:42 +010047 ret = i915_gem_object_get_pages(obj);
Chris Wilson5cfacde2013-08-26 19:50:55 -030048 if (ret)
49 goto err_unlock;
50
51 i915_gem_object_pin_pages(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +020052
Chris Wilson9da3da62012-06-01 15:20:22 +010053 /* Copy sg so that we make an independent mapping */
54 st = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
55 if (st == NULL) {
Chris Wilson5cfacde2013-08-26 19:50:55 -030056 ret = -ENOMEM;
57 goto err_unpin;
Chris Wilson9da3da62012-06-01 15:20:22 +010058 }
59
60 ret = sg_alloc_table(st, obj->pages->nents, GFP_KERNEL);
Chris Wilson5cfacde2013-08-26 19:50:55 -030061 if (ret)
62 goto err_free;
Chris Wilson9da3da62012-06-01 15:20:22 +010063
64 src = obj->pages->sgl;
65 dst = st->sgl;
66 for (i = 0; i < obj->pages->nents; i++) {
Imre Deak67d5a502013-02-18 19:28:02 +020067 sg_set_page(dst, sg_page(src), src->length, 0);
Chris Wilson9da3da62012-06-01 15:20:22 +010068 dst = sg_next(dst);
69 src = sg_next(src);
70 }
71
72 if (!dma_map_sg(attachment->dev, st->sgl, st->nents, dir)) {
Chris Wilson5cfacde2013-08-26 19:50:55 -030073 ret =-ENOMEM;
74 goto err_free_sg;
Chris Wilson9da3da62012-06-01 15:20:22 +010075 }
76
Chris Wilson9da3da62012-06-01 15:20:22 +010077 mutex_unlock(&obj->base.dev->struct_mutex);
78 return st;
Chris Wilson5cfacde2013-08-26 19:50:55 -030079
80err_free_sg:
81 sg_free_table(st);
82err_free:
83 kfree(st);
84err_unpin:
85 i915_gem_object_unpin_pages(obj);
86err_unlock:
87 mutex_unlock(&obj->base.dev->struct_mutex);
88err:
89 return ERR_PTR(ret);
Daniel Vetter1286ff72012-05-10 15:25:09 +020090}
91
Dave Airlie6a101cb2012-05-23 14:09:32 +010092static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
Chris Wilson2f745ad2012-09-04 21:02:58 +010093 struct sg_table *sg,
94 enum dma_data_direction dir)
Daniel Vetter1286ff72012-05-10 15:25:09 +020095{
Daniel Vetter608806a2013-08-08 09:10:38 +020096 struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
Daniel Vetterf2142662013-08-08 09:10:37 +020097
98 mutex_lock(&obj->base.dev->struct_mutex);
99
Daniel Vetter1286ff72012-05-10 15:25:09 +0200100 dma_unmap_sg(attachment->dev, sg->sgl, sg->nents, dir);
101 sg_free_table(sg);
102 kfree(sg);
Daniel Vetterf2142662013-08-08 09:10:37 +0200103
104 i915_gem_object_unpin_pages(obj);
105
106 mutex_unlock(&obj->base.dev->struct_mutex);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200107}
108
Dave Airlie9a70cc22012-05-22 13:09:21 +0100109static void *i915_gem_dmabuf_vmap(struct dma_buf *dma_buf)
110{
Daniel Vetter608806a2013-08-08 09:10:38 +0200111 struct drm_i915_gem_object *obj = dma_buf_to_obj(dma_buf);
Dave Airlie9a70cc22012-05-22 13:09:21 +0100112 struct drm_device *dev = obj->base.dev;
Imre Deak67d5a502013-02-18 19:28:02 +0200113 struct sg_page_iter sg_iter;
Chris Wilson9da3da62012-06-01 15:20:22 +0100114 struct page **pages;
115 int ret, i;
Dave Airlie9a70cc22012-05-22 13:09:21 +0100116
117 ret = i915_mutex_lock_interruptible(dev);
118 if (ret)
119 return ERR_PTR(ret);
120
121 if (obj->dma_buf_vmapping) {
122 obj->vmapping_count++;
123 goto out_unlock;
124 }
125
Chris Wilson37e680a2012-06-07 15:38:42 +0100126 ret = i915_gem_object_get_pages(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +0100127 if (ret)
Chris Wilson993fc6e2013-11-29 11:44:59 +0000128 goto err;
129
130 i915_gem_object_pin_pages(obj);
Dave Airlie9a70cc22012-05-22 13:09:21 +0100131
Chris Wilson9da3da62012-06-01 15:20:22 +0100132 ret = -ENOMEM;
133
Imre Deak67d5a502013-02-18 19:28:02 +0200134 pages = drm_malloc_ab(obj->base.size >> PAGE_SHIFT, sizeof(*pages));
Chris Wilson9da3da62012-06-01 15:20:22 +0100135 if (pages == NULL)
Chris Wilson993fc6e2013-11-29 11:44:59 +0000136 goto err_unpin;
Chris Wilson9da3da62012-06-01 15:20:22 +0100137
Imre Deak67d5a502013-02-18 19:28:02 +0200138 i = 0;
Dave Airlieb11b88e2013-05-01 14:23:41 +1000139 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +0200140 pages[i++] = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100141
Imre Deak67d5a502013-02-18 19:28:02 +0200142 obj->dma_buf_vmapping = vmap(pages, i, 0, PAGE_KERNEL);
Chris Wilson9da3da62012-06-01 15:20:22 +0100143 drm_free_large(pages);
144
145 if (!obj->dma_buf_vmapping)
Chris Wilson993fc6e2013-11-29 11:44:59 +0000146 goto err_unpin;
Dave Airlie9a70cc22012-05-22 13:09:21 +0100147
148 obj->vmapping_count = 1;
149out_unlock:
150 mutex_unlock(&dev->struct_mutex);
151 return obj->dma_buf_vmapping;
Chris Wilson9da3da62012-06-01 15:20:22 +0100152
Chris Wilson993fc6e2013-11-29 11:44:59 +0000153err_unpin:
154 i915_gem_object_unpin_pages(obj);
155err:
Chris Wilson9da3da62012-06-01 15:20:22 +0100156 mutex_unlock(&dev->struct_mutex);
157 return ERR_PTR(ret);
Dave Airlie9a70cc22012-05-22 13:09:21 +0100158}
159
160static void i915_gem_dmabuf_vunmap(struct dma_buf *dma_buf, void *vaddr)
161{
Daniel Vetter608806a2013-08-08 09:10:38 +0200162 struct drm_i915_gem_object *obj = dma_buf_to_obj(dma_buf);
Dave Airlie9a70cc22012-05-22 13:09:21 +0100163 struct drm_device *dev = obj->base.dev;
Dave Airlie9a70cc22012-05-22 13:09:21 +0100164
Chris Wilsonce7ec762014-04-07 17:01:47 -0300165 mutex_lock(&dev->struct_mutex);
Chris Wilsona5570172012-09-04 21:02:54 +0100166 if (--obj->vmapping_count == 0) {
Dave Airlie9a70cc22012-05-22 13:09:21 +0100167 vunmap(obj->dma_buf_vmapping);
168 obj->dma_buf_vmapping = NULL;
Chris Wilsona5570172012-09-04 21:02:54 +0100169
170 i915_gem_object_unpin_pages(obj);
Dave Airlie9a70cc22012-05-22 13:09:21 +0100171 }
172 mutex_unlock(&dev->struct_mutex);
173}
174
Daniel Vetter1286ff72012-05-10 15:25:09 +0200175static void *i915_gem_dmabuf_kmap_atomic(struct dma_buf *dma_buf, unsigned long page_num)
176{
177 return NULL;
178}
179
180static void i915_gem_dmabuf_kunmap_atomic(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
181{
182
183}
184static void *i915_gem_dmabuf_kmap(struct dma_buf *dma_buf, unsigned long page_num)
185{
186 return NULL;
187}
188
189static void i915_gem_dmabuf_kunmap(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
190{
191
192}
193
Dave Airlie2dad9d42012-05-29 15:11:22 +0100194static int i915_gem_dmabuf_mmap(struct dma_buf *dma_buf, struct vm_area_struct *vma)
195{
Tiago Vignatti2dbf0d92015-12-22 19:36:48 -0200196 struct drm_i915_gem_object *obj = dma_buf_to_obj(dma_buf);
197 int ret;
198
199 if (obj->base.size < vma->vm_end - vma->vm_start)
200 return -EINVAL;
201
202 if (!obj->base.filp)
203 return -ENODEV;
204
205 ret = obj->base.filp->f_op->mmap(obj->base.filp, vma);
206 if (ret)
207 return ret;
208
209 fput(vma->vm_file);
210 vma->vm_file = get_file(obj->base.filp);
211
212 return 0;
Dave Airlie2dad9d42012-05-29 15:11:22 +0100213}
214
Tiago Vignatti831e9da2015-12-22 19:36:45 -0200215static int i915_gem_begin_cpu_access(struct dma_buf *dma_buf, enum dma_data_direction direction)
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000216{
Daniel Vetter608806a2013-08-08 09:10:38 +0200217 struct drm_i915_gem_object *obj = dma_buf_to_obj(dma_buf);
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000218 struct drm_device *dev = obj->base.dev;
219 int ret;
220 bool write = (direction == DMA_BIDIRECTIONAL || direction == DMA_TO_DEVICE);
221
222 ret = i915_mutex_lock_interruptible(dev);
223 if (ret)
224 return ret;
225
226 ret = i915_gem_object_set_to_cpu_domain(obj, write);
227 mutex_unlock(&dev->struct_mutex);
228 return ret;
229}
230
Tiago Vignatti346400c2015-12-22 19:36:47 -0200231static void i915_gem_end_cpu_access(struct dma_buf *dma_buf, enum dma_data_direction direction)
232{
233 struct drm_i915_gem_object *obj = dma_buf_to_obj(dma_buf);
234 struct drm_device *dev = obj->base.dev;
235 struct drm_i915_private *dev_priv = to_i915(dev);
236 bool was_interruptible;
237 int ret;
238
239 mutex_lock(&dev->struct_mutex);
240 was_interruptible = dev_priv->mm.interruptible;
241 dev_priv->mm.interruptible = false;
242
243 ret = i915_gem_object_set_to_gtt_domain(obj, false);
244
245 dev_priv->mm.interruptible = was_interruptible;
246 mutex_unlock(&dev->struct_mutex);
247
248 if (unlikely(ret))
249 DRM_ERROR("unable to flush buffer following CPU access; rendering may be corrupt\n");
250}
251
Dave Airlie6a101cb2012-05-23 14:09:32 +0100252static const struct dma_buf_ops i915_dmabuf_ops = {
Daniel Vetter1286ff72012-05-10 15:25:09 +0200253 .map_dma_buf = i915_gem_map_dma_buf,
254 .unmap_dma_buf = i915_gem_unmap_dma_buf,
Daniel Vetterc1d67982013-08-15 00:02:30 +0200255 .release = drm_gem_dmabuf_release,
Daniel Vetter1286ff72012-05-10 15:25:09 +0200256 .kmap = i915_gem_dmabuf_kmap,
257 .kmap_atomic = i915_gem_dmabuf_kmap_atomic,
258 .kunmap = i915_gem_dmabuf_kunmap,
259 .kunmap_atomic = i915_gem_dmabuf_kunmap_atomic,
Dave Airlie2dad9d42012-05-29 15:11:22 +0100260 .mmap = i915_gem_dmabuf_mmap,
Dave Airlie9a70cc22012-05-22 13:09:21 +0100261 .vmap = i915_gem_dmabuf_vmap,
262 .vunmap = i915_gem_dmabuf_vunmap,
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000263 .begin_cpu_access = i915_gem_begin_cpu_access,
Tiago Vignatti346400c2015-12-22 19:36:47 -0200264 .end_cpu_access = i915_gem_end_cpu_access,
Daniel Vetter1286ff72012-05-10 15:25:09 +0200265};
266
267struct dma_buf *i915_gem_prime_export(struct drm_device *dev,
Chris Wilson9da3da62012-06-01 15:20:22 +0100268 struct drm_gem_object *gem_obj, int flags)
Daniel Vetter1286ff72012-05-10 15:25:09 +0200269{
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100270 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Sumit Semwald8fbe342015-01-23 12:53:43 +0530271 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
272
273 exp_info.ops = &i915_dmabuf_ops;
274 exp_info.size = gem_obj->size;
275 exp_info.flags = flags;
276 exp_info.priv = gem_obj;
277
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100278
279 if (obj->ops->dmabuf_export) {
280 int ret = obj->ops->dmabuf_export(obj);
281 if (ret)
282 return ERR_PTR(ret);
283 }
284
Sumit Semwald8fbe342015-01-23 12:53:43 +0530285 return dma_buf_export(&exp_info);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200286}
287
Chris Wilson2f745ad2012-09-04 21:02:58 +0100288static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
289{
290 struct sg_table *sg;
291
292 sg = dma_buf_map_attachment(obj->base.import_attach, DMA_BIDIRECTIONAL);
293 if (IS_ERR(sg))
294 return PTR_ERR(sg);
295
296 obj->pages = sg;
Chris Wilson2f745ad2012-09-04 21:02:58 +0100297 return 0;
298}
299
300static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj)
301{
302 dma_buf_unmap_attachment(obj->base.import_attach,
303 obj->pages, DMA_BIDIRECTIONAL);
Chris Wilson2f745ad2012-09-04 21:02:58 +0100304}
305
306static const struct drm_i915_gem_object_ops i915_gem_object_dmabuf_ops = {
307 .get_pages = i915_gem_object_get_pages_dmabuf,
308 .put_pages = i915_gem_object_put_pages_dmabuf,
309};
310
Daniel Vetter1286ff72012-05-10 15:25:09 +0200311struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
Chris Wilson9da3da62012-06-01 15:20:22 +0100312 struct dma_buf *dma_buf)
Daniel Vetter1286ff72012-05-10 15:25:09 +0200313{
314 struct dma_buf_attachment *attach;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200315 struct drm_i915_gem_object *obj;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200316 int ret;
317
318 /* is this one of own objects? */
319 if (dma_buf->ops == &i915_dmabuf_ops) {
Daniel Vetter608806a2013-08-08 09:10:38 +0200320 obj = dma_buf_to_obj(dma_buf);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200321 /* is it from our device? */
322 if (obj->base.dev == dev) {
Seung-Woo Kimbe8a42a2012-09-27 15:30:06 +0900323 /*
324 * Importing dmabuf exported from out own gem increases
325 * refcount on gem itself instead of f_count of dmabuf.
326 */
Daniel Vetter1286ff72012-05-10 15:25:09 +0200327 drm_gem_object_reference(&obj->base);
328 return &obj->base;
329 }
330 }
331
332 /* need to attach */
333 attach = dma_buf_attach(dma_buf, dev->dev);
334 if (IS_ERR(attach))
335 return ERR_CAST(attach);
336
Imre Deak011c22822013-04-19 11:11:56 +1000337 get_dma_buf(dma_buf);
338
Chris Wilson42dcedd2012-11-15 11:32:30 +0000339 obj = i915_gem_object_alloc(dev);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200340 if (obj == NULL) {
341 ret = -ENOMEM;
Chris Wilson2f745ad2012-09-04 21:02:58 +0100342 goto fail_detach;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200343 }
344
David Herrmann89c82332013-07-11 11:56:32 +0200345 drm_gem_private_object_init(dev, &obj->base, dma_buf->size);
Chris Wilson2f745ad2012-09-04 21:02:58 +0100346 i915_gem_object_init(obj, &i915_gem_object_dmabuf_ops);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200347 obj->base.import_attach = attach;
348
349 return &obj->base;
350
Daniel Vetter1286ff72012-05-10 15:25:09 +0200351fail_detach:
352 dma_buf_detach(dma_buf, attach);
Imre Deak011c22822013-04-19 11:11:56 +1000353 dma_buf_put(dma_buf);
354
Daniel Vetter1286ff72012-05-10 15:25:09 +0200355 return ERR_PTR(ret);
356}