i965: Implement Pause/ResumeTransformfeedback driver hooks on Gen7+.
[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 (http://www.tungstengraphics.com) 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 <keith@tungstengraphics.com>
30 */
31
32
33 #ifndef BRWCONTEXT_INC
34 #define BRWCONTEXT_INC
35
36 #include <stdbool.h>
37 #include <string.h>
38 #include "main/imports.h"
39 #include "main/macros.h"
40 #include "main/mm.h"
41 #include "main/mtypes.h"
42 #include "brw_structs.h"
43
44 #ifdef __cplusplus
45 extern "C" {
46 /* Evil hack for using libdrm in a c++ compiler. */
47 #define virtual virt
48 #endif
49
50 #include <drm.h>
51 #include <intel_bufmgr.h>
52 #include <i915_drm.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
65 /* Glossary:
66 *
67 * URB - uniform resource buffer. A mid-sized buffer which is
68 * partitioned between the fixed function units and used for passing
69 * values (vertices, primitives, constants) between them.
70 *
71 * CURBE - constant URB entry. An urb region (entry) used to hold
72 * constant values which the fixed function units can be instructed to
73 * preload into the GRF when spawning a thread.
74 *
75 * VUE - vertex URB entry. An urb entry holding a vertex and usually
76 * a vertex header. The header contains control information and
77 * things like primitive type, Begin/end flags and clip codes.
78 *
79 * PUE - primitive URB entry. An urb entry produced by the setup (SF)
80 * unit holding rasterization and interpolation parameters.
81 *
82 * GRF - general register file. One of several register files
83 * addressable by programmed threads. The inputs (r0, payload, curbe,
84 * urb) of the thread are preloaded to this area before the thread is
85 * spawned. The registers are individually 8 dwords wide and suitable
86 * for general usage. Registers holding thread input values are not
87 * special and may be overwritten.
88 *
89 * MRF - message register file. Threads communicate (and terminate)
90 * by sending messages. Message parameters are placed in contiguous
91 * MRF registers. All program output is via these messages. URB
92 * entries are populated by sending a message to the shared URB
93 * function containing the new data, together with a control word,
94 * often an unmodified copy of R0.
95 *
96 * R0 - GRF register 0. Typically holds control information used when
97 * sending messages to other threads.
98 *
99 * EU or GEN4 EU: The name of the programmable subsystem of the
100 * i965 hardware. Threads are executed by the EU, the registers
101 * described above are part of the EU architecture.
102 *
103 * Fixed function units:
104 *
105 * CS - Command streamer. Notional first unit, little software
106 * interaction. Holds the URB entries used for constant data, ie the
107 * CURBEs.
108 *
109 * VF/VS - Vertex Fetch / Vertex Shader. The fixed function part of
110 * this unit is responsible for pulling vertices out of vertex buffers
111 * in vram and injecting them into the processing pipe as VUEs. If
112 * enabled, it first passes them to a VS thread which is a good place
113 * for the driver to implement any active vertex shader.
114 *
115 * GS - Geometry Shader. This corresponds to a new DX10 concept. If
116 * enabled, incoming strips etc are passed to GS threads in individual
117 * line/triangle/point units. The GS thread may perform arbitary
118 * computation and emit whatever primtives with whatever vertices it
119 * chooses. This makes GS an excellent place to implement GL's
120 * unfilled polygon modes, though of course it is capable of much
121 * more. Additionally, GS is used to translate away primitives not
122 * handled by latter units, including Quads and Lineloops.
123 *
124 * CS - Clipper. Mesa's clipping algorithms are imported to run on
125 * this unit. The fixed function part performs cliptesting against
126 * the 6 fixed clipplanes and makes descisions on whether or not the
127 * incoming primitive needs to be passed to a thread for clipping.
128 * User clip planes are handled via cooperation with the VS thread.
129 *
130 * SF - Strips Fans or Setup: Triangles are prepared for
131 * rasterization. Interpolation coefficients are calculated.
132 * Flatshading and two-side lighting usually performed here.
133 *
134 * WM - Windower. Interpolation of vertex attributes performed here.
135 * Fragment shader implemented here. SIMD aspects of EU taken full
136 * advantage of, as pixels are processed in blocks of 16.
137 *
138 * CC - Color Calculator. No EU threads associated with this unit.
139 * Handles blending and (presumably) depth and stencil testing.
140 */
141
142 #define INTEL_WRITE_PART 0x1
143 #define INTEL_WRITE_FULL 0x2
144 #define INTEL_READ 0x4
145
146 #define BRW_MAX_CURBE (32*16)
147
148 struct brw_context;
149 struct brw_instruction;
150 struct brw_vs_prog_key;
151 struct brw_vec4_prog_key;
152 struct brw_wm_prog_key;
153 struct brw_wm_prog_data;
154 struct brw_perf_bo_layout;
155
156 enum brw_state_id {
157 BRW_STATE_URB_FENCE,
158 BRW_STATE_FRAGMENT_PROGRAM,
159 BRW_STATE_GEOMETRY_PROGRAM,
160 BRW_STATE_VERTEX_PROGRAM,
161 BRW_STATE_CURBE_OFFSETS,
162 BRW_STATE_REDUCED_PRIMITIVE,
163 BRW_STATE_PRIMITIVE,
164 BRW_STATE_CONTEXT,
165 BRW_STATE_PSP,
166 BRW_STATE_SURFACES,
167 BRW_STATE_VS_BINDING_TABLE,
168 BRW_STATE_GS_BINDING_TABLE,
169 BRW_STATE_PS_BINDING_TABLE,
170 BRW_STATE_INDICES,
171 BRW_STATE_VERTICES,
172 BRW_STATE_BATCH,
173 BRW_STATE_INDEX_BUFFER,
174 BRW_STATE_VS_CONSTBUF,
175 BRW_STATE_GS_CONSTBUF,
176 BRW_STATE_PROGRAM_CACHE,
177 BRW_STATE_STATE_BASE_ADDRESS,
178 BRW_STATE_VUE_MAP_VS,
179 BRW_STATE_VUE_MAP_GEOM_OUT,
180 BRW_STATE_TRANSFORM_FEEDBACK,
181 BRW_STATE_RASTERIZER_DISCARD,
182 BRW_STATE_STATS_WM,
183 BRW_STATE_UNIFORM_BUFFER,
184 BRW_STATE_ATOMIC_BUFFER,
185 BRW_STATE_META_IN_PROGRESS,
186 BRW_STATE_INTERPOLATION_MAP,
187 BRW_STATE_PUSH_CONSTANT_ALLOCATION,
188 BRW_NUM_STATE_BITS
189 };
190
191 #define BRW_NEW_URB_FENCE (1 << BRW_STATE_URB_FENCE)
192 #define BRW_NEW_FRAGMENT_PROGRAM (1 << BRW_STATE_FRAGMENT_PROGRAM)
193 #define BRW_NEW_GEOMETRY_PROGRAM (1 << BRW_STATE_GEOMETRY_PROGRAM)
194 #define BRW_NEW_VERTEX_PROGRAM (1 << BRW_STATE_VERTEX_PROGRAM)
195 #define BRW_NEW_CURBE_OFFSETS (1 << BRW_STATE_CURBE_OFFSETS)
196 #define BRW_NEW_REDUCED_PRIMITIVE (1 << BRW_STATE_REDUCED_PRIMITIVE)
197 #define BRW_NEW_PRIMITIVE (1 << BRW_STATE_PRIMITIVE)
198 #define BRW_NEW_CONTEXT (1 << BRW_STATE_CONTEXT)
199 #define BRW_NEW_PSP (1 << BRW_STATE_PSP)
200 #define BRW_NEW_SURFACES (1 << BRW_STATE_SURFACES)
201 #define BRW_NEW_VS_BINDING_TABLE (1 << BRW_STATE_VS_BINDING_TABLE)
202 #define BRW_NEW_GS_BINDING_TABLE (1 << BRW_STATE_GS_BINDING_TABLE)
203 #define BRW_NEW_PS_BINDING_TABLE (1 << BRW_STATE_PS_BINDING_TABLE)
204 #define BRW_NEW_INDICES (1 << BRW_STATE_INDICES)
205 #define BRW_NEW_VERTICES (1 << BRW_STATE_VERTICES)
206 /**
207 * Used for any batch entry with a relocated pointer that will be used
208 * by any 3D rendering.
209 */
210 #define BRW_NEW_BATCH (1 << BRW_STATE_BATCH)
211 /** \see brw.state.depth_region */
212 #define BRW_NEW_INDEX_BUFFER (1 << BRW_STATE_INDEX_BUFFER)
213 #define BRW_NEW_VS_CONSTBUF (1 << BRW_STATE_VS_CONSTBUF)
214 #define BRW_NEW_GS_CONSTBUF (1 << BRW_STATE_GS_CONSTBUF)
215 #define BRW_NEW_PROGRAM_CACHE (1 << BRW_STATE_PROGRAM_CACHE)
216 #define BRW_NEW_STATE_BASE_ADDRESS (1 << BRW_STATE_STATE_BASE_ADDRESS)
217 #define BRW_NEW_VUE_MAP_VS (1 << BRW_STATE_VUE_MAP_VS)
218 #define BRW_NEW_VUE_MAP_GEOM_OUT (1 << BRW_STATE_VUE_MAP_GEOM_OUT)
219 #define BRW_NEW_TRANSFORM_FEEDBACK (1 << BRW_STATE_TRANSFORM_FEEDBACK)
220 #define BRW_NEW_RASTERIZER_DISCARD (1 << BRW_STATE_RASTERIZER_DISCARD)
221 #define BRW_NEW_STATS_WM (1 << BRW_STATE_STATS_WM)
222 #define BRW_NEW_UNIFORM_BUFFER (1 << BRW_STATE_UNIFORM_BUFFER)
223 #define BRW_NEW_ATOMIC_BUFFER (1 << BRW_STATE_ATOMIC_BUFFER)
224 #define BRW_NEW_META_IN_PROGRESS (1 << BRW_STATE_META_IN_PROGRESS)
225 #define BRW_NEW_INTERPOLATION_MAP (1 << BRW_STATE_INTERPOLATION_MAP)
226 #define BRW_NEW_PUSH_CONSTANT_ALLOCATION (1 << BRW_STATE_PUSH_CONSTANT_ALLOCATION)
227
228 struct brw_state_flags {
229 /** State update flags signalled by mesa internals */
230 GLuint mesa;
231 /**
232 * State update flags signalled as the result of brw_tracked_state updates
233 */
234 GLuint brw;
235 /** State update flags signalled by brw_state_cache.c searches */
236 GLuint cache;
237 };
238
239 #define AUB_TRACE_TYPE_MASK 0x0000ff00
240 #define AUB_TRACE_TYPE_NOTYPE (0 << 8)
241 #define AUB_TRACE_TYPE_BATCH (1 << 8)
242 #define AUB_TRACE_TYPE_VERTEX_BUFFER (5 << 8)
243 #define AUB_TRACE_TYPE_2D_MAP (6 << 8)
244 #define AUB_TRACE_TYPE_CUBE_MAP (7 << 8)
245 #define AUB_TRACE_TYPE_VOLUME_MAP (9 << 8)
246 #define AUB_TRACE_TYPE_1D_MAP (10 << 8)
247 #define AUB_TRACE_TYPE_CONSTANT_BUFFER (11 << 8)
248 #define AUB_TRACE_TYPE_CONSTANT_URB (12 << 8)
249 #define AUB_TRACE_TYPE_INDEX_BUFFER (13 << 8)
250 #define AUB_TRACE_TYPE_GENERAL (14 << 8)
251 #define AUB_TRACE_TYPE_SURFACE (15 << 8)
252
253 /**
254 * state_struct_type enum values are encoded with the top 16 bits representing
255 * the type to be delivered to the .aub file, and the bottom 16 bits
256 * representing the subtype. This macro performs the encoding.
257 */
258 #define ENCODE_SS_TYPE(type, subtype) (((type) << 16) | (subtype))
259
260 enum state_struct_type {
261 AUB_TRACE_VS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 1),
262 AUB_TRACE_GS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 2),
263 AUB_TRACE_CLIP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 3),
264 AUB_TRACE_SF_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 4),
265 AUB_TRACE_WM_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 5),
266 AUB_TRACE_CC_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 6),
267 AUB_TRACE_CLIP_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 7),
268 AUB_TRACE_SF_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 8),
269 AUB_TRACE_CC_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x9),
270 AUB_TRACE_SAMPLER_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xa),
271 AUB_TRACE_KERNEL_INSTRUCTIONS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xb),
272 AUB_TRACE_SCRATCH_SPACE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xc),
273 AUB_TRACE_SAMPLER_DEFAULT_COLOR = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xd),
274
275 AUB_TRACE_SCISSOR_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x15),
276 AUB_TRACE_BLEND_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x16),
277 AUB_TRACE_DEPTH_STENCIL_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x17),
278
279 AUB_TRACE_VERTEX_BUFFER = ENCODE_SS_TYPE(AUB_TRACE_TYPE_VERTEX_BUFFER, 0),
280 AUB_TRACE_BINDING_TABLE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x100),
281 AUB_TRACE_SURFACE_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x200),
282 AUB_TRACE_VS_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 0),
283 AUB_TRACE_WM_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 1),
284 };
285
286 /**
287 * Decode a state_struct_type value to determine the type that should be
288 * stored in the .aub file.
289 */
290 static inline uint32_t AUB_TRACE_TYPE(enum state_struct_type ss_type)
291 {
292 return (ss_type & 0xFFFF0000) >> 16;
293 }
294
295 /**
296 * Decode a state_struct_type value to determine the subtype that should be
297 * stored in the .aub file.
298 */
299 static inline uint32_t AUB_TRACE_SUBTYPE(enum state_struct_type ss_type)
300 {
301 return ss_type & 0xFFFF;
302 }
303
304 /** Subclass of Mesa vertex program */
305 struct brw_vertex_program {
306 struct gl_vertex_program program;
307 GLuint id;
308 };
309
310
311 /** Subclass of Mesa geometry program */
312 struct brw_geometry_program {
313 struct gl_geometry_program program;
314 unsigned id; /**< serial no. to identify geom progs, never re-used */
315 };
316
317
318 /** Subclass of Mesa fragment program */
319 struct brw_fragment_program {
320 struct gl_fragment_program program;
321 GLuint id; /**< serial no. to identify frag progs, never re-used */
322 };
323
324 struct brw_shader {
325 struct gl_shader base;
326
327 bool compiled_once;
328
329 /** Shader IR transformed for native compile, at link time. */
330 struct exec_list *ir;
331 };
332
333 /* Note: If adding fields that need anything besides a normal memcmp() for
334 * comparing them, be sure to go fix the the stage-specific
335 * prog_data_compare().
336 */
337 struct brw_stage_prog_data {
338 struct {
339 /** size of our binding table. */
340 uint32_t size_bytes;
341
342 /** @{
343 * surface indices for the various groups of surfaces
344 */
345 uint32_t pull_constants_start;
346 uint32_t texture_start;
347 uint32_t gather_texture_start;
348 uint32_t ubo_start;
349 uint32_t abo_start;
350 uint32_t shader_time_start;
351 /** @} */
352 } binding_table;
353 };
354
355 /* Data about a particular attempt to compile a program. Note that
356 * there can be many of these, each in a different GL state
357 * corresponding to a different brw_wm_prog_key struct, with different
358 * compiled programs.
359 *
360 * Note: brw_wm_prog_data_compare() must be updated when adding fields to this
361 * struct!
362 */
363 struct brw_wm_prog_data {
364 struct brw_stage_prog_data base;
365
366 GLuint curb_read_length;
367 GLuint num_varying_inputs;
368
369 GLuint first_curbe_grf;
370 GLuint first_curbe_grf_16;
371 GLuint reg_blocks;
372 GLuint reg_blocks_16;
373 GLuint total_scratch;
374
375 struct {
376 /** @{
377 * surface indices the WM-specific surfaces
378 */
379 uint32_t render_target_start;
380 /** @} */
381 } binding_table;
382
383 GLuint nr_params; /**< number of float params/constants */
384 GLuint nr_pull_params;
385 bool dual_src_blend;
386 uint32_t prog_offset_16;
387
388 /**
389 * Mask of which interpolation modes are required by the fragment shader.
390 * Used in hardware setup on gen6+.
391 */
392 uint32_t barycentric_interp_modes;
393
394 /**
395 * Map from gl_varying_slot to the position within the FS setup data
396 * payload where the varying's attribute vertex deltas should be delivered.
397 * For varying slots that are not used by the FS, the value is -1.
398 */
399 int urb_setup[VARYING_SLOT_MAX];
400
401 /* Pointers to tracked values (only valid once
402 * _mesa_load_state_parameters has been called at runtime).
403 *
404 * These must be the last fields of the struct (see
405 * brw_wm_prog_data_compare()).
406 */
407 const float **param;
408 const float **pull_param;
409 };
410
411 /**
412 * Enum representing the i965-specific vertex results that don't correspond
413 * exactly to any element of gl_varying_slot. The values of this enum are
414 * assigned such that they don't conflict with gl_varying_slot.
415 */
416 typedef enum
417 {
418 BRW_VARYING_SLOT_NDC = VARYING_SLOT_MAX,
419 BRW_VARYING_SLOT_PAD,
420 /**
421 * Technically this is not a varying but just a placeholder that
422 * compile_sf_prog() inserts into its VUE map to cause the gl_PointCoord
423 * builtin variable to be compiled correctly. see compile_sf_prog() for
424 * more info.
425 */
426 BRW_VARYING_SLOT_PNTC,
427 BRW_VARYING_SLOT_COUNT
428 } brw_varying_slot;
429
430
431 /**
432 * Data structure recording the relationship between the gl_varying_slot enum
433 * and "slots" within the vertex URB entry (VUE). A "slot" is defined as a
434 * single octaword within the VUE (128 bits).
435 *
436 * Note that each BRW register contains 256 bits (2 octawords), so when
437 * accessing the VUE in URB_NOSWIZZLE mode, each register corresponds to two
438 * consecutive VUE slots. When accessing the VUE in URB_INTERLEAVED mode (as
439 * in a vertex shader), each register corresponds to a single VUE slot, since
440 * it contains data for two separate vertices.
441 */
442 struct brw_vue_map {
443 /**
444 * Bitfield representing all varying slots that are (a) stored in this VUE
445 * map, and (b) actually written by the shader. Does not include any of
446 * the additional varying slots defined in brw_varying_slot.
447 */
448 GLbitfield64 slots_valid;
449
450 /**
451 * Map from gl_varying_slot value to VUE slot. For gl_varying_slots that are
452 * not stored in a slot (because they are not written, or because
453 * additional processing is applied before storing them in the VUE), the
454 * value is -1.
455 */
456 signed char varying_to_slot[BRW_VARYING_SLOT_COUNT];
457
458 /**
459 * Map from VUE slot to gl_varying_slot value. For slots that do not
460 * directly correspond to a gl_varying_slot, the value comes from
461 * brw_varying_slot.
462 *
463 * For slots that are not in use, the value is BRW_VARYING_SLOT_COUNT (this
464 * simplifies code that uses the value stored in slot_to_varying to
465 * create a bit mask).
466 */
467 signed char slot_to_varying[BRW_VARYING_SLOT_COUNT];
468
469 /**
470 * Total number of VUE slots in use
471 */
472 int num_slots;
473 };
474
475 /**
476 * Convert a VUE slot number into a byte offset within the VUE.
477 */
478 static inline GLuint brw_vue_slot_to_offset(GLuint slot)
479 {
480 return 16*slot;
481 }
482
483 /**
484 * Convert a vertex output (brw_varying_slot) into a byte offset within the
485 * VUE.
486 */
487 static inline GLuint brw_varying_to_offset(struct brw_vue_map *vue_map,
488 GLuint varying)
489 {
490 return brw_vue_slot_to_offset(vue_map->varying_to_slot[varying]);
491 }
492
493 void brw_compute_vue_map(struct brw_context *brw, struct brw_vue_map *vue_map,
494 GLbitfield64 slots_valid);
495
496
497 /**
498 * Bitmask indicating which fragment shader inputs represent varyings (and
499 * hence have to be delivered to the fragment shader by the SF/SBE stage).
500 */
501 #define BRW_FS_VARYING_INPUT_MASK \
502 (BITFIELD64_RANGE(0, VARYING_SLOT_MAX) & \
503 ~VARYING_BIT_POS & ~VARYING_BIT_FACE)
504
505
506 /*
507 * Mapping of VUE map slots to interpolation modes.
508 */
509 struct interpolation_mode_map {
510 unsigned char mode[BRW_VARYING_SLOT_COUNT];
511 };
512
513 static inline bool brw_any_flat_varyings(struct interpolation_mode_map *map)
514 {
515 for (int i = 0; i < BRW_VARYING_SLOT_COUNT; i++)
516 if (map->mode[i] == INTERP_QUALIFIER_FLAT)
517 return true;
518
519 return false;
520 }
521
522 static inline bool brw_any_noperspective_varyings(struct interpolation_mode_map *map)
523 {
524 for (int i = 0; i < BRW_VARYING_SLOT_COUNT; i++)
525 if (map->mode[i] == INTERP_QUALIFIER_NOPERSPECTIVE)
526 return true;
527
528 return false;
529 }
530
531
532 struct brw_sf_prog_data {
533 GLuint urb_read_length;
534 GLuint total_grf;
535
536 /* Each vertex may have upto 12 attributes, 4 components each,
537 * except WPOS which requires only 2. (11*4 + 2) == 44 ==> 11
538 * rows.
539 *
540 * Actually we use 4 for each, so call it 12 rows.
541 */
542 GLuint urb_entry_size;
543 };
544
545
546 /**
547 * We always program SF to start reading at an offset of 1 (2 varying slots)
548 * from the start of the vertex URB entry. This causes it to skip:
549 * - VARYING_SLOT_PSIZ and BRW_VARYING_SLOT_NDC on gen4-5
550 * - VARYING_SLOT_PSIZ and VARYING_SLOT_POS on gen6+
551 */
552 #define BRW_SF_URB_ENTRY_READ_OFFSET 1
553
554
555 struct brw_clip_prog_data {
556 GLuint curb_read_length; /* user planes? */
557 GLuint clip_mode;
558 GLuint urb_read_length;
559 GLuint total_grf;
560 };
561
562 struct brw_ff_gs_prog_data {
563 GLuint urb_read_length;
564 GLuint total_grf;
565
566 /**
567 * Gen6 transform feedback: Amount by which the streaming vertex buffer
568 * indices should be incremented each time the GS is invoked.
569 */
570 unsigned svbi_postincrement_value;
571 };
572
573
574 /* Note: brw_vec4_prog_data_compare() must be updated when adding fields to
575 * this struct!
576 */
577 struct brw_vec4_prog_data {
578 struct brw_stage_prog_data base;
579 struct brw_vue_map vue_map;
580
581 /**
582 * Register where the thread expects to find input data from the URB
583 * (typically uniforms, followed by per-vertex inputs).
584 */
585 unsigned dispatch_grf_start_reg;
586
587 GLuint curb_read_length;
588 GLuint urb_read_length;
589 GLuint total_grf;
590 GLuint nr_params; /**< number of float params/constants */
591 GLuint nr_pull_params; /**< number of dwords referenced by pull_param[] */
592 GLuint total_scratch;
593
594 /* Used for calculating urb partitions. In the VS, this is the size of the
595 * URB entry used for both input and output to the thread. In the GS, this
596 * is the size of the URB entry used for output.
597 */
598 GLuint urb_entry_size;
599
600 /* These pointers must appear last. See brw_vec4_prog_data_compare(). */
601 const float **param;
602 const float **pull_param;
603 };
604
605
606 /* Note: brw_vs_prog_data_compare() must be updated when adding fields to this
607 * struct!
608 */
609 struct brw_vs_prog_data {
610 struct brw_vec4_prog_data base;
611
612 GLbitfield64 inputs_read;
613
614 bool uses_vertexid;
615 };
616
617
618 /* Note: brw_gs_prog_data_compare() must be updated when adding fields to
619 * this struct!
620 */
621 struct brw_gs_prog_data
622 {
623 struct brw_vec4_prog_data base;
624
625 /**
626 * Size of an output vertex, measured in HWORDS (32 bytes).
627 */
628 unsigned output_vertex_size_hwords;
629
630 unsigned output_topology;
631
632 /**
633 * Size of the control data (cut bits or StreamID bits), in hwords (32
634 * bytes). 0 if there is no control data.
635 */
636 unsigned control_data_header_size_hwords;
637
638 /**
639 * Format of the control data (either GEN7_GS_CONTROL_DATA_FORMAT_GSCTL_SID
640 * if the control data is StreamID bits, or
641 * GEN7_GS_CONTROL_DATA_FORMAT_GSCTL_CUT if the control data is cut bits).
642 * Ignored if control_data_header_size is 0.
643 */
644 unsigned control_data_format;
645
646 bool include_primitive_id;
647
648 /**
649 * True if the thread should be dispatched in DUAL_INSTANCE mode, false if
650 * it should be dispatched in DUAL_OBJECT mode.
651 */
652 bool dual_instanced_dispatch;
653 };
654
655 /** Number of texture sampler units */
656 #define BRW_MAX_TEX_UNIT 16
657
658 /** Max number of render targets in a shader */
659 #define BRW_MAX_DRAW_BUFFERS 8
660
661 /** Max number of atomic counter buffer objects in a shader */
662 #define BRW_MAX_ABO 4
663
664 /**
665 * Max number of binding table entries used for stream output.
666 *
667 * From the OpenGL 3.0 spec, table 6.44 (Transform Feedback State), the
668 * minimum value of MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS is 64.
669 *
670 * On Gen6, the size of transform feedback data is limited not by the number
671 * of components but by the number of binding table entries we set aside. We
672 * use one binding table entry for a float, one entry for a vector, and one
673 * entry per matrix column. Since the only way we can communicate our
674 * transform feedback capabilities to the client is via
675 * MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS, we need to plan for the
676 * worst case, in which all the varyings are floats, so we use up one binding
677 * table entry per component. Therefore we need to set aside at least 64
678 * binding table entries for use by transform feedback.
679 *
680 * Note: since we don't currently pack varyings, it is currently impossible
681 * for the client to actually use up all of these binding table entries--if
682 * all of their varyings were floats, they would run out of varying slots and
683 * fail to link. But that's a bug, so it seems prudent to go ahead and
684 * allocate the number of binding table entries we will need once the bug is
685 * fixed.
686 */
687 #define BRW_MAX_SOL_BINDINGS 64
688
689 /** Maximum number of actual buffers used for stream output */
690 #define BRW_MAX_SOL_BUFFERS 4
691
692 #define BRW_MAX_SURFACES (BRW_MAX_DRAW_BUFFERS + \
693 BRW_MAX_TEX_UNIT * 2 + /* normal, gather */ \
694 12 + /* ubo */ \
695 BRW_MAX_ABO + \
696 2 /* shader time, pull constants */)
697
698 #define SURF_INDEX_GEN6_SOL_BINDING(t) (t)
699 #define BRW_MAX_GEN6_GS_SURFACES SURF_INDEX_GEN6_SOL_BINDING(BRW_MAX_SOL_BINDINGS)
700
701 /**
702 * Stride in bytes between shader_time entries.
703 *
704 * We separate entries by a cacheline to reduce traffic between EUs writing to
705 * different entries.
706 */
707 #define SHADER_TIME_STRIDE 64
708
709 enum brw_cache_id {
710 BRW_CC_VP,
711 BRW_CC_UNIT,
712 BRW_WM_PROG,
713 BRW_BLORP_BLIT_PROG,
714 BRW_BLORP_CONST_COLOR_PROG,
715 BRW_SAMPLER,
716 BRW_WM_UNIT,
717 BRW_SF_PROG,
718 BRW_SF_VP,
719 BRW_SF_UNIT, /* scissor state on gen6 */
720 BRW_VS_UNIT,
721 BRW_VS_PROG,
722 BRW_FF_GS_UNIT,
723 BRW_FF_GS_PROG,
724 BRW_GS_PROG,
725 BRW_CLIP_VP,
726 BRW_CLIP_UNIT,
727 BRW_CLIP_PROG,
728
729 BRW_MAX_CACHE
730 };
731
732 struct brw_cache_item {
733 /**
734 * Effectively part of the key, cache_id identifies what kind of state
735 * buffer is involved, and also which brw->state.dirty.cache flag should
736 * be set when this cache item is chosen.
737 */
738 enum brw_cache_id cache_id;
739 /** 32-bit hash of the key data */
740 GLuint hash;
741 GLuint key_size; /* for variable-sized keys */
742 GLuint aux_size;
743 const void *key;
744
745 uint32_t offset;
746 uint32_t size;
747
748 struct brw_cache_item *next;
749 };
750
751
752 typedef bool (*cache_aux_compare_func)(const void *a, const void *b);
753 typedef void (*cache_aux_free_func)(const void *aux);
754
755 struct brw_cache {
756 struct brw_context *brw;
757
758 struct brw_cache_item **items;
759 drm_intel_bo *bo;
760 GLuint size, n_items;
761
762 uint32_t next_offset;
763 bool bo_used_by_gpu;
764
765 /**
766 * Optional functions used in determining whether the prog_data for a new
767 * cache item matches an existing cache item (in case there's relevant data
768 * outside of the prog_data). If NULL, a plain memcmp is done.
769 */
770 cache_aux_compare_func aux_compare[BRW_MAX_CACHE];
771 /** Optional functions for freeing other pointers attached to a prog_data. */
772 cache_aux_free_func aux_free[BRW_MAX_CACHE];
773 };
774
775
776 /* Considered adding a member to this struct to document which flags
777 * an update might raise so that ordering of the state atoms can be
778 * checked or derived at runtime. Dropped the idea in favor of having
779 * a debug mode where the state is monitored for flags which are
780 * raised that have already been tested against.
781 */
782 struct brw_tracked_state {
783 struct brw_state_flags dirty;
784 void (*emit)( struct brw_context *brw );
785 };
786
787 enum shader_time_shader_type {
788 ST_NONE,
789 ST_VS,
790 ST_VS_WRITTEN,
791 ST_VS_RESET,
792 ST_FS8,
793 ST_FS8_WRITTEN,
794 ST_FS8_RESET,
795 ST_FS16,
796 ST_FS16_WRITTEN,
797 ST_FS16_RESET,
798 };
799
800 /* Flags for brw->state.cache.
801 */
802 #define CACHE_NEW_CC_VP (1<<BRW_CC_VP)
803 #define CACHE_NEW_CC_UNIT (1<<BRW_CC_UNIT)
804 #define CACHE_NEW_WM_PROG (1<<BRW_WM_PROG)
805 #define CACHE_NEW_BLORP_BLIT_PROG (1<<BRW_BLORP_BLIT_PROG)
806 #define CACHE_NEW_BLORP_CONST_COLOR_PROG (1<<BRW_BLORP_CONST_COLOR_PROG)
807 #define CACHE_NEW_SAMPLER (1<<BRW_SAMPLER)
808 #define CACHE_NEW_WM_UNIT (1<<BRW_WM_UNIT)
809 #define CACHE_NEW_SF_PROG (1<<BRW_SF_PROG)
810 #define CACHE_NEW_SF_VP (1<<BRW_SF_VP)
811 #define CACHE_NEW_SF_UNIT (1<<BRW_SF_UNIT)
812 #define CACHE_NEW_VS_UNIT (1<<BRW_VS_UNIT)
813 #define CACHE_NEW_VS_PROG (1<<BRW_VS_PROG)
814 #define CACHE_NEW_FF_GS_UNIT (1<<BRW_FF_GS_UNIT)
815 #define CACHE_NEW_FF_GS_PROG (1<<BRW_FF_GS_PROG)
816 #define CACHE_NEW_GS_PROG (1<<BRW_GS_PROG)
817 #define CACHE_NEW_CLIP_VP (1<<BRW_CLIP_VP)
818 #define CACHE_NEW_CLIP_UNIT (1<<BRW_CLIP_UNIT)
819 #define CACHE_NEW_CLIP_PROG (1<<BRW_CLIP_PROG)
820
821 struct brw_cached_batch_item {
822 struct header *header;
823 GLuint sz;
824 struct brw_cached_batch_item *next;
825 };
826
827 struct brw_vertex_buffer {
828 /** Buffer object containing the uploaded vertex data */
829 drm_intel_bo *bo;
830 uint32_t offset;
831 /** Byte stride between elements in the uploaded array */
832 GLuint stride;
833 GLuint step_rate;
834 };
835 struct brw_vertex_element {
836 const struct gl_client_array *glarray;
837
838 int buffer;
839
840 /** The corresponding Mesa vertex attribute */
841 gl_vert_attrib attrib;
842 /** Offset of the first element within the buffer object */
843 unsigned int offset;
844 };
845
846 struct brw_query_object {
847 struct gl_query_object Base;
848
849 /** Last query BO associated with this query. */
850 drm_intel_bo *bo;
851
852 /** Last index in bo with query data for this object. */
853 int last_index;
854 };
855
856 struct intel_sync_object {
857 struct gl_sync_object Base;
858
859 /** Batch associated with this sync object */
860 drm_intel_bo *bo;
861 };
862
863 struct intel_batchbuffer {
864 /** Current batchbuffer being queued up. */
865 drm_intel_bo *bo;
866 /** Last BO submitted to the hardware. Used for glFinish(). */
867 drm_intel_bo *last_bo;
868 /** BO for post-sync nonzero writes for gen6 workaround. */
869 drm_intel_bo *workaround_bo;
870 bool need_workaround_flush;
871
872 struct cached_batch_item *cached_items;
873
874 uint16_t emit, total;
875 uint16_t used, reserved_space;
876 uint32_t *map;
877 uint32_t *cpu_map;
878 #define BATCH_SZ (8192*sizeof(uint32_t))
879
880 uint32_t state_batch_offset;
881 bool is_blit;
882 bool needs_sol_reset;
883
884 struct {
885 uint16_t used;
886 int reloc_count;
887 } saved;
888 };
889
890 struct brw_transform_feedback_object {
891 struct gl_transform_feedback_object base;
892
893 /** A buffer to hold SO_WRITE_OFFSET(n) values while paused. */
894 drm_intel_bo *offset_bo;
895 };
896
897 /**
898 * Data shared between each programmable stage in the pipeline (vs, gs, and
899 * wm).
900 */
901 struct brw_stage_state
902 {
903 struct brw_stage_prog_data *prog_data;
904
905 /**
906 * Optional scratch buffer used to store spilled register values and
907 * variably-indexed GRF arrays.
908 */
909 drm_intel_bo *scratch_bo;
910
911 /** Pull constant buffer */
912 drm_intel_bo *const_bo;
913
914 /** Offset in the program cache to the program */
915 uint32_t prog_offset;
916
917 /** Offset in the batchbuffer to Gen4-5 pipelined state (VS/WM/GS_STATE). */
918 uint32_t state_offset;
919
920 uint32_t push_const_offset; /* Offset in the batchbuffer */
921 int push_const_size; /* in 256-bit register increments */
922
923 /* Binding table: pointers to SURFACE_STATE entries. */
924 uint32_t bind_bo_offset;
925 uint32_t surf_offset[BRW_MAX_SURFACES];
926
927 /** SAMPLER_STATE count and table offset */
928 uint32_t sampler_count;
929 uint32_t sampler_offset;
930
931 /** Offsets in the batch to sampler default colors (texture border color) */
932 uint32_t sdc_offset[BRW_MAX_TEX_UNIT];
933 };
934
935
936 /**
937 * brw_context is derived from gl_context.
938 */
939 struct brw_context
940 {
941 struct gl_context ctx; /**< base class, must be first field */
942
943 struct
944 {
945 void (*update_texture_surface)(struct gl_context *ctx,
946 unsigned unit,
947 uint32_t *surf_offset,
948 bool for_gather);
949 void (*update_renderbuffer_surface)(struct brw_context *brw,
950 struct gl_renderbuffer *rb,
951 bool layered,
952 unsigned unit);
953 void (*update_null_renderbuffer_surface)(struct brw_context *brw,
954 unsigned unit);
955 void (*create_constant_surface)(struct brw_context *brw,
956 drm_intel_bo *bo,
957 uint32_t offset,
958 uint32_t size,
959 uint32_t *out_offset,
960 bool dword_pitch);
961
962 void (*create_raw_surface)(struct brw_context *brw,
963 drm_intel_bo *bo,
964 uint32_t offset,
965 uint32_t size,
966 uint32_t *out_offset,
967 bool rw);
968
969 /** Upload a SAMPLER_STATE table. */
970 void (*upload_sampler_state_table)(struct brw_context *brw,
971 struct gl_program *prog,
972 uint32_t sampler_count,
973 uint32_t *sst_offset,
974 uint32_t *sdc_offset);
975
976 /**
977 * Send the appropriate state packets to configure depth, stencil, and
978 * HiZ buffers (i965+ only)
979 */
980 void (*emit_depth_stencil_hiz)(struct brw_context *brw,
981 struct intel_mipmap_tree *depth_mt,
982 uint32_t depth_offset,
983 uint32_t depthbuffer_format,
984 uint32_t depth_surface_type,
985 struct intel_mipmap_tree *stencil_mt,
986 bool hiz, bool separate_stencil,
987 uint32_t width, uint32_t height,
988 uint32_t tile_x, uint32_t tile_y);
989
990 } vtbl;
991
992 dri_bufmgr *bufmgr;
993
994 drm_intel_context *hw_ctx;
995
996 struct intel_batchbuffer batch;
997 bool no_batch_wrap;
998
999 struct {
1000 drm_intel_bo *bo;
1001 GLuint offset;
1002 uint32_t buffer_len;
1003 uint32_t buffer_offset;
1004 char buffer[4096];
1005 } upload;
1006
1007 /**
1008 * Set if rendering has occured to the drawable's front buffer.
1009 *
1010 * This is used in the DRI2 case to detect that glFlush should also copy
1011 * the contents of the fake front buffer to the real front buffer.
1012 */
1013 bool front_buffer_dirty;
1014
1015 /**
1016 * Track whether front-buffer rendering is currently enabled
1017 *
1018 * A separate flag is used to track this in order to support MRT more
1019 * easily.
1020 */
1021 bool is_front_buffer_rendering;
1022
1023 /**
1024 * Track whether front-buffer is the current read target.
1025 *
1026 * This is closely associated with is_front_buffer_rendering, but may
1027 * be set separately. The DRI2 fake front buffer must be referenced
1028 * either way.
1029 */
1030 bool is_front_buffer_reading;
1031
1032 /** Framerate throttling: @{ */
1033 drm_intel_bo *first_post_swapbuffers_batch;
1034 bool need_throttle;
1035 /** @} */
1036
1037 GLuint stats_wm;
1038
1039 /**
1040 * drirc options:
1041 * @{
1042 */
1043 bool no_rast;
1044 bool always_flush_batch;
1045 bool always_flush_cache;
1046 bool disable_throttling;
1047 bool precompile;
1048 bool disable_derivative_optimization;
1049
1050 driOptionCache optionCache;
1051 /** @} */
1052
1053 GLuint primitive; /**< Hardware primitive, such as _3DPRIM_TRILIST. */
1054
1055 GLenum reduced_primitive;
1056
1057 /**
1058 * Set if we're either a debug context or the INTEL_DEBUG=perf environment
1059 * variable is set, this is the flag indicating to do expensive work that
1060 * might lead to a perf_debug() call.
1061 */
1062 bool perf_debug;
1063
1064 uint32_t max_gtt_map_object_size;
1065
1066 int gen;
1067 int gt;
1068
1069 bool is_g4x;
1070 bool is_baytrail;
1071 bool is_haswell;
1072
1073 bool has_hiz;
1074 bool has_separate_stencil;
1075 bool must_use_separate_stencil;
1076 bool has_llc;
1077 bool has_swizzling;
1078 bool has_surface_tile_offset;
1079 bool has_compr4;
1080 bool has_negative_rhw_bug;
1081 bool has_pln;
1082
1083 /**
1084 * Some versions of Gen hardware don't do centroid interpolation correctly
1085 * on unlit pixels, causing incorrect values for derivatives near triangle
1086 * edges. Enabling this flag causes the fragment shader to use
1087 * non-centroid interpolation for unlit pixels, at the expense of two extra
1088 * fragment shader instructions.
1089 */
1090 bool needs_unlit_centroid_workaround;
1091
1092 GLuint NewGLState;
1093 struct {
1094 struct brw_state_flags dirty;
1095 } state;
1096
1097 struct brw_cache cache;
1098 struct brw_cached_batch_item *cached_batch_items;
1099
1100 /* Whether a meta-operation is in progress. */
1101 bool meta_in_progress;
1102
1103 struct {
1104 struct brw_vertex_element inputs[VERT_ATTRIB_MAX];
1105 struct brw_vertex_buffer buffers[VERT_ATTRIB_MAX];
1106
1107 struct brw_vertex_element *enabled[VERT_ATTRIB_MAX];
1108 GLuint nr_enabled;
1109 GLuint nr_buffers;
1110
1111 /* Summary of size and varying of active arrays, so we can check
1112 * for changes to this state:
1113 */
1114 unsigned int min_index, max_index;
1115
1116 /* Offset from start of vertex buffer so we can avoid redefining
1117 * the same VB packed over and over again.
1118 */
1119 unsigned int start_vertex_bias;
1120 } vb;
1121
1122 struct {
1123 /**
1124 * Index buffer for this draw_prims call.
1125 *
1126 * Updates are signaled by BRW_NEW_INDICES.
1127 */
1128 const struct _mesa_index_buffer *ib;
1129
1130 /* Updates are signaled by BRW_NEW_INDEX_BUFFER. */
1131 drm_intel_bo *bo;
1132 GLuint type;
1133
1134 /* Offset to index buffer index to use in CMD_3D_PRIM so that we can
1135 * avoid re-uploading the IB packet over and over if we're actually
1136 * referencing the same index buffer.
1137 */
1138 unsigned int start_vertex_offset;
1139 } ib;
1140
1141 /* Active vertex program:
1142 */
1143 const struct gl_vertex_program *vertex_program;
1144 const struct gl_geometry_program *geometry_program;
1145 const struct gl_fragment_program *fragment_program;
1146
1147 /* hw-dependent 3DSTATE_VF_STATISTICS opcode */
1148 uint32_t CMD_VF_STATISTICS;
1149 /* hw-dependent 3DSTATE_PIPELINE_SELECT opcode */
1150 uint32_t CMD_PIPELINE_SELECT;
1151
1152 /**
1153 * Platform specific constants containing the maximum number of threads
1154 * for each pipeline stage.
1155 */
1156 int max_vs_threads;
1157 int max_gs_threads;
1158 int max_wm_threads;
1159
1160 /* BRW_NEW_URB_ALLOCATIONS:
1161 */
1162 struct {
1163 GLuint vsize; /* vertex size plus header in urb registers */
1164 GLuint csize; /* constant buffer size in urb registers */
1165 GLuint sfsize; /* setup data size in urb registers */
1166
1167 bool constrained;
1168
1169 GLuint min_vs_entries; /* Minimum number of VS entries */
1170 GLuint max_vs_entries; /* Maximum number of VS entries */
1171 GLuint max_gs_entries; /* Maximum number of GS entries */
1172
1173 GLuint nr_vs_entries;
1174 GLuint nr_gs_entries;
1175 GLuint nr_clip_entries;
1176 GLuint nr_sf_entries;
1177 GLuint nr_cs_entries;
1178
1179 GLuint vs_start;
1180 GLuint gs_start;
1181 GLuint clip_start;
1182 GLuint sf_start;
1183 GLuint cs_start;
1184 GLuint size; /* Hardware URB size, in KB. */
1185
1186 /* gen6: True if the most recently sent _3DSTATE_URB message allocated
1187 * URB space for the GS.
1188 */
1189 bool gen6_gs_previously_active;
1190 } urb;
1191
1192
1193 /* BRW_NEW_CURBE_OFFSETS:
1194 */
1195 struct {
1196 GLuint wm_start; /**< pos of first wm const in CURBE buffer */
1197 GLuint wm_size; /**< number of float[4] consts, multiple of 16 */
1198 GLuint clip_start;
1199 GLuint clip_size;
1200 GLuint vs_start;
1201 GLuint vs_size;
1202 GLuint total_size;
1203
1204 drm_intel_bo *curbe_bo;
1205 /** Offset within curbe_bo of space for current curbe entry */
1206 GLuint curbe_offset;
1207 /** Offset within curbe_bo of space for next curbe entry */
1208 GLuint curbe_next_offset;
1209
1210 /**
1211 * Copy of the last set of CURBEs uploaded. Frequently we'll end up
1212 * in brw_curbe.c with the same set of constant data to be uploaded,
1213 * so we'd rather not upload new constants in that case (it can cause
1214 * a pipeline bubble since only up to 4 can be pipelined at a time).
1215 */
1216 GLfloat *last_buf;
1217 /**
1218 * Allocation for where to calculate the next set of CURBEs.
1219 * It's a hot enough path that malloc/free of that data matters.
1220 */
1221 GLfloat *next_buf;
1222 GLuint last_bufsz;
1223 } curbe;
1224
1225 /**
1226 * Layout of vertex data exiting the vertex shader.
1227 *
1228 * BRW_NEW_VUE_MAP_VS is flagged when this VUE map changes.
1229 */
1230 struct brw_vue_map vue_map_vs;
1231
1232 /**
1233 * Layout of vertex data exiting the geometry portion of the pipleine.
1234 * This comes from the geometry shader if one exists, otherwise from the
1235 * vertex shader.
1236 *
1237 * BRW_NEW_VUE_MAP_GEOM_OUT is flagged when the VUE map changes.
1238 */
1239 struct brw_vue_map vue_map_geom_out;
1240
1241 /**
1242 * Data structures used by all vec4 program compiles (not specific to any
1243 * particular program).
1244 */
1245 struct {
1246 struct ra_regs *regs;
1247
1248 /**
1249 * Array of the ra classes for the unaligned contiguous register
1250 * block sizes used.
1251 */
1252 int *classes;
1253
1254 /**
1255 * Mapping for register-allocated objects in *regs to the first
1256 * GRF for that object.
1257 */
1258 uint8_t *ra_reg_to_grf;
1259 } vec4;
1260
1261 struct {
1262 struct brw_stage_state base;
1263 struct brw_vs_prog_data *prog_data;
1264 } vs;
1265
1266 struct {
1267 struct brw_stage_state base;
1268 struct brw_gs_prog_data *prog_data;
1269 } gs;
1270
1271 struct {
1272 struct brw_ff_gs_prog_data *prog_data;
1273
1274 bool prog_active;
1275 /** Offset in the program cache to the CLIP program pre-gen6 */
1276 uint32_t prog_offset;
1277 uint32_t state_offset;
1278
1279 uint32_t bind_bo_offset;
1280 uint32_t surf_offset[BRW_MAX_GEN6_GS_SURFACES];
1281 } ff_gs;
1282
1283 struct {
1284 struct brw_clip_prog_data *prog_data;
1285
1286 /** Offset in the program cache to the CLIP program pre-gen6 */
1287 uint32_t prog_offset;
1288
1289 /* Offset in the batch to the CLIP state on pre-gen6. */
1290 uint32_t state_offset;
1291
1292 /* As of gen6, this is the offset in the batch to the CLIP VP,
1293 * instead of vp_bo.
1294 */
1295 uint32_t vp_offset;
1296 } clip;
1297
1298
1299 struct {
1300 struct brw_sf_prog_data *prog_data;
1301
1302 /** Offset in the program cache to the CLIP program pre-gen6 */
1303 uint32_t prog_offset;
1304 uint32_t state_offset;
1305 uint32_t vp_offset;
1306 } sf;
1307
1308 struct {
1309 struct brw_stage_state base;
1310 struct brw_wm_prog_data *prog_data;
1311
1312 GLuint render_surf;
1313
1314 /**
1315 * Buffer object used in place of multisampled null render targets on
1316 * Gen6. See brw_update_null_renderbuffer_surface().
1317 */
1318 drm_intel_bo *multisampled_null_render_target_bo;
1319
1320 struct {
1321 struct ra_regs *regs;
1322
1323 /**
1324 * Array of the ra classes for the unaligned contiguous register
1325 * block sizes used, indexed by register size.
1326 */
1327 int classes[16];
1328
1329 /**
1330 * Mapping for register-allocated objects in *regs to the first
1331 * GRF for that object.
1332 */
1333 uint8_t *ra_reg_to_grf;
1334
1335 /**
1336 * ra class for the aligned pairs we use for PLN, which doesn't
1337 * appear in *classes.
1338 */
1339 int aligned_pairs_class;
1340 } reg_sets[2];
1341 } wm;
1342
1343
1344 struct {
1345 uint32_t state_offset;
1346 uint32_t blend_state_offset;
1347 uint32_t depth_stencil_state_offset;
1348 uint32_t vp_offset;
1349 } cc;
1350
1351 struct {
1352 struct brw_query_object *obj;
1353 bool begin_emitted;
1354 } query;
1355
1356 struct {
1357 /* A map describing which counters are stored at a particular 32-bit
1358 * offset in the buffer object.
1359 */
1360 const struct brw_perf_bo_layout *bo_layout;
1361
1362 /* Number of 32-bit entries in the buffer object. */
1363 int entries_in_bo;
1364 } perfmon;
1365
1366 int num_atoms;
1367 const struct brw_tracked_state **atoms;
1368
1369 /* If (INTEL_DEBUG & DEBUG_BATCH) */
1370 struct {
1371 uint32_t offset;
1372 uint32_t size;
1373 enum state_struct_type type;
1374 } *state_batch_list;
1375 int state_batch_count;
1376
1377 uint32_t render_target_format[MESA_FORMAT_COUNT];
1378 bool format_supported_as_render_target[MESA_FORMAT_COUNT];
1379
1380 /* Interpolation modes, one byte per vue slot.
1381 * Used Gen4/5 by the clip|sf|wm stages. Ignored on Gen6+.
1382 */
1383 struct interpolation_mode_map interpolation_mode;
1384
1385 /* PrimitiveRestart */
1386 struct {
1387 bool in_progress;
1388 bool enable_cut_index;
1389 } prim_restart;
1390
1391 /** Computed depth/stencil/hiz state from the current attached
1392 * renderbuffers, valid only during the drawing state upload loop after
1393 * brw_workaround_depthstencil_alignment().
1394 */
1395 struct {
1396 struct intel_mipmap_tree *depth_mt;
1397 struct intel_mipmap_tree *stencil_mt;
1398
1399 /* Inter-tile (page-aligned) byte offsets. */
1400 uint32_t depth_offset, hiz_offset, stencil_offset;
1401 /* Intra-tile x,y offsets for drawing to depth/stencil/hiz */
1402 uint32_t tile_x, tile_y;
1403 } depthstencil;
1404
1405 uint32_t num_instances;
1406 int basevertex;
1407
1408 struct {
1409 drm_intel_bo *bo;
1410 struct gl_shader_program **shader_programs;
1411 struct gl_program **programs;
1412 enum shader_time_shader_type *types;
1413 uint64_t *cumulative;
1414 int num_entries;
1415 int max_entries;
1416 double report_time;
1417 } shader_time;
1418
1419 __DRIcontext *driContext;
1420 struct intel_screen *intelScreen;
1421 void (*saved_viewport)(struct gl_context *ctx,
1422 GLint x, GLint y, GLsizei width, GLsizei height);
1423 };
1424
1425 static INLINE bool
1426 is_power_of_two(uint32_t value)
1427 {
1428 return (value & (value - 1)) == 0;
1429 }
1430
1431 /*======================================================================
1432 * brw_vtbl.c
1433 */
1434 void brwInitVtbl( struct brw_context *brw );
1435
1436 /* brw_clear.c */
1437 extern void intelInitClearFuncs(struct dd_function_table *functions);
1438
1439 /*======================================================================
1440 * brw_context.c
1441 */
1442 extern void intelFinish(struct gl_context * ctx);
1443
1444 enum {
1445 DRI_CONF_BO_REUSE_DISABLED,
1446 DRI_CONF_BO_REUSE_ALL
1447 };
1448
1449 void intel_update_renderbuffers(__DRIcontext *context,
1450 __DRIdrawable *drawable);
1451 void intel_prepare_render(struct brw_context *brw);
1452
1453 void intel_resolve_for_dri2_flush(struct brw_context *brw,
1454 __DRIdrawable *drawable);
1455
1456 bool brwCreateContext(gl_api api,
1457 const struct gl_config *mesaVis,
1458 __DRIcontext *driContextPriv,
1459 unsigned major_version,
1460 unsigned minor_version,
1461 uint32_t flags,
1462 unsigned *error,
1463 void *sharedContextPrivate);
1464
1465 /*======================================================================
1466 * brw_misc_state.c
1467 */
1468 void brw_get_depthstencil_tile_masks(struct intel_mipmap_tree *depth_mt,
1469 uint32_t depth_level,
1470 uint32_t depth_layer,
1471 struct intel_mipmap_tree *stencil_mt,
1472 uint32_t *out_tile_mask_x,
1473 uint32_t *out_tile_mask_y);
1474 void brw_workaround_depthstencil_alignment(struct brw_context *brw,
1475 GLbitfield clear_mask);
1476
1477 /* brw_object_purgeable.c */
1478 void brw_init_object_purgeable_functions(struct dd_function_table *functions);
1479
1480 /*======================================================================
1481 * brw_queryobj.c
1482 */
1483 void brw_init_common_queryobj_functions(struct dd_function_table *functions);
1484 void gen4_init_queryobj_functions(struct dd_function_table *functions);
1485 void brw_emit_query_begin(struct brw_context *brw);
1486 void brw_emit_query_end(struct brw_context *brw);
1487
1488 /** gen6_queryobj.c */
1489 void gen6_init_queryobj_functions(struct dd_function_table *functions);
1490 void brw_store_register_mem64(struct brw_context *brw,
1491 drm_intel_bo *bo, uint32_t reg, int idx);
1492
1493 /*======================================================================
1494 * brw_state_dump.c
1495 */
1496 void brw_debug_batch(struct brw_context *brw);
1497 void brw_annotate_aub(struct brw_context *brw);
1498
1499 /*======================================================================
1500 * brw_tex.c
1501 */
1502 void brw_validate_textures( struct brw_context *brw );
1503
1504
1505 /*======================================================================
1506 * brw_program.c
1507 */
1508 void brwInitFragProgFuncs( struct dd_function_table *functions );
1509
1510 int brw_get_scratch_size(int size);
1511 void brw_get_scratch_bo(struct brw_context *brw,
1512 drm_intel_bo **scratch_bo, int size);
1513 void brw_init_shader_time(struct brw_context *brw);
1514 int brw_get_shader_time_index(struct brw_context *brw,
1515 struct gl_shader_program *shader_prog,
1516 struct gl_program *prog,
1517 enum shader_time_shader_type type);
1518 void brw_collect_and_report_shader_time(struct brw_context *brw);
1519 void brw_destroy_shader_time(struct brw_context *brw);
1520
1521 /* brw_urb.c
1522 */
1523 void brw_upload_urb_fence(struct brw_context *brw);
1524
1525 /* brw_curbe.c
1526 */
1527 void brw_upload_cs_urb_state(struct brw_context *brw);
1528
1529 /* brw_fs_reg_allocate.cpp
1530 */
1531 void brw_fs_alloc_reg_sets(struct brw_context *brw);
1532
1533 /* brw_vec4_reg_allocate.cpp */
1534 void brw_vec4_alloc_reg_set(struct brw_context *brw);
1535
1536 /* brw_disasm.c */
1537 int brw_disasm (FILE *file, struct brw_instruction *inst, int gen);
1538
1539 /* brw_vs.c */
1540 gl_clip_plane *brw_select_clip_planes(struct gl_context *ctx);
1541
1542 /* brw_draw_upload.c */
1543 unsigned brw_get_vertex_surface_type(struct brw_context *brw,
1544 const struct gl_client_array *glarray);
1545 unsigned brw_get_index_type(GLenum type);
1546
1547 /* brw_wm_surface_state.c */
1548 void brw_init_surface_formats(struct brw_context *brw);
1549 void
1550 brw_update_sol_surface(struct brw_context *brw,
1551 struct gl_buffer_object *buffer_obj,
1552 uint32_t *out_offset, unsigned num_vector_components,
1553 unsigned stride_dwords, unsigned offset_dwords);
1554 void brw_upload_ubo_surfaces(struct brw_context *brw,
1555 struct gl_shader *shader,
1556 struct brw_stage_state *stage_state,
1557 struct brw_stage_prog_data *prog_data);
1558 void brw_upload_abo_surfaces(struct brw_context *brw,
1559 struct gl_shader_program *prog,
1560 struct brw_stage_state *stage_state,
1561 struct brw_stage_prog_data *prog_data);
1562
1563 /* brw_surface_formats.c */
1564 bool brw_is_hiz_depth_format(struct brw_context *ctx, gl_format format);
1565 bool brw_render_target_supported(struct brw_context *brw,
1566 struct gl_renderbuffer *rb);
1567
1568 /* brw_performance_monitor.c */
1569 void brw_init_performance_monitors(struct brw_context *brw);
1570
1571 /* intel_extensions.c */
1572 extern void intelInitExtensions(struct gl_context *ctx);
1573
1574 /* intel_state.c */
1575 extern int intel_translate_shadow_compare_func(GLenum func);
1576 extern int intel_translate_compare_func(GLenum func);
1577 extern int intel_translate_stencil_op(GLenum op);
1578 extern int intel_translate_logic_op(GLenum opcode);
1579
1580 /* intel_syncobj.c */
1581 void intel_init_syncobj_functions(struct dd_function_table *functions);
1582
1583 /* gen6_sol.c */
1584 struct gl_transform_feedback_object *
1585 brw_new_transform_feedback(struct gl_context *ctx, GLuint name);
1586 void
1587 brw_delete_transform_feedback(struct gl_context *ctx,
1588 struct gl_transform_feedback_object *obj);
1589 void
1590 brw_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
1591 struct gl_transform_feedback_object *obj);
1592 void
1593 brw_end_transform_feedback(struct gl_context *ctx,
1594 struct gl_transform_feedback_object *obj);
1595
1596 /* gen7_sol_state.c */
1597 void
1598 gen7_begin_transform_feedback(struct gl_context *ctx, GLenum mode,
1599 struct gl_transform_feedback_object *obj);
1600 void
1601 gen7_end_transform_feedback(struct gl_context *ctx,
1602 struct gl_transform_feedback_object *obj);
1603 void
1604 gen7_pause_transform_feedback(struct gl_context *ctx,
1605 struct gl_transform_feedback_object *obj);
1606 void
1607 gen7_resume_transform_feedback(struct gl_context *ctx,
1608 struct gl_transform_feedback_object *obj);
1609
1610 /* brw_blorp_blit.cpp */
1611 GLbitfield
1612 brw_blorp_framebuffer(struct brw_context *brw,
1613 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1614 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
1615 GLbitfield mask, GLenum filter);
1616
1617 bool
1618 brw_blorp_copytexsubimage(struct brw_context *brw,
1619 struct gl_renderbuffer *src_rb,
1620 struct gl_texture_image *dst_image,
1621 int slice,
1622 int srcX0, int srcY0,
1623 int dstX0, int dstY0,
1624 int width, int height);
1625
1626 /* gen6_multisample_state.c */
1627 void
1628 gen6_emit_3dstate_multisample(struct brw_context *brw,
1629 unsigned num_samples);
1630 void
1631 gen6_emit_3dstate_sample_mask(struct brw_context *brw,
1632 unsigned num_samples, float coverage,
1633 bool coverage_invert, unsigned sample_mask);
1634 void
1635 gen6_get_sample_position(struct gl_context *ctx,
1636 struct gl_framebuffer *fb,
1637 GLuint index,
1638 GLfloat *result);
1639
1640 /* gen7_urb.c */
1641 void
1642 gen7_emit_push_constant_state(struct brw_context *brw, unsigned vs_size,
1643 unsigned gs_size, unsigned fs_size);
1644
1645 void
1646 gen7_emit_urb_state(struct brw_context *brw,
1647 unsigned nr_vs_entries, unsigned vs_size,
1648 unsigned vs_start, unsigned nr_gs_entries,
1649 unsigned gs_size, unsigned gs_start);
1650
1651
1652
1653 /*======================================================================
1654 * Inline conversion functions. These are better-typed than the
1655 * macros used previously:
1656 */
1657 static INLINE struct brw_context *
1658 brw_context( struct gl_context *ctx )
1659 {
1660 return (struct brw_context *)ctx;
1661 }
1662
1663 static INLINE struct brw_vertex_program *
1664 brw_vertex_program(struct gl_vertex_program *p)
1665 {
1666 return (struct brw_vertex_program *) p;
1667 }
1668
1669 static INLINE const struct brw_vertex_program *
1670 brw_vertex_program_const(const struct gl_vertex_program *p)
1671 {
1672 return (const struct brw_vertex_program *) p;
1673 }
1674
1675 static INLINE struct brw_geometry_program *
1676 brw_geometry_program(struct gl_geometry_program *p)
1677 {
1678 return (struct brw_geometry_program *) p;
1679 }
1680
1681 static INLINE struct brw_fragment_program *
1682 brw_fragment_program(struct gl_fragment_program *p)
1683 {
1684 return (struct brw_fragment_program *) p;
1685 }
1686
1687 static INLINE const struct brw_fragment_program *
1688 brw_fragment_program_const(const struct gl_fragment_program *p)
1689 {
1690 return (const struct brw_fragment_program *) p;
1691 }
1692
1693 /**
1694 * Pre-gen6, the register file of the EUs was shared between threads,
1695 * and each thread used some subset allocated on a 16-register block
1696 * granularity. The unit states wanted these block counts.
1697 */
1698 static inline int
1699 brw_register_blocks(int reg_count)
1700 {
1701 return ALIGN(reg_count, 16) / 16 - 1;
1702 }
1703
1704 static inline uint32_t
1705 brw_program_reloc(struct brw_context *brw, uint32_t state_offset,
1706 uint32_t prog_offset)
1707 {
1708 if (brw->gen >= 5) {
1709 /* Using state base address. */
1710 return prog_offset;
1711 }
1712
1713 drm_intel_bo_emit_reloc(brw->batch.bo,
1714 state_offset,
1715 brw->cache.bo,
1716 prog_offset,
1717 I915_GEM_DOMAIN_INSTRUCTION, 0);
1718
1719 return brw->cache.bo->offset + prog_offset;
1720 }
1721
1722 bool brw_do_cubemap_normalize(struct exec_list *instructions);
1723 bool brw_lower_texture_gradients(struct brw_context *brw,
1724 struct exec_list *instructions);
1725 bool brw_do_lower_offset_arrays(struct exec_list *instructions);
1726 bool brw_do_lower_unnormalized_offset(struct exec_list *instructions);
1727
1728 struct opcode_desc {
1729 char *name;
1730 int nsrc;
1731 int ndst;
1732 };
1733
1734 extern const struct opcode_desc opcode_descs[128];
1735
1736 void
1737 brw_emit_depthbuffer(struct brw_context *brw);
1738
1739 void
1740 brw_emit_depth_stencil_hiz(struct brw_context *brw,
1741 struct intel_mipmap_tree *depth_mt,
1742 uint32_t depth_offset, uint32_t depthbuffer_format,
1743 uint32_t depth_surface_type,
1744 struct intel_mipmap_tree *stencil_mt,
1745 bool hiz, bool separate_stencil,
1746 uint32_t width, uint32_t height,
1747 uint32_t tile_x, uint32_t tile_y);
1748
1749 void
1750 gen7_emit_depth_stencil_hiz(struct brw_context *brw,
1751 struct intel_mipmap_tree *depth_mt,
1752 uint32_t depth_offset, uint32_t depthbuffer_format,
1753 uint32_t depth_surface_type,
1754 struct intel_mipmap_tree *stencil_mt,
1755 bool hiz, bool separate_stencil,
1756 uint32_t width, uint32_t height,
1757 uint32_t tile_x, uint32_t tile_y);
1758
1759 extern const GLuint prim_to_hw_prim[GL_TRIANGLE_STRIP_ADJACENCY+1];
1760
1761 void
1762 brw_setup_vec4_key_clip_info(struct brw_context *brw,
1763 struct brw_vec4_prog_key *key,
1764 bool program_uses_clip_distance);
1765
1766 void
1767 gen6_upload_vec4_push_constants(struct brw_context *brw,
1768 const struct gl_program *prog,
1769 const struct brw_vec4_prog_data *prog_data,
1770 struct brw_stage_state *stage_state,
1771 enum state_struct_type type);
1772
1773 /* ================================================================
1774 * From linux kernel i386 header files, copes with odd sizes better
1775 * than COPY_DWORDS would:
1776 * XXX Put this in src/mesa/main/imports.h ???
1777 */
1778 #if defined(i386) || defined(__i386__)
1779 static INLINE void * __memcpy(void * to, const void * from, size_t n)
1780 {
1781 int d0, d1, d2;
1782 __asm__ __volatile__(
1783 "rep ; movsl\n\t"
1784 "testb $2,%b4\n\t"
1785 "je 1f\n\t"
1786 "movsw\n"
1787 "1:\ttestb $1,%b4\n\t"
1788 "je 2f\n\t"
1789 "movsb\n"
1790 "2:"
1791 : "=&c" (d0), "=&D" (d1), "=&S" (d2)
1792 :"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
1793 : "memory");
1794 return (to);
1795 }
1796 #else
1797 #define __memcpy(a,b,c) memcpy(a,b,c)
1798 #endif
1799
1800 #ifdef __cplusplus
1801 }
1802 #endif
1803
1804 #endif