mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "CK Hu (胡俊光)" <ck.hu@mediatek.com>
To: "angelogioacchino.delregno@collabora.com" 
	<angelogioacchino.delregno@collabora.com>,
	"chunkuang.hu@kernel.org" <chunkuang.hu@kernel.org>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"wenst@chromium.org" <wenst@chromium.org>,
	"Jason-JH Lin (林睿祥)" <Jason-JH.Lin@mediatek.com>,
	"kernel@collabora.com" <kernel@collabora.com>,
	"daniel@ffwll.ch" <daniel@ffwll.ch>,
	"p.zabel@pengutronix.de" <p.zabel@pengutronix.de>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	"amergnat@baylibre.com" <amergnat@baylibre.com>,
	"airlied@gmail.com" <airlied@gmail.com>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
	"ehristev@collabora.com" <ehristev@collabora.com>
Subject: Re: [PATCH v8 08/13] drm/mediatek: gamma: Support multi-bank gamma LUT
Date: Thu, 3 Aug 2023 06:08:31 +0000	[thread overview]
Message-ID: <762c7ad2a51f896c42b7ec4558c40f5fee484d4d.camel@mediatek.com> (raw)
In-Reply-To: <ad3c2877-3381-daa1-da38-ce196a645ce3@collabora.com>

Hi, Angelo:

On Wed, 2023-08-02 at 10:30 +0200, AngeloGioacchino Del Regno wrote:
> Il 02/08/23 06:12, CK Hu (胡俊光) ha scritto:
> > Hi, Angelo:
> > 
> > On Tue, 2023-08-01 at 13:58 +0200, AngeloGioacchino Del Regno
> > wrote:
> > > Newer Gamma IP have got multiple LUT banks: support specifying
> > > the
> > > size of the LUT banks and handle bank-switching before
> > > programming
> > > the LUT in mtk_gamma_set_common() in preparation for adding
> > > support
> > > for MT8195 and newer SoCs.
> > > 
> > > Suggested-by: Jason-JH.Lin <jason-jh.lin@mediatek.com>
> > > [Angelo: Refactored original commit]
> > > Signed-off-by: AngeloGioacchino Del Regno <
> > > angelogioacchino.delregno@collabora.com>
> > > Reviewed-by: Alexandre Mergnat <amergnat@baylibre.com>
> > > ---
> > >   drivers/gpu/drm/mediatek/mtk_disp_gamma.c | 73 +++++++++++++++-
> > > ---
> > > ----
> > >   1 file changed, 47 insertions(+), 26 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/mediatek/mtk_disp_gamma.c
> > > b/drivers/gpu/drm/mediatek/mtk_disp_gamma.c
> > > index a6f7af1a9e8e..fb7c3650a9f7 100644
> > > --- a/drivers/gpu/drm/mediatek/mtk_disp_gamma.c
> > > +++ b/drivers/gpu/drm/mediatek/mtk_disp_gamma.c
> > > @@ -24,6 +24,8 @@
> > >   #define DISP_GAMMA_SIZE				0x0030
> > >   #define DISP_GAMMA_SIZE_HSIZE				GENMASK
> > > (28, 16)
> > >   #define DISP_GAMMA_SIZE_VSIZE				GENMASK
> > > (12, 0)
> > > +#define DISP_GAMMA_BANK				0x0100
> > > +#define DISP_GAMMA_BANK_BANK				GENMASK
> > > (1, 0)
> > >   #define DISP_GAMMA_LUT				0x0700
> > >   
> > >   #define DISP_GAMMA_LUT_10BIT_R			GENMASK(29, 20)
> > > @@ -32,10 +34,12 @@
> > >   
> > >   #define LUT_10BIT_MASK				0x03ff
> > >   #define LUT_BITS_DEFAULT			10
> > > +#define LUT_BANK_SIZE_DEFAULT			512
> > >   
> > >   struct mtk_disp_gamma_data {
> > >   	bool has_dither;
> > >   	bool lut_diff;
> > > +	u16 lut_bank_size;
> > >   	u16 lut_size;
> > >   	u8 lut_bits;
> > >   };
> > > @@ -80,7 +84,9 @@ void mtk_gamma_set_common(struct device *dev,
> > > void
> > > __iomem *regs,
> > >   	void __iomem *lut_base;
> > >   	bool lut_diff;
> > >   	u8 lut_bits;
> > > -	u32 cfg_val, word;
> > > +	u16 lut_bank_size;
> > > +	u32 cfg_val, lbank_val, word;
> > > +	int cur_bank, num_lut_banks;
> > >   
> > >   	/* If there's no gamma lut there's nothing to do here.
> > > */
> > >   	if (!state->gamma_lut)
> > > @@ -91,41 +97,54 @@ void mtk_gamma_set_common(struct device *dev,
> > > void __iomem *regs,
> > >   
> > >   	if (gamma && gamma->data) {
> > >   		lut_diff = gamma->data->lut_diff;
> > > +		lut_bank_size = gamma->data->lut_bank_size;
> > >   		lut_bits = gamma->data->lut_bits;
> > >   	} else {
> > >   		lut_diff = false;
> > > +		lut_bank_size = LUT_BANK_SIZE_DEFAULT;
> > 
> > LUT_BANK_SIZE_DEFAULT is only for AAL driver, so place it in AAL
> > driver
> > and pass it into this function.
> > 
> 
> I completely dislike having a function taking too many parameters.
> 
> Since mtk_gamma_set() in DISP_GAMMA will anyway expand in the future
> to
> support newer hardware, I'm thinking about just removing AAL support
> from
> this function and duplicate the few (15 or something) lines of code
> in
> mtk_disp_aal instead, so that we stop commonizing the mtk_gamma_set
> for
> both DISP_AAL and DISP_GAMMA.
> 
> Any opinions on that?

OK, let's stop commonizing the mtk_gamma_set
().

Regards,
CK

> 
> Regards,
> Angelo
> 
> > Regards,
> > CK
> > 
> 
> 

  reply	other threads:[~2023-08-03  6:08 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-01 11:58 [PATCH v8 00/13] MediaTek DDP GAMMA - 12-bit LUT support AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 01/13] drm/mediatek: gamma: Adjust mtk_drm_gamma_set_common parameters AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 02/13] drm/mediatek: gamma: Reduce indentation in mtk_gamma_set_common() AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 03/13] drm/mediatek: gamma: Support SoC specific LUT size AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 04/13] drm/mediatek: gamma: Improve and simplify HW LUT calculation AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 05/13] drm/mediatek: gamma: Enable the Gamma LUT table only after programming AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 06/13] drm/mediatek: gamma: Use bitfield macros AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 07/13] drm/mediatek: gamma: Support specifying number of bits per LUT component AngeloGioacchino Del Regno
