blob: aeeca1be9cf04eddbd445b5bd999c75ee12c1b1b [file] [log] [blame]
Ben Skeggse3c71eb2015-01-14 15:29:43 +10001/*
2 * Copyright 2010 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
23 */
24#ifndef __NVC0_GR_H__
25#define __NVC0_GR_H__
26#include <engine/gr.h>
27
28#include <subdev/ltc.h>
29
30#define GPC_MAX 32
31#define TPC_MAX (GPC_MAX * 8)
32
33#define ROP_BCAST(r) (0x408800 + (r))
34#define ROP_UNIT(u, r) (0x410000 + (u) * 0x400 + (r))
35#define GPC_BCAST(r) (0x418000 + (r))
36#define GPC_UNIT(t, r) (0x500000 + (t) * 0x8000 + (r))
37#define PPC_UNIT(t, m, r) (0x503000 + (t) * 0x8000 + (m) * 0x200 + (r))
38#define TPC_UNIT(t, m, r) (0x504000 + (t) * 0x8000 + (m) * 0x800 + (r))
39
40struct gf100_gr_data {
41 u32 size;
42 u32 align;
43 u32 access;
44};
45
46struct gf100_gr_mmio {
47 u32 addr;
48 u32 data;
49 u32 shift;
50 int buffer;
51};
52
53struct gf100_gr_fuc {
54 u32 *data;
55 u32 size;
56};
57
58struct gf100_gr_zbc_color {
59 u32 format;
60 u32 ds[4];
61 u32 l2[4];
62};
63
64struct gf100_gr_zbc_depth {
65 u32 format;
66 u32 ds;
67 u32 l2;
68};
69
70struct gf100_gr_priv {
71 struct nvkm_gr base;
72
73 struct gf100_gr_fuc fuc409c;
74 struct gf100_gr_fuc fuc409d;
75 struct gf100_gr_fuc fuc41ac;
76 struct gf100_gr_fuc fuc41ad;
77 bool firmware;
78
79 struct gf100_gr_zbc_color zbc_color[NVKM_LTC_MAX_ZBC_CNT];
80 struct gf100_gr_zbc_depth zbc_depth[NVKM_LTC_MAX_ZBC_CNT];
81
82 u8 rop_nr;
83 u8 gpc_nr;
84 u8 tpc_nr[GPC_MAX];
85 u8 tpc_total;
86 u8 ppc_nr[GPC_MAX];
87 u8 ppc_tpc_nr[GPC_MAX][4];
88
89 struct nvkm_gpuobj *unk4188b4;
90 struct nvkm_gpuobj *unk4188b8;
91
92 struct gf100_gr_data mmio_data[4];
93 struct gf100_gr_mmio mmio_list[4096/8];
94 u32 size;
95 u32 *data;
96
97 u8 magic_not_rop_nr;
98};
99
100struct gf100_gr_chan {
101 struct nvkm_gr_chan base;
102
103 struct nvkm_gpuobj *mmio;
104 struct nvkm_vma mmio_vma;
105 int mmio_nr;
106 struct {
107 struct nvkm_gpuobj *mem;
108 struct nvkm_vma vma;
109 } data[4];
110};
111
112int gf100_gr_context_ctor(struct nvkm_object *, struct nvkm_object *,
113 struct nvkm_oclass *, void *, u32,
114 struct nvkm_object **);
115void gf100_gr_context_dtor(struct nvkm_object *);
116
117void gf100_gr_ctxctl_debug(struct gf100_gr_priv *);
118
119u64 gf100_gr_units(struct nvkm_gr *);
120int gf100_gr_ctor(struct nvkm_object *, struct nvkm_object *,
121 struct nvkm_oclass *, void *data, u32 size,
122 struct nvkm_object **);
123void gf100_gr_dtor(struct nvkm_object *);
124int gf100_gr_init(struct nvkm_object *);
125void gf100_gr_zbc_init(struct gf100_gr_priv *);
126
127int gk104_gr_fini(struct nvkm_object *, bool);
128int gk104_gr_init(struct nvkm_object *);
129
130int gk110_gr_fini(struct nvkm_object *, bool);
131
132extern struct nvkm_ofuncs gf100_fermi_ofuncs;
133
134extern struct nvkm_oclass gf100_gr_sclass[];
135extern struct nvkm_omthds gf100_gr_9097_omthds[];
136extern struct nvkm_omthds gf100_gr_90c0_omthds[];
137extern struct nvkm_oclass gf110_gr_sclass[];
138extern struct nvkm_oclass gk110_gr_sclass[];
139
140struct gf100_gr_init {
141 u32 addr;
142 u8 count;
143 u8 pitch;
144 u32 data;
145};
146
147struct gf100_gr_pack {
148 const struct gf100_gr_init *init;
149 u32 type;
150};
151
152#define pack_for_each_init(init, pack, head) \
153 for (pack = head; pack && pack->init; pack++) \
154 for (init = pack->init; init && init->count; init++)
155
156struct gf100_gr_ucode {
157 struct gf100_gr_fuc code;
158 struct gf100_gr_fuc data;
159};
160
161extern struct gf100_gr_ucode gf100_gr_fecs_ucode;
162extern struct gf100_gr_ucode gf100_gr_gpccs_ucode;
163
164extern struct gf100_gr_ucode gk110_gr_fecs_ucode;
165extern struct gf100_gr_ucode gk110_gr_gpccs_ucode;
166
167struct gf100_gr_oclass {
168 struct nvkm_oclass base;
169 struct nvkm_oclass **cclass;
170 struct nvkm_oclass *sclass;
171 const struct gf100_gr_pack *mmio;
172 struct {
173 struct gf100_gr_ucode *ucode;
174 } fecs;
175 struct {
176 struct gf100_gr_ucode *ucode;
177 } gpccs;
178 int ppc_nr;
179};
180
181void gf100_gr_mmio(struct gf100_gr_priv *, const struct gf100_gr_pack *);
182void gf100_gr_icmd(struct gf100_gr_priv *, const struct gf100_gr_pack *);
183void gf100_gr_mthd(struct gf100_gr_priv *, const struct gf100_gr_pack *);
184int gf100_gr_init_ctxctl(struct gf100_gr_priv *);
185
186/* register init value lists */
187
188extern const struct gf100_gr_init gf100_gr_init_main_0[];
189extern const struct gf100_gr_init gf100_gr_init_fe_0[];
190extern const struct gf100_gr_init gf100_gr_init_pri_0[];
191extern const struct gf100_gr_init gf100_gr_init_rstr2d_0[];
192extern const struct gf100_gr_init gf100_gr_init_pd_0[];
193extern const struct gf100_gr_init gf100_gr_init_ds_0[];
194extern const struct gf100_gr_init gf100_gr_init_scc_0[];
195extern const struct gf100_gr_init gf100_gr_init_prop_0[];
196extern const struct gf100_gr_init gf100_gr_init_gpc_unk_0[];
197extern const struct gf100_gr_init gf100_gr_init_setup_0[];
198extern const struct gf100_gr_init gf100_gr_init_crstr_0[];
199extern const struct gf100_gr_init gf100_gr_init_setup_1[];
200extern const struct gf100_gr_init gf100_gr_init_zcull_0[];
201extern const struct gf100_gr_init gf100_gr_init_gpm_0[];
202extern const struct gf100_gr_init gf100_gr_init_gpc_unk_1[];
203extern const struct gf100_gr_init gf100_gr_init_gcc_0[];
204extern const struct gf100_gr_init gf100_gr_init_tpccs_0[];
205extern const struct gf100_gr_init gf100_gr_init_tex_0[];
206extern const struct gf100_gr_init gf100_gr_init_pe_0[];
207extern const struct gf100_gr_init gf100_gr_init_l1c_0[];
208extern const struct gf100_gr_init gf100_gr_init_wwdx_0[];
209extern const struct gf100_gr_init gf100_gr_init_tpccs_1[];
210extern const struct gf100_gr_init gf100_gr_init_mpc_0[];
211extern const struct gf100_gr_init gf100_gr_init_be_0[];
212extern const struct gf100_gr_init gf100_gr_init_fe_1[];
213extern const struct gf100_gr_init gf100_gr_init_pe_1[];
214
215extern const struct gf100_gr_init gf104_gr_init_ds_0[];
216extern const struct gf100_gr_init gf104_gr_init_tex_0[];
217extern const struct gf100_gr_init gf104_gr_init_sm_0[];
218
219extern const struct gf100_gr_init gf108_gr_init_gpc_unk_0[];
220extern const struct gf100_gr_init gf108_gr_init_setup_1[];
221
222extern const struct gf100_gr_init gf119_gr_init_pd_0[];
223extern const struct gf100_gr_init gf119_gr_init_ds_0[];
224extern const struct gf100_gr_init gf119_gr_init_prop_0[];
225extern const struct gf100_gr_init gf119_gr_init_gpm_0[];
226extern const struct gf100_gr_init gf119_gr_init_gpc_unk_1[];
227extern const struct gf100_gr_init gf119_gr_init_tex_0[];
228extern const struct gf100_gr_init gf119_gr_init_sm_0[];
229extern const struct gf100_gr_init gf119_gr_init_fe_1[];
230
231extern const struct gf100_gr_init gf117_gr_init_pes_0[];
232extern const struct gf100_gr_init gf117_gr_init_wwdx_0[];
233extern const struct gf100_gr_init gf117_gr_init_cbm_0[];
234
235extern const struct gf100_gr_init gk104_gr_init_main_0[];
236extern const struct gf100_gr_init gk104_gr_init_tpccs_0[];
237extern const struct gf100_gr_init gk104_gr_init_pe_0[];
238extern const struct gf100_gr_init gk104_gr_init_be_0[];
239extern const struct gf100_gr_pack gk104_gr_pack_mmio[];
240
241extern const struct gf100_gr_init gk110_gr_init_fe_0[];
242extern const struct gf100_gr_init gk110_gr_init_ds_0[];
243extern const struct gf100_gr_init gk110_gr_init_sked_0[];
244extern const struct gf100_gr_init gk110_gr_init_cwd_0[];
245extern const struct gf100_gr_init gk110_gr_init_gpc_unk_1[];
246extern const struct gf100_gr_init gk110_gr_init_tex_0[];
247extern const struct gf100_gr_init gk110_gr_init_sm_0[];
248
249extern const struct gf100_gr_init gk208_gr_init_gpc_unk_0[];
250#endif