]> git.ipfire.org Git - thirdparty/linux.git/commit
drm/amd/display: Fix 8K Mode Not Parsed by EDID
authorFangzhi Zuo <Jerry.Zuo@amd.com>
Wed, 24 Jun 2026 20:54:30 +0000 (16:54 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 17 Jul 2026 21:37:33 +0000 (17:37 -0400)
commit9b3aa1dec7c364b0d7b171dcc00ab1092e362aef
tree9ca7cde379f3c03b53b32239812d0fc1741a2165
parente39b7cf5c62e027af166772e46382356ecb45c36
drm/amd/display: Fix 8K Mode Not Parsed by EDID

[why]
The 8K120/8K240 timings live in DisplayID extension blocks 2 and 3
of this EDID. The EDID is a 4-block (512-byte) HDMI 2.1 EDID
that uses HF-EEODB.
drm core reads and parses this correctly, but amdgpu rebuilds its own copy.
Only 2 of 4 blocks were copied into sink->dc_edid, that leads to
drm_edid_connector_add_modes() never sees blocks 2 and 3.

[how]
Directly populate edid_blob_ptr with a blob whose length is the full,
and HF-EEODB-aware size.

Reviewed-by: Sun peng (Leo) Li <sunpeng.li@amd.com>
Signed-off-by: Fangzhi Zuo <Jerry.Zuo@amd.com>
Signed-off-by: George Zhang <george.zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 11a90eaf5c808ba800249dda0d481c35d0888589)
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c