summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv100/mm_gv100.h
diff options
context:
space:
mode:
authorSunny He <suhe@nvidia.com>2017-07-26 17:23:01 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-08-14 18:55:25 -0400
commit8ab6445df5b24c200ac4e346684119a85008e0e3 (patch)
tree557c0e126488532942c784bdfcdfe1e9bc6d2688 /drivers/gpu/nvgpu/gv100/mm_gv100.h
parent4bb0896912440d126ae47da350b448f37dabc63d (diff)
gpu: nvgpu: Reorg mm HAL initialization
Reorganize HAL initialization to remove inheritance and construct the gpu_ops struct at compile time. This patch only covers the mm sub-module of the gpu_ops struct. Perform HAL function assignments in hal_gxxxx.c through the population of a chip-specific copy of gpu_ops. Jira NVGPU-74 Change-Id: I5fd295c6473d5b4a6178c0c6be8fcf8f4c33f2e3 Signed-off-by: Sunny He <suhe@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1537754 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv100/mm_gv100.h')
-rw-r--r--drivers/gpu/nvgpu/gv100/mm_gv100.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gv100/mm_gv100.h b/drivers/gpu/nvgpu/gv100/mm_gv100.h
index ff1bc3df..eeab7d56 100644
--- a/drivers/gpu/nvgpu/gv100/mm_gv100.h
+++ b/drivers/gpu/nvgpu/gv100/mm_gv100.h
@@ -16,8 +16,8 @@
16#ifndef MM_GV100_H 16#ifndef MM_GV100_H
17#define MM_GV100_H 17#define MM_GV100_H
18 18
19struct gpu_ops; 19struct gk20a;
20 20
21void gv100_init_mm(struct gpu_ops *gops); 21size_t gv100_mm_get_vidmem_size(struct gk20a *g);
22 22
23#endif 23#endif