[igt-dev] [PATCH v3 1/3] lib/rendercopy: Add AUX page table support
Chris Wilson
chris at chris-wilson.co.uk
Wed Nov 6 16:14:36 UTC 2019
Quoting Imre Deak (2019-11-06 16:00:16)
> On Wed, Nov 06, 2019 at 11:11:40AM +0000, Chris Wilson wrote:
> > What's the coherency model for the pgt->bo? There's a lot of writes here
> > from the CPU how are you making sure they are visible to the GPU?
>
> My understanding: execbuf will do a clflush for the buf on non-LLC
> platforms, while on LLC platforms that's not needed; not sure if there
> will be any non-LLC platforms where the AUX pagetable will be needed.
No, we don't unless you tell us you modified it between batches. That
would be the case if you were using drm_intel_bo_map(true) everytime,
but again that will then stall the GPU between every batch -- which we
definitely do not want when testing [as it will hide every bug] :)
> On top of that the AUX GAM has its own caches - found that now in an HSD
> doc - which will be invalidated whenever GAM's top level table base
> pointer register is set from the context image, which happens whenver
> switching to the context.
But not for a lite-restore? So we have a problem when updating existing
entries between batches inside the same context? We put a big hammer at
the front of the request for TLB invalidation. If there's a flush we can
add, we need it there.
-Chris
More information about the igt-dev
mailing list