summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/gr_ctx_gv11b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/gr_ctx_gv11b.c')
-rw-r--r--drivers/gpu/nvgpu/gv11b/gr_ctx_gv11b.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/gr_ctx_gv11b.c b/drivers/gpu/nvgpu/gv11b/gr_ctx_gv11b.c
index 6cb42baa..920e4c16 100644
--- a/drivers/gpu/nvgpu/gv11b/gr_ctx_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/gr_ctx_gv11b.c
@@ -2,7 +2,7 @@
2 * 2 *
3 * GV11B Graphics Context 3 * GV11B Graphics Context
4 * 4 *
5 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. 5 * Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
6 * 6 *
7 * This program is free software; you can redistribute it and/or modify it 7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License, 8 * under the terms and conditions of the GNU General Public License,
@@ -22,7 +22,7 @@
22 22
23#include "gr_ctx_gv11b.h" 23#include "gr_ctx_gv11b.h"
24 24
25static int gr_gv11b_get_netlist_name(struct gk20a *g, int index, char *name) 25int gr_gv11b_get_netlist_name(struct gk20a *g, int index, char *name)
26{ 26{
27 switch (index) { 27 switch (index) {
28#ifdef GV11B_NETLIST_IMAGE_FW_NAME 28#ifdef GV11B_NETLIST_IMAGE_FW_NAME
@@ -57,7 +57,7 @@ static int gr_gv11b_get_netlist_name(struct gk20a *g, int index, char *name)
57 return -1; 57 return -1;
58} 58}
59 59
60static bool gr_gv11b_is_firmware_defined(void) 60bool gr_gv11b_is_firmware_defined(void)
61{ 61{
62#ifdef GV11B_NETLIST_IMAGE_FW_NAME 62#ifdef GV11B_NETLIST_IMAGE_FW_NAME
63 return true; 63 return true;
@@ -65,9 +65,3 @@ static bool gr_gv11b_is_firmware_defined(void)
65 return false; 65 return false;
66#endif 66#endif
67} 67}
68
69void gv11b_init_gr_ctx(struct gpu_ops *gops) {
70 gops->gr_ctx.get_netlist_name = gr_gv11b_get_netlist_name;
71 gops->gr_ctx.is_fw_defined = gr_gv11b_is_firmware_defined;
72 gops->gr_ctx.use_dma_for_fw_bootstrap = false;
73}