summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/sim_gk20a.h
diff options
context:
space:
mode:
authorAntony Clince Alex <aalex@nvidia.com>2018-04-25 11:56:21 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-05-09 21:25:45 -0400
commit50d1b0c72bfa5bf662c04db85e39c04ca3abfd67 (patch)
tree85d12588affcfcd23a3794257f965542aadea6b1 /drivers/gpu/nvgpu/gk20a/sim_gk20a.h
parentb144935644f76328aa9ec2592655b4553ed28222 (diff)
gpu: nvgpu: os-agnostic segregation of sim/sim_pci
segregated os-agnostic function from linux/sim.c and linux/sim_pci.c to sim.c and sim_pci.c, while retaining os-specific functions. renamed all gk20a_* api's to nvgpu_*. renamed hw_sim_gk20a.h to nvgpu/hw_sim.h moved hw_sim_pci.h to nvgpu/hw_sim_pci.h JIRA VQRM-2368 Change-Id: I040a6b12b19111a0b99280245808ea2b0f344cdd Signed-off-by: Antony Clince Alex <aalex@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1702425 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/sim_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/sim_gk20a.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/sim_gk20a.h b/drivers/gpu/nvgpu/gk20a/sim_gk20a.h
index fb64d959..e74d33d5 100644
--- a/drivers/gpu/nvgpu/gk20a/sim_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/sim_gk20a.h
@@ -28,7 +28,7 @@
28 28
29struct gk20a; 29struct gk20a;
30 30
31struct sim_gk20a { 31struct sim_nvgpu {
32 struct gk20a *g; 32 struct gk20a *g;
33 u32 send_ring_put; 33 u32 send_ring_put;
34 u32 recv_ring_get; 34 u32 recv_ring_get;
@@ -37,7 +37,7 @@ struct sim_gk20a {
37 struct nvgpu_mem send_bfr; 37 struct nvgpu_mem send_bfr;
38 struct nvgpu_mem recv_bfr; 38 struct nvgpu_mem recv_bfr;
39 struct nvgpu_mem msg_bfr; 39 struct nvgpu_mem msg_bfr;
40 void (*remove_support)(struct sim_gk20a *); 40 void (*remove_support)(struct gk20a *);
41 int (*esc_readl)( 41 int (*esc_readl)(
42 struct gk20a *g, char *path, u32 index, u32 *data); 42 struct gk20a *g, char *path, u32 index, u32 *data);
43}; 43};