summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-12-28 17:08:25 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2018-01-02 16:53:05 -0500
commit14fa8207e2f7feb36f8fa284b94859e05136eb0f (patch)
treebe05914b21122b80b56f2dc8f0f1799321ca1fc1 /drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
parent4f67a794ddbb9e5c1ce66461fabdf3f27708945a (diff)
gpu: nvgpu: Remove TSG required flag
Remove nvgpu internal flag indicating that TSGs are required. We now require TSGs always. This also fixes a regression where CE channels were back to using bare channels on gp106. Bug 1842197 Change-Id: Id359e5a455fb324278636bb8994b583936490ffd Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1628481 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Deepak Nibade <dnibade@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/ce2_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/ce2_gk20a.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c b/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
index 99c518b5..5e2fc6b3 100644
--- a/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/ce2_gk20a.c
@@ -456,14 +456,12 @@ u32 gk20a_ce_create_context(struct gk20a *g,
456 456
457 ce_ctx->vm = g->mm.ce.vm; 457 ce_ctx->vm = g->mm.ce.vm;
458 458
459 if (nvgpu_is_enabled(g, NVGPU_MM_CE_TSG_REQUIRED)) { 459 /* allocate a tsg if needed */
460 /* allocate a tsg if needed */ 460 ce_ctx->tsg = gk20a_tsg_open(g);
461 ce_ctx->tsg = gk20a_tsg_open(g);
462 461
463 if (!ce_ctx->tsg) { 462 if (!ce_ctx->tsg) {
464 nvgpu_err(g, "ce: gk20a tsg not available"); 463 nvgpu_err(g, "ce: gk20a tsg not available");
465 goto end; 464 goto end;
466 }
467 } 465 }
468 466
469 /* always kernel client needs privileged channel */ 467 /* always kernel client needs privileged channel */
@@ -481,12 +479,10 @@ u32 gk20a_ce_create_context(struct gk20a *g,
481 goto end; 479 goto end;
482 } 480 }
483 481
484 if (nvgpu_is_enabled(g, NVGPU_MM_CE_TSG_REQUIRED)) { 482 err = gk20a_tsg_bind_channel(ce_ctx->tsg, ce_ctx->ch);
485 err = gk20a_tsg_bind_channel(ce_ctx->tsg, ce_ctx->ch); 483 if (err) {
486 if (err) { 484 nvgpu_err(g, "ce: unable to bind to tsg");
487 nvgpu_err(g, "ce: unable to bind to tsg"); 485 goto end;
488 goto end;
489 }
490 } 486 }
491 487
492 /* allocate gpfifo (1024 should be more than enough) */ 488 /* allocate gpfifo (1024 should be more than enough) */