Lines Matching refs:ibs_request
195 struct amdgpu_cs_request ibs_request; in amdgpu_nop_cs() local
218 memset(&ibs_request, 0, sizeof(struct amdgpu_cs_request)); in amdgpu_nop_cs()
219 ibs_request.ip_type = AMDGPU_HW_IP_GFX; in amdgpu_nop_cs()
220 ibs_request.ring = 0; in amdgpu_nop_cs()
221 ibs_request.number_of_ibs = 1; in amdgpu_nop_cs()
222 ibs_request.ibs = &ib_info; in amdgpu_nop_cs()
223 ibs_request.resources = bo_list; in amdgpu_nop_cs()
226 amdgpu_cs_submit(context, 0, &ibs_request, 1); in amdgpu_nop_cs()
228 amdgpu_cs_sync(context, AMDGPU_HW_IP_GFX, 0, ibs_request.seq_no); in amdgpu_nop_cs()
359 struct amdgpu_cs_request ibs_request; in amdgpu_hotunplug_with_exported_fence() local
390 memset(&ibs_request, 0, sizeof(struct amdgpu_cs_request)); in amdgpu_hotunplug_with_exported_fence()
391 ibs_request.ip_type = AMDGPU_HW_IP_GFX; in amdgpu_hotunplug_with_exported_fence()
392 ibs_request.ring = 0; in amdgpu_hotunplug_with_exported_fence()
393 ibs_request.number_of_ibs = 1; in amdgpu_hotunplug_with_exported_fence()
394 ibs_request.ibs = &ib_info; in amdgpu_hotunplug_with_exported_fence()
395 ibs_request.resources = bo_list; in amdgpu_hotunplug_with_exported_fence()
397 CU_ASSERT_EQUAL(amdgpu_cs_submit(context, 0, &ibs_request, 1), 0); in amdgpu_hotunplug_with_exported_fence()
402 fence_status.fence = ibs_request.seq_no; in amdgpu_hotunplug_with_exported_fence()