From: Jani Nikula <jani.nikula@linux.intel.com>
To: "Nicolas Frattaroli" <nicolas.frattaroli@collabora.com>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Andrzej Hajda" <andrzej.hajda@intel.com>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Robert Foss" <rfoss@kernel.org>,
"Laurent Pinchart" <Laurent.pinchart@ideasonboard.com>,
"Jonas Karlman" <jonas@kwiboo.se>,
"Jernej Skrabec" <jernej.skrabec@gmail.com>,
"Luca Ceresoli" <luca.ceresoli@bootlin.com>,
"Daniel Stone" <daniel@fooishbar.org>,
"Hans Verkuil" <hverkuil+cisco@kernel.org>,
"Chen-Yu Tsai" <wens@kernel.org>,
"Samuel Holland" <samuel@sholland.org>,
"Dave Stevenson" <dave.stevenson@raspberrypi.com>,
"Maíra Canal" <mcanal@igalia.com>,
"Raspberry Pi Kernel Maintenance" <kernel-list@raspberrypi.com>
Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
kernel@collabora.com, linux-arm-kernel@lists.infradead.org,
linux-sunxi@lists.linux.dev,
Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Subject: Re: [PATCH v9 0/5] Add SCDC information to connector debugfs
Date: Tue, 28 Jul 2026 10:45:37 +0300 [thread overview]
Message-ID: <f18b084c3b6372da4c9e5a779696edc599a9f0a6@intel.com> (raw)
In-Reply-To: <EDiHBw8XQg-RsxQIQVIjig@collabora.com>
On Mon, 27 Jul 2026, Nicolas Frattaroli <nicolas.frattaroli@collabora.com> wrote:
> On Monday, 27 July 2026 10:35:15 Central European Summer Time Jani Nikula wrote:
>> On Fri, 24 Jul 2026, Nicolas Frattaroli <nicolas.frattaroli@collabora.com> wrote:
>> > HDMI uses the DDC I2C bus for communicating various bits of link status
>> > out of band with the actual HDMI video signal. This information can be
>> > useful for debugging issues like questionable cables sabotaged by feline
>> > teeth, Enthusiast Grade cables made of cow fencing wire, and other such
>> > problems that ruin one's media viewing plans.
>> >
>> > Consequently, this series exposes various bits of pertinent information
>> > from the SCDC protocol in an HDMI connector's debugfs. To continually
>> > poll the link status, userspace can poll the debugfs file.
>>
>> Is there a reason we can't add a character device node for this similar
>> to DP AUX? See config DRM_DISPLAY_DP_AUX_CHARDEV.
>
> You already can just point tools at the ddc symlink to the i2c dev.
>
> The idea here is to be able to read this out of debugfs without
> any additional external tooling needed.
Fair enough, thanks.
BR,
Jani.
>
>> It's ultimately more generic than deciphering everything in kernel.
>
> The kernel will need to decipher this in the future anyway for HDMI 2.x
> support, including so that it can set link status to bad when there's a
> glut of errors.
>
>>
>>
>> BR,
>> Jani.
>>
>>
>>
>>
>>
>> >
>> > ---
>> > Changes in v9:
>> > - Unlock mode_config.mutex on disconnected connector early exit
>> > - Calculate and print Reed-Solomon error corrections counter on != 4
>> > lane FRL as well. Technically a functional change to an already
>> > reviewed patch, but I kept the R-b because it's so minor.
>> > - Link to v8: https://patch.msgid.link/20260722-scdc-link-health-v8-0-cd1dacbb85d9@collabora.com
>> >
>> > Changes in v8:
>> > - Acquire mode_config mutex in an interruptible way during
>> > scdc_status_show to avoid racing connector state
>> > - Remove scdc_debugfs_priv, use connector as debugfs entry priv instead
>> > - Allocate and free state in scdc_status_show, since it doesn't need to
>> > persist across debugfs reads
>> > - Check for NULL ddc in drm_scdc_read_state in the unlikely event an
>> > EDID with the SCDC flag was forced on a connector with no DDC
>> > - Note: drm_connector_get() is omitted from drm_scdc_debugfs_init
>> > because drm_scdc_debugfs_init is called on connector construction and
>> > the debugfs is removed on connector destruction. Adding a redundant
>> > reference increase here would necessitate introducing a destruction
>> > callback to mirror the debugfs_init connector op for the sole purpose
>> > of decreasing the counter again.
>> > - Link to v7: https://patch.msgid.link/20260721-scdc-link-health-v7-0-92df1b6ad5fc@collabora.com
>> >
>> > Changes in v7:
>> > - Move HDMI debugfs registration to new state helper, fix up all users
>> > (sun4i, vc4, bridge)
>> > - Register scdc debugfs in new hdmi debugfs helper
>> > - Link to v6: https://patch.msgid.link/20260611-scdc-link-health-v6-0-6307875a6b5e@collabora.com
>> >
>> > Changes in v6:
>> > - Fix off-by-one error in drm_scdc_read_state
>> > - Link to v5: https://patch.msgid.link/20260604-scdc-link-health-v5-0-11173b0ac3de@collabora.com
>> >
>> > Changes in v5:
>> > - Read all SCDC data regardless of update flags
>> > - Dump SCDC data as hex before the human-readable output. It's separated
>> > with "\n----------------\n\n".
>> > - No longer write 0 to read-only registers
>> > - Add Reed-Solomon Corrections counter parsing
>> > - Parsing has been kept. A desire was expressed to get this data without
>> > any external userspace tooling, and the kernel will need to parse it
>> > eventually anyway to set the link status.
>> > - Functions have been made static as of right now, since external users
>> > may do another pass over the function signatures anyway.
>> > - Link to v4: https://patch.msgid.link/20260527-scdc-link-health-v4-0-622ea40a1f59@collabora.com
>> >
>> > Changes in v4:
>> > - Don't use C struct bitfields for parsing status flags. Switch to
>> > bitwise AND for boolean flags, and FIELD_GET for multi-bit values.
>> > - Drop the superfluous !! and parens
>> > - Drop the __pure attributes on static functions
>> > - Initialise stack local arrays with {}, not { 0 }.
>> > - I've kept the print macros and %-30s format. Reason being that I don't
>> > want to repeat the format specifier and str_yes_no(foo) a bunch, and I
>> > like the %-30s format because it means all values are aligned with the
>> > value of the longest field, which is 30 chars long.
>> > - Link to v3: https://patch.msgid.link/20260526-scdc-link-health-v3-0-59e4a4aaead1@collabora.com
>> >
>> > Changes in v3:
>> > - Add patch to change return type of drm_scdc_read/write.
>> > - Rework error counter reading to duplicate less code.
>> > - Also check lane 3 counter valid flag when reading its error counter.
>> > - Use memset to clear buf for error counters, rather than doing it in
>> > the loop.
>> > - Make read_error_counters not accept 0 as num_lanes; fix it up in the
>> > caller instead.
>> > - Link to v2: https://patch.msgid.link/20260520-scdc-link-health-v2-0-511af18cd64b@collabora.com
>> >
>> > Changes in v2:
>> > - Add HDMI 2.1 SCDC status reporting
>> > - Link to v1: https://patch.msgid.link/20260415-scdc-link-health-v1-0-8e731e88eaf0@collabora.com
>> >
>> > To: Jani Nikula <jani.nikula@linux.intel.com>
>> > To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>> > To: Maxime Ripard <mripard@kernel.org>
>> > To: Thomas Zimmermann <tzimmermann@suse.de>
>> > To: David Airlie <airlied@gmail.com>
>> > To: Simona Vetter <simona@ffwll.ch>
>> > To: Andrzej Hajda <andrzej.hajda@intel.com>
>> > To: Neil Armstrong <neil.armstrong@linaro.org>
>> > To: Robert Foss <rfoss@kernel.org>
>> > To: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
>> > To: Jonas Karlman <jonas@kwiboo.se>
>> > To: Jernej Skrabec <jernej.skrabec@gmail.com>
>> > To: Luca Ceresoli <luca.ceresoli@bootlin.com>
>> > To: Daniel Stone <daniel@fooishbar.org>
>> > To: Hans Verkuil <hverkuil+cisco@kernel.org>
>> > To: Chen-Yu Tsai <wens@kernel.org>
>> > To: Samuel Holland <samuel@sholland.org>
>> > To: Dave Stevenson <dave.stevenson@raspberrypi.com>
>> > To: Maíra Canal <mcanal@igalia.com>
>> > To: Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
>> > Cc: dri-devel@lists.freedesktop.org
>> > Cc: linux-kernel@vger.kernel.org
>> > Cc: kernel@collabora.com
>> > Cc: linux-arm-kernel@lists.infradead.org
>> > Cc: linux-sunxi@lists.linux.dev
>> > Signed-off-by: Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
>> >
>> > ---
>> > Nicolas Frattaroli (5):
>> > drm/scdc-helper: Don't use ssize_t return type for scdc_read/write
>> > drm/scdc-helper: Add scdc_status debugfs entry
>> > drm/scdc-helper: Implement parsing and printing HDMI 2.1 fields
>> > drm/debugfs: Move HDMI debugfs registration to state helper
>> > drm/display: hdmi-state-helper: Init SCDC debugfs for HDMI
>> >
>> > drivers/gpu/drm/display/drm_bridge_connector.c | 3 +
>> > drivers/gpu/drm/display/drm_hdmi_state_helper.c | 156 +++++++++++++
>> > drivers/gpu/drm/display/drm_scdc_helper.c | 289 +++++++++++++++++++++++-
>> > drivers/gpu/drm/drm_debugfs.c | 157 -------------
>> > drivers/gpu/drm/sun4i/sun4i_hdmi_enc.c | 1 +
>> > drivers/gpu/drm/vc4/vc4_hdmi.c | 1 +
>> > include/drm/display/drm_hdmi_state_helper.h | 3 +
>> > include/drm/display/drm_scdc.h | 21 +-
>> > include/drm/display/drm_scdc_helper.h | 103 ++++++++-
>> > 9 files changed, 568 insertions(+), 166 deletions(-)
>> > ---
>> > base-commit: b747a63003130bef1a3d5d6ba97c94d0cee36f55
>> > change-id: 20260413-scdc-link-health-89326013d96c
>> >
>> > Best regards,
>> > --
>> > Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
>> >
>>
>>
>
>
>
>
--
Jani Nikula, Intel
prev parent reply other threads:[~2026-07-28 7:45 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 14:22 [PATCH v9 0/5] Add SCDC information to connector debugfs Nicolas Frattaroli
2026-07-24 14:22 ` [PATCH v9 1/5] drm/scdc-helper: Don't use ssize_t return type for scdc_read/write Nicolas Frattaroli
2026-07-24 14:22 ` [PATCH v9 2/5] drm/scdc-helper: Add scdc_status debugfs entry Nicolas Frattaroli
2026-08-10 9:23 ` Maxime Ripard
2026-07-24 14:22 ` [PATCH v9 3/5] drm/scdc-helper: Implement parsing and printing HDMI 2.1 fields Nicolas Frattaroli
2026-07-24 14:22 ` [PATCH v9 4/5] drm/debugfs: Move HDMI debugfs registration to state helper Nicolas Frattaroli
2026-07-24 14:22 ` [PATCH v9 5/5] drm/display: hdmi-state-helper: Init SCDC debugfs for HDMI Nicolas Frattaroli
2026-07-27 8:35 ` [PATCH v9 0/5] Add SCDC information to connector debugfs Jani Nikula
2026-07-27 12:28 ` Nicolas Frattaroli
2026-07-28 7:45 ` Jani Nikula [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f18b084c3b6372da4c9e5a779696edc599a9f0a6@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=airlied@gmail.com \
--cc=andrzej.hajda@intel.com \
--cc=daniel@fooishbar.org \
--cc=dave.stevenson@raspberrypi.com \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=hverkuil+cisco@kernel.org \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=kernel-list@raspberrypi.com \
--cc=kernel@collabora.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=luca.ceresoli@bootlin.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mcanal@igalia.com \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=nicolas.frattaroli@collabora.com \
--cc=rfoss@kernel.org \
--cc=samuel@sholland.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
--cc=wens@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox