mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] soc: mediatek: Disable 9-bit alpha in ETHDR
@ 2024-06-19 16:50 Hsiao Chien Sung via B4 Relay
  2024-06-24 11:07 ` AngeloGioacchino Del Regno
  0 siblings, 1 reply; 3+ messages in thread
From: Hsiao Chien Sung via B4 Relay @ 2024-06-19 16:50 UTC (permalink / raw)
  To: Matthias Brugger, AngeloGioacchino Del Regno
  Cc: linux-kernel, linux-arm-kernel, linux-mediatek, Hsiao Chien Sung

From: Hsiao Chien Sung <shawn.sung@mediatek.com>

When 9-bit alpha is enabled, its value will be converted from 0-255 to
0-256 (255 = not defined). This is designed for special HDR related
calculation, which should be disabled by default, otherwise, alpha
blending will not work correctly.

Signed-off-by: Hsiao Chien Sung <shawn.sung@mediatek.com>
---
 drivers/soc/mediatek/mtk-mmsys.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/mediatek/mtk-mmsys.c b/drivers/soc/mediatek/mtk-mmsys.c
index f370f4ec4b88..938240714e54 100644
--- a/drivers/soc/mediatek/mtk-mmsys.c
+++ b/drivers/soc/mediatek/mtk-mmsys.c
@@ -236,6 +236,7 @@ void mtk_mmsys_mixer_in_config(struct device *dev, int idx, bool alpha_sel, u16
 
 	mtk_mmsys_update_bits(mmsys, MT8195_VDO1_MIXER_IN1_ALPHA + (idx - 1) * 4, ~0,
 			      alpha << 16 | alpha, cmdq_pkt);
+	mtk_mmsys_update_bits(mmsys, MT8195_VDO1_HDR_TOP_CFG, BIT(15 + idx), 0, cmdq_pkt);
 	mtk_mmsys_update_bits(mmsys, MT8195_VDO1_HDR_TOP_CFG, BIT(19 + idx),
 			      alpha_sel << (19 + idx), cmdq_pkt);
 	mtk_mmsys_update_bits(mmsys, MT8195_VDO1_MIXER_IN1_PAD + (idx - 1) * 4,

---
base-commit: 62fe4b067581d480e863191305f108bebffbc0e9
change-id: 20240619-9bit_alpha-39fbb99acc3b
prerequisite-change-id: 20240615-mediatek-drm-next-ad601b349f23:v3
prerequisite-patch-id: fdd0efbeca41c69c6fa93a5e49a2f16b3d2e8ef7
prerequisite-patch-id: 24bfda7b207bf9698ab88c7233d9168187aa54bb
prerequisite-patch-id: f2ab4804bbe54091a89b310c2ecd4b65fe031137
prerequisite-patch-id: 26bfe746bda376c070c23c72fcc25949e396d952
prerequisite-patch-id: b0b1589f88a9067b93a1e439e1db9abbde96e9e8
prerequisite-patch-id: 14603755fd2d5b6f0ef8a7843e118d0e8d27f57d
prerequisite-patch-id: 86f89ad0a06705cd2ad2867e9409da5610c9d228
prerequisite-patch-id: bd0b091709980bc6e993055d78573f3979139662
prerequisite-patch-id: 2f4da7b628f9d1f03e045b4c8f04b53eeb133a03
prerequisite-patch-id: 9ee1d1b3c69dc6ca828c21fae9180d2e9b5cd4d5
prerequisite-patch-id: 5c1f57bc1bd2d56061c2b927c9efbc9dad36ab68
prerequisite-patch-id: 05443d9f227599f0784da4006c4c983513654087
prerequisite-patch-id: 694abac72844a2b9753453aa514f9485a47a8f32
prerequisite-patch-id: 99f314c9dc697cb78c57d1311dfe055204b9e7b8

Best regards,
-- 
Hsiao Chien Sung <shawn.sung@mediatek.com>



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] soc: mediatek: Disable 9-bit alpha in ETHDR
  2024-06-19 16:50 [PATCH] soc: mediatek: Disable 9-bit alpha in ETHDR Hsiao Chien Sung via B4 Relay
@ 2024-06-24 11:07 ` AngeloGioacchino Del Regno
  2024-06-25  1:08   ` Shawn Sung (宋孝謙)
  0 siblings, 1 reply; 3+ messages in thread
From: AngeloGioacchino Del Regno @ 2024-06-24 11:07 UTC (permalink / raw)
  To: Matthias Brugger, Hsiao Chien Sung
  Cc: linux-kernel, linux-arm-kernel, linux-mediatek

On Thu, 20 Jun 2024 00:50:24 +0800, Hsiao Chien Sung wrote:
> When 9-bit alpha is enabled, its value will be converted from 0-255 to
> 0-256 (255 = not defined). This is designed for special HDR related
> calculation, which should be disabled by default, otherwise, alpha
> blending will not work correctly.
> 
> 

Applied to v6.10-next/soc, thanks!

[1/1] soc: mediatek: Disable 9-bit alpha in ETHDR
      commit: eb36ad096818e11d54256570d7d49e26565daf5c

Cheers,
Angelo



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] soc: mediatek: Disable 9-bit alpha in ETHDR
  2024-06-24 11:07 ` AngeloGioacchino Del Regno
@ 2024-06-25  1:08   ` Shawn Sung (宋孝謙)
  0 siblings, 0 replies; 3+ messages in thread
From: Shawn Sung (宋孝謙) @ 2024-06-25  1:08 UTC (permalink / raw)
  To: matthias.bgg, angelogioacchino.delregno
  Cc: linux-arm-kernel, linux-kernel, linux-mediatek

Hi Angelo,

I see the patch has been merged.
Thank you for the notification.

Cheers,
Shawn

On Mon, 2024-06-24 at 13:07 +0200, AngeloGioacchino Del Regno wrote:
> On Thu, 20 Jun 2024 00:50:24 +0800, Hsiao Chien Sung wrote:
> > When 9-bit alpha is enabled, its value will be converted from 0-255 
> > to
> > 0-256 (255 = not defined). This is designed for special HDR related
> > calculation, which should be disabled by default, otherwise, alpha
> > blending will not work correctly.
> > 
> > 
> 
> Applied to v6.10-next/soc, thanks!
> 
> [1/1] soc: mediatek: Disable 9-bit alpha in ETHDR
>       commit: eb36ad096818e11d54256570d7d49e26565daf5c
> 
> Cheers,
> Angelo
> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-06-25  1:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-19 16:50 [PATCH] soc: mediatek: Disable 9-bit alpha in ETHDR Hsiao Chien Sung via B4 Relay
2024-06-24 11:07 ` AngeloGioacchino Del Regno
2024-06-25  1:08   ` Shawn Sung (宋孝謙)

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®