Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Reject out-of-bound sprites
Date: Tue, 8 Jan 2013 12:11:38 +0100	[thread overview]
Message-ID: <20130108111138.GY5737@phenom.ffwll.local> (raw)
In-Reply-To: <1355869108-4917-1-git-send-email-chris@chris-wilson.co.uk>

On Tue, Dec 18, 2012 at 10:18:28PM +0000, Chris Wilson wrote:
> We make no attempt to fixup the source as we adjust the destination
> rectangle, expect the caller to have already fixed that up. This makes
> no sense, asking userspace to compensate for the kernel adjusting the
> one rectangle not the other, so simply reject any attempt to show an
> partially visible box. Userspace should know better.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>

I guess this makes sense for now, given that the only user we have (ddx)
needs to copy things around anyway ... Still, some common users and
testcases across drivers would be nice for this </wishful-thinking>.

Applied to fixes.
-Daniel
> ---
>  drivers/gpu/drm/i915/intel_sprite.c |   31 ++++++-------------------------
>  1 file changed, 6 insertions(+), 25 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_sprite.c b/drivers/gpu/drm/i915/intel_sprite.c
> index 22d65f7..97866c2 100644
> --- a/drivers/gpu/drm/i915/intel_sprite.c
> +++ b/drivers/gpu/drm/i915/intel_sprite.c
> @@ -498,31 +498,13 @@ intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
>  	}
>  
>  	/*
> -	 * Clamp the width & height into the visible area.  Note we don't
> -	 * try to scale the source if part of the visible region is offscreen.
> -	 * The caller must handle that by adjusting source offset and size.
> +	 * Reject any attempt to display video outside the visible area.
> +	 * The caller must handle this by adjusting source offset and size.
>  	 */
> -	if ((crtc_x < 0) && ((crtc_x + crtc_w) > 0)) {
> -		crtc_w += crtc_x;
> -		crtc_x = 0;
> -	}
> -	if ((crtc_x + crtc_w) <= 0) /* Nothing to display */
> -		goto out;
> -	if ((crtc_x + crtc_w) > primary_w)
> -		crtc_w = primary_w - crtc_x;
> -
> -	if ((crtc_y < 0) && ((crtc_y + crtc_h) > 0)) {
> -		crtc_h += crtc_y;
> -		crtc_y = 0;
> -	}
> -	if ((crtc_y + crtc_h) <= 0) /* Nothing to display */
> -		goto out;
> -	if (crtc_y + crtc_h > primary_h)
> -		crtc_h = primary_h - crtc_y;
> -
> -	if (!crtc_w || !crtc_h) /* Again, nothing to display */
> -		goto out;
> -
> +	if (crtc_x < 0 || crtc_x + crtc_w > primary_w)
> +		return -EINVAL;
> +	if (crtc_y < 0 || crtc_y + crtc_h > primary_h)
> +		return -EINVAL;
>  	/*
>  	 * We may not have a scaler, eg. HSW does not have it any more
>  	 */
> @@ -571,7 +553,6 @@ intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
>  
>  out_unlock:
>  	mutex_unlock(&dev->struct_mutex);
> -out:
>  	return ret;
>  }
>  
> -- 
> 1.7.10.4
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

  reply	other threads:[~2013-01-08 11:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-18 22:18 [PATCH] drm/i915: Reject out-of-bound sprites Chris Wilson
2013-01-08 11:11 ` Daniel Vetter [this message]
2013-01-08 16:56   ` Daniel Vetter

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=20130108111138.GY5737@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=chris@chris-wilson.co.uk \
    --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