summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gk20a.h
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2016-09-08 15:13:39 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2016-10-18 15:24:25 -0400
commitcd452a6ed4cad388909b0372f04a0482609acb90 (patch)
treed1bcc16124454ca8d05192f17425d448cf61812e /drivers/gpu/nvgpu/gk20a/gk20a.h
parentc284516ead33708e135eeaa53672d835849f25fb (diff)
gpu: nvgpu: implement PCIe Gen2 frequency swap
Implement the ability to swap between different PCIe bus speeds. This code is called during init in case the GPU is not running at the max supported PCIe bus speed. JIRA DNVGPU-89 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1218178 (cherry picked from commit 8dcd3e10f46f524c9bac9fd5dae0f0a899123c23) Change-Id: I21f96110578a68d5c5e30ae21776cff69aefba5d Reviewed-on: http://git-master/r/1227922 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.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.h b/drivers/gpu/nvgpu/gk20a/gk20a.h
index d51fdea1..75b96f42 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.h
@@ -703,6 +703,14 @@ struct gpu_ops {
703 struct gk20a_cs_snapshot_client *client); 703 struct gk20a_cs_snapshot_client *client);
704 } css; 704 } css;
705#endif 705#endif
706 struct {
707 int (*sw_init)(struct device *dev);
708 int (*get_speed)(struct gk20a *g, u32 *xve_link_speed);
709 int (*set_speed)(struct gk20a *g, u32 xve_link_speed);
710 void (*available_speeds)(struct gk20a *g, u32 *speed_mask);
711 u32 (*xve_readl)(struct gk20a *g, u32 reg);
712 void (*xve_writel)(struct gk20a *g, u32 reg, u32 val);
713 } xve;
706}; 714};
707 715
708struct nvgpu_bios_ucode { 716struct nvgpu_bios_ucode {
@@ -818,7 +826,7 @@ struct gk20a {
818 struct dentry *debugfs_timeslice_medium_priority_us; 826 struct dentry *debugfs_timeslice_medium_priority_us;
819 struct dentry *debugfs_timeslice_high_priority_us; 827 struct dentry *debugfs_timeslice_high_priority_us;
820 struct dentry *debugfs_runlist_interleave; 828 struct dentry *debugfs_runlist_interleave;
821 829 struct dentry *debugfs_xve;
822#endif 830#endif
823 struct gk20a_ctxsw_ucode_info ctxsw_ucode_info; 831 struct gk20a_ctxsw_ucode_info ctxsw_ucode_info;
824 832
@@ -937,6 +945,10 @@ struct gk20a {
937 u16 pci_subsystem_vendor_id, pci_subsystem_device_id; 945 u16 pci_subsystem_vendor_id, pci_subsystem_device_id;
938 u16 pci_class; 946 u16 pci_class;
939 u8 pci_revision; 947 u8 pci_revision;
948
949 /* PCIe power states. */
950 bool xve_l0s;
951 bool xve_l1;
940}; 952};
941 953
942static inline unsigned long gk20a_get_gr_idle_timeout(struct gk20a *g) 954static inline unsigned long gk20a_get_gr_idle_timeout(struct gk20a *g)
@@ -1011,6 +1023,7 @@ enum gk20a_dbg_categories {
1011 gpu_dbg_sema = BIT(15), /* semaphore debugging */ 1023 gpu_dbg_sema = BIT(15), /* semaphore debugging */
1012 gpu_dbg_sema_v = BIT(16), /* verbose semaphore debugging */ 1024 gpu_dbg_sema_v = BIT(16), /* verbose semaphore debugging */
1013 gpu_dbg_pmu_pstate = BIT(17), /* p state controlled by pmu */ 1025 gpu_dbg_pmu_pstate = BIT(17), /* p state controlled by pmu */
1026 gpu_dbg_xv = BIT(18), /* XVE debugging */
1014 gpu_dbg_mem = BIT(31), /* memory accesses, very verbose */ 1027 gpu_dbg_mem = BIT(31), /* memory accesses, very verbose */
1015}; 1028};
1016 1029