2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
4 develop this 3D driver.
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:
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.
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.
26 **********************************************************************/
29 * Keith Whitwell <keith@tungstengraphics.com>
34 #include "brw_debug.h"
35 #include "brw_batchbuffer.h"
36 #include "brw_context.h"
37 #include "brw_state.h"
38 #include "brw_defines.h"
39 #include "brw_screen.h"
40 #include "brw_pipe_rast.h"
46 /***********************************************************************
50 static int upload_blend_constant_color(struct brw_context
*brw
)
52 BRW_CACHED_BATCH_STRUCT(brw
, &brw
->curr
.bcc
);
57 const struct brw_tracked_state brw_blend_constant_color
= {
59 .mesa
= PIPE_NEW_BLEND_COLOR
,
63 .emit
= upload_blend_constant_color
66 /***********************************************************************
67 * Drawing rectangle - framebuffer dimensions
69 static int upload_drawing_rect(struct brw_context
*brw
)
71 BEGIN_BATCH(4, NO_LOOP_CLIPRECTS
);
72 OUT_BATCH(_3DSTATE_DRAWRECT_INFO_I965
);
74 OUT_BATCH(((brw
->curr
.fb
.width
- 1) & 0xffff) |
75 ((brw
->curr
.fb
.height
- 1) << 16));
81 const struct brw_tracked_state brw_drawing_rect
= {
83 .mesa
= PIPE_NEW_FRAMEBUFFER_DIMENSIONS
,
87 .emit
= upload_drawing_rect
91 /***********************************************************************
92 * Binding table pointers
95 static int prepare_binding_table_pointers(struct brw_context
*brw
)
97 brw_add_validated_bo(brw
, brw
->vs
.bind_bo
);
98 brw_add_validated_bo(brw
, brw
->wm
.bind_bo
);
103 * Upload the binding table pointers, which point each stage's array of surface
106 * The binding table pointers are relative to the surface state base address,
109 static int upload_binding_table_pointers(struct brw_context
*brw
)
111 BEGIN_BATCH(6, IGNORE_CLIPRECTS
);
112 OUT_BATCH(CMD_BINDING_TABLE_PTRS
<< 16 | (6 - 2));
113 if (brw
->vs
.bind_bo
!= NULL
)
114 OUT_RELOC(brw
->vs
.bind_bo
,
119 OUT_BATCH(0); /* gs */
120 OUT_BATCH(0); /* clip */
121 OUT_BATCH(0); /* sf */
122 OUT_RELOC(brw
->wm
.bind_bo
,
129 const struct brw_tracked_state brw_binding_table_pointers
= {
132 .brw
= BRW_NEW_BATCH
,
133 .cache
= CACHE_NEW_SURF_BIND
,
135 .prepare
= prepare_binding_table_pointers
,
136 .emit
= upload_binding_table_pointers
,
140 /**********************************************************************
141 * Upload pointers to the per-stage state.
143 * The state pointers in this packet are all relative to the general state
144 * base address set by CMD_STATE_BASE_ADDRESS, which is 0.
146 static int upload_pipelined_state_pointers(struct brw_context
*brw
)
148 BEGIN_BATCH(7, IGNORE_CLIPRECTS
);
149 OUT_BATCH(CMD_PIPELINED_STATE_POINTERS
<< 16 | (7 - 2));
150 OUT_RELOC(brw
->vs
.state_bo
,
153 if (brw
->gs
.prog_active
)
154 OUT_RELOC(brw
->gs
.state_bo
,
159 OUT_RELOC(brw
->clip
.state_bo
,
162 OUT_RELOC(brw
->sf
.state_bo
,
165 OUT_RELOC(brw
->wm
.state_bo
,
168 OUT_RELOC(brw
->cc
.state_bo
,
173 brw
->state
.dirty
.brw
|= BRW_NEW_PSP
;
178 static int prepare_psp_urb_cbs(struct brw_context
*brw
)
180 brw_add_validated_bo(brw
, brw
->vs
.state_bo
);
181 brw_add_validated_bo(brw
, brw
->gs
.state_bo
);
182 brw_add_validated_bo(brw
, brw
->clip
.state_bo
);
183 brw_add_validated_bo(brw
, brw
->sf
.state_bo
);
184 brw_add_validated_bo(brw
, brw
->wm
.state_bo
);
185 brw_add_validated_bo(brw
, brw
->cc
.state_bo
);
189 static int upload_psp_urb_cbs(struct brw_context
*brw
)
193 ret
= upload_pipelined_state_pointers(brw
);
197 ret
= brw_upload_urb_fence(brw
);
201 ret
= brw_upload_cs_urb_state(brw
);
208 const struct brw_tracked_state brw_psp_urb_cbs
= {
211 .brw
= BRW_NEW_URB_FENCE
| BRW_NEW_BATCH
,
212 .cache
= (CACHE_NEW_VS_UNIT
|
215 CACHE_NEW_CLIP_UNIT
|
220 .prepare
= prepare_psp_urb_cbs
,
221 .emit
= upload_psp_urb_cbs
,
225 /***********************************************************************
229 static int prepare_depthbuffer(struct brw_context
*brw
)
231 struct pipe_surface
*zsbuf
= brw
->curr
.fb
.zsbuf
;
234 brw_add_validated_bo(brw
, brw_surface(zsbuf
)->bo
);
239 static int emit_depthbuffer(struct brw_context
*brw
)
241 struct pipe_surface
*surface
= brw
->curr
.fb
.zsbuf
;
242 unsigned int len
= (BRW_IS_G4X(brw
) || BRW_IS_IGDNG(brw
)) ? 6 : 5;
244 if (surface
== NULL
) {
245 BEGIN_BATCH(len
, IGNORE_CLIPRECTS
);
246 OUT_BATCH(CMD_DEPTH_BUFFER
<< 16 | (len
- 2));
247 OUT_BATCH((BRW_DEPTHFORMAT_D32_FLOAT
<< 18) |
248 (BRW_SURFACE_NULL
<< 29));
253 if (BRW_IS_G4X(brw
) || BRW_IS_IGDNG(brw
))
258 struct brw_winsys_buffer
*bo
;
263 switch (surface
->format
) {
264 case PIPE_FORMAT_Z16_UNORM
:
265 format
= BRW_DEPTHFORMAT_D16_UNORM
;
268 case PIPE_FORMAT_Z24X8_UNORM
:
269 case PIPE_FORMAT_Z24_UNORM_S8_USCALED
:
270 format
= BRW_DEPTHFORMAT_D24_UNORM_S8_UINT
;
273 case PIPE_FORMAT_Z32_FLOAT
:
274 format
= BRW_DEPTHFORMAT_D32_FLOAT
;
279 return PIPE_ERROR_BAD_INPUT
;
282 bo
= brw_surface(surface
)->bo
;
283 pitch
= brw_surface(surface
)->pitch
;
285 BEGIN_BATCH(len
, IGNORE_CLIPRECTS
);
286 OUT_BATCH(CMD_DEPTH_BUFFER
<< 16 | (len
- 2));
287 OUT_BATCH(((pitch
* cpp
) - 1) |
289 (BRW_TILEWALK_YMAJOR
<< 26) |
290 ((surface
->layout
!= PIPE_SURFACE_LAYOUT_LINEAR
) << 27) |
291 (BRW_SURFACE_2D
<< 29));
293 BRW_USAGE_DEPTH_BUFFER
,
295 OUT_BATCH((BRW_SURFACE_MIPMAPLAYOUT_BELOW
<< 1) |
297 ((surface
->height
- 1) << 19));
300 if (BRW_IS_G4X(brw
) || BRW_IS_IGDNG(brw
))
309 const struct brw_tracked_state brw_depthbuffer
= {
311 .mesa
= PIPE_NEW_DEPTH_BUFFER
,
312 .brw
= BRW_NEW_BATCH
,
315 .prepare
= prepare_depthbuffer
,
316 .emit
= emit_depthbuffer
,
321 /***********************************************************************
322 * Polygon stipple packet
325 static int upload_polygon_stipple(struct brw_context
*brw
)
327 BRW_CACHED_BATCH_STRUCT(brw
, &brw
->curr
.bps
);
331 const struct brw_tracked_state brw_polygon_stipple
= {
333 .mesa
= PIPE_NEW_POLYGON_STIPPLE
,
337 .emit
= upload_polygon_stipple
341 /***********************************************************************
342 * Line stipple packet
345 static int upload_line_stipple(struct brw_context
*brw
)
347 const struct brw_line_stipple
*bls
= &brw
->curr
.rast
->bls
;
348 if (bls
->header
.opcode
) {
349 BRW_CACHED_BATCH_STRUCT(brw
, bls
);
354 const struct brw_tracked_state brw_line_stipple
= {
356 .mesa
= PIPE_NEW_RAST
,
360 .emit
= upload_line_stipple
364 /***********************************************************************
365 * Misc invarient state packets
368 static int upload_invarient_state( struct brw_context
*brw
)
371 /* 0x61040000 Pipeline Select */
372 /* PipelineSelect : 0 */
373 struct brw_pipeline_select ps
;
375 memset(&ps
, 0, sizeof(ps
));
376 if (BRW_IS_G4X(brw
) || BRW_IS_IGDNG(brw
))
377 ps
.header
.opcode
= CMD_PIPELINE_SELECT_GM45
;
379 ps
.header
.opcode
= CMD_PIPELINE_SELECT_965
;
380 ps
.header
.pipeline_select
= 0;
381 BRW_BATCH_STRUCT(brw
, &ps
);
385 struct brw_global_depth_offset_clamp gdo
;
386 memset(&gdo
, 0, sizeof(gdo
));
388 /* Disable depth offset clamping.
390 gdo
.header
.opcode
= CMD_GLOBAL_DEPTH_OFFSET_CLAMP
;
391 gdo
.header
.length
= sizeof(gdo
)/4 - 2;
392 gdo
.depth_offset_clamp
= 0.0;
394 BRW_BATCH_STRUCT(brw
, &gdo
);
398 /* 0x61020000 State Instruction Pointer */
400 struct brw_system_instruction_pointer sip
;
401 memset(&sip
, 0, sizeof(sip
));
403 sip
.header
.opcode
= CMD_STATE_INSN_POINTER
;
404 sip
.header
.length
= 0;
406 sip
.bits0
.system_instruction_pointer
= 0;
407 BRW_BATCH_STRUCT(brw
, &sip
);
412 struct brw_vf_statistics vfs
;
413 memset(&vfs
, 0, sizeof(vfs
));
415 if (BRW_IS_G4X(brw
) || BRW_IS_IGDNG(brw
))
416 vfs
.opcode
= CMD_VF_STATISTICS_GM45
;
418 vfs
.opcode
= CMD_VF_STATISTICS_965
;
420 if (BRW_DEBUG
& DEBUG_STATS
)
421 vfs
.statistics_enable
= 1;
423 BRW_BATCH_STRUCT(brw
, &vfs
);
426 if (!BRW_IS_965(brw
))
428 struct brw_aa_line_parameters balp
;
430 /* use legacy aa line coverage computation */
431 memset(&balp
, 0, sizeof(balp
));
432 balp
.header
.opcode
= CMD_AA_LINE_PARAMETERS
;
433 balp
.header
.length
= sizeof(balp
) / 4 - 2;
435 BRW_BATCH_STRUCT(brw
, &balp
);
439 struct brw_polygon_stipple_offset bpso
;
441 /* This is invarient state in gallium:
443 memset(&bpso
, 0, sizeof(bpso
));
444 bpso
.header
.opcode
= CMD_POLY_STIPPLE_OFFSET
;
445 bpso
.header
.length
= sizeof(bpso
)/4-2;
446 bpso
.bits0
.y_offset
= 0;
447 bpso
.bits0
.x_offset
= 0;
449 BRW_BATCH_STRUCT(brw
, &bpso
);
455 const struct brw_tracked_state brw_invarient_state
= {
458 .brw
= BRW_NEW_CONTEXT
,
461 .emit
= upload_invarient_state
465 /***********************************************************************
470 * Define the base addresses which some state is referenced from.
472 * This allows us to avoid having to emit relocations in many places for
473 * cached state, and instead emit pointers inside of large, mostly-static
474 * state pools. This comes at the expense of memory, and more expensive cache
477 static int upload_state_base_address( struct brw_context
*brw
)
479 /* Output the structure (brw_state_base_address) directly to the
480 * batchbuffer, so we can emit relocations inline.
482 if (BRW_IS_IGDNG(brw
)) {
483 BEGIN_BATCH(8, IGNORE_CLIPRECTS
);
484 OUT_BATCH(CMD_STATE_BASE_ADDRESS
<< 16 | (8 - 2));
485 OUT_BATCH(1); /* General state base address */
486 OUT_BATCH(1); /* Surface state base address */
487 OUT_BATCH(1); /* Indirect object base address */
488 OUT_BATCH(1); /* Instruction base address */
489 OUT_BATCH(1); /* General state upper bound */
490 OUT_BATCH(1); /* Indirect object upper bound */
491 OUT_BATCH(1); /* Instruction access upper bound */
494 BEGIN_BATCH(6, IGNORE_CLIPRECTS
);
495 OUT_BATCH(CMD_STATE_BASE_ADDRESS
<< 16 | (6 - 2));
496 OUT_BATCH(1); /* General state base address */
497 OUT_BATCH(1); /* Surface state base address */
498 OUT_BATCH(1); /* Indirect object base address */
499 OUT_BATCH(1); /* General state upper bound */
500 OUT_BATCH(1); /* Indirect object upper bound */
506 const struct brw_tracked_state brw_state_base_address
= {
509 .brw
= BRW_NEW_CONTEXT
,
512 .emit
= upload_state_base_address