summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-05-01 14:12:12 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-05-03 14:05:18 -0400
commit5e33f58a5ee971cd846f9f2a41ed652a5f2b1523 (patch)
tree38a616a2b4ff4d80f6d196e417e0135bff9fc0f9 /drivers/gpu/nvgpu/gk20a/channel_gk20a.c
parent162108d0706bb45cdff07c31ab1360935b396f67 (diff)
gpu: nvgpu: Move ch_wdt_timeout to gk20a
Copy watchdog timeout from platform structure to gk20a and use it from gk20a. JIRA NVGPU-16 Change-Id: Iab70253a7f0e1d28f2e3209285b3f4c476ce9279 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1473705 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_gk20a.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
index eafa17fb..8014fd8c 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
@@ -1377,8 +1377,7 @@ bool gk20a_channel_update_and_check_timeout(struct channel_gk20a *ch,
1377 1377
1378static u32 gk20a_get_channel_watchdog_timeout(struct channel_gk20a *ch) 1378static u32 gk20a_get_channel_watchdog_timeout(struct channel_gk20a *ch)
1379{ 1379{
1380 struct gk20a_platform *platform = gk20a_get_platform(ch->g->dev); 1380 return ch->g->ch_wdt_timeout_ms;
1381 return platform->ch_wdt_timeout_ms;
1382} 1381}
1383 1382
1384static u32 get_gp_free_count(struct channel_gk20a *c) 1383static u32 get_gp_free_count(struct channel_gk20a *c)
@@ -1490,9 +1489,7 @@ static void __gk20a_channel_timeout_start(struct channel_gk20a *ch)
1490 */ 1489 */
1491static void gk20a_channel_timeout_start(struct channel_gk20a *ch) 1490static void gk20a_channel_timeout_start(struct channel_gk20a *ch)
1492{ 1491{
1493 struct gk20a_platform *platform = gk20a_get_platform(ch->g->dev); 1492 if (!ch->g->timeouts_enabled || !gk20a_get_channel_watchdog_timeout(ch))
1494
1495 if (!ch->g->timeouts_enabled || !platform->ch_wdt_timeout_ms)
1496 return; 1493 return;
1497 1494
1498 if (!ch->wdt_enabled) 1495 if (!ch->wdt_enabled)