From: "james qian wang (Arm Technology China)" <james.qian.wang@arm.com>
To: "sandy.huang" <hjc@rock-chips.com>
Cc: Ayan Halder <Ayan.Halder@arm.com>,
"Oscar Zhang (Arm Technology China)" <Oscar.Zhang@arm.com>,
"Tiannan Zhu (Arm Technology China)" <Tiannan.Zhu@arm.com>,
Mihail Atanassov <Mihail.Atanassov@arm.com>,
"airlied@linux.ie" <airlied@linux.ie>,
Liviu Dudau <Liviu.Dudau@arm.com>,
"Jonathan Chai (Arm Technology China)" <Jonathan.Chai@arm.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
"Julien Yin (Arm Technology China)" <Julien.Yin@arm.com>,
"Channing Chen (Arm Technology China)" <Channing.Chen@arm.com>,
"Yiqi Kang (Arm Technology China)" <Yiqi.Kang@arm.com>,
Ben Davis <Ben.Davis@arm.com>,
"Thomas Sun (Arm Technology China)" <thomas.Sun@arm.com>,
"Lowry Li (Arm Technology China)" <Lowry.Li@arm.com>,
nd <nd@arm.com>, "sean@poorly.run" <sean@poorly.run>
Subject: Re: [PATCH v2 4/4] drm/komeda: Adds gamma and color-transform support for DOU-IPS
Date: Fri, 11 Oct 2019 07:12:13 +0000 [thread overview]
Message-ID: <20191011071206.GA20025@jamwan02-TSP300> (raw)
In-Reply-To: <08492df8-11d9-c580-94f6-7868602c12c3@rock-chips.com>
On Fri, Oct 11, 2019 at 02:21:39PM +0800, sandy.huang wrote:
>
> 在 2019/10/11 下午1:43, james qian wang (Arm Technology China) 写道:
> > From: "Lowry Li (Arm Technology China)" <Lowry.Li@arm.com>
> >
> > Adds gamma and color-transform support for DOU-IPS.
> > Adds two caps members fgamma_coeffs and ctm_coeffs to komeda_improc_state.
> > If color management changed, set gamma and color-transform accordingly.
> >
> > Signed-off-by: Lowry Li (Arm Technology China) <lowry.li@arm.com>
> > ---
> > .../arm/display/komeda/d71/d71_component.c | 24 +++++++++++++++++++
> > .../gpu/drm/arm/display/komeda/komeda_crtc.c | 2 ++
> > .../drm/arm/display/komeda/komeda_pipeline.h | 3 +++
> > .../display/komeda/komeda_pipeline_state.c | 6 +++++
> > 4 files changed, 35 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/arm/display/komeda/d71/d71_component.c b/drivers/gpu/drm/arm/display/komeda/d71/d71_component.c
> > index c3d29c0b051b..e7e5a8e4430e 100644
> > --- a/drivers/gpu/drm/arm/display/komeda/d71/d71_component.c
> > +++ b/drivers/gpu/drm/arm/display/komeda/d71/d71_component.c
> > @@ -942,15 +942,39 @@ static int d71_merger_init(struct d71_dev *d71,
> > static void d71_improc_update(struct komeda_component *c,
> > struct komeda_component_state *state)
> > {
> > + struct drm_crtc_state *crtc_st = state->crtc->state;
> > struct komeda_improc_state *st = to_improc_st(state);
> > + struct d71_pipeline *pipe = to_d71_pipeline(c->pipeline);
> > u32 __iomem *reg = c->reg;
> > u32 index;
> > + u32 mask = 0, ctrl = 0;
> > for_each_changed_input(state, index)
> > malidp_write32(reg, BLK_INPUT_ID0 + index * 4,
> > to_d71_input_id(state, index));
> > malidp_write32(reg, BLK_SIZE, HV_SIZE(st->hsize, st->vsize));
> > +
> > + if (crtc_st->color_mgmt_changed) {
> > + mask |= IPS_CTRL_FT | IPS_CTRL_RGB;
NOTE: only when color_mgmt_changed we mark the mask
> > +
> > + if (crtc_st->gamma_lut) {
> > + malidp_write_group(pipe->dou_ft_coeff_addr, FT_COEFF0,
> > + KOMEDA_N_GAMMA_COEFFS,
> > + st->fgamma_coeffs);
> > + ctrl |= IPS_CTRL_FT; /* enable gamma */
Here we enable the gamma, if the change include gamma_lut updating,
and if gammu_lut is NULL, the En-Gamma bit is 0, and gamma will be
disabled
> > + }
> > +
> > + if (crtc_st->ctm) {
> > + malidp_write_group(reg, IPS_RGB_RGB_COEFF0,
> > + KOMEDA_N_CTM_COEFFS,
> > + st->ctm_coeffs);
> > + ctrl |= IPS_CTRL_RGB; /* enable gamut */
> > + }
> > + }
> > +
> > + if (mask)
> > + malidp_write32_mask(reg, BLK_CONTROL, mask, ctrl);
We do have the support to disable gamma/gamut.
the ctrl is for en/dis gamma/gamut, the mask is for indicating which ctrl
bits need to be updated.
See my comments in the code.
Thanks
james
> > }
> There is no need or no method to disable/bypass the gamma and gamut?
> > static void d71_improc_dump(struct komeda_component *c, struct seq_file *sf)
> > diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_crtc.c b/drivers/gpu/drm/arm/display/komeda/komeda_crtc.c
> > index 9beeda04818b..406b9d0ca058 100644
> > --- a/drivers/gpu/drm/arm/display/komeda/komeda_crtc.c
> > +++ b/drivers/gpu/drm/arm/display/komeda/komeda_crtc.c
> > @@ -590,6 +590,8 @@ static int komeda_crtc_add(struct komeda_kms_dev *kms,
> > crtc->port = kcrtc->master->of_output_port;
> > + drm_crtc_enable_color_mgmt(crtc, 0, true, KOMEDA_COLOR_LUT_SIZE);
> > +
> > return err;
> > }
> > diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.h b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.h
> > index b322f52ba8f2..c5ab8096c85d 100644
> > --- a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.h
> > +++ b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline.h
> > @@ -11,6 +11,7 @@
> > #include <drm/drm_atomic.h>
> > #include <drm/drm_atomic_helper.h>
> > #include "malidp_utils.h"
> > +#include "komeda_color_mgmt.h"
> > #define KOMEDA_MAX_PIPELINES 2
> > #define KOMEDA_PIPELINE_MAX_LAYERS 4
> > @@ -324,6 +325,8 @@ struct komeda_improc {
> > struct komeda_improc_state {
> > struct komeda_component_state base;
> > u16 hsize, vsize;
> > + u32 fgamma_coeffs[KOMEDA_N_GAMMA_COEFFS];
> > + u32 ctm_coeffs[KOMEDA_N_CTM_COEFFS];
> > };
> > /* display timing controller */
> > diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
> > index 0ba9c6aa3708..4a40b37eb1a6 100644
> > --- a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
> > +++ b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
> > @@ -756,6 +756,12 @@ komeda_improc_validate(struct komeda_improc *improc,
> > st->hsize = dflow->in_w;
> > st->vsize = dflow->in_h;
> > + if (kcrtc_st->base.color_mgmt_changed) {
> > + drm_lut_to_fgamma_coeffs(kcrtc_st->base.gamma_lut,
> > + st->fgamma_coeffs);
> > + drm_ctm_to_coeffs(kcrtc_st->base.ctm, st->ctm_coeffs);
> > + }
> > +
> > komeda_component_add_input(&st->base, &dflow->input, 0);
> > komeda_component_set_output(&dflow->input, &improc->base, 0);
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2019-10-11 7:12 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-11 5:43 [PATCH v2 0/4] drm/komeda: Enable CRTC color-mgmt james qian wang (Arm Technology China)
2019-10-11 5:43 ` [PATCH v2 1/4] drm/komeda: Add a new helper drm_color_ctm_s31_32_to_qm_n() james qian wang (Arm Technology China)
2019-10-14 8:56 ` Daniel Vetter
2019-10-14 9:58 ` james qian wang (Arm Technology China)
2019-10-14 15:33 ` Daniel Vetter
2019-10-14 15:58 ` Ilia Mirkin
2019-10-15 1:16 ` james qian wang (Arm Technology China)
2019-10-15 3:48 ` Ilia Mirkin
2019-10-15 8:04 ` james qian wang (Arm Technology China)
2019-10-15 8:21 ` Mihail Atanassov
2019-10-15 8:59 ` james qian wang (Arm Technology China)
2019-10-11 5:43 ` [PATCH v2 2/4] drm/komeda: Add drm_lut_to_fgamma_coeffs() james qian wang (Arm Technology China)
2019-10-11 5:43 ` [PATCH v2 3/4] drm/komeda: Add drm_ctm_to_coeffs() james qian wang (Arm Technology China)
2019-10-11 5:43 ` [PATCH v2 4/4] drm/komeda: Adds gamma and color-transform support for DOU-IPS james qian wang (Arm Technology China)
2019-10-11 6:21 ` sandy.huang
2019-10-11 7:12 ` james qian wang (Arm Technology China) [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-10-11 5:45 [PATCH v2 0/4] drm/komeda: Enable CRTC color-mgmt james qian wang (Arm Technology China)
2019-10-11 5:45 ` [PATCH v2 4/4] drm/komeda: Adds gamma and color-transform support for DOU-IPS james qian wang (Arm Technology China)
2019-10-11 8:54 ` Mihail Atanassov
2019-10-11 10:12 ` Lowry Li (Arm Technology China)
2019-10-11 10:27 ` Mihail Atanassov
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=20191011071206.GA20025@jamwan02-TSP300 \
--to=james.qian.wang@arm.com \
--cc=Ayan.Halder@arm.com \
--cc=Ben.Davis@arm.com \
--cc=Channing.Chen@arm.com \
--cc=Jonathan.Chai@arm.com \
--cc=Julien.Yin@arm.com \
--cc=Liviu.Dudau@arm.com \
--cc=Lowry.Li@arm.com \
--cc=Mihail.Atanassov@arm.com \
--cc=Oscar.Zhang@arm.com \
--cc=Tiannan.Zhu@arm.com \
--cc=Yiqi.Kang@arm.com \
--cc=airlied@linux.ie \
--cc=dri-devel@lists.freedesktop.org \
--cc=hjc@rock-chips.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nd@arm.com \
--cc=sean@poorly.run \
--cc=thomas.Sun@arm.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