blob: 80907b34d857b863ff92a7ba1ab27087cf4af08f [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>
Chris Wilson077675c2016-09-26 21:44:14 +010031#include <linux/rbtree.h>
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/drmP.h>
Daniel Vetterd9fc9412014-09-23 15:46:53 +020033#include <drm/drm_gem.h>
34
Daniel Vetter67d0ec42014-09-10 12:43:53 +020035#include "drm_internal.h"
Dave Airlie32488772011-11-25 15:21:02 +000036
37/*
38 * DMA-BUF/GEM Object references and lifetime overview:
39 *
40 * On the export the dma_buf holds a reference to the exporting GEM
41 * object. It takes this reference in handle_to_fd_ioctl, when it
42 * first calls .prime_export and stores the exporting GEM object in
43 * the dma_buf priv. This reference is released when the dma_buf
44 * object goes away in the driver .release function.
45 *
46 * On the import the importing GEM object holds a reference to the
47 * dma_buf (which in turn holds a ref to the exporting GEM object).
48 * It takes that reference in the fd_to_handle ioctl.
49 * It calls dma_buf_get, creates an attachment to it and stores the
50 * attachment in the GEM object. When this attachment is destroyed
51 * when the imported object is destroyed, we remove the attachment
52 * and drop the reference to the dma_buf.
53 *
54 * Thus the chain of references always flows in one direction
55 * (avoiding loops): importing_gem -> dmabuf -> exporting_gem
56 *
57 * Self-importing: if userspace is using PRIME as a replacement for flink
58 * then it will get a fd->handle request for a GEM object that it created.
59 * Drivers should detect this situation and return back the gem object
Aaron Plattner89177642013-01-15 20:47:42 +000060 * from the dma-buf private. Prime will do this automatically for drivers that
61 * use the drm_gem_prime_{import,export} helpers.
Dave Airlie32488772011-11-25 15:21:02 +000062 */
63
64struct drm_prime_member {
Dave Airlie32488772011-11-25 15:21:02 +000065 struct dma_buf *dma_buf;
66 uint32_t handle;
Chris Wilson077675c2016-09-26 21:44:14 +010067
68 struct rb_node dmabuf_rb;
69 struct rb_node handle_rb;
Dave Airlie32488772011-11-25 15:21:02 +000070};
Joonyoung Shim538d6662013-06-19 15:03:05 +090071
72struct drm_prime_attachment {
73 struct sg_table *sgt;
74 enum dma_data_direction dir;
75};
76
Daniel Vetter39cc3442014-01-22 19:16:30 +010077static int drm_prime_add_buf_handle(struct drm_prime_file_private *prime_fpriv,
78 struct dma_buf *dma_buf, uint32_t handle)
Seung-Woo Kimce92e3c2013-06-26 10:21:41 +090079{
80 struct drm_prime_member *member;
Chris Wilson077675c2016-09-26 21:44:14 +010081 struct rb_node **p, *rb;
Seung-Woo Kimce92e3c2013-06-26 10:21:41 +090082
83 member = kmalloc(sizeof(*member), GFP_KERNEL);
84 if (!member)
85 return -ENOMEM;
86
87 get_dma_buf(dma_buf);
88 member->dma_buf = dma_buf;
89 member->handle = handle;
Chris Wilson077675c2016-09-26 21:44:14 +010090
91 rb = NULL;
92 p = &prime_fpriv->dmabufs.rb_node;
93 while (*p) {
94 struct drm_prime_member *pos;
95
96 rb = *p;
97 pos = rb_entry(rb, struct drm_prime_member, dmabuf_rb);
98 if (dma_buf > pos->dma_buf)
99 p = &rb->rb_right;
100 else
101 p = &rb->rb_left;
102 }
103 rb_link_node(&member->dmabuf_rb, rb, p);
104 rb_insert_color(&member->dmabuf_rb, &prime_fpriv->dmabufs);
105
106 rb = NULL;
107 p = &prime_fpriv->handles.rb_node;
108 while (*p) {
109 struct drm_prime_member *pos;
110
111 rb = *p;
112 pos = rb_entry(rb, struct drm_prime_member, handle_rb);
113 if (handle > pos->handle)
114 p = &rb->rb_right;
115 else
116 p = &rb->rb_left;
117 }
118 rb_link_node(&member->handle_rb, rb, p);
119 rb_insert_color(&member->handle_rb, &prime_fpriv->handles);
120
Seung-Woo Kimce92e3c2013-06-26 10:21:41 +0900121 return 0;
122}
Dave Airlie32488772011-11-25 15:21:02 +0000123
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200124static struct dma_buf *drm_prime_lookup_buf_by_handle(struct drm_prime_file_private *prime_fpriv,
125 uint32_t handle)
126{
Chris Wilson077675c2016-09-26 21:44:14 +0100127 struct rb_node *rb;
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200128
Chris Wilson077675c2016-09-26 21:44:14 +0100129 rb = prime_fpriv->handles.rb_node;
130 while (rb) {
131 struct drm_prime_member *member;
132
133 member = rb_entry(rb, struct drm_prime_member, handle_rb);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200134 if (member->handle == handle)
135 return member->dma_buf;
Chris Wilson077675c2016-09-26 21:44:14 +0100136 else if (member->handle < handle)
137 rb = rb->rb_right;
138 else
139 rb = rb->rb_left;
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200140 }
141
142 return NULL;
143}
144
Daniel Vetterde9564d2013-08-15 00:02:48 +0200145static int drm_prime_lookup_buf_handle(struct drm_prime_file_private *prime_fpriv,
146 struct dma_buf *dma_buf,
147 uint32_t *handle)
148{
Chris Wilson077675c2016-09-26 21:44:14 +0100149 struct rb_node *rb;
Daniel Vetterde9564d2013-08-15 00:02:48 +0200150
Chris Wilson077675c2016-09-26 21:44:14 +0100151 rb = prime_fpriv->dmabufs.rb_node;
152 while (rb) {
153 struct drm_prime_member *member;
154
155 member = rb_entry(rb, struct drm_prime_member, dmabuf_rb);
Daniel Vetterde9564d2013-08-15 00:02:48 +0200156 if (member->dma_buf == dma_buf) {
157 *handle = member->handle;
158 return 0;
Chris Wilson077675c2016-09-26 21:44:14 +0100159 } else if (member->dma_buf < dma_buf) {
160 rb = rb->rb_right;
161 } else {
162 rb = rb->rb_left;
Daniel Vetterde9564d2013-08-15 00:02:48 +0200163 }
164 }
Chris Wilson077675c2016-09-26 21:44:14 +0100165
Daniel Vetterde9564d2013-08-15 00:02:48 +0200166 return -ENOENT;
167}
168
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200169static int drm_gem_map_attach(struct dma_buf *dma_buf,
170 struct device *target_dev,
171 struct dma_buf_attachment *attach)
172{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900173 struct drm_prime_attachment *prime_attach;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200174 struct drm_gem_object *obj = dma_buf->priv;
175 struct drm_device *dev = obj->dev;
176
Joonyoung Shim538d6662013-06-19 15:03:05 +0900177 prime_attach = kzalloc(sizeof(*prime_attach), GFP_KERNEL);
178 if (!prime_attach)
179 return -ENOMEM;
180
181 prime_attach->dir = DMA_NONE;
182 attach->priv = prime_attach;
183
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200184 if (!dev->driver->gem_prime_pin)
185 return 0;
186
187 return dev->driver->gem_prime_pin(obj);
188}
189
190static void drm_gem_map_detach(struct dma_buf *dma_buf,
191 struct dma_buf_attachment *attach)
192{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900193 struct drm_prime_attachment *prime_attach = attach->priv;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200194 struct drm_gem_object *obj = dma_buf->priv;
195 struct drm_device *dev = obj->dev;
Joonyoung Shim538d6662013-06-19 15:03:05 +0900196 struct sg_table *sgt;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200197
198 if (dev->driver->gem_prime_unpin)
199 dev->driver->gem_prime_unpin(obj);
Joonyoung Shim538d6662013-06-19 15:03:05 +0900200
201 if (!prime_attach)
202 return;
203
204 sgt = prime_attach->sgt;
Joonyoung Shimf9d8a122013-07-04 16:19:12 +0900205 if (sgt) {
206 if (prime_attach->dir != DMA_NONE)
207 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents,
208 prime_attach->dir);
209 sg_free_table(sgt);
210 }
Joonyoung Shim538d6662013-06-19 15:03:05 +0900211
Joonyoung Shim538d6662013-06-19 15:03:05 +0900212 kfree(sgt);
213 kfree(prime_attach);
214 attach->priv = NULL;
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200215}
216
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200217void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv,
218 struct dma_buf *dma_buf)
YoungJun Choda342422013-06-26 10:21:42 +0900219{
Chris Wilson077675c2016-09-26 21:44:14 +0100220 struct rb_node *rb;
YoungJun Choda342422013-06-26 10:21:42 +0900221
Chris Wilson077675c2016-09-26 21:44:14 +0100222 rb = prime_fpriv->dmabufs.rb_node;
223 while (rb) {
224 struct drm_prime_member *member;
225
226 member = rb_entry(rb, struct drm_prime_member, dmabuf_rb);
YoungJun Choda342422013-06-26 10:21:42 +0900227 if (member->dma_buf == dma_buf) {
Chris Wilson077675c2016-09-26 21:44:14 +0100228 rb_erase(&member->handle_rb, &prime_fpriv->handles);
229 rb_erase(&member->dmabuf_rb, &prime_fpriv->dmabufs);
230
YoungJun Choda342422013-06-26 10:21:42 +0900231 dma_buf_put(dma_buf);
YoungJun Choda342422013-06-26 10:21:42 +0900232 kfree(member);
Chris Wilson077675c2016-09-26 21:44:14 +0100233 return;
234 } else if (member->dma_buf < dma_buf) {
235 rb = rb->rb_right;
236 } else {
237 rb = rb->rb_left;
YoungJun Choda342422013-06-26 10:21:42 +0900238 }
239 }
240}
241
Aaron Plattner89177642013-01-15 20:47:42 +0000242static struct sg_table *drm_gem_map_dma_buf(struct dma_buf_attachment *attach,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100243 enum dma_data_direction dir)
Aaron Plattner89177642013-01-15 20:47:42 +0000244{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900245 struct drm_prime_attachment *prime_attach = attach->priv;
Aaron Plattner89177642013-01-15 20:47:42 +0000246 struct drm_gem_object *obj = attach->dmabuf->priv;
247 struct sg_table *sgt;
248
Joonyoung Shim538d6662013-06-19 15:03:05 +0900249 if (WARN_ON(dir == DMA_NONE || !prime_attach))
250 return ERR_PTR(-EINVAL);
251
252 /* return the cached mapping when possible */
253 if (prime_attach->dir == dir)
254 return prime_attach->sgt;
255
256 /*
257 * two mappings with different directions for the same attachment are
258 * not allowed
259 */
260 if (WARN_ON(prime_attach->dir != DMA_NONE))
261 return ERR_PTR(-EBUSY);
262
Aaron Plattner89177642013-01-15 20:47:42 +0000263 sgt = obj->dev->driver->gem_prime_get_sg_table(obj);
264
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900265 if (!IS_ERR(sgt)) {
YoungJun Chob720d542013-06-24 15:34:21 +0900266 if (!dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir)) {
267 sg_free_table(sgt);
268 kfree(sgt);
269 sgt = ERR_PTR(-ENOMEM);
Joonyoung Shim538d6662013-06-19 15:03:05 +0900270 } else {
271 prime_attach->sgt = sgt;
272 prime_attach->dir = dir;
YoungJun Chob720d542013-06-24 15:34:21 +0900273 }
274 }
Aaron Plattner89177642013-01-15 20:47:42 +0000275
Aaron Plattner89177642013-01-15 20:47:42 +0000276 return sgt;
277}
278
279static void drm_gem_unmap_dma_buf(struct dma_buf_attachment *attach,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100280 struct sg_table *sgt,
281 enum dma_data_direction dir)
Aaron Plattner89177642013-01-15 20:47:42 +0000282{
Joonyoung Shim538d6662013-06-19 15:03:05 +0900283 /* nothing to be done here */
Aaron Plattner89177642013-01-15 20:47:42 +0000284}
285
Daniel Vetter39cc3442014-01-22 19:16:30 +0100286/**
287 * drm_gem_dmabuf_release - dma_buf release implementation for GEM
288 * @dma_buf: buffer to be released
289 *
290 * Generic release function for dma_bufs exported as PRIME buffers. GEM drivers
291 * must use this in their dma_buf ops structure as the release callback.
292 */
Daniel Vetterc1d67982013-08-15 00:02:30 +0200293void drm_gem_dmabuf_release(struct dma_buf *dma_buf)
Aaron Plattner89177642013-01-15 20:47:42 +0000294{
295 struct drm_gem_object *obj = dma_buf->priv;
296
Daniel Vetter319c9332013-08-15 00:02:46 +0200297 /* drop the reference on the export fd holds */
298 drm_gem_object_unreference_unlocked(obj);
Aaron Plattner89177642013-01-15 20:47:42 +0000299}
Daniel Vetterc1d67982013-08-15 00:02:30 +0200300EXPORT_SYMBOL(drm_gem_dmabuf_release);
Aaron Plattner89177642013-01-15 20:47:42 +0000301
302static void *drm_gem_dmabuf_vmap(struct dma_buf *dma_buf)
303{
304 struct drm_gem_object *obj = dma_buf->priv;
305 struct drm_device *dev = obj->dev;
306
307 return dev->driver->gem_prime_vmap(obj);
308}
309
310static void drm_gem_dmabuf_vunmap(struct dma_buf *dma_buf, void *vaddr)
311{
312 struct drm_gem_object *obj = dma_buf->priv;
313 struct drm_device *dev = obj->dev;
314
315 dev->driver->gem_prime_vunmap(obj, vaddr);
316}
317
318static void *drm_gem_dmabuf_kmap_atomic(struct dma_buf *dma_buf,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100319 unsigned long page_num)
Aaron Plattner89177642013-01-15 20:47:42 +0000320{
321 return NULL;
322}
323
324static void drm_gem_dmabuf_kunmap_atomic(struct dma_buf *dma_buf,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100325 unsigned long page_num, void *addr)
Aaron Plattner89177642013-01-15 20:47:42 +0000326{
327
328}
329static void *drm_gem_dmabuf_kmap(struct dma_buf *dma_buf,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100330 unsigned long page_num)
Aaron Plattner89177642013-01-15 20:47:42 +0000331{
332 return NULL;
333}
334
335static void drm_gem_dmabuf_kunmap(struct dma_buf *dma_buf,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100336 unsigned long page_num, void *addr)
Aaron Plattner89177642013-01-15 20:47:42 +0000337{
338
339}
340
341static int drm_gem_dmabuf_mmap(struct dma_buf *dma_buf,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100342 struct vm_area_struct *vma)
Aaron Plattner89177642013-01-15 20:47:42 +0000343{
Joonyoung Shim7c397cd2013-06-28 14:24:53 +0900344 struct drm_gem_object *obj = dma_buf->priv;
345 struct drm_device *dev = obj->dev;
346
347 if (!dev->driver->gem_prime_mmap)
348 return -ENOSYS;
349
350 return dev->driver->gem_prime_mmap(obj, vma);
Aaron Plattner89177642013-01-15 20:47:42 +0000351}
352
353static const struct dma_buf_ops drm_gem_prime_dmabuf_ops = {
Maarten Lankhorstca793f72013-04-09 09:52:54 +0200354 .attach = drm_gem_map_attach,
355 .detach = drm_gem_map_detach,
Aaron Plattner89177642013-01-15 20:47:42 +0000356 .map_dma_buf = drm_gem_map_dma_buf,
357 .unmap_dma_buf = drm_gem_unmap_dma_buf,
358 .release = drm_gem_dmabuf_release,
359 .kmap = drm_gem_dmabuf_kmap,
360 .kmap_atomic = drm_gem_dmabuf_kmap_atomic,
361 .kunmap = drm_gem_dmabuf_kunmap,
362 .kunmap_atomic = drm_gem_dmabuf_kunmap_atomic,
363 .mmap = drm_gem_dmabuf_mmap,
364 .vmap = drm_gem_dmabuf_vmap,
365 .vunmap = drm_gem_dmabuf_vunmap,
366};
367
368/**
369 * DOC: PRIME Helpers
370 *
371 * Drivers can implement @gem_prime_export and @gem_prime_import in terms of
372 * simpler APIs by using the helper functions @drm_gem_prime_export and
373 * @drm_gem_prime_import. These functions implement dma-buf support in terms of
Daniel Thompsonffc5fbd2015-06-19 14:52:29 +0100374 * six lower-level driver callbacks:
Aaron Plattner89177642013-01-15 20:47:42 +0000375 *
376 * Export callbacks:
377 *
Danilo Cesar Lemes de Paulaf03d8ed2015-11-25 18:07:55 +0100378 * * @gem_prime_pin (optional): prepare a GEM object for exporting
379 * * @gem_prime_get_sg_table: provide a scatter/gather table of pinned pages
380 * * @gem_prime_vmap: vmap a buffer exported by your driver
381 * * @gem_prime_vunmap: vunmap a buffer exported by your driver
382 * * @gem_prime_mmap (optional): mmap a buffer exported by your driver
Daniel Thompsonffc5fbd2015-06-19 14:52:29 +0100383 *
Aaron Plattner89177642013-01-15 20:47:42 +0000384 * Import callback:
385 *
Danilo Cesar Lemes de Paulaf03d8ed2015-11-25 18:07:55 +0100386 * * @gem_prime_import_sg_table (import): produce a GEM object from another
Aaron Plattner89177642013-01-15 20:47:42 +0000387 * driver's scatter/gather table
388 */
389
Daniel Vetter39cc3442014-01-22 19:16:30 +0100390/**
Masanari Iida32197aa2014-10-20 23:53:13 +0900391 * drm_gem_prime_export - helper library implementation of the export callback
Daniel Vetter39cc3442014-01-22 19:16:30 +0100392 * @dev: drm_device to export from
393 * @obj: GEM object to export
Daniel Thompsonbfe981a2015-12-22 19:36:44 -0200394 * @flags: flags like DRM_CLOEXEC and DRM_RDWR
Daniel Vetter39cc3442014-01-22 19:16:30 +0100395 *
396 * This is the implementation of the gem_prime_export functions for GEM drivers
397 * using the PRIME helpers.
398 */
Aaron Plattner89177642013-01-15 20:47:42 +0000399struct dma_buf *drm_gem_prime_export(struct drm_device *dev,
Chris Wilson56a76c02016-10-05 13:21:43 +0100400 struct drm_gem_object *obj,
401 int flags)
Aaron Plattner89177642013-01-15 20:47:42 +0000402{
Chris Wilson56a76c02016-10-05 13:21:43 +0100403 struct dma_buf_export_info exp_info = {
404 .exp_name = KBUILD_MODNAME, /* white lie for debug */
405 .owner = dev->driver->fops->owner,
406 .ops = &drm_gem_prime_dmabuf_ops,
407 .size = obj->size,
408 .flags = flags,
409 .priv = obj,
410 };
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200411
412 if (dev->driver->gem_prime_res_obj)
Sumit Semwald8fbe342015-01-23 12:53:43 +0530413 exp_info.resv = dev->driver->gem_prime_res_obj(obj);
Maarten Lankhorst3aac4502014-07-01 12:57:26 +0200414
Sumit Semwald8fbe342015-01-23 12:53:43 +0530415 return dma_buf_export(&exp_info);
Aaron Plattner89177642013-01-15 20:47:42 +0000416}
417EXPORT_SYMBOL(drm_gem_prime_export);
418
Daniel Vetter319c9332013-08-15 00:02:46 +0200419static struct dma_buf *export_and_register_object(struct drm_device *dev,
420 struct drm_gem_object *obj,
421 uint32_t flags)
422{
423 struct dma_buf *dmabuf;
424
425 /* prevent races with concurrent gem_close. */
426 if (obj->handle_count == 0) {
427 dmabuf = ERR_PTR(-ENOENT);
428 return dmabuf;
429 }
430
431 dmabuf = dev->driver->gem_prime_export(dev, obj, flags);
432 if (IS_ERR(dmabuf)) {
433 /* normally the created dma-buf takes ownership of the ref,
434 * but if that fails then drop the ref
435 */
436 return dmabuf;
437 }
438
439 /*
440 * Note that callers do not need to clean up the export cache
441 * since the check for obj->handle_count guarantees that someone
442 * will clean it up.
443 */
444 obj->dma_buf = dmabuf;
445 get_dma_buf(obj->dma_buf);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200446 /* Grab a new ref since the callers is now used by the dma-buf */
447 drm_gem_object_reference(obj);
Daniel Vetter319c9332013-08-15 00:02:46 +0200448
449 return dmabuf;
450}
451
Daniel Vetter39cc3442014-01-22 19:16:30 +0100452/**
453 * drm_gem_prime_handle_to_fd - PRIME export function for GEM drivers
454 * @dev: dev to export the buffer from
455 * @file_priv: drm file-private structure
456 * @handle: buffer handle to export
457 * @flags: flags like DRM_CLOEXEC
458 * @prime_fd: pointer to storage for the fd id of the create dma-buf
459 *
460 * This is the PRIME export function which must be used mandatorily by GEM
461 * drivers to ensure correct lifetime management of the underlying GEM object.
462 * The actual exporting from GEM object to a dma-buf is done through the
463 * gem_prime_export driver callback.
464 */
Dave Airlie32488772011-11-25 15:21:02 +0000465int drm_gem_prime_handle_to_fd(struct drm_device *dev,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100466 struct drm_file *file_priv, uint32_t handle,
467 uint32_t flags,
468 int *prime_fd)
Dave Airlie32488772011-11-25 15:21:02 +0000469{
470 struct drm_gem_object *obj;
Dave Airlie219b4732013-04-22 09:54:36 +1000471 int ret = 0;
472 struct dma_buf *dmabuf;
Dave Airlie32488772011-11-25 15:21:02 +0000473
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200474 mutex_lock(&file_priv->prime.lock);
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100475 obj = drm_gem_object_lookup(file_priv, handle);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200476 if (!obj) {
477 ret = -ENOENT;
478 goto out_unlock;
479 }
Dave Airlie32488772011-11-25 15:21:02 +0000480
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200481 dmabuf = drm_prime_lookup_buf_by_handle(&file_priv->prime, handle);
482 if (dmabuf) {
483 get_dma_buf(dmabuf);
484 goto out_have_handle;
485 }
486
487 mutex_lock(&dev->object_name_lock);
Dave Airlie32488772011-11-25 15:21:02 +0000488 /* re-export the original imported object */
489 if (obj->import_attach) {
Dave Airlie219b4732013-04-22 09:54:36 +1000490 dmabuf = obj->import_attach->dmabuf;
Daniel Vetter319c9332013-08-15 00:02:46 +0200491 get_dma_buf(dmabuf);
Dave Airlie219b4732013-04-22 09:54:36 +1000492 goto out_have_obj;
Dave Airlie32488772011-11-25 15:21:02 +0000493 }
494
Daniel Vetter319c9332013-08-15 00:02:46 +0200495 if (obj->dma_buf) {
496 get_dma_buf(obj->dma_buf);
497 dmabuf = obj->dma_buf;
Dave Airlie219b4732013-04-22 09:54:36 +1000498 goto out_have_obj;
Dave Airlie32488772011-11-25 15:21:02 +0000499 }
Dave Airlie219b4732013-04-22 09:54:36 +1000500
Daniel Vetter319c9332013-08-15 00:02:46 +0200501 dmabuf = export_and_register_object(dev, obj, flags);
Daniel Vetter4332bf42013-08-15 00:02:41 +0200502 if (IS_ERR(dmabuf)) {
Dave Airlie219b4732013-04-22 09:54:36 +1000503 /* normally the created dma-buf takes ownership of the ref,
504 * but if that fails then drop the ref
505 */
Daniel Vetter4332bf42013-08-15 00:02:41 +0200506 ret = PTR_ERR(dmabuf);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200507 mutex_unlock(&dev->object_name_lock);
Dave Airlie219b4732013-04-22 09:54:36 +1000508 goto out;
509 }
Dave Airlie219b4732013-04-22 09:54:36 +1000510
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200511out_have_obj:
512 /*
513 * If we've exported this buffer then cheat and add it to the import list
514 * so we get the correct handle back. We must do this under the
515 * protection of dev->object_name_lock to ensure that a racing gem close
516 * ioctl doesn't miss to remove this buffer handle from the cache.
Dave Airlie0ff926c2012-05-20 17:31:16 +0100517 */
Dave Airlie219b4732013-04-22 09:54:36 +1000518 ret = drm_prime_add_buf_handle(&file_priv->prime,
Daniel Vetter319c9332013-08-15 00:02:46 +0200519 dmabuf, handle);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200520 mutex_unlock(&dev->object_name_lock);
Dave Airlie219b4732013-04-22 09:54:36 +1000521 if (ret)
YoungJun Cho7d8f06a2013-06-26 10:21:40 +0900522 goto fail_put_dmabuf;
Dave Airlie0ff926c2012-05-20 17:31:16 +0100523
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200524out_have_handle:
Daniel Vetter4332bf42013-08-15 00:02:41 +0200525 ret = dma_buf_fd(dmabuf, flags);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200526 /*
527 * We must _not_ remove the buffer from the handle cache since the newly
528 * created dma buf is already linked in the global obj->dma_buf pointer,
529 * and that is invariant as long as a userspace gem handle exists.
530 * Closing the handle will clean out the cache anyway, so we don't leak.
531 */
Daniel Vetter4a88f732013-07-02 09:18:39 +0200532 if (ret < 0) {
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200533 goto fail_put_dmabuf;
Daniel Vetter4a88f732013-07-02 09:18:39 +0200534 } else {
YoungJun Choda342422013-06-26 10:21:42 +0900535 *prime_fd = ret;
Daniel Vetter4a88f732013-07-02 09:18:39 +0200536 ret = 0;
537 }
538
YoungJun Cho7d8f06a2013-06-26 10:21:40 +0900539 goto out;
540
541fail_put_dmabuf:
Daniel Vetter4332bf42013-08-15 00:02:41 +0200542 dma_buf_put(dmabuf);
Dave Airlie219b4732013-04-22 09:54:36 +1000543out:
544 drm_gem_object_unreference_unlocked(obj);
Daniel Vetterd0b2c532013-08-15 00:02:49 +0200545out_unlock:
546 mutex_unlock(&file_priv->prime.lock);
547
Dave Airlie219b4732013-04-22 09:54:36 +1000548 return ret;
Dave Airlie32488772011-11-25 15:21:02 +0000549}
550EXPORT_SYMBOL(drm_gem_prime_handle_to_fd);
551
Daniel Vetter39cc3442014-01-22 19:16:30 +0100552/**
Masanari Iida32197aa2014-10-20 23:53:13 +0900553 * drm_gem_prime_import - helper library implementation of the import callback
Daniel Vetter39cc3442014-01-22 19:16:30 +0100554 * @dev: drm_device to import into
555 * @dma_buf: dma-buf object to import
556 *
557 * This is the implementation of the gem_prime_import functions for GEM drivers
558 * using the PRIME helpers.
559 */
Aaron Plattner89177642013-01-15 20:47:42 +0000560struct drm_gem_object *drm_gem_prime_import(struct drm_device *dev,
561 struct dma_buf *dma_buf)
562{
563 struct dma_buf_attachment *attach;
564 struct sg_table *sgt;
565 struct drm_gem_object *obj;
566 int ret;
567
Aaron Plattner89177642013-01-15 20:47:42 +0000568 if (dma_buf->ops == &drm_gem_prime_dmabuf_ops) {
569 obj = dma_buf->priv;
570 if (obj->dev == dev) {
571 /*
572 * Importing dmabuf exported from out own gem increases
573 * refcount on gem itself instead of f_count of dmabuf.
574 */
575 drm_gem_object_reference(obj);
Aaron Plattner89177642013-01-15 20:47:42 +0000576 return obj;
577 }
578 }
579
Tomasz Figa98515032015-05-08 17:13:45 +0900580 if (!dev->driver->gem_prime_import_sg_table)
581 return ERR_PTR(-EINVAL);
582
Aaron Plattner89177642013-01-15 20:47:42 +0000583 attach = dma_buf_attach(dma_buf, dev->dev);
584 if (IS_ERR(attach))
Thomas Meyerf2a5da42013-06-01 10:09:27 +0000585 return ERR_CAST(attach);
Aaron Plattner89177642013-01-15 20:47:42 +0000586
Imre Deak011c22822013-04-19 11:11:56 +1000587 get_dma_buf(dma_buf);
588
Aaron Plattner89177642013-01-15 20:47:42 +0000589 sgt = dma_buf_map_attachment(attach, DMA_BIDIRECTIONAL);
Colin Crossfee0c542013-12-20 16:43:50 -0800590 if (IS_ERR(sgt)) {
Aaron Plattner89177642013-01-15 20:47:42 +0000591 ret = PTR_ERR(sgt);
592 goto fail_detach;
593 }
594
Maarten Lankhorstb5e9c1a2014-01-09 11:03:14 +0100595 obj = dev->driver->gem_prime_import_sg_table(dev, attach, sgt);
Aaron Plattner89177642013-01-15 20:47:42 +0000596 if (IS_ERR(obj)) {
597 ret = PTR_ERR(obj);
598 goto fail_unmap;
599 }
600
601 obj->import_attach = attach;
602
603 return obj;
604
605fail_unmap:
606 dma_buf_unmap_attachment(attach, sgt, DMA_BIDIRECTIONAL);
607fail_detach:
608 dma_buf_detach(dma_buf, attach);
Imre Deak011c22822013-04-19 11:11:56 +1000609 dma_buf_put(dma_buf);
610
Aaron Plattner89177642013-01-15 20:47:42 +0000611 return ERR_PTR(ret);
612}
613EXPORT_SYMBOL(drm_gem_prime_import);
614
Daniel Vetter39cc3442014-01-22 19:16:30 +0100615/**
616 * drm_gem_prime_fd_to_handle - PRIME import function for GEM drivers
617 * @dev: dev to export the buffer from
618 * @file_priv: drm file-private structure
619 * @prime_fd: fd id of the dma-buf which should be imported
620 * @handle: pointer to storage for the handle of the imported buffer object
621 *
622 * This is the PRIME import function which must be used mandatorily by GEM
623 * drivers to ensure correct lifetime management of the underlying GEM object.
624 * The actual importing of GEM object from the dma-buf is done through the
625 * gem_import_export driver callback.
626 */
Dave Airlie32488772011-11-25 15:21:02 +0000627int drm_gem_prime_fd_to_handle(struct drm_device *dev,
Daniel Vetter39cc3442014-01-22 19:16:30 +0100628 struct drm_file *file_priv, int prime_fd,
629 uint32_t *handle)
Dave Airlie32488772011-11-25 15:21:02 +0000630{
631 struct dma_buf *dma_buf;
632 struct drm_gem_object *obj;
633 int ret;
634
635 dma_buf = dma_buf_get(prime_fd);
636 if (IS_ERR(dma_buf))
637 return PTR_ERR(dma_buf);
638
639 mutex_lock(&file_priv->prime.lock);
640
Dave Airlie219b4732013-04-22 09:54:36 +1000641 ret = drm_prime_lookup_buf_handle(&file_priv->prime,
Dave Airlie32488772011-11-25 15:21:02 +0000642 dma_buf, handle);
Daniel Vetter84341c22013-08-15 00:02:43 +0200643 if (ret == 0)
Dave Airlie32488772011-11-25 15:21:02 +0000644 goto out_put;
Dave Airlie32488772011-11-25 15:21:02 +0000645
646 /* never seen this one, need to import */
Daniel Vetter319c9332013-08-15 00:02:46 +0200647 mutex_lock(&dev->object_name_lock);
Dave Airlie32488772011-11-25 15:21:02 +0000648 obj = dev->driver->gem_prime_import(dev, dma_buf);
649 if (IS_ERR(obj)) {
650 ret = PTR_ERR(obj);
Daniel Vetter319c9332013-08-15 00:02:46 +0200651 goto out_unlock;
Dave Airlie32488772011-11-25 15:21:02 +0000652 }
653
Daniel Vetter319c9332013-08-15 00:02:46 +0200654 if (obj->dma_buf) {
655 WARN_ON(obj->dma_buf != dma_buf);
656 } else {
657 obj->dma_buf = dma_buf;
658 get_dma_buf(dma_buf);
659 }
660
Rob Clarkbd6e2732016-06-09 15:29:19 -0400661 /* _handle_create_tail unconditionally unlocks dev->object_name_lock. */
Daniel Vetter319c9332013-08-15 00:02:46 +0200662 ret = drm_gem_handle_create_tail(file_priv, obj, handle);
Dave Airlie32488772011-11-25 15:21:02 +0000663 drm_gem_object_unreference_unlocked(obj);
664 if (ret)
665 goto out_put;
666
Dave Airlie219b4732013-04-22 09:54:36 +1000667 ret = drm_prime_add_buf_handle(&file_priv->prime,
Dave Airlie32488772011-11-25 15:21:02 +0000668 dma_buf, *handle);
Rob Clarkbd6e2732016-06-09 15:29:19 -0400669 mutex_unlock(&file_priv->prime.lock);
Dave Airlie32488772011-11-25 15:21:02 +0000670 if (ret)
671 goto fail;
672
Imre Deak011c22822013-04-19 11:11:56 +1000673 dma_buf_put(dma_buf);
674
Dave Airlie32488772011-11-25 15:21:02 +0000675 return 0;
676
677fail:
678 /* hmm, if driver attached, we are relying on the free-object path
679 * to detach.. which seems ok..
680 */
Daniel Vetter730c4ff2013-08-15 00:02:38 +0200681 drm_gem_handle_delete(file_priv, *handle);
Rob Clarkbd6e2732016-06-09 15:29:19 -0400682 dma_buf_put(dma_buf);
683 return ret;
684
Daniel Vetter319c9332013-08-15 00:02:46 +0200685out_unlock:
Dan Carpenter0adb2372013-08-23 23:46:02 +0300686 mutex_unlock(&dev->object_name_lock);
Dave Airlie32488772011-11-25 15:21:02 +0000687out_put:
Dave Airlie32488772011-11-25 15:21:02 +0000688 mutex_unlock(&file_priv->prime.lock);
Rob Clarkbd6e2732016-06-09 15:29:19 -0400689 dma_buf_put(dma_buf);
Dave Airlie32488772011-11-25 15:21:02 +0000690 return ret;
691}
692EXPORT_SYMBOL(drm_gem_prime_fd_to_handle);
693
694int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
695 struct drm_file *file_priv)
696{
697 struct drm_prime_handle *args = data;
Dave Airlie32488772011-11-25 15:21:02 +0000698
699 if (!drm_core_check_feature(dev, DRIVER_PRIME))
700 return -EINVAL;
701
702 if (!dev->driver->prime_handle_to_fd)
703 return -ENOSYS;
704
705 /* check flags are valid */
Daniel Thompsonbfe981a2015-12-22 19:36:44 -0200706 if (args->flags & ~(DRM_CLOEXEC | DRM_RDWR))
Dave Airlie32488772011-11-25 15:21:02 +0000707 return -EINVAL;
708
Dave Airlie32488772011-11-25 15:21:02 +0000709 return dev->driver->prime_handle_to_fd(dev, file_priv,
Daniel Thompsonbfe981a2015-12-22 19:36:44 -0200710 args->handle, args->flags, &args->fd);
Dave Airlie32488772011-11-25 15:21:02 +0000711}
712
713int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
714 struct drm_file *file_priv)
715{
716 struct drm_prime_handle *args = data;
717
718 if (!drm_core_check_feature(dev, DRIVER_PRIME))
719 return -EINVAL;
720
721 if (!dev->driver->prime_fd_to_handle)
722 return -ENOSYS;
723
724 return dev->driver->prime_fd_to_handle(dev, file_priv,
725 args->fd, &args->handle);
726}
727
Daniel Vetter39cc3442014-01-22 19:16:30 +0100728/**
729 * drm_prime_pages_to_sg - converts a page array into an sg list
730 * @pages: pointer to the array of page pointers to convert
731 * @nr_pages: length of the page vector
Dave Airlie32488772011-11-25 15:21:02 +0000732 *
Daniel Vetter39cc3442014-01-22 19:16:30 +0100733 * This helper creates an sg table object from a set of pages
Dave Airlie32488772011-11-25 15:21:02 +0000734 * the driver is responsible for mapping the pages into the
Daniel Vetter39cc3442014-01-22 19:16:30 +0100735 * importers address space for use with dma_buf itself.
Dave Airlie32488772011-11-25 15:21:02 +0000736 */
Thierry Reding34eab432014-06-04 09:18:29 +0200737struct sg_table *drm_prime_pages_to_sg(struct page **pages, unsigned int nr_pages)
Dave Airlie32488772011-11-25 15:21:02 +0000738{
739 struct sg_table *sg = NULL;
Dave Airlie32488772011-11-25 15:21:02 +0000740 int ret;
741
742 sg = kmalloc(sizeof(struct sg_table), GFP_KERNEL);
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900743 if (!sg) {
744 ret = -ENOMEM;
Dave Airlie32488772011-11-25 15:21:02 +0000745 goto out;
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900746 }
Dave Airlie32488772011-11-25 15:21:02 +0000747
Rahul Sharmadca25cb2013-01-28 08:38:48 -0500748 ret = sg_alloc_table_from_pages(sg, pages, nr_pages, 0,
749 nr_pages << PAGE_SHIFT, GFP_KERNEL);
Dave Airlie32488772011-11-25 15:21:02 +0000750 if (ret)
751 goto out;
752
Dave Airlie32488772011-11-25 15:21:02 +0000753 return sg;
754out:
755 kfree(sg);
YoungJun Cho7e3d88f2013-06-24 16:40:53 +0900756 return ERR_PTR(ret);
Dave Airlie32488772011-11-25 15:21:02 +0000757}
758EXPORT_SYMBOL(drm_prime_pages_to_sg);
759
Daniel Vetter39cc3442014-01-22 19:16:30 +0100760/**
761 * drm_prime_sg_to_page_addr_arrays - convert an sg table into a page array
762 * @sgt: scatter-gather table to convert
763 * @pages: array of page pointers to store the page array in
764 * @addrs: optional array to store the dma bus address of each page
765 * @max_pages: size of both the passed-in arrays
766 *
767 * Exports an sg table into an array of pages and addresses. This is currently
768 * required by the TTM driver in order to do correct fault handling.
769 */
Dave Airlie51ab7ba2012-05-18 15:40:33 +0100770int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, struct page **pages,
771 dma_addr_t *addrs, int max_pages)
772{
773 unsigned count;
774 struct scatterlist *sg;
775 struct page *page;
Lespiau, Damien36dccc82013-09-28 16:24:02 +0100776 u32 len;
Dave Airlie51ab7ba2012-05-18 15:40:33 +0100777 int pg_index;
778 dma_addr_t addr;
779
780 pg_index = 0;
781 for_each_sg(sgt->sgl, sg, sgt->nents, count) {
782 len = sg->length;
Dave Airlie51ab7ba2012-05-18 15:40:33 +0100783 page = sg_page(sg);
784 addr = sg_dma_address(sg);
785
786 while (len > 0) {
787 if (WARN_ON(pg_index >= max_pages))
788 return -1;
789 pages[pg_index] = page;
790 if (addrs)
791 addrs[pg_index] = addr;
792
793 page++;
794 addr += PAGE_SIZE;
795 len -= PAGE_SIZE;
796 pg_index++;
797 }
798 }
799 return 0;
800}
801EXPORT_SYMBOL(drm_prime_sg_to_page_addr_arrays);
Daniel Vetter39cc3442014-01-22 19:16:30 +0100802
803/**
804 * drm_prime_gem_destroy - helper to clean up a PRIME-imported GEM object
805 * @obj: GEM object which was created from a dma-buf
806 * @sg: the sg-table which was pinned at import time
807 *
808 * This is the cleanup functions which GEM drivers need to call when they use
809 * @drm_gem_prime_import to import dma-bufs.
810 */
Dave Airlie32488772011-11-25 15:21:02 +0000811void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg)
812{
813 struct dma_buf_attachment *attach;
814 struct dma_buf *dma_buf;
815 attach = obj->import_attach;
816 if (sg)
817 dma_buf_unmap_attachment(attach, sg, DMA_BIDIRECTIONAL);
818 dma_buf = attach->dmabuf;
819 dma_buf_detach(attach->dmabuf, attach);
820 /* remove the reference */
821 dma_buf_put(dma_buf);
822}
823EXPORT_SYMBOL(drm_prime_gem_destroy);
824
825void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv)
826{
Dave Airlie32488772011-11-25 15:21:02 +0000827 mutex_init(&prime_fpriv->lock);
Chris Wilson077675c2016-09-26 21:44:14 +0100828 prime_fpriv->dmabufs = RB_ROOT;
829 prime_fpriv->handles = RB_ROOT;
Dave Airlie32488772011-11-25 15:21:02 +0000830}
Dave Airlie32488772011-11-25 15:21:02 +0000831
832void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv)
833{
Imre Deak98b76232013-04-24 19:04:57 +0300834 /* by now drm_gem_release should've made sure the list is empty */
Chris Wilson077675c2016-09-26 21:44:14 +0100835 WARN_ON(!RB_EMPTY_ROOT(&prime_fpriv->dmabufs));
Dave Airlie32488772011-11-25 15:21:02 +0000836}