svga: fix vertex buffer references in the hw state
[mesa.git] / src / gallium / drivers / svga / svga_context.c
1 /**********************************************************
2 * Copyright 2008-2009 VMware, Inc. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 **********************************************************/
25
26 #include "svga_cmd.h"
27
28 #include "pipe/p_defines.h"
29 #include "util/u_inlines.h"
30 #include "pipe/p_screen.h"
31 #include "util/u_memory.h"
32 #include "util/u_bitmask.h"
33 #include "util/u_upload_mgr.h"
34 #include "os/os_time.h"
35
36 #include "svga_context.h"
37 #include "svga_screen.h"
38 #include "svga_surface.h"
39 #include "svga_resource_texture.h"
40 #include "svga_resource_buffer.h"
41 #include "svga_resource.h"
42 #include "svga_winsys.h"
43 #include "svga_swtnl.h"
44 #include "svga_draw.h"
45 #include "svga_debug.h"
46 #include "svga_state.h"
47 #include "svga_winsys.h"
48
49 #define CONST0_UPLOAD_DEFAULT_SIZE 65536
50
51 DEBUG_GET_ONCE_BOOL_OPTION(no_swtnl, "SVGA_NO_SWTNL", FALSE)
52 DEBUG_GET_ONCE_BOOL_OPTION(force_swtnl, "SVGA_FORCE_SWTNL", FALSE);
53 DEBUG_GET_ONCE_BOOL_OPTION(use_min_mipmap, "SVGA_USE_MIN_MIPMAP", FALSE);
54 DEBUG_GET_ONCE_NUM_OPTION(disable_shader, "SVGA_DISABLE_SHADER", ~0);
55 DEBUG_GET_ONCE_BOOL_OPTION(no_line_width, "SVGA_NO_LINE_WIDTH", FALSE);
56 DEBUG_GET_ONCE_BOOL_OPTION(force_hw_line_stipple, "SVGA_FORCE_HW_LINE_STIPPLE", FALSE);
57
58 static void svga_destroy( struct pipe_context *pipe )
59 {
60 struct svga_context *svga = svga_context( pipe );
61 unsigned shader, i;
62
63 /* free any alternate rasterizer states used for point sprite */
64 for (i = 0; i < ARRAY_SIZE(svga->rasterizer_no_cull); i++) {
65 if (svga->rasterizer_no_cull[i]) {
66 pipe->delete_rasterizer_state(pipe, svga->rasterizer_no_cull[i]);
67 }
68 }
69
70 /* free polygon stipple state */
71 if (svga->polygon_stipple.sampler) {
72 pipe->delete_sampler_state(pipe, svga->polygon_stipple.sampler);
73 }
74 if (svga->polygon_stipple.sampler_view) {
75 pipe->sampler_view_destroy(pipe,
76 &svga->polygon_stipple.sampler_view->base);
77 }
78 pipe_resource_reference(&svga->polygon_stipple.texture, NULL);
79
80 /* free HW constant buffers */
81 for (shader = 0; shader < ARRAY_SIZE(svga->state.hw_draw.constbuf); shader++) {
82 pipe_resource_reference(&svga->state.hw_draw.constbuf[shader], NULL);
83 }
84
85 pipe->delete_blend_state(pipe, svga->noop_blend);
86
87 /* free query gb object */
88 if (svga->gb_query) {
89 pipe->destroy_query(pipe, NULL);
90 svga->gb_query = NULL;
91 }
92
93 util_blitter_destroy(svga->blitter);
94
95 svga_cleanup_framebuffer( svga );
96 svga_cleanup_tss_binding( svga );
97
98 svga_cleanup_vertex_state(svga);
99
100 svga_destroy_swtnl( svga );
101 svga_hwtnl_destroy( svga->hwtnl );
102
103 svga->swc->destroy(svga->swc);
104
105 util_bitmask_destroy(svga->blend_object_id_bm);
106 util_bitmask_destroy(svga->ds_object_id_bm);
107 util_bitmask_destroy(svga->input_element_object_id_bm);
108 util_bitmask_destroy(svga->rast_object_id_bm);
109 util_bitmask_destroy(svga->sampler_object_id_bm);
110 util_bitmask_destroy(svga->sampler_view_id_bm);
111 util_bitmask_destroy(svga->shader_id_bm);
112 util_bitmask_destroy(svga->surface_view_id_bm);
113 util_bitmask_destroy(svga->stream_output_id_bm);
114 util_bitmask_destroy(svga->query_id_bm);
115 u_upload_destroy(svga->const0_upload);
116
117 /* free user's constant buffers */
118 for (shader = 0; shader < PIPE_SHADER_TYPES; ++shader) {
119 for (i = 0; i < ARRAY_SIZE(svga->curr.constbufs[shader]); ++i) {
120 pipe_resource_reference(&svga->curr.constbufs[shader][i].buffer, NULL);
121 }
122 }
123
124 FREE( svga );
125 }
126
127
128
129 struct pipe_context *svga_context_create(struct pipe_screen *screen,
130 void *priv, unsigned flags)
131 {
132 struct svga_screen *svgascreen = svga_screen(screen);
133 struct svga_context *svga = NULL;
134 enum pipe_error ret;
135
136 svga = CALLOC_STRUCT(svga_context);
137 if (!svga)
138 goto cleanup;
139
140 LIST_INITHEAD(&svga->dirty_buffers);
141
142 svga->pipe.screen = screen;
143 svga->pipe.priv = priv;
144 svga->pipe.destroy = svga_destroy;
145 svga->pipe.clear = svga_clear;
146
147 svga->swc = svgascreen->sws->context_create(svgascreen->sws);
148 if (!svga->swc)
149 goto cleanup;
150
151 svga_init_resource_functions(svga);
152 svga_init_blend_functions(svga);
153 svga_init_blit_functions(svga);
154 svga_init_depth_stencil_functions(svga);
155 svga_init_draw_functions(svga);
156 svga_init_flush_functions(svga);
157 svga_init_misc_functions(svga);
158 svga_init_rasterizer_functions(svga);
159 svga_init_sampler_functions(svga);
160 svga_init_fs_functions(svga);
161 svga_init_vs_functions(svga);
162 svga_init_gs_functions(svga);
163 svga_init_vertex_functions(svga);
164 svga_init_constbuffer_functions(svga);
165 svga_init_query_functions(svga);
166 svga_init_surface_functions(svga);
167 svga_init_stream_output_functions(svga);
168
169 /* init misc state */
170 svga->curr.sample_mask = ~0;
171
172 /* debug */
173 svga->debug.no_swtnl = debug_get_option_no_swtnl();
174 svga->debug.force_swtnl = debug_get_option_force_swtnl();
175 svga->debug.use_min_mipmap = debug_get_option_use_min_mipmap();
176 svga->debug.disable_shader = debug_get_option_disable_shader();
177 svga->debug.no_line_width = debug_get_option_no_line_width();
178 svga->debug.force_hw_line_stipple = debug_get_option_force_hw_line_stipple();
179
180 if (!(svga->blend_object_id_bm = util_bitmask_create()))
181 goto cleanup;
182
183 if (!(svga->ds_object_id_bm = util_bitmask_create()))
184 goto cleanup;
185
186 if (!(svga->input_element_object_id_bm = util_bitmask_create()))
187 goto cleanup;
188
189 if (!(svga->rast_object_id_bm = util_bitmask_create()))
190 goto cleanup;
191
192 if (!(svga->sampler_object_id_bm = util_bitmask_create()))
193 goto cleanup;
194
195 if (!(svga->sampler_view_id_bm = util_bitmask_create()))
196 goto cleanup;
197
198 if (!(svga->shader_id_bm = util_bitmask_create()))
199 goto cleanup;
200
201 if (!(svga->surface_view_id_bm = util_bitmask_create()))
202 goto cleanup;
203
204 if (!(svga->stream_output_id_bm = util_bitmask_create()))
205 goto cleanup;
206
207 if (!(svga->query_id_bm = util_bitmask_create()))
208 goto cleanup;
209
210 svga->hwtnl = svga_hwtnl_create(svga);
211 if (svga->hwtnl == NULL)
212 goto cleanup;
213
214 if (!svga_init_swtnl(svga))
215 goto cleanup;
216
217 ret = svga_emit_initial_state( svga );
218 if (ret != PIPE_OK)
219 goto cleanup;
220
221 svga->const0_upload = u_upload_create(&svga->pipe,
222 CONST0_UPLOAD_DEFAULT_SIZE,
223 PIPE_BIND_CONSTANT_BUFFER,
224 PIPE_USAGE_STREAM);
225 if (!svga->const0_upload)
226 goto cleanup;
227
228 /* Avoid shortcircuiting state with initial value of zero.
229 */
230 memset(&svga->state.hw_clear, 0xcd, sizeof(svga->state.hw_clear));
231 memset(&svga->state.hw_clear.framebuffer, 0x0,
232 sizeof(svga->state.hw_clear.framebuffer));
233
234 memset(&svga->state.hw_draw, 0xcd, sizeof(svga->state.hw_draw));
235 memset(&svga->state.hw_draw.views, 0x0, sizeof(svga->state.hw_draw.views));
236 memset(&svga->state.hw_draw.num_sampler_views, 0,
237 sizeof(svga->state.hw_draw.num_sampler_views));
238 svga->state.hw_draw.num_views = 0;
239
240 /* Initialize the shader pointers */
241 svga->state.hw_draw.vs = NULL;
242 svga->state.hw_draw.gs = NULL;
243 svga->state.hw_draw.fs = NULL;
244
245 /* Initialize the currently bound buffer resources */
246 memset(svga->state.hw_draw.constbuf, 0,
247 sizeof(svga->state.hw_draw.constbuf));
248 memset(svga->state.hw_draw.default_constbuf_size, 0,
249 sizeof(svga->state.hw_draw.default_constbuf_size));
250 memset(svga->state.hw_draw.enabled_constbufs, 0,
251 sizeof(svga->state.hw_draw.enabled_constbufs));
252 svga->state.hw_draw.ib = NULL;
253 svga->state.hw_draw.num_vbuffers = 0;
254 memset(svga->state.hw_draw.vbuffers, 0,
255 sizeof(svga->state.hw_draw.vbuffers));
256
257 /* Create a no-operation blend state which we will bind whenever the
258 * requested blend state is impossible (e.g. due to having an integer
259 * render target attached).
260 *
261 * XXX: We will probably actually need 16 of these, one for each possible
262 * RGBA color mask (4 bits). Then, we would bind the one with a color mask
263 * matching the blend state it is replacing.
264 */
265 {
266 struct pipe_blend_state noop_tmpl = {0};
267 unsigned i;
268
269 for (i = 0; i < PIPE_MAX_COLOR_BUFS; ++i) {
270 // Set the color mask to all-ones. Later this may change.
271 noop_tmpl.rt[i].colormask = PIPE_MASK_RGBA;
272 }
273 svga->noop_blend = svga->pipe.create_blend_state(&svga->pipe, &noop_tmpl);
274 }
275
276 svga->dirty = ~0;
277
278 return &svga->pipe;
279
280 cleanup:
281 svga_destroy_swtnl(svga);
282
283 if (svga->const0_upload)
284 u_upload_destroy(svga->const0_upload);
285 if (svga->hwtnl)
286 svga_hwtnl_destroy(svga->hwtnl);
287 if (svga->swc)
288 svga->swc->destroy(svga->swc);
289 util_bitmask_destroy(svga->blend_object_id_bm);
290 util_bitmask_destroy(svga->ds_object_id_bm);
291 util_bitmask_destroy(svga->input_element_object_id_bm);
292 util_bitmask_destroy(svga->rast_object_id_bm);
293 util_bitmask_destroy(svga->sampler_object_id_bm);
294 util_bitmask_destroy(svga->sampler_view_id_bm);
295 util_bitmask_destroy(svga->shader_id_bm);
296 util_bitmask_destroy(svga->surface_view_id_bm);
297 util_bitmask_destroy(svga->stream_output_id_bm);
298 util_bitmask_destroy(svga->query_id_bm);
299 FREE(svga);
300 return NULL;
301 }
302
303
304 void svga_context_flush( struct svga_context *svga,
305 struct pipe_fence_handle **pfence )
306 {
307 struct svga_screen *svgascreen = svga_screen(svga->pipe.screen);
308 struct pipe_fence_handle *fence = NULL;
309 uint64_t t0;
310
311 svga->curr.nr_fbs = 0;
312
313 /* Ensure that texture dma uploads are processed
314 * before submitting commands.
315 */
316 svga_context_flush_buffers(svga);
317
318 svga->hud.command_buffer_size +=
319 svga->swc->get_command_buffer_size(svga->swc);
320
321 /* Flush pending commands to hardware:
322 */
323 t0 = os_time_get();
324 svga->swc->flush(svga->swc, &fence);
325 svga->hud.flush_time += (os_time_get() - t0);
326
327 svga->hud.num_flushes++;
328
329 svga_screen_cache_flush(svgascreen, fence);
330
331 /* To force the re-emission of rendertargets and texture sampler bindings on
332 * the next command buffer.
333 */
334 svga->rebind.flags.rendertargets = TRUE;
335 svga->rebind.flags.texture_samplers = TRUE;
336
337 if (svga_have_gb_objects(svga)) {
338
339 svga->rebind.flags.constbufs = TRUE;
340 svga->rebind.flags.vs = TRUE;
341 svga->rebind.flags.fs = TRUE;
342 svga->rebind.flags.gs = TRUE;
343
344 if (svga_need_to_rebind_resources(svga)) {
345 svga->rebind.flags.query = TRUE;
346 }
347 }
348
349 if (SVGA_DEBUG & DEBUG_SYNC) {
350 if (fence)
351 svga->pipe.screen->fence_finish( svga->pipe.screen, fence,
352 PIPE_TIMEOUT_INFINITE);
353 }
354
355 if (pfence)
356 svgascreen->sws->fence_reference(svgascreen->sws, pfence, fence);
357
358 svgascreen->sws->fence_reference(svgascreen->sws, &fence, NULL);
359 }
360
361
362 /**
363 * Flush pending commands and wait for completion with a fence.
364 */
365 void
366 svga_context_finish(struct svga_context *svga)
367 {
368 struct pipe_screen *screen = svga->pipe.screen;
369 struct pipe_fence_handle *fence = NULL;
370
371 svga_context_flush(svga, &fence);
372 svga->pipe.screen->fence_finish(screen, fence, PIPE_TIMEOUT_INFINITE);
373 screen->fence_reference(screen, &fence, NULL);
374 }
375
376
377 /**
378 * Emit pending drawing commands to the command buffer.
379 * If the command buffer overflows, we flush it and retry.
380 * \sa svga_hwtnl_flush()
381 */
382 void svga_hwtnl_flush_retry( struct svga_context *svga )
383 {
384 enum pipe_error ret = PIPE_OK;
385
386 ret = svga_hwtnl_flush( svga->hwtnl );
387 if (ret == PIPE_ERROR_OUT_OF_MEMORY) {
388 svga_context_flush( svga, NULL );
389 ret = svga_hwtnl_flush( svga->hwtnl );
390 }
391
392 assert(ret == PIPE_OK);
393 }
394
395
396 /**
397 * Flush the primitive queue if this buffer is referred.
398 *
399 * Otherwise DMA commands on the referred buffer will be emitted too late.
400 */
401 void svga_hwtnl_flush_buffer( struct svga_context *svga,
402 struct pipe_resource *buffer )
403 {
404 if (svga_hwtnl_is_buffer_referred(svga->hwtnl, buffer)) {
405 svga_hwtnl_flush_retry(svga);
406 }
407 }
408
409
410 /* Emit all operations pending on host surfaces.
411 */
412 void svga_surfaces_flush(struct svga_context *svga)
413 {
414 struct svga_screen *svgascreen = svga_screen(svga->pipe.screen);
415 unsigned i;
416
417 /* Emit buffered drawing commands.
418 */
419 svga_hwtnl_flush_retry( svga );
420
421 /* Emit back-copy from render target view to texture.
422 */
423 for (i = 0; i < svgascreen->max_color_buffers; i++) {
424 if (svga->curr.framebuffer.cbufs[i])
425 svga_propagate_surface(svga, svga->curr.framebuffer.cbufs[i]);
426 }
427
428 if (svga->curr.framebuffer.zsbuf)
429 svga_propagate_surface(svga, svga->curr.framebuffer.zsbuf);
430
431 }
432
433
434 struct svga_winsys_context *
435 svga_winsys_context( struct pipe_context *pipe )
436 {
437 return svga_context( pipe )->swc;
438 }