blob: 9bb533e0d76234cdc14ec6d9da31a310114080a5 [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;
164 int ret;
165
166 ret = i915_mutex_lock_interruptible(dev);
167 if (ret)
168 return;
169
Chris Wilsona5570172012-09-04 21:02:54 +0100170 if (--obj->vmapping_count == 0) {
Dave Airlie9a70cc22012-05-22 13:09:21 +0100171 vunmap(obj->dma_buf_vmapping);
172 obj->dma_buf_vmapping = NULL;
Chris Wilsona5570172012-09-04 21:02:54 +0100173
174 i915_gem_object_unpin_pages(obj);
Dave Airlie9a70cc22012-05-22 13:09:21 +0100175 }
176 mutex_unlock(&dev->struct_mutex);
177}
178
Daniel Vetter1286ff72012-05-10 15:25:09 +0200179static void *i915_gem_dmabuf_kmap_atomic(struct dma_buf *dma_buf, unsigned long page_num)
180{
181 return NULL;
182}
183
184static void i915_gem_dmabuf_kunmap_atomic(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
185{
186
187}
188static void *i915_gem_dmabuf_kmap(struct dma_buf *dma_buf, unsigned long page_num)
189{
190 return NULL;
191}
192
193static void i915_gem_dmabuf_kunmap(struct dma_buf *dma_buf, unsigned long page_num, void *addr)
194{
195
196}
197
Dave Airlie2dad9d42012-05-29 15:11:22 +0100198static int i915_gem_dmabuf_mmap(struct dma_buf *dma_buf, struct vm_area_struct *vma)
199{
200 return -EINVAL;
201}
202
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000203static int i915_gem_begin_cpu_access(struct dma_buf *dma_buf, size_t start, size_t length, enum dma_data_direction direction)
204{
Daniel Vetter608806a2013-08-08 09:10:38 +0200205 struct drm_i915_gem_object *obj = dma_buf_to_obj(dma_buf);
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000206 struct drm_device *dev = obj->base.dev;
207 int ret;
208 bool write = (direction == DMA_BIDIRECTIONAL || direction == DMA_TO_DEVICE);
209
210 ret = i915_mutex_lock_interruptible(dev);
211 if (ret)
212 return ret;
213
214 ret = i915_gem_object_set_to_cpu_domain(obj, write);
215 mutex_unlock(&dev->struct_mutex);
216 return ret;
217}
218
Dave Airlie6a101cb2012-05-23 14:09:32 +0100219static const struct dma_buf_ops i915_dmabuf_ops = {
Daniel Vetter1286ff72012-05-10 15:25:09 +0200220 .map_dma_buf = i915_gem_map_dma_buf,
221 .unmap_dma_buf = i915_gem_unmap_dma_buf,
Daniel Vetterc1d67982013-08-15 00:02:30 +0200222 .release = drm_gem_dmabuf_release,
Daniel Vetter1286ff72012-05-10 15:25:09 +0200223 .kmap = i915_gem_dmabuf_kmap,
224 .kmap_atomic = i915_gem_dmabuf_kmap_atomic,
225 .kunmap = i915_gem_dmabuf_kunmap,
226 .kunmap_atomic = i915_gem_dmabuf_kunmap_atomic,
Dave Airlie2dad9d42012-05-29 15:11:22 +0100227 .mmap = i915_gem_dmabuf_mmap,
Dave Airlie9a70cc22012-05-22 13:09:21 +0100228 .vmap = i915_gem_dmabuf_vmap,
229 .vunmap = i915_gem_dmabuf_vunmap,
Dave Airlieec6f1bb2012-08-16 10:15:34 +1000230 .begin_cpu_access = i915_gem_begin_cpu_access,
Daniel Vetter1286ff72012-05-10 15:25:09 +0200231};
232
233struct dma_buf *i915_gem_prime_export(struct drm_device *dev,
Chris Wilson9da3da62012-06-01 15:20:22 +0100234 struct drm_gem_object *gem_obj, int flags)
Daniel Vetter1286ff72012-05-10 15:25:09 +0200235{
Daniel Vetter608806a2013-08-08 09:10:38 +0200236 return dma_buf_export(gem_obj, &i915_dmabuf_ops, gem_obj->size, flags);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200237}
238
Chris Wilson2f745ad2012-09-04 21:02:58 +0100239static int i915_gem_object_get_pages_dmabuf(struct drm_i915_gem_object *obj)
240{
241 struct sg_table *sg;
242
243 sg = dma_buf_map_attachment(obj->base.import_attach, DMA_BIDIRECTIONAL);
244 if (IS_ERR(sg))
245 return PTR_ERR(sg);
246
247 obj->pages = sg;
248 obj->has_dma_mapping = true;
249 return 0;
250}
251
252static void i915_gem_object_put_pages_dmabuf(struct drm_i915_gem_object *obj)
253{
254 dma_buf_unmap_attachment(obj->base.import_attach,
255 obj->pages, DMA_BIDIRECTIONAL);
256 obj->has_dma_mapping = false;
257}
258
259static const struct drm_i915_gem_object_ops i915_gem_object_dmabuf_ops = {
260 .get_pages = i915_gem_object_get_pages_dmabuf,
261 .put_pages = i915_gem_object_put_pages_dmabuf,
262};
263
Daniel Vetter1286ff72012-05-10 15:25:09 +0200264struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
Chris Wilson9da3da62012-06-01 15:20:22 +0100265 struct dma_buf *dma_buf)
Daniel Vetter1286ff72012-05-10 15:25:09 +0200266{
267 struct dma_buf_attachment *attach;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200268 struct drm_i915_gem_object *obj;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200269 int ret;
270
271 /* is this one of own objects? */
272 if (dma_buf->ops == &i915_dmabuf_ops) {
Daniel Vetter608806a2013-08-08 09:10:38 +0200273 obj = dma_buf_to_obj(dma_buf);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200274 /* is it from our device? */
275 if (obj->base.dev == dev) {
Seung-Woo Kimbe8a42a2012-09-27 15:30:06 +0900276 /*
277 * Importing dmabuf exported from out own gem increases
278 * refcount on gem itself instead of f_count of dmabuf.
279 */
Daniel Vetter1286ff72012-05-10 15:25:09 +0200280 drm_gem_object_reference(&obj->base);
281 return &obj->base;
282 }
283 }
284
285 /* need to attach */
286 attach = dma_buf_attach(dma_buf, dev->dev);
287 if (IS_ERR(attach))
288 return ERR_CAST(attach);
289
Imre Deak011c22822013-04-19 11:11:56 +1000290 get_dma_buf(dma_buf);
291
Chris Wilson42dcedd2012-11-15 11:32:30 +0000292 obj = i915_gem_object_alloc(dev);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200293 if (obj == NULL) {
294 ret = -ENOMEM;
Chris Wilson2f745ad2012-09-04 21:02:58 +0100295 goto fail_detach;
Daniel Vetter1286ff72012-05-10 15:25:09 +0200296 }
297
David Herrmann89c82332013-07-11 11:56:32 +0200298 drm_gem_private_object_init(dev, &obj->base, dma_buf->size);
Chris Wilson2f745ad2012-09-04 21:02:58 +0100299 i915_gem_object_init(obj, &i915_gem_object_dmabuf_ops);
Daniel Vetter1286ff72012-05-10 15:25:09 +0200300 obj->base.import_attach = attach;
301
302 return &obj->base;
303
Daniel Vetter1286ff72012-05-10 15:25:09 +0200304fail_detach:
305 dma_buf_detach(dma_buf, attach);
Imre Deak011c22822013-04-19 11:11:56 +1000306 dma_buf_put(dma_buf);
307
Daniel Vetter1286ff72012-05-10 15:25:09 +0200308 return ERR_PTR(ret);
309}