drm/amdgpu: Correct get_xcp_mem_id calculation
authorPhilip Yang <Philip.Yang@amd.com>
Wed, 19 Apr 2023 21:39:35 +0000 (17:39 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 9 Jun 2023 14:37:02 +0000 (10:37 -0400)
Current calculation only works for NPS4/QPX mode, correct it for
NPS4/CPX mode.

Signed-off-by: Philip Yang <Philip.Yang@amd.com>
Reviewed-by: Lijo Lazar <lijo.lazar@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/aqua_vanjaram_reg_init.c

index 4ca932a..93e9f94 100644 (file)
@@ -518,10 +518,9 @@ out:
 static int __aqua_vanjaram_get_xcp_mem_id(struct amdgpu_device *adev,
                                          int xcc_id, uint8_t *mem_id)
 {
-       /* TODO: Check if any validation is required based on current
-        * memory/spatial modes
-        */
+       /* memory/spatial modes validation check is already done */
        *mem_id = xcc_id / adev->gfx.num_xcc_per_xcp;
+       *mem_id /= adev->xcp_mgr->num_xcp_per_mem_partition;
 
        return 0;
 }