summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b
diff options
context:
space:
mode:
authorSunny He <suhe@nvidia.com>2017-07-26 13:47:16 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-07-27 19:34:43 -0400
commit6431ec360bf7b7baf6dd687b1525c40114ede189 (patch)
treef899b3e215bf87cc411cefaf54c9b6011e487eb4 /drivers/gpu/nvgpu/gm20b
parent9907b97985c47003a179c4357274b737cc0699ee (diff)
gpu: nvgpu: Reorg gr_ctx HAL initialization
Reorganize HAL initialization to remove inheritance and construct the gpu_ops struct at compile time. This patch only covers the gr_ctx 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: I783d8e8919d8694ad2aa0d285e4c5a2b62580f48 Signed-off-by: Sunny He <suhe@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1527417 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b')
-rw-r--r--drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.c12
-rw-r--r--drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.h5
-rw-r--r--drivers/gpu/nvgpu/gm20b/hal_gm20b.c7
3 files changed, 12 insertions, 12 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.c b/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.c
index e22acbe3..555c1409 100644
--- a/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.c
@@ -3,7 +3,7 @@
3 * 3 *
4 * GM20B Graphics Context 4 * GM20B Graphics Context
5 * 5 *
6 * Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved. 6 * Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify it 8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License, 9 * under the terms and conditions of the GNU General Public License,
@@ -22,7 +22,7 @@
22#include "gk20a/gk20a.h" 22#include "gk20a/gk20a.h"
23#include "gr_ctx_gm20b.h" 23#include "gr_ctx_gm20b.h"
24 24
25static int gr_gm20b_get_netlist_name(struct gk20a *g, int index, char *name) 25int gr_gm20b_get_netlist_name(struct gk20a *g, int index, char *name)
26{ 26{
27 switch (index) { 27 switch (index) {
28#ifdef GM20B_NETLIST_IMAGE_FW_NAME 28#ifdef GM20B_NETLIST_IMAGE_FW_NAME
@@ -57,7 +57,7 @@ static int gr_gm20b_get_netlist_name(struct gk20a *g, int index, char *name)
57 return -1; 57 return -1;
58} 58}
59 59
60static bool gr_gm20b_is_firmware_defined(void) 60bool gr_gm20b_is_firmware_defined(void)
61{ 61{
62#ifdef GM20B_NETLIST_IMAGE_FW_NAME 62#ifdef GM20B_NETLIST_IMAGE_FW_NAME
63 return true; 63 return true;
@@ -65,9 +65,3 @@ static bool gr_gm20b_is_firmware_defined(void)
65 return false; 65 return false;
66#endif 66#endif
67} 67}
68
69void gm20b_init_gr_ctx(struct gpu_ops *gops) {
70 gops->gr_ctx.get_netlist_name = gr_gm20b_get_netlist_name;
71 gops->gr_ctx.is_fw_defined = gr_gm20b_is_firmware_defined;
72 gops->gr_ctx.use_dma_for_fw_bootstrap = true;
73}
diff --git a/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.h b/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.h
index 9172e151..414634da 100644
--- a/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.h
+++ b/drivers/gpu/nvgpu/gm20b/gr_ctx_gm20b.h
@@ -1,7 +1,7 @@
1/* 1/*
2 * GM20B Graphics Context 2 * GM20B Graphics Context
3 * 3 *
4 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. 4 * Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify it 6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License, 7 * under the terms and conditions of the GNU General Public License,
@@ -24,6 +24,7 @@
24/*#undef GM20B_NETLIST_IMAGE_FW_NAME*/ 24/*#undef GM20B_NETLIST_IMAGE_FW_NAME*/
25#define GM20B_NETLIST_IMAGE_FW_NAME GK20A_NETLIST_IMAGE_B 25#define GM20B_NETLIST_IMAGE_FW_NAME GK20A_NETLIST_IMAGE_B
26 26
27void gm20b_init_gr_ctx(struct gpu_ops *gops); 27int gr_gm20b_get_netlist_name(struct gk20a *g, int index, char *name);
28bool gr_gm20b_is_firmware_defined(void);
28 29
29#endif /*__GR_CTX_GM20B_H__*/ 30#endif /*__GR_CTX_GM20B_H__*/
diff --git a/drivers/gpu/nvgpu/gm20b/hal_gm20b.c b/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
index c89f3746..1a11b11c 100644
--- a/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
@@ -268,6 +268,10 @@ static const struct gpu_ops gm20b_ops = {
268 .get_syncpt_incr_cmd_size = gk20a_fifo_get_syncpt_incr_cmd_size, 268 .get_syncpt_incr_cmd_size = gk20a_fifo_get_syncpt_incr_cmd_size,
269#endif 269#endif
270 }, 270 },
271 .gr_ctx = {
272 .get_netlist_name = gr_gm20b_get_netlist_name,
273 .is_fw_defined = gr_gm20b_is_firmware_defined,
274 },
271 .mc = { 275 .mc = {
272 .intr_enable = mc_gk20a_intr_enable, 276 .intr_enable = mc_gk20a_intr_enable,
273 .intr_unit_config = mc_gk20a_intr_unit_config, 277 .intr_unit_config = mc_gk20a_intr_unit_config,
@@ -339,6 +343,7 @@ int gm20b_init_hal(struct gk20a *g)
339 gops->ce2 = gm20b_ops.ce2; 343 gops->ce2 = gm20b_ops.ce2;
340 gops->clock_gating = gm20b_ops.clock_gating; 344 gops->clock_gating = gm20b_ops.clock_gating;
341 gops->fifo = gm20b_ops.fifo; 345 gops->fifo = gm20b_ops.fifo;
346 gops->gr_ctx = gm20b_ops.gr_ctx;
342 gops->mc = gm20b_ops.mc; 347 gops->mc = gm20b_ops.mc;
343 gops->dbg_session_ops = gm20b_ops.dbg_session_ops; 348 gops->dbg_session_ops = gm20b_ops.dbg_session_ops;
344 gops->debug = gm20b_ops.debug; 349 gops->debug = gm20b_ops.debug;
@@ -356,6 +361,7 @@ int gm20b_init_hal(struct gk20a *g)
356 gm20b_ops.chip_init_gpu_characteristics; 361 gm20b_ops.chip_init_gpu_characteristics;
357 gops->get_litter_value = gm20b_ops.get_litter_value; 362 gops->get_litter_value = gm20b_ops.get_litter_value;
358 363
364 __nvgpu_set_enabled(g, NVGPU_GR_USE_DMA_FOR_FW_BOOTSTRAP, true);
359 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false); 365 __nvgpu_set_enabled(g, NVGPU_SEC_SECUREGPCCS, false);
360 __nvgpu_set_enabled(g, NVGPU_PMU_PSTATE, false); 366 __nvgpu_set_enabled(g, NVGPU_PMU_PSTATE, false);
361 367
@@ -389,7 +395,6 @@ int gm20b_init_hal(struct gk20a *g)
389 g->bootstrap_owner = LSF_BOOTSTRAP_OWNER_DEFAULT; 395 g->bootstrap_owner = LSF_BOOTSTRAP_OWNER_DEFAULT;
390 gm20b_init_gr(g); 396 gm20b_init_gr(g);
391 gm20b_init_fb(gops); 397 gm20b_init_fb(gops);
392 gm20b_init_gr_ctx(gops);
393 gm20b_init_mm(gops); 398 gm20b_init_mm(gops);
394 gm20b_init_pmu_ops(g); 399 gm20b_init_pmu_ops(g);
395 gm20b_init_clk_ops(gops); 400 gm20b_init_clk_ops(gops);