summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gk20a.h
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-07-27 15:58:03 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-08-04 12:23:56 -0400
commitb8efd9d04537d6129e2ce8b067417e46b0e7436f (patch)
tree1a40179a893e10c0fdcdd56797599bcdf6b55206 /drivers/gpu/nvgpu/gk20a/gk20a.h
parentc16797e35c2926bf34a61d5d8f37d5675ec23b1b (diff)
gpu: nvgpu: Make LTC disabling common code
Refactor the sync_debugfs LTC HAL op so that the logic to enable or disable LTC goes to common code nvgpu_ltc_sync_enabled() and the LTC HAL set_enabled only performs the hardware register access. Create a new common function nvgpu_init_ltc_support() to initialize the LTC software variable, and move hardware initialization of LTC to be called from it. JIRA NVGPU-62 Change-Id: Ib1cf4f5b83ca3dac08407464ed56a732e0a33923 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1528262 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.h b/drivers/gpu/nvgpu/gk20a/gk20a.h
index 8d9318b2..f7b714f2 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.h
@@ -144,9 +144,7 @@ struct gpu_ops {
144 struct zbc_entry *s_val, 144 struct zbc_entry *s_val,
145 u32 index); 145 u32 index);
146 void (*init_cbc)(struct gk20a *g, struct gr_gk20a *gr); 146 void (*init_cbc)(struct gk20a *g, struct gr_gk20a *gr);
147#ifdef CONFIG_DEBUG_FS 147 void (*set_enabled)(struct gk20a *g, bool enabled);
148 void (*sync_debugfs)(struct gk20a *g);
149#endif
150 void (*init_fs_state)(struct gk20a *g); 148 void (*init_fs_state)(struct gk20a *g);
151 void (*isr)(struct gk20a *g); 149 void (*isr)(struct gk20a *g);
152 u32 (*cbc_fix_config)(struct gk20a *g, int base); 150 u32 (*cbc_fix_config)(struct gk20a *g, int base);
@@ -1147,8 +1145,9 @@ struct gk20a {
1147 1145
1148 u32 emc3d_ratio; 1146 u32 emc3d_ratio;
1149 1147
1148 struct nvgpu_spinlock ltc_enabled_lock;
1149
1150#ifdef CONFIG_DEBUG_FS 1150#ifdef CONFIG_DEBUG_FS
1151 struct nvgpu_spinlock debugfs_lock;
1152 struct dentry *debugfs_ltc_enabled; 1151 struct dentry *debugfs_ltc_enabled;
1153 struct dentry *debugfs_timeouts_enabled; 1152 struct dentry *debugfs_timeouts_enabled;
1154 struct dentry *debugfs_gr_idle_timeout_default; 1153 struct dentry *debugfs_gr_idle_timeout_default;