diff options
author | Yifan Zhang <[email protected]> | 2023-05-10 16:13:48 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2023-05-11 09:11:14 -0400 |
commit | 996e93a3fe74dcf9d467ae3020aea42cc3ff65e3 (patch) | |
tree | ee1d53a6a2a15e3b8b82cda7da7b41a237f3cbbb | |
parent | 5b94db73e45e2e6c2840f39c022fd71dfa47fc58 (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")
Cc: [email protected]
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.c | 2 |
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 744be2a05623..d77162536514 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: |