drm/amdgpu: add gang submit frontend v6
authorChristian König <christian.koenig@amd.com>
Wed, 2 Mar 2022 15:39:34 +0000 (16:39 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 20 Sep 2022 16:40:46 +0000 (12:40 -0400)
commit4624459c84d71e0d5f94ea6a7b2c4eec4f1d122b
tree20b8bc7209e0a0efe1f54caf1cb6641a4cfb93e9
parent68ce8b242242651eb3cb4ff29b79c44d02f752c9
drm/amdgpu: add gang submit frontend v6

Allows submitting jobs as gang which needs to run on multiple engines at the
same time.

All members of the gang get the same implicit, explicit and VM dependencies. So
no gang member will start running until everything else is ready.

The last job is considered the gang leader (usually a submission to the GFX
ring) and used for signaling output dependencies.

Each job is remembered individually as user of a buffer object, so there is no
joining of work at the end.

v2: rebase and fix review comments from Andrey and Yogesh
v3: use READ instead of BOOKKEEP for now because of VM unmaps, set gang
    leader only when necessary
v4: fix order of pushing jobs and adding fences found by Trigger.
v5: fix job index calculation and adding IBs to jobs
v6: fix typo found by Alex

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
drivers/gpu/drm/amd/amdgpu/amdgpu_cs.h
drivers/gpu/drm/amd/amdgpu/amdgpu_job.c
drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h