df90c2027f34a281601beaf214227e65f2ece7a7
[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 "intel_context.h"
37 #include "brw_structs.h"
38 #include "main/imports.h"
39
40
41 /* Glossary:
42 *
43 * URB - uniform resource buffer. A mid-sized buffer which is
44 * partitioned between the fixed function units and used for passing
45 * values (vertices, primitives, constants) between them.
46 *
47 * CURBE - constant URB entry. An urb region (entry) used to hold
48 * constant values which the fixed function units can be instructed to
49 * preload into the GRF when spawining a thread.
50 *
51 * VUE - vertex URB entry. An urb entry holding a vertex and usually
52 * a vertex header. The header contains control information and
53 * things like primitive type, Begin/end flags and clip codes.
54 *
55 * PUE - primitive URB entry. An urb entry produced by the setup (SF)
56 * unit holding rasterization and interpolation parameters.
57 *
58 * GRF - general register file. One of several register files
59 * addressable by programmed threads. The inputs (r0, payload, curbe,
60 * urb) of the thread are preloaded to this area before the thread is
61 * spawned. The registers are individually 8 dwords wide and suitable
62 * for general usage. Registers holding thread input values are not
63 * special and may be overwritten.
64 *
65 * MRF - message register file. Threads communicate (and terminate)
66 * by sending messages. Message parameters are placed in contigous
67 * MRF registers. All program output is via these messages. URB
68 * entries are populated by sending a message to the shared URB
69 * function containing the new data, together with a control word,
70 * often an unmodified copy of R0.
71 *
72 * R0 - GRF register 0. Typically holds control information used when
73 * sending messages to other threads.
74 *
75 * EU or GEN4 EU: The name of the programmable subsystem of the
76 * i965 hardware. Threads are executed by the EU, the registers
77 * described above are part of the EU architecture.
78 *
79 * Fixed function units:
80 *
81 * CS - Command streamer. Notional first unit, little software
82 * interaction. Holds the URB entries used for constant data, ie the
83 * CURBEs.
84 *
85 * VF/VS - Vertex Fetch / Vertex Shader. The fixed function part of
86 * this unit is responsible for pulling vertices out of vertex buffers
87 * in vram and injecting them into the processing pipe as VUEs. If
88 * enabled, it first passes them to a VS thread which is a good place
89 * for the driver to implement any active vertex shader.
90 *
91 * GS - Geometry Shader. This corresponds to a new DX10 concept. If
92 * enabled, incoming strips etc are passed to GS threads in individual
93 * line/triangle/point units. The GS thread may perform arbitary
94 * computation and emit whatever primtives with whatever vertices it
95 * chooses. This makes GS an excellent place to implement GL's
96 * unfilled polygon modes, though of course it is capable of much
97 * more. Additionally, GS is used to translate away primitives not
98 * handled by latter units, including Quads and Lineloops.
99 *
100 * CS - Clipper. Mesa's clipping algorithms are imported to run on
101 * this unit. The fixed function part performs cliptesting against
102 * the 6 fixed clipplanes and makes descisions on whether or not the
103 * incoming primitive needs to be passed to a thread for clipping.
104 * User clip planes are handled via cooperation with the VS thread.
105 *
106 * SF - Strips Fans or Setup: Triangles are prepared for
107 * rasterization. Interpolation coefficients are calculated.
108 * Flatshading and two-side lighting usually performed here.
109 *
110 * WM - Windower. Interpolation of vertex attributes performed here.
111 * Fragment shader implemented here. SIMD aspects of EU taken full
112 * advantage of, as pixels are processed in blocks of 16.
113 *
114 * CC - Color Calculator. No EU threads associated with this unit.
115 * Handles blending and (presumably) depth and stencil testing.
116 */
117
118 #define BRW_FALLBACK_TEXTURE 0x1
119 #define BRW_MAX_CURBE (32*16)
120
121 struct brw_context;
122
123 #define BRW_NEW_URB_FENCE 0x1
124 #define BRW_NEW_FRAGMENT_PROGRAM 0x2
125 #define BRW_NEW_VERTEX_PROGRAM 0x4
126 #define BRW_NEW_INPUT_DIMENSIONS 0x8
127 #define BRW_NEW_CURBE_OFFSETS 0x10
128 #define BRW_NEW_REDUCED_PRIMITIVE 0x20
129 #define BRW_NEW_PRIMITIVE 0x40
130 #define BRW_NEW_CONTEXT 0x80
131 #define BRW_NEW_WM_INPUT_DIMENSIONS 0x100
132 #define BRW_NEW_INPUT_VARYING 0x200
133 #define BRW_NEW_PSP 0x800
134 #define BRW_NEW_FENCE 0x2000
135 #define BRW_NEW_INDICES 0x4000
136 #define BRW_NEW_VERTICES 0x8000
137 /**
138 * Used for any batch entry with a relocated pointer that will be used
139 * by any 3D rendering.
140 */
141 #define BRW_NEW_BATCH 0x10000
142 /** brw->depth_region updated */
143 #define BRW_NEW_DEPTH_BUFFER 0x20000
144 #define BRW_NEW_NR_SURFACES 0x40000
145
146 struct brw_state_flags {
147 /** State update flags signalled by mesa internals */
148 GLuint mesa;
149 /**
150 * State update flags signalled as the result of brw_tracked_state updates
151 */
152 GLuint brw;
153 /** State update flags signalled by brw_state_cache.c searches */
154 GLuint cache;
155 };
156
157 struct brw_vertex_program {
158 struct gl_vertex_program program;
159 GLuint id;
160 };
161
162
163
164 struct brw_fragment_program {
165 struct gl_fragment_program program;
166 GLuint id;
167 };
168
169
170
171
172 /* Data about a particular attempt to compile a program. Note that
173 * there can be many of these, each in a different GL state
174 * corresponding to a different brw_wm_prog_key struct, with different
175 * compiled programs:
176 */
177 struct brw_wm_prog_data {
178 GLuint curb_read_length;
179 GLuint urb_read_length;
180
181 GLuint first_curbe_grf;
182 GLuint total_grf;
183 GLuint total_scratch;
184
185 GLuint nr_params;
186 GLboolean error;
187
188 /* Pointer to tracked values (only valid once
189 * _mesa_load_state_parameters has been called at runtime).
190 */
191 const GLfloat *param[BRW_MAX_CURBE];
192 };
193
194 struct brw_sf_prog_data {
195 GLuint urb_read_length;
196 GLuint total_grf;
197
198 /* Each vertex may have upto 12 attributes, 4 components each,
199 * except WPOS which requires only 2. (11*4 + 2) == 44 ==> 11
200 * rows.
201 *
202 * Actually we use 4 for each, so call it 12 rows.
203 */
204 GLuint urb_entry_size;
205 };
206
207 struct brw_clip_prog_data {
208 GLuint curb_read_length; /* user planes? */
209 GLuint clip_mode;
210 GLuint urb_read_length;
211 GLuint total_grf;
212 };
213
214 struct brw_gs_prog_data {
215 GLuint urb_read_length;
216 GLuint total_grf;
217 };
218
219 struct brw_vs_prog_data {
220 GLuint curb_read_length;
221 GLuint urb_read_length;
222 GLuint total_grf;
223 GLuint outputs_written;
224
225 GLuint inputs_read;
226
227 /* Used for calculating urb partitions:
228 */
229 GLuint urb_entry_size;
230 };
231
232
233 /* Size == 0 if output either not written, or always [0,0,0,1]
234 */
235 struct brw_vs_ouput_sizes {
236 GLubyte output_size[VERT_RESULT_MAX];
237 };
238
239
240 #define BRW_MAX_TEX_UNIT 16
241 #define BRW_WM_MAX_SURF BRW_MAX_TEX_UNIT + MAX_DRAW_BUFFERS
242
243 enum brw_cache_id {
244 BRW_CC_VP,
245 BRW_CC_UNIT,
246 BRW_WM_PROG,
247 BRW_SAMPLER_DEFAULT_COLOR,
248 BRW_SAMPLER,
249 BRW_WM_UNIT,
250 BRW_SF_PROG,
251 BRW_SF_VP,
252 BRW_SF_UNIT,
253 BRW_VS_UNIT,
254 BRW_VS_PROG,
255 BRW_GS_UNIT,
256 BRW_GS_PROG,
257 BRW_CLIP_VP,
258 BRW_CLIP_UNIT,
259 BRW_CLIP_PROG,
260 BRW_SS_SURFACE,
261 BRW_SS_SURF_BIND,
262
263 BRW_MAX_CACHE
264 };
265
266 struct brw_cache_item {
267 /**
268 * Effectively part of the key, cache_id identifies what kind of state
269 * buffer is involved, and also which brw->state.dirty.cache flag should
270 * be set when this cache item is chosen.
271 */
272 enum brw_cache_id cache_id;
273 /** 32-bit hash of the key data */
274 GLuint hash;
275 GLuint key_size; /* for variable-sized keys */
276 const void *key;
277 dri_bo **reloc_bufs;
278 GLuint nr_reloc_bufs;
279
280 dri_bo *bo;
281 GLuint data_size;
282
283 struct brw_cache_item *next;
284 };
285
286
287
288 struct brw_cache {
289 struct brw_context *brw;
290
291 struct brw_cache_item **items;
292 GLuint size, n_items;
293
294 GLuint key_size[BRW_MAX_CACHE]; /* for fixed-size keys */
295 GLuint aux_size[BRW_MAX_CACHE];
296 char *name[BRW_MAX_CACHE];
297
298 /* Record of the last BOs chosen for each cache_id. Used to set
299 * brw->state.dirty.cache when a new cache item is chosen.
300 */
301 dri_bo *last_bo[BRW_MAX_CACHE];
302 };
303
304
305 /* Considered adding a member to this struct to document which flags
306 * an update might raise so that ordering of the state atoms can be
307 * checked or derived at runtime. Dropped the idea in favor of having
308 * a debug mode where the state is monitored for flags which are
309 * raised that have already been tested against.
310 */
311 struct brw_tracked_state {
312 struct brw_state_flags dirty;
313 void (*prepare)( struct brw_context *brw );
314 void (*emit)( struct brw_context *brw );
315 };
316
317 /* Flags for brw->state.cache.
318 */
319 #define CACHE_NEW_CC_VP (1<<BRW_CC_VP)
320 #define CACHE_NEW_CC_UNIT (1<<BRW_CC_UNIT)
321 #define CACHE_NEW_WM_PROG (1<<BRW_WM_PROG)
322 #define CACHE_NEW_SAMPLER_DEFAULT_COLOR (1<<BRW_SAMPLER_DEFAULT_COLOR)
323 #define CACHE_NEW_SAMPLER (1<<BRW_SAMPLER)
324 #define CACHE_NEW_WM_UNIT (1<<BRW_WM_UNIT)
325 #define CACHE_NEW_SF_PROG (1<<BRW_SF_PROG)
326 #define CACHE_NEW_SF_VP (1<<BRW_SF_VP)
327 #define CACHE_NEW_SF_UNIT (1<<BRW_SF_UNIT)
328 #define CACHE_NEW_VS_UNIT (1<<BRW_VS_UNIT)
329 #define CACHE_NEW_VS_PROG (1<<BRW_VS_PROG)
330 #define CACHE_NEW_GS_UNIT (1<<BRW_GS_UNIT)
331 #define CACHE_NEW_GS_PROG (1<<BRW_GS_PROG)
332 #define CACHE_NEW_CLIP_VP (1<<BRW_CLIP_VP)
333 #define CACHE_NEW_CLIP_UNIT (1<<BRW_CLIP_UNIT)
334 #define CACHE_NEW_CLIP_PROG (1<<BRW_CLIP_PROG)
335 #define CACHE_NEW_SURFACE (1<<BRW_SS_SURFACE)
336 #define CACHE_NEW_SURF_BIND (1<<BRW_SS_SURF_BIND)
337
338 struct brw_cached_batch_item {
339 struct header *header;
340 GLuint sz;
341 struct brw_cached_batch_item *next;
342 };
343
344
345
346 /* Protect against a future where VERT_ATTRIB_MAX > 32. Wouldn't life
347 * be easier if C allowed arrays of packed elements?
348 */
349 #define ATTRIB_BIT_DWORDS ((VERT_ATTRIB_MAX+31)/32)
350
351 struct brw_vertex_element {
352 const struct gl_client_array *glarray;
353
354 /** Size of a complete element */
355 GLuint element_size;
356 /** Number of uploaded elements for this input. */
357 GLuint count;
358 /** Byte stride between elements in the uploaded array */
359 GLuint stride;
360 /** Offset of the first element within the buffer object */
361 unsigned int offset;
362 /** Buffer object containing the uploaded vertex data */
363 dri_bo *bo;
364 };
365
366
367
368 struct brw_vertex_info {
369 GLuint varying; /* varying:1[VERT_ATTRIB_MAX] */
370 GLuint sizes[ATTRIB_BIT_DWORDS * 2]; /* sizes:2[VERT_ATTRIB_MAX] */
371 };
372
373
374
375
376 /* Cache for TNL programs.
377 */
378 struct brw_tnl_cache_item {
379 GLuint hash;
380 void *key;
381 void *data;
382 struct brw_tnl_cache_item *next;
383 };
384
385 struct brw_tnl_cache {
386 struct brw_tnl_cache_item **items;
387 GLuint size, n_items;
388 };
389
390 struct brw_query_object {
391 struct gl_query_object Base;
392
393 /** Doubly linked list of active query objects in the context. */
394 struct brw_query_object *prev, *next;
395
396 /** Last query BO associated with this query. */
397 dri_bo *bo;
398 /** First index in bo with query data for this object. */
399 int first_index;
400 /** Last index in bo with query data for this object. */
401 int last_index;
402
403 /* Total count of pixels from previous BOs */
404 unsigned int count;
405 };
406
407 struct brw_context
408 {
409 struct intel_context intel;
410 GLuint primitive;
411
412 GLboolean emit_state_always;
413 GLboolean tmp_fallback;
414 GLboolean no_batch_wrap;
415
416 struct {
417 struct brw_state_flags dirty;
418 struct brw_tracked_state **atoms;
419 GLuint nr_atoms;
420
421 GLuint nr_draw_regions;
422 struct intel_region *draw_regions[MAX_DRAW_BUFFERS];
423 struct intel_region *depth_region;
424
425 /**
426 * List of buffers accumulated in brw_validate_state to receive
427 * dri_bo_check_aperture treatment before exec, so we can know if we
428 * should flush the batch and try again before emitting primitives.
429 *
430 * This can be a fixed number as we only have a limited number of
431 * objects referenced from the batchbuffer in a primitive emit,
432 * consisting of the vertex buffers, pipelined state pointers,
433 * the CURBE, the depth buffer, and a query BO.
434 */
435 dri_bo *validated_bos[VERT_ATTRIB_MAX + 16];
436 int validated_bo_count;
437 } state;
438
439 struct brw_cache cache;
440 struct brw_cached_batch_item *cached_batch_items;
441
442 struct {
443 struct brw_vertex_element inputs[VERT_ATTRIB_MAX];
444
445 #define BRW_NR_UPLOAD_BUFS 17
446 #define BRW_UPLOAD_INIT_SIZE (128*1024)
447
448 struct {
449 dri_bo *bo;
450 GLuint offset;
451 } upload;
452
453 /* Summary of size and varying of active arrays, so we can check
454 * for changes to this state:
455 */
456 struct brw_vertex_info info;
457 unsigned int min_index, max_index;
458 } vb;
459
460 struct {
461 /**
462 * Index buffer for this draw_prims call.
463 *
464 * Updates are signaled by BRW_NEW_INDICES.
465 */
466 const struct _mesa_index_buffer *ib;
467
468 dri_bo *bo;
469 unsigned int offset;
470 } ib;
471
472 /* Active vertex program:
473 */
474 const struct gl_vertex_program *vertex_program;
475 const struct gl_fragment_program *fragment_program;
476
477
478 /* For populating the gtt:
479 */
480 GLuint next_free_page;
481
482
483 /* BRW_NEW_URB_ALLOCATIONS:
484 */
485 struct {
486 GLuint vsize; /* vertex size plus header in urb registers */
487 GLuint csize; /* constant buffer size in urb registers */
488 GLuint sfsize; /* setup data size in urb registers */
489
490 GLboolean constrained;
491
492 GLuint nr_vs_entries;
493 GLuint nr_gs_entries;
494 GLuint nr_clip_entries;
495 GLuint nr_sf_entries;
496 GLuint nr_cs_entries;
497
498 /* GLuint vs_size; */
499 /* GLuint gs_size; */
500 /* GLuint clip_size; */
501 /* GLuint sf_size; */
502 /* GLuint cs_size; */
503
504 GLuint vs_start;
505 GLuint gs_start;
506 GLuint clip_start;
507 GLuint sf_start;
508 GLuint cs_start;
509 } urb;
510
511
512 /* BRW_NEW_CURBE_OFFSETS:
513 */
514 struct {
515 GLuint wm_start;
516 GLuint wm_size;
517 GLuint clip_start;
518 GLuint clip_size;
519 GLuint vs_start;
520 GLuint vs_size;
521 GLuint total_size;
522
523 /* Dynamic tracker which changes to reflect the state referenced
524 * by active fp and vp program parameters:
525 */
526 struct brw_tracked_state tracked_state;
527
528 dri_bo *curbe_bo;
529 /** Offset within curbe_bo of space for current curbe entry */
530 GLuint curbe_offset;
531 /** Offset within curbe_bo of space for next curbe entry */
532 GLuint curbe_next_offset;
533
534 GLfloat *last_buf;
535 GLuint last_bufsz;
536 /**
537 * Whether we should create a new bo instead of reusing the old one
538 * (if we just dispatch the batch pointing at the old one.
539 */
540 GLboolean need_new_bo;
541 } curbe;
542
543 struct {
544 struct brw_vs_prog_data *prog_data;
545
546 dri_bo *prog_bo;
547 dri_bo *state_bo;
548 } vs;
549
550 struct {
551 struct brw_gs_prog_data *prog_data;
552
553 GLboolean prog_active;
554 dri_bo *prog_bo;
555 dri_bo *state_bo;
556 } gs;
557
558 struct {
559 struct brw_clip_prog_data *prog_data;
560
561 dri_bo *prog_bo;
562 dri_bo *state_bo;
563 dri_bo *vp_bo;
564 } clip;
565
566
567 struct {
568 struct brw_sf_prog_data *prog_data;
569
570 dri_bo *prog_bo;
571 dri_bo *state_bo;
572 dri_bo *vp_bo;
573 } sf;
574
575 struct {
576 struct brw_wm_prog_data *prog_data;
577 struct brw_wm_compile *compile_data;
578
579 /* Input sizes, calculated from active vertex program:
580 */
581 GLuint input_size_masks[4];
582
583 /** Array of surface default colors (texture border color) */
584 dri_bo *sdc_bo[BRW_MAX_TEX_UNIT];
585
586 GLuint render_surf;
587 GLuint nr_surfaces;
588
589 GLuint max_threads;
590 dri_bo *scratch_buffer;
591
592 GLuint sampler_count;
593 dri_bo *sampler_bo;
594
595 /** Binding table of pointers to surf_bo entries */
596 dri_bo *bind_bo;
597 dri_bo *surf_bo[BRW_WM_MAX_SURF];
598
599 dri_bo *prog_bo;
600 dri_bo *state_bo;
601 } wm;
602
603
604 struct {
605 dri_bo *prog_bo;
606 dri_bo *state_bo;
607 dri_bo *vp_bo;
608 } cc;
609
610 struct {
611 struct brw_query_object active_head;
612 dri_bo *bo;
613 int index;
614 GLboolean active;
615 } query;
616 /* Used to give every program string a unique id
617 */
618 GLuint program_id;
619 };
620
621
622 #define BRW_PACKCOLOR8888(r,g,b,a) ((r<<24) | (g<<16) | (b<<8) | a)
623
624
625
626 /*======================================================================
627 * brw_vtbl.c
628 */
629 void brwInitVtbl( struct brw_context *brw );
630 void brw_do_flush( struct brw_context *brw,
631 GLuint flags );
632
633 /*======================================================================
634 * brw_context.c
635 */
636 GLboolean brwCreateContext( const __GLcontextModes *mesaVis,
637 __DRIcontextPrivate *driContextPriv,
638 void *sharedContextPrivate);
639
640 /*======================================================================
641 * brw_queryobj.c
642 */
643 void brw_init_queryobj_functions(struct dd_function_table *functions);
644 void brw_prepare_query_begin(struct brw_context *brw);
645 void brw_emit_query_begin(struct brw_context *brw);
646 void brw_emit_query_end(struct brw_context *brw);
647
648 /*======================================================================
649 * brw_state_dump.c
650 */
651 void brw_debug_batch(struct intel_context *intel);
652
653 /*======================================================================
654 * brw_tex.c
655 */
656 void brwUpdateTextureState( struct intel_context *intel );
657 void brw_FrameBufferTexInit( struct brw_context *brw,
658 struct intel_region *region );
659 void brw_FrameBufferTexDestroy( struct brw_context *brw );
660 void brw_validate_textures( struct brw_context *brw );
661
662
663 /*======================================================================
664 * brw_program.c
665 */
666 void brwInitFragProgFuncs( struct dd_function_table *functions );
667
668
669 /* brw_urb.c
670 */
671 void brw_upload_urb_fence(struct brw_context *brw);
672
673 void brw_upload_constant_buffer_state(struct brw_context *brw);
674
675
676 /*======================================================================
677 * Inline conversion functions. These are better-typed than the
678 * macros used previously:
679 */
680 static INLINE struct brw_context *
681 brw_context( GLcontext *ctx )
682 {
683 return (struct brw_context *)ctx;
684 }
685
686 #define DO_SETUP_BITS ((1<<(FRAG_ATTRIB_MAX)) - 1)
687
688 #endif
689