Home
last modified time | relevance | path

Searched refs:vcs_exec (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/gpu/drm/xe/
H A Dxe_pxp_submit.c64 pxp->vcs_exec.q = q; in allocate_vcs_execution_resources()
65 pxp->vcs_exec.bo = bo; in allocate_vcs_execution_resources()
76 if (pxp->vcs_exec.bo) in destroy_vcs_execution_resources()
77 xe_bo_unpin_map_no_vm(pxp->vcs_exec.bo); in destroy_vcs_execution_resources()
79 if (pxp->vcs_exec.q) in destroy_vcs_execution_resources()
80 xe_exec_queue_put(pxp->vcs_exec.q); in destroy_vcs_execution_resources()
294 u64 addr = xe_bo_ggtt_addr(pxp->vcs_exec.bo); in xe_pxp_submit_session_termination()
296 offset = pxp_emit_session_termination(pxp->xe, &pxp->vcs_exec.bo->vmap, offset, id); in xe_pxp_submit_session_termination()
297 offset = pxp_emit_wait(pxp->xe, &pxp->vcs_exec.bo->vmap, offset); in xe_pxp_submit_session_termination()
298 emit_cmd(pxp->xe, &pxp->vcs_exec in xe_pxp_submit_session_termination()
[all...]
H A Dxe_pxp_types.h77 /** @vcs_exec: kernel-owned objects for PXP submissions to the VCS */
79 /** @vcs_exec.q: kernel-owned VCS exec queue used for PXP terminations */
81 /** @vcs_exec.bo: BO used for submissions to the VCS */
83 } vcs_exec; member