• Home
  • Raw
  • Download

Lines Matching refs:bo

23 static void tegra_bo_put(struct host1x_bo *bo)  in tegra_bo_put()  argument
25 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_put()
53 static struct sg_table *tegra_bo_pin(struct device *dev, struct host1x_bo *bo, in tegra_bo_pin() argument
56 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_pin()
132 static void *tegra_bo_mmap(struct host1x_bo *bo) in tegra_bo_mmap() argument
134 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_mmap()
145 static void tegra_bo_munmap(struct host1x_bo *bo, void *addr) in tegra_bo_munmap() argument
147 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_munmap()
157 static struct host1x_bo *tegra_bo_get(struct host1x_bo *bo) in tegra_bo_get() argument
159 struct tegra_bo *obj = host1x_to_tegra_bo(bo); in tegra_bo_get()
163 return bo; in tegra_bo_get()
175 static int tegra_bo_iommu_map(struct tegra_drm *tegra, struct tegra_bo *bo) in tegra_bo_iommu_map() argument
180 if (bo->mm) in tegra_bo_iommu_map()
183 bo->mm = kzalloc(sizeof(*bo->mm), GFP_KERNEL); in tegra_bo_iommu_map()
184 if (!bo->mm) in tegra_bo_iommu_map()
190 bo->mm, bo->gem.size, PAGE_SIZE, 0, 0); in tegra_bo_iommu_map()
197 bo->iova = bo->mm->start; in tegra_bo_iommu_map()
199 bo->size = iommu_map_sgtable(tegra->domain, bo->iova, bo->sgt, prot); in tegra_bo_iommu_map()
200 if (!bo->size) { in tegra_bo_iommu_map()
211 drm_mm_remove_node(bo->mm); in tegra_bo_iommu_map()
214 kfree(bo->mm); in tegra_bo_iommu_map()
218 static int tegra_bo_iommu_unmap(struct tegra_drm *tegra, struct tegra_bo *bo) in tegra_bo_iommu_unmap() argument
220 if (!bo->mm) in tegra_bo_iommu_unmap()
224 iommu_unmap(tegra->domain, bo->iova, bo->size); in tegra_bo_iommu_unmap()
225 drm_mm_remove_node(bo->mm); in tegra_bo_iommu_unmap()
228 kfree(bo->mm); in tegra_bo_iommu_unmap()
236 struct tegra_bo *bo; in tegra_bo_alloc_object() local
239 bo = kzalloc(sizeof(*bo), GFP_KERNEL); in tegra_bo_alloc_object()
240 if (!bo) in tegra_bo_alloc_object()
243 host1x_bo_init(&bo->base, &tegra_bo_ops); in tegra_bo_alloc_object()
246 err = drm_gem_object_init(drm, &bo->gem, size); in tegra_bo_alloc_object()
250 err = drm_gem_create_mmap_offset(&bo->gem); in tegra_bo_alloc_object()
254 return bo; in tegra_bo_alloc_object()
257 drm_gem_object_release(&bo->gem); in tegra_bo_alloc_object()
259 kfree(bo); in tegra_bo_alloc_object()
263 static void tegra_bo_free(struct drm_device *drm, struct tegra_bo *bo) in tegra_bo_free() argument
265 if (bo->pages) { in tegra_bo_free()
266 dma_unmap_sgtable(drm->dev, bo->sgt, DMA_FROM_DEVICE, 0); in tegra_bo_free()
267 drm_gem_put_pages(&bo->gem, bo->pages, true, true); in tegra_bo_free()
268 sg_free_table(bo->sgt); in tegra_bo_free()
269 kfree(bo->sgt); in tegra_bo_free()
270 } else if (bo->vaddr) { in tegra_bo_free()
271 dma_free_wc(drm->dev, bo->gem.size, bo->vaddr, bo->iova); in tegra_bo_free()
275 static int tegra_bo_get_pages(struct drm_device *drm, struct tegra_bo *bo) in tegra_bo_get_pages() argument
279 bo->pages = drm_gem_get_pages(&bo->gem); in tegra_bo_get_pages()
280 if (IS_ERR(bo->pages)) in tegra_bo_get_pages()
281 return PTR_ERR(bo->pages); in tegra_bo_get_pages()
283 bo->num_pages = bo->gem.size >> PAGE_SHIFT; in tegra_bo_get_pages()
285 bo->sgt = drm_prime_pages_to_sg(bo->gem.dev, bo->pages, bo->num_pages); in tegra_bo_get_pages()
286 if (IS_ERR(bo->sgt)) { in tegra_bo_get_pages()
287 err = PTR_ERR(bo->sgt); in tegra_bo_get_pages()
291 err = dma_map_sgtable(drm->dev, bo->sgt, DMA_FROM_DEVICE, 0); in tegra_bo_get_pages()
298 sg_free_table(bo->sgt); in tegra_bo_get_pages()
299 kfree(bo->sgt); in tegra_bo_get_pages()
301 drm_gem_put_pages(&bo->gem, bo->pages, false, false); in tegra_bo_get_pages()
305 static int tegra_bo_alloc(struct drm_device *drm, struct tegra_bo *bo) in tegra_bo_alloc() argument
311 err = tegra_bo_get_pages(drm, bo); in tegra_bo_alloc()
315 err = tegra_bo_iommu_map(tegra, bo); in tegra_bo_alloc()
317 tegra_bo_free(drm, bo); in tegra_bo_alloc()
321 size_t size = bo->gem.size; in tegra_bo_alloc()
323 bo->vaddr = dma_alloc_wc(drm->dev, size, &bo->iova, in tegra_bo_alloc()
325 if (!bo->vaddr) { in tegra_bo_alloc()
339 struct tegra_bo *bo; in tegra_bo_create() local
342 bo = tegra_bo_alloc_object(drm, size); in tegra_bo_create()
343 if (IS_ERR(bo)) in tegra_bo_create()
344 return bo; in tegra_bo_create()
346 err = tegra_bo_alloc(drm, bo); in tegra_bo_create()
351 bo->tiling.mode = TEGRA_BO_TILING_MODE_TILED; in tegra_bo_create()
354 bo->flags |= TEGRA_BO_BOTTOM_UP; in tegra_bo_create()
356 return bo; in tegra_bo_create()
359 drm_gem_object_release(&bo->gem); in tegra_bo_create()
360 kfree(bo); in tegra_bo_create()
370 struct tegra_bo *bo; in tegra_bo_create_with_handle() local
373 bo = tegra_bo_create(drm, size, flags); in tegra_bo_create_with_handle()
374 if (IS_ERR(bo)) in tegra_bo_create_with_handle()
375 return bo; in tegra_bo_create_with_handle()
377 err = drm_gem_handle_create(file, &bo->gem, handle); in tegra_bo_create_with_handle()
379 tegra_bo_free_object(&bo->gem); in tegra_bo_create_with_handle()
383 drm_gem_object_put(&bo->gem); in tegra_bo_create_with_handle()
385 return bo; in tegra_bo_create_with_handle()
393 struct tegra_bo *bo; in tegra_bo_import() local
396 bo = tegra_bo_alloc_object(drm, buf->size); in tegra_bo_import()
397 if (IS_ERR(bo)) in tegra_bo_import()
398 return bo; in tegra_bo_import()
408 bo->sgt = dma_buf_map_attachment(attach, DMA_TO_DEVICE); in tegra_bo_import()
409 if (IS_ERR(bo->sgt)) { in tegra_bo_import()
410 err = PTR_ERR(bo->sgt); in tegra_bo_import()
415 err = tegra_bo_iommu_map(tegra, bo); in tegra_bo_import()
420 bo->gem.import_attach = attach; in tegra_bo_import()
422 return bo; in tegra_bo_import()
425 if (!IS_ERR_OR_NULL(bo->sgt)) in tegra_bo_import()
426 dma_buf_unmap_attachment(attach, bo->sgt, DMA_TO_DEVICE); in tegra_bo_import()
431 drm_gem_object_release(&bo->gem); in tegra_bo_import()
432 kfree(bo); in tegra_bo_import()
439 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_bo_free_object() local
442 tegra_bo_iommu_unmap(tegra, bo); in tegra_bo_free_object()
445 dma_buf_unmap_attachment(gem->import_attach, bo->sgt, in tegra_bo_free_object()
449 tegra_bo_free(gem->dev, bo); in tegra_bo_free_object()
453 kfree(bo); in tegra_bo_free_object()
461 struct tegra_bo *bo; in tegra_bo_dumb_create() local
466 bo = tegra_bo_create_with_handle(file, drm, args->size, 0, in tegra_bo_dumb_create()
468 if (IS_ERR(bo)) in tegra_bo_dumb_create()
469 return PTR_ERR(bo); in tegra_bo_dumb_create()
478 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_bo_fault() local
482 if (!bo->pages) in tegra_bo_fault()
486 page = bo->pages[offset]; in tegra_bo_fault()
499 struct tegra_bo *bo = to_tegra_bo(gem); in __tegra_gem_mmap() local
501 if (!bo->pages) { in __tegra_gem_mmap()
513 err = dma_mmap_wc(gem->dev->dev, vma, bo->vaddr, bo->iova, in __tegra_gem_mmap()
552 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_map_dma_buf() local
559 if (bo->pages) { in tegra_gem_prime_map_dma_buf()
560 if (sg_alloc_table_from_pages(sgt, bo->pages, bo->num_pages, in tegra_gem_prime_map_dma_buf()
564 if (dma_get_sgtable(attach->dev, sgt, bo->vaddr, bo->iova, in tegra_gem_prime_map_dma_buf()
585 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_unmap_dma_buf() local
587 if (bo->pages) in tegra_gem_prime_unmap_dma_buf()
603 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_begin_cpu_access() local
606 if (bo->pages) in tegra_gem_prime_begin_cpu_access()
607 dma_sync_sgtable_for_cpu(drm->dev, bo->sgt, DMA_FROM_DEVICE); in tegra_gem_prime_begin_cpu_access()
616 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_end_cpu_access() local
619 if (bo->pages) in tegra_gem_prime_end_cpu_access()
620 dma_sync_sgtable_for_device(drm->dev, bo->sgt, DMA_TO_DEVICE); in tegra_gem_prime_end_cpu_access()
640 struct tegra_bo *bo = to_tegra_bo(gem); in tegra_gem_prime_vmap() local
642 return bo->vaddr; in tegra_gem_prime_vmap()
678 struct tegra_bo *bo; in tegra_gem_prime_import() local
689 bo = tegra_bo_import(drm, buf); in tegra_gem_prime_import()
690 if (IS_ERR(bo)) in tegra_gem_prime_import()
691 return ERR_CAST(bo); in tegra_gem_prime_import()
693 return &bo->gem; in tegra_gem_prime_import()