summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2016-08-26 13:09:24 -0400
committerDeepak Nibade <dnibade@nvidia.com>2016-12-27 04:56:19 -0500
commit5544272474d7b1e3103eed76fbaf91ba7a739345 (patch)
tree40684b92cc585c6792598737cb438fc882387b05 /drivers/gpu
parent49840c15efb36b3216357b93ba0477e53dbef3b6 (diff)
gpu: nvgpu: gp106: Skip LTCA initialization
Skip LTCA initialization on dGPU. Bug 1799537 Change-Id: Ieb4c72e2169dc6bee73306c9b1e6c80866167a1a Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1208714 (cherry picked from commit 9a8dc5fe96b29b8a67f8203f17126b0093721312) Reviewed-on: http://git-master/r/1219164 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/nvgpu/gp106/ltc_gp106.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp106/ltc_gp106.c b/drivers/gpu/nvgpu/gp106/ltc_gp106.c
index ef0e351d..dcd4fbad 100644
--- a/drivers/gpu/nvgpu/gp106/ltc_gp106.c
+++ b/drivers/gpu/nvgpu/gp106/ltc_gp106.c
@@ -14,6 +14,7 @@
14#include <linux/types.h> 14#include <linux/types.h>
15 15
16#include "gk20a/gk20a.h" 16#include "gk20a/gk20a.h"
17#include "gm20b/ltc_gm20b.h"
17#include "gp10b/ltc_gp10b.h" 18#include "gp10b/ltc_gp10b.h"
18 19
19void gp106_init_ltc(struct gpu_ops *gops) 20void gp106_init_ltc(struct gpu_ops *gops)
@@ -23,4 +24,5 @@ void gp106_init_ltc(struct gpu_ops *gops)
23 /* dGPU does not need the LTC hack */ 24 /* dGPU does not need the LTC hack */
24 gops->ltc.cbc_fix_config = NULL; 25 gops->ltc.cbc_fix_config = NULL;
25 gops->ltc.init_cbc = NULL; 26 gops->ltc.init_cbc = NULL;
27 gops->ltc.init_fs_state = gm20b_ltc_init_fs_state;
26} 28}