Commit 53ea7213 authored by Thierry Reding's avatar Thierry Reding

drm/tegra: gem: Use dma_mmap_writecombine()

Use the existing API rather than open-coding equivalent functionality
in the driver.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent e55a8bd8
...@@ -306,6 +306,7 @@ const struct vm_operations_struct tegra_bo_vm_ops = { ...@@ -306,6 +306,7 @@ const struct vm_operations_struct tegra_bo_vm_ops = {
int tegra_drm_mmap(struct file *file, struct vm_area_struct *vma) int tegra_drm_mmap(struct file *file, struct vm_area_struct *vma)
{ {
unsigned long vm_pgoff = vma->vm_pgoff;
struct drm_gem_object *gem; struct drm_gem_object *gem;
struct tegra_bo *bo; struct tegra_bo *bo;
int ret; int ret;
...@@ -317,12 +318,19 @@ int tegra_drm_mmap(struct file *file, struct vm_area_struct *vma) ...@@ -317,12 +318,19 @@ int tegra_drm_mmap(struct file *file, struct vm_area_struct *vma)
gem = vma->vm_private_data; gem = vma->vm_private_data;
bo = to_tegra_bo(gem); bo = to_tegra_bo(gem);
ret = remap_pfn_range(vma, vma->vm_start, bo->paddr >> PAGE_SHIFT, vma->vm_flags &= ~VM_PFNMAP;
vma->vm_end - vma->vm_start, vma->vm_page_prot); vma->vm_pgoff = 0;
if (ret)
ret = dma_mmap_writecombine(gem->dev->dev, vma, bo->vaddr, bo->paddr,
gem->size);
if (ret) {
drm_gem_vm_close(vma); drm_gem_vm_close(vma);
return ret;
}
vma->vm_pgoff = vm_pgoff;
return ret; return 0;
} }
static struct sg_table * static struct sg_table *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment