diff options
author | Christian König <christian.koenig@amd.com> | 2016-05-06 08:52:57 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-05-11 13:30:30 -0400 |
commit | 9f8fb5a2b339ba83493991ca8f1173a939a696d3 (patch) | |
tree | 7a2e13996140d08ee2df803442e43c7e0dcbc529 /drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | |
parent | 914f9e18c859d9413058c3632aba54d348a6527e (diff) |
drm/amdgpu: move preamble IB handling into common code
This fixes the handling which was completely broken when you
ad more than one preamble IB.
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>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c index f670519efbbc..d6f85923edcd 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | |||
@@ -125,6 +125,7 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs, | |||
125 | struct fence *hwf; | 125 | struct fence *hwf; |
126 | struct amdgpu_vm *vm = NULL; | 126 | struct amdgpu_vm *vm = NULL; |
127 | unsigned i, patch_offset = ~0; | 127 | unsigned i, patch_offset = ~0; |
128 | bool skip_preamble; | ||
128 | 129 | ||
129 | int r = 0; | 130 | int r = 0; |
130 | 131 | ||
@@ -172,9 +173,14 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs, | |||
172 | /* always set cond_exec_polling to CONTINUE */ | 173 | /* always set cond_exec_polling to CONTINUE */ |
173 | *ring->cond_exe_cpu_addr = 1; | 174 | *ring->cond_exe_cpu_addr = 1; |
174 | 175 | ||
176 | skip_preamble = ring->current_ctx == ctx; | ||
175 | old_ctx = ring->current_ctx; | 177 | old_ctx = ring->current_ctx; |
176 | for (i = 0; i < num_ibs; ++i) { | 178 | for (i = 0; i < num_ibs; ++i) { |
177 | ib = &ibs[i]; | 179 | |
180 | /* drop preamble IBs if we don't have a context switch */ | ||
181 | if ((ib->flags & AMDGPU_IB_FLAG_PREAMBLE) && skip_preamble) | ||
182 | continue; | ||
183 | |||
178 | amdgpu_ring_emit_ib(ring, ib); | 184 | amdgpu_ring_emit_ib(ring, ib); |
179 | ring->current_ctx = ctx; | 185 | ring->current_ctx = ctx; |
180 | } | 186 | } |