drm/amd/display: fix the white screen issue when >= 64GB DRAM
authorYifan Zhang <yifan1.zhang@amd.com>
Fri, 8 Sep 2023 08:46:39 +0000 (16:46 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 11 Sep 2023 22:18:09 +0000 (18:18 -0400)
commitef064187a9709393a981a56cce1e31880fd97107
tree04fc6d12ec0bc4209421a7b205da884e052cdeda
parentfc6efed2c728c9c10b058512fc9c1613f870a8e8
drm/amd/display: fix the white screen issue when >= 64GB DRAM

Dropping bit 31:4 of page table base is wrong, it makes page table
base points to wrong address if phys addr is beyond 64GB; dropping
page_table_start/end bit 31:4 is unnecessary since dcn20_vmid_setup
will do that. Also, while we are at it, cleanup the assignments using
upper_32_bits()/lower_32_bits() and AMDGPU_GPU_PAGE_SHIFT.

Cc: stable@vger.kernel.org
Link: https://gitlab.freedesktop.org/drm/amd/-/issues/2354
Fixes: 81d0bcf99009 ("drm/amdgpu: make display pinning more flexible (v2)")
Acked-by: Harry Wentland <harry.wentland@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Yifan Zhang <yifan1.zhang@amd.com>
Co-developed-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c