drm/amdgpu: Fix hbm stack id in boot error report
To align with firmware, hbm id field 0x1 refers to hbm stack 0, 0x2 refers to hbm statck 1. Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com> Reviewed-by: Tao Zhou <tao.zhou1@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
0d3157d04d
commit
d3dbccacfd
@@ -4565,7 +4565,7 @@ static void amdgpu_ras_boot_time_error_reporting(struct amdgpu_device *adev,
|
||||
|
||||
socket_id = AMDGPU_RAS_GPU_ERR_SOCKET_ID(boot_error);
|
||||
aid_id = AMDGPU_RAS_GPU_ERR_AID_ID(boot_error);
|
||||
hbm_id = AMDGPU_RAS_GPU_ERR_HBM_ID(boot_error);
|
||||
hbm_id = ((1 == AMDGPU_RAS_GPU_ERR_HBM_ID(boot_error)) ? 0 : 1);
|
||||
|
||||
if (AMDGPU_RAS_GPU_ERR_MEM_TRAINING(boot_error))
|
||||
dev_info(adev->dev,
|
||||
|
||||
Reference in New Issue
Block a user