drm/amdgpu: Correct get_xcp_mem_id calculation
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>
This commit is contained in:
parent
84b4dd3f84
commit
3cde91172d
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue