]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/gpu/drm/tegra/gem.c
drm/tegra: gem: Correct iommu_map_sg() error checking
[mirror_ubuntu-jammy-kernel.git] / drivers / gpu / drm / tegra / gem.c
CommitLineData
de2ba664
AM
1/*
2 * NVIDIA Tegra DRM GEM helper functions
3 *
4 * Copyright (C) 2012 Sascha Hauer, Pengutronix
7ecada3c 5 * Copyright (C) 2013-2015 NVIDIA CORPORATION, All rights reserved.
de2ba664
AM
6 *
7 * Based on the GEM/CMA helpers
8 *
9 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
10 *
9a2ac2dc
TR
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
de2ba664
AM
14 */
15
3800391d 16#include <linux/dma-buf.h>
df06b759 17#include <linux/iommu.h>
773af77f
TR
18#include <drm/tegra_drm.h>
19
d1f3e1e0 20#include "drm.h"
de2ba664
AM
21#include "gem.h"
22
de2ba664
AM
23static void tegra_bo_put(struct host1x_bo *bo)
24{
3be82743 25 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
de2ba664 26
7664b2fa 27 drm_gem_object_put_unlocked(&obj->gem);
de2ba664
AM
28}
29
30static dma_addr_t tegra_bo_pin(struct host1x_bo *bo, struct sg_table **sgt)
31{
3be82743 32 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
de2ba664 33
585ee0f2
MP
34 *sgt = obj->sgt;
35
de2ba664
AM
36 return obj->paddr;
37}
38
39static void tegra_bo_unpin(struct host1x_bo *bo, struct sg_table *sgt)
40{
41}
42
43static void *tegra_bo_mmap(struct host1x_bo *bo)
44{
3be82743 45 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
de2ba664 46
7ecada3c
AM
47 if (obj->vaddr)
48 return obj->vaddr;
49 else if (obj->gem.import_attach)
50 return dma_buf_vmap(obj->gem.import_attach->dmabuf);
51 else
52 return vmap(obj->pages, obj->num_pages, VM_MAP,
53 pgprot_writecombine(PAGE_KERNEL));
de2ba664
AM
54}
55
56static void tegra_bo_munmap(struct host1x_bo *bo, void *addr)
57{
7ecada3c
AM
58 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
59
60 if (obj->vaddr)
61 return;
62 else if (obj->gem.import_attach)
63 dma_buf_vunmap(obj->gem.import_attach->dmabuf, addr);
64 else
65 vunmap(addr);
de2ba664
AM
66}
67
68static void *tegra_bo_kmap(struct host1x_bo *bo, unsigned int page)
69{
3be82743 70 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
de2ba664 71
7ecada3c
AM
72 if (obj->vaddr)
73 return obj->vaddr + page * PAGE_SIZE;
74 else if (obj->gem.import_attach)
75 return dma_buf_kmap(obj->gem.import_attach->dmabuf, page);
76 else
77 return vmap(obj->pages + page, 1, VM_MAP,
78 pgprot_writecombine(PAGE_KERNEL));
de2ba664
AM
79}
80
81static void tegra_bo_kunmap(struct host1x_bo *bo, unsigned int page,
82 void *addr)
83{
7ecada3c
AM
84 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
85
86 if (obj->vaddr)
87 return;
88 else if (obj->gem.import_attach)
89 dma_buf_kunmap(obj->gem.import_attach->dmabuf, page, addr);
90 else
91 vunmap(addr);
de2ba664
AM
92}
93
94static struct host1x_bo *tegra_bo_get(struct host1x_bo *bo)
95{
3be82743 96 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
de2ba664 97
7664b2fa 98 drm_gem_object_get(&obj->gem);
de2ba664
AM
99
100 return bo;
101}
102
425c0fdc 103static const struct host1x_bo_ops tegra_bo_ops = {
de2ba664
AM
104 .get = tegra_bo_get,
105 .put = tegra_bo_put,
106 .pin = tegra_bo_pin,
107 .unpin = tegra_bo_unpin,
108 .mmap = tegra_bo_mmap,
109 .munmap = tegra_bo_munmap,
110 .kmap = tegra_bo_kmap,
111 .kunmap = tegra_bo_kunmap,
112};
113
df06b759
TR
114static int tegra_bo_iommu_map(struct tegra_drm *tegra, struct tegra_bo *bo)
115{
116 int prot = IOMMU_READ | IOMMU_WRITE;
04184b1f 117 int err;
df06b759
TR
118
119 if (bo->mm)
120 return -EBUSY;
121
122 bo->mm = kzalloc(sizeof(*bo->mm), GFP_KERNEL);
123 if (!bo->mm)
124 return -ENOMEM;
125
347ad49d
TR
126 mutex_lock(&tegra->mm_lock);
127
4e64e553
CW
128 err = drm_mm_insert_node_generic(&tegra->mm,
129 bo->mm, bo->gem.size, PAGE_SIZE, 0, 0);
df06b759 130 if (err < 0) {
04184b1f 131 dev_err(tegra->drm->dev, "out of I/O virtual memory: %d\n",
df06b759 132 err);
347ad49d 133 goto unlock;
df06b759
TR
134 }
135
136 bo->paddr = bo->mm->start;
137
04184b1f
DO
138 bo->size = iommu_map_sg(tegra->domain, bo->paddr, bo->sgt->sgl,
139 bo->sgt->nents, prot);
140 if (!bo->size) {
141 dev_err(tegra->drm->dev, "failed to map buffer\n");
142 err = -ENOMEM;
df06b759
TR
143 goto remove;
144 }
145
347ad49d
TR
146 mutex_unlock(&tegra->mm_lock);
147
df06b759
TR
148 return 0;
149
150remove:
151 drm_mm_remove_node(bo->mm);
347ad49d
TR
152unlock:
153 mutex_unlock(&tegra->mm_lock);
df06b759
TR
154 kfree(bo->mm);
155 return err;
156}
157
158static int tegra_bo_iommu_unmap(struct tegra_drm *tegra, struct tegra_bo *bo)
159{
160 if (!bo->mm)
161 return 0;
162
347ad49d 163 mutex_lock(&tegra->mm_lock);
df06b759
TR
164 iommu_unmap(tegra->domain, bo->paddr, bo->size);
165 drm_mm_remove_node(bo->mm);
347ad49d
TR
166 mutex_unlock(&tegra->mm_lock);
167
df06b759
TR
168 kfree(bo->mm);
169
170 return 0;
171}
172
c28d4a31
TR
173static struct tegra_bo *tegra_bo_alloc_object(struct drm_device *drm,
174 size_t size)
175{
176 struct tegra_bo *bo;
177 int err;
178
179 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
180 if (!bo)
181 return ERR_PTR(-ENOMEM);
182
183 host1x_bo_init(&bo->base, &tegra_bo_ops);
184 size = round_up(size, PAGE_SIZE);
185
186 err = drm_gem_object_init(drm, &bo->gem, size);
187 if (err < 0)
188 goto free;
189
190 err = drm_gem_create_mmap_offset(&bo->gem);
191 if (err < 0)
192 goto release;
193
194 return bo;
195
196release:
197 drm_gem_object_release(&bo->gem);
198free:
199 kfree(bo);
200 return ERR_PTR(err);
201}
202
df06b759 203static void tegra_bo_free(struct drm_device *drm, struct tegra_bo *bo)
de2ba664 204{
df06b759
TR
205 if (bo->pages) {
206 drm_gem_put_pages(&bo->gem, bo->pages, true, true);
207 sg_free_table(bo->sgt);
208 kfree(bo->sgt);
7e0180e3 209 } else if (bo->vaddr) {
f6e45661 210 dma_free_wc(drm->dev, bo->gem.size, bo->vaddr, bo->paddr);
df06b759
TR
211 }
212}
213
73c42c79 214static int tegra_bo_get_pages(struct drm_device *drm, struct tegra_bo *bo)
df06b759 215{
a04251fc 216 struct scatterlist *s;
a04251fc
TR
217 unsigned int i;
218
df06b759
TR
219 bo->pages = drm_gem_get_pages(&bo->gem);
220 if (IS_ERR(bo->pages))
221 return PTR_ERR(bo->pages);
222
73c42c79 223 bo->num_pages = bo->gem.size >> PAGE_SHIFT;
df06b759 224
fd73caa5
TR
225 bo->sgt = drm_prime_pages_to_sg(bo->pages, bo->num_pages);
226 if (IS_ERR(bo->sgt))
a04251fc
TR
227 goto put_pages;
228
229 /*
fd73caa5
TR
230 * Fake up the SG table so that dma_sync_sg_for_device() can be used
231 * to flush the pages associated with it.
a04251fc
TR
232 *
233 * TODO: Replace this by drm_clflash_sg() once it can be implemented
234 * without relying on symbols that are not exported.
235 */
fd73caa5 236 for_each_sg(bo->sgt->sgl, s, bo->sgt->nents, i)
a04251fc
TR
237 sg_dma_address(s) = sg_phys(s);
238
fd73caa5
TR
239 dma_sync_sg_for_device(drm->dev, bo->sgt->sgl, bo->sgt->nents,
240 DMA_TO_DEVICE);
a04251fc 241
df06b759 242 return 0;
a04251fc 243
a04251fc
TR
244put_pages:
245 drm_gem_put_pages(&bo->gem, bo->pages, false, false);
fd73caa5 246 return PTR_ERR(bo->sgt);
df06b759
TR
247}
248
73c42c79 249static int tegra_bo_alloc(struct drm_device *drm, struct tegra_bo *bo)
df06b759
TR
250{
251 struct tegra_drm *tegra = drm->dev_private;
252 int err;
253
254 if (tegra->domain) {
73c42c79 255 err = tegra_bo_get_pages(drm, bo);
df06b759
TR
256 if (err < 0)
257 return err;
258
259 err = tegra_bo_iommu_map(tegra, bo);
260 if (err < 0) {
261 tegra_bo_free(drm, bo);
262 return err;
263 }
264 } else {
73c42c79
TR
265 size_t size = bo->gem.size;
266
f6e45661
LR
267 bo->vaddr = dma_alloc_wc(drm->dev, size, &bo->paddr,
268 GFP_KERNEL | __GFP_NOWARN);
df06b759
TR
269 if (!bo->vaddr) {
270 dev_err(drm->dev,
271 "failed to allocate buffer of size %zu\n",
272 size);
273 return -ENOMEM;
274 }
275 }
276
277 return 0;
de2ba664
AM
278}
279
71c38629 280struct tegra_bo *tegra_bo_create(struct drm_device *drm, size_t size,
773af77f 281 unsigned long flags)
de2ba664
AM
282{
283 struct tegra_bo *bo;
284 int err;
285
c28d4a31
TR
286 bo = tegra_bo_alloc_object(drm, size);
287 if (IS_ERR(bo))
288 return bo;
de2ba664 289
73c42c79 290 err = tegra_bo_alloc(drm, bo);
df06b759
TR
291 if (err < 0)
292 goto release;
de2ba664 293
773af77f 294 if (flags & DRM_TEGRA_GEM_CREATE_TILED)
c134f019 295 bo->tiling.mode = TEGRA_BO_TILING_MODE_TILED;
773af77f 296
db7fbdfd
TR
297 if (flags & DRM_TEGRA_GEM_CREATE_BOTTOM_UP)
298 bo->flags |= TEGRA_BO_BOTTOM_UP;
299
de2ba664
AM
300 return bo;
301
df06b759
TR
302release:
303 drm_gem_object_release(&bo->gem);
de2ba664 304 kfree(bo);
de2ba664 305 return ERR_PTR(err);
de2ba664
AM
306}
307
308struct tegra_bo *tegra_bo_create_with_handle(struct drm_file *file,
3be82743 309 struct drm_device *drm,
71c38629 310 size_t size,
773af77f 311 unsigned long flags,
71c38629 312 u32 *handle)
de2ba664
AM
313{
314 struct tegra_bo *bo;
a8b48df5 315 int err;
de2ba664 316
773af77f 317 bo = tegra_bo_create(drm, size, flags);
de2ba664
AM
318 if (IS_ERR(bo))
319 return bo;
320
a8b48df5
TR
321 err = drm_gem_handle_create(file, &bo->gem, handle);
322 if (err) {
323 tegra_bo_free_object(&bo->gem);
324 return ERR_PTR(err);
325 }
de2ba664 326
7664b2fa 327 drm_gem_object_put_unlocked(&bo->gem);
de2ba664
AM
328
329 return bo;
de2ba664
AM
330}
331
540457cc
TR
332static struct tegra_bo *tegra_bo_import(struct drm_device *drm,
333 struct dma_buf *buf)
3800391d 334{
df06b759 335 struct tegra_drm *tegra = drm->dev_private;
3800391d
TR
336 struct dma_buf_attachment *attach;
337 struct tegra_bo *bo;
3800391d
TR
338 int err;
339
c28d4a31
TR
340 bo = tegra_bo_alloc_object(drm, buf->size);
341 if (IS_ERR(bo))
342 return bo;
3800391d
TR
343
344 attach = dma_buf_attach(buf, drm->dev);
345 if (IS_ERR(attach)) {
346 err = PTR_ERR(attach);
c28d4a31 347 goto free;
3800391d
TR
348 }
349
350 get_dma_buf(buf);
351
352 bo->sgt = dma_buf_map_attachment(attach, DMA_TO_DEVICE);
3800391d
TR
353 if (IS_ERR(bo->sgt)) {
354 err = PTR_ERR(bo->sgt);
355 goto detach;
356 }
357
df06b759
TR
358 if (tegra->domain) {
359 err = tegra_bo_iommu_map(tegra, bo);
360 if (err < 0)
361 goto detach;
362 } else {
363 if (bo->sgt->nents > 1) {
364 err = -EINVAL;
365 goto detach;
366 }
367
368 bo->paddr = sg_dma_address(bo->sgt->sgl);
3800391d
TR
369 }
370
3800391d
TR
371 bo->gem.import_attach = attach;
372
373 return bo;
374
375detach:
376 if (!IS_ERR_OR_NULL(bo->sgt))
377 dma_buf_unmap_attachment(attach, bo->sgt, DMA_TO_DEVICE);
378
379 dma_buf_detach(buf, attach);
380 dma_buf_put(buf);
3800391d 381free:
c28d4a31 382 drm_gem_object_release(&bo->gem);
3800391d 383 kfree(bo);
3800391d
TR
384 return ERR_PTR(err);
385}
386
de2ba664
AM
387void tegra_bo_free_object(struct drm_gem_object *gem)
388{
df06b759 389 struct tegra_drm *tegra = gem->dev->dev_private;
de2ba664
AM
390 struct tegra_bo *bo = to_tegra_bo(gem);
391
df06b759
TR
392 if (tegra->domain)
393 tegra_bo_iommu_unmap(tegra, bo);
394
3800391d
TR
395 if (gem->import_attach) {
396 dma_buf_unmap_attachment(gem->import_attach, bo->sgt,
397 DMA_TO_DEVICE);
398 drm_prime_gem_destroy(gem, NULL);
399 } else {
df06b759 400 tegra_bo_free(gem->dev, bo);
3800391d
TR
401 }
402
de2ba664 403 drm_gem_object_release(gem);
de2ba664
AM
404 kfree(bo);
405}
406
407int tegra_bo_dumb_create(struct drm_file *file, struct drm_device *drm,
408 struct drm_mode_create_dumb *args)
409{
dc6057ec 410 unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
d1f3e1e0 411 struct tegra_drm *tegra = drm->dev_private;
de2ba664
AM
412 struct tegra_bo *bo;
413
dc6057ec
TR
414 args->pitch = round_up(min_pitch, tegra->pitch_align);
415 args->size = args->pitch * args->height;
de2ba664 416
773af77f 417 bo = tegra_bo_create_with_handle(file, drm, args->size, 0,
3be82743 418 &args->handle);
de2ba664
AM
419 if (IS_ERR(bo))
420 return PTR_ERR(bo);
421
422 return 0;
423}
424
11bac800 425static int tegra_bo_fault(struct vm_fault *vmf)
df06b759 426{
11bac800 427 struct vm_area_struct *vma = vmf->vma;
df06b759
TR
428 struct drm_gem_object *gem = vma->vm_private_data;
429 struct tegra_bo *bo = to_tegra_bo(gem);
430 struct page *page;
431 pgoff_t offset;
432 int err;
433
434 if (!bo->pages)
435 return VM_FAULT_SIGBUS;
436
1a29d85e 437 offset = (vmf->address - vma->vm_start) >> PAGE_SHIFT;
df06b759
TR
438 page = bo->pages[offset];
439
1a29d85e 440 err = vm_insert_page(vma, vmf->address, page);
df06b759
TR
441 switch (err) {
442 case -EAGAIN:
443 case 0:
444 case -ERESTARTSYS:
445 case -EINTR:
446 case -EBUSY:
447 return VM_FAULT_NOPAGE;
448
449 case -ENOMEM:
450 return VM_FAULT_OOM;
451 }
452
453 return VM_FAULT_SIGBUS;
454}
455
de2ba664 456const struct vm_operations_struct tegra_bo_vm_ops = {
df06b759 457 .fault = tegra_bo_fault,
de2ba664
AM
458 .open = drm_gem_vm_open,
459 .close = drm_gem_vm_close,
460};
461
a8bc8c65
TR
462static int tegra_gem_mmap(struct drm_gem_object *gem,
463 struct vm_area_struct *vma)
de2ba664 464{
a8bc8c65 465 struct tegra_bo *bo = to_tegra_bo(gem);
de2ba664 466
df06b759
TR
467 if (!bo->pages) {
468 unsigned long vm_pgoff = vma->vm_pgoff;
a8bc8c65 469 int err;
53ea7213 470
a8bc8c65
TR
471 /*
472 * Clear the VM_PFNMAP flag that was set by drm_gem_mmap(),
473 * and set the vm_pgoff (used as a fake buffer offset by DRM)
474 * to 0 as we want to map the whole buffer.
475 */
df06b759
TR
476 vma->vm_flags &= ~VM_PFNMAP;
477 vma->vm_pgoff = 0;
478
a8bc8c65 479 err = dma_mmap_wc(gem->dev->dev, vma, bo->vaddr, bo->paddr,
f6e45661 480 gem->size);
a8bc8c65 481 if (err < 0) {
df06b759 482 drm_gem_vm_close(vma);
a8bc8c65 483 return err;
df06b759
TR
484 }
485
486 vma->vm_pgoff = vm_pgoff;
487 } else {
488 pgprot_t prot = vm_get_page_prot(vma->vm_flags);
53ea7213 489
df06b759
TR
490 vma->vm_flags |= VM_MIXEDMAP;
491 vma->vm_flags &= ~VM_PFNMAP;
492
493 vma->vm_page_prot = pgprot_writecombine(prot);
494 }
de2ba664 495
53ea7213 496 return 0;
de2ba664 497}
3800391d 498
a8bc8c65
TR
499int tegra_drm_mmap(struct file *file, struct vm_area_struct *vma)
500{
501 struct drm_gem_object *gem;
502 int err;
503
504 err = drm_gem_mmap(file, vma);
505 if (err < 0)
506 return err;
507
508 gem = vma->vm_private_data;
509
510 return tegra_gem_mmap(gem, vma);
511}
512
3800391d
TR
513static struct sg_table *
514tegra_gem_prime_map_dma_buf(struct dma_buf_attachment *attach,
515 enum dma_data_direction dir)
516{
517 struct drm_gem_object *gem = attach->dmabuf->priv;
518 struct tegra_bo *bo = to_tegra_bo(gem);
519 struct sg_table *sgt;
520
521 sgt = kmalloc(sizeof(*sgt), GFP_KERNEL);
522 if (!sgt)
523 return NULL;
524
df06b759
TR
525 if (bo->pages) {
526 struct scatterlist *sg;
527 unsigned int i;
528
529 if (sg_alloc_table(sgt, bo->num_pages, GFP_KERNEL))
530 goto free;
3800391d 531
df06b759
TR
532 for_each_sg(sgt->sgl, sg, bo->num_pages, i)
533 sg_set_page(sg, bo->pages[i], PAGE_SIZE, 0);
534
535 if (dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir) == 0)
536 goto free;
537 } else {
538 if (sg_alloc_table(sgt, 1, GFP_KERNEL))
539 goto free;
540
541 sg_dma_address(sgt->sgl) = bo->paddr;
542 sg_dma_len(sgt->sgl) = gem->size;
543 }
3800391d
TR
544
545 return sgt;
df06b759
TR
546
547free:
548 sg_free_table(sgt);
549 kfree(sgt);
550 return NULL;
3800391d
TR
551}
552
553static void tegra_gem_prime_unmap_dma_buf(struct dma_buf_attachment *attach,
554 struct sg_table *sgt,
555 enum dma_data_direction dir)
556{
df06b759
TR
557 struct drm_gem_object *gem = attach->dmabuf->priv;
558 struct tegra_bo *bo = to_tegra_bo(gem);
559
560 if (bo->pages)
561 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents, dir);
562
3800391d
TR
563 sg_free_table(sgt);
564 kfree(sgt);
565}
566
567static void tegra_gem_prime_release(struct dma_buf *buf)
568{
569 drm_gem_dmabuf_release(buf);
570}
571
572static void *tegra_gem_prime_kmap_atomic(struct dma_buf *buf,
573 unsigned long page)
574{
575 return NULL;
576}
577
578static void tegra_gem_prime_kunmap_atomic(struct dma_buf *buf,
579 unsigned long page,
580 void *addr)
581{
582}
583
584static void *tegra_gem_prime_kmap(struct dma_buf *buf, unsigned long page)
585{
586 return NULL;
587}
588
589static void tegra_gem_prime_kunmap(struct dma_buf *buf, unsigned long page,
590 void *addr)
591{
592}
593
594static int tegra_gem_prime_mmap(struct dma_buf *buf, struct vm_area_struct *vma)
595{
a8bc8c65
TR
596 struct drm_gem_object *gem = buf->priv;
597 int err;
598
599 err = drm_gem_mmap_obj(gem, gem->size, vma);
600 if (err < 0)
601 return err;
602
603 return tegra_gem_mmap(gem, vma);
3800391d
TR
604}
605
d40326f4
TR
606static void *tegra_gem_prime_vmap(struct dma_buf *buf)
607{
608 struct drm_gem_object *gem = buf->priv;
609 struct tegra_bo *bo = to_tegra_bo(gem);
610
611 return bo->vaddr;
612}
613
614static void tegra_gem_prime_vunmap(struct dma_buf *buf, void *vaddr)
615{
616}
617
3800391d
TR
618static const struct dma_buf_ops tegra_gem_prime_dmabuf_ops = {
619 .map_dma_buf = tegra_gem_prime_map_dma_buf,
620 .unmap_dma_buf = tegra_gem_prime_unmap_dma_buf,
621 .release = tegra_gem_prime_release,
f9b67f00
LG
622 .map_atomic = tegra_gem_prime_kmap_atomic,
623 .unmap_atomic = tegra_gem_prime_kunmap_atomic,
624 .map = tegra_gem_prime_kmap,
625 .unmap = tegra_gem_prime_kunmap,
3800391d 626 .mmap = tegra_gem_prime_mmap,
d40326f4
TR
627 .vmap = tegra_gem_prime_vmap,
628 .vunmap = tegra_gem_prime_vunmap,
3800391d
TR
629};
630
631struct dma_buf *tegra_gem_prime_export(struct drm_device *drm,
632 struct drm_gem_object *gem,
633 int flags)
634{
d8fbe341
SS
635 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
636
637 exp_info.ops = &tegra_gem_prime_dmabuf_ops;
638 exp_info.size = gem->size;
639 exp_info.flags = flags;
640 exp_info.priv = gem;
641
a4fce9cb 642 return drm_gem_dmabuf_export(drm, &exp_info);
3800391d
TR
643}
644
645struct drm_gem_object *tegra_gem_prime_import(struct drm_device *drm,
646 struct dma_buf *buf)
647{
648 struct tegra_bo *bo;
649
650 if (buf->ops == &tegra_gem_prime_dmabuf_ops) {
651 struct drm_gem_object *gem = buf->priv;
652
653 if (gem->dev == drm) {
7664b2fa 654 drm_gem_object_get(gem);
3800391d
TR
655 return gem;
656 }
657 }
658
659 bo = tegra_bo_import(drm, buf);
660 if (IS_ERR(bo))
661 return ERR_CAST(bo);
662
663 return &bo->gem;
664}