]> git.baikalelectronics.ru Git - kernel.git/commit
drm/bridge: lt9611: Use both bits for HDMI sensing
authorJohn Stultz <jstultz@google.com>
Wed, 11 May 2022 01:26:12 +0000 (01:26 +0000)
committerRobert Foss <robert.foss@linaro.org>
Mon, 23 May 2022 10:17:50 +0000 (12:17 +0200)
commit436fea039b91a06667d7c23ab723dc0ce3158d42
tree4bc3aa10f786648f148723a862d9bb2568cabe8c
parent9e1ee2e427ef2a65a6e43fba04aa13f21aabcd80
drm/bridge: lt9611: Use both bits for HDMI sensing

In commit b38eafa7adae ("lontium-lt9611: check a different
register bit for HDMI sensing"), the bit flag used to detect
HDMI cable connect was switched from BIT(2) to BIT(0) to improve
compatibility with some monitors that didn't seem to set BIT(2).

However, with that change, I've seen occasional issues where the
detection failed, because BIT(2) was set, but not BIT(0).

Unfortunately, as I understand it, the bits and their function
was never clearly documented. So lets instead check both
(BIT(2) | BIT(0)) when checking the register.

Cc: Yongqin Liu <yongqin.liu@linaro.org>
Cc: Amit Pundir <amit.pundir@linaro.org>
Cc: Peter Collingbourne <pcc@google.com>
Cc: Vinod Koul <vkoul@kernel.org>
Cc: Bjorn Andersson <bjorn.andersson@linaro.org>
Cc: Robert Foss <robert.foss@linaro.org>
Cc: kernel-team@android.com
Fixes: b38eafa7adae ("lontium-lt9611: check a different register bit for HDMI sensing")
Signed-off-by: John Stultz <jstultz@google.com>
Reviewed-by: Robert Foss <robert.foss@linaro.org>
Signed-off-by: Robert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20220511012612.3297577-2-jstultz@google.com
drivers/gpu/drm/bridge/lontium-lt9611.c