]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/amdgpu: Avoid fetching vram vendor information
authorLijo Lazar <lijo.lazar@amd.com>
Sat, 20 Jan 2024 08:02:51 +0000 (13:32 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Feb 2024 00:21:15 +0000 (16:21 -0800)
commit 90751bdeee4e3ac87ebf814bf282b0fa97edfeab upstream.

For GFX 9.4.3 APUs, the current method of fetching vram vendor
information is not reliable. Avoid fetching the information.

Signed-off-by: Lijo Lazar <lijo.lazar@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org # 6.7.x
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c

index 2ac5820e9c9241431b1fda853dddc9242c04790e..77e625f24cd07d51c0a5cb2d7d70eb3000bd1d41 100644 (file)
@@ -1950,7 +1950,8 @@ static void gmc_v9_4_3_init_vram_info(struct amdgpu_device *adev)
        static const u32 regBIF_BIOS_SCRATCH_4 = 0x50;
        u32 vram_info;
 
-       if (!amdgpu_sriov_vf(adev)) {
+       /* Only for dGPU, vendor informaton is reliable */
+       if (!amdgpu_sriov_vf(adev) && !(adev->flags & AMD_IS_APU)) {
                vram_info = RREG32(regBIF_BIOS_SCRATCH_4);
                adev->gmc.vram_vendor = vram_info & 0xF;
        }