]> git.itanic.dy.fi Git - linux-stable/commitdiff
drm/amdgpu: skip gpu_info fw loading on navi12
authorAlex Deucher <alexander.deucher@amd.com>
Wed, 20 Dec 2023 17:36:08 +0000 (12:36 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 4 Jan 2024 14:46:56 +0000 (09:46 -0500)
It's no longer required.

Link: https://gitlab.freedesktop.org/drm/amd/-/issues/2318
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c

index 8dee52ce26d0cb07d5787218a5ec5b1ea4ba501b..93cf73d6fa118f2a4a690d7f32718eb3df61247f 100644 (file)
@@ -2188,15 +2188,8 @@ static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev)
 
        adev->firmware.gpu_info_fw = NULL;
 
-       if (adev->mman.discovery_bin) {
-               /*
-                * FIXME: The bounding box is still needed by Navi12, so
-                * temporarily read it from gpu_info firmware. Should be dropped
-                * when DAL no longer needs it.
-                */
-               if (adev->asic_type != CHIP_NAVI12)
-                       return 0;
-       }
+       if (adev->mman.discovery_bin)
+               return 0;
 
        switch (adev->asic_type) {
        default: