All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Michel Thierry <michel.thierry@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2] drm/i915: Use true PPGTT in Gen8+ when execlists are enabled
Date: Mon, 15 Dec 2014 16:32:02 +0100	[thread overview]
Message-ID: <20141215153202.GD2711@phenom.ffwll.local> (raw)
In-Reply-To: <20141215150824.GA2711@phenom.ffwll.local>

On Mon, Dec 15, 2014 at 04:08:37PM +0100, Daniel Vetter wrote:
> On Mon, Dec 15, 2014 at 02:58:00PM +0000, Michel Thierry wrote:
> > In Gen8+, full ppgtt needs execlist, otherwise the ctx switch can hang.
> > 
> > Also remove the current restriction, a user should be able to explicitly set
> > ppgtt=2.
> > 
> > Note, this patch considers that execlist support has been enabled by
> > default on Gen8.
> > 
> > v2: Remove non-default restriction and clarify comment (Daniel)
> 
> Missing git add since there's no no comment any more?

Ok, Michel clarified on irc that he meant commit message. I've fixed that
up and merged the patch.
-Daniel

> -Daniel
> 
> > 
> > Cc: Daniel Vetter <daniel@ffwll.ch>
> > Signed-off-by: Michel Thierry <michel.thierry@intel.com>
> > ---
> >  drivers/gpu/drm/i915/i915_gem_gtt.c | 7 ++++---
> >  1 file changed, 4 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/i915_gem_gtt.c b/drivers/gpu/drm/i915/i915_gem_gtt.c
> > index 171f6ea..b64323b 100644
> > --- a/drivers/gpu/drm/i915/i915_gem_gtt.c
> > +++ b/drivers/gpu/drm/i915/i915_gem_gtt.c
> > @@ -40,8 +40,6 @@ static int sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
> >  
> >  	has_aliasing_ppgtt = INTEL_INFO(dev)->gen >= 6;
> >  	has_full_ppgtt = INTEL_INFO(dev)->gen >= 7;
> > -	if (IS_GEN8(dev))
> > -		has_full_ppgtt = false; /* XXX why? */
> >  
> >  	/*
> >  	 * We don't allow disabling PPGTT for gen9+ as it's a requirement for
> > @@ -72,7 +70,10 @@ static int sanitize_enable_ppgtt(struct drm_device *dev, int enable_ppgtt)
> >  		return 0;
> >  	}
> >  
> > -	return has_aliasing_ppgtt ? 1 : 0;
> > +	if (INTEL_INFO(dev)->gen >= 8 && i915.enable_execlists)
> > +		return 2;
> > +	else
> > +		return has_aliasing_ppgtt ? 1 : 0;
> >  }
> >  
> >  
> > -- 
> > 2.1.1
> > 
> 
> -- 
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2014-12-15 15:31 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-11 12:07 [PATCH] drm/i915: Use true PPGTT in Gen8 if execlists are enabled Michel Thierry
2014-12-11 18:45 ` shuang.he
2014-12-15 10:11 ` Daniel Vetter
2014-12-15 12:47   ` Michel Thierry
2014-12-15 14:22     ` Daniel Vetter
2014-12-15 14:28       ` Daniel Vetter
2014-12-15 14:49         ` Michel Thierry
2014-12-15 14:58 ` [PATCH v2] drm/i915: Use true PPGTT in Gen8+ when " Michel Thierry
2014-12-15 15:08   ` Daniel Vetter
2014-12-15 15:32     ` Daniel Vetter [this message]
2014-12-16  8:52   ` shuang.he

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=20141215153202.GD2711@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=michel.thierry@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.