i965: replace brw_tess_{eval,ctrl}_program with brw_program
[mesa.git] / src / mesa / drivers / dri / i965 / brw_context.h
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a 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, sublicense, 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
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keithw@vmware.com>
30 */
31
32
33 #ifndef BRWCONTEXT_INC
34 #define BRWCONTEXT_INC
35
36 #include <stdbool.h>
37 #include "main/macros.h"
38 #include "main/mtypes.h"
39 #include "brw_structs.h"
40 #include "brw_compiler.h"
41 #include "intel_aub.h"
42
43 #include "isl/isl.h"
44 #include "blorp/blorp.h"
45
46 #ifdef __cplusplus
47 extern "C" {
48 /* Evil hack for using libdrm in a c++ compiler. */
49 #define virtual virt
50 #endif
51
52 #include <intel_bufmgr.h>
53 #ifdef __cplusplus
54 #undef virtual
55 }
56 #endif
57
58 #ifdef __cplusplus
59 extern "C" {
60 #endif
61 #include "intel_debug.h"
62 #include "intel_screen.h"
63 #include "intel_tex_obj.h"
64 #include "intel_resolve_map.h"
65
66 /* Glossary:
67 *
68 * URB - uniform resource buffer. A mid-sized buffer which is
69 * partitioned between the fixed function units and used for passing
70 * values (vertices, primitives, constants) between them.
71 *
72 * CURBE - constant URB entry. An urb region (entry) used to hold
73 * constant values which the fixed function units can be instructed to
74 * preload into the GRF when spawning a thread.
75 *
76 * VUE - vertex URB entry. An urb entry holding a vertex and usually
77 * a vertex header. The header contains control information and
78 * things like primitive type, Begin/end flags and clip codes.
79 *
80 * PUE - primitive URB entry. An urb entry produced by the setup (SF)
81 * unit holding rasterization and interpolation parameters.
82 *
83 * GRF - general register file. One of several register files
84 * addressable by programmed threads. The inputs (r0, payload, curbe,
85 * urb) of the thread are preloaded to this area before the thread is
86 * spawned. The registers are individually 8 dwords wide and suitable
87 * for general usage. Registers holding thread input values are not
88 * special and may be overwritten.
89 *
90 * MRF - message register file. Threads communicate (and terminate)
91 * by sending messages. Message parameters are placed in contiguous
92 * MRF registers. All program output is via these messages. URB
93 * entries are populated by sending a message to the shared URB
94 * function containing the new data, together with a control word,
95 * often an unmodified copy of R0.
96 *
97 * R0 - GRF register 0. Typically holds control information used when
98 * sending messages to other threads.
99 *
100 * EU or GEN4 EU: The name of the programmable subsystem of the
101 * i965 hardware. Threads are executed by the EU, the registers
102 * described above are part of the EU architecture.
103 *
104 * Fixed function units:
105 *
106 * CS - Command streamer. Notional first unit, little software
107 * interaction. Holds the URB entries used for constant data, ie the
108 * CURBEs.
109 *
110 * VF/VS - Vertex Fetch / Vertex Shader. The fixed function part of
111 * this unit is responsible for pulling vertices out of vertex buffers
112 * in vram and injecting them into the processing pipe as VUEs. If
113 * enabled, it first passes them to a VS thread which is a good place
114 * for the driver to implement any active vertex shader.
115 *
116 * HS - Hull Shader (Tessellation Control Shader)
117 *
118 * TE - Tessellation Engine (Tessellation Primitive Generation)
119 *
120 * DS - Domain Shader (Tessellation Evaluation Shader)
121 *
122 * GS - Geometry Shader. This corresponds to a new DX10 concept. If
123 * enabled, incoming strips etc are passed to GS threads in individual
124 * line/triangle/point units. The GS thread may perform arbitary
125 * computation and emit whatever primtives with whatever vertices it
126 * chooses. This makes GS an excellent place to implement GL's
127 * unfilled polygon modes, though of course it is capable of much
128 * more. Additionally, GS is used to translate away primitives not
129 * handled by latter units, including Quads and Lineloops.
130 *
131 * CS - Clipper. Mesa's clipping algorithms are imported to run on
132 * this unit. The fixed function part performs cliptesting against
133 * the 6 fixed clipplanes and makes descisions on whether or not the
134 * incoming primitive needs to be passed to a thread for clipping.
135 * User clip planes are handled via cooperation with the VS thread.
136 *
137 * SF - Strips Fans or Setup: Triangles are prepared for
138 * rasterization. Interpolation coefficients are calculated.
139 * Flatshading and two-side lighting usually performed here.
140 *
141 * WM - Windower. Interpolation of vertex attributes performed here.
142 * Fragment shader implemented here. SIMD aspects of EU taken full
143 * advantage of, as pixels are processed in blocks of 16.
144 *
145 * CC - Color Calculator. No EU threads associated with this unit.
146 * Handles blending and (presumably) depth and stencil testing.
147 */
148
149 struct brw_context;
150 struct brw_inst;
151 struct brw_vs_prog_key;
152 struct brw_vue_prog_key;
153 struct brw_wm_prog_key;
154 struct brw_wm_prog_data;
155 struct brw_cs_prog_key;
156 struct brw_cs_prog_data;
157
158 enum brw_pipeline {
159 BRW_RENDER_PIPELINE,
160 BRW_COMPUTE_PIPELINE,
161
162 BRW_NUM_PIPELINES
163 };
164
165 enum brw_cache_id {
166 BRW_CACHE_FS_PROG,
167 BRW_CACHE_BLORP_PROG,
168 BRW_CACHE_SF_PROG,
169 BRW_CACHE_VS_PROG,
170 BRW_CACHE_FF_GS_PROG,
171 BRW_CACHE_GS_PROG,
172 BRW_CACHE_TCS_PROG,
173 BRW_CACHE_TES_PROG,
174 BRW_CACHE_CLIP_PROG,
175 BRW_CACHE_CS_PROG,
176
177 BRW_MAX_CACHE
178 };
179
180 enum brw_state_id {
181 /* brw_cache_ids must come first - see brw_state_cache.c */
182 BRW_STATE_URB_FENCE = BRW_MAX_CACHE,
183 BRW_STATE_FRAGMENT_PROGRAM,
184 BRW_STATE_GEOMETRY_PROGRAM,
185 BRW_STATE_TESS_PROGRAMS,
186 BRW_STATE_VERTEX_PROGRAM,
187 BRW_STATE_CURBE_OFFSETS,
188 BRW_STATE_REDUCED_PRIMITIVE,
189 BRW_STATE_PATCH_PRIMITIVE,
190 BRW_STATE_PRIMITIVE,
191 BRW_STATE_CONTEXT,
192 BRW_STATE_PSP,
193 BRW_STATE_SURFACES,
194 BRW_STATE_BINDING_TABLE_POINTERS,
195 BRW_STATE_INDICES,
196 BRW_STATE_VERTICES,
197 BRW_STATE_DEFAULT_TESS_LEVELS,
198 BRW_STATE_BATCH,
199 BRW_STATE_INDEX_BUFFER,
200 BRW_STATE_VS_CONSTBUF,
201 BRW_STATE_TCS_CONSTBUF,
202 BRW_STATE_TES_CONSTBUF,
203 BRW_STATE_GS_CONSTBUF,
204 BRW_STATE_PROGRAM_CACHE,
205 BRW_STATE_STATE_BASE_ADDRESS,
206 BRW_STATE_VUE_MAP_GEOM_OUT,
207 BRW_STATE_TRANSFORM_FEEDBACK,
208 BRW_STATE_RASTERIZER_DISCARD,
209 BRW_STATE_STATS_WM,
210 BRW_STATE_UNIFORM_BUFFER,
211 BRW_STATE_ATOMIC_BUFFER,
212 BRW_STATE_IMAGE_UNITS,
213 BRW_STATE_META_IN_PROGRESS,
214 BRW_STATE_PUSH_CONSTANT_ALLOCATION,
215 BRW_STATE_NUM_SAMPLES,
216 BRW_STATE_TEXTURE_BUFFER,
217 BRW_STATE_GEN4_UNIT_STATE,
218 BRW_STATE_CC_VP,
219 BRW_STATE_SF_VP,
220 BRW_STATE_CLIP_VP,
221 BRW_STATE_SAMPLER_STATE_TABLE,
222 BRW_STATE_VS_ATTRIB_WORKAROUNDS,
223 BRW_STATE_COMPUTE_PROGRAM,
224 BRW_STATE_CS_WORK_GROUPS,
225 BRW_STATE_URB_SIZE,
226 BRW_STATE_CC_STATE,
227 BRW_STATE_BLORP,
228 BRW_STATE_VIEWPORT_COUNT,
229 BRW_NUM_STATE_BITS
230 };
231
232 /**
233 * BRW_NEW_*_PROG_DATA and BRW_NEW_*_PROGRAM are similar, but distinct.
234 *
235 * BRW_NEW_*_PROGRAM relates to the gl_shader_program/gl_program structures.
236 * When the currently bound shader program differs from the previous draw
237 * call, these will be flagged. They cover brw->{stage}_program and
238 * ctx->{Stage}Program->_Current.
239 *
240 * BRW_NEW_*_PROG_DATA is flagged when the effective shaders change, from a
241 * driver perspective. Even if the same shader is bound at the API level,
242 * we may need to switch between multiple versions of that shader to handle
243 * changes in non-orthagonal state.
244 *
245 * Additionally, multiple shader programs may have identical vertex shaders
246 * (for example), or compile down to the same code in the backend. We combine
247 * those into a single program cache entry.
248 *
249 * BRW_NEW_*_PROG_DATA occurs when switching program cache entries, which
250 * covers the brw_*_prog_data structures, and brw->*.prog_offset.
251 */
252 #define BRW_NEW_FS_PROG_DATA (1ull << BRW_CACHE_FS_PROG)
253 /* XXX: The BRW_NEW_BLORP_BLIT_PROG_DATA dirty bit is unused (as BLORP doesn't
254 * use the normal state upload paths), but the cache is still used. To avoid
255 * polluting the brw_state_cache code with special cases, we retain the dirty
256 * bit for now. It should eventually be removed.
257 */
258 #define BRW_NEW_BLORP_BLIT_PROG_DATA (1ull << BRW_CACHE_BLORP_PROG)
259 #define BRW_NEW_SF_PROG_DATA (1ull << BRW_CACHE_SF_PROG)
260 #define BRW_NEW_VS_PROG_DATA (1ull << BRW_CACHE_VS_PROG)
261 #define BRW_NEW_FF_GS_PROG_DATA (1ull << BRW_CACHE_FF_GS_PROG)
262 #define BRW_NEW_GS_PROG_DATA (1ull << BRW_CACHE_GS_PROG)
263 #define BRW_NEW_TCS_PROG_DATA (1ull << BRW_CACHE_TCS_PROG)
264 #define BRW_NEW_TES_PROG_DATA (1ull << BRW_CACHE_TES_PROG)
265 #define BRW_NEW_CLIP_PROG_DATA (1ull << BRW_CACHE_CLIP_PROG)
266 #define BRW_NEW_CS_PROG_DATA (1ull << BRW_CACHE_CS_PROG)
267 #define BRW_NEW_URB_FENCE (1ull << BRW_STATE_URB_FENCE)
268 #define BRW_NEW_FRAGMENT_PROGRAM (1ull << BRW_STATE_FRAGMENT_PROGRAM)
269 #define BRW_NEW_GEOMETRY_PROGRAM (1ull << BRW_STATE_GEOMETRY_PROGRAM)
270 #define BRW_NEW_TESS_PROGRAMS (1ull << BRW_STATE_TESS_PROGRAMS)
271 #define BRW_NEW_VERTEX_PROGRAM (1ull << BRW_STATE_VERTEX_PROGRAM)
272 #define BRW_NEW_CURBE_OFFSETS (1ull << BRW_STATE_CURBE_OFFSETS)
273 #define BRW_NEW_REDUCED_PRIMITIVE (1ull << BRW_STATE_REDUCED_PRIMITIVE)
274 #define BRW_NEW_PATCH_PRIMITIVE (1ull << BRW_STATE_PATCH_PRIMITIVE)
275 #define BRW_NEW_PRIMITIVE (1ull << BRW_STATE_PRIMITIVE)
276 #define BRW_NEW_CONTEXT (1ull << BRW_STATE_CONTEXT)
277 #define BRW_NEW_PSP (1ull << BRW_STATE_PSP)
278 #define BRW_NEW_SURFACES (1ull << BRW_STATE_SURFACES)
279 #define BRW_NEW_BINDING_TABLE_POINTERS (1ull << BRW_STATE_BINDING_TABLE_POINTERS)
280 #define BRW_NEW_INDICES (1ull << BRW_STATE_INDICES)
281 #define BRW_NEW_VERTICES (1ull << BRW_STATE_VERTICES)
282 #define BRW_NEW_DEFAULT_TESS_LEVELS (1ull << BRW_STATE_DEFAULT_TESS_LEVELS)
283 /**
284 * Used for any batch entry with a relocated pointer that will be used
285 * by any 3D rendering.
286 */
287 #define BRW_NEW_BATCH (1ull << BRW_STATE_BATCH)
288 /** \see brw.state.depth_region */
289 #define BRW_NEW_INDEX_BUFFER (1ull << BRW_STATE_INDEX_BUFFER)
290 #define BRW_NEW_VS_CONSTBUF (1ull << BRW_STATE_VS_CONSTBUF)
291 #define BRW_NEW_TCS_CONSTBUF (1ull << BRW_STATE_TCS_CONSTBUF)
292 #define BRW_NEW_TES_CONSTBUF (1ull << BRW_STATE_TES_CONSTBUF)
293 #define BRW_NEW_GS_CONSTBUF (1ull << BRW_STATE_GS_CONSTBUF)
294 #define BRW_NEW_PROGRAM_CACHE (1ull << BRW_STATE_PROGRAM_CACHE)
295 #define BRW_NEW_STATE_BASE_ADDRESS (1ull << BRW_STATE_STATE_BASE_ADDRESS)
296 #define BRW_NEW_VUE_MAP_GEOM_OUT (1ull << BRW_STATE_VUE_MAP_GEOM_OUT)
297 #define BRW_NEW_VIEWPORT_COUNT (1ull << BRW_STATE_VIEWPORT_COUNT)
298 #define BRW_NEW_TRANSFORM_FEEDBACK (1ull << BRW_STATE_TRANSFORM_FEEDBACK)
299 #define BRW_NEW_RASTERIZER_DISCARD (1ull << BRW_STATE_RASTERIZER_DISCARD)
300 #define BRW_NEW_STATS_WM (1ull << BRW_STATE_STATS_WM)
301 #define BRW_NEW_UNIFORM_BUFFER (1ull << BRW_STATE_UNIFORM_BUFFER)
302 #define BRW_NEW_ATOMIC_BUFFER (1ull << BRW_STATE_ATOMIC_BUFFER)
303 #define BRW_NEW_IMAGE_UNITS (1ull << BRW_STATE_IMAGE_UNITS)
304 #define BRW_NEW_META_IN_PROGRESS (1ull << BRW_STATE_META_IN_PROGRESS)
305 #define BRW_NEW_PUSH_CONSTANT_ALLOCATION (1ull << BRW_STATE_PUSH_CONSTANT_ALLOCATION)
306 #define BRW_NEW_NUM_SAMPLES (1ull << BRW_STATE_NUM_SAMPLES)
307 #define BRW_NEW_TEXTURE_BUFFER (1ull << BRW_STATE_TEXTURE_BUFFER)
308 #define BRW_NEW_GEN4_UNIT_STATE (1ull << BRW_STATE_GEN4_UNIT_STATE)
309 #define BRW_NEW_CC_VP (1ull << BRW_STATE_CC_VP)
310 #define BRW_NEW_SF_VP (1ull << BRW_STATE_SF_VP)
311 #define BRW_NEW_CLIP_VP (1ull << BRW_STATE_CLIP_VP)
312 #define BRW_NEW_SAMPLER_STATE_TABLE (1ull << BRW_STATE_SAMPLER_STATE_TABLE)
313 #define BRW_NEW_VS_ATTRIB_WORKAROUNDS (1ull << BRW_STATE_VS_ATTRIB_WORKAROUNDS)
314 #define BRW_NEW_COMPUTE_PROGRAM (1ull << BRW_STATE_COMPUTE_PROGRAM)
315 #define BRW_NEW_CS_WORK_GROUPS (1ull << BRW_STATE_CS_WORK_GROUPS)
316 #define BRW_NEW_URB_SIZE (1ull << BRW_STATE_URB_SIZE)
317 #define BRW_NEW_CC_STATE (1ull << BRW_STATE_CC_STATE)
318 #define BRW_NEW_BLORP (1ull << BRW_STATE_BLORP)
319
320 struct brw_state_flags {
321 /** State update flags signalled by mesa internals */
322 GLuint mesa;
323 /**
324 * State update flags signalled as the result of brw_tracked_state updates
325 */
326 uint64_t brw;
327 };
328
329
330 /** Subclass of Mesa program */
331 struct brw_program {
332 struct gl_program program;
333 GLuint id;
334 };
335
336
337 /** Subclass of Mesa fragment program */
338 struct brw_fragment_program {
339 struct gl_program program;
340 GLuint id; /**< serial no. to identify frag progs, never re-used */
341 };
342
343
344 struct gen4_fragment_program {
345 struct brw_fragment_program base;
346
347 bool contains_flat_varying;
348 bool contains_noperspective_varying;
349
350 /*
351 * Mapping of varying slots to interpolation modes.
352 * Used Gen4/5 by the clip|sf|wm stages.
353 */
354 unsigned char interp_mode[BRW_VARYING_SLOT_COUNT];
355 };
356
357
358 /** Subclass of Mesa compute program */
359 struct brw_compute_program {
360 struct gl_program program;
361 unsigned id; /**< serial no. to identify compute progs, never re-used */
362 };
363
364
365 struct brw_shader {
366 struct gl_linked_shader base;
367
368 bool compiled_once;
369 };
370
371 /**
372 * Bitmask indicating which fragment shader inputs represent varyings (and
373 * hence have to be delivered to the fragment shader by the SF/SBE stage).
374 */
375 #define BRW_FS_VARYING_INPUT_MASK \
376 (BITFIELD64_RANGE(0, VARYING_SLOT_MAX) & \
377 ~VARYING_BIT_POS & ~VARYING_BIT_FACE)
378
379
380 struct brw_sf_prog_data {
381 GLuint urb_read_length;
382 GLuint total_grf;
383
384 /* Each vertex may have upto 12 attributes, 4 components each,
385 * except WPOS which requires only 2. (11*4 + 2) == 44 ==> 11
386 * rows.
387 *
388 * Actually we use 4 for each, so call it 12 rows.
389 */
390 GLuint urb_entry_size;
391 };
392
393
394 /**
395 * We always program SF to start reading at an offset of 1 (2 varying slots)
396 * from the start of the vertex URB entry. This causes it to skip:
397 * - VARYING_SLOT_PSIZ and BRW_VARYING_SLOT_NDC on gen4-5
398 * - VARYING_SLOT_PSIZ and VARYING_SLOT_POS on gen6+
399 */
400 #define BRW_SF_URB_ENTRY_READ_OFFSET 1
401
402
403 struct brw_clip_prog_data {
404 GLuint curb_read_length; /* user planes? */
405 GLuint clip_mode;
406 GLuint urb_read_length;
407 GLuint total_grf;
408 };
409
410 struct brw_ff_gs_prog_data {
411 GLuint urb_read_length;
412 GLuint total_grf;
413
414 /**
415 * Gen6 transform feedback: Amount by which the streaming vertex buffer
416 * indices should be incremented each time the GS is invoked.
417 */
418 unsigned svbi_postincrement_value;
419 };
420
421 /** Number of texture sampler units */
422 #define BRW_MAX_TEX_UNIT 32
423
424 /** Max number of render targets in a shader */
425 #define BRW_MAX_DRAW_BUFFERS 8
426
427 /** Max number of UBOs in a shader */
428 #define BRW_MAX_UBO 14
429
430 /** Max number of SSBOs in a shader */
431 #define BRW_MAX_SSBO 12
432
433 /** Max number of atomic counter buffer objects in a shader */
434 #define BRW_MAX_ABO 16
435
436 /** Max number of image uniforms in a shader */
437 #define BRW_MAX_IMAGES 32
438
439 /**
440 * Max number of binding table entries used for stream output.
441 *
442 * From the OpenGL 3.0 spec, table 6.44 (Transform Feedback State), the
443 * minimum value of MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS is 64.
444 *
445 * On Gen6, the size of transform feedback data is limited not by the number
446 * of components but by the number of binding table entries we set aside. We
447 * use one binding table entry for a float, one entry for a vector, and one
448 * entry per matrix column. Since the only way we can communicate our
449 * transform feedback capabilities to the client is via
450 * MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS, we need to plan for the
451 * worst case, in which all the varyings are floats, so we use up one binding
452 * table entry per component. Therefore we need to set aside at least 64
453 * binding table entries for use by transform feedback.
454 *
455 * Note: since we don't currently pack varyings, it is currently impossible
456 * for the client to actually use up all of these binding table entries--if
457 * all of their varyings were floats, they would run out of varying slots and
458 * fail to link. But that's a bug, so it seems prudent to go ahead and
459 * allocate the number of binding table entries we will need once the bug is
460 * fixed.
461 */
462 #define BRW_MAX_SOL_BINDINGS 64
463
464 /** Maximum number of actual buffers used for stream output */
465 #define BRW_MAX_SOL_BUFFERS 4
466
467 #define BRW_MAX_SURFACES (BRW_MAX_DRAW_BUFFERS + \
468 BRW_MAX_TEX_UNIT * 2 + /* normal, gather */ \
469 BRW_MAX_UBO + \
470 BRW_MAX_SSBO + \
471 BRW_MAX_ABO + \
472 BRW_MAX_IMAGES + \
473 2 + /* shader time, pull constants */ \
474 1 /* cs num work groups */)
475
476 #define SURF_INDEX_GEN6_SOL_BINDING(t) (t)
477
478 /**
479 * Stride in bytes between shader_time entries.
480 *
481 * We separate entries by a cacheline to reduce traffic between EUs writing to
482 * different entries.
483 */
484 #define SHADER_TIME_STRIDE 64
485
486 struct brw_cache_item {
487 /**
488 * Effectively part of the key, cache_id identifies what kind of state
489 * buffer is involved, and also which dirty flag should set.
490 */
491 enum brw_cache_id cache_id;
492 /** 32-bit hash of the key data */
493 GLuint hash;
494 GLuint key_size; /* for variable-sized keys */
495 GLuint aux_size;
496 const void *key;
497
498 uint32_t offset;
499 uint32_t size;
500
501 struct brw_cache_item *next;
502 };
503
504
505 struct brw_cache {
506 struct brw_context *brw;
507
508 struct brw_cache_item **items;
509 drm_intel_bo *bo;
510 GLuint size, n_items;
511
512 uint32_t next_offset;
513 bool bo_used_by_gpu;
514 };
515
516
517 /* Considered adding a member to this struct to document which flags
518 * an update might raise so that ordering of the state atoms can be
519 * checked or derived at runtime. Dropped the idea in favor of having
520 * a debug mode where the state is monitored for flags which are
521 * raised that have already been tested against.
522 */
523 struct brw_tracked_state {
524 struct brw_state_flags dirty;
525 void (*emit)( struct brw_context *brw );
526 };
527
528 enum shader_time_shader_type {
529 ST_NONE,
530 ST_VS,
531 ST_TCS,
532 ST_TES,
533 ST_GS,
534 ST_FS8,
535 ST_FS16,
536 ST_CS,
537 };
538
539 struct brw_vertex_buffer {
540 /** Buffer object containing the uploaded vertex data */
541 drm_intel_bo *bo;
542 uint32_t offset;
543 uint32_t size;
544 /** Byte stride between elements in the uploaded array */
545 GLuint stride;
546 GLuint step_rate;
547 };
548 struct brw_vertex_element {
549 const struct gl_client_array *glarray;
550
551 int buffer;
552
553 /** Offset of the first element within the buffer object */
554 unsigned int offset;
555 };
556
557 struct brw_query_object {
558 struct gl_query_object Base;
559
560 /** Last query BO associated with this query. */
561 drm_intel_bo *bo;
562
563 /** Last index in bo with query data for this object. */
564 int last_index;
565
566 /** True if we know the batch has been flushed since we ended the query. */
567 bool flushed;
568 };
569
570 enum brw_gpu_ring {
571 UNKNOWN_RING,
572 RENDER_RING,
573 BLT_RING,
574 };
575
576 struct intel_batchbuffer {
577 /** Current batchbuffer being queued up. */
578 drm_intel_bo *bo;
579 /** Last BO submitted to the hardware. Used for glFinish(). */
580 drm_intel_bo *last_bo;
581
582 #ifdef DEBUG
583 uint16_t emit, total;
584 #endif
585 uint16_t reserved_space;
586 uint32_t *map_next;
587 uint32_t *map;
588 uint32_t *cpu_map;
589 #define BATCH_SZ (8192*sizeof(uint32_t))
590
591 uint32_t state_batch_offset;
592 enum brw_gpu_ring ring;
593 bool needs_sol_reset;
594 bool state_base_address_emitted;
595
596 struct {
597 uint32_t *map_next;
598 int reloc_count;
599 } saved;
600 };
601
602 #define MAX_GS_INPUT_VERTICES 6
603
604 #define BRW_MAX_XFB_STREAMS 4
605
606 struct brw_transform_feedback_object {
607 struct gl_transform_feedback_object base;
608
609 /** A buffer to hold SO_WRITE_OFFSET(n) values while paused. */
610 drm_intel_bo *offset_bo;
611
612 /** If true, SO_WRITE_OFFSET(n) should be reset to zero at next use. */
613 bool zero_offsets;
614
615 /** The most recent primitive mode (GL_TRIANGLES/GL_POINTS/GL_LINES). */
616 GLenum primitive_mode;
617
618 /**
619 * Count of primitives generated during this transform feedback operation.
620 * @{
621 */
622 uint64_t prims_generated[BRW_MAX_XFB_STREAMS];
623 drm_intel_bo *prim_count_bo;
624 unsigned prim_count_buffer_index; /**< in number of uint64_t units */
625 /** @} */
626
627 /**
628 * Number of vertices written between last Begin/EndTransformFeedback().
629 *
630 * Used to implement DrawTransformFeedback().
631 */
632 uint64_t vertices_written[BRW_MAX_XFB_STREAMS];
633 bool vertices_written_valid;
634 };
635
636 /**
637 * Data shared between each programmable stage in the pipeline (vs, gs, and
638 * wm).
639 */
640 struct brw_stage_state
641 {
642 gl_shader_stage stage;
643 struct brw_stage_prog_data *prog_data;
644
645 /**
646 * Optional scratch buffer used to store spilled register values and
647 * variably-indexed GRF arrays.
648 *
649 * The contents of this buffer are short-lived so the same memory can be
650 * re-used at will for multiple shader programs (executed by the same fixed
651 * function). However reusing a scratch BO for which shader invocations
652 * are still in flight with a per-thread scratch slot size other than the
653 * original can cause threads with different scratch slot size and FFTID
654 * (which may be executed in parallel depending on the shader stage and
655 * hardware generation) to map to an overlapping region of the scratch
656 * space, which can potentially lead to mutual scratch space corruption.
657 * For that reason if you borrow this scratch buffer you should only be
658 * using the slot size given by the \c per_thread_scratch member below,
659 * unless you're taking additional measures to synchronize thread execution
660 * across slot size changes.
661 */
662 drm_intel_bo *scratch_bo;
663
664 /**
665 * Scratch slot size allocated for each thread in the buffer object given
666 * by \c scratch_bo.
667 */
668 uint32_t per_thread_scratch;
669
670 /** Offset in the program cache to the program */
671 uint32_t prog_offset;
672
673 /** Offset in the batchbuffer to Gen4-5 pipelined state (VS/WM/GS_STATE). */
674 uint32_t state_offset;
675
676 uint32_t push_const_offset; /* Offset in the batchbuffer */
677 int push_const_size; /* in 256-bit register increments */
678
679 /* Binding table: pointers to SURFACE_STATE entries. */
680 uint32_t bind_bo_offset;
681 uint32_t surf_offset[BRW_MAX_SURFACES];
682
683 /** SAMPLER_STATE count and table offset */
684 uint32_t sampler_count;
685 uint32_t sampler_offset;
686 };
687
688 enum brw_predicate_state {
689 /* The first two states are used if we can determine whether to draw
690 * without having to look at the values in the query object buffer. This
691 * will happen if there is no conditional render in progress, if the query
692 * object is already completed or if something else has already added
693 * samples to the preliminary result such as via a BLT command.
694 */
695 BRW_PREDICATE_STATE_RENDER,
696 BRW_PREDICATE_STATE_DONT_RENDER,
697 /* In this case whether to draw or not depends on the result of an
698 * MI_PREDICATE command so the predicate enable bit needs to be checked.
699 */
700 BRW_PREDICATE_STATE_USE_BIT
701 };
702
703 struct shader_times;
704
705 struct gen_l3_config;
706
707 /**
708 * brw_context is derived from gl_context.
709 */
710 struct brw_context
711 {
712 struct gl_context ctx; /**< base class, must be first field */
713
714 struct
715 {
716 uint32_t (*update_renderbuffer_surface)(struct brw_context *brw,
717 struct gl_renderbuffer *rb,
718 uint32_t flags, unsigned unit,
719 uint32_t surf_index);
720 void (*emit_null_surface_state)(struct brw_context *brw,
721 unsigned width,
722 unsigned height,
723 unsigned samples,
724 uint32_t *out_offset);
725
726 /**
727 * Send the appropriate state packets to configure depth, stencil, and
728 * HiZ buffers (i965+ only)
729 */
730 void (*emit_depth_stencil_hiz)(struct brw_context *brw,
731 struct intel_mipmap_tree *depth_mt,
732 uint32_t depth_offset,
733 uint32_t depthbuffer_format,
734 uint32_t depth_surface_type,
735 struct intel_mipmap_tree *stencil_mt,
736 bool hiz, bool separate_stencil,
737 uint32_t width, uint32_t height,
738 uint32_t tile_x, uint32_t tile_y);
739
740 } vtbl;
741
742 dri_bufmgr *bufmgr;
743
744 drm_intel_context *hw_ctx;
745
746 /** BO for post-sync nonzero writes for gen6 workaround. */
747 drm_intel_bo *workaround_bo;
748 uint8_t pipe_controls_since_last_cs_stall;
749
750 /**
751 * Set of drm_intel_bo * that have been rendered to within this batchbuffer
752 * and would need flushing before being used from another cache domain that
753 * isn't coherent with it (i.e. the sampler).
754 */
755 struct set *render_cache;
756
757 /**
758 * Number of resets observed in the system at context creation.
759 *
760 * This is tracked in the context so that we can determine that another
761 * reset has occurred.
762 */
763 uint32_t reset_count;
764
765 struct intel_batchbuffer batch;
766 bool no_batch_wrap;
767
768 struct {
769 drm_intel_bo *bo;
770 uint32_t next_offset;
771 } upload;
772
773 /**
774 * Set if rendering has occurred to the drawable's front buffer.
775 *
776 * This is used in the DRI2 case to detect that glFlush should also copy
777 * the contents of the fake front buffer to the real front buffer.
778 */
779 bool front_buffer_dirty;
780
781 /** Framerate throttling: @{ */
782 drm_intel_bo *throttle_batch[2];
783
784 /* Limit the number of outstanding SwapBuffers by waiting for an earlier
785 * frame of rendering to complete. This gives a very precise cap to the
786 * latency between input and output such that rendering never gets more
787 * than a frame behind the user. (With the caveat that we technically are
788 * not using the SwapBuffers itself as a barrier but the first batch
789 * submitted afterwards, which may be immediately prior to the next
790 * SwapBuffers.)
791 */
792 bool need_swap_throttle;
793
794 /** General throttling, not caught by throttling between SwapBuffers */
795 bool need_flush_throttle;
796 /** @} */
797
798 GLuint stats_wm;
799
800 /**
801 * drirc options:
802 * @{
803 */
804 bool no_rast;
805 bool always_flush_batch;
806 bool always_flush_cache;
807 bool disable_throttling;
808 bool precompile;
809 bool dual_color_blend_by_location;
810
811 driOptionCache optionCache;
812 /** @} */
813
814 GLuint primitive; /**< Hardware primitive, such as _3DPRIM_TRILIST. */
815
816 GLenum reduced_primitive;
817
818 /**
819 * Set if we're either a debug context or the INTEL_DEBUG=perf environment
820 * variable is set, this is the flag indicating to do expensive work that
821 * might lead to a perf_debug() call.
822 */
823 bool perf_debug;
824
825 uint64_t max_gtt_map_object_size;
826
827 int gen;
828 int gt;
829
830 bool is_g4x;
831 bool is_baytrail;
832 bool is_haswell;
833 bool is_cherryview;
834 bool is_broxton;
835
836 bool has_hiz;
837 bool has_separate_stencil;
838 bool must_use_separate_stencil;
839 bool has_llc;
840 bool has_swizzling;
841 bool has_surface_tile_offset;
842 bool has_compr4;
843 bool has_negative_rhw_bug;
844 bool has_pln;
845 bool no_simd8;
846 bool use_rep_send;
847 bool use_resource_streamer;
848
849 /**
850 * Whether LRI can be used to write register values from the batch buffer.
851 */
852 bool can_do_pipelined_register_writes;
853
854 /**
855 * Some versions of Gen hardware don't do centroid interpolation correctly
856 * on unlit pixels, causing incorrect values for derivatives near triangle
857 * edges. Enabling this flag causes the fragment shader to use
858 * non-centroid interpolation for unlit pixels, at the expense of two extra
859 * fragment shader instructions.
860 */
861 bool needs_unlit_centroid_workaround;
862
863 struct isl_device isl_dev;
864
865 struct blorp_context blorp;
866
867 GLuint NewGLState;
868 struct {
869 struct brw_state_flags pipelines[BRW_NUM_PIPELINES];
870 } state;
871
872 enum brw_pipeline last_pipeline;
873
874 struct brw_cache cache;
875
876 /** IDs for meta stencil blit shader programs. */
877 struct gl_shader_program *meta_stencil_blit_programs[2];
878
879 /* Whether a meta-operation is in progress. */
880 bool meta_in_progress;
881
882 /* Whether the last depth/stencil packets were both NULL. */
883 bool no_depth_or_stencil;
884
885 /* The last PMA stall bits programmed. */
886 uint32_t pma_stall_bits;
887
888 struct {
889 struct {
890 /** The value of gl_BaseVertex for the current _mesa_prim. */
891 int gl_basevertex;
892
893 /** The value of gl_BaseInstance for the current _mesa_prim. */
894 int gl_baseinstance;
895 } params;
896
897 /**
898 * Buffer and offset used for GL_ARB_shader_draw_parameters
899 * (for now, only gl_BaseVertex).
900 */
901 drm_intel_bo *draw_params_bo;
902 uint32_t draw_params_offset;
903
904 /**
905 * The value of gl_DrawID for the current _mesa_prim. This always comes
906 * in from it's own vertex buffer since it's not part of the indirect
907 * draw parameters.
908 */
909 int gl_drawid;
910 drm_intel_bo *draw_id_bo;
911 uint32_t draw_id_offset;
912 } draw;
913
914 struct {
915 /**
916 * For gl_NumWorkGroups: If num_work_groups_bo is non NULL, then it is
917 * an indirect call, and num_work_groups_offset is valid. Otherwise,
918 * num_work_groups is set based on glDispatchCompute.
919 */
920 drm_intel_bo *num_work_groups_bo;
921 GLintptr num_work_groups_offset;
922 const GLuint *num_work_groups;
923 } compute;
924
925 struct {
926 struct brw_vertex_element inputs[VERT_ATTRIB_MAX];
927 struct brw_vertex_buffer buffers[VERT_ATTRIB_MAX];
928
929 struct brw_vertex_element *enabled[VERT_ATTRIB_MAX];
930 GLuint nr_enabled;
931 GLuint nr_buffers;
932
933 /* Summary of size and varying of active arrays, so we can check
934 * for changes to this state:
935 */
936 bool index_bounds_valid;
937 unsigned int min_index, max_index;
938
939 /* Offset from start of vertex buffer so we can avoid redefining
940 * the same VB packed over and over again.
941 */
942 unsigned int start_vertex_bias;
943
944 /**
945 * Certain vertex attribute formats aren't natively handled by the
946 * hardware and require special VS code to fix up their values.
947 *
948 * These bitfields indicate which workarounds are needed.
949 */
950 uint8_t attrib_wa_flags[VERT_ATTRIB_MAX];
951 } vb;
952
953 struct {
954 /**
955 * Index buffer for this draw_prims call.
956 *
957 * Updates are signaled by BRW_NEW_INDICES.
958 */
959 const struct _mesa_index_buffer *ib;
960
961 /* Updates are signaled by BRW_NEW_INDEX_BUFFER. */
962 drm_intel_bo *bo;
963 uint32_t size;
964 GLuint type;
965
966 /* Offset to index buffer index to use in CMD_3D_PRIM so that we can
967 * avoid re-uploading the IB packet over and over if we're actually
968 * referencing the same index buffer.
969 */
970 unsigned int start_vertex_offset;
971 } ib;
972
973 /* Active vertex program:
974 */
975 const struct gl_program *vertex_program;
976 const struct gl_program *geometry_program;
977 const struct gl_program *tess_ctrl_program;
978 const struct gl_program *tess_eval_program;
979 const struct gl_program *fragment_program;
980 const struct gl_program *compute_program;
981
982 /**
983 * Number of samples in ctx->DrawBuffer, updated by BRW_NEW_NUM_SAMPLES so
984 * that we don't have to reemit that state every time we change FBOs.
985 */
986 int num_samples;
987
988 /* BRW_NEW_URB_ALLOCATIONS:
989 */
990 struct {
991 GLuint vsize; /* vertex size plus header in urb registers */
992 GLuint gsize; /* GS output size in urb registers */
993 GLuint hsize; /* Tessellation control output size in urb registers */
994 GLuint dsize; /* Tessellation evaluation output size in urb registers */
995 GLuint csize; /* constant buffer size in urb registers */
996 GLuint sfsize; /* setup data size in urb registers */
997
998 bool constrained;
999
1000 GLuint nr_vs_entries;
1001 GLuint nr_hs_entries;
1002 GLuint nr_ds_entries;
1003 GLuint nr_gs_entries;
1004 GLuint nr_clip_entries;
1005 GLuint nr_sf_entries;
1006 GLuint nr_cs_entries;
1007
1008 GLuint vs_start;
1009 GLuint hs_start;
1010 GLuint ds_start;
1011 GLuint gs_start;
1012 GLuint clip_start;
1013 GLuint sf_start;
1014 GLuint cs_start;
1015 /**
1016 * URB size in the current configuration. The units this is expressed
1017 * in are somewhat inconsistent, see gen_device_info::urb::size.
1018 *
1019 * FINISHME: Represent the URB size consistently in KB on all platforms.
1020 */
1021 GLuint size;
1022
1023 /* True if the most recently sent _3DSTATE_URB message allocated
1024 * URB space for the GS.
1025 */
1026 bool gs_present;
1027
1028 /* True if the most recently sent _3DSTATE_URB message allocated
1029 * URB space for the HS and DS.
1030 */
1031 bool tess_present;
1032 } urb;
1033
1034
1035 /* BRW_NEW_CURBE_OFFSETS:
1036 */
1037 struct {
1038 GLuint wm_start; /**< pos of first wm const in CURBE buffer */
1039 GLuint wm_size; /**< number of float[4] consts, multiple of 16 */
1040 GLuint clip_start;
1041 GLuint clip_size;
1042 GLuint vs_start;
1043 GLuint vs_size;
1044 GLuint total_size;
1045
1046 /**
1047 * Pointer to the (intel_upload.c-generated) BO containing the uniforms
1048 * for upload to the CURBE.
1049 */
1050 drm_intel_bo *curbe_bo;
1051 /** Offset within curbe_bo of space for current curbe entry */
1052 GLuint curbe_offset;
1053 } curbe;
1054
1055 /**
1056 * Layout of vertex data exiting the geometry portion of the pipleine.
1057 * This comes from the last enabled shader stage (GS, DS, or VS).
1058 *
1059 * BRW_NEW_VUE_MAP_GEOM_OUT is flagged when the VUE map changes.
1060 */
1061 struct brw_vue_map vue_map_geom_out;
1062
1063 struct {
1064 struct brw_stage_state base;
1065 } vs;
1066
1067 struct {
1068 struct brw_stage_state base;
1069
1070 /**
1071 * True if the 3DSTATE_HS command most recently emitted to the 3D
1072 * pipeline enabled the HS; false otherwise.
1073 */
1074 bool enabled;
1075 } tcs;
1076
1077 struct {
1078 struct brw_stage_state base;
1079
1080 /**
1081 * True if the 3DSTATE_DS command most recently emitted to the 3D
1082 * pipeline enabled the DS; false otherwise.
1083 */
1084 bool enabled;
1085 } tes;
1086
1087 struct {
1088 struct brw_stage_state base;
1089
1090 /**
1091 * True if the 3DSTATE_GS command most recently emitted to the 3D
1092 * pipeline enabled the GS; false otherwise.
1093 */
1094 bool enabled;
1095 } gs;
1096
1097 struct {
1098 struct brw_ff_gs_prog_data *prog_data;
1099
1100 bool prog_active;
1101 /** Offset in the program cache to the CLIP program pre-gen6 */
1102 uint32_t prog_offset;
1103 uint32_t state_offset;
1104
1105 uint32_t bind_bo_offset;
1106 /**
1107 * Surface offsets for the binding table. We only need surfaces to
1108 * implement transform feedback so BRW_MAX_SOL_BINDINGS is all that we
1109 * need in this case.
1110 */
1111 uint32_t surf_offset[BRW_MAX_SOL_BINDINGS];
1112 } ff_gs;
1113
1114 struct {
1115 struct brw_clip_prog_data *prog_data;
1116
1117 /** Offset in the program cache to the CLIP program pre-gen6 */
1118 uint32_t prog_offset;
1119
1120 /* Offset in the batch to the CLIP state on pre-gen6. */
1121 uint32_t state_offset;
1122
1123 /* As of gen6, this is the offset in the batch to the CLIP VP,
1124 * instead of vp_bo.
1125 */
1126 uint32_t vp_offset;
1127
1128 /**
1129 * The number of viewports to use. If gl_ViewportIndex is written,
1130 * we can have up to ctx->Const.MaxViewports viewports. If not,
1131 * the viewport index is always 0, so we can only emit one.
1132 */
1133 uint8_t viewport_count;
1134 } clip;
1135
1136
1137 struct {
1138 struct brw_sf_prog_data *prog_data;
1139
1140 /** Offset in the program cache to the CLIP program pre-gen6 */
1141 uint32_t prog_offset;
1142 uint32_t state_offset;
1143 uint32_t vp_offset;
1144 bool viewport_transform_enable;
1145 } sf;
1146
1147 struct {
1148 struct brw_stage_state base;
1149
1150 GLuint render_surf;
1151
1152 /**
1153 * Buffer object used in place of multisampled null render targets on
1154 * Gen6. See brw_emit_null_surface_state().
1155 */
1156 drm_intel_bo *multisampled_null_render_target_bo;
1157 uint32_t fast_clear_op;
1158
1159 float offset_clamp;
1160 } wm;
1161
1162 struct {
1163 struct brw_stage_state base;
1164 } cs;
1165
1166 /* RS hardware binding table */
1167 struct {
1168 drm_intel_bo *bo;
1169 uint32_t next_offset;
1170 } hw_bt_pool;
1171
1172 struct {
1173 uint32_t state_offset;
1174 uint32_t blend_state_offset;
1175 uint32_t depth_stencil_state_offset;
1176 uint32_t vp_offset;
1177 } cc;
1178
1179 struct {
1180 struct brw_query_object *obj;
1181 bool begin_emitted;
1182 } query;
1183
1184 struct {
1185 enum brw_predicate_state state;
1186 bool supported;
1187 } predicate;
1188
1189 struct {
1190 /** A map from pipeline statistics counter IDs to MMIO addresses. */
1191 const int *statistics_registers;
1192
1193 /** The number of active monitors using OA counters. */
1194 unsigned oa_users;
1195
1196 /**
1197 * A buffer object storing OA counter snapshots taken at the start and
1198 * end of each batch (creating "bookends" around the batch).
1199 */
1200 drm_intel_bo *bookend_bo;
1201
1202 /** The number of snapshots written to bookend_bo. */
1203 int bookend_snapshots;
1204
1205 /**
1206 * An array of monitors whose results haven't yet been assembled based on
1207 * the data in buffer objects.
1208 *
1209 * These may be active, or have already ended. However, the results
1210 * have not been requested.
1211 */
1212 struct brw_perf_monitor_object **unresolved;
1213 int unresolved_elements;
1214 int unresolved_array_size;
1215
1216 /**
1217 * Mapping from a uint32_t offset within an OA snapshot to the ID of
1218 * the counter which MI_REPORT_PERF_COUNT stores there.
1219 */
1220 const int *oa_snapshot_layout;
1221
1222 /** Number of 32-bit entries in a hardware counter snapshot. */
1223 int entries_per_oa_snapshot;
1224 } perfmon;
1225
1226 int num_atoms[BRW_NUM_PIPELINES];
1227 const struct brw_tracked_state render_atoms[76];
1228 const struct brw_tracked_state compute_atoms[11];
1229
1230 /* If (INTEL_DEBUG & DEBUG_BATCH) */
1231 struct {
1232 uint32_t offset;
1233 uint32_t size;
1234 enum aub_state_struct_type type;
1235 int index;
1236 } *state_batch_list;
1237 int state_batch_count;
1238
1239 uint32_t render_target_format[MESA_FORMAT_COUNT];
1240 bool format_supported_as_render_target[MESA_FORMAT_COUNT];
1241
1242 /* PrimitiveRestart */
1243 struct {
1244 bool in_progress;
1245 bool enable_cut_index;
1246 } prim_restart;
1247
1248 /** Computed depth/stencil/hiz state from the current attached
1249 * renderbuffers, valid only during the drawing state upload loop after
1250 * brw_workaround_depthstencil_alignment().
1251 */
1252 struct {
1253 struct intel_mipmap_tree *depth_mt;
1254 struct intel_mipmap_tree *stencil_mt;
1255
1256 /* Inter-tile (page-aligned) byte offsets. */
1257 uint32_t depth_offset, hiz_offset, stencil_offset;
1258 /* Intra-tile x,y offsets for drawing to depth/stencil/hiz */
1259 uint32_t tile_x, tile_y;
1260 } depthstencil;
1261
1262 uint32_t num_instances;
1263 int basevertex;
1264 int baseinstance;
1265
1266 struct {
1267 const struct gen_l3_config *config;
1268 } l3;
1269
1270 struct {
1271 drm_intel_bo *bo;
1272 const char **names;
1273 int *ids;
1274 enum shader_time_shader_type *types;
1275 struct shader_times *cumulative;
1276 int num_entries;
1277 int max_entries;
1278 double report_time;
1279 } shader_time;
1280
1281 struct brw_fast_clear_state *fast_clear_state;
1282
1283 /* Array of flags telling if auxiliary buffer is disabled for corresponding
1284 * renderbuffer. If draw_aux_buffer_disabled[i] is set then use of
1285 * auxiliary buffer for gl_framebuffer::_ColorDrawBuffers[i] is
1286 * disabled.
1287 * This is needed in case the same underlying buffer is also configured
1288 * to be sampled but with a format that the sampling engine can't treat
1289 * compressed or fast cleared.
1290 */
1291 bool draw_aux_buffer_disabled[MAX_DRAW_BUFFERS];
1292
1293 __DRIcontext *driContext;
1294 struct intel_screen *screen;
1295 };
1296
1297 /*======================================================================
1298 * brw_vtbl.c
1299 */
1300 void brwInitVtbl( struct brw_context *brw );
1301
1302 /* brw_clear.c */
1303 extern void intelInitClearFuncs(struct dd_function_table *functions);
1304
1305 /*======================================================================
1306 * brw_context.c
1307 */
1308 extern const char *const brw_vendor_string;
1309
1310 extern const char *
1311 brw_get_renderer_string(const struct intel_screen *screen);
1312
1313 enum {
1314 DRI_CONF_BO_REUSE_DISABLED,
1315 DRI_CONF_BO_REUSE_ALL
1316 };
1317
1318 void intel_update_renderbuffers(__DRIcontext *context,
1319 __DRIdrawable *drawable);
1320 void intel_prepare_render(struct brw_context *brw);
1321
1322 void intel_resolve_for_dri2_flush(struct brw_context *brw,
1323 __DRIdrawable *drawable);
1324
1325 GLboolean brwCreateContext(gl_api api,
1326 const struct gl_config *mesaVis,
1327 __DRIcontext *driContextPriv,
1328 unsigned major_version,
1329 unsigned minor_version,
1330 uint32_t flags,
1331 bool notify_reset,
1332 unsigned *error,
1333 void *sharedContextPrivate);
1334
1335 /*======================================================================
1336 * brw_misc_state.c
1337 */
1338 void
1339 brw_meta_resolve_color(struct brw_context *brw,
1340 struct intel_mipmap_tree *mt);
1341
1342 /*======================================================================
1343 * brw_misc_state.c
1344 */
1345 void brw_get_depthstencil_tile_masks(struct intel_mipmap_tree *depth_mt,
1346 uint32_t depth_level,
1347 uint32_t depth_layer,
1348 struct intel_mipmap_tree *stencil_mt,
1349 uint32_t *out_tile_mask_x,
1350 uint32_t *out_tile_mask_y);
1351 void brw_workaround_depthstencil_alignment(struct brw_context *brw,
1352 GLbitfield clear_mask);
1353
1354 /* brw_object_purgeable.c */
1355 void brw_init_object_purgeable_functions(struct dd_function_table *functions);
1356
1357 /*======================================================================
1358 * brw_queryobj.c
1359 */
1360 void brw_init_common_queryobj_functions(struct dd_function_table *functions);
1361 void gen4_init_queryobj_functions(struct dd_function_table *functions);
1362 void brw_emit_query_begin(struct brw_context *brw);
1363 void brw_emit_query_end(struct brw_context *brw);
1364 void brw_query_counter(struct gl_context *ctx, struct gl_query_object *q);
1365 bool brw_is_query_pipelined(struct brw_query_object *query);
1366
1367 /** gen6_queryobj.c */
1368 void gen6_init_queryobj_functions(struct dd_function_table *functions);
1369 void brw_write_timestamp(struct brw_context *brw, drm_intel_bo *bo, int idx);
1370 void brw_write_depth_count(struct brw_context *brw, drm_intel_bo *bo, int idx);
1371
1372 /** hsw_queryobj.c */
1373 void hsw_init_queryobj_functions(struct dd_function_table *functions);
1374
1375 /** brw_conditional_render.c */
1376 void brw_init_conditional_render_functions(struct dd_function_table *functions);
1377 bool brw_check_conditional_render(struct brw_context *brw);
1378
1379 /** intel_batchbuffer.c */
1380 void brw_load_register_mem(struct brw_context *brw,
1381 uint32_t reg,
1382 drm_intel_bo *bo,
1383 uint32_t read_domains, uint32_t write_domain,
1384 uint32_t offset);
1385 void brw_load_register_mem64(struct brw_context *brw,
1386 uint32_t reg,
1387 drm_intel_bo *bo,
1388 uint32_t read_domains, uint32_t write_domain,
1389 uint32_t offset);
1390 void brw_store_register_mem32(struct brw_context *brw,
1391 drm_intel_bo *bo, uint32_t reg, uint32_t offset);
1392 void brw_store_register_mem64(struct brw_context *brw,
1393 drm_intel_bo *bo, uint32_t reg, uint32_t offset);
1394 void brw_load_register_imm32(struct brw_context *brw,
1395 uint32_t reg, uint32_t imm);
1396 void brw_load_register_imm64(struct brw_context *brw,
1397 uint32_t reg, uint64_t imm);
1398 void brw_load_register_reg(struct brw_context *brw, uint32_t src,
1399 uint32_t dest);
1400 void brw_load_register_reg64(struct brw_context *brw, uint32_t src,
1401 uint32_t dest);
1402 void brw_store_data_imm32(struct brw_context *brw, drm_intel_bo *bo,
1403 uint32_t offset, uint32_t imm);
1404 void brw_store_data_imm64(struct brw_context *brw, drm_intel_bo *bo,
1405 uint32_t offset, uint64_t imm);
1406
1407 /*======================================================================
1408 * brw_state_dump.c
1409 */
1410 void brw_debug_batch(struct brw_context *brw);
1411 void brw_annotate_aub(struct brw_context *brw);
1412
1413 /*======================================================================
1414 * intel_tex_validate.c
1415 */
1416 void brw_validate_textures( struct brw_context *brw );
1417
1418
1419 /*======================================================================
1420 * brw_program.c
1421 */
1422 static inline bool
1423 key_debug(struct brw_context *brw, const char *name, int a, int b)
1424 {
1425 if (a != b) {
1426 perf_debug(" %s %d->%d\n", name, a, b);
1427 return true;
1428 }
1429 return false;
1430 }
1431
1432 void brwInitFragProgFuncs( struct dd_function_table *functions );
1433
1434 /* Per-thread scratch space is a power-of-two multiple of 1KB. */
1435 static inline int
1436 brw_get_scratch_size(int size)
1437 {
1438 return MAX2(1024, util_next_power_of_two(size));
1439 }
1440 void brw_get_scratch_bo(struct brw_context *brw,
1441 drm_intel_bo **scratch_bo, int size);
1442 void brw_alloc_stage_scratch(struct brw_context *brw,
1443 struct brw_stage_state *stage_state,
1444 unsigned per_thread_size,
1445 unsigned thread_count);
1446 void brw_init_shader_time(struct brw_context *brw);
1447 int brw_get_shader_time_index(struct brw_context *brw,
1448 struct gl_shader_program *shader_prog,
1449 struct gl_program *prog,
1450 enum shader_time_shader_type type);
1451 void brw_collect_and_report_shader_time(struct brw_context *brw);
1452 void brw_destroy_shader_time(struct brw_context *brw);
1453
1454 /* brw_urb.c
1455 */
1456 void brw_upload_urb_fence(struct brw_context *brw);
1457
1458 /* brw_curbe.c
1459 */
1460 void brw_upload_cs_urb_state(struct brw_context *brw);
1461
1462 /* brw_fs_reg_allocate.cpp
1463 */
1464 void brw_fs_alloc_reg_sets(struct brw_compiler *compiler);
1465
1466 /* brw_vec4_reg_allocate.cpp */
1467 void brw_vec4_alloc_reg_set(struct brw_compiler *compiler);
1468
1469 /* brw_disasm.c */
1470 int brw_disassemble_inst(FILE *file, const struct gen_device_info *devinfo,
1471 struct brw_inst *inst, bool is_compacted);
1472
1473 /* brw_vs.c */
1474 gl_clip_plane *brw_select_clip_planes(struct gl_context *ctx);
1475
1476 /* brw_draw_upload.c */
1477 unsigned brw_get_vertex_surface_type(struct brw_context *brw,
1478 const struct gl_client_array *glarray);
1479
1480 static inline unsigned
1481 brw_get_index_type(GLenum type)
1482 {
1483 assert((type == GL_UNSIGNED_BYTE)
1484 || (type == GL_UNSIGNED_SHORT)
1485 || (type == GL_UNSIGNED_INT));
1486
1487 /* The possible values for type are GL_UNSIGNED_BYTE (0x1401),
1488 * GL_UNSIGNED_SHORT (0x1403), and GL_UNSIGNED_INT (0x1405) which we want
1489 * to map to scale factors of 0, 1, and 2, respectively. These scale
1490 * factors are then left-shfited by 8 to be in the correct position in the
1491 * CMD_INDEX_BUFFER packet.
1492 *
1493 * Subtracting 0x1401 gives 0, 2, and 4. Shifting left by 7 afterwards
1494 * gives 0x00000000, 0x00000100, and 0x00000200. These just happen to be
1495 * the values the need to be written in the CMD_INDEX_BUFFER packet.
1496 */
1497 return (type - 0x1401) << 7;
1498 }
1499
1500 void brw_prepare_vertices(struct brw_context *brw);
1501
1502 /* brw_wm_surface_state.c */
1503 void brw_init_surface_formats(struct brw_context *brw);
1504 void brw_create_constant_surface(struct brw_context *brw,
1505 drm_intel_bo *bo,
1506 uint32_t offset,
1507 uint32_t size,
1508 uint32_t *out_offset);
1509 void brw_create_buffer_surface(struct brw_context *brw,
1510 drm_intel_bo *bo,
1511 uint32_t offset,
1512 uint32_t size,
1513 uint32_t *out_offset);
1514 void brw_update_buffer_texture_surface(struct gl_context *ctx,
1515 unsigned unit,
1516 uint32_t *surf_offset);
1517 void
1518 brw_update_sol_surface(struct brw_context *brw,
1519 struct gl_buffer_object *buffer_obj,
1520 uint32_t *out_offset, unsigned num_vector_components,
1521 unsigned stride_dwords, unsigned offset_dwords);
1522 void brw_upload_ubo_surfaces(struct brw_context *brw,
1523 struct gl_linked_shader *shader,
1524 struct brw_stage_state *stage_state,
1525 struct brw_stage_prog_data *prog_data);
1526 void brw_upload_abo_surfaces(struct brw_context *brw,
1527 struct gl_linked_shader *shader,
1528 struct brw_stage_state *stage_state,
1529 struct brw_stage_prog_data *prog_data);
1530 void brw_upload_image_surfaces(struct brw_context *brw,
1531 struct gl_linked_shader *shader,
1532 struct brw_stage_state *stage_state,
1533 struct brw_stage_prog_data *prog_data);
1534
1535 /* brw_surface_formats.c */
1536 bool brw_render_target_supported(struct brw_context *brw,
1537 struct gl_renderbuffer *rb);
1538 uint32_t brw_depth_format(struct brw_context *brw, mesa_format format);
1539
1540 /* brw_performance_monitor.c */
1541 void brw_init_performance_monitors(struct brw_context *brw);
1542 void brw_dump_perf_monitors(struct brw_context *brw);
1543 void brw_perf_monitor_new_batch(struct brw_context *brw);
1544 void brw_perf_monitor_finish_batch(struct brw_context *brw);
1545
1546 /* intel_buffer_objects.c */
1547 int brw_bo_map(struct brw_context *brw, drm_intel_bo *bo, int write_enable,
1548 const char *bo_name);
1549 int brw_bo_map_gtt(struct brw_context *brw, drm_intel_bo *bo,
1550 const char *bo_name);
1551
1552 /* intel_extensions.c */
1553 extern void intelInitExtensions(struct gl_context *ctx);
1554
1555 /* intel_state.c */
1556 extern int intel_translate_shadow_compare_func(GLenum func);
1557 extern int intel_translate_compare_func(GLenum func);
1558 extern int intel_translate_stencil_op(GLenum op);
1559 extern int intel_translate_logic_op(GLenum opcode);
1560
1561 /* brw_sync.c */
1562 void brw_init_syncobj_functions(struct dd_function_table *functions);
1563
1564 /* gen6_sol.c */
1565 struct gl_transform_feedback_object *
1566 brw_new_transform_feedback(struct gl_context *ctx, GLuint name);
1567 void
1568 brw_delete_transform_feedback(struct gl_context *ctx,
1569 struct gl_transform_feedback_object *obj);
1570 void
1571 brw_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
1572 struct gl_transform_feedback_object *obj);
1573 void
1574 brw_end_transform_feedback(struct gl_context *ctx,
1575 struct gl_transform_feedback_object *obj);
1576 GLsizei
1577 brw_get_transform_feedback_vertex_count(struct gl_context *ctx,
1578 struct gl_transform_feedback_object *obj,
1579 GLuint stream);
1580
1581 /* gen7_sol_state.c */
1582 void
1583 gen7_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
1584 struct gl_transform_feedback_object *obj);
1585 void
1586 gen7_end_transform_feedback(struct gl_context *ctx,
1587 struct gl_transform_feedback_object *obj);
1588 void
1589 gen7_pause_transform_feedback(struct gl_context *ctx,
1590 struct gl_transform_feedback_object *obj);
1591 void
1592 gen7_resume_transform_feedback(struct gl_context *ctx,
1593 struct gl_transform_feedback_object *obj);
1594
1595 /* hsw_sol.c */
1596 void
1597 hsw_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
1598 struct gl_transform_feedback_object *obj);
1599 void
1600 hsw_end_transform_feedback(struct gl_context *ctx,
1601 struct gl_transform_feedback_object *obj);
1602 void
1603 hsw_pause_transform_feedback(struct gl_context *ctx,
1604 struct gl_transform_feedback_object *obj);
1605 void
1606 hsw_resume_transform_feedback(struct gl_context *ctx,
1607 struct gl_transform_feedback_object *obj);
1608
1609 /* brw_blorp_blit.cpp */
1610 GLbitfield
1611 brw_blorp_framebuffer(struct brw_context *brw,
1612 struct gl_framebuffer *readFb,
1613 struct gl_framebuffer *drawFb,
1614 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1615 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
1616 GLbitfield mask, GLenum filter);
1617
1618 bool
1619 brw_blorp_copytexsubimage(struct brw_context *brw,
1620 struct gl_renderbuffer *src_rb,
1621 struct gl_texture_image *dst_image,
1622 int slice,
1623 int srcX0, int srcY0,
1624 int dstX0, int dstY0,
1625 int width, int height);
1626
1627 /* gen6_multisample_state.c */
1628 unsigned
1629 gen6_determine_sample_mask(struct brw_context *brw);
1630
1631 void
1632 gen6_emit_3dstate_multisample(struct brw_context *brw,
1633 unsigned num_samples);
1634 void
1635 gen6_emit_3dstate_sample_mask(struct brw_context *brw, unsigned mask);
1636 void
1637 gen6_get_sample_position(struct gl_context *ctx,
1638 struct gl_framebuffer *fb,
1639 GLuint index,
1640 GLfloat *result);
1641 void
1642 gen6_set_sample_maps(struct gl_context *ctx);
1643
1644 /* gen8_multisample_state.c */
1645 void gen8_emit_3dstate_multisample(struct brw_context *brw, unsigned num_samp);
1646 void gen8_emit_3dstate_sample_pattern(struct brw_context *brw);
1647
1648 /* gen7_urb.c */
1649 void
1650 gen7_emit_push_constant_state(struct brw_context *brw, unsigned vs_size,
1651 unsigned hs_size, unsigned ds_size,
1652 unsigned gs_size, unsigned fs_size);
1653
1654 void
1655 gen6_upload_urb(struct brw_context *brw, unsigned vs_size,
1656 bool gs_present, unsigned gs_size);
1657 void
1658 gen7_upload_urb(struct brw_context *brw, unsigned vs_size,
1659 bool gs_present, bool tess_present);
1660
1661 /* brw_reset.c */
1662 extern GLenum
1663 brw_get_graphics_reset_status(struct gl_context *ctx);
1664 void
1665 brw_check_for_reset(struct brw_context *brw);
1666
1667 /* brw_compute.c */
1668 extern void
1669 brw_init_compute_functions(struct dd_function_table *functions);
1670
1671 /*======================================================================
1672 * Inline conversion functions. These are better-typed than the
1673 * macros used previously:
1674 */
1675 static inline struct brw_context *
1676 brw_context( struct gl_context *ctx )
1677 {
1678 return (struct brw_context *)ctx;
1679 }
1680
1681 static inline struct brw_program *
1682 brw_program(struct gl_program *p)
1683 {
1684 return (struct brw_program *) p;
1685 }
1686
1687 static inline const struct brw_program *
1688 brw_program_const(const struct gl_program *p)
1689 {
1690 return (const struct brw_program *) p;
1691 }
1692
1693 static inline struct brw_fragment_program *
1694 brw_fragment_program(struct gl_program *p)
1695 {
1696 return (struct brw_fragment_program *) p;
1697 }
1698
1699 static inline const struct brw_fragment_program *
1700 brw_fragment_program_const(const struct gl_program *p)
1701 {
1702 return (const struct brw_fragment_program *) p;
1703 }
1704
1705 static inline struct brw_compute_program *
1706 brw_compute_program(struct gl_program *p)
1707 {
1708 return (struct brw_compute_program *) p;
1709 }
1710
1711 /**
1712 * Pre-gen6, the register file of the EUs was shared between threads,
1713 * and each thread used some subset allocated on a 16-register block
1714 * granularity. The unit states wanted these block counts.
1715 */
1716 static inline int
1717 brw_register_blocks(int reg_count)
1718 {
1719 return ALIGN(reg_count, 16) / 16 - 1;
1720 }
1721
1722 static inline uint32_t
1723 brw_program_reloc(struct brw_context *brw, uint32_t state_offset,
1724 uint32_t prog_offset)
1725 {
1726 if (brw->gen >= 5) {
1727 /* Using state base address. */
1728 return prog_offset;
1729 }
1730
1731 drm_intel_bo_emit_reloc(brw->batch.bo,
1732 state_offset,
1733 brw->cache.bo,
1734 prog_offset,
1735 I915_GEM_DOMAIN_INSTRUCTION, 0);
1736
1737 return brw->cache.bo->offset64 + prog_offset;
1738 }
1739
1740 bool brw_do_cubemap_normalize(struct exec_list *instructions);
1741 bool brw_lower_texture_gradients(struct brw_context *brw,
1742 struct exec_list *instructions);
1743
1744 extern const char * const conditional_modifier[16];
1745 extern const char *const pred_ctrl_align16[16];
1746
1747 void
1748 brw_emit_depthbuffer(struct brw_context *brw);
1749
1750 void
1751 brw_emit_depth_stencil_hiz(struct brw_context *brw,
1752 struct intel_mipmap_tree *depth_mt,
1753 uint32_t depth_offset, uint32_t depthbuffer_format,
1754 uint32_t depth_surface_type,
1755 struct intel_mipmap_tree *stencil_mt,
1756 bool hiz, bool separate_stencil,
1757 uint32_t width, uint32_t height,
1758 uint32_t tile_x, uint32_t tile_y);
1759
1760 void
1761 gen6_emit_depth_stencil_hiz(struct brw_context *brw,
1762 struct intel_mipmap_tree *depth_mt,
1763 uint32_t depth_offset, uint32_t depthbuffer_format,
1764 uint32_t depth_surface_type,
1765 struct intel_mipmap_tree *stencil_mt,
1766 bool hiz, bool separate_stencil,
1767 uint32_t width, uint32_t height,
1768 uint32_t tile_x, uint32_t tile_y);
1769
1770 void
1771 gen7_emit_depth_stencil_hiz(struct brw_context *brw,
1772 struct intel_mipmap_tree *depth_mt,
1773 uint32_t depth_offset, uint32_t depthbuffer_format,
1774 uint32_t depth_surface_type,
1775 struct intel_mipmap_tree *stencil_mt,
1776 bool hiz, bool separate_stencil,
1777 uint32_t width, uint32_t height,
1778 uint32_t tile_x, uint32_t tile_y);
1779 void
1780 gen8_emit_depth_stencil_hiz(struct brw_context *brw,
1781 struct intel_mipmap_tree *depth_mt,
1782 uint32_t depth_offset, uint32_t depthbuffer_format,
1783 uint32_t depth_surface_type,
1784 struct intel_mipmap_tree *stencil_mt,
1785 bool hiz, bool separate_stencil,
1786 uint32_t width, uint32_t height,
1787 uint32_t tile_x, uint32_t tile_y);
1788
1789 void gen8_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt,
1790 unsigned int level, unsigned int layer, enum blorp_hiz_op op);
1791
1792 uint32_t get_hw_prim_for_gl_prim(int mode);
1793
1794 void
1795 gen6_upload_push_constants(struct brw_context *brw,
1796 const struct gl_program *prog,
1797 const struct brw_stage_prog_data *prog_data,
1798 struct brw_stage_state *stage_state,
1799 enum aub_state_struct_type type);
1800
1801 bool
1802 gen9_use_linear_1d_layout(const struct brw_context *brw,
1803 const struct intel_mipmap_tree *mt);
1804
1805 /* brw_pipe_control.c */
1806 int brw_init_pipe_control(struct brw_context *brw,
1807 const struct gen_device_info *info);
1808 void brw_fini_pipe_control(struct brw_context *brw);
1809
1810 void brw_emit_pipe_control_flush(struct brw_context *brw, uint32_t flags);
1811 void brw_emit_pipe_control_write(struct brw_context *brw, uint32_t flags,
1812 drm_intel_bo *bo, uint32_t offset,
1813 uint32_t imm_lower, uint32_t imm_upper);
1814 void brw_emit_mi_flush(struct brw_context *brw);
1815 void brw_emit_post_sync_nonzero_flush(struct brw_context *brw);
1816 void brw_emit_depth_stall_flushes(struct brw_context *brw);
1817 void gen7_emit_vs_workaround_flush(struct brw_context *brw);
1818 void gen7_emit_cs_stall_flush(struct brw_context *brw);
1819
1820 /* brw_queryformat.c */
1821 void brw_query_internal_format(struct gl_context *ctx, GLenum target,
1822 GLenum internalFormat, GLenum pname,
1823 GLint *params);
1824
1825 #ifdef __cplusplus
1826 }
1827 #endif
1828
1829 #endif