summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.h
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2015-03-27 12:09:54 -0400
committerDeepak Nibade <dnibade@nvidia.com>2016-12-27 04:52:05 -0500
commit93e001d24f9ee31bf4f0810e9aa91e70df992cc5 (patch)
tree7743f9abaabf124ddbc63711f6c1545654f48d0c /drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.h
parent4b02177fd3c84e84a3e6894f3696feecf8f5c508 (diff)
gpu: nvgpu: gp10b: Gating reglist
Change-Id: I4931958c21692306d6c78bffdc45e21c553b913c Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Signed-off-by: Mahantesh Kumbar <mkumbar@nvidia.com> Reviewed-on: http://git-master/r/731494
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.h')
-rw-r--r--drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.h b/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.h
new file mode 100644
index 00000000..465a0b4d
--- /dev/null
+++ b/drivers/gpu/nvgpu/gp10b/gp10b_gating_reglist.h
@@ -0,0 +1,87 @@
1/*
2 * Copyright (c) 2015, 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 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include "gk20a/gk20a.h"
18
19void gp10b_slcg_bus_load_gating_prod(struct gk20a *g,
20 bool prod);
21
22void gp10b_slcg_chiplet_load_gating_prod(struct gk20a *g,
23 bool prod);
24
25void gp10b_slcg_ctxsw_firmware_load_gating_prod(struct gk20a *g,
26 bool prod);
27
28void gp10b_slcg_fb_load_gating_prod(struct gk20a *g,
29 bool prod);
30
31void gp10b_slcg_fifo_load_gating_prod(struct gk20a *g,
32 bool prod);
33
34void gr_gp10b_slcg_gr_load_gating_prod(struct gk20a *g,
35 bool prod);
36
37void ltc_gp10b_slcg_ltc_load_gating_prod(struct gk20a *g,
38 bool prod);
39
40void gp10b_slcg_perf_load_gating_prod(struct gk20a *g,
41 bool prod);
42
43void gp10b_slcg_priring_load_gating_prod(struct gk20a *g,
44 bool prod);
45
46void gp10b_slcg_pwr_csb_load_gating_prod(struct gk20a *g,
47 bool prod);
48
49void gp10b_slcg_pmu_load_gating_prod(struct gk20a *g,
50 bool prod);
51
52void gp10b_slcg_therm_load_gating_prod(struct gk20a *g,
53 bool prod);
54
55void gp10b_slcg_xbar_load_gating_prod(struct gk20a *g,
56 bool prod);
57
58void gp10b_blcg_bus_load_gating_prod(struct gk20a *g,
59 bool prod);
60
61void gp10b_blcg_ctxsw_firmware_load_gating_prod(struct gk20a *g,
62 bool prod);
63
64void gp10b_blcg_fb_load_gating_prod(struct gk20a *g,
65 bool prod);
66
67void gp10b_blcg_fifo_load_gating_prod(struct gk20a *g,
68 bool prod);
69
70void gp10b_blcg_gr_load_gating_prod(struct gk20a *g,
71 bool prod);
72
73void gp10b_blcg_ltc_load_gating_prod(struct gk20a *g,
74 bool prod);
75
76void gp10b_blcg_pwr_csb_load_gating_prod(struct gk20a *g,
77 bool prod);
78
79void gp10b_blcg_pmu_load_gating_prod(struct gk20a *g,
80 bool prod);
81
82void gp10b_blcg_xbar_load_gating_prod(struct gk20a *g,
83 bool prod);
84
85void gr_gp10b_pg_gr_load_gating_prod(struct gk20a *g,
86 bool prod);
87