blob: 82a1f4b57778e29a105316b1b74b7be654be2550 [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 Wilsonce7ec7682014-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{
196 return -EINVAL;
197}
198
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000199static int i915_gem_begin_cpu_access(struct dma_buf *dma_buf, size_t start, size_t length, enum dma_data_direction direction)
200{
Daniel Vetter608806a2013-08-08 09:10:38 +0200201 struct drm_i915_gem_object *obj = dma_buf_to_obj(dma_buf);
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000202 struct drm_device *dev = obj->base.dev;
203 int ret;
204 bool write = (direction == DMA_BIDIRECTIONAL || direction == DMA_TO_DEVICE);
205
206 ret = i915_mutex_lock_interruptible(dev);
207 if (ret)
208 return ret;
209
210 ret = i915_gem_object_set_to_cpu_domain(obj, write);
211 mutex_unlock(&dev->struct_mutex);
212 return ret;
213}
214
Dave Airlie6a101cb2012-05-23 14:09:32 +0100215static const struct dma_buf_ops i915_dmabuf_ops = {
Daniel Vetter1286ff72012-05-10 15:25:09 +0200216 .map_dma_buf = i915_gem_map_dma_buf,
217 .unmap_dma_buf = i915_gem_unmap_dma_buf,
Daniel Vetterc1d67982013-08-15 00:02:30 +0200218 .release = drm_gem_dmabuf_release,
Daniel Vetter1286ff72012-05-10 15:25:09 +0200219 .kmap = i915_gem_dmabuf_kmap,
220 .kmap_atomic = i915_gem_dmabuf_kmap_atomic,
221 .kunmap = i915_gem_dmabuf_kunmap,
222 .kunmap_atomic = i915_gem_dmabuf_kunmap_atomic,
Dave Airlie2dad9d42012-05-29 15:11:22 +0100223 .mmap = i915_gem_dmabuf_mmap,
Dave Airlie9a70cc22012-05-22 13:09:21 +0100224 .vmap = i915_gem_dmabuf_vmap,
225 .vunmap = i915_gem_dmabuf_vunmap,
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000226 .begin_cpu_access = i915_gem_begin_cpu_access,
Daniel Vetter1286ff72012-05-10 15:25:09 +0200227};
228
229struct dma_buf *i915_gem_prime_export(struct drm_device *dev,
Chris Wilson9da3da62012-06-01 15:20:22 +0100230 struct drm_gem_object *gem_obj, int flags)
Daniel Vetter1286ff72012-05-10 15:25:09 +0200231{
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100232 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
233
234 if (obj->ops->dmabuf_export) {
235 int ret = obj->ops->dmabuf_export(obj);
236 if (ret)
237 return ERR_PTR(ret);
238 }
239
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200240 return dma_buf_export(gem_obj, &i915_dmabuf_ops, gem_obj->size, flags,
241 NULL);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200242}
243
Chris Wilson2f745ad2012-09-04 21:02:58 +0100244static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
245{
246 struct sg_table *sg;
247
248 sg = dma_buf_map_attachment(obj->base.import_attach, DMA_BIDIRECTIONAL);
249 if (IS_ERR(sg))
250 return PTR_ERR(sg);
251
252 obj->pages = sg;
253 obj->has_dma_mapping = true;
254 return 0;
255}
256
257static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj)
258{
259 dma_buf_unmap_attachment(obj->base.import_attach,
260 obj->pages, DMA_BIDIRECTIONAL);
261 obj->has_dma_mapping = false;
262}
263
264static const struct drm_i915_gem_object_ops i915_gem_object_dmabuf_ops = {
265 .get_pages = i915_gem_object_get_pages_dmabuf,
266 .put_pages = i915_gem_object_put_pages_dmabuf,
267};
268
Daniel Vetter1286ff72012-05-10 15:25:09 +0200269struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
Chris Wilson9da3da62012-06-01 15:20:22 +0100270 struct dma_buf *dma_buf)
Daniel Vetter1286ff72012-05-10 15:25:09 +0200271{
272 struct dma_buf_attachment *attach;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200273 struct drm_i915_gem_object *obj;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200274 int ret;
275
276 /* is this one of own objects? */
277 if (dma_buf->ops == &i915_dmabuf_ops) {
Daniel Vetter608806a2013-08-08 09:10:38 +0200278 obj = dma_buf_to_obj(dma_buf);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200279 /* is it from our device? */
280 if (obj->base.dev == dev) {
Seung-Woo Kimbe8a42a2012-09-27 15:30:06 +0900281 /*
282 * Importing dmabuf exported from out own gem increases
283 * refcount on gem itself instead of f_count of dmabuf.
284 */
Daniel Vetter1286ff72012-05-10 15:25:09 +0200285 drm_gem_object_reference(&obj->base);
286 return &obj->base;
287 }
288 }
289
290 /* need to attach */
291 attach = dma_buf_attach(dma_buf, dev->dev);
292 if (IS_ERR(attach))
293 return ERR_CAST(attach);
294
Imre Deak011c2282013-04-19 11:11:56 +1000295 get_dma_buf(dma_buf);
296
Chris Wilson42dcedd2012-11-15 11:32:30 +0000297 obj = i915_gem_object_alloc(dev);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200298 if (obj == NULL) {
299 ret = -ENOMEM;
Chris Wilson2f745ad2012-09-04 21:02:58 +0100300 goto fail_detach;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200301 }
302
David Herrmann89c82332013-07-11 11:56:32 +0200303 drm_gem_private_object_init(dev, &obj->base, dma_buf->size);
Chris Wilson2f745ad2012-09-04 21:02:58 +0100304 i915_gem_object_init(obj, &i915_gem_object_dmabuf_ops);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200305 obj->base.import_attach = attach;
306
307 return &obj->base;
308
Daniel Vetter1286ff72012-05-10 15:25:09 +0200309fail_detach:
310 dma_buf_detach(dma_buf, attach);
Imre Deak011c2282013-04-19 11:11:56 +1000311 dma_buf_put(dma_buf);
312
Daniel Vetter1286ff72012-05-10 15:25:09 +0200313 return ERR_PTR(ret);
314}