blob: a35f206bdc341a2c10ebe53875afbe419d7ec4f0 [file] [log] [blame]
Dave Airlie32488772011-11-25 15:21:02 +00001/*
2 * Copyright © 2012 Red Hat
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 DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Dave Airlie <airlied@redhat.com>
25 * Rob Clark <rob.clark@linaro.org>
26 *
27 */
28
29#include <linux/export.h>
30#include <linux/dma-buf.h>
David Howells760285e2012-10-02 18:01:07 +010031#include <drm/drmP.h>
Dave Airlie32488772011-11-25 15:21:02 +000032
33/*
34 * DMA-BUF/GEM Object references and lifetime overview:
35 *
36 * On the export the dma_buf holds a reference to the exporting GEM
37 * object. It takes this reference in handle_to_fd_ioctl, when it
38 * first calls .prime_export and stores the exporting GEM object in
39 * the dma_buf priv. This reference is released when the dma_buf
40 * object goes away in the driver .release function.
41 *
42 * On the import the importing GEM object holds a reference to the
43 * dma_buf (which in turn holds a ref to the exporting GEM object).
44 * It takes that reference in the fd_to_handle ioctl.
45 * It calls dma_buf_get, creates an attachment to it and stores the
46 * attachment in the GEM object. When this attachment is destroyed
47 * when the imported object is destroyed, we remove the attachment
48 * and drop the reference to the dma_buf.
49 *
50 * Thus the chain of references always flows in one direction
51 * (avoiding loops): importing_gem -> dmabuf -> exporting_gem
52 *
53 * Self-importing: if userspace is using PRIME as a replacement for flink
54 * then it will get a fd->handle request for a GEM object that it created.
55 * Drivers should detect this situation and return back the gem object
Aaron Plattner89177642013-01-15 20:47:42 +000056 * from the dma-buf private. Prime will do this automatically for drivers that
57 * use the drm_gem_prime_{import,export} helpers.
Dave Airlie32488772011-11-25 15:21:02 +000058 */
59
60struct drm_prime_member {
61 struct list_head entry;
62 struct dma_buf *dma_buf;
63 uint32_t handle;
64};
Joonyoung Shim538d6662013-06-19 15:03:05 +090065
66struct drm_prime_attachment {
67 struct sg_table *sgt;
68 enum dma_data_direction dir;
69};
70
Seung-Woo Kimce92e3c2013-06-26 10:21:41 +090071static int drm_prime_add_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf, uint32_t handle)
72{
73 struct drm_prime_member *member;
74
75 member = kmalloc(sizeof(*member), GFP_KERNEL);
76 if (!member)
77 return -ENOMEM;
78
79 get_dma_buf(dma_buf);
80 member->dma_buf = dma_buf;
81 member->handle = handle;
82 list_add(&member->entry, &prime_fpriv->head);
83 return 0;
84}
Dave Airlie32488772011-11-25 15:21:02 +000085
Maarten Lankhorstca793f72013-04-09 09:52:54 +020086static int drm_gem_map_attach(struct dma_buf *dma_buf,
87 struct device *target_dev,
88 struct dma_buf_attachment *attach)
89{
Joonyoung Shim538d6662013-06-19 15:03:05 +090090 struct drm_prime_attachment *prime_attach;
Maarten Lankhorstca793f72013-04-09 09:52:54 +020091 struct drm_gem_object *obj = dma_buf->priv;
92 struct drm_device *dev = obj->dev;
93
Joonyoung Shim538d6662013-06-19 15:03:05 +090094 prime_attach = kzalloc(sizeof(*prime_attach), GFP_KERNEL);
95 if (!prime_attach)
96 return -ENOMEM;
97
98 prime_attach->dir = DMA_NONE;
99 attach->priv = prime_attach;
100
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200101 if (!dev->driver->gem_prime_pin)
102 return 0;
103
104 return dev->driver->gem_prime_pin(obj);
105}
106
107static void drm_gem_map_detach(struct dma_buf *dma_buf,
108 struct dma_buf_attachment *attach)
109{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900110 struct drm_prime_attachment *prime_attach = attach->priv;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200111 struct drm_gem_object *obj = dma_buf->priv;
112 struct drm_device *dev = obj->dev;
Joonyoung Shim538d6662013-06-19 15:03:05 +0900113 struct sg_table *sgt;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200114
115 if (dev->driver->gem_prime_unpin)
116 dev->driver->gem_prime_unpin(obj);
Joonyoung Shim538d6662013-06-19 15:03:05 +0900117
118 if (!prime_attach)
119 return;
120
121 sgt = prime_attach->sgt;
Joonyoung Shimf9d8a122013-07-04 16:19:12 +0900122 if (sgt) {
123 if (prime_attach->dir != DMA_NONE)
124 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents,
125 prime_attach->dir);
126 sg_free_table(sgt);
127 }
Joonyoung Shim538d6662013-06-19 15:03:05 +0900128
Joonyoung Shim538d6662013-06-19 15:03:05 +0900129 kfree(sgt);
130 kfree(prime_attach);
131 attach->priv = NULL;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200132}
133
YoungJun Choda342422013-06-26 10:21:42 +0900134static void drm_prime_remove_buf_handle_locked(
135 struct drm_prime_file_private *prime_fpriv,
136 struct dma_buf *dma_buf)
137{
138 struct drm_prime_member *member, *safe;
139
140 list_for_each_entry_safe(member, safe, &prime_fpriv->head, entry) {
141 if (member->dma_buf == dma_buf) {
142 dma_buf_put(dma_buf);
143 list_del(&member->entry);
144 kfree(member);
145 }
146 }
147}
148
Aaron Plattner89177642013-01-15 20:47:42 +0000149static struct sg_table *drm_gem_map_dma_buf(struct dma_buf_attachment *attach,
150 enum dma_data_direction dir)
151{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900152 struct drm_prime_attachment *prime_attach = attach->priv;
Aaron Plattner89177642013-01-15 20:47:42 +0000153 struct drm_gem_object *obj = attach->dmabuf->priv;
154 struct sg_table *sgt;
155
Joonyoung Shim538d6662013-06-19 15:03:05 +0900156 if (WARN_ON(dir == DMA_NONE || !prime_attach))
157 return ERR_PTR(-EINVAL);
158
159 /* return the cached mapping when possible */
160 if (prime_attach->dir == dir)
161 return prime_attach->sgt;
162
163 /*
164 * two mappings with different directions for the same attachment are
165 * not allowed
166 */
167 if (WARN_ON(prime_attach->dir != DMA_NONE))
168 return ERR_PTR(-EBUSY);
169
Aaron Plattner89177642013-01-15 20:47:42 +0000170 mutex_lock(&obj->dev->struct_mutex);
171
172 sgt = obj->dev->driver->gem_prime_get_sg_table(obj);
173
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900174 if (!IS_ERR(sgt)) {
YoungJun Chob720d542013-06-24 15:34:21 +0900175 if (!dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir)) {
176 sg_free_table(sgt);
177 kfree(sgt);
178 sgt = ERR_PTR(-ENOMEM);
Joonyoung Shim538d6662013-06-19 15:03:05 +0900179 } else {
180 prime_attach->sgt = sgt;
181 prime_attach->dir = dir;
YoungJun Chob720d542013-06-24 15:34:21 +0900182 }
183 }
Aaron Plattner89177642013-01-15 20:47:42 +0000184
185 mutex_unlock(&obj->dev->struct_mutex);
186 return sgt;
187}
188
189static void drm_gem_unmap_dma_buf(struct dma_buf_attachment *attach,
190 struct sg_table *sgt, enum dma_data_direction dir)
191{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900192 /* nothing to be done here */
Aaron Plattner89177642013-01-15 20:47:42 +0000193}
194
Daniel Vetterc1d67982013-08-15 00:02:30 +0200195void drm_gem_dmabuf_release(struct dma_buf *dma_buf)
Aaron Plattner89177642013-01-15 20:47:42 +0000196{
197 struct drm_gem_object *obj = dma_buf->priv;
198
199 if (obj->export_dma_buf == dma_buf) {
200 /* drop the reference on the export fd holds */
201 obj->export_dma_buf = NULL;
202 drm_gem_object_unreference_unlocked(obj);
203 }
204}
Daniel Vetterc1d67982013-08-15 00:02:30 +0200205EXPORT_SYMBOL(drm_gem_dmabuf_release);
Aaron Plattner89177642013-01-15 20:47:42 +0000206
207static void *drm_gem_dmabuf_vmap(struct dma_buf *dma_buf)
208{
209 struct drm_gem_object *obj = dma_buf->priv;
210 struct drm_device *dev = obj->dev;
211
212 return dev->driver->gem_prime_vmap(obj);
213}
214
215static void drm_gem_dmabuf_vunmap(struct dma_buf *dma_buf, void *vaddr)
216{
217 struct drm_gem_object *obj = dma_buf->priv;
218 struct drm_device *dev = obj->dev;
219
220 dev->driver->gem_prime_vunmap(obj, vaddr);
221}
222
223static void *drm_gem_dmabuf_kmap_atomic(struct dma_buf *dma_buf,
224 unsigned long page_num)
225{
226 return NULL;
227}
228
229static void drm_gem_dmabuf_kunmap_atomic(struct dma_buf *dma_buf,
230 unsigned long page_num, void *addr)
231{
232
233}
234static void *drm_gem_dmabuf_kmap(struct dma_buf *dma_buf,
235 unsigned long page_num)
236{
237 return NULL;
238}
239
240static void drm_gem_dmabuf_kunmap(struct dma_buf *dma_buf,
241 unsigned long page_num, void *addr)
242{
243
244}
245
246static int drm_gem_dmabuf_mmap(struct dma_buf *dma_buf,
247 struct vm_area_struct *vma)
248{
Joonyoung Shim7c397cd2013-06-28 14:24:53 +0900249 struct drm_gem_object *obj = dma_buf->priv;
250 struct drm_device *dev = obj->dev;
251
252 if (!dev->driver->gem_prime_mmap)
253 return -ENOSYS;
254
255 return dev->driver->gem_prime_mmap(obj, vma);
Aaron Plattner89177642013-01-15 20:47:42 +0000256}
257
258static const struct dma_buf_ops drm_gem_prime_dmabuf_ops = {
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200259 .attach = drm_gem_map_attach,
260 .detach = drm_gem_map_detach,
Aaron Plattner89177642013-01-15 20:47:42 +0000261 .map_dma_buf = drm_gem_map_dma_buf,
262 .unmap_dma_buf = drm_gem_unmap_dma_buf,
263 .release = drm_gem_dmabuf_release,
264 .kmap = drm_gem_dmabuf_kmap,
265 .kmap_atomic = drm_gem_dmabuf_kmap_atomic,
266 .kunmap = drm_gem_dmabuf_kunmap,
267 .kunmap_atomic = drm_gem_dmabuf_kunmap_atomic,
268 .mmap = drm_gem_dmabuf_mmap,
269 .vmap = drm_gem_dmabuf_vmap,
270 .vunmap = drm_gem_dmabuf_vunmap,
271};
272
273/**
274 * DOC: PRIME Helpers
275 *
276 * Drivers can implement @gem_prime_export and @gem_prime_import in terms of
277 * simpler APIs by using the helper functions @drm_gem_prime_export and
278 * @drm_gem_prime_import. These functions implement dma-buf support in terms of
279 * five lower-level driver callbacks:
280 *
281 * Export callbacks:
282 *
283 * - @gem_prime_pin (optional): prepare a GEM object for exporting
284 *
285 * - @gem_prime_get_sg_table: provide a scatter/gather table of pinned pages
286 *
287 * - @gem_prime_vmap: vmap a buffer exported by your driver
288 *
289 * - @gem_prime_vunmap: vunmap a buffer exported by your driver
290 *
291 * Import callback:
292 *
293 * - @gem_prime_import_sg_table (import): produce a GEM object from another
294 * driver's scatter/gather table
295 */
296
297struct dma_buf *drm_gem_prime_export(struct drm_device *dev,
298 struct drm_gem_object *obj, int flags)
299{
Laurent Pinchartebc0bad2013-06-19 03:14:20 +0200300 return dma_buf_export(obj, &drm_gem_prime_dmabuf_ops, obj->size, flags);
Aaron Plattner89177642013-01-15 20:47:42 +0000301}
302EXPORT_SYMBOL(drm_gem_prime_export);
303
Dave Airlie32488772011-11-25 15:21:02 +0000304int drm_gem_prime_handle_to_fd(struct drm_device *dev,
305 struct drm_file *file_priv, uint32_t handle, uint32_t flags,
306 int *prime_fd)
307{
308 struct drm_gem_object *obj;
309 void *buf;
Dave Airlie219b4732013-04-22 09:54:36 +1000310 int ret = 0;
311 struct dma_buf *dmabuf;
Dave Airlie32488772011-11-25 15:21:02 +0000312
313 obj = drm_gem_object_lookup(dev, file_priv, handle);
314 if (!obj)
315 return -ENOENT;
316
317 mutex_lock(&file_priv->prime.lock);
318 /* re-export the original imported object */
319 if (obj->import_attach) {
Dave Airlie219b4732013-04-22 09:54:36 +1000320 dmabuf = obj->import_attach->dmabuf;
321 goto out_have_obj;
Dave Airlie32488772011-11-25 15:21:02 +0000322 }
323
324 if (obj->export_dma_buf) {
Dave Airlie219b4732013-04-22 09:54:36 +1000325 dmabuf = obj->export_dma_buf;
326 goto out_have_obj;
Dave Airlie32488772011-11-25 15:21:02 +0000327 }
Dave Airlie219b4732013-04-22 09:54:36 +1000328
329 buf = dev->driver->gem_prime_export(dev, obj, flags);
330 if (IS_ERR(buf)) {
331 /* normally the created dma-buf takes ownership of the ref,
332 * but if that fails then drop the ref
333 */
334 ret = PTR_ERR(buf);
335 goto out;
336 }
337 obj->export_dma_buf = buf;
338
Dave Airlie0ff926c2012-05-20 17:31:16 +0100339 /* if we've exported this buffer the cheat and add it to the import list
340 * so we get the correct handle back
341 */
Dave Airlie219b4732013-04-22 09:54:36 +1000342 ret = drm_prime_add_buf_handle(&file_priv->prime,
343 obj->export_dma_buf, handle);
344 if (ret)
YoungJun Cho7d8f06a2013-06-26 10:21:40 +0900345 goto fail_put_dmabuf;
Dave Airlie0ff926c2012-05-20 17:31:16 +0100346
YoungJun Choda342422013-06-26 10:21:42 +0900347 ret = dma_buf_fd(buf, flags);
348 if (ret < 0)
349 goto fail_rm_handle;
350
351 *prime_fd = ret;
Dave Airlie32488772011-11-25 15:21:02 +0000352 mutex_unlock(&file_priv->prime.lock);
353 return 0;
Dave Airlie219b4732013-04-22 09:54:36 +1000354
355out_have_obj:
356 get_dma_buf(dmabuf);
YoungJun Choda342422013-06-26 10:21:42 +0900357 ret = dma_buf_fd(dmabuf, flags);
Daniel Vetter4a88f732013-07-02 09:18:39 +0200358 if (ret < 0) {
YoungJun Choda342422013-06-26 10:21:42 +0900359 dma_buf_put(dmabuf);
Daniel Vetter4a88f732013-07-02 09:18:39 +0200360 } else {
YoungJun Choda342422013-06-26 10:21:42 +0900361 *prime_fd = ret;
Daniel Vetter4a88f732013-07-02 09:18:39 +0200362 ret = 0;
363 }
364
YoungJun Cho7d8f06a2013-06-26 10:21:40 +0900365 goto out;
366
YoungJun Choda342422013-06-26 10:21:42 +0900367fail_rm_handle:
368 drm_prime_remove_buf_handle_locked(&file_priv->prime, buf);
YoungJun Cho7d8f06a2013-06-26 10:21:40 +0900369fail_put_dmabuf:
370 /* clear NOT to be checked when releasing dma_buf */
371 obj->export_dma_buf = NULL;
372 dma_buf_put(buf);
Dave Airlie219b4732013-04-22 09:54:36 +1000373out:
374 drm_gem_object_unreference_unlocked(obj);
375 mutex_unlock(&file_priv->prime.lock);
376 return ret;
Dave Airlie32488772011-11-25 15:21:02 +0000377}
378EXPORT_SYMBOL(drm_gem_prime_handle_to_fd);
379
Aaron Plattner89177642013-01-15 20:47:42 +0000380struct drm_gem_object *drm_gem_prime_import(struct drm_device *dev,
381 struct dma_buf *dma_buf)
382{
383 struct dma_buf_attachment *attach;
384 struct sg_table *sgt;
385 struct drm_gem_object *obj;
386 int ret;
387
388 if (!dev->driver->gem_prime_import_sg_table)
389 return ERR_PTR(-EINVAL);
390
391 if (dma_buf->ops == &drm_gem_prime_dmabuf_ops) {
392 obj = dma_buf->priv;
393 if (obj->dev == dev) {
394 /*
395 * Importing dmabuf exported from out own gem increases
396 * refcount on gem itself instead of f_count of dmabuf.
397 */
398 drm_gem_object_reference(obj);
Aaron Plattner89177642013-01-15 20:47:42 +0000399 return obj;
400 }
401 }
402
403 attach = dma_buf_attach(dma_buf, dev->dev);
404 if (IS_ERR(attach))
Thomas Meyerf2a5da42013-06-01 10:09:27 +0000405 return ERR_CAST(attach);
Aaron Plattner89177642013-01-15 20:47:42 +0000406
Imre Deak011c2282013-04-19 11:11:56 +1000407 get_dma_buf(dma_buf);
408
Aaron Plattner89177642013-01-15 20:47:42 +0000409 sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
410 if (IS_ERR_OR_NULL(sgt)) {
411 ret = PTR_ERR(sgt);
412 goto fail_detach;
413 }
414
415 obj = dev->driver->gem_prime_import_sg_table(dev, dma_buf->size, sgt);
416 if (IS_ERR(obj)) {
417 ret = PTR_ERR(obj);
418 goto fail_unmap;
419 }
420
421 obj->import_attach = attach;
422
423 return obj;
424
425fail_unmap:
426 dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL);
427fail_detach:
428 dma_buf_detach(dma_buf, attach);
Imre Deak011c2282013-04-19 11:11:56 +1000429 dma_buf_put(dma_buf);
430
Aaron Plattner89177642013-01-15 20:47:42 +0000431 return ERR_PTR(ret);
432}
433EXPORT_SYMBOL(drm_gem_prime_import);
434
Dave Airlie32488772011-11-25 15:21:02 +0000435int drm_gem_prime_fd_to_handle(struct drm_device *dev,
436 struct drm_file *file_priv, int prime_fd, uint32_t *handle)
437{
438 struct dma_buf *dma_buf;
439 struct drm_gem_object *obj;
440 int ret;
441
442 dma_buf = dma_buf_get(prime_fd);
443 if (IS_ERR(dma_buf))
444 return PTR_ERR(dma_buf);
445
446 mutex_lock(&file_priv->prime.lock);
447
Dave Airlie219b4732013-04-22 09:54:36 +1000448 ret = drm_prime_lookup_buf_handle(&file_priv->prime,
Dave Airlie32488772011-11-25 15:21:02 +0000449 dma_buf, handle);
450 if (!ret) {
451 ret = 0;
452 goto out_put;
453 }
454
455 /* never seen this one, need to import */
456 obj = dev->driver->gem_prime_import(dev, dma_buf);
457 if (IS_ERR(obj)) {
458 ret = PTR_ERR(obj);
459 goto out_put;
460 }
461
462 ret = drm_gem_handle_create(file_priv, obj, handle);
463 drm_gem_object_unreference_unlocked(obj);
464 if (ret)
465 goto out_put;
466
Dave Airlie219b4732013-04-22 09:54:36 +1000467 ret = drm_prime_add_buf_handle(&file_priv->prime,
Dave Airlie32488772011-11-25 15:21:02 +0000468 dma_buf, *handle);
469 if (ret)
470 goto fail;
471
472 mutex_unlock(&file_priv->prime.lock);
Imre Deak011c2282013-04-19 11:11:56 +1000473
474 dma_buf_put(dma_buf);
475
Dave Airlie32488772011-11-25 15:21:02 +0000476 return 0;
477
478fail:
479 /* hmm, if driver attached, we are relying on the free-object path
480 * to detach.. which seems ok..
481 */
482 drm_gem_object_handle_unreference_unlocked(obj);
483out_put:
484 dma_buf_put(dma_buf);
485 mutex_unlock(&file_priv->prime.lock);
486 return ret;
487}
488EXPORT_SYMBOL(drm_gem_prime_fd_to_handle);
489
490int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
491 struct drm_file *file_priv)
492{
493 struct drm_prime_handle *args = data;
494 uint32_t flags;
495
496 if (!drm_core_check_feature(dev, DRIVER_PRIME))
497 return -EINVAL;
498
499 if (!dev->driver->prime_handle_to_fd)
500 return -ENOSYS;
501
502 /* check flags are valid */
503 if (args->flags & ~DRM_CLOEXEC)
504 return -EINVAL;
505
506 /* we only want to pass DRM_CLOEXEC which is == O_CLOEXEC */
507 flags = args->flags & DRM_CLOEXEC;
508
509 return dev->driver->prime_handle_to_fd(dev, file_priv,
510 args->handle, flags, &args->fd);
511}
512
513int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
514 struct drm_file *file_priv)
515{
516 struct drm_prime_handle *args = data;
517
518 if (!drm_core_check_feature(dev, DRIVER_PRIME))
519 return -EINVAL;
520
521 if (!dev->driver->prime_fd_to_handle)
522 return -ENOSYS;
523
524 return dev->driver->prime_fd_to_handle(dev, file_priv,
525 args->fd, &args->handle);
526}
527
528/*
529 * drm_prime_pages_to_sg
530 *
531 * this helper creates an sg table object from a set of pages
532 * the driver is responsible for mapping the pages into the
533 * importers address space
534 */
535struct sg_table *drm_prime_pages_to_sg(struct page **pages, int nr_pages)
536{
537 struct sg_table *sg = NULL;
Dave Airlie32488772011-11-25 15:21:02 +0000538 int ret;
539
540 sg = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900541 if (!sg) {
542 ret = -ENOMEM;
Dave Airlie32488772011-11-25 15:21:02 +0000543 goto out;
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900544 }
Dave Airlie32488772011-11-25 15:21:02 +0000545
Rahul Sharmadca25cb2013-01-28 08:38:48 -0500546 ret = sg_alloc_table_from_pages(sg, pages, nr_pages, 0,
547 nr_pages << PAGE_SHIFT, GFP_KERNEL);
Dave Airlie32488772011-11-25 15:21:02 +0000548 if (ret)
549 goto out;
550
Dave Airlie32488772011-11-25 15:21:02 +0000551 return sg;
552out:
553 kfree(sg);
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900554 return ERR_PTR(ret);
Dave Airlie32488772011-11-25 15:21:02 +0000555}
556EXPORT_SYMBOL(drm_prime_pages_to_sg);
557
Dave Airlie51ab7ba2012-05-18 15:40:33 +0100558/* export an sg table into an array of pages and addresses
559 this is currently required by the TTM driver in order to do correct fault
560 handling */
561int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, struct page **pages,
562 dma_addr_t *addrs, int max_pages)
563{
564 unsigned count;
565 struct scatterlist *sg;
566 struct page *page;
567 u32 len, offset;
568 int pg_index;
569 dma_addr_t addr;
570
571 pg_index = 0;
572 for_each_sg(sgt->sgl, sg, sgt->nents, count) {
573 len = sg->length;
574 offset = sg->offset;
575 page = sg_page(sg);
576 addr = sg_dma_address(sg);
577
578 while (len > 0) {
579 if (WARN_ON(pg_index >= max_pages))
580 return -1;
581 pages[pg_index] = page;
582 if (addrs)
583 addrs[pg_index] = addr;
584
585 page++;
586 addr += PAGE_SIZE;
587 len -= PAGE_SIZE;
588 pg_index++;
589 }
590 }
591 return 0;
592}
593EXPORT_SYMBOL(drm_prime_sg_to_page_addr_arrays);
Dave Airlie32488772011-11-25 15:21:02 +0000594/* helper function to cleanup a GEM/prime object */
595void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg)
596{
597 struct dma_buf_attachment *attach;
598 struct dma_buf *dma_buf;
599 attach = obj->import_attach;
600 if (sg)
601 dma_buf_unmap_attachment(attach, sg, DMA_BIDIRECTIONAL);
602 dma_buf = attach->dmabuf;
603 dma_buf_detach(attach->dmabuf, attach);
604 /* remove the reference */
605 dma_buf_put(dma_buf);
606}
607EXPORT_SYMBOL(drm_prime_gem_destroy);
608
609void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv)
610{
611 INIT_LIST_HEAD(&prime_fpriv->head);
612 mutex_init(&prime_fpriv->lock);
613}
614EXPORT_SYMBOL(drm_prime_init_file_private);
615
616void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv)
617{
Imre Deak98b76232013-04-24 19:04:57 +0300618 /* by now drm_gem_release should've made sure the list is empty */
619 WARN_ON(!list_empty(&prime_fpriv->head));
Dave Airlie32488772011-11-25 15:21:02 +0000620}
621EXPORT_SYMBOL(drm_prime_destroy_file_private);
622
Dave Airlie219b4732013-04-22 09:54:36 +1000623int drm_prime_lookup_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf, uint32_t *handle)
Dave Airlie32488772011-11-25 15:21:02 +0000624{
625 struct drm_prime_member *member;
626
627 list_for_each_entry(member, &prime_fpriv->head, entry) {
628 if (member->dma_buf == dma_buf) {
629 *handle = member->handle;
630 return 0;
631 }
632 }
633 return -ENOENT;
634}
Dave Airlie219b4732013-04-22 09:54:36 +1000635EXPORT_SYMBOL(drm_prime_lookup_buf_handle);
Dave Airlie32488772011-11-25 15:21:02 +0000636
Dave Airlie219b4732013-04-22 09:54:36 +1000637void drm_prime_remove_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf)
Dave Airlie32488772011-11-25 15:21:02 +0000638{
Dave Airlie32488772011-11-25 15:21:02 +0000639 mutex_lock(&prime_fpriv->lock);
YoungJun Choda342422013-06-26 10:21:42 +0900640 drm_prime_remove_buf_handle_locked(prime_fpriv, dma_buf);
Dave Airlie32488772011-11-25 15:21:02 +0000641 mutex_unlock(&prime_fpriv->lock);
642}
Dave Airlie219b4732013-04-22 09:54:36 +1000643EXPORT_SYMBOL(drm_prime_remove_buf_handle);