diff options
| author | Marek Olšák <[email protected]> | 2019-06-19 23:26:24 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2019-07-01 19:53:30 +0000 |
| commit | 9ed2c993d723129f85101e51b2ccc36ef5400a67 (patch) | |
| tree | 60ee4cc4432b0fd7ac9e267fd106b51569f5deea /drivers/gpu/drm/amd/amdgpu/amdgpu_gds.h | |
| parent | drm/amdgpu/gfx10: use reset default for PA_SC_FIFO_SIZE (diff) | |
| download | kernel-9ed2c993d723129f85101e51b2ccc36ef5400a67.tar.gz kernel-9ed2c993d723129f85101e51b2ccc36ef5400a67.zip | |
drm/amdgpu: fix transform feedback GDS hang on gfx10 (v2)
v2: update emit_ib_size
(though it's still wrong because it was wrong before)
Signed-off-by: Marek Olšák <[email protected]>
Acked-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gds.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gds.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gds.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_gds.h index dad2186f4ed5..df8a23554831 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gds.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gds.h @@ -31,7 +31,8 @@ struct amdgpu_gds { uint32_t gds_size; uint32_t gws_size; uint32_t oa_size; - uint32_t gds_compute_max_wave_id; + uint32_t gds_compute_max_wave_id; + uint32_t vgt_gs_max_wave_id; }; struct amdgpu_gds_reg_offset { |
