summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp106/gp106_gating_reglist.h
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2016-09-01 18:31:52 -0400
committerDeepak Nibade <dnibade@nvidia.com>2016-12-27 04:56:49 -0500
commit490a8f3f5ff69fa16df3db495c9a378afd8349b1 (patch)
tree73648efd3f9a03b1b1ae353cc8db9dab3e7d6f7e /drivers/gpu/nvgpu/gp106/gp106_gating_reglist.h
parent3d275d19c34b17bde5694b333c25a09aa36d88ab (diff)
gpu: nvgpu: Add gp106 clock gating tables
JIRA DNVGPU-72 JIRA DNVGPU-73 Change-Id: I4a979344649ced1bbf8df215c07a15b6149bba69 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1215915 (cherry picked from commit d5f49042010a18e2885e1213b463cb067d765390) Reviewed-on: http://git-master/r/1227267 GVS: Gerrit_Virtual_Submit
Diffstat (limited to 'drivers/gpu/nvgpu/gp106/gp106_gating_reglist.h')
-rw-r--r--drivers/gpu/nvgpu/gp106/gp106_gating_reglist.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp106/gp106_gating_reglist.h b/drivers/gpu/nvgpu/gp106/gp106_gating_reglist.h
new file mode 100644
index 00000000..423ccf54
--- /dev/null
+++ b/drivers/gpu/nvgpu/gp106/gp106_gating_reglist.h
@@ -0,0 +1,87 @@
1/*
2 * Copyright (c) 2015-2016, 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 gp106_slcg_bus_load_gating_prod(struct gk20a *g,
20 bool prod);
21
22void gp106_slcg_ce2_load_gating_prod(struct gk20a *g,
23 bool prod);
24
25void gp106_slcg_chiplet_load_gating_prod(struct gk20a *g,
26 bool prod);
27
28void gp106_slcg_ctxsw_firmware_load_gating_prod(struct gk20a *g,
29 bool prod);
30
31void gp106_slcg_fb_load_gating_prod(struct gk20a *g,
32 bool prod);
33
34void gp106_slcg_fifo_load_gating_prod(struct gk20a *g,
35 bool prod);
36
37void gr_gp106_slcg_gr_load_gating_prod(struct gk20a *g,
38 bool prod);
39
40void ltc_gp106_slcg_ltc_load_gating_prod(struct gk20a *g,
41 bool prod);
42
43void gp106_slcg_perf_load_gating_prod(struct gk20a *g,
44 bool prod);
45
46void gp106_slcg_priring_load_gating_prod(struct gk20a *g,
47 bool prod);
48
49void gp106_slcg_pmu_load_gating_prod(struct gk20a *g,
50 bool prod);
51
52void gp106_slcg_therm_load_gating_prod(struct gk20a *g,
53 bool prod);
54
55void gp106_slcg_xbar_load_gating_prod(struct gk20a *g,
56 bool prod);
57
58void gp106_blcg_bus_load_gating_prod(struct gk20a *g,
59 bool prod);
60
61void gp106_blcg_ce_load_gating_prod(struct gk20a *g,
62 bool prod);
63
64void gp106_blcg_ctxsw_firmware_load_gating_prod(struct gk20a *g,
65 bool prod);
66
67void gp106_blcg_fb_load_gating_prod(struct gk20a *g,
68 bool prod);
69
70void gp106_blcg_fifo_load_gating_prod(struct gk20a *g,
71 bool prod);
72
73void gp106_blcg_gr_load_gating_prod(struct gk20a *g,
74 bool prod);
75
76void gp106_blcg_ltc_load_gating_prod(struct gk20a *g,
77 bool prod);
78
79void gp106_blcg_pmu_load_gating_prod(struct gk20a *g,
80 bool prod);
81
82void gp106_blcg_xbar_load_gating_prod(struct gk20a *g,
83 bool prod);
84
85void gr_gp106_pg_gr_load_gating_prod(struct gk20a *g,
86 bool prod);
87