Lines Matching refs:vc4
165 struct vc4_dev *vc4; member
218 #define V3D_READ(offset) readl(vc4->v3d->regs + offset)
219 #define V3D_WRITE(offset, val) writel(val, vc4->v3d->regs + offset)
220 #define HVS_READ(offset) readl(vc4->hvs->regs + offset)
221 #define HVS_WRITE(offset, val) writel(val, vc4->hvs->regs + offset)
326 vc4_first_bin_job(struct vc4_dev *vc4) in vc4_first_bin_job() argument
328 return list_first_entry_or_null(&vc4->bin_job_list, in vc4_first_bin_job()
333 vc4_first_render_job(struct vc4_dev *vc4) in vc4_first_render_job() argument
335 return list_first_entry_or_null(&vc4->render_job_list, in vc4_first_render_job()
340 vc4_last_render_job(struct vc4_dev *vc4) in vc4_last_render_job() argument
342 if (list_empty(&vc4->render_job_list)) in vc4_last_render_job()
344 return list_last_entry(&vc4->render_job_list, in vc4_last_render_job()
479 void vc4_job_handle_completed(struct vc4_dev *vc4);