From: "Borah, Chaitanya Kumar" <chaitanya.kumar.borah@intel.com>
To: "Shankar, Uma" <uma.shankar@intel.com>,
"intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>
Subject: Re: [v6 6/9] drm/i915/color: Add support for 1D LUT in SDR planes
Date: Tue, 1 Sep 2026 13:07:42 +0530 [thread overview]
Message-ID: <a27618eb-b5a8-4100-bf79-5b35fbfaf2de@intel.com> (raw)
In-Reply-To: <DM4PR11MB6360FEE47A37F9AB2941BCF8F4A92@DM4PR11MB6360.namprd11.prod.outlook.com>
On 8/31/2026 7:08 PM, Shankar, Uma wrote:
>
>
>> -----Original Message-----
>> From: Shankar, Uma
>> Sent: Monday, August 31, 2026 6:54 PM
>> To: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; intel-
>> xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org; dri-
>> devel@lists.freedesktop.org
>> Subject: RE: [v6 6/9] drm/i915/color: Add support for 1D LUT in SDR planes
>>
>>
>>
>>> -----Original Message-----
>>> From: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>
>>> Sent: Tuesday, August 4, 2026 6:01 PM
>>> To: intel-xe@lists.freedesktop.org; intel-gfx@lists.freedesktop.org;
>>> dri- devel@lists.freedesktop.org
>>> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>; Shankar,
>>> Uma <uma.shankar@intel.com>
>>> Subject: [v6 6/9] drm/i915/color: Add support for 1D LUT in SDR planes
>>>
>>> Extend the SDR plane color pipeline to post-CSC 1D LUT block.
>>>
>>> v2:
>>> - In preparation of a simple pipeline
>>> [YUV Full/Limited -> RGB] -> [1D LUT]
>>> Drop pre-CSC LUT from the pipeline as it has no use in a YUV -> RGB
>>> pipeline. This makes the pipeline simple since the block lies between
>>> the YUV range correct block and Fixed function CSC. It can be added back
>>> when [RGB709 -> RGB2020] capability is added. Then it can be used for
>>> linearization.
>>>
>>> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
>>> Reviewed-by: Uma Shankar <uma.shankar@intel.com> #v1
>>> ---
>>> drivers/gpu/drm/i915/display/intel_color_pipeline.c | 1 +
>>> 1 file changed, 1 insertion(+)
>>>
>>> diff --git a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
>>> b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
>>> index efd4375c4331..53e55ce0a5a3 100644
>>> --- a/drivers/gpu/drm/i915/display/intel_color_pipeline.c
>>> +++ b/drivers/gpu/drm/i915/display/intel_color_pipeline.c
>>> @@ -45,6 +45,7 @@ static const enum intel_color_block
>>> hdr_plane_pipeline[] = {
>>>
>>> static const enum intel_color_block sdr_plane_yuv_pipeline[] = {
>>> INTEL_PLANE_CB_CSC_FF,
>>> + INTEL_PLANE_CB_POST_CSC_LUT,
>>
>> With this we will expose support for post csc lut but corresponding handling in
>> driver is added later in the series. Would be good to move this after patch 8.
>
> Please ignore the earlier comment, enabling of SDR planes is done in last patch
> so this should be fine. We are good.
Thank you, Uma, for looking into the patch. Can I consider your RB for
v2 of the patch.
==
Chaitanya
>
>>> };
>>>
>>> static const u64 intel_plane_supported_csc_ff =
>>> --
>>> 2.50.1
>
next prev parent reply other threads:[~2026-09-01 7:37 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-04 12:30 [v6 0/9] drm/i915/color: Enable SDR plane color pipeline Chaitanya Kumar Borah
2026-08-04 12:30 ` [v6 1/9] drm/colorop: Add DRM_COLOROP_FIXED_MATRIX Chaitanya Kumar Borah
2026-08-04 12:31 ` [v6 2/9] drm/i915/color: Add CSC on SDR plane color pipeline Chaitanya Kumar Borah
2026-09-01 7:36 ` Borah, Chaitanya Kumar
2026-08-04 12:31 ` [v6 3/9] drm/i915/display: extract glk_plane_color_ctl_input_csc helper Chaitanya Kumar Borah
2026-08-04 12:31 ` [v6 4/9] drm/i915/display: simplify glk_plane_color_ctl_input_csc Chaitanya Kumar Borah
2026-08-04 12:31 ` [v6 5/9] drm/i915/display: Program CSC on SDR planes based on Fixed Matrix Colorop Chaitanya Kumar Borah
2026-08-31 13:14 ` Shankar, Uma
2026-08-04 12:31 ` [v6 6/9] drm/i915/color: Add support for 1D LUT in SDR planes Chaitanya Kumar Borah
2026-08-31 13:24 ` Shankar, Uma
2026-08-31 13:38 ` Shankar, Uma
2026-09-01 7:37 ` Borah, Chaitanya Kumar [this message]
2026-09-01 7:46 ` Shankar, Uma
2026-08-04 12:31 ` [v6 7/9] drm/i915/color: Extract HDR post-CSC LUT programming to helper function Chaitanya Kumar Borah
2026-08-04 12:31 ` [v6 8/9] drm/i915/color: Program Plane Post CSC registers for SDR planes Chaitanya Kumar Borah
2026-08-04 12:31 ` [v6 9/9] drm/i915/color: Add color pipeline support " Chaitanya Kumar Borah
2026-08-05 2:24 ` ✓ i915.CI.BAT: success for drm/i915/color: Enable SDR plane color pipeline (rev7) Patchwork
2026-08-05 14:15 ` ✓ i915.CI.Full: " Patchwork
2026-09-01 14:47 ` ✓ i915.CI.BAT: success for drm/i915/color: Enable SDR plane color pipeline (rev8) Patchwork
2026-09-01 20:14 ` ✗ i915.CI.Full: failure " Patchwork
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=a27618eb-b5a8-4100-bf79-5b35fbfaf2de@intel.com \
--to=chaitanya.kumar.borah@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=uma.shankar@intel.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