Lines Matching refs:bo
51 static void tegra_bo_put(struct host1x_bo *bo) in tegra_bo_put() argument
53 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_put()
58 static struct host1x_bo_mapping *tegra_bo_pin(struct device *dev, struct host1x_bo *bo, in tegra_bo_pin() argument
61 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_pin()
71 map->bo = host1x_bo_get(bo); in tegra_bo_pin()
171 host1x_bo_put(map->bo); in tegra_bo_unpin()
175 static void *tegra_bo_mmap(struct host1x_bo *bo) in tegra_bo_mmap() argument
177 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_mmap()
192 static void tegra_bo_munmap(struct host1x_bo *bo, void *addr) in tegra_bo_munmap() argument
194 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_munmap()
205 static struct host1x_bo *tegra_bo_get(struct host1x_bo *bo) in tegra_bo_get() argument
207 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_get()
211 return bo; in tegra_bo_get()
223 static int tegra_bo_iommu_map(struct tegra_drm *tegra, struct tegra_bo *bo) in tegra_bo_iommu_map() argument
228 if (bo->mm) in tegra_bo_iommu_map()
231 bo->mm = kzalloc(sizeof(*bo->mm), GFP_KERNEL); in tegra_bo_iommu_map()
232 if (!bo->mm) in tegra_bo_iommu_map()
238 bo->mm, bo->gem.size, PAGE_SIZE, 0, 0); in tegra_bo_iommu_map()
245 bo->iova = bo->mm->start; in tegra_bo_iommu_map()
247 bo->size = iommu_map_sgtable(tegra->domain, bo->iova, bo->sgt, prot); in tegra_bo_iommu_map()
248 if (!bo->size) { in tegra_bo_iommu_map()
259 drm_mm_remove_node(bo->mm); in tegra_bo_iommu_map()
262 kfree(bo->mm); in tegra_bo_iommu_map()
266 static int tegra_bo_iommu_unmap(struct tegra_drm *tegra, struct tegra_bo *bo) in tegra_bo_iommu_unmap() argument
268 if (!bo->mm) in tegra_bo_iommu_unmap()
272 iommu_unmap(tegra->domain, bo->iova, bo->size); in tegra_bo_iommu_unmap()
273 drm_mm_remove_node(bo->mm); in tegra_bo_iommu_unmap()
276 kfree(bo->mm); in tegra_bo_iommu_unmap()
290 struct tegra_bo *bo; in tegra_bo_alloc_object() local
293 bo = kzalloc(sizeof(*bo), GFP_KERNEL); in tegra_bo_alloc_object()
294 if (!bo) in tegra_bo_alloc_object()
297 bo->gem.funcs = &tegra_gem_object_funcs; in tegra_bo_alloc_object()
299 host1x_bo_init(&bo->base, &tegra_bo_ops); in tegra_bo_alloc_object()
302 err = drm_gem_object_init(drm, &bo->gem, size); in tegra_bo_alloc_object()
306 err = drm_gem_create_mmap_offset(&bo->gem); in tegra_bo_alloc_object()
310 return bo; in tegra_bo_alloc_object()
313 drm_gem_object_release(&bo->gem); in tegra_bo_alloc_object()
315 kfree(bo); in tegra_bo_alloc_object()
319 static void tegra_bo_free(struct drm_device *drm, struct tegra_bo *bo) in tegra_bo_free() argument
321 if (bo->pages) { in tegra_bo_free()
322 dma_unmap_sgtable(drm->dev, bo->sgt, DMA_FROM_DEVICE, 0); in tegra_bo_free()
323 drm_gem_put_pages(&bo->gem, bo->pages, true, true); in tegra_bo_free()
324 sg_free_table(bo->sgt); in tegra_bo_free()
325 kfree(bo->sgt); in tegra_bo_free()
326 } else if (bo->vaddr) { in tegra_bo_free()
327 dma_free_wc(drm->dev, bo->gem.size, bo->vaddr, bo->iova); in tegra_bo_free()
331 static int tegra_bo_get_pages(struct drm_device *drm, struct tegra_bo *bo) in tegra_bo_get_pages() argument
335 bo->pages = drm_gem_get_pages(&bo->gem); in tegra_bo_get_pages()
336 if (IS_ERR(bo->pages)) in tegra_bo_get_pages()
337 return PTR_ERR(bo->pages); in tegra_bo_get_pages()
339 bo->num_pages = bo->gem.size >> PAGE_SHIFT; in tegra_bo_get_pages()
341 bo->sgt = drm_prime_pages_to_sg(bo->gem.dev, bo->pages, bo->num_pages); in tegra_bo_get_pages()
342 if (IS_ERR(bo->sgt)) { in tegra_bo_get_pages()
343 err = PTR_ERR(bo->sgt); in tegra_bo_get_pages()
347 err = dma_map_sgtable(drm->dev, bo->sgt, DMA_FROM_DEVICE, 0); in tegra_bo_get_pages()
354 sg_free_table(bo->sgt); in tegra_bo_get_pages()
355 kfree(bo->sgt); in tegra_bo_get_pages()
357 drm_gem_put_pages(&bo->gem, bo->pages, false, false); in tegra_bo_get_pages()
361 static int tegra_bo_alloc(struct drm_device *drm, struct tegra_bo *bo) in tegra_bo_alloc() argument
367 err = tegra_bo_get_pages(drm, bo); in tegra_bo_alloc()
371 err = tegra_bo_iommu_map(tegra, bo); in tegra_bo_alloc()
373 tegra_bo_free(drm, bo); in tegra_bo_alloc()
377 size_t size = bo->gem.size; in tegra_bo_alloc()
379 bo->vaddr = dma_alloc_wc(drm->dev, size, &bo->iova, in tegra_bo_alloc()
381 if (!bo->vaddr) { in tegra_bo_alloc()
395 struct tegra_bo *bo; in tegra_bo_create() local
398 bo = tegra_bo_alloc_object(drm, size); in tegra_bo_create()
399 if (IS_ERR(bo)) in tegra_bo_create()
400 return bo; in tegra_bo_create()
402 err = tegra_bo_alloc(drm, bo); in tegra_bo_create()
407 bo->tiling.mode = TEGRA_BO_TILING_MODE_TILED; in tegra_bo_create()
410 bo->flags |= TEGRA_BO_BOTTOM_UP; in tegra_bo_create()
412 return bo; in tegra_bo_create()
415 drm_gem_object_release(&bo->gem); in tegra_bo_create()
416 kfree(bo); in tegra_bo_create()
426 struct tegra_bo *bo; in tegra_bo_create_with_handle() local
429 bo = tegra_bo_create(drm, size, flags); in tegra_bo_create_with_handle()
430 if (IS_ERR(bo)) in tegra_bo_create_with_handle()
431 return bo; in tegra_bo_create_with_handle()
433 err = drm_gem_handle_create(file, &bo->gem, handle); in tegra_bo_create_with_handle()
435 tegra_bo_free_object(&bo->gem); in tegra_bo_create_with_handle()
439 drm_gem_object_put(&bo->gem); in tegra_bo_create_with_handle()
441 return bo; in tegra_bo_create_with_handle()
449 struct tegra_bo *bo; in tegra_bo_import() local
452 bo = tegra_bo_alloc_object(drm, buf->size); in tegra_bo_import()
453 if (IS_ERR(bo)) in tegra_bo_import()
454 return bo; in tegra_bo_import()
464 bo->sgt = dma_buf_map_attachment(attach, DMA_TO_DEVICE); in tegra_bo_import()
465 if (IS_ERR(bo->sgt)) { in tegra_bo_import()
466 err = PTR_ERR(bo->sgt); in tegra_bo_import()
471 err = tegra_bo_iommu_map(tegra, bo); in tegra_bo_import()
476 bo->gem.import_attach = attach; in tegra_bo_import()
478 return bo; in tegra_bo_import()
481 if (!IS_ERR_OR_NULL(bo->sgt)) in tegra_bo_import()
482 dma_buf_unmap_attachment(attach, bo->sgt, DMA_TO_DEVICE); in tegra_bo_import()
487 drm_gem_object_release(&bo->gem); in tegra_bo_import()
488 kfree(bo); in tegra_bo_import()
496 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_bo_free_object() local
499 list_for_each_entry_safe(mapping, tmp, &bo->base.mappings, list) { in tegra_bo_free_object()
508 tegra_bo_iommu_unmap(tegra, bo); in tegra_bo_free_object()
511 dma_buf_unmap_attachment(gem->import_attach, bo->sgt, in tegra_bo_free_object()
515 tegra_bo_free(gem->dev, bo); in tegra_bo_free_object()
519 kfree(bo); in tegra_bo_free_object()
527 struct tegra_bo *bo; in tegra_bo_dumb_create() local
532 bo = tegra_bo_create_with_handle(file, drm, args->size, 0, in tegra_bo_dumb_create()
534 if (IS_ERR(bo)) in tegra_bo_dumb_create()
535 return PTR_ERR(bo); in tegra_bo_dumb_create()
544 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_bo_fault() local
548 if (!bo->pages) in tegra_bo_fault()
552 page = bo->pages[offset]; in tegra_bo_fault()
565 struct tegra_bo *bo = to_tegra_bo(gem); in __tegra_gem_mmap() local
567 if (!bo->pages) { in __tegra_gem_mmap()
579 err = dma_mmap_wc(gem->dev->dev, vma, bo->vaddr, bo->iova, in __tegra_gem_mmap()
618 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_map_dma_buf() local
625 if (bo->pages) { in tegra_gem_prime_map_dma_buf()
626 if (sg_alloc_table_from_pages(sgt, bo->pages, bo->num_pages, in tegra_gem_prime_map_dma_buf()
630 if (dma_get_sgtable(attach->dev, sgt, bo->vaddr, bo->iova, in tegra_gem_prime_map_dma_buf()
651 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_unmap_dma_buf() local
653 if (bo->pages) in tegra_gem_prime_unmap_dma_buf()
669 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_begin_cpu_access() local
672 if (bo->pages) in tegra_gem_prime_begin_cpu_access()
673 dma_sync_sgtable_for_cpu(drm->dev, bo->sgt, DMA_FROM_DEVICE); in tegra_gem_prime_begin_cpu_access()
682 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_end_cpu_access() local
685 if (bo->pages) in tegra_gem_prime_end_cpu_access()
686 dma_sync_sgtable_for_device(drm->dev, bo->sgt, DMA_TO_DEVICE); in tegra_gem_prime_end_cpu_access()
706 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_vmap() local
709 vaddr = tegra_bo_mmap(&bo->base); in tegra_gem_prime_vmap()
721 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_vunmap() local
723 tegra_bo_munmap(&bo->base, map->vaddr); in tegra_gem_prime_vunmap()
755 struct tegra_bo *bo; in tegra_gem_prime_import() local
766 bo = tegra_bo_import(drm, buf); in tegra_gem_prime_import()
767 if (IS_ERR(bo)) in tegra_gem_prime_import()
768 return ERR_CAST(bo); in tegra_gem_prime_import()
770 return &bo->gem; in tegra_gem_prime_import()
776 struct tegra_bo *bo; in tegra_gem_lookup() local
782 bo = to_tegra_bo(gem); in tegra_gem_lookup()
783 return &bo->base; in tegra_gem_lookup()