Patch "drm/meson: Fix OSD1 RGB to YCbCr coefficient" has been added to the 5.19-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/meson: Fix OSD1 RGB to YCbCr coefficient

to the 5.19-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-meson-fix-osd1-rgb-to-ycbcr-coefficient.patch
and it can be found in the queue-5.19 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 8b1b28fb70ca7bbc4a49f25d3a73178cda30f09d
Author: Stuart Menefy <stuart.menefy@xxxxxxxxxxxxxxxx>
Date:   Thu Sep 8 16:52:43 2022 +0100

    drm/meson: Fix OSD1 RGB to YCbCr coefficient
    
    [ Upstream commit 6463d3930ba5b6addcfc8f80a4543976a2fc7656 ]
    
    VPP_WRAP_OSD1_MATRIX_COEF22.Coeff22 is documented as being bits 0-12,
    not 16-28.
    
    Without this the output tends to have a pink hue, changing it results
    in better color accuracy.
    
    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.
    
    Signed-off-by: Stuart Menefy <stuart.menefy@xxxxxxxxxxxxxxxx>
    Fixes: 728883948b0d ("drm/meson: Add G12A Support for VIU setup")
    Reviewed-by: Neil Armstrong <narmstrong@xxxxxxxxxxxx>
    Signed-off-by: Neil Armstrong <narmstrong@xxxxxxxxxxxx>
    Link: https://patchwork.freedesktop.org/patch/msgid/20220908155243.687143-1-stuart.menefy@xxxxxxxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/meson/meson_viu.c b/drivers/gpu/drm/meson/meson_viu.c
index bb7e109534de..d4b907889a21 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),



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux