mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 06:26:43 +07:00
drm/tegra: Map cmdbuf once for reloc processing
A few reasons to drop kmap: - For native objects all we do is look at obj->vaddr anyway, so might as well not call functions for every page. - Reloc-processing on dma-buf is ... questionable. - Plus most dma-buf that bother kernel cpu mmaps give you at least vmap, much less kmaps. And all the ones relevant for arm-soc are again doing a obj->vaddr game anyway, there's no real kmap going on on arm it seems. Plus this seems to be the only real in-tree user of dma_buf_kmap, and I'd like to get rid of that. Reviewed-by: Thierry Reding <treding@nvidia.com> Tested-by: Thierry Reding <treding@nvidia.com> Acked-by: Sumit Semwal <sumit.semwal@linaro.org> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: linux-tegra@vger.kernel.org Link: https://patchwork.freedesktop.org/patch/msgid/20191118103536.17675-2-daniel.vetter@ffwll.ch
This commit is contained in:
parent
f053c83ad5
commit
7a8139c54e
@ -186,8 +186,7 @@ static unsigned int pin_job(struct host1x *host, struct host1x_job *job)
|
||||
|
||||
static int do_relocs(struct host1x_job *job, struct host1x_job_gather *g)
|
||||
{
|
||||
u32 last_page = ~0;
|
||||
void *cmdbuf_page_addr = NULL;
|
||||
void *cmdbuf_addr = NULL;
|
||||
struct host1x_bo *cmdbuf = g->bo;
|
||||
unsigned int i;
|
||||
|
||||
@ -209,28 +208,22 @@ static int do_relocs(struct host1x_job *job, struct host1x_job_gather *g)
|
||||
goto patch_reloc;
|
||||
}
|
||||
|
||||
if (last_page != reloc->cmdbuf.offset >> PAGE_SHIFT) {
|
||||
if (cmdbuf_page_addr)
|
||||
host1x_bo_kunmap(cmdbuf, last_page,
|
||||
cmdbuf_page_addr);
|
||||
if (!cmdbuf_addr) {
|
||||
cmdbuf_addr = host1x_bo_mmap(cmdbuf);
|
||||
|
||||
cmdbuf_page_addr = host1x_bo_kmap(cmdbuf,
|
||||
reloc->cmdbuf.offset >> PAGE_SHIFT);
|
||||
last_page = reloc->cmdbuf.offset >> PAGE_SHIFT;
|
||||
|
||||
if (unlikely(!cmdbuf_page_addr)) {
|
||||
if (unlikely(!cmdbuf_addr)) {
|
||||
pr_err("Could not map cmdbuf for relocation\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
}
|
||||
|
||||
target = cmdbuf_page_addr + (reloc->cmdbuf.offset & ~PAGE_MASK);
|
||||
target = cmdbuf_addr + reloc->cmdbuf.offset;
|
||||
patch_reloc:
|
||||
*target = reloc_addr;
|
||||
}
|
||||
|
||||
if (cmdbuf_page_addr)
|
||||
host1x_bo_kunmap(cmdbuf, last_page, cmdbuf_page_addr);
|
||||
if (cmdbuf_addr)
|
||||
host1x_bo_munmap(cmdbuf, cmdbuf_addr);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user