summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/fb_gv11b.h
diff options
context:
space:
mode:
authorSunny He <suhe@nvidia.com>2017-07-31 17:40:46 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-08-11 17:16:53 -0400
commitda8e67f042760d54f3d6b5f84abbd9981d9fcd54 (patch)
treefc8cffa187e14649b474a73ff23e3bb801319e61 /drivers/gpu/nvgpu/gv11b/fb_gv11b.h
parent2660d1d881d1536c1b723d9737ae9a04321d69f3 (diff)
gpu: nvgpu: gv11b: Reorg fb HAL initialization
Reorganize HAL initialization to remove inheritance and construct the gpu_ops struct at compile time. This patch only covers the fb 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: I896d90e0dcffc0e133e6902ff9c3eab39c53080d Signed-off-by: Sunny He <suhe@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1533354 Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com> Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/fb_gv11b.h')
-rw-r--r--drivers/gpu/nvgpu/gv11b/fb_gv11b.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/fb_gv11b.h b/drivers/gpu/nvgpu/gv11b/fb_gv11b.h
index 39cdfb77..3e2dd828 100644
--- a/drivers/gpu/nvgpu/gv11b/fb_gv11b.h
+++ b/drivers/gpu/nvgpu/gv11b/fb_gv11b.h
@@ -42,9 +42,13 @@
42#define FAULT_TYPE_OTHER_AND_NONREPLAY 0 42#define FAULT_TYPE_OTHER_AND_NONREPLAY 0
43#define FAULT_TYPE_REPLAY 1 43#define FAULT_TYPE_REPLAY 1
44 44
45struct gpu_ops; 45struct gk20a;
46
47void gv11b_fb_init_fs_state(struct gk20a *g);
48void gv11b_fb_init_cbc(struct gk20a *g, struct gr_gk20a *gr);
49void gv11b_fb_reset(struct gk20a *g);
50void gv11b_fb_hub_isr(struct gk20a *g);
46 51
47void gv11b_init_fb(struct gpu_ops *gops);
48u32 gv11b_fb_is_fault_buf_enabled(struct gk20a *g, 52u32 gv11b_fb_is_fault_buf_enabled(struct gk20a *g,
49 unsigned int index); 53 unsigned int index);
50void gv11b_fb_fault_buf_set_state_hw(struct gk20a *g, 54void gv11b_fb_fault_buf_set_state_hw(struct gk20a *g,
@@ -56,4 +60,7 @@ void gv11b_fb_disable_hub_intr(struct gk20a *g,
56 unsigned int index, unsigned int intr_type); 60 unsigned int index, unsigned int intr_type);
57void gv11b_fb_fault_buf_configure_hw(struct gk20a *g, unsigned int index); 61void gv11b_fb_fault_buf_configure_hw(struct gk20a *g, unsigned int index);
58bool gv11b_fb_mmu_fault_pending(struct gk20a *g); 62bool gv11b_fb_mmu_fault_pending(struct gk20a *g);
63
64noinline_for_stack void gv11b_init_uncompressed_kind_map(void);
65void gv11b_init_kind_attr(void);
59#endif 66#endif