aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2015-03-25 19:28:34 -0400
committerBen Skeggs <bskeggs@redhat.com>2015-04-14 03:00:57 -0400
commit3fed3ea9fd8561ee7a5e6887bc087a4fd97c8e91 (patch)
tree4453c32f956c9e7beb2b6ffc2d577b237bb9b483
parent990b4547042a947dce908b81f4f01c8780923c8d (diff)
drm/nouveau/gr/gm204: initial init+ctx code
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r--drivers/gpu/drm/nouveau/include/nvif/class.h2
-rw-r--r--drivers/gpu/drm/nouveau/include/nvkm/engine/gr.h1
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/device/gm100.c4
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/gr/Kbuild2
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h10
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c10
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm204.c1054
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.h12
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.c20
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/gr/gm204.c387
10 files changed, 1484 insertions, 18 deletions
diff --git a/drivers/gpu/drm/nouveau/include/nvif/class.h b/drivers/gpu/drm/nouveau/include/nvif/class.h
index 0fdbcffaa54d..0b5af0fe8659 100644
--- a/drivers/gpu/drm/nouveau/include/nvif/class.h
+++ b/drivers/gpu/drm/nouveau/include/nvif/class.h
@@ -92,6 +92,7 @@
92#define KEPLER_C 0x0000a297 92#define KEPLER_C 0x0000a297
93 93
94#define MAXWELL_A 0x0000b097 94#define MAXWELL_A 0x0000b097
95#define MAXWELL_B 0x0000b197
95 96
96#define FERMI_COMPUTE_A 0x000090c0 97#define FERMI_COMPUTE_A 0x000090c0
97#define FERMI_COMPUTE_B 0x000091c0 98#define FERMI_COMPUTE_B 0x000091c0
@@ -100,6 +101,7 @@
100#define KEPLER_COMPUTE_B 0x0000a1c0 101#define KEPLER_COMPUTE_B 0x0000a1c0
101 102
102#define MAXWELL_COMPUTE_A 0x0000b0c0 103#define MAXWELL_COMPUTE_A 0x0000b0c0
104#define MAXWELL_COMPUTE_B 0x0000b1c0
103 105
104 106
105/******************************************************************************* 107/*******************************************************************************
diff --git a/drivers/gpu/drm/nouveau/include/nvkm/engine/gr.h b/drivers/gpu/drm/nouveau/include/nvkm/engine/gr.h
index e9ce0e017c64..3148f1a77ee9 100644
--- a/drivers/gpu/drm/nouveau/include/nvkm/engine/gr.h
+++ b/drivers/gpu/drm/nouveau/include/nvkm/engine/gr.h
@@ -72,6 +72,7 @@ extern struct nvkm_oclass *gk110_gr_oclass;
72extern struct nvkm_oclass *gk110b_gr_oclass; 72extern struct nvkm_oclass *gk110b_gr_oclass;
73extern struct nvkm_oclass *gk208_gr_oclass; 73extern struct nvkm_oclass *gk208_gr_oclass;
74extern struct nvkm_oclass *gm107_gr_oclass; 74extern struct nvkm_oclass *gm107_gr_oclass;
75extern struct nvkm_oclass *gm204_gr_oclass;
75 76
76#include <core/enum.h> 77#include <core/enum.h>
77 78
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/device/gm100.c b/drivers/gpu/drm/nouveau/nvkm/engine/device/gm100.c
index b66b1c6d5b25..298a33cd3c35 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/device/gm100.c
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/gm100.c
@@ -129,9 +129,7 @@ gm100_identify(struct nvkm_device *device)
129 device->oclass[NVDEV_ENGINE_DMAOBJ ] = gf110_dmaeng_oclass; 129 device->oclass[NVDEV_ENGINE_DMAOBJ ] = gf110_dmaeng_oclass;
130 device->oclass[NVDEV_ENGINE_FIFO ] = gm204_fifo_oclass; 130 device->oclass[NVDEV_ENGINE_FIFO ] = gm204_fifo_oclass;
131 device->oclass[NVDEV_ENGINE_SW ] = gf100_sw_oclass; 131 device->oclass[NVDEV_ENGINE_SW ] = gf100_sw_oclass;
132#if 0 132 device->oclass[NVDEV_ENGINE_GR ] = gm204_gr_oclass;
133 device->oclass[NVDEV_ENGINE_GR ] = gm107_gr_oclass;
134#endif
135 device->oclass[NVDEV_ENGINE_DISP ] = gm204_disp_oclass; 133 device->oclass[NVDEV_ENGINE_DISP ] = gm204_disp_oclass;
136 device->oclass[NVDEV_ENGINE_CE0 ] = &gm204_ce0_oclass; 134 device->oclass[NVDEV_ENGINE_CE0 ] = &gm204_ce0_oclass;
137 device->oclass[NVDEV_ENGINE_CE1 ] = &gm204_ce1_oclass; 135 device->oclass[NVDEV_ENGINE_CE1 ] = &gm204_ce1_oclass;
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/Kbuild b/drivers/gpu/drm/nouveau/nvkm/engine/gr/Kbuild
index 1771d944591b..1191d324712b 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/Kbuild
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/Kbuild
@@ -12,6 +12,7 @@ nvkm-y += nvkm/engine/gr/ctxgk110.o
12nvkm-y += nvkm/engine/gr/ctxgk110b.o 12nvkm-y += nvkm/engine/gr/ctxgk110b.o
13nvkm-y += nvkm/engine/gr/ctxgk208.o 13nvkm-y += nvkm/engine/gr/ctxgk208.o
14nvkm-y += nvkm/engine/gr/ctxgm107.o 14nvkm-y += nvkm/engine/gr/ctxgm107.o
15nvkm-y += nvkm/engine/gr/ctxgm204.o
15nvkm-y += nvkm/engine/gr/nv04.o 16nvkm-y += nvkm/engine/gr/nv04.o
16nvkm-y += nvkm/engine/gr/nv10.o 17nvkm-y += nvkm/engine/gr/nv10.o
17nvkm-y += nvkm/engine/gr/nv20.o 18nvkm-y += nvkm/engine/gr/nv20.o
@@ -34,3 +35,4 @@ nvkm-y += nvkm/engine/gr/gk110.o
34nvkm-y += nvkm/engine/gr/gk110b.o 35nvkm-y += nvkm/engine/gr/gk110b.o
35nvkm-y += nvkm/engine/gr/gk208.o 36nvkm-y += nvkm/engine/gr/gk208.o
36nvkm-y += nvkm/engine/gr/gm107.o 37nvkm-y += nvkm/engine/gr/gm107.o
38nvkm-y += nvkm/engine/gr/gm204.o
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h
index e9852764ac1d..6c7b134ce468 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h
@@ -90,10 +90,17 @@ void gk104_grctx_generate_unkn(struct gf100_gr_priv *);
90void gk104_grctx_generate_r418bb8(struct gf100_gr_priv *); 90void gk104_grctx_generate_r418bb8(struct gf100_gr_priv *);
91void gk104_grctx_generate_rop_active_fbps(struct gf100_gr_priv *); 91void gk104_grctx_generate_rop_active_fbps(struct gf100_gr_priv *);
92 92
93
93extern struct nvkm_oclass *gk110_grctx_oclass; 94extern struct nvkm_oclass *gk110_grctx_oclass;
94extern struct nvkm_oclass *gk110b_grctx_oclass; 95extern struct nvkm_oclass *gk110b_grctx_oclass;
95extern struct nvkm_oclass *gk208_grctx_oclass; 96extern struct nvkm_oclass *gk208_grctx_oclass;
97
96extern struct nvkm_oclass *gm107_grctx_oclass; 98extern struct nvkm_oclass *gm107_grctx_oclass;
99void gm107_grctx_generate_bundle(struct gf100_grctx *);
100void gm107_grctx_generate_pagepool(struct gf100_grctx *);
101void gm107_grctx_generate_attrib(struct gf100_grctx *);
102
103extern struct nvkm_oclass *gm204_grctx_oclass;
97 104
98/* context init value lists */ 105/* context init value lists */
99 106
@@ -197,4 +204,7 @@ extern const struct gf100_gr_init gk208_grctx_init_rstr2d_0[];
197 204
198extern const struct gf100_gr_init gk208_grctx_init_prop_0[]; 205extern const struct gf100_gr_init gk208_grctx_init_prop_0[];
199extern const struct gf100_gr_init gk208_grctx_init_crstr_0[]; 206extern const struct gf100_gr_init gk208_grctx_init_crstr_0[];
207
208extern const struct gf100_gr_init gm107_grctx_init_gpc_unk_0[];
209extern const struct gf100_gr_init gm107_grctx_init_wwdx_0[];
200#endif 210#endif
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c
index 24072b2b8b12..fbeaae3ae6ce 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c
@@ -699,7 +699,7 @@ gm107_grctx_pack_hub[] = {
699 {} 699 {}
700}; 700};
701 701
702static const struct gf100_gr_init 702const struct gf100_gr_init
703gm107_grctx_init_gpc_unk_0[] = { 703gm107_grctx_init_gpc_unk_0[] = {
704 { 0x418380, 1, 0x04, 0x00000056 }, 704 { 0x418380, 1, 0x04, 0x00000056 },
705 {} 705 {}
@@ -834,7 +834,7 @@ gm107_grctx_init_cbm_0[] = {
834 {} 834 {}
835}; 835};
836 836
837static const struct gf100_gr_init 837const struct gf100_gr_init
838gm107_grctx_init_wwdx_0[] = { 838gm107_grctx_init_wwdx_0[] = {
839 { 0x41bf00, 1, 0x04, 0x0a418820 }, 839 { 0x41bf00, 1, 0x04, 0x0a418820 },
840 { 0x41bf04, 1, 0x04, 0x062080e6 }, 840 { 0x41bf04, 1, 0x04, 0x062080e6 },
@@ -860,7 +860,7 @@ gm107_grctx_pack_ppc[] = {
860 * PGRAPH context implementation 860 * PGRAPH context implementation
861 ******************************************************************************/ 861 ******************************************************************************/
862 862
863static void 863void
864gm107_grctx_generate_bundle(struct gf100_grctx *info) 864gm107_grctx_generate_bundle(struct gf100_grctx *info)
865{ 865{
866 const struct gf100_grctx_oclass *impl = gf100_grctx_impl(info->priv); 866 const struct gf100_grctx_oclass *impl = gf100_grctx_impl(info->priv);
@@ -877,7 +877,7 @@ gm107_grctx_generate_bundle(struct gf100_grctx *info)
877 mmio_wr32(info, 0x4064c8, (state_limit << 16) | token_limit); 877 mmio_wr32(info, 0x4064c8, (state_limit << 16) | token_limit);
878} 878}
879 879
880static void 880void
881gm107_grctx_generate_pagepool(struct gf100_grctx *info) 881gm107_grctx_generate_pagepool(struct gf100_grctx *info)
882{ 882{
883 const struct gf100_grctx_oclass *impl = gf100_grctx_impl(info->priv); 883 const struct gf100_grctx_oclass *impl = gf100_grctx_impl(info->priv);
@@ -892,7 +892,7 @@ gm107_grctx_generate_pagepool(struct gf100_grctx *info)
892 mmio_wr32(info, 0x418e30, 0x80000000); /* guess at it being related */ 892 mmio_wr32(info, 0x418e30, 0x80000000); /* guess at it being related */
893} 893}
894 894
895static void 895void
896gm107_grctx_generate_attrib(struct gf100_grctx *info) 896gm107_grctx_generate_attrib(struct gf100_grctx *info)
897{ 897{
898 struct gf100_gr_priv *priv = info->priv; 898 struct gf100_gr_priv *priv = info->priv;
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm204.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm204.c
new file mode 100644
index 000000000000..9e4be5ee5ba2
--- /dev/null
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm204.c
@@ -0,0 +1,1054 @@
1/*
2 * Copyright 2015 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs <bskeggs@redhat.com>
23 */
24#include "ctxgf100.h"
25
26/*******************************************************************************
27 * PGRAPH context register lists
28 ******************************************************************************/
29
30static const struct gf100_gr_init
31gm204_grctx_init_icmd_0[] = {
32 { 0x001000, 1, 0x01, 0x00000002 },
33 { 0x0006aa, 1, 0x01, 0x00000001 },
34 { 0x0006ad, 2, 0x01, 0x00000100 },
35 { 0x0006b1, 1, 0x01, 0x00000011 },
36 { 0x00078c, 1, 0x01, 0x00000008 },
37 { 0x000792, 1, 0x01, 0x00000001 },
38 { 0x000794, 3, 0x01, 0x00000001 },
39 { 0x000797, 1, 0x01, 0x000000cf },
40 { 0x00079a, 1, 0x01, 0x00000002 },
41 { 0x0007a1, 1, 0x01, 0x00000001 },
42 { 0x0007a3, 3, 0x01, 0x00000001 },
43 { 0x000831, 1, 0x01, 0x00000004 },
44 { 0x01e100, 1, 0x01, 0x00000001 },
45 { 0x001000, 1, 0x01, 0x00000008 },
46 { 0x000039, 3, 0x01, 0x00000000 },
47 { 0x000380, 1, 0x01, 0x00000001 },
48 { 0x000366, 2, 0x01, 0x00000000 },
49 { 0x000368, 1, 0x01, 0x00000fff },
50 { 0x000370, 2, 0x01, 0x00000000 },
51 { 0x000372, 1, 0x01, 0x000fffff },
52 { 0x000374, 1, 0x01, 0x00000100 },
53 { 0x000818, 8, 0x01, 0x00000000 },
54 { 0x000848, 16, 0x01, 0x00000000 },
55 { 0x000738, 1, 0x01, 0x00000000 },
56 { 0x000b07, 1, 0x01, 0x00000002 },
57 { 0x000b08, 2, 0x01, 0x00000100 },
58 { 0x000b0a, 1, 0x01, 0x00000001 },
59 { 0x000a04, 1, 0x01, 0x000000ff },
60 { 0x000a0b, 1, 0x01, 0x00000040 },
61 { 0x00097f, 1, 0x01, 0x00000100 },
62 { 0x000a02, 1, 0x01, 0x00000001 },
63 { 0x000809, 1, 0x01, 0x00000007 },
64 { 0x00c221, 1, 0x01, 0x00000040 },
65 { 0x00c401, 1, 0x01, 0x00000001 },
66 { 0x00c402, 1, 0x01, 0x00010001 },
67 { 0x00c403, 2, 0x01, 0x00000001 },
68 { 0x00c40e, 1, 0x01, 0x00000020 },
69 { 0x01e100, 1, 0x01, 0x00000001 },
70 { 0x001000, 1, 0x01, 0x00000001 },
71 { 0x000b07, 1, 0x01, 0x00000002 },
72 { 0x000b08, 2, 0x01, 0x00000100 },
73 { 0x000b0a, 1, 0x01, 0x00000001 },
74 { 0x01e100, 1, 0x01, 0x00000001 },
75 { 0x001000, 1, 0x01, 0x00000004 },
76 { 0x000039, 3, 0x01, 0x00000000 },
77 { 0x0000a9, 1, 0x01, 0x0000ffff },
78 { 0x000038, 1, 0x01, 0x0fac6881 },
79 { 0x00003d, 1, 0x01, 0x00000001 },
80 { 0x0000e8, 8, 0x01, 0x00000400 },
81 { 0x000078, 8, 0x01, 0x00000300 },
82 { 0x000050, 1, 0x01, 0x00000011 },
83 { 0x000058, 8, 0x01, 0x00000008 },
84 { 0x000208, 8, 0x01, 0x00000001 },
85 { 0x000081, 1, 0x01, 0x00000001 },
86 { 0x000085, 1, 0x01, 0x00000004 },
87 { 0x000088, 1, 0x01, 0x00000400 },
88 { 0x000090, 1, 0x01, 0x00000300 },
89 { 0x000098, 1, 0x01, 0x00001001 },
90 { 0x0000e3, 1, 0x01, 0x00000001 },
91 { 0x0000da, 1, 0x01, 0x00000001 },
92 { 0x0000b4, 4, 0x01, 0x88888888 },
93 { 0x0000f8, 1, 0x01, 0x00000003 },
94 { 0x0000fa, 1, 0x01, 0x00000001 },
95 { 0x0000b1, 2, 0x01, 0x00000001 },
96 { 0x00009f, 4, 0x01, 0x0000ffff },
97 { 0x0000a8, 1, 0x01, 0x0000ffff },
98 { 0x0000ad, 1, 0x01, 0x0000013e },
99 { 0x0000e1, 1, 0x01, 0x00000010 },
100 { 0x000290, 16, 0x01, 0x00000000 },
101 { 0x0003b0, 16, 0x01, 0x00000000 },
102 { 0x0002a0, 16, 0x01, 0x00000000 },
103 { 0x000420, 16, 0x01, 0x00000000 },
104 { 0x0002b0, 16, 0x01, 0x00000000 },
105 { 0x000430, 16, 0x01, 0x00000000 },
106 { 0x0002c0, 16, 0x01, 0x00000000 },
107 { 0x0004d0, 16, 0x01, 0x00000000 },
108 { 0x000720, 16, 0x01, 0x00000000 },
109 { 0x0008c0, 16, 0x01, 0x00000000 },
110 { 0x000890, 16, 0x01, 0x00000000 },
111 { 0x0008e0, 16, 0x01, 0x00000000 },
112 { 0x0008a0, 16, 0x01, 0x00000000 },
113 { 0x0008f0, 16, 0x01, 0x00000000 },
114 { 0x00094c, 1, 0x01, 0x000000ff },
115 { 0x00094d, 1, 0x01, 0xffffffff },
116 { 0x00094e, 1, 0x01, 0x00000002 },
117 { 0x0002f2, 2, 0x01, 0x00000001 },
118 { 0x0002f5, 1, 0x01, 0x00000001 },
119 { 0x0002f7, 1, 0x01, 0x00000001 },
120 { 0x000303, 1, 0x01, 0x00000001 },
121 { 0x0002e6, 1, 0x01, 0x00000001 },
122 { 0x000466, 1, 0x01, 0x00000052 },
123 { 0x000301, 1, 0x01, 0x3f800000 },
124 { 0x000304, 1, 0x01, 0x30201000 },
125 { 0x000305, 1, 0x01, 0x70605040 },
126 { 0x000306, 1, 0x01, 0xb8a89888 },
127 { 0x000307, 1, 0x01, 0xf8e8d8c8 },
128 { 0x00030a, 1, 0x01, 0x00ffff00 },
129 { 0x00030b, 1, 0x01, 0x0000001a },
130 { 0x00030c, 1, 0x01, 0x00000001 },
131 { 0x000318, 1, 0x01, 0x00000001 },
132 { 0x000340, 1, 0x01, 0x00000000 },
133 { 0x00037d, 1, 0x01, 0x00000006 },
134 { 0x0003a0, 1, 0x01, 0x00000002 },
135 { 0x0003aa, 1, 0x01, 0x00000001 },
136 { 0x0003a9, 1, 0x01, 0x00000001 },
137 { 0x000380, 1, 0x01, 0x00000001 },
138 { 0x000383, 1, 0x01, 0x00000011 },
139 { 0x000360, 1, 0x01, 0x00000040 },
140 { 0x000366, 2, 0x01, 0x00000000 },
141 { 0x000368, 1, 0x01, 0x00000fff },
142 { 0x000370, 2, 0x01, 0x00000000 },
143 { 0x000372, 1, 0x01, 0x000fffff },
144 { 0x000374, 1, 0x01, 0x00000100 },
145 { 0x00037a, 1, 0x01, 0x00000012 },
146 { 0x000619, 1, 0x01, 0x00000003 },
147 { 0x000811, 1, 0x01, 0x00000003 },
148 { 0x000812, 1, 0x01, 0x00000004 },
149 { 0x000813, 1, 0x01, 0x00000006 },
150 { 0x000814, 1, 0x01, 0x00000008 },
151 { 0x000815, 1, 0x01, 0x0000000b },
152 { 0x000800, 6, 0x01, 0x00000001 },
153 { 0x000632, 1, 0x01, 0x00000001 },
154 { 0x000633, 1, 0x01, 0x00000002 },
155 { 0x000634, 1, 0x01, 0x00000003 },
156 { 0x000635, 1, 0x01, 0x00000004 },
157 { 0x000654, 1, 0x01, 0x3f800000 },
158 { 0x000657, 1, 0x01, 0x3f800000 },
159 { 0x000655, 2, 0x01, 0x3f800000 },
160 { 0x0006cd, 1, 0x01, 0x3f800000 },
161 { 0x0007f5, 1, 0x01, 0x3f800000 },
162 { 0x0007dc, 1, 0x01, 0x39291909 },
163 { 0x0007dd, 1, 0x01, 0x79695949 },
164 { 0x0007de, 1, 0x01, 0xb9a99989 },
165 { 0x0007df, 1, 0x01, 0xf9e9d9c9 },
166 { 0x0007e8, 1, 0x01, 0x00003210 },
167 { 0x0007e9, 1, 0x01, 0x00007654 },
168 { 0x0007ea, 1, 0x01, 0x00000098 },
169 { 0x0007ec, 1, 0x01, 0x39291909 },
170 { 0x0007ed, 1, 0x01, 0x79695949 },
171 { 0x0007ee, 1, 0x01, 0xb9a99989 },
172 { 0x0007ef, 1, 0x01, 0xf9e9d9c9 },
173 { 0x0007f0, 1, 0x01, 0x00003210 },
174 { 0x0007f1, 1, 0x01, 0x00007654 },
175 { 0x0007f2, 1, 0x01, 0x00000098 },
176 { 0x0005a5, 1, 0x01, 0x00000001 },
177 { 0x0005aa, 1, 0x01, 0x00000002 },
178 { 0x0005cb, 1, 0x01, 0x00000004 },
179 { 0x0005d0, 1, 0x01, 0x20181008 },
180 { 0x0005d1, 1, 0x01, 0x40383028 },
181 { 0x0005d2, 1, 0x01, 0x60585048 },
182 { 0x0005d3, 1, 0x01, 0x80787068 },
183 { 0x000980, 128, 0x01, 0x00000000 },
184 { 0x000468, 1, 0x01, 0x00000004 },
185 { 0x00046c, 1, 0x01, 0x00000001 },
186 { 0x000470, 96, 0x01, 0x00000000 },
187 { 0x0005e0, 16, 0x01, 0x00000d10 },
188 { 0x000510, 16, 0x01, 0x3f800000 },
189 { 0x000520, 1, 0x01, 0x000002b6 },
190 { 0x000529, 1, 0x01, 0x00000001 },
191 { 0x000530, 16, 0x01, 0xffff0000 },
192 { 0x000550, 32, 0x01, 0xffff0000 },
193 { 0x000585, 1, 0x01, 0x0000003f },
194 { 0x000576, 1, 0x01, 0x00000003 },
195 { 0x00057b, 1, 0x01, 0x00000059 },
196 { 0x000586, 1, 0x01, 0x00000040 },
197 { 0x000582, 2, 0x01, 0x00000080 },
198 { 0x000595, 1, 0x01, 0x00400040 },
199 { 0x000596, 1, 0x01, 0x00000492 },
200 { 0x000597, 1, 0x01, 0x08080203 },
201 { 0x0005ad, 1, 0x01, 0x00000008 },
202 { 0x000598, 1, 0x01, 0x00020001 },
203 { 0x0005d4, 1, 0x01, 0x00000001 },
204 { 0x0005c2, 1, 0x01, 0x00000001 },
205 { 0x000638, 2, 0x01, 0x00000001 },
206 { 0x00063a, 1, 0x01, 0x00000002 },
207 { 0x00063b, 2, 0x01, 0x00000001 },
208 { 0x00063d, 1, 0x01, 0x00000002 },
209 { 0x00063e, 1, 0x01, 0x00000001 },
210 { 0x0008b8, 8, 0x01, 0x00000001 },
211 { 0x000900, 8, 0x01, 0x00000001 },
212 { 0x000908, 8, 0x01, 0x00000002 },
213 { 0x000910, 16, 0x01, 0x00000001 },
214 { 0x000920, 8, 0x01, 0x00000002 },
215 { 0x000928, 8, 0x01, 0x00000001 },
216 { 0x000662, 1, 0x01, 0x00000001 },
217 { 0x000648, 9, 0x01, 0x00000001 },
218 { 0x000674, 1, 0x01, 0x00000001 },
219 { 0x000658, 1, 0x01, 0x0000000f },
220 { 0x0007ff, 1, 0x01, 0x0000000a },
221 { 0x00066a, 1, 0x01, 0x40000000 },
222 { 0x00066b, 1, 0x01, 0x10000000 },
223 { 0x00066c, 2, 0x01, 0xffff0000 },
224 { 0x0007af, 2, 0x01, 0x00000008 },
225 { 0x0007f6, 1, 0x01, 0x00000001 },
226 { 0x0006b2, 1, 0x01, 0x00000055 },
227 { 0x0007ad, 1, 0x01, 0x00000003 },
228 { 0x000971, 1, 0x01, 0x00000008 },
229 { 0x000972, 1, 0x01, 0x00000040 },
230 { 0x000973, 1, 0x01, 0x0000012c },
231 { 0x00097c, 1, 0x01, 0x00000040 },
232 { 0x000975, 1, 0x01, 0x00000020 },
233 { 0x000976, 1, 0x01, 0x00000001 },
234 { 0x000977, 1, 0x01, 0x00000020 },
235 { 0x000978, 1, 0x01, 0x00000001 },
236 { 0x000957, 1, 0x01, 0x00000003 },
237 { 0x00095e, 1, 0x01, 0x20164010 },
238 { 0x00095f, 1, 0x01, 0x00000020 },
239 { 0x000a0d, 1, 0x01, 0x00000006 },
240 { 0x00097d, 1, 0x01, 0x0000000c },
241 { 0x000683, 1, 0x01, 0x00000006 },
242 { 0x000687, 1, 0x01, 0x003fffff },
243 { 0x0006a0, 1, 0x01, 0x00000005 },
244 { 0x000840, 1, 0x01, 0x00400008 },
245 { 0x000841, 1, 0x01, 0x08000080 },
246 { 0x000842, 1, 0x01, 0x00400008 },
247 { 0x000843, 1, 0x01, 0x08000080 },
248 { 0x000818, 8, 0x01, 0x00000000 },
249 { 0x000848, 16, 0x01, 0x00000000 },
250 { 0x000738, 1, 0x01, 0x00000000 },
251 { 0x0006aa, 1, 0x01, 0x00000001 },
252 { 0x0006ab, 1, 0x01, 0x00000002 },
253 { 0x0006ac, 1, 0x01, 0x00000080 },
254 { 0x0006ad, 2, 0x01, 0x00000100 },
255 { 0x0006b1, 1, 0x01, 0x00000011 },
256 { 0x0006bb, 1, 0x01, 0x000000cf },
257 { 0x0006ce, 1, 0x01, 0x2a712488 },
258 { 0x000739, 1, 0x01, 0x4085c000 },
259 { 0x00073a, 1, 0x01, 0x00000080 },
260 { 0x000786, 1, 0x01, 0x80000100 },
261 { 0x00073c, 1, 0x01, 0x00010100 },
262 { 0x00073d, 1, 0x01, 0x02800000 },
263 { 0x000787, 1, 0x01, 0x000000cf },
264 { 0x00078c, 1, 0x01, 0x00000008 },
265 { 0x000792, 1, 0x01, 0x00000001 },
266 { 0x000794, 3, 0x01, 0x00000001 },
267 { 0x000797, 1, 0x01, 0x000000cf },
268 { 0x000836, 1, 0x01, 0x00000001 },
269 { 0x00079a, 1, 0x01, 0x00000002 },
270 { 0x000833, 1, 0x01, 0x04444480 },
271 { 0x0007a1, 1, 0x01, 0x00000001 },
272 { 0x0007a3, 3, 0x01, 0x00000001 },
273 { 0x000831, 1, 0x01, 0x00000004 },
274 { 0x000b07, 1, 0x01, 0x00000002 },
275 { 0x000b08, 2, 0x01, 0x00000100 },
276 { 0x000b0a, 1, 0x01, 0x00000001 },
277 { 0x000a04, 1, 0x01, 0x000000ff },
278 { 0x000a0b, 1, 0x01, 0x00000040 },
279 { 0x00097f, 1, 0x01, 0x00000100 },
280 { 0x000a02, 1, 0x01, 0x00000001 },
281 { 0x000809, 1, 0x01, 0x00000007 },
282 { 0x00c221, 1, 0x01, 0x00000040 },
283 { 0x00c1b0, 8, 0x01, 0x0000000f },
284 { 0x00c1b8, 1, 0x01, 0x0fac6881 },
285 { 0x00c1b9, 1, 0x01, 0x00fac688 },
286 { 0x00c401, 1, 0x01, 0x00000001 },
287 { 0x00c402, 1, 0x01, 0x00010001 },
288 { 0x00c403, 2, 0x01, 0x00000001 },
289 { 0x00c40e, 1, 0x01, 0x00000020 },
290 { 0x00c413, 4, 0x01, 0x88888888 },
291 { 0x00c423, 1, 0x01, 0x0000ff00 },
292 { 0x00c420, 1, 0x01, 0x00880101 },
293 { 0x01e100, 1, 0x01, 0x00000001 },
294 {}
295};
296
297static const struct gf100_gr_pack
298gm204_grctx_pack_icmd[] = {
299 { gm204_grctx_init_icmd_0 },
300 {}
301};
302
303static const struct gf100_gr_init
304gm204_grctx_init_b197_0[] = {
305 { 0x000800, 8, 0x40, 0x00000000 },
306 { 0x000804, 8, 0x40, 0x00000000 },
307 { 0x000808, 8, 0x40, 0x00000400 },
308 { 0x00080c, 8, 0x40, 0x00000300 },
309 { 0x000810, 1, 0x04, 0x000000cf },
310 { 0x000850, 7, 0x40, 0x00000000 },
311 { 0x000814, 8, 0x40, 0x00000040 },
312 { 0x000818, 8, 0x40, 0x00000001 },
313 { 0x00081c, 8, 0x40, 0x00000000 },
314 { 0x000820, 8, 0x40, 0x00000000 },
315 { 0x001c00, 16, 0x10, 0x00000000 },
316 { 0x001c04, 16, 0x10, 0x00000000 },
317 { 0x001c08, 16, 0x10, 0x00000000 },
318 { 0x001c0c, 16, 0x10, 0x00000000 },
319 { 0x001d00, 16, 0x10, 0x00000000 },
320 { 0x001d04, 16, 0x10, 0x00000000 },
321 { 0x001d08, 16, 0x10, 0x00000000 },
322 { 0x001d0c, 16, 0x10, 0x00000000 },
323 { 0x001f00, 16, 0x08, 0x00000000 },
324 { 0x001f04, 16, 0x08, 0x00000000 },
325 { 0x001f80, 16, 0x08, 0x00000000 },
326 { 0x001f84, 16, 0x08, 0x00000000 },
327 { 0x002000, 1, 0x04, 0x00000000 },
328 { 0x002040, 1, 0x04, 0x00000011 },
329 { 0x002080, 1, 0x04, 0x00000020 },
330 { 0x0020c0, 1, 0x04, 0x00000030 },
331 { 0x002100, 1, 0x04, 0x00000040 },
332 { 0x002140, 1, 0x04, 0x00000051 },
333 { 0x00200c, 6, 0x40, 0x00000001 },
334 { 0x002010, 1, 0x04, 0x00000000 },
335 { 0x002050, 1, 0x04, 0x00000000 },
336 { 0x002090, 1, 0x04, 0x00000001 },
337 { 0x0020d0, 1, 0x04, 0x00000002 },
338 { 0x002110, 1, 0x04, 0x00000003 },
339 { 0x002150, 1, 0x04, 0x00000004 },
340 { 0x000380, 4, 0x20, 0x00000000 },
341 { 0x000384, 4, 0x20, 0x00000000 },
342 { 0x000388, 4, 0x20, 0x00000000 },
343 { 0x00038c, 4, 0x20, 0x00000000 },
344 { 0x000700, 4, 0x10, 0x00000000 },
345 { 0x000704, 4, 0x10, 0x00000000 },
346 { 0x000708, 4, 0x10, 0x00000000 },
347 { 0x002800, 128, 0x04, 0x00000000 },
348 { 0x000a00, 16, 0x20, 0x00000000 },
349 { 0x000a04, 16, 0x20, 0x00000000 },
350 { 0x000a08, 16, 0x20, 0x00000000 },
351 { 0x000a0c, 16, 0x20, 0x00000000 },
352 { 0x000a10, 16, 0x20, 0x00000000 },
353 { 0x000a14, 16, 0x20, 0x00000000 },
354 { 0x000a18, 16, 0x20, 0x00006420 },
355 { 0x000a1c, 16, 0x20, 0x00000000 },
356 { 0x000c00, 16, 0x10, 0x00000000 },
357 { 0x000c04, 16, 0x10, 0x00000000 },
358 { 0x000c08, 16, 0x10, 0x00000000 },
359 { 0x000c0c, 16, 0x10, 0x3f800000 },
360 { 0x000d00, 8, 0x08, 0xffff0000 },
361 { 0x000d04, 8, 0x08, 0xffff0000 },
362 { 0x000e00, 16, 0x10, 0x00000000 },
363 { 0x000e04, 16, 0x10, 0xffff0000 },
364 { 0x000e08, 16, 0x10, 0xffff0000 },
365 { 0x000d40, 4, 0x08, 0x00000000 },
366 { 0x000d44, 4, 0x08, 0x00000000 },
367 { 0x001e00, 8, 0x20, 0x00000001 },
368 { 0x001e04, 8, 0x20, 0x00000001 },
369 { 0x001e08, 8, 0x20, 0x00000002 },
370 { 0x001e0c, 8, 0x20, 0x00000001 },
371 { 0x001e10, 8, 0x20, 0x00000001 },
372 { 0x001e14, 8, 0x20, 0x00000002 },
373 { 0x001e18, 8, 0x20, 0x00000001 },
374 { 0x001480, 8, 0x10, 0x00000000 },
375 { 0x001484, 8, 0x10, 0x00000000 },
376 { 0x001488, 8, 0x10, 0x00000000 },
377 { 0x003400, 128, 0x04, 0x00000000 },
378 { 0x00030c, 1, 0x04, 0x00000001 },
379 { 0x001944, 1, 0x04, 0x00000000 },
380 { 0x001514, 1, 0x04, 0x00000000 },
381 { 0x000d68, 1, 0x04, 0x0000ffff },
382 { 0x00121c, 1, 0x04, 0x0fac6881 },
383 { 0x000fac, 1, 0x04, 0x00000001 },
384 { 0x001538, 1, 0x04, 0x00000001 },
385 { 0x000fe0, 2, 0x04, 0x00000000 },
386 { 0x000fe8, 1, 0x04, 0x00000014 },
387 { 0x000fec, 1, 0x04, 0x00000040 },
388 { 0x000ff0, 1, 0x04, 0x00000000 },
389 { 0x00179c, 1, 0x04, 0x00000000 },
390 { 0x001228, 1, 0x04, 0x00000400 },
391 { 0x00122c, 1, 0x04, 0x00000300 },
392 { 0x001230, 1, 0x04, 0x00010001 },
393 { 0x0007f8, 1, 0x04, 0x00000000 },
394 { 0x001208, 1, 0x04, 0x00000000 },
395 { 0x0015b4, 1, 0x04, 0x00000001 },
396 { 0x0015cc, 1, 0x04, 0x00000000 },
397 { 0x001534, 1, 0x04, 0x00000000 },
398 { 0x000754, 1, 0x04, 0x00000001 },
399 { 0x000fb0, 1, 0x04, 0x00000000 },
400 { 0x0015d0, 1, 0x04, 0x00000000 },
401 { 0x0011e0, 4, 0x04, 0x88888888 },
402 { 0x00153c, 1, 0x04, 0x00000000 },
403 { 0x0016b4, 1, 0x04, 0x00000003 },
404 { 0x000fa4, 1, 0x04, 0x00000001 },
405 { 0x000fbc, 4, 0x04, 0x0000ffff },
406 { 0x000fa8, 1, 0x04, 0x0000ffff },
407 { 0x000df8, 2, 0x04, 0x00000000 },
408 { 0x001948, 1, 0x04, 0x00000000 },
409 { 0x001970, 1, 0x04, 0x00000001 },
410 { 0x00161c, 1, 0x04, 0x000009f0 },
411 { 0x000dcc, 1, 0x04, 0x00000010 },
412 { 0x0015e4, 1, 0x04, 0x00000000 },
413 { 0x001160, 32, 0x04, 0x25e00040 },
414 { 0x001880, 32, 0x04, 0x00000000 },
415 { 0x000f84, 2, 0x04, 0x00000000 },
416 { 0x0017c8, 2, 0x04, 0x00000000 },
417 { 0x0017d0, 1, 0x04, 0x000000ff },
418 { 0x0017d4, 1, 0x04, 0xffffffff },
419 { 0x0017d8, 1, 0x04, 0x00000002 },
420 { 0x0017dc, 1, 0x04, 0x00000000 },
421 { 0x0015f4, 2, 0x04, 0x00000000 },
422 { 0x001434, 2, 0x04, 0x00000000 },
423 { 0x000d74, 1, 0x04, 0x00000000 },
424 { 0x0013a4, 1, 0x04, 0x00000000 },
425 { 0x001318, 1, 0x04, 0x00000001 },
426 { 0x001080, 2, 0x04, 0x00000000 },
427 { 0x001088, 2, 0x04, 0x00000001 },
428 { 0x001090, 1, 0x04, 0x00000000 },
429 { 0x001094, 1, 0x04, 0x00000001 },
430 { 0x001098, 1, 0x04, 0x00000000 },
431 { 0x00109c, 1, 0x04, 0x00000001 },
432 { 0x0010a0, 2, 0x04, 0x00000000 },
433 { 0x001644, 1, 0x04, 0x00000000 },
434 { 0x000748, 1, 0x04, 0x00000000 },
435 { 0x000de8, 1, 0x04, 0x00000000 },
436 { 0x001648, 1, 0x04, 0x00000000 },
437 { 0x0012a4, 1, 0x04, 0x00000000 },
438 { 0x001120, 4, 0x04, 0x00000000 },
439 { 0x001118, 1, 0x04, 0x00000000 },
440 { 0x00164c, 1, 0x04, 0x00000000 },
441 { 0x001658, 1, 0x04, 0x00000000 },
442 { 0x001910, 1, 0x04, 0x00000290 },
443 { 0x001518, 1, 0x04, 0x00000000 },
444 { 0x00165c, 1, 0x04, 0x00000001 },
445 { 0x001520, 1, 0x04, 0x00000000 },
446 { 0x001604, 1, 0x04, 0x00000000 },
447 { 0x001570, 1, 0x04, 0x00000000 },
448 { 0x0013b0, 2, 0x04, 0x3f800000 },
449 { 0x00020c, 1, 0x04, 0x00000000 },
450 { 0x001670, 1, 0x04, 0x30201000 },
451 { 0x001674, 1, 0x04, 0x70605040 },
452 { 0x001678, 1, 0x04, 0xb8a89888 },
453 { 0x00167c, 1, 0x04, 0xf8e8d8c8 },
454 { 0x00166c, 1, 0x04, 0x00000000 },
455 { 0x001680, 1, 0x04, 0x00ffff00 },
456 { 0x0012d0, 1, 0x04, 0x00000003 },
457 { 0x00113c, 1, 0x04, 0x00000000 },
458 { 0x0012d4, 1, 0x04, 0x00000002 },
459 { 0x001684, 2, 0x04, 0x00000000 },
460 { 0x000dac, 2, 0x04, 0x00001b02 },
461 { 0x000db4, 1, 0x04, 0x00000000 },
462 { 0x00168c, 1, 0x04, 0x00000000 },
463 { 0x0015bc, 1, 0x04, 0x00000000 },
464 { 0x00156c, 1, 0x04, 0x00000000 },
465 { 0x00187c, 1, 0x04, 0x00000000 },
466 { 0x001110, 1, 0x04, 0x00000001 },
467 { 0x000dc0, 3, 0x04, 0x00000000 },
468 { 0x000f40, 5, 0x04, 0x00000000 },
469 { 0x001234, 1, 0x04, 0x00000000 },
470 { 0x001690, 1, 0x04, 0x00000000 },
471 { 0x000790, 5, 0x04, 0x00000000 },
472 { 0x00077c, 1, 0x04, 0x00000000 },
473 { 0x001000, 1, 0x04, 0x00000010 },
474 { 0x0010fc, 1, 0x04, 0x00000000 },
475 { 0x001290, 1, 0x04, 0x00000000 },
476 { 0x000218, 1, 0x04, 0x00000010 },
477 { 0x0012d8, 1, 0x04, 0x00000000 },
478 { 0x0012dc, 1, 0x04, 0x00000010 },
479 { 0x000d94, 1, 0x04, 0x00000001 },
480 { 0x00155c, 2, 0x04, 0x00000000 },
481 { 0x001564, 1, 0x04, 0x00000fff },
482 { 0x001574, 2, 0x04, 0x00000000 },
483 { 0x00157c, 1, 0x04, 0x000fffff },
484 { 0x001354, 1, 0x04, 0x00000000 },
485 { 0x001610, 1, 0x04, 0x00000012 },
486 { 0x001608, 2, 0x04, 0x00000000 },
487 { 0x00260c, 1, 0x04, 0x00000000 },
488 { 0x0007ac, 1, 0x04, 0x00000000 },
489 { 0x00162c, 1, 0x04, 0x00000003 },
490 { 0x000210, 1, 0x04, 0x00000000 },
491 { 0x000320, 1, 0x04, 0x00000000 },
492 { 0x000324, 6, 0x04, 0x3f800000 },
493 { 0x000750, 1, 0x04, 0x00000000 },
494 { 0x000760, 1, 0x04, 0x39291909 },
495 { 0x000764, 1, 0x04, 0x79695949 },
496 { 0x000768, 1, 0x04, 0xb9a99989 },
497 { 0x00076c, 1, 0x04, 0xf9e9d9c9 },
498 { 0x000770, 1, 0x04, 0x30201000 },
499 { 0x000774, 1, 0x04, 0x70605040 },
500 { 0x000778, 1, 0x04, 0x00009080 },
501 { 0x000780, 1, 0x04, 0x39291909 },
502 { 0x000784, 1, 0x04, 0x79695949 },
503 { 0x000788, 1, 0x04, 0xb9a99989 },
504 { 0x00078c, 1, 0x04, 0xf9e9d9c9 },
505 { 0x0007d0, 1, 0x04, 0x30201000 },
506 { 0x0007d4, 1, 0x04, 0x70605040 },
507 { 0x0007d8, 1, 0x04, 0x00009080 },
508 { 0x001004, 1, 0x04, 0x00000000 },
509 { 0x001240, 8, 0x04, 0x00000000 },
510 { 0x00037c, 1, 0x04, 0x00000001 },
511 { 0x000740, 1, 0x04, 0x00000000 },
512 { 0x001148, 1, 0x04, 0x00000000 },
513 { 0x000fb4, 1, 0x04, 0x00000000 },
514 { 0x000fb8, 1, 0x04, 0x00000002 },
515 { 0x001130, 1, 0x04, 0x00000002 },
516 { 0x000fd4, 2, 0x04, 0x00000000 },
517 { 0x001030, 1, 0x04, 0x20181008 },
518 { 0x001034, 1, 0x04, 0x40383028 },
519 { 0x001038, 1, 0x04, 0x60585048 },
520 { 0x00103c, 1, 0x04, 0x80787068 },
521 { 0x000744, 1, 0x04, 0x00000000 },
522 { 0x002600, 1, 0x04, 0x00000000 },
523 { 0x001918, 1, 0x04, 0x00000000 },
524 { 0x00191c, 1, 0x04, 0x00000900 },
525 { 0x001920, 1, 0x04, 0x00000405 },
526 { 0x001308, 1, 0x04, 0x00000001 },
527 { 0x001924, 1, 0x04, 0x00000000 },
528 { 0x0013ac, 1, 0x04, 0x00000000 },
529 { 0x00192c, 1, 0x04, 0x00000001 },
530 { 0x00193c, 1, 0x04, 0x00002c1c },
531 { 0x000d7c, 1, 0x04, 0x00000000 },
532 { 0x000f8c, 1, 0x04, 0x00000000 },
533 { 0x0002c0, 1, 0x04, 0x00000001 },
534 { 0x001510, 1, 0x04, 0x00000000 },
535 { 0x001940, 1, 0x04, 0x00000000 },
536 { 0x000ff4, 2, 0x04, 0x00000000 },
537 { 0x00194c, 2, 0x04, 0x00000000 },
538 { 0x001968, 1, 0x04, 0x00000000 },
539 { 0x001590, 1, 0x04, 0x0000003f },
540 { 0x0007e8, 4, 0x04, 0x00000000 },
541 { 0x00196c, 1, 0x04, 0x00000011 },
542 { 0x0002e4, 1, 0x04, 0x0000b001 },
543 { 0x00036c, 2, 0x04, 0x00000000 },
544 { 0x00197c, 1, 0x04, 0x00000000 },
545 { 0x000fcc, 2, 0x04, 0x00000000 },
546 { 0x0002d8, 1, 0x04, 0x00000040 },
547 { 0x001980, 1, 0x04, 0x00000080 },
548 { 0x001504, 1, 0x04, 0x00000080 },
549 { 0x001984, 1, 0x04, 0x00000000 },
550 { 0x000f60, 1, 0x04, 0x00000000 },
551 { 0x000f64, 1, 0x04, 0x00400040 },
552 { 0x000f68, 1, 0x04, 0x00002212 },
553 { 0x000f6c, 1, 0x04, 0x08080203 },
554 { 0x001108, 1, 0x04, 0x00000008 },
555 { 0x000f70, 1, 0x04, 0x00080001 },
556 { 0x000ffc, 1, 0x04, 0x00000000 },
557 { 0x001134, 1, 0x04, 0x00000000 },
558 { 0x000f1c, 1, 0x04, 0x00000000 },
559 { 0x0011f8, 1, 0x04, 0x00000000 },
560 { 0x001138, 1, 0x04, 0x00000001 },
561 { 0x000300, 1, 0x04, 0x00000001 },
562 { 0x0013a8, 1, 0x04, 0x00000000 },
563 { 0x001224, 1, 0x04, 0x00000000 },
564 { 0x0012ec, 1, 0x04, 0x00000000 },
565 { 0x001310, 1, 0x04, 0x00000000 },
566 { 0x001314, 1, 0x04, 0x00000001 },
567 { 0x001380, 1, 0x04, 0x00000000 },
568 { 0x001384, 4, 0x04, 0x00000001 },
569 { 0x001394, 1, 0x04, 0x00000000 },
570 { 0x00139c, 1, 0x04, 0x00000000 },
571 { 0x001398, 1, 0x04, 0x00000000 },
572 { 0x001594, 1, 0x04, 0x00000000 },
573 { 0x001598, 4, 0x04, 0x00000001 },
574 { 0x000f54, 3, 0x04, 0x00000000 },
575 { 0x0019bc, 1, 0x04, 0x00000000 },
576 { 0x000f9c, 2, 0x04, 0x00000000 },
577 { 0x0012cc, 1, 0x04, 0x00000000 },
578 { 0x0012e8, 1, 0x04, 0x00000000 },
579 { 0x00130c, 1, 0x04, 0x00000001 },
580 { 0x001360, 8, 0x04, 0x00000000 },
581 { 0x00133c, 2, 0x04, 0x00000001 },
582 { 0x001344, 1, 0x04, 0x00000002 },
583 { 0x001348, 2, 0x04, 0x00000001 },
584 { 0x001350, 1, 0x04, 0x00000002 },
585 { 0x001358, 1, 0x04, 0x00000001 },
586 { 0x0012e4, 1, 0x04, 0x00000000 },
587 { 0x00131c, 4, 0x04, 0x00000000 },
588 { 0x0019c0, 1, 0x04, 0x00000000 },
589 { 0x001140, 1, 0x04, 0x00000000 },
590 { 0x000dd0, 1, 0x04, 0x00000000 },
591 { 0x000dd4, 1, 0x04, 0x00000001 },
592 { 0x0002f4, 1, 0x04, 0x00000000 },
593 { 0x0019c4, 1, 0x04, 0x00000000 },
594 { 0x0019c8, 1, 0x04, 0x00001500 },
595 { 0x00135c, 1, 0x04, 0x00000000 },
596 { 0x000f90, 1, 0x04, 0x00000000 },
597 { 0x0019e0, 8, 0x04, 0x00000001 },
598 { 0x0019cc, 1, 0x04, 0x00000001 },
599 { 0x00111c, 1, 0x04, 0x00000001 },
600 { 0x0015b8, 1, 0x04, 0x00000000 },
601 { 0x001a00, 1, 0x04, 0x00001111 },
602 { 0x001a04, 7, 0x04, 0x00000000 },
603 { 0x000d6c, 2, 0x04, 0xffff0000 },
604 { 0x0010f8, 1, 0x04, 0x00001010 },
605 { 0x000d80, 5, 0x04, 0x00000000 },
606 { 0x000da0, 1, 0x04, 0x00000000 },
607 { 0x0007a4, 2, 0x04, 0x00000000 },
608 { 0x001508, 1, 0x04, 0x80000000 },
609 { 0x00150c, 1, 0x04, 0x40000000 },
610 { 0x001668, 1, 0x04, 0x00000000 },
611 { 0x000318, 2, 0x04, 0x00000008 },
612 { 0x000d9c, 1, 0x04, 0x00000001 },
613 { 0x000f14, 1, 0x04, 0x00000000 },
614 { 0x000374, 1, 0x04, 0x00000000 },
615 { 0x000378, 1, 0x04, 0x0000000c },
616 { 0x0007dc, 1, 0x04, 0x00000000 },
617 { 0x00074c, 1, 0x04, 0x00000055 },
618 { 0x001420, 1, 0x04, 0x00000003 },
619 { 0x001008, 1, 0x04, 0x00000008 },
620 { 0x00100c, 1, 0x04, 0x00000040 },
621 { 0x001010, 1, 0x04, 0x0000012c },
622 { 0x000d60, 1, 0x04, 0x00000040 },
623 { 0x001018, 1, 0x04, 0x00000020 },
624 { 0x00101c, 1, 0x04, 0x00000001 },
625 { 0x001020, 1, 0x04, 0x00000020 },
626 { 0x001024, 1, 0x04, 0x00000001 },
627 { 0x001444, 3, 0x04, 0x00000000 },
628 { 0x000360, 1, 0x04, 0x20164010 },
629 { 0x000364, 1, 0x04, 0x00000020 },
630 { 0x000368, 1, 0x04, 0x00000000 },
631 { 0x000da8, 1, 0x04, 0x00000030 },
632 { 0x000de4, 1, 0x04, 0x00000000 },
633 { 0x000204, 1, 0x04, 0x00000006 },
634 { 0x0002d0, 1, 0x04, 0x003fffff },
635 { 0x001220, 1, 0x04, 0x00000005 },
636 { 0x000fdc, 1, 0x04, 0x00000000 },
637 { 0x000f98, 1, 0x04, 0x00400008 },
638 { 0x001284, 1, 0x04, 0x08000080 },
639 { 0x001450, 1, 0x04, 0x00400008 },
640 { 0x001454, 1, 0x04, 0x08000080 },
641 { 0x000214, 1, 0x04, 0x00000000 },
642 {}
643};
644
645static const struct gf100_gr_pack
646gm204_grctx_pack_mthd[] = {
647 { gm204_grctx_init_b197_0, 0xb197 },
648 { gf100_grctx_init_902d_0, 0x902d },
649 {}
650};
651
652static const struct gf100_gr_init
653gm204_grctx_init_fe_0[] = {
654 { 0x404004, 8, 0x04, 0x00000000 },
655 { 0x404024, 1, 0x04, 0x0000e000 },
656 { 0x404028, 8, 0x04, 0x00000000 },
657 { 0x4040a8, 8, 0x04, 0x00000000 },
658 { 0x4040c8, 1, 0x04, 0xf801008f },
659 { 0x4040d0, 6, 0x04, 0x00000000 },
660 { 0x4040f8, 1, 0x04, 0x00000000 },
661 { 0x404100, 10, 0x04, 0x00000000 },
662 { 0x404130, 2, 0x04, 0x00000000 },
663 { 0x404150, 1, 0x04, 0x0000002e },
664 { 0x404154, 2, 0x04, 0x00000800 },
665 { 0x404164, 1, 0x04, 0x00000045 },
666 { 0x40417c, 2, 0x04, 0x00000000 },
667 { 0x404194, 1, 0x04, 0x33000700 },
668 { 0x4041a0, 4, 0x04, 0x00000000 },
669 { 0x4041c4, 2, 0x04, 0x00000000 },
670 {}
671};
672
673static const struct gf100_gr_init
674gm204_grctx_init_ds_0[] = {
675 { 0x405800, 1, 0x04, 0x8f8001bf },
676 { 0x405830, 1, 0x04, 0x04001000 },
677 { 0x405834, 1, 0x04, 0x08000000 },
678 { 0x405838, 1, 0x04, 0x00010000 },
679 { 0x405854, 1, 0x04, 0x00000000 },
680 { 0x405870, 4, 0x04, 0x00000001 },
681 { 0x405a00, 2, 0x04, 0x00000000 },
682 { 0x405a18, 1, 0x04, 0x00000000 },
683 { 0x405a1c, 1, 0x04, 0x000000ff },
684 {}
685};
686
687static const struct gf100_gr_init
688gm204_grctx_init_cwd_0[] = {
689 { 0x405b00, 1, 0x04, 0x00000000 },
690 { 0x405b10, 1, 0x04, 0x00001000 },
691 { 0x405b20, 1, 0x04, 0x04000000 },
692 { 0x405b60, 6, 0x04, 0x00000000 },
693 { 0x405ba0, 6, 0x04, 0x00000000 },
694 {}
695};
696
697static const struct gf100_gr_init
698gm204_grctx_init_pd_0[] = {
699 { 0x406020, 1, 0x04, 0x17410001 },
700 { 0x406028, 4, 0x04, 0x00000001 },
701 { 0x4064a8, 1, 0x04, 0x00000000 },
702 { 0x4064ac, 1, 0x04, 0x00003fff },
703 { 0x4064b0, 3, 0x04, 0x00000000 },
704 { 0x4064c0, 1, 0x04, 0x80400280 },
705 { 0x4064c4, 1, 0x04, 0x0400ffff },
706 { 0x4064c8, 1, 0x04, 0x01800780 },
707 { 0x4064cc, 9, 0x04, 0x00000000 },
708 { 0x4064fc, 1, 0x04, 0x0000022a },
709 { 0x406500, 1, 0x04, 0x00000000 },
710 {}
711};
712
713static const struct gf100_gr_init
714gm204_grctx_init_be_0[] = {
715 { 0x408800, 1, 0x04, 0x32882a3c },
716 { 0x408804, 1, 0x04, 0x00000040 },
717 { 0x408808, 1, 0x04, 0x1003e005 },
718 { 0x408840, 1, 0x04, 0x00000e0b },
719 { 0x408900, 1, 0x04, 0xb080b801 },
720 { 0x408904, 1, 0x04, 0x63038001 },
721 { 0x408908, 1, 0x04, 0x12c8502f },
722 { 0x408980, 1, 0x04, 0x0000011d },
723 {}
724};
725
726static const struct gf100_gr_pack
727gm204_grctx_pack_hub[] = {
728 { gf100_grctx_init_main_0 },
729 { gm204_grctx_init_fe_0 },
730 { gk110_grctx_init_pri_0 },
731 { gk104_grctx_init_memfmt_0 },
732 { gm204_grctx_init_ds_0 },
733 { gm204_grctx_init_cwd_0 },
734 { gm204_grctx_init_pd_0 },
735 { gk208_grctx_init_rstr2d_0 },
736 { gk104_grctx_init_scc_0 },
737 { gm204_grctx_init_be_0 },
738 {}
739};
740
741static const struct gf100_gr_init
742gm204_grctx_init_prop_0[] = {
743 { 0x418400, 1, 0x04, 0x38e01e00 },
744 { 0x418404, 1, 0x04, 0x70001fff },
745 { 0x41840c, 1, 0x04, 0x20001008 },
746 { 0x418410, 2, 0x04, 0x0fff0fff },
747 { 0x418418, 1, 0x04, 0x07ff07ff },
748 { 0x41841c, 1, 0x04, 0x3feffbff },
749 { 0x418450, 6, 0x04, 0x00000000 },
750 { 0x418468, 1, 0x04, 0x00000001 },
751 { 0x41846c, 2, 0x04, 0x00000000 },
752 {}
753};
754
755static const struct gf100_gr_init
756gm204_grctx_init_gpc_unk_1[] = {
757 { 0x418600, 1, 0x04, 0x0000007f },
758 { 0x418684, 1, 0x04, 0x0000001f },
759 { 0x418700, 1, 0x04, 0x00000002 },
760 { 0x418704, 1, 0x04, 0x00000080 },
761 { 0x418708, 1, 0x04, 0x40000000 },
762 { 0x41870c, 2, 0x04, 0x00000000 },
763 { 0x418728, 1, 0x04, 0x00010000 },
764 {}
765};
766
767static const struct gf100_gr_init
768gm204_grctx_init_setup_0[] = {
769 { 0x418800, 1, 0x04, 0x7006863a },
770 { 0x418808, 1, 0x04, 0x00000000 },
771 { 0x418810, 1, 0x04, 0x00000000 },
772 { 0x418828, 1, 0x04, 0x00000044 },
773 { 0x418830, 1, 0x04, 0x10000001 },
774 { 0x4188d8, 1, 0x04, 0x00000008 },
775 { 0x4188e0, 1, 0x04, 0x01000000 },
776 { 0x4188e8, 5, 0x04, 0x00000000 },
777 { 0x4188fc, 1, 0x04, 0x20100058 },
778 {}
779};
780
781static const struct gf100_gr_init
782gm204_grctx_init_gpm_0[] = {
783 { 0x418c10, 8, 0x04, 0x00000000 },
784 { 0x418c40, 1, 0x04, 0xffffffff },
785 { 0x418c6c, 1, 0x04, 0x00000001 },
786 { 0x418c80, 1, 0x04, 0x20200000 },
787 {}
788};
789
790static const struct gf100_gr_init
791gm204_grctx_init_gpc_unk_2[] = {
792 { 0x418e00, 1, 0x04, 0x90040000 },
793 { 0x418e24, 1, 0x04, 0x00000000 },
794 { 0x418e28, 1, 0x04, 0x00000030 },
795 { 0x418e2c, 1, 0x04, 0x00000100 },
796 { 0x418e30, 3, 0x04, 0x00000000 },
797 { 0x418e40, 22, 0x04, 0x00000000 },
798 { 0x418ea0, 12, 0x04, 0x00000000 },
799 {}
800};
801
802static const struct gf100_gr_pack
803gm204_grctx_pack_gpc[] = {
804 { gm107_grctx_init_gpc_unk_0 },
805 { gm204_grctx_init_prop_0 },
806 { gm204_grctx_init_gpc_unk_1 },
807 { gm204_grctx_init_setup_0 },
808 { gf100_grctx_init_zcull_0 },
809 { gk208_grctx_init_crstr_0 },
810 { gm204_grctx_init_gpm_0 },
811 { gm204_grctx_init_gpc_unk_2 },
812 { gf100_grctx_init_gcc_0 },
813 {}
814};
815
816static const struct gf100_gr_init
817gm204_grctx_init_pe_0[] = {
818 { 0x419848, 1, 0x04, 0x00000000 },
819 { 0x419864, 1, 0x04, 0x00000029 },
820 { 0x419888, 1, 0x04, 0x00000000 },
821 {}
822};
823
824static const struct gf100_gr_init
825gm204_grctx_init_tex_0[] = {
826 { 0x419a00, 1, 0x04, 0x000100f0 },
827 { 0x419a04, 1, 0x04, 0x00000005 },
828 { 0x419a08, 1, 0x04, 0x00000621 },
829 { 0x419a0c, 1, 0x04, 0x00320000 },
830 { 0x419a10, 1, 0x04, 0x00000000 },
831 { 0x419a14, 1, 0x04, 0x00000200 },
832 { 0x419a1c, 1, 0x04, 0x0010c000 },
833 { 0x419a20, 1, 0x04, 0x20008a00 },
834 { 0x419a30, 1, 0x04, 0x00000001 },
835 { 0x419a3c, 1, 0x04, 0x0000181e },
836 { 0x419ac4, 1, 0x04, 0x00000000 },
837 {}
838};
839
840static const struct gf100_gr_init
841gm204_grctx_init_mpc_0[] = {
842 { 0x419c00, 1, 0x04, 0x0000009a },
843 { 0x419c04, 1, 0x04, 0x80000bd6 },
844 { 0x419c08, 1, 0x04, 0x00000002 },
845 { 0x419c20, 1, 0x04, 0x00000000 },
846 { 0x419c24, 1, 0x04, 0x00084210 },
847 { 0x419c28, 1, 0x04, 0x3efbefbe },
848 { 0x419c2c, 1, 0x04, 0x00000000 },
849 { 0x419c34, 1, 0x04, 0x71ff1ff3 },
850 { 0x419c3c, 1, 0x04, 0x00001919 },
851 { 0x419c50, 1, 0x04, 0x00000005 },
852 {}
853};
854
855static const struct gf100_gr_init
856gm204_grctx_init_l1c_0[] = {
857 { 0x419c84, 1, 0x04, 0x0000003e },
858 { 0x419c90, 1, 0x04, 0x0000000a },
859 {}
860};
861
862static const struct gf100_gr_init
863gm204_grctx_init_sm_0[] = {
864 { 0x419e04, 3, 0x04, 0x00000000 },
865 { 0x419e10, 1, 0x04, 0x00001c02 },
866 { 0x419e44, 1, 0x04, 0x00d3eff2 },
867 { 0x419e48, 1, 0x04, 0x00000000 },
868 { 0x419e4c, 1, 0x04, 0x0000007f },
869 { 0x419e50, 1, 0x04, 0x00000000 },
870 { 0x419e58, 6, 0x04, 0x00000000 },
871 { 0x419e74, 10, 0x04, 0x00000000 },
872 { 0x419eac, 1, 0x04, 0x0001cf8b },
873 { 0x419eb0, 1, 0x04, 0x00030300 },
874 { 0x419eb8, 1, 0x04, 0x40000000 },
875 { 0x419ef0, 24, 0x04, 0x00000000 },
876 { 0x419f68, 2, 0x04, 0x00000000 },
877 { 0x419f70, 1, 0x04, 0x00000020 },
878 { 0x419f78, 1, 0x04, 0x00010beb },
879 { 0x419f7c, 1, 0x04, 0x00000000 },
880 {}
881};
882
883static const struct gf100_gr_pack
884gm204_grctx_pack_tpc[] = {
885 { gm204_grctx_init_pe_0 },
886 { gm204_grctx_init_tex_0 },
887 { gm204_grctx_init_mpc_0 },
888 { gm204_grctx_init_l1c_0 },
889 { gm204_grctx_init_sm_0 },
890 {}
891};
892
893static const struct gf100_gr_init
894gm204_grctx_init_pes_0[] = {
895 { 0x41be24, 1, 0x04, 0x0000000e },
896 {}
897};
898
899static const struct gf100_gr_init
900gm204_grctx_init_cbm_0[] = {
901 { 0x41bec0, 1, 0x04, 0x00000000 },
902 { 0x41bec4, 1, 0x04, 0x01030000 },
903 { 0x41bee4, 1, 0x04, 0x00000000 },
904 { 0x41bef0, 1, 0x04, 0x000003ff },
905 { 0x41bef4, 2, 0x04, 0x00000000 },
906 {}
907};
908
909static const struct gf100_gr_pack
910gm204_grctx_pack_ppc[] = {
911 { gm204_grctx_init_pes_0 },
912 { gm204_grctx_init_cbm_0 },
913 { gm107_grctx_init_wwdx_0 },
914 {}
915};
916
917/*******************************************************************************
918 * PGRAPH context implementation
919 ******************************************************************************/
920
921static void
922gm204_grctx_generate_tpcid(struct gf100_gr_priv *priv)
923{
924 int gpc, tpc, id;
925
926 for (tpc = 0, id = 0; tpc < 4; tpc++) {
927 for (gpc = 0; gpc < priv->gpc_nr; gpc++) {
928 if (tpc < priv->tpc_nr[gpc]) {
929 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x698), id);
930 nv_wr32(priv, GPC_UNIT(gpc, 0x0c10 + tpc * 4), id);
931 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x088), id);
932 id++;
933 }
934 }
935 }
936}
937
938static void
939gm204_grctx_generate_rop_active_fbps(struct gf100_gr_priv *priv)
940{
941 const u32 fbp_count = nv_rd32(priv, 0x12006c);
942 nv_mask(priv, 0x408850, 0x0000000f, fbp_count); /* zrop */
943 nv_mask(priv, 0x408958, 0x0000000f, fbp_count); /* crop */
944}
945
946static void
947gm204_grctx_generate_405b60(struct gf100_gr_priv *priv)
948{
949 const u32 dist_nr = DIV_ROUND_UP(priv->tpc_total, 4);
950 u32 dist[TPC_MAX] = {};
951 u32 gpcs[GPC_MAX] = {};
952 u8 tpcnr[GPC_MAX];
953 int tpc, gpc, i;
954
955 memcpy(tpcnr, priv->tpc_nr, sizeof(priv->tpc_nr));
956
957 /* won't result in the same distribution as the binary driver where
958 * some of the gpcs have more tpcs than others, but this shall do
959 * for the moment. the code for earlier gpus has this issue too.
960 */
961 for (gpc = -1, i = 0; i < priv->tpc_total; i++) {
962 do {
963 gpc = (gpc + 1) % priv->gpc_nr;
964 } while(!tpcnr[gpc]);
965 tpc = priv->tpc_nr[gpc] - tpcnr[gpc]--;
966
967 dist[i / 4] |= ((gpc << 4) | tpc) << ((i % 4) * 8);
968 gpcs[gpc] |= i << (tpc * 8);
969 }
970
971 for (i = 0; i < dist_nr; i++)
972 nv_wr32(priv, 0x405b60 + (i * 4), dist[i]);
973 for (i = 0; i < priv->gpc_nr; i++)
974 nv_wr32(priv, 0x405ba0 + (i * 4), gpcs[i]);
975}
976
977static void
978gm204_grctx_generate_main(struct gf100_gr_priv *priv, struct gf100_grctx *info)
979{
980 struct gf100_grctx_oclass *oclass = (void *)nv_engine(priv)->cclass;
981 u32 tmp;
982 int i;
983
984 gf100_gr_mmio(priv, oclass->hub);
985 gf100_gr_mmio(priv, oclass->gpc);
986 gf100_gr_mmio(priv, oclass->zcull);
987 gf100_gr_mmio(priv, oclass->tpc);
988 gf100_gr_mmio(priv, oclass->ppc);
989
990 nv_wr32(priv, 0x404154, 0x00000000);
991
992 oclass->bundle(info);
993 oclass->pagepool(info);
994 oclass->attrib(info);
995 oclass->unkn(priv);
996
997 gm204_grctx_generate_tpcid(priv);
998 gf100_grctx_generate_r406028(priv);
999 gk104_grctx_generate_r418bb8(priv);
1000
1001 for (i = 0; i < 8; i++)
1002 nv_wr32(priv, 0x4064d0 + (i * 0x04), 0x00000000);
1003 nv_wr32(priv, 0x406500, 0x00000000);
1004
1005 nv_wr32(priv, 0x405b00, (priv->tpc_total << 8) | priv->gpc_nr);
1006
1007 gm204_grctx_generate_rop_active_fbps(priv);
1008
1009 for (tmp = 0, i = 0; i < priv->gpc_nr; i++)
1010 tmp |= ((1 << priv->tpc_nr[i]) - 1) << (i * 4);
1011 nv_wr32(priv, 0x4041c4, tmp);
1012
1013 gm204_grctx_generate_405b60(priv);
1014
1015 gf100_gr_icmd(priv, oclass->icmd);
1016 nv_wr32(priv, 0x404154, 0x00000800);
1017 gf100_gr_mthd(priv, oclass->mthd);
1018
1019 nv_mask(priv, 0x418e94, 0xffffffff, 0xc4230000);
1020 nv_mask(priv, 0x418e4c, 0xffffffff, 0x70000000);
1021}
1022
1023struct nvkm_oclass *
1024gm204_grctx_oclass = &(struct gf100_grctx_oclass) {
1025 .base.handle = NV_ENGCTX(GR, 0x24),
1026 .base.ofuncs = &(struct nvkm_ofuncs) {
1027 .ctor = gf100_gr_context_ctor,
1028 .dtor = gf100_gr_context_dtor,
1029 .init = _nvkm_gr_context_init,
1030 .fini = _nvkm_gr_context_fini,
1031 .rd32 = _nvkm_gr_context_rd32,
1032 .wr32 = _nvkm_gr_context_wr32,
1033 },
1034 .main = gm204_grctx_generate_main,
1035 .unkn = gk104_grctx_generate_unkn,
1036 .hub = gm204_grctx_pack_hub,
1037 .gpc = gm204_grctx_pack_gpc,
1038 .zcull = gf100_grctx_pack_zcull,
1039 .tpc = gm204_grctx_pack_tpc,
1040 .ppc = gm204_grctx_pack_ppc,
1041 .icmd = gm204_grctx_pack_icmd,
1042 .mthd = gm204_grctx_pack_mthd,
1043 .bundle = gm107_grctx_generate_bundle,
1044 .bundle_size = 0x3000,
1045 .bundle_min_gpm_fifo_depth = 0x180,
1046 .bundle_token_limit = 0x780,
1047 .pagepool = gm107_grctx_generate_pagepool,
1048 .pagepool_size = 0x20000,
1049 .attrib = gm107_grctx_generate_attrib,
1050 .attrib_nr_max = 0x600,
1051 .attrib_nr = 0x400,
1052 .alpha_nr_max = 0x1800,
1053 .alpha_nr = 0x1000,
1054}.base;
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.h b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.h
index 3110f63e00cb..f6cf0ab9f37e 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.h
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.h
@@ -247,4 +247,16 @@ extern const struct gf100_gr_init gk110_gr_init_tex_0[];
247extern const struct gf100_gr_init gk110_gr_init_sm_0[]; 247extern const struct gf100_gr_init gk110_gr_init_sm_0[];
248 248
249extern const struct gf100_gr_init gk208_gr_init_gpc_unk_0[]; 249extern const struct gf100_gr_init gk208_gr_init_gpc_unk_0[];
250
251extern const struct gf100_gr_init gm107_gr_init_scc_0[];
252extern const struct gf100_gr_init gm107_gr_init_prop_0[];
253extern const struct gf100_gr_init gm107_gr_init_setup_1[];
254extern const struct gf100_gr_init gm107_gr_init_zcull_0[];
255extern const struct gf100_gr_init gm107_gr_init_gpc_unk_1[];
256extern const struct gf100_gr_init gm107_gr_init_tex_0[];
257extern const struct gf100_gr_init gm107_gr_init_l1c_0[];
258extern const struct gf100_gr_init gm107_gr_init_wwdx_0[];
259extern const struct gf100_gr_init gm107_gr_init_cbm_0[];
260void gm107_gr_init_bios(struct gf100_gr_priv *);
261
250#endif 262#endif
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.c
index 1da1d6354bb5..a5ebd459bc24 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.c
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.c
@@ -71,7 +71,7 @@ gm107_gr_init_ds_0[] = {
71 {} 71 {}
72}; 72};
73 73
74static const struct gf100_gr_init 74const struct gf100_gr_init
75gm107_gr_init_scc_0[] = { 75gm107_gr_init_scc_0[] = {
76 { 0x40803c, 1, 0x04, 0x00000010 }, 76 { 0x40803c, 1, 0x04, 0x00000010 },
77 {} 77 {}
@@ -85,14 +85,14 @@ gm107_gr_init_sked_0[] = {
85 {} 85 {}
86}; 86};
87 87
88static const struct gf100_gr_init 88const struct gf100_gr_init
89gm107_gr_init_prop_0[] = { 89gm107_gr_init_prop_0[] = {
90 { 0x418408, 1, 0x04, 0x00000000 }, 90 { 0x418408, 1, 0x04, 0x00000000 },
91 { 0x4184a0, 1, 0x04, 0x00000000 }, 91 { 0x4184a0, 1, 0x04, 0x00000000 },
92 {} 92 {}
93}; 93};
94 94
95static const struct gf100_gr_init 95const struct gf100_gr_init
96gm107_gr_init_setup_1[] = { 96gm107_gr_init_setup_1[] = {
97 { 0x4188c8, 2, 0x04, 0x00000000 }, 97 { 0x4188c8, 2, 0x04, 0x00000000 },
98 { 0x4188d0, 1, 0x04, 0x00010000 }, 98 { 0x4188d0, 1, 0x04, 0x00010000 },
@@ -100,7 +100,7 @@ gm107_gr_init_setup_1[] = {
100 {} 100 {}
101}; 101};
102 102
103static const struct gf100_gr_init 103const struct gf100_gr_init
104gm107_gr_init_zcull_0[] = { 104gm107_gr_init_zcull_0[] = {
105 { 0x418910, 1, 0x04, 0x00010001 }, 105 { 0x418910, 1, 0x04, 0x00010001 },
106 { 0x418914, 1, 0x04, 0x00000301 }, 106 { 0x418914, 1, 0x04, 0x00000301 },
@@ -111,7 +111,7 @@ gm107_gr_init_zcull_0[] = {
111 {} 111 {}
112}; 112};
113 113
114static const struct gf100_gr_init 114const struct gf100_gr_init
115gm107_gr_init_gpc_unk_1[] = { 115gm107_gr_init_gpc_unk_1[] = {
116 { 0x418d00, 1, 0x04, 0x00000000 }, 116 { 0x418d00, 1, 0x04, 0x00000000 },
117 { 0x418f00, 1, 0x04, 0x00000400 }, 117 { 0x418f00, 1, 0x04, 0x00000400 },
@@ -134,7 +134,7 @@ gm107_gr_init_tpccs_0[] = {
134 {} 134 {}
135}; 135};
136 136
137static const struct gf100_gr_init 137const struct gf100_gr_init
138gm107_gr_init_tex_0[] = { 138gm107_gr_init_tex_0[] = {
139 { 0x419ab0, 1, 0x04, 0x00000000 }, 139 { 0x419ab0, 1, 0x04, 0x00000000 },
140 { 0x419ab8, 1, 0x04, 0x000000e7 }, 140 { 0x419ab8, 1, 0x04, 0x000000e7 },
@@ -160,7 +160,7 @@ gm107_gr_init_pe_0[] = {
160 {} 160 {}
161}; 161};
162 162
163static const struct gf100_gr_init 163const struct gf100_gr_init
164gm107_gr_init_l1c_0[] = { 164gm107_gr_init_l1c_0[] = {
165 { 0x419c98, 1, 0x04, 0x00000000 }, 165 { 0x419c98, 1, 0x04, 0x00000000 },
166 { 0x419cc0, 2, 0x04, 0x00000000 }, 166 { 0x419cc0, 2, 0x04, 0x00000000 },
@@ -206,14 +206,14 @@ gm107_gr_init_pes_0[] = {
206 {} 206 {}
207}; 207};
208 208
209static const struct gf100_gr_init 209const struct gf100_gr_init
210gm107_gr_init_wwdx_0[] = { 210gm107_gr_init_wwdx_0[] = {
211 { 0x41bfd4, 1, 0x04, 0x00800000 }, 211 { 0x41bfd4, 1, 0x04, 0x00800000 },
212 { 0x41bfdc, 1, 0x04, 0x00000000 }, 212 { 0x41bfdc, 1, 0x04, 0x00000000 },
213 {} 213 {}
214}; 214};
215 215
216static const struct gf100_gr_init 216const struct gf100_gr_init
217gm107_gr_init_cbm_0[] = { 217gm107_gr_init_cbm_0[] = {
218 { 0x41becc, 1, 0x04, 0x00000000 }, 218 { 0x41becc, 1, 0x04, 0x00000000 },
219 {} 219 {}
@@ -291,7 +291,7 @@ gm107_gr_pack_mmio[] = {
291 * PGRAPH engine/subdev functions 291 * PGRAPH engine/subdev functions
292 ******************************************************************************/ 292 ******************************************************************************/
293 293
294static void 294void
295gm107_gr_init_bios(struct gf100_gr_priv *priv) 295gm107_gr_init_bios(struct gf100_gr_priv *priv)
296{ 296{
297 static const struct { 297 static const struct {
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm204.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm204.c
new file mode 100644
index 000000000000..cb7d0b415958
--- /dev/null
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gm204.c
@@ -0,0 +1,387 @@
1/*
2 * Copyright 2015 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs <bskeggs@redhat.com>
23 */
24#include "gf100.h"
25#include "ctxgf100.h"
26
27#include <nvif/class.h>
28
29/*******************************************************************************
30 * Graphics object classes
31 ******************************************************************************/
32
33static struct nvkm_oclass
34gm204_gr_sclass[] = {
35 { FERMI_TWOD_A, &nvkm_object_ofuncs },
36 { KEPLER_INLINE_TO_MEMORY_B, &nvkm_object_ofuncs },
37 { MAXWELL_B, &gf100_fermi_ofuncs, gf100_gr_9097_omthds },
38 { MAXWELL_COMPUTE_B, &nvkm_object_ofuncs, gf100_gr_90c0_omthds },
39 {}
40};
41
42/*******************************************************************************
43 * PGRAPH register lists
44 ******************************************************************************/
45
46static const struct gf100_gr_init
47gm204_gr_init_main_0[] = {
48 { 0x400080, 1, 0x04, 0x003003e2 },
49 { 0x400088, 1, 0x04, 0xe007bfe7 },
50 { 0x40008c, 1, 0x04, 0x00060000 },
51 { 0x400090, 1, 0x04, 0x00000030 },
52 { 0x40013c, 1, 0x04, 0x003901f3 },
53 { 0x400140, 1, 0x04, 0x00000100 },
54 { 0x400144, 1, 0x04, 0x00000000 },
55 { 0x400148, 1, 0x04, 0x00000110 },
56 { 0x400138, 1, 0x04, 0x00000000 },
57 { 0x400130, 2, 0x04, 0x00000000 },
58 { 0x400124, 1, 0x04, 0x00000002 },
59 {}
60};
61
62static const struct gf100_gr_init
63gm204_gr_init_fe_0[] = {
64 { 0x40415c, 1, 0x04, 0x00000000 },
65 { 0x404170, 1, 0x04, 0x00000000 },
66 { 0x4041b4, 1, 0x04, 0x00000000 },
67 { 0x4041b8, 1, 0x04, 0x00000010 },
68 {}
69};
70
71static const struct gf100_gr_init
72gm204_gr_init_ds_0[] = {
73 { 0x40583c, 1, 0x04, 0x00000000 },
74 { 0x405844, 1, 0x04, 0x00ffffff },
75 { 0x40584c, 1, 0x04, 0x00000001 },
76 { 0x405850, 1, 0x04, 0x00000000 },
77 { 0x405900, 1, 0x04, 0x00000000 },
78 { 0x405908, 1, 0x04, 0x00000000 },
79 {}
80};
81
82static const struct gf100_gr_init
83gm204_gr_init_sked_0[] = {
84 { 0x407010, 1, 0x04, 0x00000000 },
85 { 0x407040, 1, 0x04, 0x80440434 },
86 { 0x407048, 1, 0x04, 0x00000008 },
87 {}
88};
89
90static const struct gf100_gr_init
91gm204_gr_init_tpccs_0[] = {
92 { 0x419d60, 1, 0x04, 0x0000003f },
93 { 0x419d88, 3, 0x04, 0x00000000 },
94 { 0x419dc4, 1, 0x04, 0x00000000 },
95 { 0x419dc8, 1, 0x04, 0x00000501 },
96 { 0x419dd0, 1, 0x04, 0x00000000 },
97 { 0x419dd4, 1, 0x04, 0x00000100 },
98 { 0x419dd8, 1, 0x04, 0x00000001 },
99 { 0x419ddc, 1, 0x04, 0x00000002 },
100 { 0x419de0, 1, 0x04, 0x00000001 },
101 { 0x419de8, 1, 0x04, 0x000000cc },
102 { 0x419dec, 1, 0x04, 0x00000000 },
103 { 0x419df0, 1, 0x04, 0x000000cc },
104 { 0x419df4, 1, 0x04, 0x00000000 },
105 { 0x419d0c, 1, 0x04, 0x00000000 },
106 { 0x419d10, 1, 0x04, 0x00000014 },
107 {}
108};
109
110static const struct gf100_gr_init
111gm204_gr_init_pe_0[] = {
112 { 0x419900, 1, 0x04, 0x000000ff },
113 { 0x419810, 1, 0x04, 0x00000000 },
114 { 0x41980c, 1, 0x04, 0x00000010 },
115 { 0x419844, 1, 0x04, 0x00000000 },
116 { 0x419838, 1, 0x04, 0x000000ff },
117 { 0x419850, 1, 0x04, 0x00000004 },
118 { 0x419854, 2, 0x04, 0x00000000 },
119 { 0x419894, 3, 0x04, 0x00100401 },
120 {}
121};
122
123static const struct gf100_gr_init
124gm204_gr_init_sm_0[] = {
125 { 0x419e30, 1, 0x04, 0x000000ff },
126 { 0x419e00, 1, 0x04, 0x00000000 },
127 { 0x419ea0, 1, 0x04, 0x00000000 },
128 { 0x419ee4, 1, 0x04, 0x00000000 },
129 { 0x419ea4, 1, 0x04, 0x00000100 },
130 { 0x419ea8, 1, 0x04, 0x00000000 },
131 { 0x419ee8, 1, 0x04, 0x00000091 },
132 { 0x419eb4, 1, 0x04, 0x00000000 },
133 { 0x419ebc, 2, 0x04, 0x00000000 },
134 { 0x419edc, 1, 0x04, 0x000c1810 },
135 { 0x419ed8, 1, 0x04, 0x00000000 },
136 { 0x419ee0, 1, 0x04, 0x00000000 },
137 {}
138};
139
140static const struct gf100_gr_init
141gm204_gr_init_l1c_1[] = {
142 { 0x419cf8, 2, 0x04, 0x00000000 },
143 {}
144};
145
146static const struct gf100_gr_init
147gm204_gr_init_sm_1[] = {
148 { 0x419f74, 1, 0x04, 0x00055155 },
149 { 0x419f80, 4, 0x04, 0x00000000 },
150 {}
151};
152
153static const struct gf100_gr_init
154gm204_gr_init_l1c_2[] = {
155 { 0x419ccc, 2, 0x04, 0x00000000 },
156 { 0x419c80, 1, 0x04, 0x3f006022 },
157 { 0x419c88, 1, 0x04, 0x00210000 },
158 {}
159};
160
161static const struct gf100_gr_init
162gm204_gr_init_pes_0[] = {
163 { 0x41be50, 1, 0x04, 0x000000ff },
164 { 0x41be04, 1, 0x04, 0x00000000 },
165 { 0x41be08, 1, 0x04, 0x00000004 },
166 { 0x41be0c, 1, 0x04, 0x00000008 },
167 { 0x41be10, 1, 0x04, 0x2e3b8bc7 },
168 { 0x41be14, 2, 0x04, 0x00000000 },
169 { 0x41be3c, 5, 0x04, 0x00100401 },
170 {}
171};
172
173static const struct gf100_gr_init
174gm204_gr_init_be_0[] = {
175 { 0x408890, 1, 0x04, 0x000000ff },
176 { 0x40880c, 1, 0x04, 0x00000000 },
177 { 0x408850, 1, 0x04, 0x00000004 },
178 { 0x408878, 1, 0x04, 0x01b4201c },
179 { 0x40887c, 1, 0x04, 0x80004c55 },
180 { 0x408880, 1, 0x04, 0x0018c258 },
181 { 0x408884, 1, 0x04, 0x0000160f },
182 { 0x408974, 1, 0x04, 0x000000ff },
183 { 0x408910, 9, 0x04, 0x00000000 },
184 { 0x408950, 1, 0x04, 0x00000000 },
185 { 0x408954, 1, 0x04, 0x0000ffff },
186 { 0x408958, 1, 0x04, 0x00000034 },
187 { 0x40895c, 1, 0x04, 0x84b17403 },
188 { 0x408960, 1, 0x04, 0x04c1884f },
189 { 0x408964, 1, 0x04, 0x04714445 },
190 { 0x408968, 1, 0x04, 0x0280802f },
191 { 0x40896c, 1, 0x04, 0x04304856 },
192 { 0x408970, 1, 0x04, 0x00012800 },
193 { 0x408984, 1, 0x04, 0x00000000 },
194 { 0x408988, 1, 0x04, 0x08040201 },
195 { 0x40898c, 1, 0x04, 0x80402010 },
196 {}
197};
198
199static const struct gf100_gr_pack
200gm204_gr_pack_mmio[] = {
201 { gm204_gr_init_main_0 },
202 { gm204_gr_init_fe_0 },
203 { gf100_gr_init_pri_0 },
204 { gf100_gr_init_rstr2d_0 },
205 { gf100_gr_init_pd_0 },
206 { gm204_gr_init_ds_0 },
207 { gm107_gr_init_scc_0 },
208 { gm204_gr_init_sked_0 },
209 { gk110_gr_init_cwd_0 },
210 { gm107_gr_init_prop_0 },
211 { gk208_gr_init_gpc_unk_0 },
212 { gf100_gr_init_setup_0 },
213 { gf100_gr_init_crstr_0 },
214 { gm107_gr_init_setup_1 },
215 { gm107_gr_init_zcull_0 },
216 { gf100_gr_init_gpm_0 },
217 { gm107_gr_init_gpc_unk_1 },
218 { gf100_gr_init_gcc_0 },
219 { gm204_gr_init_tpccs_0 },
220 { gm107_gr_init_tex_0 },
221 { gm204_gr_init_pe_0 },
222 { gm107_gr_init_l1c_0 },
223 { gf100_gr_init_mpc_0 },
224 { gm204_gr_init_sm_0 },
225 { gm204_gr_init_l1c_1 },
226 { gm204_gr_init_sm_1 },
227 { gm204_gr_init_l1c_2 },
228 { gm204_gr_init_pes_0 },
229 { gm107_gr_init_wwdx_0 },
230 { gm107_gr_init_cbm_0 },
231 { gm204_gr_init_be_0 },
232 {}
233};
234
235const struct gf100_gr_pack *
236gm204_gr_data[] = {
237 gm204_gr_pack_mmio,
238 NULL
239};
240
241/*******************************************************************************
242 * PGRAPH engine/subdev functions
243 ******************************************************************************/
244
245static int
246gm204_gr_init_ctxctl(struct gf100_gr_priv *priv)
247{
248 return 0;
249}
250
251static int
252gm204_gr_init(struct nvkm_object *object)
253{
254 struct gf100_gr_oclass *oclass = (void *)object->oclass;
255 struct gf100_gr_priv *priv = (void *)object;
256 const u32 magicgpc918 = DIV_ROUND_UP(0x00800000, priv->tpc_total);
257 u32 data[TPC_MAX / 8] = {};
258 u8 tpcnr[GPC_MAX];
259 int gpc, tpc, ppc, rop;
260 int ret, i;
261 u32 tmp;
262
263 ret = nvkm_gr_init(&priv->base);
264 if (ret)
265 return ret;
266
267 tmp = nv_rd32(priv, 0x100c80); /*XXX: mask? */
268 nv_wr32(priv, 0x418880, 0x00001000 | (tmp & 0x00000fff));
269 nv_wr32(priv, 0x418890, 0x00000000);
270 nv_wr32(priv, 0x418894, 0x00000000);
271 nv_wr32(priv, 0x4188b4, priv->unk4188b4->addr >> 8);
272 nv_wr32(priv, 0x4188b8, priv->unk4188b8->addr >> 8);
273 nv_mask(priv, 0x4188b0, 0x00040000, 0x00040000);
274
275 /*XXX: belongs in fb */
276 nv_wr32(priv, 0x100cc8, priv->unk4188b4->addr >> 8);
277 nv_wr32(priv, 0x100ccc, priv->unk4188b8->addr >> 8);
278 nv_mask(priv, 0x100cc4, 0x00040000, 0x00040000);
279
280 gf100_gr_mmio(priv, oclass->mmio);
281
282 gm107_gr_init_bios(priv);
283
284 nv_wr32(priv, GPC_UNIT(0, 0x3018), 0x00000001);
285
286 memset(data, 0x00, sizeof(data));
287 memcpy(tpcnr, priv->tpc_nr, sizeof(priv->tpc_nr));
288 for (i = 0, gpc = -1; i < priv->tpc_total; i++) {
289 do {
290 gpc = (gpc + 1) % priv->gpc_nr;
291 } while (!tpcnr[gpc]);
292 tpc = priv->tpc_nr[gpc] - tpcnr[gpc]--;
293
294 data[i / 8] |= tpc << ((i % 8) * 4);
295 }
296
297 nv_wr32(priv, GPC_BCAST(0x0980), data[0]);
298 nv_wr32(priv, GPC_BCAST(0x0984), data[1]);
299 nv_wr32(priv, GPC_BCAST(0x0988), data[2]);
300 nv_wr32(priv, GPC_BCAST(0x098c), data[3]);
301
302 for (gpc = 0; gpc < priv->gpc_nr; gpc++) {
303 nv_wr32(priv, GPC_UNIT(gpc, 0x0914),
304 priv->magic_not_rop_nr << 8 | priv->tpc_nr[gpc]);
305 nv_wr32(priv, GPC_UNIT(gpc, 0x0910), 0x00040000 |
306 priv->tpc_total);
307 nv_wr32(priv, GPC_UNIT(gpc, 0x0918), magicgpc918);
308 }
309
310 nv_wr32(priv, GPC_BCAST(0x3fd4), magicgpc918);
311 nv_wr32(priv, GPC_BCAST(0x08ac), nv_rd32(priv, 0x100800));
312 nv_wr32(priv, GPC_BCAST(0x033c), nv_rd32(priv, 0x100804));
313
314 nv_wr32(priv, 0x400500, 0x00010001);
315 nv_wr32(priv, 0x400100, 0xffffffff);
316 nv_wr32(priv, 0x40013c, 0xffffffff);
317 nv_wr32(priv, 0x400124, 0x00000002);
318 nv_wr32(priv, 0x409c24, 0x000e0000);
319 nv_wr32(priv, 0x405848, 0xc0000000);
320 nv_wr32(priv, 0x40584c, 0x00000001);
321 nv_wr32(priv, 0x404000, 0xc0000000);
322 nv_wr32(priv, 0x404600, 0xc0000000);
323 nv_wr32(priv, 0x408030, 0xc0000000);
324 nv_wr32(priv, 0x404490, 0xc0000000);
325 nv_wr32(priv, 0x406018, 0xc0000000);
326 nv_wr32(priv, 0x407020, 0x40000000);
327 nv_wr32(priv, 0x405840, 0xc0000000);
328 nv_wr32(priv, 0x405844, 0x00ffffff);
329 nv_mask(priv, 0x419cc0, 0x00000008, 0x00000008);
330
331 for (gpc = 0; gpc < priv->gpc_nr; gpc++) {
332 printk(KERN_ERR "ppc %d %d\n", gpc, priv->ppc_nr[gpc]);
333 for (ppc = 0; ppc < priv->ppc_nr[gpc]; ppc++)
334 nv_wr32(priv, PPC_UNIT(gpc, ppc, 0x038), 0xc0000000);
335 nv_wr32(priv, GPC_UNIT(gpc, 0x0420), 0xc0000000);
336 nv_wr32(priv, GPC_UNIT(gpc, 0x0900), 0xc0000000);
337 nv_wr32(priv, GPC_UNIT(gpc, 0x1028), 0xc0000000);
338 nv_wr32(priv, GPC_UNIT(gpc, 0x0824), 0xc0000000);
339 for (tpc = 0; tpc < priv->tpc_nr[gpc]; tpc++) {
340 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x508), 0xffffffff);
341 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x50c), 0xffffffff);
342 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x224), 0xc0000000);
343 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x48c), 0xc0000000);
344 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x084), 0xc0000000);
345 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x430), 0xc0000000);
346 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x644), 0x00dffffe);
347 nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x64c), 0x00000005);
348 }
349 nv_wr32(priv, GPC_UNIT(gpc, 0x2c90), 0xffffffff);
350 nv_wr32(priv, GPC_UNIT(gpc, 0x2c94), 0xffffffff);
351 }
352
353 for (rop = 0; rop < priv->rop_nr; rop++) {
354 nv_wr32(priv, ROP_UNIT(rop, 0x144), 0x40000000);
355 nv_wr32(priv, ROP_UNIT(rop, 0x070), 0x40000000);
356 nv_wr32(priv, ROP_UNIT(rop, 0x204), 0xffffffff);
357 nv_wr32(priv, ROP_UNIT(rop, 0x208), 0xffffffff);
358 }
359
360 nv_wr32(priv, 0x400108, 0xffffffff);
361 nv_wr32(priv, 0x400138, 0xffffffff);
362 nv_wr32(priv, 0x400118, 0xffffffff);
363 nv_wr32(priv, 0x400130, 0xffffffff);
364 nv_wr32(priv, 0x40011c, 0xffffffff);
365 nv_wr32(priv, 0x400134, 0xffffffff);
366
367 nv_wr32(priv, 0x400054, 0x2c350f63);
368
369 gf100_gr_zbc_init(priv);
370
371 return gm204_gr_init_ctxctl(priv);
372}
373
374struct nvkm_oclass *
375gm204_gr_oclass = &(struct gf100_gr_oclass) {
376 .base.handle = NV_ENGINE(GR, 0x24),
377 .base.ofuncs = &(struct nvkm_ofuncs) {
378 .ctor = gf100_gr_ctor,
379 .dtor = gf100_gr_dtor,
380 .init = gm204_gr_init,
381 .fini = _nvkm_gr_fini,
382 },
383 .cclass = &gm204_grctx_oclass,
384 .sclass = gm204_gr_sclass,
385 .mmio = gm204_gr_pack_mmio,
386 .ppc_nr = 2,
387}.base;