]> git.baikalelectronics.ru Git - kernel.git/commitdiff
drm/amdgpu/atomfirmware: fix vram_info fetching for renoir
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 25 Jun 2020 21:55:57 +0000 (17:55 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 1 Jul 2020 18:19:18 +0000 (14:19 -0400)
Renoir uses integrated_system_info table v12.  The table
has the same layout as v11 with respect to this data.  Just
reuse the existing code for v12 for stable.

Fixes incorrectly reported vram info in the driver output.

Acked-by: Evan Quan <evan.quan@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.c

index 58f9d8c3a17ab9692f3cf3694e53aad6d72553ee..44f927641b892d0cf3aa80eb16a946dec801903e 100644 (file)
@@ -204,6 +204,7 @@ amdgpu_atomfirmware_get_vram_info(struct amdgpu_device *adev,
                                (mode_info->atom_context->bios + data_offset);
                        switch (crev) {
                        case 11:
+                       case 12:
                                mem_channel_number = igp_info->v11.umachannelnumber;
                                /* channel width is 64 */
                                if (vram_width)