summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
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
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')
-rw-r--r--drivers/gpu/nvgpu/gv11b/fb_gv11b.c25
-rw-r--r--drivers/gpu/nvgpu/gv11b/fb_gv11b.h11
-rw-r--r--drivers/gpu/nvgpu/gv11b/hal_gv11b.c25
3 files changed, 39 insertions, 22 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/fb_gv11b.c b/drivers/gpu/nvgpu/gv11b/fb_gv11b.c
index 35227576..384dfb20 100644
--- a/drivers/gpu/nvgpu/gv11b/fb_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/fb_gv11b.c
@@ -75,7 +75,7 @@ static void gv11b_init_nvlink_soc_credits(struct gk20a *g)
75 75
76} 76}
77 77
78static void gv11b_fb_init_fs_state(struct gk20a *g) 78void gv11b_fb_init_fs_state(struct gk20a *g)
79{ 79{
80 nvgpu_log(g, gpu_dbg_fn, "initialize gv11b fb"); 80 nvgpu_log(g, gpu_dbg_fn, "initialize gv11b fb");
81 81
@@ -87,7 +87,7 @@ static void gv11b_fb_init_fs_state(struct gk20a *g)
87 gk20a_readl(g, fb_mmu_num_active_ltcs_r()))); 87 gk20a_readl(g, fb_mmu_num_active_ltcs_r())));
88} 88}
89 89
90static void gv11b_fb_init_cbc(struct gk20a *g, struct gr_gk20a *gr) 90void gv11b_fb_init_cbc(struct gk20a *g, struct gr_gk20a *gr)
91{ 91{
92 u32 max_size = gr->max_comptag_mem; 92 u32 max_size = gr->max_comptag_mem;
93 /* one tag line covers 64KB */ 93 /* one tag line covers 64KB */
@@ -137,7 +137,7 @@ static void gv11b_fb_init_cbc(struct gk20a *g, struct gr_gk20a *gr)
137 137
138} 138}
139 139
140static void gv11b_fb_reset(struct gk20a *g) 140void gv11b_fb_reset(struct gk20a *g)
141{ 141{
142 u32 val; 142 u32 val;
143 143
@@ -251,7 +251,7 @@ static const char *const gpc_client_descs_gv11b[] = {
251 "t1 36", "t1 37", "t1 38", "t1 39", 251 "t1 36", "t1 37", "t1 38", "t1 39",
252}; 252};
253 253
254static noinline_for_stack void gv11b_init_uncompressed_kind_map(void) 254noinline_for_stack void gv11b_init_uncompressed_kind_map(void)
255{ 255{
256 int i; 256 int i;
257 257
@@ -672,7 +672,7 @@ static noinline_for_stack bool gv11b_kind_zbc(u8 k)
672 k <= gmmu_pte_kind_c128_ms8_ms16_2cr_v()); 672 k <= gmmu_pte_kind_c128_ms8_ms16_2cr_v());
673} 673}
674 674
675static void gv11b_init_kind_attr(void) 675void gv11b_init_kind_attr(void)
676{ 676{
677 u16 k; 677 u16 k;
678 678
@@ -1815,7 +1815,7 @@ static void gv11b_fb_handle_mmu_fault(struct gk20a *g, u32 niso_intr)
1815 fb_mmu_fault_status_valid_clear_f()); 1815 fb_mmu_fault_status_valid_clear_f());
1816} 1816}
1817 1817
1818static void gv11b_fb_hub_isr(struct gk20a *g) 1818void gv11b_fb_hub_isr(struct gk20a *g)
1819{ 1819{
1820 u32 status, niso_intr; 1820 u32 status, niso_intr;
1821 1821
@@ -1967,16 +1967,3 @@ static int gv11b_fb_fix_page_fault(struct gk20a *g,
1967 pte[1], pte[0]); 1967 pte[1], pte[0]);
1968 return err; 1968 return err;
1969} 1969}
1970
1971void gv11b_init_fb(struct gpu_ops *gops)
1972{
1973 gp10b_init_fb(gops);
1974 gops->fb.hub_isr = gv11b_fb_hub_isr;
1975 gops->fb.reset = gv11b_fb_reset;
1976 gops->fb.init_fs_state = gv11b_fb_init_fs_state;
1977 gops->fb.init_cbc = gv11b_fb_init_cbc;
1978
1979 gv11b_init_uncompressed_kind_map();
1980 gv11b_init_kind_attr();
1981
1982}
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
diff --git a/drivers/gpu/nvgpu/gv11b/hal_gv11b.c b/drivers/gpu/nvgpu/gv11b/hal_gv11b.c
index 282aa228..9f6c67c1 100644
--- a/drivers/gpu/nvgpu/gv11b/hal_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/hal_gv11b.c
@@ -29,9 +29,11 @@
29#include "gk20a/bus_gk20a.h" 29#include "gk20a/bus_gk20a.h"
30#include "gk20a/flcn_gk20a.h" 30#include "gk20a/flcn_gk20a.h"
31#include "gk20a/regops_gk20a.h" 31#include "gk20a/regops_gk20a.h"
32#include "gk20a/fb_gk20a.h"
32 33
33#include "gm20b/ltc_gm20b.h" 34#include "gm20b/ltc_gm20b.h"
34#include "gm20b/gr_gm20b.h" 35#include "gm20b/gr_gm20b.h"
36#include "gm20b/fb_gm20b.h"
35#include "gm20b/fifo_gm20b.h" 37#include "gm20b/fifo_gm20b.h"
36 38
37#include "gp10b/ltc_gp10b.h" 39#include "gp10b/ltc_gp10b.h"
@@ -41,6 +43,7 @@
41#include "gp10b/priv_ring_gp10b.h" 43#include "gp10b/priv_ring_gp10b.h"
42#include "gp10b/fifo_gp10b.h" 44#include "gp10b/fifo_gp10b.h"
43#include "gp10b/fecs_trace_gp10b.h" 45#include "gp10b/fecs_trace_gp10b.h"
46#include "gp10b/fb_gp10b.h"
44 47
45#include "hal_gv11b.h" 48#include "hal_gv11b.h"
46#include "gr_gv11b.h" 49#include "gr_gv11b.h"
@@ -175,6 +178,23 @@ static const struct gpu_ops gv11b_ops = {
175 .isr_nonstall = gp10b_ce_nonstall_isr, 178 .isr_nonstall = gp10b_ce_nonstall_isr,
176 .get_num_pce = gv11b_ce_get_num_pce, 179 .get_num_pce = gv11b_ce_get_num_pce,
177 }, 180 },
181 .fb = {
182 .reset = gv11b_fb_reset,
183 .init_hw = gk20a_fb_init_hw,
184 .init_fs_state = gv11b_fb_init_fs_state,
185 .init_cbc = gv11b_fb_init_cbc,
186 .set_mmu_page_size = gm20b_fb_set_mmu_page_size,
187 .set_use_full_comp_tag_line =
188 gm20b_fb_set_use_full_comp_tag_line,
189 .compression_page_size = gp10b_fb_compression_page_size,
190 .compressible_page_size = gp10b_fb_compressible_page_size,
191 .vpr_info_fetch = gm20b_fb_vpr_info_fetch,
192 .dump_vpr_wpr_info = gm20b_fb_dump_vpr_wpr_info,
193 .is_debug_mode_enabled = gm20b_fb_debug_mode_enabled,
194 .set_debug_mode = gm20b_fb_set_debug_mode,
195 .tlb_invalidate = gk20a_fb_tlb_invalidate,
196 .hub_isr = gv11b_fb_hub_isr,
197 },
178 .clock_gating = { 198 .clock_gating = {
179 .slcg_bus_load_gating_prod = 199 .slcg_bus_load_gating_prod =
180 gv11b_slcg_bus_load_gating_prod, 200 gv11b_slcg_bus_load_gating_prod,
@@ -405,6 +425,7 @@ int gv11b_init_hal(struct gk20a *g)
405 425
406 gops->ltc = gv11b_ops.ltc; 426 gops->ltc = gv11b_ops.ltc;
407 gops->ce2 = gv11b_ops.ce2; 427 gops->ce2 = gv11b_ops.ce2;
428 gops->fb = gv11b_ops.fb;
408 gops->clock_gating = gv11b_ops.clock_gating; 429 gops->clock_gating = gv11b_ops.clock_gating;
409 gops->fifo = gv11b_ops.fifo; 430 gops->fifo = gv11b_ops.fifo;
410 gops->gr_ctx = gv11b_ops.gr_ctx; 431 gops->gr_ctx = gv11b_ops.gr_ctx;
@@ -432,10 +453,12 @@ int gv11b_init_hal(struct gk20a *g)
432 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false); 453 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false);
433 454
434 gv11b_init_gr(g); 455 gv11b_init_gr(g);
435 gv11b_init_fb(gops);
436 gv11b_init_mm(gops); 456 gv11b_init_mm(gops);
437 gv11b_init_pmu_ops(g); 457 gv11b_init_pmu_ops(g);
438 458
459 gv11b_init_uncompressed_kind_map();
460 gv11b_init_kind_attr();
461
439 g->name = "gv11b"; 462 g->name = "gv11b";
440 463
441 c->twod_class = FERMI_TWOD_A; 464 c->twod_class = FERMI_TWOD_A;