aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Zhang <[email protected]>2023-05-10 16:13:48 +0800
committerAlex Deucher <[email protected]>2023-06-09 09:38:25 -0400
commit6d99f3f4ea948f26b074a069c0406dd7f1cb0d8f (patch)
tree1263ae708afe37d8662b7d6182d1bea14eaeefd7
parent1d6ecab1ac0fdff8e62ff3ba506b606177010d08 (diff)
drm/amdgpu: change gfx 11.0.4 external_id range
gfx 11.0.4 range starts from 0x80. Fixes: 311d52367d0a ("drm/amdgpu: add soc21 common ip block support for GC 11.0.4") Signed-off-by: Yifan Zhang <[email protected]> Reported-by: Yogesh Mohan Marimuthu <[email protected]> Acked-by: Alex Deucher <[email protected]> Reviewed-by: Tim Huang <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/soc21.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/soc21.c b/drivers/gpu/drm/amd/amdgpu/soc21.c
index 0f82b8e83acb..6bff936a6e55 100644
--- a/drivers/gpu/drm/amd/amdgpu/soc21.c
+++ b/drivers/gpu/drm/amd/amdgpu/soc21.c
@@ -711,7 +711,7 @@ static int soc21_common_early_init(void *handle)
AMD_PG_SUPPORT_VCN_DPG |
AMD_PG_SUPPORT_GFX_PG |
AMD_PG_SUPPORT_JPEG;
- adev->external_rev_id = adev->rev_id + 0x1;
+ adev->external_rev_id = adev->rev_id + 0x80;
break;
default: