From: Hermes Wu <[email protected]> Some DP to HDMI converters fail to report KSV list within the 6-second HDCP window, causing the IT6505 to repeatedly restart authentication. This results in continuous flickering on the connected HDMI monitor.
Disable automatic HDCP retry when KSV list timeout. This breaks the re-auth loop and significantly improves stability/user experience with problematic converters. Signed-off-by: Hermes Wu <[email protected]> --- drivers/gpu/drm/bridge/ite-it6505.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/bridge/ite-it6505.c b/drivers/gpu/drm/bridge/ite-it6505.c index a094803ba7aa4e12165fcde432d4e6417fbf3676..1c1e6b78fadbf29da00a68e26671ce5b54ee1557 100644 --- a/drivers/gpu/drm/bridge/ite-it6505.c +++ b/drivers/gpu/drm/bridge/ite-it6505.c @@ -2238,7 +2238,7 @@ static void it6505_hdcp_wait_ksv_list(struct work_struct *work) return; timeout: - it6505_start_hdcp(it6505); + it6505_stop_hdcp(it6505); } static void it6505_hdcp_work(struct work_struct *work) @@ -2596,7 +2596,7 @@ static void it6505_irq_hdcp_fail(struct it6505 *it6505) DRM_DEV_DEBUG_DRIVER(dev, "hdcp fail interrupt"); it6505->hdcp_status = HDCP_AUTH_IDLE; it6505_show_hdcp_info(it6505); - it6505_start_hdcp(it6505); + it6505_stop_hdcp(it6505); } static void it6505_irq_aux_cmd_fail(struct it6505 *it6505) --- base-commit: 38feb171b3f92d77e8061fafb5ddfffc2c13b672 change-id: 20260112-disable-hdcp-auto-retry-6a8d00f6ba29 Best regards, -- Hermes Wu <[email protected]>