2023-08-02  4:03   ` CK Hu (胡俊光)
2023-08-01 11:58 ` [PATCH v8 08/13] drm/mediatek: gamma: Support multi-bank gamma LUT AngeloGioacchino Del Regno
2023-08-02  4:12   ` CK Hu (胡俊光)
2023-08-02  8:30     ` AngeloGioacchino Del Regno
2023-08-03  6:08       ` CK Hu (胡俊光) [this message]
2023-08-01 11:58 ` [PATCH v8 09/13] drm/mediatek: gamma: Add support for 12-bit LUT and MT8195 AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 10/13] drm/mediatek: gamma: Make sure relay mode is disabled AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 11/13] drm/mediatek: gamma: Program gamma LUT type for descending or rising AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 12/13] drm/mediatek: mtk_disp_aal: Rewrite kerneldoc for struct mtk_disp_aal AngeloGioacchino Del Regno
2023-08-01 11:58 ` [PATCH v8 13/13] drm/mediatek: mtk_disp_gamma: Add kerneldoc for struct mtk_disp_gamma AngeloGioacchino Del Regno

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=762c7ad2a51f896c42b7ec4558c40f5fee484d4d.camel@mediatek.com \
    --to=ck.hu@mediatek.com \
    --cc=Jason-JH.Lin@mediatek.com \
    --cc=airlied@gmail.com \
    --cc=amergnat@baylibre.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=chunkuang.hu@kernel.org \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=ehristev@collabora.com \
    --cc=kernel@collabora.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=p.zabel@pengutronix.de \
    --cc=wenst@chromium.org \
    /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®