drm/amd/display: Revert " drm/amd/display: Use channel_width = 2 for vram table 3.0"
authorAlvin Lee <alvin.lee2@amd.com>
Mon, 4 Dec 2023 20:19:34 +0000 (15:19 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 15 Dec 2023 17:17:19 +0000 (12:17 -0500)
[Description]
Revert commit fec05adc40c2 ("drm/amd/display: Use channel_width = 2 for vram table 3.0")
Because the issue is being fixed from VBIOS side.

Reviewed-by: Samson Tam <samson.tam@amd.com>
Acked-by: Wayne Lin <wayne.lin@amd.com>
Signed-off-by: Alvin Lee <alvin.lee2@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c

index 875a064bb9a5c05de973a558d8408dca0774b9b7..fcd65a2057ad4722257d23dcdfa9b030a09ccd16 100644 (file)
@@ -2386,13 +2386,7 @@ static enum bp_result get_vram_info_v30(
                return BP_RESULT_BADBIOSTABLE;
 
        info->num_chans = info_v30->channel_num;
-       /* As suggested by VBIOS we should always use
-        * dram_channel_width_bytes = 2 when using VRAM
-        * table version 3.0. This is because the channel_width
-        * param in the VRAM info table is changed in 7000 series and
-        * no longer represents the memory channel width.
-        */
-       info->dram_channel_width_bytes = 2;
+       info->dram_channel_width_bytes = (1 << info_v30->channel_width) / 8;
 
        return result;
 }