mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Jason-JH Lin (林睿祥)" <Jason-JH.Lin@mediatek.com>
To: "CK Hu (胡俊光)" <ck.hu@mediatek.com>,
	"me@adamthiede.com" <me@adamthiede.com>,
	"yassine.oudjana@gmail.com" <yassine.oudjana@gmail.com>,
	"chunkuang.hu@kernel.org" <chunkuang.hu@kernel.org>,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"Singo Chang (張興國)" <Singo.Chang@mediatek.com>,
	"Shawn Sung (宋孝謙)" <Shawn.Sung@mediatek.com>,
	"Nancy Lin (林欣螢)" <Nancy.Lin@mediatek.com>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	Project_Global_Chrome_Upstream_Group
	<Project_Global_Chrome_Upstream_Group@mediatek.com>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] drm/mediatek: Fix XRGB format breakage for blend_modes unsupported SoCs
Date: Mon, 7 Oct 2024 06:09:31 +0000	[thread overview]
Message-ID: <fe26e581f11b992aaa358141070a36360a97e192.camel@mediatek.com> (raw)
In-Reply-To: <fe1784eb5b64327c2a6a5836f245501b7032b1c5.camel@mediatek.com>

Hi CK,

On Mon, 2024-10-07 at 05:57 +0000, CK Hu (胡俊光) wrote:
> Hi, Jason:
> 
> On Sat, 2024-10-05 at 17:52 +0800, Jason-JH.Lin wrote:
> > If the constant alpha always set, the SoCs that is not supported
> > the
> > ignore 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.
> > 
> > Make the constatnt alpha only set when setting has_alpha or
> > supported
> > blend_modes SoC to fix the downgrade issue.
> 
> I would like this patch to be cherry-picked to kernel 6.11 easily, so
> let this patch base on 6.12-rc1.

OK, I'll move this patch in front of this series:
[1] Fix degradation problem of alpha blending series
- 
https://patchwork.kernel.org/project/linux-mediatek/list/?series=893634
and then send v9 to let you cherry-pick it to kernel-6.11 easily.

> 
> > 
> > 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 | 28 +++++++++++++++----
> > ------
> >  1 file changed, 17 insertions(+), 11 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/mediatek/mtk_disp_ovl.c
> > b/drivers/gpu/drm/mediatek/mtk_disp_ovl.c
> > index 703cd3f6c6d3..de3addd89442 100644
> > --- a/drivers/gpu/drm/mediatek/mtk_disp_ovl.c
> > +++ b/drivers/gpu/drm/mediatek/mtk_disp_ovl.c
> > @@ -494,19 +494,25 @@ void mtk_ovl_layer_config(struct device *dev,
> > unsigned int idx,
> >  
> >  	con = mtk_ovl_fmt_convert(ovl, state);
> >  	if (state->base.fb) {
> > -		con |= OVL_CON_AEN;
> > -		con |= state->base.alpha & OVL_CON_ALPHA;
> > +		/*
> > +		 * For blend_modes supported SoCs, always set constant
> > alpha.
> > +		 * For blend_modes unsupported SoCs, set constant alpha
> > when has_alpha is set.
> > +		 */
> > +		if (ovl->data->blend_modes || state->base.fb->format-
> > >has_alpha) {
> > +			con |= OVL_CON_AEN;
> > +			con |= state->base.alpha & OVL_CON_ALPHA;
> 
> MT8173 does not support ignore pixel alpha, so OVL_CON_AEN would be
> disabled for XRGB.
> And this is not related to plane alpha, so plane alpha setting should
> be moved out of here.

OK, that make sense.
But I would like to ask Yassine and Adam to test this change again.

> 
> > +		}
> > +
> > +		/*
> > +		 * Although the alpha channel can be ignored, CONST_BLD
> > must be enabled
> > +		 * for XRGB format, otherwise OVL will still read the
> > value from memory.
> > +		 * For RGB888 related formats, whether CONST_BLD is
> > enabled or not won't
> > +		 * affect the result. Therefore we use !has_alpha as
> > the condition.
> > +		 */
> > +		if (blend_mode == DRM_MODE_BLEND_PIXEL_NONE || !state-
> > >base.fb->format->has_alpha)
> > +			ignore_pixel_alpha = OVL_CONST_BLEND;
> 
> This modification is not related to the bug fix, so separate to
> another patch.

OK, I'll separate it.

Regards,
Jason-JH.Lin

> 
> Regards,
> CK

      reply	other threads:[~2024-10-07  6:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-05  9:52 Jason-JH.Lin
2024-10-06  8:14 ` Yassine Oudjana
2024-10-07  5:57 ` CK Hu (胡俊光)
2024-10-07  6:09   ` Jason-JH Lin (林睿祥) [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=fe26e581f11b992aaa358141070a36360a97e192.camel@mediatek.com \
    --to=jason-jh.lin@mediatek.com \
    --cc=Nancy.Lin@mediatek.com \
    --cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
    --cc=Shawn.Sung@mediatek.com \
    --cc=Singo.Chang@mediatek.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=chunkuang.hu@kernel.org \
    --cc=ck.hu@mediatek.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=me@adamthiede.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®