mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-13 00:19:17 +00:00
* Wireguard: bump tag to most recent since it breaks building on 5.4.y * Move rockchip current to 5.4.y * Move sunxi current to 5.4.y * Move meson64 to 5.4.y * Move odroidxu4 to 5.4.y and enable "current" targets * Enable missing target
71 lines
2.8 KiB
Diff
71 lines
2.8 KiB
Diff
From patchwork Wed Oct 2 19:44:06 2019
|
|
Content-Type: text/plain; charset="utf-8"
|
|
MIME-Version: 1.0
|
|
Content-Transfer-Encoding: 7bit
|
|
Subject: [v2] drm/bridge: dw-hdmi: Refuse DDC/CI transfers on the internal I2C controller
|
|
From: Matthias Kaehlcke <mka@chromium.org>
|
|
X-Patchwork-Id: 334046
|
|
Message-Id: <20191002124354.v2.1.I709dfec496f5f0b44a7b61dcd4937924da8d8382@changeid>
|
|
To: Archit Taneja <architt@codeaurora.org>, Andrzej Hajda <a.hajda@samsung.com>,
|
|
Laurent Pinchart <Laurent.pinchart@ideasonboard.com>,
|
|
David Airlie <airlied@linux.ie>
|
|
Cc: Jernej Skrabec <jernej.skrabec@siol.net>,
|
|
Tzung-Bi Shih <tzungbi@chromium.org>,
|
|
Neil Armstrong <narmstrong@baylibre.com>,
|
|
Sean Paul <sean@poorly.run>, Douglas Anderson <dianders@chromium.org>,
|
|
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
|
|
Matthias Kaehlcke <mka@chromium.org>, Cheng-Yi Chiang <cychiang@chromium.org>,
|
|
Yakir Yang <kuankuan.y@gmail.com>, Jerome Brunet <jbrunet@baylibre.com>
|
|
Date: Wed, 2 Oct 2019 12:44:06 -0700
|
|
|
|
The DDC/CI protocol involves sending a multi-byte request to the
|
|
display via I2C, which is typically followed by a multi-byte
|
|
response. The internal I2C controller only allows single byte
|
|
reads/writes or reads of 8 sequential bytes, hence DDC/CI is not
|
|
supported when the internal I2C controller is used. The I2C
|
|
transfers complete without errors, however the data in the response
|
|
is garbage. Abort transfers to/from slave address 0x37 (DDC) with
|
|
-EOPNOTSUPP, to make it evident that the communication is failing.
|
|
|
|
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
|
|
Reviewed-by: Douglas Anderson <dianders@chromium.org>
|
|
Reviewed-by: Sean Paul <sean@poorly.run>
|
|
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
|
|
---
|
|
Sorry for the delay with sending v2, I completely forgot about this patch ...
|
|
|
|
Changes in v2:
|
|
- updated comment with 'TOFIX' entry as requested by Neil
|
|
- added Neil's 'Acked-by' tag
|
|
|
|
drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
|
|
index 52d220a70362..ac24bceaf415 100644
|
|
--- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
|
|
+++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
|
|
@@ -41,6 +41,7 @@
|
|
|
|
#include <media/cec-notifier.h>
|
|
|
|
+#define DDC_CI_ADDR 0x37
|
|
#define DDC_SEGMENT_ADDR 0x30
|
|
|
|
#define HDMI_EDID_LEN 512
|
|
@@ -439,6 +440,15 @@ static int dw_hdmi_i2c_xfer(struct i2c_adapter *adap,
|
|
u8 addr = msgs[0].addr;
|
|
int i, ret = 0;
|
|
|
|
+ if (addr == DDC_CI_ADDR)
|
|
+ /*
|
|
+ * The internal I2C controller does not support the multi-byte
|
|
+ * read and write operations needed for DDC/CI.
|
|
+ * TOFIX: Blacklist the DDC/CI address until we filter out
|
|
+ * unsupported I2C operations.
|
|
+ */
|
|
+ return -EOPNOTSUPP;
|
|
+
|
|
dev_dbg(hdmi->dev, "xfer: num: %d, addr: %#x\n", num, addr);
|
|
|
|
for (i = 0; i < num; i++) {
|