[Intel-gfx] [PATCH 07/23] drm/i915: Switch to object allocations for page directories

Chris Wilson chris at chris-wilson.co.uk
Fri Jul 3 09:49:24 UTC 2020


Quoting Tvrtko Ursulin (2020-07-03 10:24:27)
> 
> On 03/07/2020 10:00, Chris Wilson wrote:
> > Quoting Tvrtko Ursulin (2020-07-03 09:44:52)
> >>
> >> On 02/07/2020 09:32, Chris Wilson wrote:
> >>> The GEM object is grossly overweight for the practicality of tracking
> >>> large numbers of individual pages, yet it is currently our only
> >>> abstraction for tracking DMA allocations. Since those allocations need
> >>> to be reserved upfront before an operation, and that we need to break
> >>> away from simple system memory, we need to ditch using plain struct page
> >>> wrappers.
> >>
> >> [Calling all page table experts...] :)
> >>
> >> So.. mostly 4k allocations via GEM objects? Sounds not ideal on first.
> 
> What is the relationship between object size and number of 4k objects 
> needed for page tables?

1 pt (4KiB dma + small struct) per 2MiB + misalignment
1 pd (4KiB dma + ~4KiB struct) per 1GiB + misalignment
1 pd per 512GiB + misalignment
1 pd per 256TiB + misalignment
[top level is preallocated]

etc.

> 
> >> Reminder on why we need to break away from simple system memory?
> > 
> > The page tables are stored in device memory, which at the moment are
> > plain pages with dma mappings.
> > 
> >> Need to
> >> have a list of GEM objects which can be locked in the ww locking phase?
> > 
> > Yes, since we will need to be able to reserve all the device memory we
> > need for execution.
> > 
> >> But how do you allocate these objects up front, when allocation needs to
> >> be under the ww lock in case evictions need to be triggered.
> > 
> > By preeallocating enough objects to cover the page directories during
> > the reservation phase. The previous patch moved the allocations from the
> > point-of-use to before we insert the vma. Having made it the onus of the
> > caller to provide the page directories allocations, we can then do it
> > early on during the memory reservations.
> 
> Okay I missed the importance of the previous patch.
> 
> But preallocations have to be able to trigger evictions. Is the 
> preallocating objects split then into creating objects and obtaining 
> backing store? I do not see this in this patch, alloc_pt_dma both 
> creates the object and pins the pages.

Sure. It can be broken into two calls easily, or rather after having
allocated objects suitable for the page tables, they can then all be
reserved en masse will the rest of the objects. I was guilty of still
thinking in terms of system memory.

Worth keeping in mind is that the GGTT should never need extra
allocations, which should keep a lot of the isolated object handling
easier. And some vm will have preallocated ranges (e.g. the
aliasing-ppgtt) so that we don't need to allocate more objects during
critical phases.

My goal is separate out the special cases for PIN_USER (i.e. execbuf)
where there are many, many objects and auxiliary allocations from the
special cases for the isolated PIN_GLOBAL, and from future special cases
for pageout; killing i915_vma_pin(PIN_USER).
-Chris


More information about the Intel-gfx mailing list