public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: "Konduru, Chandra" <chandra.konduru@intel.com>
Cc: "Vetter, Daniel" <daniel.vetter@intel.com>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>,
	"Syrjala, Ville" <ville.syrjala@intel.com>
Subject: Re: [PATCH 03/12] drm/i915: Stage scaler request for NV12 as src format
Date: Thu, 21 May 2015 19:49:01 +0300	[thread overview]
Message-ID: <20150521164901.GP18908@intel.com> (raw)
In-Reply-To: <76A9B330A4D78C4D99CB292C4CC06C0E36FE9118@fmsmsx101.amr.corp.intel.com>

On Thu, May 21, 2015 at 04:24:00PM +0000, Konduru, Chandra wrote:
> > > --- a/drivers/gpu/drm/i915/intel_display.c
> > > +++ b/drivers/gpu/drm/i915/intel_display.c
> > > @@ -4499,9 +4499,11 @@ skl_update_scaler_users(
> > >  		rotation = DRM_ROTATE_0;
> > >  	}
> > >
> > > -	need_scaling = intel_rotation_90_or_270(rotation) ?
> > > -		(src_h != dst_w || src_w != dst_h):
> > > -		(src_w != dst_w || src_h != dst_h);
> > > +	/* scaling is required when src dst sizes doesn't match or format is NV12
> > */
> > > +	need_scaling = (src_w != dst_w || src_h != dst_h ||
> > > +		(intel_rotation_90_or_270(rotation) &&
> > > +			(src_h != dst_w || src_w != dst_h)) ||
> > 
> > That doesn't look right. 
> It is evaluating scaling needed by comparing
> 1) src != dst
> 2) format == nv12
> Can you pls point what doesn't look right here?

It'll do these checks before even checking the rotation:
 src_w != dst_w || src_h != dst_h

> 
> > Maybe add a small helper function that has these scaling
> > checks so that we don't need to have them all in the same if statement.
> 
> Thought about doing that but have to pass around 6 params to helper 
> and do the same evaluation there which seems unnecessary.

Just figured it'll look a bit less convoluted if you split it up into a
few separate if statements. And doing that via a helper avoids 
polluting the main codepath with the details. I tend to like small
helper functions like that (maybe a bit too much sometimes :)

> 
> >
> > > +		(fb && fb->pixel_format == DRM_FORMAT_NV12));
> > >

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2015-05-21 16:49 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-18  5:10 [PATCH 00/12] drm/i915: Adding NV12 for skylake display Chandra Konduru
2015-05-18  5:10 ` [PATCH 01/12] drm/i915: Add register definitions for NV12 support Chandra Konduru
2015-05-18  5:10 ` [PATCH 02/12] drm/i915: Set scaler mode for NV12 Chandra Konduru
2015-05-18  5:10 ` [PATCH 03/12] drm/i915: Stage scaler request for NV12 as src format Chandra Konduru
2015-05-21 11:27   ` Ville Syrjälä
2015-05-21 16:24     ` Konduru, Chandra
2015-05-21 16:49       ` Ville Syrjälä [this message]
2015-05-18  5:10 ` [PATCH 04/12] drm/i915: Update format_is_yuv() to include NV12 Chandra Konduru
2015-05-21 11:29   ` Ville Syrjälä
2015-05-18  5:10 ` [PATCH 05/12] drm/i915: Upscale scaler max scale for NV12 Chandra Konduru
2015-05-18  5:10 ` [PATCH 06/12] drm/i915: Add NV12 as supported format for primary plane Chandra Konduru
2015-05-18  5:11 ` [PATCH 07/12] drm/i915: Add NV12 as supported format for sprite plane Chandra Konduru
2015-05-18  5:11 ` [PATCH 08/12] drm/i915: Add NV12 support to intel_framebuffer_init Chandra Konduru
2015-05-19  8:24   ` Daniel Vetter
2015-05-19 16:31     ` Konduru, Chandra
2015-05-20  7:36       ` Daniel Vetter
2015-05-21  0:31         ` Konduru, Chandra
2015-05-21  9:33           ` Daniel Vetter
2015-05-21 16:11             ` Konduru, Chandra
2015-05-21 17:34               ` Runyan, Arthur J
2015-05-22 19:06               ` Runyan, Arthur J
2015-05-18  5:11 ` [PATCH 09/12] drm/i915: Enable NV12 primary plane via crtc set config Chandra Konduru
2015-05-18  5:11 ` [PATCH 10/12] drm/i915: Add NV12 to primary plane programming Chandra Konduru
2015-05-18  5:11 ` [PATCH 11/12] drm/i915: Add NV12 to sprite " Chandra Konduru
2015-05-18  5:11 ` [PATCH 12/12] drm/i915: Add 90/270 rotation for NV12 format Chandra Konduru

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=20150521164901.GP18908@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=chandra.konduru@intel.com \
    --cc=daniel.vetter@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=ville.syrjala@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