All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Ben Widawsky <benjamin.widawsky@intel.com>
Cc: Intel GFX <intel-gfx@lists.freedesktop.org>,
	Ben Widawsky <ben@bwidawsk.net>,
	David Woodhouse <David.Woodhouse@intel.com>
Subject: Re: [PATCH] drm/i915/bdw: Fix GEN8 GTT size calculation
Date: Fri, 14 Mar 2014 19:40:30 +0100	[thread overview]
Message-ID: <20140314184030.GC30571@phenom.ffwll.local> (raw)
In-Reply-To: <1394816286-31200-1-git-send-email-benjamin.widawsky@intel.com>

On Fri, Mar 14, 2014 at 09:58:06AM -0700, Ben Widawsky wrote:
> The preliminary HW support check is no longer needed, and the
> calculation is simplified while here.
> 
> Reported-by: David Woodhouse <David.Woodhouse@intel.com>
> Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
> ---
>  drivers/gpu/drm/i915/i915_gem_gtt.c | 9 +--------
>  1 file changed, 1 insertion(+), 8 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_gem_gtt.c b/drivers/gpu/drm/i915/i915_gem_gtt.c
> index 40a2b36..694112a 100644
> --- a/drivers/gpu/drm/i915/i915_gem_gtt.c
> +++ b/drivers/gpu/drm/i915/i915_gem_gtt.c
> @@ -1250,14 +1250,7 @@ static inline unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
>  {
>  	bdw_gmch_ctl >>= BDW_GMCH_GGMS_SHIFT;
>  	bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
> -	if (bdw_gmch_ctl)
> -		bdw_gmch_ctl = 1 << bdw_gmch_ctl;
> -	if (bdw_gmch_ctl > 4) {
> -		WARN_ON(!i915_preliminary_hw_support);
> -		return 4<<20;
> -	}
> -
> -	return bdw_gmch_ctl << 20;
> +	return 1 << (bdw_gmch_ctl + 20);

I don't have this in my tree, and it seems to never have existed in
upstream ...

/me is confused

Cheers, Daniel

>  }
>  
>  static inline size_t gen6_get_stolen_size(u16 snb_gmch_ctl)
> -- 
> 1.9.0
> 
> _______________________________________________
> 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:[~2014-03-14 18:40 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-14 16:58 [PATCH] drm/i915/bdw: Fix GEN8 GTT size calculation Ben Widawsky
2014-03-14 18:40 ` Daniel Vetter [this message]
2014-03-14 19:14   ` Ben Widawsky
2014-03-14 20:03     ` Daniel Vetter
2014-03-14 21:56     ` Daniel Vetter
2014-03-14 22:05     ` Woodhouse, David
2014-03-14 22:10       ` Daniel Vetter
2014-03-17 16:17         ` Woodhouse, David
2014-03-17 16:19           ` David Woodhouse
2014-03-17 17:03           ` 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=20140314184030.GC30571@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=David.Woodhouse@intel.com \
    --cc=ben@bwidawsk.net \
    --cc=benjamin.widawsky@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 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.