From: "Borah, Chaitanya Kumar" <chaitanya.kumar.borah@intel.com>
To: Melissa Wen <mwen@igalia.com>, <airlied@gmail.com>,
<alexander.deucher@amd.com>, <christian.koenig@amd.com>,
<harry.wentland@amd.com>, <maarten.lankhorst@linux.intel.com>,
<mripard@kernel.org>, <simona@ffwll.ch>, <siqueira@igalia.com>,
<sunpeng.li@amd.com>, <tzimmermann@suse.de>
Cc: Alex Hung <alex.hung@amd.com>, Simon Ser <contact@emersion.fr>,
"Uma Shankar" <uma.shankar@intel.com>,
Xaver Hugl <xaver.hugl@kde.org>,
"Pekka Paalanen" <pekka.paalanen@collabora.com>,
Louis Chauvet <louis.chauvet@bootlin.com>,
Matthew Schwartz <matthew.schwartz@linux.dev>,
<amd-gfx@lists.freedesktop.org>, <kernel-dev@igalia.com>,
Rob Clark <robin.clark@oss.qualcomm.com>,
Dmitry Baryshkov <lumag@kernel.org>,
"Abhinav Kumar" <abhinav.kumar@linux.dev>,
Jessica Zhang <jesszhan0024@gmail.com>,
"Sean Paul" <sean@poorly.run>,
Marijn Suijten <marijn.suijten@somainline.org>,
<linux-arm-msm@vger.kernel.org>,
<freedreno@lists.freedesktop.org>,
<dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH v6 4/6] drm/colorop: make lut(1/3)d_interpolation mutable
Date: Thu, 21 May 2026 16:47:54 +0530 [thread overview]
Message-ID: <ebee1103-c76e-46c3-9a71-84f5e84fd76c@intel.com> (raw)
In-Reply-To: <20260519211111.228303-5-mwen@igalia.com>
On 5/20/2026 2:39 AM, Melissa Wen wrote:
> As it's not immutable anymore, any changes should be handled by
> drm_colorop_state. Move their enum and make it correctly behaves as
> mutable.
>
> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Signed-off-by: Melissa Wen <mwen@igalia.com>
>
> ---
>
> v6:
> - check drm_object_property_get_default_value() before set interp props
> ---
> drivers/gpu/drm/drm_atomic.c | 4 ++--
> drivers/gpu/drm/drm_atomic_uapi.c | 8 ++++----
> drivers/gpu/drm/drm_colorop.c | 16 ++++++++++++++--
> include/drm/drm_colorop.h | 28 ++++++++++++++--------------
> 4 files changed, 34 insertions(+), 22 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
> index 659cf56150e5..b26212e719b2 100644
> --- a/drivers/gpu/drm/drm_atomic.c
> +++ b/drivers/gpu/drm/drm_atomic.c
> @@ -857,7 +857,7 @@ static void drm_atomic_colorop_print_state(struct drm_printer *p,
> case DRM_COLOROP_1D_LUT:
> drm_printf_indent(p, 1, "size=%d\n", colorop->size);
> drm_printf_indent(p, 1, "interpolation=%s\n",
> - drm_get_colorop_lut1d_interpolation_name(colorop->lut1d_interpolation));
> + drm_get_colorop_lut1d_interpolation_name(state->lut1d_interpolation));
> drm_printf_indent(p, 1, "data blob id=%d\n", state->data ? state->data->base.id : 0);
> break;
> case DRM_COLOROP_CTM_3X4:
> @@ -869,7 +869,7 @@ static void drm_atomic_colorop_print_state(struct drm_printer *p,
> case DRM_COLOROP_3D_LUT:
> drm_printf_indent(p, 1, "size=%d\n", colorop->size);
> drm_printf_indent(p, 1, "interpolation=%s\n",
> - drm_get_colorop_lut3d_interpolation_name(colorop->lut3d_interpolation));
> + drm_get_colorop_lut3d_interpolation_name(state->lut3d_interpolation));
> drm_printf_indent(p, 1, "data blob id=%d\n", state->data ? state->data->base.id : 0);
> break;
> default:
> diff --git a/drivers/gpu/drm/drm_atomic_uapi.c b/drivers/gpu/drm/drm_atomic_uapi.c
> index 6441b55cc274..78423905051e 100644
> --- a/drivers/gpu/drm/drm_atomic_uapi.c
> +++ b/drivers/gpu/drm/drm_atomic_uapi.c
> @@ -751,13 +751,13 @@ static int drm_atomic_colorop_set_property(struct drm_colorop *colorop,
> if (property == colorop->bypass_property) {
> state->bypass = val;
> } else if (property == colorop->lut1d_interpolation_property) {
> - colorop->lut1d_interpolation = val;
> + state->lut1d_interpolation = val;
> } else if (property == colorop->curve_1d_type_property) {
> state->curve_1d_type = val;
> } else if (property == colorop->multiplier_property) {
> state->multiplier = val;
> } else if (property == colorop->lut3d_interpolation_property) {
> - colorop->lut3d_interpolation = val;
> + state->lut3d_interpolation = val;
> } else if (property == colorop->data_property) {
> return drm_atomic_color_set_data_property(colorop, state,
> property, val);
> @@ -782,7 +782,7 @@ drm_atomic_colorop_get_property(struct drm_colorop *colorop,
> else if (property == colorop->bypass_property)
> *val = state->bypass;
> else if (property == colorop->lut1d_interpolation_property)
> - *val = colorop->lut1d_interpolation;
> + *val = state->lut1d_interpolation;
> else if (property == colorop->curve_1d_type_property)
> *val = state->curve_1d_type;
> else if (property == colorop->multiplier_property)
> @@ -790,7 +790,7 @@ drm_atomic_colorop_get_property(struct drm_colorop *colorop,
> else if (property == colorop->size_property)
> *val = colorop->size;
> else if (property == colorop->lut3d_interpolation_property)
> - *val = colorop->lut3d_interpolation;
> + *val = state->lut3d_interpolation;
> else if (property == colorop->data_property)
> *val = (state->data) ? state->data->base.id : 0;
> else
> diff --git a/drivers/gpu/drm/drm_colorop.c b/drivers/gpu/drm/drm_colorop.c
> index 764d12060666..b0a9a8094dfe 100644
> --- a/drivers/gpu/drm/drm_colorop.c
> +++ b/drivers/gpu/drm/drm_colorop.c
> @@ -342,7 +342,6 @@ int drm_plane_colorop_curve_1d_lut_init(struct drm_device *dev, struct drm_color
>
> colorop->lut1d_interpolation_property = prop;
> drm_object_attach_property(&colorop->base, prop, interpolation);
> - colorop->lut1d_interpolation = interpolation;
>
> /* data */
> ret = drm_colorop_create_data_prop(dev, colorop);
> @@ -442,7 +441,6 @@ int drm_plane_colorop_3dlut_init(struct drm_device *dev, struct drm_colorop *col
>
> colorop->lut3d_interpolation_property = prop;
> drm_object_attach_property(&colorop->base, prop, interpolation);
> - colorop->lut3d_interpolation = interpolation;
>
> /* data */
> ret = drm_colorop_create_data_prop(dev, colorop);
> @@ -521,6 +519,20 @@ static void __drm_colorop_state_reset(struct drm_colorop_state *colorop_state,
> &val))
> colorop_state->curve_1d_type = val;
> }
> +
> + if (colorop->lut1d_interpolation_property) {
> + if(!drm_object_property_get_default_value(&colorop->base,
> + colorop->lut1d_interpolation_property,
> + &val));
> + colorop_state->lut1d_interpolation = val;
> + }
> +
> + if (colorop->lut3d_interpolation_property) {
> + if(!drm_object_property_get_default_value(&colorop->base,
> + colorop->lut3d_interpolation_property,
> + &val);
> + colorop_state->lut3d_interpolation = val;
> + }
I see you fixed the ; in the next patch, better to fix it within this
patch. Also needs space between if and (.
> }
>
> /**
> diff --git a/include/drm/drm_colorop.h b/include/drm/drm_colorop.h
> index 53a2148082d5..d08a6a8a8392 100644
> --- a/include/drm/drm_colorop.h
> +++ b/include/drm/drm_colorop.h
> @@ -183,6 +183,20 @@ struct drm_colorop_state {
> */
> struct drm_property_blob *data;
>
> + /**
> + * @lut1d_interpolation:
> + *
> + * Interpolation for DRM_COLOROP_1D_LUT
> + */
> + enum drm_colorop_lut1d_interpolation_type lut1d_interpolation;
> +
> + /**
> + * @lut3d_interpolation:
> + *
> + * Interpolation for DRM_COLOROP_3D_LUT
> + */
> + enum drm_colorop_lut3d_interpolation_type lut3d_interpolation;
> +
> /** @state: backpointer to global drm_atomic_commit */
> struct drm_atomic_commit *state;
> };
> @@ -306,20 +320,6 @@ struct drm_colorop {
> */
> uint32_t size;
>
> - /**
> - * @lut1d_interpolation:
> - *
> - * Interpolation for DRM_COLOROP_1D_LUT
> - */
> - enum drm_colorop_lut1d_interpolation_type lut1d_interpolation;
> -
> - /**
> - * @lut3d_interpolation:
> - *
> - * Interpolation for DRM_COLOROP_3D_LUT
> - */
> - enum drm_colorop_lut3d_interpolation_type lut3d_interpolation;
> -
> /**
> * @lut1d_interpolation_property:
> *
next prev parent reply other threads:[~2026-05-21 11:18 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-19 21:09 [PATCH v6 0/6] drm/atomic: track individual colorop updates Melissa Wen
2026-05-19 21:09 ` [PATCH v6 1/6] drm/atomic: only add colorop state from active color pipeline Melissa Wen
2026-05-25 12:24 ` Claude review: " Claude Code Review Bot
2026-05-19 21:09 ` [PATCH v6 2/6] drm/atomic: reject colorop update from inactive " Melissa Wen
2026-05-21 11:00 ` Borah, Chaitanya Kumar
2026-05-21 12:56 ` Melissa Wen
2026-05-21 13:18 ` Melissa Wen
2026-05-25 12:24 ` Claude review: " Claude Code Review Bot
2026-05-19 21:09 ` [PATCH v6 3/6] drm/colorop: Remove read-only comments from interpolation fields Melissa Wen
2026-05-25 12:24 ` Claude review: " Claude Code Review Bot
2026-05-19 21:09 ` [PATCH v6 4/6] drm/colorop: make lut(1/3)d_interpolation mutable Melissa Wen
2026-05-21 11:17 ` Borah, Chaitanya Kumar [this message]
2026-05-21 13:27 ` Melissa Wen
2026-05-25 12:24 ` Claude review: " Claude Code Review Bot
2026-05-19 21:09 ` [PATCH v6 5/6] drm/atomic: track individual colorop updates Melissa Wen
2026-05-25 12:24 ` Claude review: " Claude Code Review Bot
2026-05-19 21:09 ` [PATCH v6 6/6] drm/amd/display: use plane color_mgmt_changed to track colorop changes Melissa Wen
2026-05-25 12:24 ` Claude review: " Claude Code Review Bot
2026-05-25 12:24 ` Claude review: drm/atomic: track individual colorop updates Claude Code Review Bot
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=ebee1103-c76e-46c3-9a71-84f5e84fd76c@intel.com \
--to=chaitanya.kumar.borah@intel.com \
--cc=abhinav.kumar@linux.dev \
--cc=airlied@gmail.com \
--cc=alex.hung@amd.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=christian.koenig@amd.com \
--cc=contact@emersion.fr \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=harry.wentland@amd.com \
--cc=jesszhan0024@gmail.com \
--cc=kernel-dev@igalia.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=louis.chauvet@bootlin.com \
--cc=lumag@kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marijn.suijten@somainline.org \
--cc=matthew.schwartz@linux.dev \
--cc=mripard@kernel.org \
--cc=mwen@igalia.com \
--cc=pekka.paalanen@collabora.com \
--cc=robin.clark@oss.qualcomm.com \
--cc=sean@poorly.run \
--cc=simona@ffwll.ch \
--cc=siqueira@igalia.com \
--cc=sunpeng.li@amd.com \
--cc=tzimmermann@suse.de \
--cc=uma.shankar@intel.com \
--cc=xaver.hugl@kde.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