summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-11-08 14:31:05 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-04 18:53:56 -0500
commitc116522b10a253f68dab8bf89c34a8b9e1be51b9 (patch)
tree300c02e23d4dbf3d989e9bffd9ae77ea4fbf7d43 /drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
parent9e2f7d98d4cf2845d3dfea1653f3d6bedd4fb1e6 (diff)
gpu: nvgpu: Handle driver shutdown more gracefully
Handle possible asynchronous GPU driver shutdown more gracefully. This occurs when the GPU disappears from the PCI bus, for example, if it overheats or detects an over current event. Also add a preprocessor check to make sure that the gk20a_channel_cancel_pending_sema_waits() is always defined. In some builds CONFIG_SYNC is disabled but the gk20a_remove_support() code does not check for this. Bug 1816516 Bug 1807277 Change-Id: I932e312291c5c6a6ac5e13525ce8ca56a1be3652 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1250028 (cherry picked from commit 337810f8c478238a38d8553c1492622d5fa9aafa) Reviewed-on: http://git-master/r/1274476 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
index 063a5457..451b207b 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/channel_sync_gk20a.h
@@ -103,6 +103,13 @@ struct gk20a_channel_sync {
103void gk20a_channel_sync_destroy(struct gk20a_channel_sync *sync); 103void gk20a_channel_sync_destroy(struct gk20a_channel_sync *sync);
104struct gk20a_channel_sync *gk20a_channel_sync_create(struct channel_gk20a *c); 104struct gk20a_channel_sync *gk20a_channel_sync_create(struct channel_gk20a *c);
105bool gk20a_channel_sync_needs_sync_framework(struct channel_gk20a *c); 105bool gk20a_channel_sync_needs_sync_framework(struct channel_gk20a *c);
106
107#ifdef CONFIG_SYNC
106void gk20a_channel_cancel_pending_sema_waits(struct gk20a *g); 108void gk20a_channel_cancel_pending_sema_waits(struct gk20a *g);
109#else
110static inline void gk20a_channel_cancel_pending_sema_waits(struct gk20a *g)
111{
112}
113#endif
107 114
108#endif 115#endif