public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Matt Roper <matthew.d.roper@intel.com>
To: Bob Paauwe <bob.j.paauwe@intel.com>
Cc: intel-gfx <intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH] drm/i915/skl+: Enable gamma and CSC on bottom color.
Date: Tue, 20 Oct 2015 11:16:20 -0700	[thread overview]
Message-ID: <20151020181620.GB17664@intel.com> (raw)
In-Reply-To: <1445357096-2653-1-git-send-email-bob.j.paauwe@intel.com>

On Tue, Oct 20, 2015 at 09:04:56AM -0700, Bob Paauwe wrote:
> To stay consisent with how we're programming all the other planes,
> enable gamma and CSC on the bottom color.  Without this, we fail the
> the kms_universal_plane functional tests because the black primary plane
> is brighter (gamma corrected) than the disabled plane case.  If the bottom
> color is also gamma/csc corrected, then the disiabled case will match the
> black plane case.
> 
> testcase: igt/kms_universal_plane/universal-plane-pipe-[ABC]-functional
> CC: Konduru, Chandra <chandra.konduru@intel.com>
> cc: Kevin Strasser <kevin.strasser@linux.intel.com>
> Signed-off-by: Bob Paauwe <bob.j.paauwe@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_reg.h      | 10 ++++++++++
>  drivers/gpu/drm/i915/intel_display.c |  7 +++++++
>  2 files changed, 17 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
> index 724f057..9ad330b 100644
> --- a/drivers/gpu/drm/i915/i915_reg.h
> +++ b/drivers/gpu/drm/i915/i915_reg.h
> @@ -4479,6 +4479,16 @@ enum skl_disp_power_wells {
>  #define   PIPEMISC_DITHER_TYPE_SP	(0<<2)
>  #define PIPEMISC(pipe) _PIPE2(pipe, _PIPE_MISC_A)
>  
> +#define _PIPE_BOTTOM_COLOR_A           0x70034
> +#define _PIPE_BOTTOM_COLOR_B           0x71034
> +#define _PIPE_BOTTOM_COLOR_C           0x72034
> +#define   PIPE_BOTTOM_GAMMA_ENABLE     (1<<31)
> +#define   PIPE_BOTTOM_CSC_ENABLE       (1<<30)
> +#define   PIPE_BOTTOM_COLOR_MASK       0x3FFFFFFF
> +#define PIPE_BOTTOM_COLOR(pipe) _PIPE3(pipe, _PIPE_BOTTOM_COLOR_A, \
> +                                      _PIPE_BOTTOM_COLOR_B, \
> +                                      _PIPE_BOTTOM_COLOR_C)
> +
>  #define VLV_DPFLIPSTAT				(VLV_DISPLAY_BASE + 0x70028)
>  #define   PIPEB_LINE_COMPARE_INT_EN		(1<<29)
>  #define   PIPEB_HLINE_INT_EN			(1<<28)
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> index 3b4bacf..7665730 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -4949,6 +4949,7 @@ static void haswell_crtc_enable(struct drm_crtc *crtc)
>  	struct intel_crtc_state *pipe_config =
>  		to_intel_crtc_state(crtc->state);
>  	bool is_dsi = intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_DSI);
> +	u32 bottom;
>  
>  	if (WARN_ON(intel_crtc->active))
>  		return;
> @@ -5033,6 +5034,12 @@ static void haswell_crtc_enable(struct drm_crtc *crtc)
>  		intel_wait_for_vblank(dev, hsw_workaround_pipe);
>  		intel_wait_for_vblank(dev, hsw_workaround_pipe);
>  	}
> +
> +	if (INTEL_INFO(dev)->gen >= 9) {
> +		bottom = I915_READ(PIPE_BOTTOM_COLOR(pipe));

Do we really want to do the r/m/w of the current color (meaning that we
could get something that isn't even black if our boot firmware messed
with the register), or should we just set it to explicit black with the
CSC/gamma bits turned on?  Eventually that hardcoded black would change
once we land properties to allow userspace to change the color, but
setting it explicitly to black today seems reasonable to me.

Anyway, this does solve the i-g-t failures for me, so

Tested-by(BXT): Matt Roper <matthew.d.roper@intel.com>


Matt

> +		bottom |= (PIPE_BOTTOM_CSC_ENABLE | PIPE_BOTTOM_GAMMA_ENABLE);
> +		I915_WRITE(PIPE_BOTTOM_COLOR(pipe), bottom);
> +	}
>  }
>  
>  static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
> -- 
> 2.4.3
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Matt Roper
Graphics Software Engineer
IoTG Platform Enabling & Development
Intel Corporation
(916) 356-2795
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2015-10-20 18:16 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-20 16:04 [PATCH] drm/i915/skl+: Enable gamma and CSC on bottom color Bob Paauwe
2015-10-20 18:16 ` Matt Roper [this message]
2015-10-21  6:47   ` Daniel Vetter
2015-10-21 16:45 ` [PATCH 1/2] drm/i915/skl+: Enable gamma and CSC on bottom color. (v2) Bob Paauwe

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=20151020181620.GB17664@intel.com \
    --to=matthew.d.roper@intel.com \
    --cc=bob.j.paauwe@intel.com \
    --cc=intel-gfx@lists.freedesktop.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