i915: Remove most of the code under gen >= 4 checks.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_draw.c
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include <sys/errno.h>
29
30 #include "main/glheader.h"
31 #include "main/context.h"
32 #include "main/condrender.h"
33 #include "main/samplerobj.h"
34 #include "main/state.h"
35 #include "main/enums.h"
36 #include "main/macros.h"
37 #include "main/transformfeedback.h"
38 #include "tnl/tnl.h"
39 #include "vbo/vbo_context.h"
40 #include "swrast/swrast.h"
41 #include "swrast_setup/swrast_setup.h"
42 #include "drivers/common/meta.h"
43
44 #include "brw_blorp.h"
45 #include "brw_draw.h"
46 #include "brw_defines.h"
47 #include "brw_context.h"
48 #include "brw_state.h"
49
50 #include "intel_batchbuffer.h"
51 #include "intel_fbo.h"
52 #include "intel_mipmap_tree.h"
53 #include "intel_regions.h"
54
55 #define FILE_DEBUG_FLAG DEBUG_PRIMS
56
57 static GLuint prim_to_hw_prim[GL_POLYGON+1] = {
58 _3DPRIM_POINTLIST,
59 _3DPRIM_LINELIST,
60 _3DPRIM_LINELOOP,
61 _3DPRIM_LINESTRIP,
62 _3DPRIM_TRILIST,
63 _3DPRIM_TRISTRIP,
64 _3DPRIM_TRIFAN,
65 _3DPRIM_QUADLIST,
66 _3DPRIM_QUADSTRIP,
67 _3DPRIM_POLYGON
68 };
69
70
71 static const GLenum reduced_prim[GL_POLYGON+1] = {
72 GL_POINTS,
73 GL_LINES,
74 GL_LINES,
75 GL_LINES,
76 GL_TRIANGLES,
77 GL_TRIANGLES,
78 GL_TRIANGLES,
79 GL_TRIANGLES,
80 GL_TRIANGLES,
81 GL_TRIANGLES
82 };
83
84
85 /* When the primitive changes, set a state bit and re-validate. Not
86 * the nicest and would rather deal with this by having all the
87 * programs be immune to the active primitive (ie. cope with all
88 * possibilities). That may not be realistic however.
89 */
90 static void brw_set_prim(struct brw_context *brw,
91 const struct _mesa_prim *prim)
92 {
93 struct gl_context *ctx = &brw->intel.ctx;
94 uint32_t hw_prim = prim_to_hw_prim[prim->mode];
95
96 DBG("PRIM: %s\n", _mesa_lookup_enum_by_nr(prim->mode));
97
98 /* Slight optimization to avoid the GS program when not needed:
99 */
100 if (prim->mode == GL_QUAD_STRIP &&
101 ctx->Light.ShadeModel != GL_FLAT &&
102 ctx->Polygon.FrontMode == GL_FILL &&
103 ctx->Polygon.BackMode == GL_FILL)
104 hw_prim = _3DPRIM_TRISTRIP;
105
106 if (prim->mode == GL_QUADS && prim->count == 4 &&
107 ctx->Light.ShadeModel != GL_FLAT &&
108 ctx->Polygon.FrontMode == GL_FILL &&
109 ctx->Polygon.BackMode == GL_FILL) {
110 hw_prim = _3DPRIM_TRIFAN;
111 }
112
113 if (hw_prim != brw->primitive) {
114 brw->primitive = hw_prim;
115 brw->state.dirty.brw |= BRW_NEW_PRIMITIVE;
116
117 if (reduced_prim[prim->mode] != brw->intel.reduced_primitive) {
118 brw->intel.reduced_primitive = reduced_prim[prim->mode];
119 brw->state.dirty.brw |= BRW_NEW_REDUCED_PRIMITIVE;
120 }
121 }
122 }
123
124 static void gen6_set_prim(struct brw_context *brw,
125 const struct _mesa_prim *prim)
126 {
127 uint32_t hw_prim;
128
129 DBG("PRIM: %s\n", _mesa_lookup_enum_by_nr(prim->mode));
130
131 hw_prim = prim_to_hw_prim[prim->mode];
132
133 if (hw_prim != brw->primitive) {
134 brw->primitive = hw_prim;
135 brw->state.dirty.brw |= BRW_NEW_PRIMITIVE;
136 }
137 }
138
139
140 /**
141 * The hardware is capable of removing dangling vertices on its own; however,
142 * prior to Gen6, we sometimes convert quads into trifans (and quad strips
143 * into tristrips), since pre-Gen6 hardware requires a GS to render quads.
144 * This function manually trims dangling vertices from a draw call involving
145 * quads so that those dangling vertices won't get drawn when we convert to
146 * trifans/tristrips.
147 */
148 static GLuint trim(GLenum prim, GLuint length)
149 {
150 if (prim == GL_QUAD_STRIP)
151 return length > 3 ? (length - length % 2) : 0;
152 else if (prim == GL_QUADS)
153 return length - length % 4;
154 else
155 return length;
156 }
157
158
159 static void brw_emit_prim(struct brw_context *brw,
160 const struct _mesa_prim *prim,
161 uint32_t hw_prim)
162 {
163 struct intel_context *intel = &brw->intel;
164 int verts_per_instance;
165 int vertex_access_type;
166 int start_vertex_location;
167 int base_vertex_location;
168
169 DBG("PRIM: %s %d %d\n", _mesa_lookup_enum_by_nr(prim->mode),
170 prim->start, prim->count);
171
172 start_vertex_location = prim->start;
173 base_vertex_location = prim->basevertex;
174 if (prim->indexed) {
175 vertex_access_type = GEN4_3DPRIM_VERTEXBUFFER_ACCESS_RANDOM;
176 start_vertex_location += brw->ib.start_vertex_offset;
177 base_vertex_location += brw->vb.start_vertex_bias;
178 } else {
179 vertex_access_type = GEN4_3DPRIM_VERTEXBUFFER_ACCESS_SEQUENTIAL;
180 start_vertex_location += brw->vb.start_vertex_bias;
181 }
182
183 /* We only need to trim the primitive count on pre-Gen6. */
184 if (intel->gen < 6)
185 verts_per_instance = trim(prim->mode, prim->count);
186 else
187 verts_per_instance = prim->count;
188
189 /* If nothing to emit, just return. */
190 if (verts_per_instance == 0)
191 return;
192
193 /* If we're set to always flush, do it before and after the primitive emit.
194 * We want to catch both missed flushes that hurt instruction/state cache
195 * and missed flushes of the render cache as it heads to other parts of
196 * the besides the draw code.
197 */
198 if (intel->always_flush_cache) {
199 intel_batchbuffer_emit_mi_flush(intel);
200 }
201
202 BEGIN_BATCH(6);
203 OUT_BATCH(CMD_3D_PRIM << 16 | (6 - 2) |
204 hw_prim << GEN4_3DPRIM_TOPOLOGY_TYPE_SHIFT |
205 vertex_access_type);
206 OUT_BATCH(verts_per_instance);
207 OUT_BATCH(start_vertex_location);
208 OUT_BATCH(prim->num_instances);
209 OUT_BATCH(prim->base_instance);
210 OUT_BATCH(base_vertex_location);
211 ADVANCE_BATCH();
212
213 intel->batch.need_workaround_flush = true;
214
215 if (intel->always_flush_cache) {
216 intel_batchbuffer_emit_mi_flush(intel);
217 }
218 }
219
220 static void gen7_emit_prim(struct brw_context *brw,
221 const struct _mesa_prim *prim,
222 uint32_t hw_prim)
223 {
224 struct intel_context *intel = &brw->intel;
225 int verts_per_instance;
226 int vertex_access_type;
227 int start_vertex_location;
228 int base_vertex_location;
229
230 DBG("PRIM: %s %d %d\n", _mesa_lookup_enum_by_nr(prim->mode),
231 prim->start, prim->count);
232
233 start_vertex_location = prim->start;
234 base_vertex_location = prim->basevertex;
235 if (prim->indexed) {
236 vertex_access_type = GEN7_3DPRIM_VERTEXBUFFER_ACCESS_RANDOM;
237 start_vertex_location += brw->ib.start_vertex_offset;
238 base_vertex_location += brw->vb.start_vertex_bias;
239 } else {
240 vertex_access_type = GEN7_3DPRIM_VERTEXBUFFER_ACCESS_SEQUENTIAL;
241 start_vertex_location += brw->vb.start_vertex_bias;
242 }
243
244 verts_per_instance = prim->count;
245
246 /* If nothing to emit, just return. */
247 if (verts_per_instance == 0)
248 return;
249
250 /* If we're set to always flush, do it before and after the primitive emit.
251 * We want to catch both missed flushes that hurt instruction/state cache
252 * and missed flushes of the render cache as it heads to other parts of
253 * the besides the draw code.
254 */
255 if (intel->always_flush_cache) {
256 intel_batchbuffer_emit_mi_flush(intel);
257 }
258
259 BEGIN_BATCH(7);
260 OUT_BATCH(CMD_3D_PRIM << 16 | (7 - 2));
261 OUT_BATCH(hw_prim | vertex_access_type);
262 OUT_BATCH(verts_per_instance);
263 OUT_BATCH(start_vertex_location);
264 OUT_BATCH(prim->num_instances);
265 OUT_BATCH(prim->base_instance);
266 OUT_BATCH(base_vertex_location);
267 ADVANCE_BATCH();
268
269 if (intel->always_flush_cache) {
270 intel_batchbuffer_emit_mi_flush(intel);
271 }
272 }
273
274
275 static void brw_merge_inputs( struct brw_context *brw,
276 const struct gl_client_array *arrays[])
277 {
278 GLuint i;
279
280 for (i = 0; i < brw->vb.nr_buffers; i++) {
281 drm_intel_bo_unreference(brw->vb.buffers[i].bo);
282 brw->vb.buffers[i].bo = NULL;
283 }
284 brw->vb.nr_buffers = 0;
285
286 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
287 brw->vb.inputs[i].buffer = -1;
288 brw->vb.inputs[i].glarray = arrays[i];
289 brw->vb.inputs[i].attrib = (gl_vert_attrib) i;
290 }
291 }
292
293 /*
294 * \brief Resolve buffers before drawing.
295 *
296 * Resolve the depth buffer's HiZ buffer and resolve the depth buffer of each
297 * enabled depth texture.
298 *
299 * (In the future, this will also perform MSAA resolves).
300 */
301 static void
302 brw_predraw_resolve_buffers(struct brw_context *brw)
303 {
304 struct gl_context *ctx = &brw->intel.ctx;
305 struct intel_context *intel = &brw->intel;
306 struct intel_renderbuffer *depth_irb;
307 struct intel_texture_object *tex_obj;
308
309 /* Resolve the depth buffer's HiZ buffer. */
310 depth_irb = intel_get_renderbuffer(ctx->DrawBuffer, BUFFER_DEPTH);
311 if (depth_irb)
312 intel_renderbuffer_resolve_hiz(intel, depth_irb);
313
314 /* Resolve depth buffer of each enabled depth texture, and color buffer of
315 * each fast-clear-enabled color texture.
316 */
317 for (int i = 0; i < BRW_MAX_TEX_UNIT; i++) {
318 if (!ctx->Texture.Unit[i]._ReallyEnabled)
319 continue;
320 tex_obj = intel_texture_object(ctx->Texture.Unit[i]._Current);
321 if (!tex_obj || !tex_obj->mt)
322 continue;
323 intel_miptree_all_slices_resolve_depth(intel, tex_obj->mt);
324 intel_miptree_resolve_color(intel, tex_obj->mt);
325 }
326 }
327
328 /**
329 * \brief Call this after drawing to mark which buffers need resolving
330 *
331 * If the depth buffer was written to and if it has an accompanying HiZ
332 * buffer, then mark that it needs a depth resolve.
333 *
334 * If the color buffer is a multisample window system buffer, then
335 * mark that it needs a downsample.
336 */
337 static void brw_postdraw_set_buffers_need_resolve(struct brw_context *brw)
338 {
339 struct intel_context *intel = &brw->intel;
340 struct gl_context *ctx = &brw->intel.ctx;
341 struct gl_framebuffer *fb = ctx->DrawBuffer;
342
343 struct intel_renderbuffer *front_irb = NULL;
344 struct intel_renderbuffer *back_irb = intel_get_renderbuffer(fb, BUFFER_BACK_LEFT);
345 struct intel_renderbuffer *depth_irb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
346
347 if (intel->is_front_buffer_rendering)
348 front_irb = intel_get_renderbuffer(fb, BUFFER_FRONT_LEFT);
349
350 if (front_irb)
351 intel_renderbuffer_set_needs_downsample(front_irb);
352 if (back_irb)
353 intel_renderbuffer_set_needs_downsample(back_irb);
354 if (depth_irb && ctx->Depth.Mask)
355 intel_renderbuffer_set_needs_depth_resolve(depth_irb);
356 }
357
358 /* May fail if out of video memory for texture or vbo upload, or on
359 * fallback conditions.
360 */
361 static bool brw_try_draw_prims( struct gl_context *ctx,
362 const struct gl_client_array *arrays[],
363 const struct _mesa_prim *prim,
364 GLuint nr_prims,
365 const struct _mesa_index_buffer *ib,
366 GLuint min_index,
367 GLuint max_index )
368 {
369 struct intel_context *intel = intel_context(ctx);
370 struct brw_context *brw = brw_context(ctx);
371 bool retval = true;
372 GLuint i;
373 bool fail_next = false;
374
375 if (ctx->NewState)
376 _mesa_update_state( ctx );
377
378 /* We have to validate the textures *before* checking for fallbacks;
379 * otherwise, the software fallback won't be able to rely on the
380 * texture state, the firstLevel and lastLevel fields won't be
381 * set in the intel texture object (they'll both be 0), and the
382 * software fallback will segfault if it attempts to access any
383 * texture level other than level 0.
384 */
385 brw_validate_textures( brw );
386
387 intel_prepare_render(intel);
388
389 /* This workaround has to happen outside of brw_upload_state() because it
390 * may flush the batchbuffer for a blit, affecting the state flags.
391 */
392 brw_workaround_depthstencil_alignment(brw, 0);
393
394 /* Resolves must occur after updating renderbuffers, updating context state,
395 * and finalizing textures but before setting up any hardware state for
396 * this draw call.
397 */
398 brw_predraw_resolve_buffers(brw);
399
400 /* Bind all inputs, derive varying and size information:
401 */
402 brw_merge_inputs( brw, arrays );
403
404 brw->ib.ib = ib;
405 brw->state.dirty.brw |= BRW_NEW_INDICES;
406
407 brw->vb.min_index = min_index;
408 brw->vb.max_index = max_index;
409 brw->state.dirty.brw |= BRW_NEW_VERTICES;
410
411 for (i = 0; i < nr_prims; i++) {
412 int estimated_max_prim_size;
413
414 estimated_max_prim_size = 512; /* batchbuffer commands */
415 estimated_max_prim_size += (BRW_MAX_TEX_UNIT *
416 (sizeof(struct brw_sampler_state) +
417 sizeof(struct gen5_sampler_default_color)));
418 estimated_max_prim_size += 1024; /* gen6 VS push constants */
419 estimated_max_prim_size += 1024; /* gen6 WM push constants */
420 estimated_max_prim_size += 512; /* misc. pad */
421
422 /* Flush the batch if it's approaching full, so that we don't wrap while
423 * we've got validated state that needs to be in the same batch as the
424 * primitives.
425 */
426 intel_batchbuffer_require_space(intel, estimated_max_prim_size, false);
427 intel_batchbuffer_save_state(intel);
428
429 if (brw->num_instances != prim->num_instances) {
430 brw->num_instances = prim->num_instances;
431 brw->state.dirty.brw |= BRW_NEW_VERTICES;
432 }
433 if (brw->basevertex != prim->basevertex) {
434 brw->basevertex = prim->basevertex;
435 brw->state.dirty.brw |= BRW_NEW_VERTICES;
436 }
437 if (intel->gen < 6)
438 brw_set_prim(brw, &prim[i]);
439 else
440 gen6_set_prim(brw, &prim[i]);
441
442 retry:
443 /* Note that before the loop, brw->state.dirty.brw was set to != 0, and
444 * that the state updated in the loop outside of this block is that in
445 * *_set_prim or intel_batchbuffer_flush(), which only impacts
446 * brw->state.dirty.brw.
447 */
448 if (brw->state.dirty.brw) {
449 intel->no_batch_wrap = true;
450 brw_upload_state(brw);
451 }
452
453 if (intel->gen >= 7)
454 gen7_emit_prim(brw, &prim[i], brw->primitive);
455 else
456 brw_emit_prim(brw, &prim[i], brw->primitive);
457
458 intel->no_batch_wrap = false;
459
460 if (dri_bufmgr_check_aperture_space(&intel->batch.bo, 1)) {
461 if (!fail_next) {
462 intel_batchbuffer_reset_to_saved(intel);
463 intel_batchbuffer_flush(intel);
464 fail_next = true;
465 goto retry;
466 } else {
467 if (intel_batchbuffer_flush(intel) == -ENOSPC) {
468 static bool warned = false;
469
470 if (!warned) {
471 fprintf(stderr, "i965: Single primitive emit exceeded"
472 "available aperture space\n");
473 warned = true;
474 }
475
476 retval = false;
477 }
478 }
479 }
480 }
481
482 if (intel->always_flush_batch)
483 intel_batchbuffer_flush(intel);
484
485 brw_state_cache_check_size(brw);
486 brw_postdraw_set_buffers_need_resolve(brw);
487
488 return retval;
489 }
490
491 void brw_draw_prims( struct gl_context *ctx,
492 const struct _mesa_prim *prim,
493 GLuint nr_prims,
494 const struct _mesa_index_buffer *ib,
495 GLboolean index_bounds_valid,
496 GLuint min_index,
497 GLuint max_index,
498 struct gl_transform_feedback_object *tfb_vertcount )
499 {
500 struct intel_context *intel = intel_context(ctx);
501 const struct gl_client_array **arrays = ctx->Array._DrawArrays;
502
503 if (!_mesa_check_conditional_render(ctx))
504 return;
505
506 /* Handle primitive restart if needed */
507 if (brw_handle_primitive_restart(ctx, prim, nr_prims, ib)) {
508 /* The draw was handled, so we can exit now */
509 return;
510 }
511
512 /* If we're going to have to upload any of the user's vertex arrays, then
513 * get the minimum and maximum of their index buffer so we know what range
514 * to upload.
515 */
516 if (!vbo_all_varyings_in_vbos(arrays) && !index_bounds_valid)
517 vbo_get_minmax_indices(ctx, prim, ib, &min_index, &max_index, nr_prims);
518
519 /* Do GL_SELECT and GL_FEEDBACK rendering using swrast, even though it
520 * won't support all the extensions we support.
521 */
522 if (ctx->RenderMode != GL_RENDER) {
523 perf_debug("%s render mode not supported in hardware\n",
524 _mesa_lookup_enum_by_nr(ctx->RenderMode));
525 _swsetup_Wakeup(ctx);
526 _tnl_wakeup(ctx);
527 _tnl_draw_prims(ctx, arrays, prim, nr_prims, ib, min_index, max_index);
528 return;
529 }
530
531 /* Try drawing with the hardware, but don't do anything else if we can't
532 * manage it. swrast doesn't support our featureset, so we can't fall back
533 * to it.
534 */
535 brw_try_draw_prims(ctx, arrays, prim, nr_prims, ib, min_index, max_index);
536 }
537
538 void brw_draw_init( struct brw_context *brw )
539 {
540 struct gl_context *ctx = &brw->intel.ctx;
541 struct vbo_context *vbo = vbo_context(ctx);
542 int i;
543
544 /* Register our drawing function:
545 */
546 vbo->draw_prims = brw_draw_prims;
547
548 for (i = 0; i < VERT_ATTRIB_MAX; i++)
549 brw->vb.inputs[i].buffer = -1;
550 brw->vb.nr_buffers = 0;
551 brw->vb.nr_enabled = 0;
552 }
553
554 void brw_draw_destroy( struct brw_context *brw )
555 {
556 int i;
557
558 for (i = 0; i < brw->vb.nr_buffers; i++) {
559 drm_intel_bo_unreference(brw->vb.buffers[i].bo);
560 brw->vb.buffers[i].bo = NULL;
561 }
562 brw->vb.nr_buffers = 0;
563
564 for (i = 0; i < brw->vb.nr_enabled; i++) {
565 brw->vb.enabled[i]->buffer = -1;
566 }
567 brw->vb.nr_enabled = 0;
568
569 drm_intel_bo_unreference(brw->ib.bo);
570 brw->ib.bo = NULL;
571 }