Re: [PATCH 0/5] drm/vmwgfx: Support module unload and hotunplug

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Am 11.10.21 um 14:04 schrieb Thomas Hellström:
[SNIP]
Hmm, this looks very odd, because I remember reminding Christian as
late as this spring that both vmwgfx and i915 sets up GPU bindings
to
system buffers, as part of the review of a patch series pushing a
couple of changes to the swapout path that apparently had missed
this.
Well that was the trigger to look more deeply into this and as far as
I
can tell TTM was never capable of doing this correctly.
So apart from the teardown, which appear to be an oversight when the
system manager was introduced where do whe fail currently with this?

During validation for example. Moving BOs into the system domain means that they are potentially swapped out.

In other words when drivers are accessing BOs in the system domain they always need to take care of TTM_TT_FLAG_SWAPPED manually.

This more sounds like there have been changes to TTM happening not
taking into account or knowing that TTM was designed for system
buffers
bound to GPU and that there were drivers actually doing that.

And there is still older code around clearly implying system
buffers
can be fenced, like ttm_bo_swapout(), and that there is dma fences
signaling completion on work that has never touched the GPU, not to
mention async eviction where a bo may be evicted to system but has
tons
of outstanding fenced work in the pipe.

So if there has been a design change WRT this I believe it should
have
been brought up on dri-devel to have it properly discussed so
affected
drivers could agree on the different options.

Perhaps Christian can enlighten us here. Christian?
There are multiple occasions where we assume that BOs in the system
domain are not accessible by the GPU, swapout and teardown are just
two
examples.

At swapout we *do* wait for idle after moving to system, It's relying
on the swap_notifier to unbind. That's why the swap_notifier is there,
so swapout is working perfectly fine.

You can of course define that BOs are not swapable or call ttm_bo_validate() with a system domain placement and then make sure they are swapped in manually, but that is extremely hacky and bad design.

As far as I know that's what i915 does, but that doesn't mean that this is a good idea.

Additional to that I've already noted that I think this swap_notify callback is not a good idea either. We should rather have a separate TTM_PL_SWAPPED domain for this so that drivers are cleanly informed about the state change.

When Dave reorganized the buffer move code we also had to insert
waits
for moves to complete for anything which goes into the SYSTEM domain.

Apart from that it certainly makes sense to have that restriction.
Memory which is accessed by the hardware and not directly evictable
must
be accounted differently.
Could you elaborate a bit on this? From a swapout point of view, it
looks to me like SYSTEM is treated just like TT by TTM? Or is the
accounting you mention something amdgpu-specific and more related to
the amd GEM domains than to the TTM memory types?

No, that is something the Android people came up with to improve the shrinker behavior.

Note that TTM was never designed to deal with GPU binding, but to
provide a set of placements or memory-types where the memory can be
mapped by the CPU and bound by the GPU. TT was a special case solely
because of the mappable apertures. A bind mechanism had to be provided
for TTM to be able to map TT buffers, and most drivers used that bound
mechanism for convenience.

Well that's certainly not correct. Before Dave moved this back into the drivers TTM had bind/unbind callbacks for the translation tables.

It's just that vmwgfx was an exception and all other drivers where using that correctly. This vmwgfx exception is now what Zack is trying to fix here.

So now if this is going to be changed, I think we need to understand
why and think this through really thoroughly:

* What is not working and why (the teardown seems to be a trivial fix).
* How did we end up here,
* What's the cost of fixing that up compared to refactoring the drivers
that rely on bindable system memory,
* What's the justification of a system type at all if it's not GPU-
bindable, meaning it's basically equivalent to swapped-out shmem with
the exception that it's mappable?

Well, once more that isn't correct. This is nothing new and as far as I know that behavior existing as long as TTM existed.

It's just that vmwgfx was a little bit special and broken in some aspects.

It's probably a non-trivial effort to refactor i915 to not use system
for gpu-binding and in that case I think we need some solid
justification why we need to do that rather than fix up what's not
working with TTM + bindable system:

So could you please elaborate (assuming that the teardown is fixable)
on the other parts that don't work.

Well you can of course design i915 however you like, you just need to be aware that when it breaks you need to keep the pieces.

Regards,
Christian.


Thanks

/Thomas


Regards,
Christian.

/Thomas


z





[Index of Archives]     [Linux DRI Users]     [Linux Intel Graphics]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [XFree86]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux