From: "Sharma, Swati2" <swati2.sharma@intel.com>
To: "Shankar, Uma" <uma.shankar@intel.com>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>
Cc: "Nikula, Jani" <jani.nikula@intel.com>,
"daniel.vetter@ffwll.ch" <daniel.vetter@ffwll.ch>,
"Nautiyal, Ankit K" <ankit.k.nautiyal@intel.com>
Subject: Re: [v8][PATCH 06/10] drm/i91/display: Extract i965_read_luts()
Date: Thu, 29 Aug 2019 03:18:02 +0530 [thread overview]
Message-ID: <5d662eb6-e024-7f3f-553e-8e9ded28ed58@intel.com> (raw)
In-Reply-To: <3a446974-592a-ec3f-0ee7-68ef34de8a4b@intel.com>
[-- Attachment #1.1: Type: text/plain, Size: 4658 bytes --]
On 29-Aug-19 2:18 AM, Sharma, Swati2 wrote:
> On 28-Aug-19 9:38 PM, Shankar, Uma wrote:
>>> -----Original Message-----
>>> From: Sharma, Swati2
>>> Sent: Monday, August 26, 2019 11:56 AM
>>> To:intel-gfx@lists.freedesktop.org
>>> Cc: Nikula, Jani<jani.nikula@intel.com>; Sharma, Shashank
>>> <shashank.sharma@intel.com>; Manna, Animesh<animesh.manna@intel.com>;
>>> Nautiyal, Ankit K<ankit.k.nautiyal@intel.com>;daniel.vetter@ffwll.ch;
>>> ville.syrjala@linux.intel.com; Shankar, Uma<uma.shankar@intel.com>; Sharma,
>>> Swati2<swati2.sharma@intel.com>
>>> Subject: [v8][PATCH 06/10] drm/i91/display: Extract i965_read_luts()
>> Typo in i915.
>>
>>> For i965, have hw read out to create hw blob of gamma lut values.
>> Instead of "have", I feel "add" would sound better.
>>
>> Also, don't drop version history.
>>
>>> Signed-off-by: Swati Sharma<swati2.sharma@intel.com>
>>> ---
>>> drivers/gpu/drm/i915/display/intel_color.c | 39 ++++++++++++++++++++++++++++++
>>> drivers/gpu/drm/i915/i915_reg.h | 3 +++
>>> 2 files changed, 42 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/i915/display/intel_color.c
>>> b/drivers/gpu/drm/i915/display/intel_color.c
>>> index 45e0ee8..c77bbed 100644
>>> --- a/drivers/gpu/drm/i915/display/intel_color.c
>>> +++ b/drivers/gpu/drm/i915/display/intel_color.c
>>> @@ -1571,6 +1571,44 @@ void i9xx_read_luts(struct intel_crtc_state *crtc_state)
>>> crtc_state->base.gamma_lut = i9xx_read_lut_8(crtc_state); }
>>>
>>> +static struct drm_property_blob *
>>> +i965_read_gamma_lut_10p6(struct intel_crtc_state *crtc_state) {
>> You can rename this as " i965_read_lut_10p6" as pointed by Ville as well.
>> Will help extend for de-gamma later and can be re-used.
> Did this since we may need to create a new func for degamma readout and
> this can't be reused.
Sorry, already made this change earlier..missed somehow.
>> Also make these const, as recommended by Ville.
>>
>>> + struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
>>> + struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
>>> + u32 i, val1, val2, lut_size = INTEL_INFO(dev_priv)->color.gamma_lut_size;
>> Move to next line to honour 80 character limits.
>>
>>> + enum pipe pipe = crtc->pipe;
>>> + struct drm_property_blob *blob;
>>> + struct drm_color_lut *blob_data;
>>> +
>>> + blob = drm_property_create_blob(&dev_priv->drm,
>>> + sizeof(struct drm_color_lut) * lut_size,
>>> + NULL);
>>> + if (IS_ERR(blob))
>>> + return NULL;
>>> +
>>> + blob_data = blob->data;
>>> +
>>> + for (i = 0; i < lut_size - 1; i++) {
>>> + val1 = I915_READ(PALETTE(pipe, 2 * i + 0));
>>> + val2 = I915_READ(PALETTE(pipe, 2 * i + 1));
>>> +
>>> + blob_data[i].red = REG_FIELD_GET(PALETTE_RED_MASK, val1) << 8 |
>>> REG_FIELD_GET(PALETTE_RED_MASK, val2);
>>> + blob_data[i].green = REG_FIELD_GET(PALETTE_GREEN_MASK, val1)
>>> << 8 | REG_FIELD_GET(PALETTE_GREEN_MASK, val2);
>>> + blob_data[i].blue = REG_FIELD_GET(PALETTE_BLUE_MASK, val1) << 8
>>> | REG_FIELD_GET(PALETTE_BLUE_MASK, val2) ;
>>> + }
>>> +
>>> + return blob;
>>> +}
>>> +
>>> +static void i965_read_luts(struct intel_crtc_state *crtc_state) {
>>> + if (crtc_state->gamma_mode == GAMMA_MODE_MODE_8BIT)
>>> + crtc_state->base.gamma_lut = i9xx_read_lut_8(crtc_state);
>>> + else
>>> + crtc_state->base.gamma_lut =
>>> i965_read_gamma_lut_10p6(crtc_state);
>>> +}
>>> +
>>> void intel_color_init(struct intel_crtc *crtc) {
>>> struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); @@ -1586,6
>>> +1624,7 @@ void intel_color_init(struct intel_crtc *crtc)
>>> } else if (INTEL_GEN(dev_priv) >= 4) {
>>> dev_priv->display.color_check = i9xx_color_check;
>>> dev_priv->display.color_commit = i9xx_color_commit;
>>> + dev_priv->display.read_luts = i965_read_luts;
>>> dev_priv->display.load_luts = i965_load_luts;
>>> } else {
>>> dev_priv->display.color_check = i9xx_color_check; diff --git
>>> a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index
>>> b687faa..b30b0c6b 100644
>>> --- a/drivers/gpu/drm/i915/i915_reg.h
>>> +++ b/drivers/gpu/drm/i915/i915_reg.h
>>> @@ -3558,6 +3558,9 @@ static inline bool i915_mmio_reg_valid(i915_reg_t reg)
>>> #define _PALETTE_A 0xa000
>>> #define _PALETTE_B 0xa800
>>> #define _CHV_PALETTE_C 0xc000
>>> +#define PALETTE_RED_MASK REG_GENMASK(23, 16)
>>> +#define PALETTE_GREEN_MASK REG_GENMASK(15, 8)
>>> +#define PALETTE_BLUE_MASK REG_GENMASK(7, 0)
>>> #define PALETTE(pipe, i) _MMIO(DISPLAY_MMIO_BASE(dev_priv) + \
>>> _PICK((pipe), _PALETTE_A, \
>>> _PALETTE_B, _CHV_PALETTE_C) + \
>>> --
>>> 1.9.1
>
>
> --
> ~Swati Sharma
--
~Swati Sharma
[-- Attachment #1.2: Type: text/html, Size: 7222 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2019-08-28 21:48 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-26 6:26 [v8][PATCH 00/10] drm/i915: adding state checker for gamma lut value Swati Sharma
2019-08-26 6:26 ` [v8][PATCH 01/10] drm/i915/display: Add func to get gamma bit precision Swati Sharma
2019-08-28 13:22 ` Shankar, Uma
2019-08-26 6:26 ` [v8][PATCH 02/10] drm/i915/display: Add debug log for color parameters Swati Sharma
2019-08-28 14:07 ` Shankar, Uma
2019-08-26 6:26 ` [v8][PATCH 03/10] drm/i915/display: Add func to compare hw/sw gamma lut Swati Sharma
2019-08-28 15:22 ` Shankar, Uma
2019-08-26 6:26 ` [v8][PATCH 04/10] drm/i915/display: Add macro to compare gamma hw/sw lut Swati Sharma
2019-08-28 15:35 ` Shankar, Uma
2019-08-26 6:26 ` [v8][PATCH 05/10] drm/i915/display: Extract i9xx_read_luts() Swati Sharma
2019-08-28 15:55 ` Shankar, Uma
2019-08-28 20:29 ` Sharma, Swati2
2019-08-29 15:15 ` Shankar, Uma
2019-08-26 6:26 ` [v8][PATCH 06/10] drm/i91/display: Extract i965_read_luts() Swati Sharma
2019-08-28 16:08 ` Shankar, Uma
2019-08-28 16:11 ` Shankar, Uma
2019-08-28 20:48 ` Sharma, Swati2
2019-08-28 21:48 ` Sharma, Swati2 [this message]
2019-08-26 6:26 ` [v8][PATCH 09/10] drm/i915/display: Extract glk_read_luts() Swati Sharma
2019-08-28 16:30 ` Shankar, Uma
2019-08-26 6:26 ` [v8][PATCH 10/10] FOR_TESTING_ONLY: Print rgb values of hw and sw blobs Swati Sharma
2019-08-26 6:44 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: adding state checker for gamma lut value Patchwork
2019-08-26 6:49 ` ✗ Fi.CI.SPARSE: " Patchwork
2019-08-26 7:08 ` ✓ Fi.CI.BAT: success " Patchwork
2019-08-26 9:13 ` ✓ Fi.CI.IGT: " Patchwork
2019-08-28 13:11 ` [v8][PATCH 00/10] " Shankar, Uma
[not found] ` <1566800772-18412-8-git-send-email-swati2.sharma@intel.com>
2019-08-28 16:16 ` [v8][PATCH 07/10] drm/i915/display: Extract chv_read_luts() Shankar, Uma
[not found] ` <1566800772-18412-9-git-send-email-swati2.sharma@intel.com>
2019-08-28 16:24 ` [v8][PATCH 08/10] drm/i915/display: Extract ilk_read_luts() Shankar, Uma
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=5d662eb6-e024-7f3f-553e-8e9ded28ed58@intel.com \
--to=swati2.sharma@intel.com \
--cc=ankit.k.nautiyal@intel.com \
--cc=daniel.vetter@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--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;
as well as URLs for NNTP newsgroup(s).