All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org,
	Matthew Auld <matthew.auld@intel.com>,
	Paulo Zanoni <paulo.r.zanoni@intel.com>
Subject: Re: [PATCH 05/10] drm/i915: make dsm struct resource centric
Date: Thu, 7 Dec 2017 16:03:56 +0200	[thread overview]
Message-ID: <20171207140356.GC10981@intel.com> (raw)
In-Reply-To: <151258503384.21081.15657315571990393080@mail.alporthouse.com>

On Wed, Dec 06, 2017 at 06:30:33PM +0000, Chris Wilson wrote:
> Quoting Matthew Auld (2017-12-06 18:17:25)
> > Now that we are using struct resource to track the stolen region, it is
> > more convenient if we track dsm in a resource as well.
> > 
> > v2: check range_overflow when writing to 32b registers (Chris)
> >     pepper in some comments (Chris)
> > v3: refit i915_stolen_to_dma()
> > v4: kill ggtt->stolen_size
> > 
> > Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
> > ---
> > -static dma_addr_t i915_stolen_to_dma(struct drm_i915_private *dev_priv)
> > +static int i915_adjust_stolen(struct drm_i915_private *dev_priv,
> > +                             struct resource *dsm)
> >  {
> >         struct i915_ggtt *ggtt = &dev_priv->ggtt;
> > -       dma_addr_t base = intel_graphics_stolen_res.start;
> >         struct resource *r;
> >  
> > -       GEM_BUG_ON(overflows_type(intel_graphics_stolen_res.start, base));
> > +       if (dsm->start == 0 || add_overflows(dsm->start, resource_size(dsm)))
> 
> Now s/add_overflows/dsm->end <= dsm->start/
> 
> > +               return -EINVAL;
> >  
> > -       if (base == 0 || add_overflows(base, ggtt->stolen_size))
> > -               return 0;
> > -
> > -       /* make sure we don't clobber the GTT if it's within stolen memory */
> > +       /* Make sure we don't clobber the GTT if it's within stolen memory */
> >         if (INTEL_GEN(dev_priv) <= 4 &&
> >             !IS_G33(dev_priv) && !IS_PINEVIEW(dev_priv) && !IS_G4X(dev_priv)) {
> > -               struct {
> > -                       dma_addr_t start, end;
> > -               } stolen[2] = {
> > -                       { .start = base, .end = base + ggtt->stolen_size, },
> > -                       { .start = base, .end = base + ggtt->stolen_size, },
> > +               struct resource stolen[2] = {
> > +                       DEFINE_RES_MEM(dsm->start, resource_size(dsm)),
> > +                       DEFINE_RES_MEM(dsm->start, resource_size(dsm)),
> 
> struct resource stolen[2] = { *dsm, *dsm } ?

BTW I don't think I've ever seen a case where the GTT wasn't at the end
of stolen. So we could simplify this code by making that assumption.

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

  reply	other threads:[~2017-12-07 14:04 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-06 18:17 [PATCH 00/10] make stolen resource centric Matthew Auld
2017-12-06 18:17 ` [PATCH 01/10] x86/early-quirks: Extend Intel graphics stolen memory placement to 64bit Matthew Auld
2017-12-06 18:17   ` Matthew Auld
2017-12-06 18:43   ` Chris Wilson
2017-12-06 18:17 ` [PATCH 02/10] x86/early-quirks: replace the magical increment start values Matthew Auld
2017-12-06 18:17   ` Matthew Auld
2017-12-06 18:17 ` [PATCH 03/10] x86/early-quirks: reverse the if ladders Matthew Auld
2017-12-06 18:17 ` [PATCH 04/10] drm/i915: nuke the duplicated stolen discovery Matthew Auld
2017-12-06 18:17 ` [PATCH 05/10] drm/i915: make dsm struct resource centric Matthew Auld
2017-12-06 18:30   ` Chris Wilson
2017-12-07 14:03     ` Ville Syrjälä [this message]
2017-12-06 18:17 ` [PATCH 06/10] drm/i915: make reserved " Matthew Auld
2017-12-06 18:17 ` [PATCH 07/10] drm/i915: make mappable " Matthew Auld
2017-12-06 18:17 ` [PATCH 08/10] drm/i915: give stolen_usable_size a more suitable home Matthew Auld
2017-12-06 18:32   ` Chris Wilson
2017-12-06 18:17 ` [PATCH 09/10] drm/i915: prefer resource_size_t for everything stolen Matthew Auld
2017-12-06 18:39   ` Chris Wilson
2017-12-06 18:17 ` [PATCH 10/10] drm/i915: prefer stolen_usable_size for the range sanity check Matthew Auld
2017-12-06 18:41   ` Chris Wilson
2017-12-06 18:39 ` ✓ Fi.CI.BAT: success for make stolen resource centric (rev5) Patchwork
2017-12-06 19:55 ` ✓ Fi.CI.IGT: " Patchwork

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=20171207140356.GC10981@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=matthew.auld@intel.com \
    --cc=paulo.r.zanoni@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.