From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7340FC433EF for ; Fri, 12 Nov 2021 14:54:43 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 240A461039 for ; Fri, 12 Nov 2021 14:54:43 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 240A461039 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E5D376ED8A; Fri, 12 Nov 2021 14:54:41 +0000 (UTC) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id 351246ED83; Fri, 12 Nov 2021 14:54:40 +0000 (UTC) X-IronPort-AV: E=McAfee;i="6200,9189,10165"; a="296576949" X-IronPort-AV: E=Sophos;i="5.87,229,1631602800"; d="scan'208";a="296576949" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Nov 2021 06:54:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,229,1631602800"; d="scan'208";a="453170148" Received: from stinkbox.fi.intel.com (HELO stinkbox) ([10.237.72.171]) by orsmga006.jf.intel.com with SMTP; 12 Nov 2021 06:54:35 -0800 Received: by stinkbox (sSMTP sendmail emulation); Fri, 12 Nov 2021 16:54:35 +0200 Date: Fri, 12 Nov 2021 16:54:35 +0200 From: Ville =?iso-8859-1?Q?Syrj=E4l=E4?= To: Harry Wentland Subject: Re: [RFC v2 05/22] drm/i915/xelpd: Define Degamma Lut range struct for HDR planes Message-ID: References: <20210906213904.27918-1-uma.shankar@intel.com> <20210906213904.27918-6-uma.shankar@intel.com> <52ce874c-64ae-d7a9-bc4e-255cfa49f410@amd.com> <4a26ada6-feaa-76df-3ffe-d694e367d809@amd.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <4a26ada6-feaa-76df-3ffe-d694e367d809@amd.com> X-Patchwork-Hint: comment X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "Shashank.Sharma@amd.com" , "intel-gfx@lists.freedesktop.org" , "dri-devel@lists.freedesktop.org" , "sebastian@sebastianwick.net" , "Shankar, Uma" Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Thu, Nov 11, 2021 at 04:10:41PM -0500, Harry Wentland wrote: > > > On 2021-11-11 15:42, Shankar, Uma wrote: > > > > > >> -----Original Message----- > >> From: Ville Syrjälä > >> Sent: Thursday, November 11, 2021 10:13 PM > >> To: Harry Wentland > >> Cc: Shankar, Uma ; intel-gfx@lists.freedesktop.org; dri- > >> devel@lists.freedesktop.org; ppaalanen@gmail.com; brian.starkey@arm.com; > >> sebastian@sebastianwick.net; Shashank.Sharma@amd.com > >> Subject: Re: [RFC v2 05/22] drm/i915/xelpd: Define Degamma Lut range struct for > >> HDR planes > >> > >> On Thu, Nov 11, 2021 at 10:17:17AM -0500, Harry Wentland wrote: > >>> > >>> > >>> On 2021-09-06 17:38, Uma Shankar wrote: > >>>> Define the structure with XE_LPD degamma lut ranges. HDR and SDR > >>>> planes have different capabilities, implemented respective structure > >>>> for the HDR planes. > >>>> > >>>> Signed-off-by: Uma Shankar > >>>> --- > >>>> drivers/gpu/drm/i915/display/intel_color.c | 52 > >>>> ++++++++++++++++++++++ > >>>> 1 file changed, 52 insertions(+) > >>>> > >>>> diff --git a/drivers/gpu/drm/i915/display/intel_color.c > >>>> b/drivers/gpu/drm/i915/display/intel_color.c > >>>> index afcb4bf3826c..6403bd74324b 100644 > >>>> --- a/drivers/gpu/drm/i915/display/intel_color.c > >>>> +++ b/drivers/gpu/drm/i915/display/intel_color.c > >>>> @@ -2092,6 +2092,58 @@ static void icl_read_luts(struct intel_crtc_state > >> *crtc_state) > >>>> } > >>>> } > >>>> > >>>> + /* FIXME input bpc? */ > >>>> +__maybe_unused > >>>> +static const struct drm_color_lut_range d13_degamma_hdr[] = { > >>>> + /* segment 1 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 128, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = 0, .end = (1 << 24) - 1, > >>>> + .min = 0, .max = (1 << 24) - 1, > >>>> + }, > >>>> + /* segment 2 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_REUSE_LAST | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 1, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = (1 << 24) - 1, .end = 1 << 24, > >>>> + .min = 0, .max = (1 << 27) - 1, > >>>> + }, > >>>> + /* Segment 3 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_REUSE_LAST | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 1, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = 1 << 24, .end = 3 << 24, > >>>> + .min = 0, .max = (1 << 27) - 1, > >>>> + }, > >>>> + /* Segment 4 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_REUSE_LAST | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 1, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = 3 << 24, .end = 7 << 24, > >>>> + .min = 0, .max = (1 << 27) - 1, > >>>> + }, > >>>> +}; > >>> > >>> If I understand this right, userspace would need this definition in > >>> order to populate the degamma blob. Should this sit in a UAPI header? > > > > Hi Harry, Pekka and Ville, > > Sorry for being a bit late on the replies, got side tracked with various issues. > > I am back on this. Apologies for delay. > > > >> My original idea (not sure it's fully realized in this series) is to have a new > >> GAMMA_MODE/etc. enum property on each crtc (or plane) for which each enum > >> value points to a kernel provided blob that contains one of these LUT descriptors. > >> Userspace can then query them dynamically and pick the best one for its current use > >> case. > > > > We have this as part of the series Ville. Patch 3 of this series creates a DEGAMMA_MODE > > property just for this. With that userspace can just query the blob_id's and will get the > > various degamma mode possible and the respective segment and lut distributions. > > > > This will be generic, so for userspace it should just be able to query this and parse and get > > the lut distribution and segment ranges. > > > > Thanks for the explanation. > > Uma, have you had a chance to sketch some of this out in IGT? I'm trying > to see how userspace would do this in practice and will try to sketch an > IGT test for this myself, but if you have it already we could share the > effort. > > >> The algorithm for choosing the best one might be something like: > >> - prefer LUT with bpc >= FB bpc, but perhaps not needlessly high bpc > >> - prefer interpolated vs. direct lookup based on current needs (eg. X > >> could prefer direct lookup to get directcolor visuals). > >> - prefer one with extended range values if needed > >> - for HDR prefer smaller step size in dark tones, > >> for SDR perhaps prefer a more uniform step size > >> > >> Or maybe we should include some kind of usage hints as well? > > > > I think the segment range and distribution of lut should be enough for a userspace > > to pick the right ones, but we can add some examples in UAPI descriptions as hints. > > > > The range might be enough, but we're already parsing hints like "GAMMA" > or "DEGAMMA". I wonder if it would make sense to add a flag for "HDR" or > "SDR" as well. > > >> And I was thinking of even adding a new property type (eg. > >> ENUM_BLOB) just for this sort of usecase. That could let us have a bit more generic > >> code to do all the validation around the property values and whatnot. > >> > >> The one nagging concern I really have with GAMMA_MODE is how a mix of old and > >> new userspace would work. Though that is more of a generic issue with any new > >> property really. > > > > For plane properties getting added newly, old userspace will not get it so I think this should be ok. > > Newer userspace will implement this and get the new functionality. > > Problem will be in extending this to crtc where we have a legacy baggage, the client caps approach > > may help us there. Have it as part of separate series just to not mix it with this new plane stuff, though > > the idea remains same based on your design. Series below for reference: > > https://patchwork.freedesktop.org/series/90821/>> > > Could we just assume we do a uniform LUT if userspace doesn't > set a _MODE enum value for the respective gamma? > > Maybe the _MODE should have a default enum value that means > a uniform (legacy) LUT. Yeah, it definitely needs a default like that. But the problem arises when new userspace sets it to something else and then hands the reins over to some old userspace that doesn't know how to reset it back to default. -- Ville Syrjälä Intel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CF766C433F5 for ; Fri, 12 Nov 2021 14:54:41 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7C72261039 for ; Fri, 12 Nov 2021 14:54:41 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 7C72261039 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F05DA6ED83; Fri, 12 Nov 2021 14:54:40 +0000 (UTC) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id 351246ED83; Fri, 12 Nov 2021 14:54:40 +0000 (UTC) X-IronPort-AV: E=McAfee;i="6200,9189,10165"; a="296576949" X-IronPort-AV: E=Sophos;i="5.87,229,1631602800"; d="scan'208";a="296576949" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Nov 2021 06:54:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,229,1631602800"; d="scan'208";a="453170148" Received: from stinkbox.fi.intel.com (HELO stinkbox) ([10.237.72.171]) by orsmga006.jf.intel.com with SMTP; 12 Nov 2021 06:54:35 -0800 Received: by stinkbox (sSMTP sendmail emulation); Fri, 12 Nov 2021 16:54:35 +0200 Date: Fri, 12 Nov 2021 16:54:35 +0200 From: Ville =?iso-8859-1?Q?Syrj=E4l=E4?= To: Harry Wentland Message-ID: References: <20210906213904.27918-1-uma.shankar@intel.com> <20210906213904.27918-6-uma.shankar@intel.com> <52ce874c-64ae-d7a9-bc4e-255cfa49f410@amd.com> <4a26ada6-feaa-76df-3ffe-d694e367d809@amd.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <4a26ada6-feaa-76df-3ffe-d694e367d809@amd.com> X-Patchwork-Hint: comment Subject: Re: [Intel-gfx] [RFC v2 05/22] drm/i915/xelpd: Define Degamma Lut range struct for HDR planes X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "intel-gfx@lists.freedesktop.org" , "ppaalanen@gmail.com" , "dri-devel@lists.freedesktop.org" , "sebastian@sebastianwick.net" Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On Thu, Nov 11, 2021 at 04:10:41PM -0500, Harry Wentland wrote: > > > On 2021-11-11 15:42, Shankar, Uma wrote: > > > > > >> -----Original Message----- > >> From: Ville Syrjälä > >> Sent: Thursday, November 11, 2021 10:13 PM > >> To: Harry Wentland > >> Cc: Shankar, Uma ; intel-gfx@lists.freedesktop.org; dri- > >> devel@lists.freedesktop.org; ppaalanen@gmail.com; brian.starkey@arm.com; > >> sebastian@sebastianwick.net; Shashank.Sharma@amd.com > >> Subject: Re: [RFC v2 05/22] drm/i915/xelpd: Define Degamma Lut range struct for > >> HDR planes > >> > >> On Thu, Nov 11, 2021 at 10:17:17AM -0500, Harry Wentland wrote: > >>> > >>> > >>> On 2021-09-06 17:38, Uma Shankar wrote: > >>>> Define the structure with XE_LPD degamma lut ranges. HDR and SDR > >>>> planes have different capabilities, implemented respective structure > >>>> for the HDR planes. > >>>> > >>>> Signed-off-by: Uma Shankar > >>>> --- > >>>> drivers/gpu/drm/i915/display/intel_color.c | 52 > >>>> ++++++++++++++++++++++ > >>>> 1 file changed, 52 insertions(+) > >>>> > >>>> diff --git a/drivers/gpu/drm/i915/display/intel_color.c > >>>> b/drivers/gpu/drm/i915/display/intel_color.c > >>>> index afcb4bf3826c..6403bd74324b 100644 > >>>> --- a/drivers/gpu/drm/i915/display/intel_color.c > >>>> +++ b/drivers/gpu/drm/i915/display/intel_color.c > >>>> @@ -2092,6 +2092,58 @@ static void icl_read_luts(struct intel_crtc_state > >> *crtc_state) > >>>> } > >>>> } > >>>> > >>>> + /* FIXME input bpc? */ > >>>> +__maybe_unused > >>>> +static const struct drm_color_lut_range d13_degamma_hdr[] = { > >>>> + /* segment 1 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 128, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = 0, .end = (1 << 24) - 1, > >>>> + .min = 0, .max = (1 << 24) - 1, > >>>> + }, > >>>> + /* segment 2 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_REUSE_LAST | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 1, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = (1 << 24) - 1, .end = 1 << 24, > >>>> + .min = 0, .max = (1 << 27) - 1, > >>>> + }, > >>>> + /* Segment 3 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_REUSE_LAST | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 1, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = 1 << 24, .end = 3 << 24, > >>>> + .min = 0, .max = (1 << 27) - 1, > >>>> + }, > >>>> + /* Segment 4 */ > >>>> + { > >>>> + .flags = (DRM_MODE_LUT_GAMMA | > >>>> + DRM_MODE_LUT_REFLECT_NEGATIVE | > >>>> + DRM_MODE_LUT_INTERPOLATE | > >>>> + DRM_MODE_LUT_REUSE_LAST | > >>>> + DRM_MODE_LUT_NON_DECREASING), > >>>> + .count = 1, > >>>> + .input_bpc = 24, .output_bpc = 16, > >>>> + .start = 3 << 24, .end = 7 << 24, > >>>> + .min = 0, .max = (1 << 27) - 1, > >>>> + }, > >>>> +}; > >>> > >>> If I understand this right, userspace would need this definition in > >>> order to populate the degamma blob. Should this sit in a UAPI header? > > > > Hi Harry, Pekka and Ville, > > Sorry for being a bit late on the replies, got side tracked with various issues. > > I am back on this. Apologies for delay. > > > >> My original idea (not sure it's fully realized in this series) is to have a new > >> GAMMA_MODE/etc. enum property on each crtc (or plane) for which each enum > >> value points to a kernel provided blob that contains one of these LUT descriptors. > >> Userspace can then query them dynamically and pick the best one for its current use > >> case. > > > > We have this as part of the series Ville. Patch 3 of this series creates a DEGAMMA_MODE > > property just for this. With that userspace can just query the blob_id's and will get the > > various degamma mode possible and the respective segment and lut distributions. > > > > This will be generic, so for userspace it should just be able to query this and parse and get > > the lut distribution and segment ranges. > > > > Thanks for the explanation. > > Uma, have you had a chance to sketch some of this out in IGT? I'm trying > to see how userspace would do this in practice and will try to sketch an > IGT test for this myself, but if you have it already we could share the > effort. > > >> The algorithm for choosing the best one might be something like: > >> - prefer LUT with bpc >= FB bpc, but perhaps not needlessly high bpc > >> - prefer interpolated vs. direct lookup based on current needs (eg. X > >> could prefer direct lookup to get directcolor visuals). > >> - prefer one with extended range values if needed > >> - for HDR prefer smaller step size in dark tones, > >> for SDR perhaps prefer a more uniform step size > >> > >> Or maybe we should include some kind of usage hints as well? > > > > I think the segment range and distribution of lut should be enough for a userspace > > to pick the right ones, but we can add some examples in UAPI descriptions as hints. > > > > The range might be enough, but we're already parsing hints like "GAMMA" > or "DEGAMMA". I wonder if it would make sense to add a flag for "HDR" or > "SDR" as well. > > >> And I was thinking of even adding a new property type (eg. > >> ENUM_BLOB) just for this sort of usecase. That could let us have a bit more generic > >> code to do all the validation around the property values and whatnot. > >> > >> The one nagging concern I really have with GAMMA_MODE is how a mix of old and > >> new userspace would work. Though that is more of a generic issue with any new > >> property really. > > > > For plane properties getting added newly, old userspace will not get it so I think this should be ok. > > Newer userspace will implement this and get the new functionality. > > Problem will be in extending this to crtc where we have a legacy baggage, the client caps approach > > may help us there. Have it as part of separate series just to not mix it with this new plane stuff, though > > the idea remains same based on your design. Series below for reference: > > https://patchwork.freedesktop.org/series/90821/>> > > Could we just assume we do a uniform LUT if userspace doesn't > set a _MODE enum value for the respective gamma? > > Maybe the _MODE should have a default enum value that means > a uniform (legacy) LUT. Yeah, it definitely needs a default like that. But the problem arises when new userspace sets it to something else and then hands the reins over to some old userspace that doesn't know how to reset it back to default. -- Ville Syrjälä Intel