From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: "Jason-JH.Lin" <jason-jh.lin@mediatek.com>,
Adam Thiede <me@adamthiede.com>,
Yassine Oudjana <yassine.oudjana@gmail.com>,
Chun-Kuang Hu <chunkuang.hu@kernel.org>
Cc: Shawn Sung <shawn.sung@mediatek.com>,
Alper Nebi Yasak <alpernebiyasak@gmail.com>,
dri-devel@lists.freedesktop.org,
linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Singo Chang <singo.chang@mediatek.com>,
Nancy Lin <nancy.lin@mediatek.com>,
Project_Global_Chrome_Upstream_Group@mediatek.com
Subject: Re: [PATCH v9 1/5] drm/mediatek: ovl: Fix XRGB format breakage for blend_modes unsupported SoCs
Date: Mon, 7 Oct 2024 11:36:35 +0200 [thread overview]
Message-ID: <703213a8-1ac6-4c8d-9487-ea1dbdabec40@collabora.com> (raw)
In-Reply-To: <20241007070101.23263-2-jason-jh.lin@mediatek.com>
Il 07/10/24 09:00, Jason-JH.Lin ha scritto:
> If the constant alpha always enable, the SoCs that is not supported the
> ignore pixel alpha bit will still use constant alpha. That will break
> the original constant alpha setting of XRGB foramt for blend_modes
> unsupported SoCs, such as MT8173.
>
> Note that ignore pixel alpha bit is suppored if the SoC support the
> blend_modes.
> Make the constatnt alpha only enable when having a vliad blend_mode or
> setting the has_alpha to fix the downgrade issue.
>
> Fixes: bc46eb5d5d77 ("drm/mediatek: Support DRM plane alpha in OVL")
> Signed-off-by: Jason-JH.Lin <jason-jh.lin@mediatek.com>
> ---
> drivers/gpu/drm/mediatek/mtk_disp_ovl.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/mediatek/mtk_disp_ovl.c b/drivers/gpu/drm/mediatek/mtk_disp_ovl.c
> index 89b439dcf3a6..8453a72f9e59 100644
> --- a/drivers/gpu/drm/mediatek/mtk_disp_ovl.c
> +++ b/drivers/gpu/drm/mediatek/mtk_disp_ovl.c
> @@ -473,8 +473,14 @@ void mtk_ovl_layer_config(struct device *dev, unsigned int idx,
>
> con = ovl_fmt_convert(ovl, fmt, blend_mode);
> if (state->base.fb) {
> - con |= OVL_CON_AEN;
> con |= state->base.alpha & OVL_CON_ALPHA;
> +
> + /*
> + * For blend_modes supported SoCs, always enable constant alpha.
> + * For blend_modes unsupported SoCs, enable constant alpha when has_alpha is set.
> + */
> + if (blend_mode || state->base.fb->format->has_alpha)
> + con |= OVL_CON_AEN;
I'd say that you should make sure that OVL_CON_AEN is not set when
!blend_mode && !has_alpha, and you can do that like this:
if (blend_mode || state->base.fb->format->has_alpha)
con |= OVL_CON_AEN;
else
con &= ~OVL_CON_AEN;
After applying the proposed change,
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
next prev parent reply other threads:[~2024-10-07 9:36 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-07 7:00 [PATCH v9 0/5] Fix degradation problem of alpha blending series Jason-JH.Lin
2024-10-07 7:00 ` [PATCH v9 1/5] drm/mediatek: ovl: Fix XRGB format breakage for blend_modes unsupported SoCs Jason-JH.Lin
2024-10-07 9:36 ` AngeloGioacchino Del Regno [this message]
2024-10-07 14:29 ` Jason-JH Lin (林睿祥)
2024-10-07 15:12 ` Markus Elfring
2024-10-08 3:51 ` CK Hu (胡俊光)
2024-10-08 6:33 ` Jason-JH Lin (林睿祥)
2024-10-07 7:00 ` [PATCH v9 2/5] drm/mediatek: ovl: Refine ignore_pixel_alpha comment and placement Jason-JH.Lin
2024-10-07 9:37 ` AngeloGioacchino Del Regno
2024-10-08 3:56 ` CK Hu (胡俊光)
2024-10-07 7:00 ` [PATCH v9 3/5] drm/mediatek: ovl: Remove the color format comment for ovl_fmt_convert() Jason-JH.Lin
2024-10-07 7:01 ` [PATCH v9 4/5] drm/mediatek: ovl: Add blend_modes to driver data Jason-JH.Lin
2024-10-07 15:40 ` Markus Elfring
2024-10-07 7:01 ` [PATCH v9 5/5] drm/mediatek: Add blend_modes to mtk_plane_init() for different SoCs Jason-JH.Lin
2024-10-08 4:15 ` [PATCH v9 0/5] Fix degradation problem of alpha blending series Chen-Yu Tsai
2024-10-08 6:39 ` Jason-JH Lin (林睿祥)
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=703213a8-1ac6-4c8d-9487-ea1dbdabec40@collabora.com \
--to=angelogioacchino.delregno@collabora.com \
--cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
--cc=alpernebiyasak@gmail.com \
--cc=chunkuang.hu@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jason-jh.lin@mediatek.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=me@adamthiede.com \
--cc=nancy.lin@mediatek.com \
--cc=shawn.sung@mediatek.com \
--cc=singo.chang@mediatek.com \
--cc=yassine.oudjana@gmail.com \
/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
all inboxes | Powered by JetHome®