From: sashiko-bot@kernel.org
To: "Igor Paunovic" <royalnet026@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm/rockchip: dw_hdmi_qp: attach the HDMI Colorspace connector property
Date: Tue, 14 Jul 2026 20:40:26 +0000 [thread overview]
Message-ID: <20260714204026.84B601F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260714202850.40999-1-royalnet026@gmail.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Returning an error from `dw_hdmi_qp_rockchip_bind()` without cancelling `hdmi->hpd_work` leads to a Use-After-Free when the delayed work or HPD interrupt fires.
--
--- Patch [1]: [PATCH] drm/rockchip: dw_hdmi_qp: attach the HDMI Colorspace connector property ---
commit 77d2f0e8bc60d50755aec22dee119ad08bb92b3c
Author: Igor Paunovic <royalnet026@gmail.com>
drm/rockchip: dw_hdmi_qp: attach the HDMI Colorspace connector property
This commit creates and attaches the standard HDMI colorspace property
after the bridge connector is initialised. This allows userspace to request
BT.2020 colorimetry and enables wide-gamut/HDR output on RK3588.
> diff --git a/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c b/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
> --- a/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
> +++ b/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
[ ... ]
> @@ -695,6 +695,20 @@ static int dw_hdmi_qp_rockchip_bind(struct device *dev, struct device *master,
> return dev_err_probe(hdmi->dev, PTR_ERR(connector),
> "Failed to init bridge connector\n");
>
> + /*
> + * Attach the HDMI Colorspace property. The HDMI connector framework
> + * already consumes conn_state->colorspace for the AVI infoframe
> + * (drm_hdmi_avi_infoframe_colorimetry()), and HDR_OUTPUT_METADATA and
> + * max bpc are attached by drmm_connector_hdmi_init(), but without the
> + * Colorspace property userspace cannot request BT.2020 signalling,
> + * which keeps wide-gamut/HDR output unavailable. Passing 0 selects
> + * the full HDMI colorspace set defined by the core.
> + */
> + ret = drm_mode_create_hdmi_colorspace_property(connector, 0);
> + if (ret)
> + return ret;
[Severity: High]
This is a pre-existing issue, but by adding this error path, the patch
exposes it further. Does returning an error here without cancelling
hdmi->hpd_work risk a use-after-free?
If a hardware HPD interrupt fires right before the devres cleanup
unregisters the IRQ, hdmi->hpd_work can get queued. The DRM master
teardown then frees hdmi (which was allocated via drmm_kzalloc),
leaving the delayed work to execute later with a dangling pointer:
drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c:dw_hdmi_qp_rk3588_hpd_work() {
struct rockchip_hdmi_qp *hdmi = container_of(work,
struct rockchip_hdmi_qp,
hpd_work.work);
struct drm_device *drm = hdmi->encoder.encoder.dev;
...
}
Could we ensure that the delayed work is properly cancelled before
returning errors from dw_hdmi_qp_rockchip_bind()?
> + drm_connector_attach_colorspace_property(connector);
>
> return 0;
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260714202850.40999-1-royalnet026@gmail.com?part=1
prev parent reply other threads:[~2026-07-14 20:40 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-14 20:28 [PATCH] drm/rockchip: dw_hdmi_qp: attach the HDMI Colorspace connector property Igor Paunovic
2026-07-14 20:28 ` Igor Paunovic
2026-07-14 20:40 ` sashiko-bot [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=20260714204026.84B601F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=royalnet026@gmail.com \
--cc=sashiko-reviews@lists.linux.dev \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.