Home
last modified time | relevance | path

Searched refs:vma_res (Results 1 – 21 of 21) sorted by relevance

/linux/drivers/gpu/drm/i915/
A Di915_vma_resource.c56 return vma_res ? vma_res : ERR_PTR(-ENOMEM); in i915_vma_resource_alloc()
65 if (vma_res) in i915_vma_resource_free()
112 vm = vma_res->vm; in __i915_vma_resource_unhold()
113 if (vma_res->wakeref) in __i915_vma_resource_unhold()
116 vma_res->vm = NULL; in __i915_vma_resource_unhold()
123 if (vma_res->bi.pages_rsgt) in __i915_vma_resource_unhold()
182 vma_res->ops->unbind_vma(vm, vma_res); in i915_vma_resource_unbind_work()
196 &vma_res->unbind_fence; in i915_vma_resource_fence_notify()
235 vma_res->tlb = tlb; in i915_vma_resource_unbind()
241 if (vma_res->needs_wakeref) in i915_vma_resource_unbind()
[all …]
A Di915_vma_resource.h166 return vma_res; in i915_vma_resource_get()
217 vma_res->vm = vm; in i915_vma_resource_init()
218 vma_res->bi.pages = pages; in i915_vma_resource_init()
223 vma_res->bi.lmem = lmem; in i915_vma_resource_init()
225 vma_res->mr = mr; in i915_vma_resource_init()
227 vma_res->ops = ops; in i915_vma_resource_init()
228 vma_res->private = private; in i915_vma_resource_init()
229 vma_res->start = start; in i915_vma_resource_init()
231 vma_res->vma_size = size; in i915_vma_resource_init()
232 vma_res->guard = guard; in i915_vma_resource_init()
[all …]
A Di915_vma.c358 struct i915_vma_resource *vma_res = vw->vma_res; in __vma_bind() local
369 vma_res->ops->bind_vma(vma_res->vm, &vw->stash, in __vma_bind()
381 if (vw->vma_res) in __vma_release()
489 i915_vma_resource_free(vma_res); in i915_vma_bind()
494 i915_vma_resource_free(vma_res); in i915_vma_bind()
530 if (vma->resource || !vma_res) { in i915_vma_bind()
536 vma->resource = vma_res; in i915_vma_bind()
1502 if (IS_ERR(vma_res)) { in i915_vma_pin_ww()
1503 err = PTR_ERR(vma_res); in i915_vma_pin_ww()
1569 flags, work, vma_res); in i915_vma_pin_ww()
[all …]
A Di915_gpu_error.c1103 if (!vma_res || !vma_res->bi.pages || !compress) in i915_vma_coredump_create()
1119 dst->gtt_offset = vma_res->start; in i915_vma_coredump_create()
1120 dst->gtt_size = vma_res->node_size; in i915_vma_coredump_create()
1155 } else if (vma_res->bi.lmem) { in i915_vma_coredump_create()
1438 struct i915_vma_resource *vma_res; member
1450 if (!vma_res) in capture_vma_snapshot()
1463 c->vma_res = i915_vma_resource_get(vma_res); in capture_vma_snapshot()
1519 struct i915_vma_resource *vma_res; in create_vma_coredump() local
1525 vma_res = vma->resource; in create_vma_coredump()
1620 struct i915_vma_resource *vma_res = this->vma_res; in intel_engine_coredump_add_vma() local
[all …]
A Di915_vma.h256 struct i915_vma_resource *vma_res);
487 void i915_vma_resource_init_from_vma(struct i915_vma_resource *vma_res,
A Di915_request.h55 struct i915_vma_resource *vma_res; member
A Di915_request.c336 i915_vma_resource_put(capture->vma_res); in i915_request_free_capture_list()
/linux/drivers/gpu/drm/i915/gt/
A Dintel_ggtt.c483 gte += (vma_res->start - vma_res->guard) / I915_GTT_PAGE_SIZE; in gen8_ggtt_insert_entries()
487 end += (vma_res->node_size + vma_res->guard) / I915_GTT_PAGE_SIZE; in gen8_ggtt_insert_entries()
514 start = (vma_res->start - vma_res->guard) / I915_GTT_PAGE_SIZE; in __gen8_ggtt_insert_entries_bind()
520 end += (vma_res->node_size + vma_res->guard) / I915_GTT_PAGE_SIZE; in __gen8_ggtt_insert_entries_bind()
623 gte += (vma_res->start - vma_res->guard) / I915_GTT_PAGE_SIZE; in gen6_ggtt_insert_entries()
628 end += (vma_res->node_size + vma_res->guard) / I915_GTT_PAGE_SIZE; in gen6_ggtt_insert_entries()
754 if (vma_res->bi.readonly) in intel_ggtt_bind_vma()
756 if (vma_res->bi.lmem) in intel_ggtt_bind_vma()
766 vm->clear_range(vm, vma_res->start, vma_res->vma_size); in intel_ggtt_unbind_vma()
926 if (vma_res->bi.readonly) in aliasing_gtt_bind_vma()
[all …]
A Dintel_ppgtt.c184 struct i915_vma_resource *vma_res, in ppgtt_bind_vma() argument
190 if (!vma_res->allocated) { in ppgtt_bind_vma()
191 vm->allocate_va_range(vm, stash, vma_res->start, in ppgtt_bind_vma()
192 vma_res->vma_size); in ppgtt_bind_vma()
193 vma_res->allocated = true; in ppgtt_bind_vma()
198 if (vma_res->bi.readonly) in ppgtt_bind_vma()
200 if (vma_res->bi.lmem) in ppgtt_bind_vma()
208 struct i915_vma_resource *vma_res) in ppgtt_unbind_vma() argument
210 if (!vma_res->allocated) in ppgtt_unbind_vma()
213 vm->clear_range(vm, vma_res->start, vma_res->vma_size); in ppgtt_unbind_vma()
[all …]
A Dgen8_ppgtt.c504 struct i915_vma_resource *vma_res, in xehp_ppgtt_insert_huge() argument
511 u64 start = vma_res->start; in xehp_ppgtt_insert_huge()
512 u64 end = start + vma_res->vma_size; in xehp_ppgtt_insert_huge()
607 vma_res->page_sizes_gtt |= page_size; in xehp_ppgtt_insert_huge()
612 struct i915_vma_resource *vma_res, in gen8_ppgtt_insert_huge() argument
619 u64 start = vma_res->start; in gen8_ppgtt_insert_huge()
702 vma_res->node_size, in gen8_ppgtt_insert_huge()
731 vma_res->page_sizes_gtt |= page_size; in gen8_ppgtt_insert_huge()
736 struct i915_vma_resource *vma_res, in gen8_ppgtt_insert() argument
741 struct sgt_dma iter = sgt_dma(vma_res); in gen8_ppgtt_insert()
[all …]
A Dgen6_ppgtt.c111 struct i915_vma_resource *vma_res, in gen6_ppgtt_insert_entries() argument
117 unsigned int first_entry = vma_res->start / I915_GTT_PAGE_SIZE; in gen6_ppgtt_insert_entries()
121 struct sgt_dma iter = sgt_dma(vma_res); in gen6_ppgtt_insert_entries()
147 vma_res->page_sizes_gtt = I915_GTT_PAGE_SIZE; in gen6_ppgtt_insert_entries()
282 struct i915_vma_resource *vma_res, in pd_vma_bind() argument
287 struct gen6_ppgtt *ppgtt = vma_res->private; in pd_vma_bind()
288 u32 ggtt_offset = vma_res->start / I915_GTT_PAGE_SIZE; in pd_vma_bind()
297 struct i915_vma_resource *vma_res) in pd_vma_unbind() argument
299 struct gen6_ppgtt *ppgtt = vma_res->private; in pd_vma_unbind()
A Dintel_gtt.h235 struct i915_vma_resource *vma_res,
243 struct i915_vma_resource *vma_res);
331 struct i915_vma_resource *vma_res,
340 struct i915_vma_resource *vma_res,
587 struct i915_vma_resource *vma_res,
591 struct i915_vma_resource *vma_res);
665 struct i915_vma_resource *vma_res,
669 struct i915_vma_resource *vma_res);
692 } sgt_dma(struct i915_vma_resource *vma_res) { in sgt_dma() argument
693 struct scatterlist *sg = vma_res->bi.pages->sgl; in sgt_dma()
A Dintel_ggtt_gmch.c31 struct i915_vma_resource *vma_res, in gmch_ggtt_insert_entries() argument
38 intel_gmch_gtt_insert_sg_entries(vma_res->bi.pages, vma_res->start >> PAGE_SHIFT, in gmch_ggtt_insert_entries()
A Dintel_engine_cs.c2220 struct i915_vma_resource *vma_res = rq->batch_res; in print_request_ring() local
2227 vma_res ? upper_32_bits(vma_res->start) : ~0u, in print_request_ring()
2228 vma_res ? lower_32_bits(vma_res->start) : ~0u); in print_request_ring()
/linux/drivers/gpu/drm/i915/display/
A Dintel_dpt.c55 struct i915_vma_resource *vma_res, in dpt_insert_entries() argument
71 i = vma_res->start / I915_GTT_PAGE_SIZE; in dpt_insert_entries()
72 for_each_sgt_daddr(addr, sgt_iter, vma_res->bi.pages) in dpt_insert_entries()
83 struct i915_vma_resource *vma_res, in dpt_bind_vma() argument
89 if (vma_res->bound_flags) in dpt_bind_vma()
94 if (vm->has_read_only && vma_res->bi.readonly) in dpt_bind_vma()
96 if (vma_res->bi.lmem) in dpt_bind_vma()
99 vm->insert_entries(vm, vma_res, pat_index, pte_flags); in dpt_bind_vma()
101 vma_res->page_sizes_gtt = I915_GTT_PAGE_SIZE; in dpt_bind_vma()
112 struct i915_vma_resource *vma_res) in dpt_unbind_vma() argument
[all …]
/linux/drivers/gpu/drm/i915/selftests/
A Dmock_gtt.c36 struct i915_vma_resource *vma_res, in mock_insert_entries() argument
43 struct i915_vma_resource *vma_res, in mock_bind_ppgtt() argument
48 vma_res->bound_flags |= flags; in mock_bind_ppgtt()
52 struct i915_vma_resource *vma_res) in mock_unbind_ppgtt() argument
96 struct i915_vma_resource *vma_res, in mock_bind_ggtt() argument
103 struct i915_vma_resource *vma_res) in mock_unbind_ggtt() argument
A Di915_gem_gtt.c1507 struct i915_vma_resource *vma_res; in reserve_gtt_with_resource() local
1511 vma_res = i915_vma_resource_alloc(); in reserve_gtt_with_resource()
1512 if (IS_ERR(vma_res)) in reserve_gtt_with_resource()
1513 return PTR_ERR(vma_res); in reserve_gtt_with_resource()
1522 vma->resource = vma_res; in reserve_gtt_with_resource()
1524 kfree(vma_res); in reserve_gtt_with_resource()
1688 struct i915_vma_resource *vma_res; in insert_gtt_with_resource() local
1693 if (IS_ERR(vma_res)) in insert_gtt_with_resource()
1694 return PTR_ERR(vma_res); in insert_gtt_with_resource()
1701 vma->resource = vma_res; in insert_gtt_with_resource()
[all …]
/linux/drivers/gpu/drm/i915/gt/uc/
A Dintel_uc_fw.c1042 struct i915_vma_resource *vma_res = &uc_fw->vma_res; in uc_fw_bind_ggtt() local
1048 vma_res->start = uc_fw_ggtt_offset(uc_fw); in uc_fw_bind_ggtt()
1049 vma_res->node_size = obj->base.size; in uc_fw_bind_ggtt()
1050 vma_res->bi.pages = obj->mm.pages; in uc_fw_bind_ggtt()
1056 drm_clflush_sg(vma_res->bi.pages); in uc_fw_bind_ggtt()
1062 ggtt->vm.raw_insert_entries(&ggtt->vm, vma_res, in uc_fw_bind_ggtt()
1067 ggtt->vm.insert_entries(&ggtt->vm, vma_res, in uc_fw_bind_ggtt()
1076 struct i915_vma_resource *vma_res = &uc_fw->vma_res; in uc_fw_unbind_ggtt() local
1078 if (!vma_res->node_size) in uc_fw_unbind_ggtt()
1081 ggtt->vm.clear_range(&ggtt->vm, vma_res->start, vma_res->node_size); in uc_fw_unbind_ggtt()
[all …]
A Dintel_uc_fw.h115 struct i915_vma_resource vma_res; member
A Dintel_huc_fw.c61 msg_in->huc_in.huc_base_address = huc->fw.vma_res.start; in intel_huc_fw_auth_via_gsccs()
/linux/drivers/gpu/drm/i915/gem/
A Di915_gem_execbuffer.c2028 capture->vma_res = i915_vma_resource_get(vma->resource); in eb_capture_stage()

Completed in 64 milliseconds