]> Git Repo - linux.git/commitdiff
drm/amdgpu: change gfx 11.0.4 external_id range
authorYifan Zhang <[email protected]>
Wed, 10 May 2023 08:13:48 +0000 (16:13 +0800)
committerAlex Deucher <[email protected]>
Thu, 11 May 2023 13:11:14 +0000 (09:11 -0400)
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]>
drivers/gpu/drm/amd/amdgpu/soc21.c

index 744be2a0562362d366f52966abe667a61ff5f55f..d7716253651440186ce6c0c95df74361505209a2 100644 (file)
@@ -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:
This page took 0.060795 seconds and 4 git commands to generate.