[AMD Official Use Only - Internal Distribution Only] Reviewed-by: Monk Liu <monk.liu@xxxxxxx> _____________________________________ Monk Liu|GPU Virtualization Team |AMD -----Original Message----- From: amd-gfx <amd-gfx-bounces@xxxxxxxxxxxxxxxxxxxxx> On Behalf Of Bokun Zhang Sent: Wednesday, November 11, 2020 4:17 AM To: amd-gfx@xxxxxxxxxxxxxxxxxxxxx Cc: Zhang, Bokun <Bokun.Zhang@xxxxxxx> Subject: [PATCH] drm/amd/amdgpu: Update VCN initizalization behvaior - Issue: In the original vcn3.0 code, it assumes that the VCN's init_status is always 1, even after the MMSCH updates the header. This is incorrect since by default, it should be set to 0, and MMSCH will update it to 1 if VCN is ready. - Fix: We need to read back the table header after send it to MMSCH. After that, if a VCN instance is not ready (host disabled it), we needs to disable the ring buffer as well. Change-Id: I2c5dc4344c5919044370dfe606bf5980a202c662 Signed-off-by: Bokun Zhang <Bokun.Zhang@xxxxxxx> --- drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c | 46 +++++++++++++++++++++------ 1 file changed, 37 insertions(+), 9 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c index 3970a0ccb6a5..c5e0a531caba 100644 --- a/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c @@ -294,17 +294,19 @@ static int vcn_v3_0_hw_init(void *handle) continue; ring = &adev->vcn.inst[i].ring_dec; -ring->wptr = 0; -ring->wptr_old = 0; -vcn_v3_0_dec_ring_set_wptr(ring); -ring->sched.ready = true; +if (ring->sched.ready) { +ring->wptr = 0; +ring->wptr_old = 0; +vcn_v3_0_dec_ring_set_wptr(ring); +} for (j = 0; j < adev->vcn.num_enc_rings; ++j) { ring = &adev->vcn.inst[i].ring_enc[j]; -ring->wptr = 0; -ring->wptr_old = 0; -vcn_v3_0_enc_ring_set_wptr(ring); -ring->sched.ready = true; +if (ring->sched.ready) { +ring->wptr = 0; +ring->wptr_old = 0; +vcn_v3_0_enc_ring_set_wptr(ring); +} } } } else { @@ -1230,6 +1232,8 @@ static int vcn_v3_0_start_sriov(struct amdgpu_device *adev) uint32_t table_size; uint32_t size, size_dw; +bool is_vcn_ready; + struct mmsch_v3_0_cmd_direct_write direct_wt = { {0} }; struct mmsch_v3_0_cmd_direct_read_modify_write @@ -1367,7 +1371,7 @@ static int vcn_v3_0_start_sriov(struct amdgpu_device *adev) MMSCH_V3_0_INSERT_END(); /* refine header */ -header.inst[i].init_status = 1; +header.inst[i].init_status = 0; header.inst[i].table_offset = header.total_size; header.inst[i].table_size = table_size; header.total_size += table_size; @@ -1425,6 +1429,30 @@ static int vcn_v3_0_start_sriov(struct amdgpu_device *adev) } } +/* 6, check each VCN's init_status + * if it remains as 0, then this VCN is not assigned to current VF + * do not start ring for this VCN + */ +size = sizeof(struct mmsch_v3_0_init_header); +table_loc = (uint32_t *)table->cpu_addr; +memcpy(&header, (void *)table_loc, size); + +for (i = 0; i < adev->vcn.num_vcn_inst; i++) { +if (adev->vcn.harvest_config & (1 << i)) +continue; + +is_vcn_ready = (header.inst[i].init_status == 1); +if (!is_vcn_ready) +DRM_INFO("VCN(%d) engine is disabled by hypervisor\n", i); + +ring = &adev->vcn.inst[i].ring_dec; +ring->sched.ready = is_vcn_ready; +for (j = 0; j < adev->vcn.num_enc_rings; ++j) { +ring = &adev->vcn.inst[i].ring_enc[j]; +ring->sched.ready = is_vcn_ready; +} +} + return 0; } -- 2.20.1 _______________________________________________ amd-gfx mailing list amd-gfx@xxxxxxxxxxxxxxxxxxxxx https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&data=04%7C01%7Cmonk.liu%40amd.com%7Ccb49c2c170054afa706808d885b5aabb%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637406362602342785%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=gyfneg3amwv16LJD6tjP6hoo%2F615ODNCOsOU%2BJ6JbuQ%3D&reserved=0 _______________________________________________ amd-gfx mailing list amd-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/amd-gfx