Home
last modified time | relevance | path

Searched refs:patch_addr (Results 1 – 5 of 5) sorted by relevance

/drivers/gpu/host1x/hw/
Dsyncpt_hw.c96 static int syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr) in syncpt_patch_wait() argument
101 *((u32 *)patch_addr) = override; in syncpt_patch_wait()
/drivers/gpu/host1x/
Djob.c122 void *patch_addr = NULL; in host1x_syncpt_patch_offset() local
125 patch_addr = host1x_bo_kmap(h, offset >> PAGE_SHIFT); in host1x_syncpt_patch_offset()
126 if (patch_addr) { in host1x_syncpt_patch_offset()
128 patch_addr + (offset & ~PAGE_MASK)); in host1x_syncpt_patch_offset()
129 host1x_bo_kunmap(h, offset >> PAGE_SHIFT, patch_addr); in host1x_syncpt_patch_offset()
Ddev.h78 int (*patch_wait)(struct host1x_syncpt *syncpt, void *patch_addr);
173 void *patch_addr) in host1x_hw_syncpt_patch_wait() argument
175 return host->syncpt_op->patch_wait(sp, patch_addr); in host1x_hw_syncpt_patch_wait()
Dsyncpt.h128 int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr);
Dsyncpt.c335 int host1x_syncpt_patch_wait(struct host1x_syncpt *sp, void *patch_addr) in host1x_syncpt_patch_wait() argument
337 return host1x_hw_syncpt_patch_wait(sp->host, sp, patch_addr); in host1x_syncpt_patch_wait()