Symbol: vm_helper
sys/dev/pci/drm/amd/display/dc/core/dc.c
1052
dc->vm_helper = kzalloc(sizeof(struct vm_helper), GFP_KERNEL);
sys/dev/pci/drm/amd/display/dc/core/dc.c
1053
if (!dc->vm_helper) {
sys/dev/pci/drm/amd/display/dc/core/dc.c
984
kfree(dc->vm_helper);
sys/dev/pci/drm/amd/display/dc/core/dc.c
985
dc->vm_helper = NULL;
sys/dev/pci/drm/amd/display/dc/core/dc_vm_helper.c
29
void vm_helper_mark_vmid_used(struct vm_helper *vm_helper, unsigned int pos, uint8_t hubp_idx)
sys/dev/pci/drm/amd/display/dc/core/dc_vm_helper.c
31
struct vmid_usage vmids = vm_helper->hubp_vmid_usage[hubp_idx];
sys/dev/pci/drm/amd/display/dc/core/dc_vm_helper.c
68
in_use |= dc->vm_helper->hubp_vmid_usage[i].vmid_usage[0]
sys/dev/pci/drm/amd/display/dc/core/dc_vm_helper.c
69
| dc->vm_helper->hubp_vmid_usage[i].vmid_usage[1];
sys/dev/pci/drm/amd/display/dc/core/dc_vm_helper.c
73
void vm_helper_init(struct vm_helper *vm_helper, unsigned int num_vmid)
sys/dev/pci/drm/amd/display/dc/core/dc_vm_helper.c
75
vm_helper->num_vmid = num_vmid;
sys/dev/pci/drm/amd/display/dc/core/dc_vm_helper.c
77
memset(vm_helper->hubp_vmid_usage, 0, sizeof(vm_helper->hubp_vmid_usage[0]) * MAX_HUBP);
sys/dev/pci/drm/amd/display/dc/dc.h
1754
struct vm_helper *vm_helper;
sys/dev/pci/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c
2741
vm_helper_mark_vmid_used(dc->vm_helper, plane_state->address.vmid, pipe_ctx->plane_res.hubp->inst);
sys/dev/pci/drm/amd/display/dc/inc/vm_helper.h
42
void vm_helper_mark_vmid_used(struct vm_helper *vm_helper, unsigned int pos, uint8_t hubp_idx);
sys/dev/pci/drm/amd/display/dc/inc/vm_helper.h
45
struct vm_helper *vm_helper,
sys/dev/pci/drm/amd/display/dc/resource/dcn20/dcn20_resource.c
2483
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn20/dcn20_resource.c
2484
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn21/dcn21_resource.c
1466
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn21/dcn21_resource.c
1467
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn30/dcn30_resource.c
2382
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn30/dcn30_resource.c
2383
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn301/dcn301_resource.c
1506
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn301/dcn301_resource.c
1507
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn302/dcn302_resource.c
1298
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn302/dcn302_resource.c
1299
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn303/dcn303_resource.c
1242
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn303/dcn303_resource.c
1243
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn31/dcn31_resource.c
1986
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn31/dcn31_resource.c
1987
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn314/dcn314_resource.c
1925
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn314/dcn314_resource.c
1926
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn315/dcn315_resource.c
1947
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn315/dcn315_resource.c
1948
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn316/dcn316_resource.c
1823
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn316/dcn316_resource.c
1824
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn32/dcn32_resource.c
2305
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn32/dcn32_resource.c
2306
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn321/dcn321_resource.c
1805
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn321/dcn321_resource.c
1806
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn35/dcn35_resource.c
1955
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn35/dcn35_resource.c
1956
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn351/dcn351_resource.c
1927
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn351/dcn351_resource.c
1928
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn36/dcn36_resource.c
1928
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn36/dcn36_resource.c
1929
vm_helper_init(dc->vm_helper, 16);
sys/dev/pci/drm/amd/display/dc/resource/dcn401/dcn401_resource.c
2003
if (dc->vm_helper)
sys/dev/pci/drm/amd/display/dc/resource/dcn401/dcn401_resource.c
2004
vm_helper_init(dc->vm_helper, 16);