From: Maxime Ripard <mripard@kernel.org>
To: Alexey Charkov <alchark@flipper.net>
Cc: Sandy Huang <hjc@rock-chips.com>, Heiko Stübner <heiko@sntech.de>,
Andy Yan <andy.yan@rock-chips.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Cristian Ciocaltea <cristian.ciocaltea@collabora.com>,
dri-devel@lists.freedesktop.org,
linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] drm/rockchip: dw_hdmi_qp: expose "overscan" property
Date: Wed, 3 Jun 2026 09:55:51 +0200 [thread overview]
Message-ID: <20260603-glittering-vigilant-beluga-0c6bf6@houat> (raw)
In-Reply-To: <20260602-hdmi-overscan-v1-2-31f71b817c80@flipper.net>
[-- Attachment #1: Type: text/plain, Size: 2390 bytes --]
On Tue, Jun 02, 2026 at 09:00:40PM +0400, Alexey Charkov wrote:
> Expose the "overscan" connector property as recognized by KWin and the
> likes to compensate for TV overscan cropping.
>
> The CRTC will use the margin values derived from this overscan percentage
> in its post-composition scaler to add appropriate blank margins on all
> sides of the output image so that the TV doesn't eat up visible content.
>
> Signed-off-by: Alexey Charkov <alchark@flipper.net>
> ---
> drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c b/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
> index f35484715c2d..fae44d11dbef 100644
> --- a/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
> +++ b/drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
> @@ -137,10 +137,18 @@ dw_hdmi_qp_rockchip_encoder_atomic_check(struct drm_encoder *encoder,
> struct drm_connector_state *conn_state)
> {
> struct rockchip_hdmi_qp *hdmi = to_rockchip_hdmi_qp(encoder);
> + const struct drm_display_mode *adj_mode = &crtc_state->adjusted_mode;
> struct rockchip_crtc_state *s = to_rockchip_crtc_state(crtc_state);
> union phy_configure_opts phy_cfg = {};
> + unsigned int overscan;
> int ret;
>
> + overscan = min(conn_state->tv.overscan, 100u);
> + s->tv_margins.left = adj_mode->hdisplay * overscan / 200;
> + s->tv_margins.right = s->tv_margins.left;
> + s->tv_margins.top = adj_mode->vdisplay * overscan / 200;
> + s->tv_margins.bottom = s->tv_margins.top;
> +
> if (hdmi->tmds_char_rate == conn_state->hdmi.tmds_char_rate &&
> s->output_bpc == conn_state->hdmi.output_bpc)
> return 0;
> @@ -603,6 +611,14 @@ 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");
>
> + ret = drm_mode_create_tv_properties_legacy(drm, 0, NULL);
> + if (ret)
> + return dev_err_probe(dev, ret,
> + "Failed to create TV connector properties\n");
> +
> + drm_object_attach_property(&connector->base,
> + drm->mode_config.tv_overscan_property, 0);
> +
As the name suggests, it's a legacy property only ever used for TV. You
should be using drm_mode_create_tv_margin_properties()
Maxime
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 273 bytes --]
next prev parent reply other threads:[~2026-06-03 7:55 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-02 17:00 [PATCH 0/2] drm/rockchip: dw_hdmi_qp: Add support for HDMI overscan compensation Alexey Charkov
2026-06-02 17:00 ` [PATCH 1/2] drm/rockchip: vop2: honor TV margins from CRTC state for " Alexey Charkov
2026-06-04 2:35 ` Claude review: " Claude Code Review Bot
2026-06-02 17:00 ` [PATCH 2/2] drm/rockchip: dw_hdmi_qp: expose "overscan" property Alexey Charkov
2026-06-03 7:55 ` Maxime Ripard [this message]
2026-06-03 8:15 ` Alexey Charkov
2026-06-03 13:11 ` Andy Yan
2026-06-04 2:35 ` Claude review: " Claude Code Review Bot
2026-06-04 2:35 ` Claude review: drm/rockchip: dw_hdmi_qp: Add support for HDMI overscan compensation Claude Code Review Bot
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=20260603-glittering-vigilant-beluga-0c6bf6@houat \
--to=mripard@kernel.org \
--cc=airlied@gmail.com \
--cc=alchark@flipper.net \
--cc=andy.yan@rock-chips.com \
--cc=cristian.ciocaltea@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=heiko@sntech.de \
--cc=hjc@rock-chips.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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