dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Neil Armstrong <narmstrong@baylibre.com>
To: Stuart Menefy <stuart.menefy@mathembedded.com>,
	dri-devel@lists.freedesktop.org,
	linux-amlogic@lists.infradead.org
Subject: Re: [PATCH] drm/meson: Fix OSD1 RGB to YCbCr coefficient
Date: Fri, 9 Sep 2022 13:30:52 +0200	[thread overview]
Message-ID: <326dedc2-0e83-55eb-fe74-84d10b7769ce@baylibre.com> (raw)
In-Reply-To: <20220908155243.687143-1-stuart.menefy@mathembedded.com>

Hi !

On 08/09/2022 17:52, Stuart Menefy wrote:
> VPP_WRAP_OSD1_MATRIX_COEF22.Coeff22 is documented as being bits 0-12,
> not 16-28.

Thanks, Good catch !

> 
> Without this the output tends to have a pink hue, changing it results
> in better color accuracy.

Indeed, it was a regular issue reported.

> 
> The vendor kernel doesn't use this register. However the code which
> sets VIU2_OSD1_MATRIX_COEF22 also uses bits 0-12. There is a slightly
> different style of registers for configuring some of the other matrices,
> which do use bits 16-28 for this coefficient, but those have names
> ending in MATRIX_COEF22_30, and this is not one of those.
> 

Fixes: 728883948b0d ("drm/meson: Add G12A Support for VIU setup")
> Signed-off-by: Stuart Menefy <stuart.menefy@mathembedded.com>
> ---
>   drivers/gpu/drm/meson/meson_viu.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/meson/meson_viu.c b/drivers/gpu/drm/meson/meson_viu.c
> index 51df4de..876ffe0 100644
> --- a/drivers/gpu/drm/meson/meson_viu.c
> +++ b/drivers/gpu/drm/meson/meson_viu.c
> @@ -94,7 +94,7 @@ static void meson_viu_set_g12a_osd1_matrix(struct meson_drm *priv,
>   		priv->io_base + _REG(VPP_WRAP_OSD1_MATRIX_COEF11_12));
>   	writel(((m[9] & 0x1fff) << 16) | (m[10] & 0x1fff),
>   		priv->io_base + _REG(VPP_WRAP_OSD1_MATRIX_COEF20_21));
> -	writel((m[11] & 0x1fff) << 16,
> +	writel((m[11] & 0x1fff),
>   		priv->io_base +	_REG(VPP_WRAP_OSD1_MATRIX_COEF22));
>   
>   	writel(((m[18] & 0xfff) << 16) | (m[19] & 0xfff),

Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>

  reply	other threads:[~2022-09-09 11:30 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-08 15:52 [PATCH] drm/meson: Fix OSD1 RGB to YCbCr coefficient Stuart Menefy
2022-09-09 11:30 ` Neil Armstrong [this message]
2022-09-09 11:36 ` Neil Armstrong

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=326dedc2-0e83-55eb-fe74-84d10b7769ce@baylibre.com \
    --to=narmstrong@baylibre.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=stuart.menefy@mathembedded.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;
as well as URLs for NNTP newsgroup(s).