1 // SPDX-License-Identifier: GPL-2.0-only
3 * NVIDIA Tegra DRM GEM helper functions
5 * Copyright (C) 2012 Sascha Hauer, Pengutronix
6 * Copyright (C) 2013-2015 NVIDIA CORPORATION, All rights reserved.
8 * Based on the GEM/CMA helpers
10 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
13 #include <linux/dma-buf.h>
14 #include <linux/iommu.h>
16 #include <drm/drm_drv.h>
17 #include <drm/drm_prime.h>
18 #include <drm/tegra_drm.h>
23 static void tegra_bo_put(struct host1x_bo *bo)
25 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
27 drm_gem_object_put(&obj->gem);
30 /* XXX move this into lib/scatterlist.c? */
31 static int sg_alloc_table_from_sg(struct sg_table *sgt, struct scatterlist *sg,
32 unsigned int nents, gfp_t gfp_mask)
34 struct scatterlist *dst;
38 err = sg_alloc_table(sgt, nents, gfp_mask);
44 for (i = 0; i < nents; i++) {
45 sg_set_page(dst, sg_page(sg), sg->length, 0);
53 static struct sg_table *tegra_bo_pin(struct device *dev, struct host1x_bo *bo,
56 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
61 * If we've manually mapped the buffer object through the IOMMU, make
62 * sure to return the IOVA address of our mapping.
64 * Similarly, for buffers that have been allocated by the DMA API the
65 * physical address can be used for devices that are not attached to
66 * an IOMMU. For these devices, callers must pass a valid pointer via
69 * Imported buffers were also already mapped at import time, so the
70 * existing mapping can be reused.
78 * If we don't have a mapping for this buffer yet, return an SG table
79 * so that host1x can do the mapping for us via the DMA API.
81 sgt = kzalloc(sizeof(*sgt), GFP_KERNEL);
83 return ERR_PTR(-ENOMEM);
87 * If the buffer object was allocated from the explicit IOMMU
88 * API code paths, construct an SG table from the pages.
90 err = sg_alloc_table_from_pages(sgt, obj->pages, obj->num_pages,
91 0, obj->gem.size, GFP_KERNEL);
94 } else if (obj->sgt) {
96 * If the buffer object already has an SG table but no pages
97 * were allocated for it, it means the buffer was imported and
98 * the SG table needs to be copied to avoid overwriting any
99 * other potential users of the original SG table.
101 err = sg_alloc_table_from_sg(sgt, obj->sgt->sgl, obj->sgt->nents,
107 * If the buffer object had no pages allocated and if it was
108 * not imported, it had to be allocated with the DMA API, so
109 * the DMA API helper can be used.
111 err = dma_get_sgtable(dev, sgt, obj->vaddr, obj->iova,
124 static void tegra_bo_unpin(struct device *dev, struct sg_table *sgt)
132 static void *tegra_bo_mmap(struct host1x_bo *bo)
134 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
138 else if (obj->gem.import_attach)
139 return dma_buf_vmap(obj->gem.import_attach->dmabuf);
141 return vmap(obj->pages, obj->num_pages, VM_MAP,
142 pgprot_writecombine(PAGE_KERNEL));
145 static void tegra_bo_munmap(struct host1x_bo *bo, void *addr)
147 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
151 else if (obj->gem.import_attach)
152 dma_buf_vunmap(obj->gem.import_attach->dmabuf, addr);
157 static struct host1x_bo *tegra_bo_get(struct host1x_bo *bo)
159 struct tegra_bo *obj = host1x_to_tegra_bo(bo);
161 drm_gem_object_get(&obj->gem);
166 static const struct host1x_bo_ops tegra_bo_ops = {
170 .unpin = tegra_bo_unpin,
171 .mmap = tegra_bo_mmap,
172 .munmap = tegra_bo_munmap,
175 static int tegra_bo_iommu_map(struct tegra_drm *tegra, struct tegra_bo *bo)
177 int prot = IOMMU_READ | IOMMU_WRITE;
183 bo->mm = kzalloc(sizeof(*bo->mm), GFP_KERNEL);
187 mutex_lock(&tegra->mm_lock);
189 err = drm_mm_insert_node_generic(&tegra->mm,
190 bo->mm, bo->gem.size, PAGE_SIZE, 0, 0);
192 dev_err(tegra->drm->dev, "out of I/O virtual memory: %d\n",
197 bo->iova = bo->mm->start;
199 bo->size = iommu_map_sg(tegra->domain, bo->iova, bo->sgt->sgl,
200 bo->sgt->nents, prot);
202 dev_err(tegra->drm->dev, "failed to map buffer\n");
207 mutex_unlock(&tegra->mm_lock);
212 drm_mm_remove_node(bo->mm);
214 mutex_unlock(&tegra->mm_lock);
219 static int tegra_bo_iommu_unmap(struct tegra_drm *tegra, struct tegra_bo *bo)
224 mutex_lock(&tegra->mm_lock);
225 iommu_unmap(tegra->domain, bo->iova, bo->size);
226 drm_mm_remove_node(bo->mm);
227 mutex_unlock(&tegra->mm_lock);
234 static struct tegra_bo *tegra_bo_alloc_object(struct drm_device *drm,
240 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
242 return ERR_PTR(-ENOMEM);
244 host1x_bo_init(&bo->base, &tegra_bo_ops);
245 size = round_up(size, PAGE_SIZE);
247 err = drm_gem_object_init(drm, &bo->gem, size);
251 err = drm_gem_create_mmap_offset(&bo->gem);
258 drm_gem_object_release(&bo->gem);
264 static void tegra_bo_free(struct drm_device *drm, struct tegra_bo *bo)
267 dma_unmap_sg(drm->dev, bo->sgt->sgl, bo->sgt->nents,
269 drm_gem_put_pages(&bo->gem, bo->pages, true, true);
270 sg_free_table(bo->sgt);
272 } else if (bo->vaddr) {
273 dma_free_wc(drm->dev, bo->gem.size, bo->vaddr, bo->iova);
277 static int tegra_bo_get_pages(struct drm_device *drm, struct tegra_bo *bo)
281 bo->pages = drm_gem_get_pages(&bo->gem);
282 if (IS_ERR(bo->pages))
283 return PTR_ERR(bo->pages);
285 bo->num_pages = bo->gem.size >> PAGE_SHIFT;
287 bo->sgt = drm_prime_pages_to_sg(bo->gem.dev, bo->pages, bo->num_pages);
288 if (IS_ERR(bo->sgt)) {
289 err = PTR_ERR(bo->sgt);
293 err = dma_map_sg(drm->dev, bo->sgt->sgl, bo->sgt->nents,
303 sg_free_table(bo->sgt);
306 drm_gem_put_pages(&bo->gem, bo->pages, false, false);
310 static int tegra_bo_alloc(struct drm_device *drm, struct tegra_bo *bo)
312 struct tegra_drm *tegra = drm->dev_private;
316 err = tegra_bo_get_pages(drm, bo);
320 err = tegra_bo_iommu_map(tegra, bo);
322 tegra_bo_free(drm, bo);
326 size_t size = bo->gem.size;
328 bo->vaddr = dma_alloc_wc(drm->dev, size, &bo->iova,
329 GFP_KERNEL | __GFP_NOWARN);
332 "failed to allocate buffer of size %zu\n",
341 struct tegra_bo *tegra_bo_create(struct drm_device *drm, size_t size,
347 bo = tegra_bo_alloc_object(drm, size);
351 err = tegra_bo_alloc(drm, bo);
355 if (flags & DRM_TEGRA_GEM_CREATE_TILED)
356 bo->tiling.mode = TEGRA_BO_TILING_MODE_TILED;
358 if (flags & DRM_TEGRA_GEM_CREATE_BOTTOM_UP)
359 bo->flags |= TEGRA_BO_BOTTOM_UP;
364 drm_gem_object_release(&bo->gem);
369 struct tegra_bo *tegra_bo_create_with_handle(struct drm_file *file,
370 struct drm_device *drm,
378 bo = tegra_bo_create(drm, size, flags);
382 err = drm_gem_handle_create(file, &bo->gem, handle);
384 tegra_bo_free_object(&bo->gem);
388 drm_gem_object_put(&bo->gem);
393 static struct tegra_bo *tegra_bo_import(struct drm_device *drm,
396 struct tegra_drm *tegra = drm->dev_private;
397 struct dma_buf_attachment *attach;
401 bo = tegra_bo_alloc_object(drm, buf->size);
405 attach = dma_buf_attach(buf, drm->dev);
406 if (IS_ERR(attach)) {
407 err = PTR_ERR(attach);
413 bo->sgt = dma_buf_map_attachment(attach, DMA_TO_DEVICE);
414 if (IS_ERR(bo->sgt)) {
415 err = PTR_ERR(bo->sgt);
420 err = tegra_bo_iommu_map(tegra, bo);
425 bo->gem.import_attach = attach;
430 if (!IS_ERR_OR_NULL(bo->sgt))
431 dma_buf_unmap_attachment(attach, bo->sgt, DMA_TO_DEVICE);
433 dma_buf_detach(buf, attach);
436 drm_gem_object_release(&bo->gem);
441 void tegra_bo_free_object(struct drm_gem_object *gem)
443 struct tegra_drm *tegra = gem->dev->dev_private;
444 struct tegra_bo *bo = to_tegra_bo(gem);
447 tegra_bo_iommu_unmap(tegra, bo);
449 if (gem->import_attach) {
450 dma_buf_unmap_attachment(gem->import_attach, bo->sgt,
452 drm_prime_gem_destroy(gem, NULL);
454 tegra_bo_free(gem->dev, bo);
457 drm_gem_object_release(gem);
461 int tegra_bo_dumb_create(struct drm_file *file, struct drm_device *drm,
462 struct drm_mode_create_dumb *args)
464 unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
465 struct tegra_drm *tegra = drm->dev_private;
468 args->pitch = round_up(min_pitch, tegra->pitch_align);
469 args->size = args->pitch * args->height;
471 bo = tegra_bo_create_with_handle(file, drm, args->size, 0,
479 static vm_fault_t tegra_bo_fault(struct vm_fault *vmf)
481 struct vm_area_struct *vma = vmf->vma;
482 struct drm_gem_object *gem = vma->vm_private_data;
483 struct tegra_bo *bo = to_tegra_bo(gem);
488 return VM_FAULT_SIGBUS;
490 offset = (vmf->address - vma->vm_start) >> PAGE_SHIFT;
491 page = bo->pages[offset];
493 return vmf_insert_page(vma, vmf->address, page);
496 const struct vm_operations_struct tegra_bo_vm_ops = {
497 .fault = tegra_bo_fault,
498 .open = drm_gem_vm_open,
499 .close = drm_gem_vm_close,
502 int __tegra_gem_mmap(struct drm_gem_object *gem, struct vm_area_struct *vma)
504 struct tegra_bo *bo = to_tegra_bo(gem);
507 unsigned long vm_pgoff = vma->vm_pgoff;
511 * Clear the VM_PFNMAP flag that was set by drm_gem_mmap(),
512 * and set the vm_pgoff (used as a fake buffer offset by DRM)
513 * to 0 as we want to map the whole buffer.
515 vma->vm_flags &= ~VM_PFNMAP;
518 err = dma_mmap_wc(gem->dev->dev, vma, bo->vaddr, bo->iova,
521 drm_gem_vm_close(vma);
525 vma->vm_pgoff = vm_pgoff;
527 pgprot_t prot = vm_get_page_prot(vma->vm_flags);
529 vma->vm_flags |= VM_MIXEDMAP;
530 vma->vm_flags &= ~VM_PFNMAP;
532 vma->vm_page_prot = pgprot_writecombine(prot);
538 int tegra_drm_mmap(struct file *file, struct vm_area_struct *vma)
540 struct drm_gem_object *gem;
543 err = drm_gem_mmap(file, vma);
547 gem = vma->vm_private_data;
549 return __tegra_gem_mmap(gem, vma);
552 static struct sg_table *
553 tegra_gem_prime_map_dma_buf(struct dma_buf_attachment *attach,
554 enum dma_data_direction dir)
556 struct drm_gem_object *gem = attach->dmabuf->priv;
557 struct tegra_bo *bo = to_tegra_bo(gem);
558 struct sg_table *sgt;
560 sgt = kmalloc(sizeof(*sgt), GFP_KERNEL);
565 if (sg_alloc_table_from_pages(sgt, bo->pages, bo->num_pages,
566 0, gem->size, GFP_KERNEL) < 0)
569 if (dma_get_sgtable(attach->dev, sgt, bo->vaddr, bo->iova,
574 if (dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir) == 0)
585 static void tegra_gem_prime_unmap_dma_buf(struct dma_buf_attachment *attach,
586 struct sg_table *sgt,
587 enum dma_data_direction dir)
589 struct drm_gem_object *gem = attach->dmabuf->priv;
590 struct tegra_bo *bo = to_tegra_bo(gem);
593 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents, dir);
599 static void tegra_gem_prime_release(struct dma_buf *buf)
601 drm_gem_dmabuf_release(buf);
604 static int tegra_gem_prime_begin_cpu_access(struct dma_buf *buf,
605 enum dma_data_direction direction)
607 struct drm_gem_object *gem = buf->priv;
608 struct tegra_bo *bo = to_tegra_bo(gem);
609 struct drm_device *drm = gem->dev;
612 dma_sync_sg_for_cpu(drm->dev, bo->sgt->sgl, bo->sgt->nents,
618 static int tegra_gem_prime_end_cpu_access(struct dma_buf *buf,
619 enum dma_data_direction direction)
621 struct drm_gem_object *gem = buf->priv;
622 struct tegra_bo *bo = to_tegra_bo(gem);
623 struct drm_device *drm = gem->dev;
626 dma_sync_sg_for_device(drm->dev, bo->sgt->sgl, bo->sgt->nents,
632 static int tegra_gem_prime_mmap(struct dma_buf *buf, struct vm_area_struct *vma)
634 struct drm_gem_object *gem = buf->priv;
637 err = drm_gem_mmap_obj(gem, gem->size, vma);
641 return __tegra_gem_mmap(gem, vma);
644 static void *tegra_gem_prime_vmap(struct dma_buf *buf)
646 struct drm_gem_object *gem = buf->priv;
647 struct tegra_bo *bo = to_tegra_bo(gem);
652 static void tegra_gem_prime_vunmap(struct dma_buf *buf, void *vaddr)
656 static const struct dma_buf_ops tegra_gem_prime_dmabuf_ops = {
657 .map_dma_buf = tegra_gem_prime_map_dma_buf,
658 .unmap_dma_buf = tegra_gem_prime_unmap_dma_buf,
659 .release = tegra_gem_prime_release,
660 .begin_cpu_access = tegra_gem_prime_begin_cpu_access,
661 .end_cpu_access = tegra_gem_prime_end_cpu_access,
662 .mmap = tegra_gem_prime_mmap,
663 .vmap = tegra_gem_prime_vmap,
664 .vunmap = tegra_gem_prime_vunmap,
667 struct dma_buf *tegra_gem_prime_export(struct drm_gem_object *gem,
670 DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
672 exp_info.exp_name = KBUILD_MODNAME;
673 exp_info.owner = gem->dev->driver->fops->owner;
674 exp_info.ops = &tegra_gem_prime_dmabuf_ops;
675 exp_info.size = gem->size;
676 exp_info.flags = flags;
679 return drm_gem_dmabuf_export(gem->dev, &exp_info);
682 struct drm_gem_object *tegra_gem_prime_import(struct drm_device *drm,
687 if (buf->ops == &tegra_gem_prime_dmabuf_ops) {
688 struct drm_gem_object *gem = buf->priv;
690 if (gem->dev == drm) {
691 drm_gem_object_get(gem);
696 bo = tegra_bo_import(drm, buf);