r600g: fix memory/bo leak
[mesa.git] / src / gallium / drivers / r600 / r600_context.c
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Jerome Glisse
25 * Corbin Simpson
26 */
27 #include <stdio.h>
28 #include <util/u_inlines.h>
29 #include <util/u_format.h>
30 #include <util/u_memory.h>
31 #include <util/u_blitter.h>
32 #include "r600_screen.h"
33 #include "r600_context.h"
34 #include "r600_resource.h"
35 #include "r600d.h"
36
37
38 static void r600_destroy_context(struct pipe_context *context)
39 {
40 struct r600_context *rctx = r600_context(context);
41
42 rctx->rasterizer = r600_context_state_decref(rctx->rasterizer);
43 rctx->poly_stipple = r600_context_state_decref(rctx->poly_stipple);
44 rctx->scissor = r600_context_state_decref(rctx->scissor);
45 rctx->clip = r600_context_state_decref(rctx->clip);
46 rctx->ps_shader = r600_context_state_decref(rctx->ps_shader);
47 rctx->vs_shader = r600_context_state_decref(rctx->vs_shader);
48 rctx->depth = r600_context_state_decref(rctx->depth);
49 rctx->stencil = r600_context_state_decref(rctx->stencil);
50 rctx->alpha = r600_context_state_decref(rctx->alpha);
51 rctx->dsa = r600_context_state_decref(rctx->dsa);
52 rctx->blend = r600_context_state_decref(rctx->blend);
53 rctx->stencil_ref = r600_context_state_decref(rctx->stencil_ref);
54 rctx->viewport = r600_context_state_decref(rctx->viewport);
55 rctx->framebuffer = r600_context_state_decref(rctx->framebuffer);
56 radeon_ctx_fini(&rctx->ctx);
57 FREE(rctx);
58 }
59
60 void r600_flush(struct pipe_context *ctx, unsigned flags,
61 struct pipe_fence_handle **fence)
62 {
63 struct r600_context *rctx = r600_context(ctx);
64 struct r600_query *rquery;
65 static int dc = 0;
66 char dname[256];
67
68 /* suspend queries */
69 r600_queries_suspend(ctx);
70 /* FIXME dumping should be removed once shader support instructions
71 * without throwing bad code
72 */
73 if (!rctx->ctx.cdwords)
74 goto out;
75 #if 0
76 sprintf(dname, "gallium-%08d.bof", dc);
77 if (dc < 2) {
78 radeon_ctx_dump_bof(&rctx->ctx, dname);
79 R600_ERR("dumped %s\n", dname);
80 }
81 #endif
82 #if 1
83 radeon_ctx_submit(&rctx->ctx);
84 #endif
85 LIST_FOR_EACH_ENTRY(rquery, &rctx->query_list, list) {
86 rquery->flushed = true;
87 }
88 dc++;
89 out:
90 radeon_ctx_clear(&rctx->ctx);
91 /* resume queries */
92 r600_queries_resume(ctx);
93 }
94
95 static void r600_init_config(struct r600_context *rctx)
96 {
97 int ps_prio;
98 int vs_prio;
99 int gs_prio;
100 int es_prio;
101 int num_ps_gprs;
102 int num_vs_gprs;
103 int num_gs_gprs;
104 int num_es_gprs;
105 int num_temp_gprs;
106 int num_ps_threads;
107 int num_vs_threads;
108 int num_gs_threads;
109 int num_es_threads;
110 int num_ps_stack_entries;
111 int num_vs_stack_entries;
112 int num_gs_stack_entries;
113 int num_es_stack_entries;
114 enum radeon_family family;
115
116 family = radeon_get_family(rctx->rw);
117 ps_prio = 0;
118 vs_prio = 1;
119 gs_prio = 2;
120 es_prio = 3;
121 switch (family) {
122 case CHIP_R600:
123 num_ps_gprs = 192;
124 num_vs_gprs = 56;
125 num_temp_gprs = 4;
126 num_gs_gprs = 0;
127 num_es_gprs = 0;
128 num_ps_threads = 136;
129 num_vs_threads = 48;
130 num_gs_threads = 4;
131 num_es_threads = 4;
132 num_ps_stack_entries = 128;
133 num_vs_stack_entries = 128;
134 num_gs_stack_entries = 0;
135 num_es_stack_entries = 0;
136 break;
137 case CHIP_RV630:
138 case CHIP_RV635:
139 num_ps_gprs = 84;
140 num_vs_gprs = 36;
141 num_temp_gprs = 4;
142 num_gs_gprs = 0;
143 num_es_gprs = 0;
144 num_ps_threads = 144;
145 num_vs_threads = 40;
146 num_gs_threads = 4;
147 num_es_threads = 4;
148 num_ps_stack_entries = 40;
149 num_vs_stack_entries = 40;
150 num_gs_stack_entries = 32;
151 num_es_stack_entries = 16;
152 break;
153 case CHIP_RV610:
154 case CHIP_RV620:
155 case CHIP_RS780:
156 case CHIP_RS880:
157 default:
158 num_ps_gprs = 84;
159 num_vs_gprs = 36;
160 num_temp_gprs = 4;
161 num_gs_gprs = 0;
162 num_es_gprs = 0;
163 num_ps_threads = 136;
164 num_vs_threads = 48;
165 num_gs_threads = 4;
166 num_es_threads = 4;
167 num_ps_stack_entries = 40;
168 num_vs_stack_entries = 40;
169 num_gs_stack_entries = 32;
170 num_es_stack_entries = 16;
171 break;
172 case CHIP_RV670:
173 num_ps_gprs = 144;
174 num_vs_gprs = 40;
175 num_temp_gprs = 4;
176 num_gs_gprs = 0;
177 num_es_gprs = 0;
178 num_ps_threads = 136;
179 num_vs_threads = 48;
180 num_gs_threads = 4;
181 num_es_threads = 4;
182 num_ps_stack_entries = 40;
183 num_vs_stack_entries = 40;
184 num_gs_stack_entries = 32;
185 num_es_stack_entries = 16;
186 break;
187 case CHIP_RV770:
188 num_ps_gprs = 192;
189 num_vs_gprs = 56;
190 num_temp_gprs = 4;
191 num_gs_gprs = 0;
192 num_es_gprs = 0;
193 num_ps_threads = 188;
194 num_vs_threads = 60;
195 num_gs_threads = 0;
196 num_es_threads = 0;
197 num_ps_stack_entries = 256;
198 num_vs_stack_entries = 256;
199 num_gs_stack_entries = 0;
200 num_es_stack_entries = 0;
201 break;
202 case CHIP_RV730:
203 case CHIP_RV740:
204 num_ps_gprs = 84;
205 num_vs_gprs = 36;
206 num_temp_gprs = 4;
207 num_gs_gprs = 0;
208 num_es_gprs = 0;
209 num_ps_threads = 188;
210 num_vs_threads = 60;
211 num_gs_threads = 0;
212 num_es_threads = 0;
213 num_ps_stack_entries = 128;
214 num_vs_stack_entries = 128;
215 num_gs_stack_entries = 0;
216 num_es_stack_entries = 0;
217 break;
218 case CHIP_RV710:
219 num_ps_gprs = 192;
220 num_vs_gprs = 56;
221 num_temp_gprs = 4;
222 num_gs_gprs = 0;
223 num_es_gprs = 0;
224 num_ps_threads = 144;
225 num_vs_threads = 48;
226 num_gs_threads = 0;
227 num_es_threads = 0;
228 num_ps_stack_entries = 128;
229 num_vs_stack_entries = 128;
230 num_gs_stack_entries = 0;
231 num_es_stack_entries = 0;
232 break;
233 }
234 radeon_state_init(&rctx->config, rctx->rw, R600_STATE_CONFIG, 0, 0);
235
236 rctx->config.states[R600_CONFIG__SQ_CONFIG] = 0x00000000;
237 switch (family) {
238 case CHIP_RV610:
239 case CHIP_RV620:
240 case CHIP_RS780:
241 case CHIP_RS880:
242 case CHIP_RV710:
243 break;
244 default:
245 rctx->config.states[R600_CONFIG__SQ_CONFIG] |= S_008C00_VC_ENABLE(1);
246 break;
247 }
248 rctx->config.states[R600_CONFIG__SQ_CONFIG] |= S_008C00_DX9_CONSTS(1);
249 rctx->config.states[R600_CONFIG__SQ_CONFIG] |= S_008C00_ALU_INST_PREFER_VECTOR(1);
250 rctx->config.states[R600_CONFIG__SQ_CONFIG] |= S_008C00_PS_PRIO(ps_prio);
251 rctx->config.states[R600_CONFIG__SQ_CONFIG] |= S_008C00_VS_PRIO(vs_prio);
252 rctx->config.states[R600_CONFIG__SQ_CONFIG] |= S_008C00_GS_PRIO(gs_prio);
253 rctx->config.states[R600_CONFIG__SQ_CONFIG] |= S_008C00_ES_PRIO(es_prio);
254
255 rctx->config.states[R600_CONFIG__SQ_GPR_RESOURCE_MGMT_1] = 0;
256 rctx->config.states[R600_CONFIG__SQ_GPR_RESOURCE_MGMT_1] |= S_008C04_NUM_PS_GPRS(num_ps_gprs);
257 rctx->config.states[R600_CONFIG__SQ_GPR_RESOURCE_MGMT_1] |= S_008C04_NUM_VS_GPRS(num_vs_gprs);
258 rctx->config.states[R600_CONFIG__SQ_GPR_RESOURCE_MGMT_1] |= S_008C04_NUM_CLAUSE_TEMP_GPRS(num_temp_gprs);
259
260 rctx->config.states[R600_CONFIG__SQ_GPR_RESOURCE_MGMT_2] = 0;
261 rctx->config.states[R600_CONFIG__SQ_GPR_RESOURCE_MGMT_2] |= S_008C08_NUM_GS_GPRS(num_gs_gprs);
262 rctx->config.states[R600_CONFIG__SQ_GPR_RESOURCE_MGMT_2] |= S_008C08_NUM_GS_GPRS(num_es_gprs);
263
264 rctx->config.states[R600_CONFIG__SQ_THREAD_RESOURCE_MGMT] = 0;
265 rctx->config.states[R600_CONFIG__SQ_THREAD_RESOURCE_MGMT] |= S_008C0C_NUM_PS_THREADS(num_ps_threads);
266 rctx->config.states[R600_CONFIG__SQ_THREAD_RESOURCE_MGMT] |= S_008C0C_NUM_VS_THREADS(num_vs_threads);
267 rctx->config.states[R600_CONFIG__SQ_THREAD_RESOURCE_MGMT] |= S_008C0C_NUM_GS_THREADS(num_gs_threads);
268 rctx->config.states[R600_CONFIG__SQ_THREAD_RESOURCE_MGMT] |= S_008C0C_NUM_ES_THREADS(num_es_threads);
269
270 rctx->config.states[R600_CONFIG__SQ_STACK_RESOURCE_MGMT_1] = 0;
271 rctx->config.states[R600_CONFIG__SQ_STACK_RESOURCE_MGMT_1] |= S_008C10_NUM_PS_STACK_ENTRIES(num_ps_stack_entries);
272 rctx->config.states[R600_CONFIG__SQ_STACK_RESOURCE_MGMT_1] |= S_008C10_NUM_VS_STACK_ENTRIES(num_vs_stack_entries);
273
274 rctx->config.states[R600_CONFIG__SQ_STACK_RESOURCE_MGMT_2] = 0;
275 rctx->config.states[R600_CONFIG__SQ_STACK_RESOURCE_MGMT_2] |= S_008C14_NUM_GS_STACK_ENTRIES(num_gs_stack_entries);
276 rctx->config.states[R600_CONFIG__SQ_STACK_RESOURCE_MGMT_2] |= S_008C14_NUM_ES_STACK_ENTRIES(num_es_stack_entries);
277
278 rctx->config.states[R600_CONFIG__VC_ENHANCE] = 0x00000000;
279 rctx->config.states[R600_CONFIG__SX_MISC] = 0x00000000;
280
281 if (family >= CHIP_RV770) {
282 rctx->config.states[R600_CONFIG__SQ_DYN_GPR_CNTL_PS_FLUSH_REQ] = 0x00004000;
283 rctx->config.states[R600_CONFIG__TA_CNTL_AUX] = 0x07000002;
284 rctx->config.states[R600_CONFIG__DB_DEBUG] = 0x00000000;
285 rctx->config.states[R600_CONFIG__DB_WATERMARKS] = 0x00420204;
286 rctx->config.states[R600_CONFIG__SPI_THREAD_GROUPING] = 0x00000000;
287 rctx->config.states[R600_CONFIG__PA_SC_MODE_CNTL] = 0x00514000;
288 } else {
289 rctx->config.states[R600_CONFIG__SQ_DYN_GPR_CNTL_PS_FLUSH_REQ] = 0x00000000;
290 rctx->config.states[R600_CONFIG__TA_CNTL_AUX] = 0x07000003;
291 rctx->config.states[R600_CONFIG__DB_DEBUG] = 0x82000000;
292 rctx->config.states[R600_CONFIG__DB_WATERMARKS] = 0x01020204;
293 rctx->config.states[R600_CONFIG__SPI_THREAD_GROUPING] = 0x00000001;
294 rctx->config.states[R600_CONFIG__PA_SC_MODE_CNTL] = 0x00004010;
295 }
296 rctx->config.states[R600_CONFIG__CB_SHADER_CONTROL] = 0x00000003;
297 rctx->config.states[R600_CONFIG__SQ_ESGS_RING_ITEMSIZE] = 0x00000000;
298 rctx->config.states[R600_CONFIG__SQ_GSVS_RING_ITEMSIZE] = 0x00000000;
299 rctx->config.states[R600_CONFIG__SQ_ESTMP_RING_ITEMSIZE] = 0x00000000;
300 rctx->config.states[R600_CONFIG__SQ_GSTMP_RING_ITEMSIZE] = 0x00000000;
301 rctx->config.states[R600_CONFIG__SQ_VSTMP_RING_ITEMSIZE] = 0x00000000;
302 rctx->config.states[R600_CONFIG__SQ_PSTMP_RING_ITEMSIZE] = 0x00000000;
303 rctx->config.states[R600_CONFIG__SQ_FBUF_RING_ITEMSIZE] = 0x00000000;
304 rctx->config.states[R600_CONFIG__SQ_REDUC_RING_ITEMSIZE] = 0x00000000;
305 rctx->config.states[R600_CONFIG__SQ_GS_VERT_ITEMSIZE] = 0x00000000;
306 rctx->config.states[R600_CONFIG__VGT_OUTPUT_PATH_CNTL] = 0x00000000;
307 rctx->config.states[R600_CONFIG__VGT_HOS_CNTL] = 0x00000000;
308 rctx->config.states[R600_CONFIG__VGT_HOS_MAX_TESS_LEVEL] = 0x00000000;
309 rctx->config.states[R600_CONFIG__VGT_HOS_MIN_TESS_LEVEL] = 0x00000000;
310 rctx->config.states[R600_CONFIG__VGT_HOS_REUSE_DEPTH] = 0x00000000;
311 rctx->config.states[R600_CONFIG__VGT_GROUP_PRIM_TYPE] = 0x00000000;
312 rctx->config.states[R600_CONFIG__VGT_GROUP_FIRST_DECR] = 0x00000000;
313 rctx->config.states[R600_CONFIG__VGT_GROUP_DECR] = 0x00000000;
314 rctx->config.states[R600_CONFIG__VGT_GROUP_VECT_0_CNTL] = 0x00000000;
315 rctx->config.states[R600_CONFIG__VGT_GROUP_VECT_1_CNTL] = 0x00000000;
316 rctx->config.states[R600_CONFIG__VGT_GROUP_VECT_0_FMT_CNTL] = 0x00000000;
317 rctx->config.states[R600_CONFIG__VGT_GROUP_VECT_1_FMT_CNTL] = 0x00000000;
318 rctx->config.states[R600_CONFIG__VGT_GS_MODE] = 0x00000000;
319 rctx->config.states[R600_CONFIG__VGT_STRMOUT_EN] = 0x00000000;
320 rctx->config.states[R600_CONFIG__VGT_REUSE_OFF] = 0x00000001;
321 rctx->config.states[R600_CONFIG__VGT_VTX_CNT_EN] = 0x00000000;
322 rctx->config.states[R600_CONFIG__VGT_STRMOUT_BUFFER_EN] = 0x00000000;
323 radeon_state_pm4(&rctx->config);
324 }
325
326 struct pipe_context *r600_create_context(struct pipe_screen *screen, void *priv)
327 {
328 struct r600_context *rctx = CALLOC_STRUCT(r600_context);
329 struct r600_screen* rscreen = r600_screen(screen);
330
331 if (rctx == NULL)
332 return NULL;
333 rctx->context.winsys = rscreen->screen.winsys;
334 rctx->context.screen = screen;
335 rctx->context.priv = priv;
336 rctx->context.destroy = r600_destroy_context;
337 rctx->context.draw_vbo = r600_draw_vbo;
338 rctx->context.flush = r600_flush;
339
340 /* Easy accessing of screen/winsys. */
341 rctx->screen = rscreen;
342 rctx->rw = rscreen->rw;
343
344 r600_init_blit_functions(rctx);
345 r600_init_query_functions(rctx);
346 r600_init_state_functions(rctx);
347 r600_init_context_resource_functions(rctx);
348
349 rctx->blitter = util_blitter_create(&rctx->context);
350 if (rctx->blitter == NULL) {
351 FREE(rctx);
352 return NULL;
353 }
354
355 r600_init_config(rctx);
356
357 radeon_ctx_init(&rctx->ctx, rscreen->rw);
358 radeon_draw_init(&rctx->draw, rscreen->rw);
359 return &rctx->context;
360 }