Does anyone here use a Gemini Lake box with a Samsung 4K TV (2019 or 2020 model)?
After experiencing some annoying HDMI issues with 4K modes (e.g. intermittent white dots after a mode change, with known good cables) I decided to poke around in Intel driver and found the problem. Apparently, my Samsung TV doesn't like Intel's implementation of HDMI Scrambling.
I disabled scrambling with a below patch and all issues are gone.
Diff
diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
index 2fa9ba3..b258e1d 100644
--- a/drivers/gpu/drm/i915/display/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -2549,7 +2549,7 @@ int intel_hdmi_compute_config(struct intel_encoder *encoder,
pipe_config->hdmi_scrambling = true;
if (pipe_config->port_clock > 340000) {
- pipe_config->hdmi_scrambling = true;
+ pipe_config->hdmi_scrambling = false;
pipe_config->hdmi_high_tmds_clock_ratio = true;
}
}
Display More