summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_gk20a.h
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2015-12-10 03:58:32 -0500
committerTerje Bergstrom <tbergstrom@nvidia.com>2015-12-10 11:39:42 -0500
commitc4ac1ed369cb5737de10924908d97be9f11ec875 (patch)
tree294d2bc504f16cad8653413d63a6b47c6753adaa /drivers/gpu/nvgpu/gk20a/channel_gk20a.h
parent54f76d1ac6cf0ace524e073076578c891d1b3f79 (diff)
gpu: nvgpu: preempt before adjusting fences
Current sequence in gk20a_disable_channel() is - disable channel in gk20a_channel_abort() - adjust pending fence in gk20a_channel_abort() - preempt channel But this leads to scenarios where syncpoint has min > max value Hence to fix this, make sequence in gk20a_disable_channel() - disable channel in gk20a_channel_abort() - preempt channel in gk20a_channel_abort() - adjust pending fence in gk20a_channel_abort() If gk20a_channel_abort() is called from other API where preemption is not needed, then use channel_preempt flag and do not preempt channel in those cases Bug 1683059 Change-Id: I4d46d4294cf8597ae5f05f79dfe1b95c4187f2e3 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: http://git-master/r/921290 Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_gk20a.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_gk20a.h b/drivers/gpu/nvgpu/gk20a/channel_gk20a.h
index cb8ffa95..f62d2731 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/channel_gk20a.h
@@ -195,7 +195,7 @@ void gk20a_channel_close(struct channel_gk20a *ch);
195bool gk20a_channel_update_and_check_timeout(struct channel_gk20a *ch, 195bool gk20a_channel_update_and_check_timeout(struct channel_gk20a *ch,
196 u32 timeout_delta_ms); 196 u32 timeout_delta_ms);
197void gk20a_disable_channel(struct channel_gk20a *ch); 197void gk20a_disable_channel(struct channel_gk20a *ch);
198void gk20a_channel_abort(struct channel_gk20a *ch); 198void gk20a_channel_abort(struct channel_gk20a *ch, bool channel_preempt);
199int gk20a_channel_finish(struct channel_gk20a *ch, unsigned long timeout); 199int gk20a_channel_finish(struct channel_gk20a *ch, unsigned long timeout);
200void gk20a_set_error_notifier(struct channel_gk20a *ch, __u32 error); 200void gk20a_set_error_notifier(struct channel_gk20a *ch, __u32 error);
201void gk20a_channel_semaphore_wakeup(struct gk20a *g); 201void gk20a_channel_semaphore_wakeup(struct gk20a *g);