From: Jani Nikula <jani.nikula@linux.intel.com>
To: "Shankar, Uma" <uma.shankar@intel.com>,
Ville Syrjala <ville.syrjala@linux.intel.com>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>
Cc: "dri-devel@lists.freedesktop.org" <dri-devel@lists.freedesktop.org>
Subject: Re: [Intel-gfx] [PATCH v2 6/7] drm/i915: No 10bit gamma on desktop gen3 parts
Date: Fri, 26 May 2023 13:59:07 +0300 [thread overview]
Message-ID: <87pm6nicjo.fsf@intel.com> (raw)
In-Reply-To: <DM4PR11MB636079BEDB4092FAC1E8D776F4469@DM4PR11MB6360.namprd11.prod.outlook.com>
On Thu, 25 May 2023, "Shankar, Uma" <uma.shankar@intel.com> wrote:
>> -----Original Message-----
>> From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Ville Syrjala
>> Sent: Thursday, April 13, 2023 10:19 PM
>> To: intel-gfx@lists.freedesktop.org
>> Cc: dri-devel@lists.freedesktop.org
>> Subject: [Intel-gfx] [PATCH v2 6/7] drm/i915: No 10bit gamma on desktop gen3 parts
>>
>> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>>
>> Apparently desktop gen3 parts don't support the 10bit gamma mode at all. Stop
>> claiming otherwise.
>>
>> As is the case with pipe A on gen3 mobile parts, the PIPECONF gamma mode bit can
>> be set but it has no effect on the output.
>>
>> PNV seems to be the only slight exception, but generally the desktop PNV variant
>> looks more like a mobile part so this is not entirely surprising.
>
> Couldn't check the relevant spec to re-confirm, trusting your judgment here.
> Reviewed-by: Uma Shankar <uma.shankar@intel.com>
This needs a rebase on display/intel_display_device.[ch] stuff.
BR,
Jani.
>
>> Fixes: 67630bacae23 ("drm/i915: Add 10bit gamma mode for gen2/3")
>> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>> ---
>> drivers/gpu/drm/i915/i915_pci.c | 8 +++++++-
>> 1 file changed, 7 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c index
>> cddb6e197972..305c05c3f93b 100644
>> --- a/drivers/gpu/drm/i915/i915_pci.c
>> +++ b/drivers/gpu/drm/i915/i915_pci.c
>> @@ -250,13 +250,13 @@ static const struct intel_device_info i865g_info = {
>> .dma_mask_size = 32, \
>> I9XX_PIPE_OFFSETS, \
>> I9XX_CURSOR_OFFSETS, \
>> - I9XX_COLORS, \
>> GEN_DEFAULT_PAGE_SIZES, \
>> GEN_DEFAULT_REGIONS
>>
>> static const struct intel_device_info i915g_info = {
>> GEN3_FEATURES,
>> PLATFORM(INTEL_I915G),
>> + I845_COLORS,
>> .has_coherent_ggtt = false,
>> .display.cursor_needs_physical = 1,
>> .display.has_overlay = 1,
>> @@ -268,6 +268,7 @@ static const struct intel_device_info i915g_info = { static
>> const struct intel_device_info i915gm_info = {
>> GEN3_FEATURES,
>> PLATFORM(INTEL_I915GM),
>> + I9XX_COLORS,
>> .is_mobile = 1,
>> .display.cursor_needs_physical = 1,
>> .display.has_overlay = 1,
>> @@ -281,6 +282,7 @@ static const struct intel_device_info i915gm_info = { static
>> const struct intel_device_info i945g_info = {
>> GEN3_FEATURES,
>> PLATFORM(INTEL_I945G),
>> + I845_COLORS,
>> .display.has_hotplug = 1,
>> .display.cursor_needs_physical = 1,
>> .display.has_overlay = 1,
>> @@ -292,6 +294,7 @@ static const struct intel_device_info i945g_info = { static
>> const struct intel_device_info i945gm_info = {
>> GEN3_FEATURES,
>> PLATFORM(INTEL_I945GM),
>> + I9XX_COLORS,
>> .is_mobile = 1,
>> .display.has_hotplug = 1,
>> .display.cursor_needs_physical = 1,
>> @@ -306,6 +309,7 @@ static const struct intel_device_info i945gm_info = { static
>> const struct intel_device_info g33_info = {
>> GEN3_FEATURES,
>> PLATFORM(INTEL_G33),
>> + I845_COLORS,
>> .display.has_hotplug = 1,
>> .display.has_overlay = 1,
>> .dma_mask_size = 36,
>> @@ -314,6 +318,7 @@ static const struct intel_device_info g33_info = { static
>> const struct intel_device_info pnv_g_info = {
>> GEN3_FEATURES,
>> PLATFORM(INTEL_PINEVIEW),
>> + I9XX_COLORS,
>> .display.has_hotplug = 1,
>> .display.has_overlay = 1,
>> .dma_mask_size = 36,
>> @@ -322,6 +327,7 @@ static const struct intel_device_info pnv_g_info = { static
>> const struct intel_device_info pnv_m_info = {
>> GEN3_FEATURES,
>> PLATFORM(INTEL_PINEVIEW),
>> + I9XX_COLORS,
>> .is_mobile = 1,
>> .display.has_hotplug = 1,
>> .display.has_overlay = 1,
>> --
>> 2.39.2
>
--
Jani Nikula, Intel Open Source Graphics Center
next prev parent reply other threads:[~2023-05-26 10:59 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-13 16:49 [Intel-gfx] [PATCH v2 0/7] drm/i915: CTM stuff mostly Ville Syrjala
2023-04-13 16:49 ` [Intel-gfx] [PATCH v2 1/7] drm/uapi: Document CTM matrix better Ville Syrjala
2023-04-13 16:49 ` [Intel-gfx] [PATCH v2 2/7] drm/i915: Expose crtc CTM property on ilk/snb Ville Syrjala
2023-05-25 20:13 ` Shankar, Uma
2023-04-13 16:49 ` [Intel-gfx] [PATCH v2 3/7] drm/i915: Fix CHV CGM CSC coefficient sign handling Ville Syrjala
2023-05-25 20:55 ` Shankar, Uma
2023-05-25 21:27 ` Shankar, Uma
2023-05-26 13:48 ` Ville Syrjälä
2023-05-29 5:13 ` Shankar, Uma
2023-04-13 16:49 ` [Intel-gfx] [PATCH v2 4/7] drm/i915: Always enable CGM CSC on CHV Ville Syrjala
2023-05-25 20:58 ` Shankar, Uma
2023-04-13 16:49 ` [Intel-gfx] [PATCH v2 5/7] drm/i915: Implement CTM property support for VLV Ville Syrjala
2023-05-25 21:23 ` Shankar, Uma
2023-04-13 16:49 ` [Intel-gfx] [PATCH v2 6/7] drm/i915: No 10bit gamma on desktop gen3 parts Ville Syrjala
2023-05-25 21:25 ` Shankar, Uma
2023-05-26 10:59 ` Jani Nikula [this message]
2023-05-26 13:51 ` Ville Syrjälä
2023-04-13 16:49 ` [Intel-gfx] [PATCH v2 7/7] drm/i915: Do state check for color management changes Ville Syrjala
2023-04-13 18:28 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: CTM stuff mostly (rev3) Patchwork
2023-04-13 18:28 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-04-13 18:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2023-04-15 12:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: CTM stuff mostly (rev4) Patchwork
2023-04-15 13:09 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2023-04-15 20:11 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: CTM stuff mostly (rev5) Patchwork
2023-04-15 20:11 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-04-15 20:23 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-04-15 21:33 ` [Intel-gfx] ✓ Fi.CI.IGT: " 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=87pm6nicjo.fsf@intel.com \
--to=jani.nikula@linux.intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=uma.shankar@intel.com \
--cc=ville.syrjala@linux.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