From: "Andy Yan" <andyshrk@163.com>
To: "Cristian Ciocaltea" <cristian.ciocaltea@collabora.com>
Cc: "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>,
"Sandy Huang" <hjc@rock-chips.com>,
"Heiko Stübner" <heiko@sntech.de>,
"Andy Yan" <andy.yan@rock-chips.com>,
"Louis Chauvet" <louis.chauvet@bootlin.com>,
"Haneen Mohammed" <hamohammed.sa@gmail.com>,
"Melissa Wen" <melissa.srw@gmail.com>,
"Robert Mader" <robert.mader@collabora.com>,
kernel@collabora.com, dri-devel@lists.freedesktop.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org
Subject: Re:Re: [PATCH v4 4/4] drm/rockchip: vop2: Support setting custom background color
Date: Fri, 13 Feb 2026 15:07:54 +0800 (CST) [thread overview]
Message-ID: <539febc7.2cf9.19c55d3dfb0.Coremail.andyshrk@163.com> (raw)
In-Reply-To: <67fb66b7-eee7-4109-8127-385593e88425@collabora.com>
Hello Cristian,
At 2026-01-16 23:22:11, "Cristian Ciocaltea" <cristian.ciocaltea@collabora.com> wrote:
>On 1/10/26 11:58 AM, Cristian Ciocaltea wrote:
>> Hi Andy,
>>
>> On 1/10/26 6:00 AM, Andy Yan wrote:
>>>
>>>
>>> Hello Cristian,
>>> At 2025-12-20 05:47:01, "Cristian Ciocaltea" <cristian.ciocaltea@collabora.com> wrote:
>>>> The Rockchip VOP2 display controller allows configuring the background
>>>> color of each video output port.
>>>>
>>>> Since a previous patch introduced the BACKGROUND_COLOR CRTC property,
>>>> which defaults to solid black, make use of it when programming the
>>>> hardware.
>>>>
>>>> Note the maximum precision allowed by the display controller is 10bpc,
>>>> while the alpha component is not supported, hence ignored.
>>>>
>>>> Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
>>>> ---
>>>> drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 13 ++++++++++++-
>>>> drivers/gpu/drm/rockchip/rockchip_drm_vop2.h | 4 ++++
>>>> 2 files changed, 16 insertions(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
>>>> index 498df0ce4680..3a232d0d4acb 100644
>>>> --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
>>>> +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
>>>> @@ -1554,6 +1554,7 @@ static void vop2_post_config(struct drm_crtc *crtc)
>>>> struct vop2_video_port *vp = to_vop2_video_port(crtc);
>>>> struct vop2 *vop2 = vp->vop2;
>>>> struct drm_display_mode *mode = &crtc->state->adjusted_mode;
>>>> + u64 bgcolor = crtc->state->background_color;
>>>> u16 vtotal = mode->crtc_vtotal;
>>>> u16 hdisplay = mode->crtc_hdisplay;
>>>> u16 hact_st = mode->crtc_htotal - mode->crtc_hsync_start;
>>>> @@ -1599,7 +1600,11 @@ static void vop2_post_config(struct drm_crtc *crtc)
>>>> vop2_vp_write(vp, RK3568_VP_POST_DSP_VACT_INFO_F1, val);
>>>> }
>>>>
>>>> - vop2_vp_write(vp, RK3568_VP_DSP_BG, 0);
>>>> + /* Background color is programmed with 10 bits of precision */
>>>> + val = FIELD_PREP(RK3568_VP_DSP_BG__DSP_BG_RED, DRM_ARGB64_GETR(bgcolor) >> 6);
>>>> + val |= FIELD_PREP(RK3568_VP_DSP_BG__DSP_BG_GREEN, DRM_ARGB64_GETG(bgcolor) >> 6);
>>>
>>>> + val |= FIELD_PREP(RK3568_VP_DSP_BG__DSP_BG_BLUE, DRM_ARGB64_GETB(bgcolor) >> 6);
>>>
>>>
>>> the bit31 of RK3568_VP_DSP_BG is bg_display_en, that means when we set a
>>> background color, we should set this bg_display_en bit.
>
>I performed several tests on my ROCK 3A (RK3568), ROCK 4D (RK3576) and ROCK 5B
>(RK3588) boards and noticed that by setting bg_display_en bit to 1 or 0 doesn't
>have any influence on RK3568 and RK3576, the background color is always active
>and cannot be disabled.
>
>However, flipping the bit to 1 on RK3588 has the unexpected effect of covering
>the whole screen with the configured color, even when there's an active plane
>displayed on top. Switching back to 0 makes it work as expected.
>
>Therefore I think we should keep this patch as is, unless there's something else
>we're missing here.
>
>>> The default value of this bit is 1, which explains why the patch currently works
>>> properly even though it doesn't set bit31.
>>
>> For some reason, the RK3588 TRM indicates 0x0 for the reset value. I assume
>> that's a mistake, as RK3576 TRM shows 0x1.
>
>Considering the observation above, it kinda makes sense now for RK3588 to
>default to 0.
I further confirmed with our IC team: for RK3588, RK3528, and RK3562, if the display_enbit is set, the background color will indeed cover all layers.
For other chips, this bit has no effect.
So ACK
>
next prev parent reply other threads:[~2026-02-13 7:09 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-19 21:46 [PATCH v4 0/4] Introduce BACKGROUND_COLOR DRM CRTC property Cristian Ciocaltea
2025-12-19 21:46 ` [PATCH v4 1/4] uapi: Provide DIV_ROUND_CLOSEST() Cristian Ciocaltea
2026-01-26 18:33 ` Nícolas F. R. A. Prado
2025-12-19 21:46 ` [PATCH v4 2/4] drm: Add CRTC background color property Cristian Ciocaltea
2026-01-26 18:23 ` Nícolas F. R. A. Prado
2026-01-27 9:01 ` Cristian Ciocaltea
2025-12-19 21:47 ` [PATCH v4 3/4] drm/vkms: Support setting custom background color Cristian Ciocaltea
2026-01-26 18:25 ` Nícolas F. R. A. Prado
2025-12-19 21:47 ` [PATCH v4 4/4] drm/rockchip: vop2: " Cristian Ciocaltea
2026-01-10 4:00 ` Andy Yan
2026-01-10 9:58 ` [PATCH " Cristian Ciocaltea
2026-01-16 15:22 ` Cristian Ciocaltea
2026-02-13 7:07 ` Andy Yan [this message]
2026-02-13 11:04 ` Cristian Ciocaltea
2026-01-26 18:30 ` Nícolas F. R. A. Prado
2026-01-26 18:52 ` Cristian Ciocaltea
2026-01-07 19:42 ` [PATCH v4 0/4] Introduce BACKGROUND_COLOR DRM CRTC property Diederik de Haas
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=539febc7.2cf9.19c55d3dfb0.Coremail.andyshrk@163.com \
--to=andyshrk@163.com \
--cc=airlied@gmail.com \
--cc=andy.yan@rock-chips.com \
--cc=cristian.ciocaltea@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=hamohammed.sa@gmail.com \
--cc=heiko@sntech.de \
--cc=hjc@rock-chips.com \
--cc=kernel@collabora.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=louis.chauvet@bootlin.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=melissa.srw@gmail.com \
--cc=mripard@kernel.org \
--cc=robert.mader@collabora.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