blob: bb516fdd195d463ca7627a2a1a69cb8d665a03fb [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
Daniel Vetterd0b2c532013-08-15 00:02:49 +020086static struct dma_buf *drm_prime_lookup_buf_by_handle(struct drm_prime_file_private *prime_fpriv,
87 uint32_t handle)
88{
89 struct drm_prime_member *member;
90
91 list_for_each_entry(member, &prime_fpriv->head, entry) {
92 if (member->handle == handle)
93 return member->dma_buf;
94 }
95
96 return NULL;
97}
98
Daniel Vetterde9564d2013-08-15 00:02:48 +020099static int drm_prime_lookup_buf_handle(struct drm_prime_file_private *prime_fpriv,
100 struct dma_buf *dma_buf,
101 uint32_t *handle)
102{
103 struct drm_prime_member *member;
104
105 list_for_each_entry(member, &prime_fpriv->head, entry) {
106 if (member->dma_buf == dma_buf) {
107 *handle = member->handle;
108 return 0;
109 }
110 }
111 return -ENOENT;
112}
113
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200114static int drm_gem_map_attach(struct dma_buf *dma_buf,
115 struct device *target_dev,
116 struct dma_buf_attachment *attach)
117{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900118 struct drm_prime_attachment *prime_attach;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200119 struct drm_gem_object *obj = dma_buf->priv;
120 struct drm_device *dev = obj->dev;
121
Joonyoung Shim538d6662013-06-19 15:03:05 +0900122 prime_attach = kzalloc(sizeof(*prime_attach), GFP_KERNEL);
123 if (!prime_attach)
124 return -ENOMEM;
125
126 prime_attach->dir = DMA_NONE;
127 attach->priv = prime_attach;
128
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200129 if (!dev->driver->gem_prime_pin)
130 return 0;
131
132 return dev->driver->gem_prime_pin(obj);
133}
134
135static void drm_gem_map_detach(struct dma_buf *dma_buf,
136 struct dma_buf_attachment *attach)
137{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900138 struct drm_prime_attachment *prime_attach = attach->priv;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200139 struct drm_gem_object *obj = dma_buf->priv;
140 struct drm_device *dev = obj->dev;
Joonyoung Shim538d6662013-06-19 15:03:05 +0900141 struct sg_table *sgt;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200142
143 if (dev->driver->gem_prime_unpin)
144 dev->driver->gem_prime_unpin(obj);
Joonyoung Shim538d6662013-06-19 15:03:05 +0900145
146 if (!prime_attach)
147 return;
148
149 sgt = prime_attach->sgt;
Joonyoung Shimf9d8a122013-07-04 16:19:12 +0900150 if (sgt) {
151 if (prime_attach->dir != DMA_NONE)
152 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents,
153 prime_attach->dir);
154 sg_free_table(sgt);
155 }
Joonyoung Shim538d6662013-06-19 15:03:05 +0900156
Joonyoung Shim538d6662013-06-19 15:03:05 +0900157 kfree(sgt);
158 kfree(prime_attach);
159 attach->priv = NULL;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200160}
161
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200162void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv,
163 struct dma_buf *dma_buf)
YoungJun Choda342422013-06-26 10:21:42 +0900164{
165 struct drm_prime_member *member, *safe;
166
167 list_for_each_entry_safe(member, safe, &prime_fpriv->head, entry) {
168 if (member->dma_buf == dma_buf) {
169 dma_buf_put(dma_buf);
170 list_del(&member->entry);
171 kfree(member);
172 }
173 }
174}
175
Aaron Plattner89177642013-01-15 20:47:42 +0000176static struct sg_table *drm_gem_map_dma_buf(struct dma_buf_attachment *attach,
177 enum dma_data_direction dir)
178{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900179 struct drm_prime_attachment *prime_attach = attach->priv;
Aaron Plattner89177642013-01-15 20:47:42 +0000180 struct drm_gem_object *obj = attach->dmabuf->priv;
181 struct sg_table *sgt;
182
Joonyoung Shim538d6662013-06-19 15:03:05 +0900183 if (WARN_ON(dir == DMA_NONE || !prime_attach))
184 return ERR_PTR(-EINVAL);
185
186 /* return the cached mapping when possible */
187 if (prime_attach->dir == dir)
188 return prime_attach->sgt;
189
190 /*
191 * two mappings with different directions for the same attachment are
192 * not allowed
193 */
194 if (WARN_ON(prime_attach->dir != DMA_NONE))
195 return ERR_PTR(-EBUSY);
196
Aaron Plattner89177642013-01-15 20:47:42 +0000197 sgt = obj->dev->driver->gem_prime_get_sg_table(obj);
198
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900199 if (!IS_ERR(sgt)) {
YoungJun Chob720d542013-06-24 15:34:21 +0900200 if (!dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir)) {
201 sg_free_table(sgt);
202 kfree(sgt);
203 sgt = ERR_PTR(-ENOMEM);
Joonyoung Shim538d6662013-06-19 15:03:05 +0900204 } else {
205 prime_attach->sgt = sgt;
206 prime_attach->dir = dir;
YoungJun Chob720d542013-06-24 15:34:21 +0900207 }
208 }
Aaron Plattner89177642013-01-15 20:47:42 +0000209
Aaron Plattner89177642013-01-15 20:47:42 +0000210 return sgt;
211}
212
213static void drm_gem_unmap_dma_buf(struct dma_buf_attachment *attach,
214 struct sg_table *sgt, enum dma_data_direction dir)
215{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900216 /* nothing to be done here */
Aaron Plattner89177642013-01-15 20:47:42 +0000217}
218
Daniel Vetterc1d67982013-08-15 00:02:30 +0200219void drm_gem_dmabuf_release(struct dma_buf *dma_buf)
Aaron Plattner89177642013-01-15 20:47:42 +0000220{
221 struct drm_gem_object *obj = dma_buf->priv;
222
Daniel Vetter319c9332013-08-15 00:02:46 +0200223 /* drop the reference on the export fd holds */
224 drm_gem_object_unreference_unlocked(obj);
Aaron Plattner89177642013-01-15 20:47:42 +0000225}
Daniel Vetterc1d67982013-08-15 00:02:30 +0200226EXPORT_SYMBOL(drm_gem_dmabuf_release);
Aaron Plattner89177642013-01-15 20:47:42 +0000227
228static void *drm_gem_dmabuf_vmap(struct dma_buf *dma_buf)
229{
230 struct drm_gem_object *obj = dma_buf->priv;
231 struct drm_device *dev = obj->dev;
232
233 return dev->driver->gem_prime_vmap(obj);
234}
235
236static void drm_gem_dmabuf_vunmap(struct dma_buf *dma_buf, void *vaddr)
237{
238 struct drm_gem_object *obj = dma_buf->priv;
239 struct drm_device *dev = obj->dev;
240
241 dev->driver->gem_prime_vunmap(obj, vaddr);
242}
243
244static void *drm_gem_dmabuf_kmap_atomic(struct dma_buf *dma_buf,
245 unsigned long page_num)
246{
247 return NULL;
248}
249
250static void drm_gem_dmabuf_kunmap_atomic(struct dma_buf *dma_buf,
251 unsigned long page_num, void *addr)
252{
253
254}
255static void *drm_gem_dmabuf_kmap(struct dma_buf *dma_buf,
256 unsigned long page_num)
257{
258 return NULL;
259}
260
261static void drm_gem_dmabuf_kunmap(struct dma_buf *dma_buf,
262 unsigned long page_num, void *addr)
263{
264
265}
266
267static int drm_gem_dmabuf_mmap(struct dma_buf *dma_buf,
268 struct vm_area_struct *vma)
269{
Joonyoung Shim7c397cd2013-06-28 14:24:53 +0900270 struct drm_gem_object *obj = dma_buf->priv;
271 struct drm_device *dev = obj->dev;
272
273 if (!dev->driver->gem_prime_mmap)
274 return -ENOSYS;
275
276 return dev->driver->gem_prime_mmap(obj, vma);
Aaron Plattner89177642013-01-15 20:47:42 +0000277}
278
279static const struct dma_buf_ops drm_gem_prime_dmabuf_ops = {
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200280 .attach = drm_gem_map_attach,
281 .detach = drm_gem_map_detach,
Aaron Plattner89177642013-01-15 20:47:42 +0000282 .map_dma_buf = drm_gem_map_dma_buf,
283 .unmap_dma_buf = drm_gem_unmap_dma_buf,
284 .release = drm_gem_dmabuf_release,
285 .kmap = drm_gem_dmabuf_kmap,
286 .kmap_atomic = drm_gem_dmabuf_kmap_atomic,
287 .kunmap = drm_gem_dmabuf_kunmap,
288 .kunmap_atomic = drm_gem_dmabuf_kunmap_atomic,
289 .mmap = drm_gem_dmabuf_mmap,
290 .vmap = drm_gem_dmabuf_vmap,
291 .vunmap = drm_gem_dmabuf_vunmap,
292};
293
294/**
295 * DOC: PRIME Helpers
296 *
297 * Drivers can implement @gem_prime_export and @gem_prime_import in terms of
298 * simpler APIs by using the helper functions @drm_gem_prime_export and
299 * @drm_gem_prime_import. These functions implement dma-buf support in terms of
300 * five lower-level driver callbacks:
301 *
302 * Export callbacks:
303 *
304 * - @gem_prime_pin (optional): prepare a GEM object for exporting
305 *
306 * - @gem_prime_get_sg_table: provide a scatter/gather table of pinned pages
307 *
308 * - @gem_prime_vmap: vmap a buffer exported by your driver
309 *
310 * - @gem_prime_vunmap: vunmap a buffer exported by your driver
311 *
312 * Import callback:
313 *
314 * - @gem_prime_import_sg_table (import): produce a GEM object from another
315 * driver's scatter/gather table
316 */
317
318struct dma_buf *drm_gem_prime_export(struct drm_device *dev,
319 struct drm_gem_object *obj, int flags)
320{
Laurent Pinchartebc0bad2013-06-19 03:14:20 +0200321 return dma_buf_export(obj, &drm_gem_prime_dmabuf_ops, obj->size, flags);
Aaron Plattner89177642013-01-15 20:47:42 +0000322}
323EXPORT_SYMBOL(drm_gem_prime_export);
324
Daniel Vetter319c9332013-08-15 00:02:46 +0200325static struct dma_buf *export_and_register_object(struct drm_device *dev,
326 struct drm_gem_object *obj,
327 uint32_t flags)
328{
329 struct dma_buf *dmabuf;
330
331 /* prevent races with concurrent gem_close. */
332 if (obj->handle_count == 0) {
333 dmabuf = ERR_PTR(-ENOENT);
334 return dmabuf;
335 }
336
337 dmabuf = dev->driver->gem_prime_export(dev, obj, flags);
338 if (IS_ERR(dmabuf)) {
339 /* normally the created dma-buf takes ownership of the ref,
340 * but if that fails then drop the ref
341 */
342 return dmabuf;
343 }
344
345 /*
346 * Note that callers do not need to clean up the export cache
347 * since the check for obj->handle_count guarantees that someone
348 * will clean it up.
349 */
350 obj->dma_buf = dmabuf;
351 get_dma_buf(obj->dma_buf);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200352 /* Grab a new ref since the callers is now used by the dma-buf */
353 drm_gem_object_reference(obj);
Daniel Vetter319c9332013-08-15 00:02:46 +0200354
355 return dmabuf;
356}
357
Dave Airlie32488772011-11-25 15:21:02 +0000358int drm_gem_prime_handle_to_fd(struct drm_device *dev,
359 struct drm_file *file_priv, uint32_t handle, uint32_t flags,
360 int *prime_fd)
361{
362 struct drm_gem_object *obj;
Dave Airlie219b4732013-04-22 09:54:36 +1000363 int ret = 0;
364 struct dma_buf *dmabuf;
Dave Airlie32488772011-11-25 15:21:02 +0000365
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200366 mutex_lock(&file_priv->prime.lock);
Dave Airlie32488772011-11-25 15:21:02 +0000367 obj = drm_gem_object_lookup(dev, file_priv, handle);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200368 if (!obj) {
369 ret = -ENOENT;
370 goto out_unlock;
371 }
Dave Airlie32488772011-11-25 15:21:02 +0000372
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200373 dmabuf = drm_prime_lookup_buf_by_handle(&file_priv->prime, handle);
374 if (dmabuf) {
375 get_dma_buf(dmabuf);
376 goto out_have_handle;
377 }
378
379 mutex_lock(&dev->object_name_lock);
Dave Airlie32488772011-11-25 15:21:02 +0000380 /* re-export the original imported object */
381 if (obj->import_attach) {
Dave Airlie219b4732013-04-22 09:54:36 +1000382 dmabuf = obj->import_attach->dmabuf;
Daniel Vetter319c9332013-08-15 00:02:46 +0200383 get_dma_buf(dmabuf);
Dave Airlie219b4732013-04-22 09:54:36 +1000384 goto out_have_obj;
Dave Airlie32488772011-11-25 15:21:02 +0000385 }
386
Daniel Vetter319c9332013-08-15 00:02:46 +0200387 if (obj->dma_buf) {
388 get_dma_buf(obj->dma_buf);
389 dmabuf = obj->dma_buf;
Dave Airlie219b4732013-04-22 09:54:36 +1000390 goto out_have_obj;
Dave Airlie32488772011-11-25 15:21:02 +0000391 }
Dave Airlie219b4732013-04-22 09:54:36 +1000392
Daniel Vetter319c9332013-08-15 00:02:46 +0200393 dmabuf = export_and_register_object(dev, obj, flags);
Daniel Vetter4332bf42013-08-15 00:02:41 +0200394 if (IS_ERR(dmabuf)) {
Dave Airlie219b4732013-04-22 09:54:36 +1000395 /* normally the created dma-buf takes ownership of the ref,
396 * but if that fails then drop the ref
397 */
Daniel Vetter4332bf42013-08-15 00:02:41 +0200398 ret = PTR_ERR(dmabuf);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200399 mutex_unlock(&dev->object_name_lock);
Dave Airlie219b4732013-04-22 09:54:36 +1000400 goto out;
401 }
Dave Airlie219b4732013-04-22 09:54:36 +1000402
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200403out_have_obj:
404 /*
405 * If we've exported this buffer then cheat and add it to the import list
406 * so we get the correct handle back. We must do this under the
407 * protection of dev->object_name_lock to ensure that a racing gem close
408 * ioctl doesn't miss to remove this buffer handle from the cache.
Dave Airlie0ff926c2012-05-20 17:31:16 +0100409 */
Dave Airlie219b4732013-04-22 09:54:36 +1000410 ret = drm_prime_add_buf_handle(&file_priv->prime,
Daniel Vetter319c9332013-08-15 00:02:46 +0200411 dmabuf, handle);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200412 mutex_unlock(&dev->object_name_lock);
Dave Airlie219b4732013-04-22 09:54:36 +1000413 if (ret)
YoungJun Cho7d8f06a2013-06-26 10:21:40 +0900414 goto fail_put_dmabuf;
Dave Airlie0ff926c2012-05-20 17:31:16 +0100415
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200416out_have_handle:
Daniel Vetter4332bf42013-08-15 00:02:41 +0200417 ret = dma_buf_fd(dmabuf, flags);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200418 /*
419 * We must _not_ remove the buffer from the handle cache since the newly
420 * created dma buf is already linked in the global obj->dma_buf pointer,
421 * and that is invariant as long as a userspace gem handle exists.
422 * Closing the handle will clean out the cache anyway, so we don't leak.
423 */
Daniel Vetter4a88f732013-07-02 09:18:39 +0200424 if (ret < 0) {
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200425 goto fail_put_dmabuf;
Daniel Vetter4a88f732013-07-02 09:18:39 +0200426 } else {
YoungJun Choda342422013-06-26 10:21:42 +0900427 *prime_fd = ret;
Daniel Vetter4a88f732013-07-02 09:18:39 +0200428 ret = 0;
429 }
430
YoungJun Cho7d8f06a2013-06-26 10:21:40 +0900431 goto out;
432
433fail_put_dmabuf:
Daniel Vetter4332bf42013-08-15 00:02:41 +0200434 dma_buf_put(dmabuf);
Dave Airlie219b4732013-04-22 09:54:36 +1000435out:
436 drm_gem_object_unreference_unlocked(obj);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200437out_unlock:
438 mutex_unlock(&file_priv->prime.lock);
439
Dave Airlie219b4732013-04-22 09:54:36 +1000440 return ret;
Dave Airlie32488772011-11-25 15:21:02 +0000441}
442EXPORT_SYMBOL(drm_gem_prime_handle_to_fd);
443
Aaron Plattner89177642013-01-15 20:47:42 +0000444struct drm_gem_object *drm_gem_prime_import(struct drm_device *dev,
445 struct dma_buf *dma_buf)
446{
447 struct dma_buf_attachment *attach;
448 struct sg_table *sgt;
449 struct drm_gem_object *obj;
450 int ret;
451
452 if (!dev->driver->gem_prime_import_sg_table)
453 return ERR_PTR(-EINVAL);
454
455 if (dma_buf->ops == &drm_gem_prime_dmabuf_ops) {
456 obj = dma_buf->priv;
457 if (obj->dev == dev) {
458 /*
459 * Importing dmabuf exported from out own gem increases
460 * refcount on gem itself instead of f_count of dmabuf.
461 */
462 drm_gem_object_reference(obj);
Aaron Plattner89177642013-01-15 20:47:42 +0000463 return obj;
464 }
465 }
466
467 attach = dma_buf_attach(dma_buf, dev->dev);
468 if (IS_ERR(attach))
Thomas Meyerf2a5da42013-06-01 10:09:27 +0000469 return ERR_CAST(attach);
Aaron Plattner89177642013-01-15 20:47:42 +0000470
Imre Deak011c2282013-04-19 11:11:56 +1000471 get_dma_buf(dma_buf);
472
Aaron Plattner89177642013-01-15 20:47:42 +0000473 sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
Colin Crossfee0c542013-12-20 16:43:50 -0800474 if (IS_ERR(sgt)) {
Aaron Plattner89177642013-01-15 20:47:42 +0000475 ret = PTR_ERR(sgt);
476 goto fail_detach;
477 }
478
479 obj = dev->driver->gem_prime_import_sg_table(dev, dma_buf->size, sgt);
480 if (IS_ERR(obj)) {
481 ret = PTR_ERR(obj);
482 goto fail_unmap;
483 }
484
485 obj->import_attach = attach;
486
487 return obj;
488
489fail_unmap:
490 dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL);
491fail_detach:
492 dma_buf_detach(dma_buf, attach);
Imre Deak011c2282013-04-19 11:11:56 +1000493 dma_buf_put(dma_buf);
494
Aaron Plattner89177642013-01-15 20:47:42 +0000495 return ERR_PTR(ret);
496}
497EXPORT_SYMBOL(drm_gem_prime_import);
498
Dave Airlie32488772011-11-25 15:21:02 +0000499int drm_gem_prime_fd_to_handle(struct drm_device *dev,
500 struct drm_file *file_priv, int prime_fd, uint32_t *handle)
501{
502 struct dma_buf *dma_buf;
503 struct drm_gem_object *obj;
504 int ret;
505
506 dma_buf = dma_buf_get(prime_fd);
507 if (IS_ERR(dma_buf))
508 return PTR_ERR(dma_buf);
509
510 mutex_lock(&file_priv->prime.lock);
511
Dave Airlie219b4732013-04-22 09:54:36 +1000512 ret = drm_prime_lookup_buf_handle(&file_priv->prime,
Dave Airlie32488772011-11-25 15:21:02 +0000513 dma_buf, handle);
Daniel Vetter84341c22013-08-15 00:02:43 +0200514 if (ret == 0)
Dave Airlie32488772011-11-25 15:21:02 +0000515 goto out_put;
Dave Airlie32488772011-11-25 15:21:02 +0000516
517 /* never seen this one, need to import */
Daniel Vetter319c9332013-08-15 00:02:46 +0200518 mutex_lock(&dev->object_name_lock);
Dave Airlie32488772011-11-25 15:21:02 +0000519 obj = dev->driver->gem_prime_import(dev, dma_buf);
520 if (IS_ERR(obj)) {
521 ret = PTR_ERR(obj);
Daniel Vetter319c9332013-08-15 00:02:46 +0200522 goto out_unlock;
Dave Airlie32488772011-11-25 15:21:02 +0000523 }
524
Daniel Vetter319c9332013-08-15 00:02:46 +0200525 if (obj->dma_buf) {
526 WARN_ON(obj->dma_buf != dma_buf);
527 } else {
528 obj->dma_buf = dma_buf;
529 get_dma_buf(dma_buf);
530 }
531
532 /* drm_gem_handle_create_tail unlocks dev->object_name_lock. */
533 ret = drm_gem_handle_create_tail(file_priv, obj, handle);
Dave Airlie32488772011-11-25 15:21:02 +0000534 drm_gem_object_unreference_unlocked(obj);
535 if (ret)
536 goto out_put;
537
Dave Airlie219b4732013-04-22 09:54:36 +1000538 ret = drm_prime_add_buf_handle(&file_priv->prime,
Dave Airlie32488772011-11-25 15:21:02 +0000539 dma_buf, *handle);
540 if (ret)
541 goto fail;
542
543 mutex_unlock(&file_priv->prime.lock);
Imre Deak011c2282013-04-19 11:11:56 +1000544
545 dma_buf_put(dma_buf);
546
Dave Airlie32488772011-11-25 15:21:02 +0000547 return 0;
548
549fail:
550 /* hmm, if driver attached, we are relying on the free-object path
551 * to detach.. which seems ok..
552 */
Daniel Vetter730c4ff2013-08-15 00:02:38 +0200553 drm_gem_handle_delete(file_priv, *handle);
Daniel Vetter319c9332013-08-15 00:02:46 +0200554out_unlock:
Dan Carpenter0adb2372013-08-23 23:46:02 +0300555 mutex_unlock(&dev->object_name_lock);
Dave Airlie32488772011-11-25 15:21:02 +0000556out_put:
557 dma_buf_put(dma_buf);
558 mutex_unlock(&file_priv->prime.lock);
559 return ret;
560}
561EXPORT_SYMBOL(drm_gem_prime_fd_to_handle);
562
563int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
564 struct drm_file *file_priv)
565{
566 struct drm_prime_handle *args = data;
567 uint32_t flags;
568
569 if (!drm_core_check_feature(dev, DRIVER_PRIME))
570 return -EINVAL;
571
572 if (!dev->driver->prime_handle_to_fd)
573 return -ENOSYS;
574
575 /* check flags are valid */
576 if (args->flags & ~DRM_CLOEXEC)
577 return -EINVAL;
578
579 /* we only want to pass DRM_CLOEXEC which is == O_CLOEXEC */
580 flags = args->flags & DRM_CLOEXEC;
581
582 return dev->driver->prime_handle_to_fd(dev, file_priv,
583 args->handle, flags, &args->fd);
584}
585
586int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
587 struct drm_file *file_priv)
588{
589 struct drm_prime_handle *args = data;
590
591 if (!drm_core_check_feature(dev, DRIVER_PRIME))
592 return -EINVAL;
593
594 if (!dev->driver->prime_fd_to_handle)
595 return -ENOSYS;
596
597 return dev->driver->prime_fd_to_handle(dev, file_priv,
598 args->fd, &args->handle);
599}
600
601/*
602 * drm_prime_pages_to_sg
603 *
604 * this helper creates an sg table object from a set of pages
605 * the driver is responsible for mapping the pages into the
606 * importers address space
607 */
608struct sg_table *drm_prime_pages_to_sg(struct page **pages, int nr_pages)
609{
610 struct sg_table *sg = NULL;
Dave Airlie32488772011-11-25 15:21:02 +0000611 int ret;
612
613 sg = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900614 if (!sg) {
615 ret = -ENOMEM;
Dave Airlie32488772011-11-25 15:21:02 +0000616 goto out;
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900617 }
Dave Airlie32488772011-11-25 15:21:02 +0000618
Rahul Sharmadca25cb2013-01-28 08:38:48 -0500619 ret = sg_alloc_table_from_pages(sg, pages, nr_pages, 0,
620 nr_pages << PAGE_SHIFT, GFP_KERNEL);
Dave Airlie32488772011-11-25 15:21:02 +0000621 if (ret)
622 goto out;
623
Dave Airlie32488772011-11-25 15:21:02 +0000624 return sg;
625out:
626 kfree(sg);
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900627 return ERR_PTR(ret);
Dave Airlie32488772011-11-25 15:21:02 +0000628}
629EXPORT_SYMBOL(drm_prime_pages_to_sg);
630
Dave Airlie51ab7ba2012-05-18 15:40:33 +0100631/* export an sg table into an array of pages and addresses
632 this is currently required by the TTM driver in order to do correct fault
633 handling */
634int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, struct page **pages,
635 dma_addr_t *addrs, int max_pages)
636{
637 unsigned count;
638 struct scatterlist *sg;
639 struct page *page;
Lespiau, Damien36dccc82013-09-28 16:24:02 +0100640 u32 len;
Dave Airlie51ab7ba2012-05-18 15:40:33 +0100641 int pg_index;
642 dma_addr_t addr;
643
644 pg_index = 0;
645 for_each_sg(sgt->sgl, sg, sgt->nents, count) {
646 len = sg->length;
Dave Airlie51ab7ba2012-05-18 15:40:33 +0100647 page = sg_page(sg);
648 addr = sg_dma_address(sg);
649
650 while (len > 0) {
651 if (WARN_ON(pg_index >= max_pages))
652 return -1;
653 pages[pg_index] = page;
654 if (addrs)
655 addrs[pg_index] = addr;
656
657 page++;
658 addr += PAGE_SIZE;
659 len -= PAGE_SIZE;
660 pg_index++;
661 }
662 }
663 return 0;
664}
665EXPORT_SYMBOL(drm_prime_sg_to_page_addr_arrays);
Dave Airlie32488772011-11-25 15:21:02 +0000666/* helper function to cleanup a GEM/prime object */
667void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg)
668{
669 struct dma_buf_attachment *attach;
670 struct dma_buf *dma_buf;
671 attach = obj->import_attach;
672 if (sg)
673 dma_buf_unmap_attachment(attach, sg, DMA_BIDIRECTIONAL);
674 dma_buf = attach->dmabuf;
675 dma_buf_detach(attach->dmabuf, attach);
676 /* remove the reference */
677 dma_buf_put(dma_buf);
678}
679EXPORT_SYMBOL(drm_prime_gem_destroy);
680
681void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv)
682{
683 INIT_LIST_HEAD(&prime_fpriv->head);
684 mutex_init(&prime_fpriv->lock);
685}
686EXPORT_SYMBOL(drm_prime_init_file_private);
687
688void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv)
689{
Imre Deak98b76232013-04-24 19:04:57 +0300690 /* by now drm_gem_release should've made sure the list is empty */
691 WARN_ON(!list_empty(&prime_fpriv->head));
Dave Airlie32488772011-11-25 15:21:02 +0000692}
693EXPORT_SYMBOL(drm_prime_destroy_file_private);