summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b
diff options
context:
space:
mode:
authorSunny He <suhe@nvidia.com>2017-06-27 16:42:33 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-07-13 03:09:08 -0400
commite78153ea1b6b610f2307b86fc42ea33d678b250f (patch)
tree004e16c6b81c4b209cc2714e8722209db92edc2c /drivers/gpu/nvgpu/gm20b
parentecf67ebbf69a9ab6481b1517b8920f7ac5828bb5 (diff)
gpu: nvgpu: Reorg mc HAL initialization
Reorganize HAL initialization to remove inheritance and construct the gpu_ops struct at compile time. This patch only covers the mc 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: I26d74c14661a193af7e8d90dd672b73010e5f841 Signed-off-by: Sunny He <suhe@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1509601 GVS: Gerrit_Virtual_Submit Reviewed-by: Richard Zhao <rizhao@nvidia.com> Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b')
-rw-r--r--drivers/gpu/nvgpu/gm20b/hal_gm20b.c20
-rw-r--r--drivers/gpu/nvgpu/gm20b/mc_gm20b.c36
-rw-r--r--drivers/gpu/nvgpu/gm20b/mc_gm20b.h18
3 files changed, 18 insertions, 56 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/hal_gm20b.c b/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
index c6c7b590..4baed828 100644
--- a/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/hal_gm20b.c
@@ -16,6 +16,7 @@
16#include "gk20a/gk20a.h" 16#include "gk20a/gk20a.h"
17#include "gk20a/dbg_gpu_gk20a.h" 17#include "gk20a/dbg_gpu_gk20a.h"
18#include "gk20a/css_gr_gk20a.h" 18#include "gk20a/css_gr_gk20a.h"
19#include "gk20a/mc_gk20a.h"
19#include "gk20a/bus_gk20a.h" 20#include "gk20a/bus_gk20a.h"
20#include "gk20a/flcn_gk20a.h" 21#include "gk20a/flcn_gk20a.h"
21#include "gk20a/priv_ring_gk20a.h" 22#include "gk20a/priv_ring_gk20a.h"
@@ -31,7 +32,6 @@
31#include "mm_gm20b.h" 32#include "mm_gm20b.h"
32#include "pmu_gm20b.h" 33#include "pmu_gm20b.h"
33#include "clk_gm20b.h" 34#include "clk_gm20b.h"
34#include "mc_gm20b.h"
35#include "regops_gm20b.h" 35#include "regops_gm20b.h"
36#include "cde_gm20b.h" 36#include "cde_gm20b.h"
37#include "therm_gm20b.h" 37#include "therm_gm20b.h"
@@ -199,6 +199,22 @@ static const struct gpu_ops gm20b_ops = {
199 .pg_gr_load_gating_prod = 199 .pg_gr_load_gating_prod =
200 gr_gm20b_pg_gr_load_gating_prod, 200 gr_gm20b_pg_gr_load_gating_prod,
201 }, 201 },
202 .mc = {
203 .intr_enable = mc_gk20a_intr_enable,
204 .intr_unit_config = mc_gk20a_intr_unit_config,
205 .isr_stall = mc_gk20a_isr_stall,
206 .intr_stall = mc_gk20a_intr_stall,
207 .intr_stall_pause = mc_gk20a_intr_stall_pause,
208 .intr_stall_resume = mc_gk20a_intr_stall_resume,
209 .intr_nonstall = mc_gk20a_intr_nonstall,
210 .intr_nonstall_pause = mc_gk20a_intr_nonstall_pause,
211 .intr_nonstall_resume = mc_gk20a_intr_nonstall_resume,
212 .enable = gk20a_mc_enable,
213 .disable = gk20a_mc_disable,
214 .reset = gk20a_mc_reset,
215 .boot_0 = gk20a_mc_boot_0,
216 .is_intr1_pending = mc_gk20a_is_intr1_pending,
217 },
202 .cde = { 218 .cde = {
203 .get_program_numbers = gm20b_cde_get_program_numbers, 219 .get_program_numbers = gm20b_cde_get_program_numbers,
204 }, 220 },
@@ -217,6 +233,7 @@ int gm20b_init_hal(struct gk20a *g)
217 233
218 gops->ltc = gm20b_ops.ltc; 234 gops->ltc = gm20b_ops.ltc;
219 gops->clock_gating = gm20b_ops.clock_gating; 235 gops->clock_gating = gm20b_ops.clock_gating;
236 gops->mc = gm20b_ops.mc;
220 gops->cde = gm20b_ops.cde; 237 gops->cde = gm20b_ops.cde;
221 gops->falcon = gm20b_ops.falcon; 238 gops->falcon = gm20b_ops.falcon;
222 239
@@ -255,7 +272,6 @@ int gm20b_init_hal(struct gk20a *g)
255 } 272 }
256#endif 273#endif
257 gk20a_init_bus(gops); 274 gk20a_init_bus(gops);
258 gm20b_init_mc(gops);
259 gk20a_init_priv_ring(gops); 275 gk20a_init_priv_ring(gops);
260 gm20b_init_gr(gops); 276 gm20b_init_gr(gops);
261 gm20b_init_fb(gops); 277 gm20b_init_fb(gops);
diff --git a/drivers/gpu/nvgpu/gm20b/mc_gm20b.c b/drivers/gpu/nvgpu/gm20b/mc_gm20b.c
deleted file mode 100644
index 005ec729..00000000
--- a/drivers/gpu/nvgpu/gm20b/mc_gm20b.c
+++ /dev/null
@@ -1,36 +0,0 @@
1/*
2 * GK20A memory interface
3 *
4 * Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
5 *
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,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 */
15
16#include "gk20a/gk20a.h"
17#include "gk20a/mc_gk20a.h"
18#include "mc_gm20b.h"
19
20void gm20b_init_mc(struct gpu_ops *gops)
21{
22 gops->mc.intr_enable = mc_gk20a_intr_enable;
23 gops->mc.intr_unit_config = mc_gk20a_intr_unit_config;
24 gops->mc.isr_stall = mc_gk20a_isr_stall;
25 gops->mc.intr_stall = mc_gk20a_intr_stall;
26 gops->mc.intr_stall_pause = mc_gk20a_intr_stall_pause;
27 gops->mc.intr_stall_resume = mc_gk20a_intr_stall_resume;
28 gops->mc.intr_nonstall = mc_gk20a_intr_nonstall;
29 gops->mc.intr_nonstall_pause = mc_gk20a_intr_nonstall_pause;
30 gops->mc.intr_nonstall_resume = mc_gk20a_intr_nonstall_resume;
31 gops->mc.enable = gk20a_mc_enable;
32 gops->mc.disable = gk20a_mc_disable;
33 gops->mc.reset = gk20a_mc_reset;
34 gops->mc.boot_0 = gk20a_mc_boot_0;
35 gops->mc.is_intr1_pending = mc_gk20a_is_intr1_pending;
36}
diff --git a/drivers/gpu/nvgpu/gm20b/mc_gm20b.h b/drivers/gpu/nvgpu/gm20b/mc_gm20b.h
deleted file mode 100644
index b19bf6fe..00000000
--- a/drivers/gpu/nvgpu/gm20b/mc_gm20b.h
+++ /dev/null
@@ -1,18 +0,0 @@
1/*
2 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 */
13
14#ifndef MC_GM20B_H
15#define MC_GM20B_H
16
17void gm20b_init_mc(struct gpu_ops *gops);
18#endif