Merge branch 'gallium-polygon-stipple'
[mesa.git] / src / mesa / drivers / dri / i915 / i830_vtbl.c
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "i830_context.h"
29 #include "i830_reg.h"
30 #include "intel_batchbuffer.h"
31 #include "intel_regions.h"
32 #include "intel_tris.h"
33 #include "intel_fbo.h"
34 #include "intel_buffers.h"
35 #include "tnl/tnl.h"
36 #include "tnl/t_context.h"
37 #include "tnl/t_vertex.h"
38 #include "swrast_setup/swrast_setup.h"
39 #include "main/renderbuffer.h"
40 #include "main/framebuffer.h"
41
42 #define FILE_DEBUG_FLAG DEBUG_STATE
43
44 static GLboolean i830_check_vertex_size(struct intel_context *intel,
45 GLuint expected);
46
47 #define SZ_TO_HW(sz) ((sz-2)&0x3)
48 #define EMIT_SZ(sz) (EMIT_1F + (sz) - 1)
49 #define EMIT_ATTR( ATTR, STYLE, V0 ) \
50 do { \
51 intel->vertex_attrs[intel->vertex_attr_count].attrib = (ATTR); \
52 intel->vertex_attrs[intel->vertex_attr_count].format = (STYLE); \
53 intel->vertex_attr_count++; \
54 v0 |= V0; \
55 } while (0)
56
57 #define EMIT_PAD( N ) \
58 do { \
59 intel->vertex_attrs[intel->vertex_attr_count].attrib = 0; \
60 intel->vertex_attrs[intel->vertex_attr_count].format = EMIT_PAD; \
61 intel->vertex_attrs[intel->vertex_attr_count].offset = (N); \
62 intel->vertex_attr_count++; \
63 } while (0)
64
65
66 #define VRTX_TEX_SET_FMT(n, x) ((x)<<((n)*2))
67 #define TEXBIND_SET(n, x) ((x)<<((n)*4))
68
69 static void
70 i830_render_prevalidate(struct intel_context *intel)
71 {
72 }
73
74 static void
75 i830_render_start(struct intel_context *intel)
76 {
77 struct gl_context *ctx = &intel->ctx;
78 struct i830_context *i830 = i830_context(ctx);
79 TNLcontext *tnl = TNL_CONTEXT(ctx);
80 struct vertex_buffer *VB = &tnl->vb;
81 DECLARE_RENDERINPUTS(index_bitset);
82 GLuint v0 = _3DSTATE_VFT0_CMD;
83 GLuint v2 = _3DSTATE_VFT1_CMD;
84 GLuint mcsb1 = 0;
85
86 RENDERINPUTS_COPY(index_bitset, tnl->render_inputs_bitset);
87
88 /* Important:
89 */
90 VB->AttribPtr[VERT_ATTRIB_POS] = VB->NdcPtr;
91 intel->vertex_attr_count = 0;
92
93 /* EMIT_ATTR's must be in order as they tell t_vertex.c how to
94 * build up a hardware vertex.
95 */
96 if (RENDERINPUTS_TEST_RANGE(index_bitset, _TNL_FIRST_TEX, _TNL_LAST_TEX)) {
97 EMIT_ATTR(_TNL_ATTRIB_POS, EMIT_4F_VIEWPORT, VFT0_XYZW);
98 intel->coloroffset = 4;
99 }
100 else {
101 EMIT_ATTR(_TNL_ATTRIB_POS, EMIT_3F_VIEWPORT, VFT0_XYZ);
102 intel->coloroffset = 3;
103 }
104
105 if (RENDERINPUTS_TEST(index_bitset, _TNL_ATTRIB_POINTSIZE)) {
106 EMIT_ATTR(_TNL_ATTRIB_POINTSIZE, EMIT_1F, VFT0_POINT_WIDTH);
107 }
108
109 EMIT_ATTR(_TNL_ATTRIB_COLOR0, EMIT_4UB_4F_BGRA, VFT0_DIFFUSE);
110
111 intel->specoffset = 0;
112 if (RENDERINPUTS_TEST(index_bitset, _TNL_ATTRIB_COLOR1) ||
113 RENDERINPUTS_TEST(index_bitset, _TNL_ATTRIB_FOG)) {
114 if (RENDERINPUTS_TEST(index_bitset, _TNL_ATTRIB_COLOR1)) {
115 intel->specoffset = intel->coloroffset + 1;
116 EMIT_ATTR(_TNL_ATTRIB_COLOR1, EMIT_3UB_3F_BGR, VFT0_SPEC);
117 }
118 else
119 EMIT_PAD(3);
120
121 if (RENDERINPUTS_TEST(index_bitset, _TNL_ATTRIB_FOG))
122 EMIT_ATTR(_TNL_ATTRIB_FOG, EMIT_1UB_1F, VFT0_SPEC);
123 else
124 EMIT_PAD(1);
125 }
126
127 if (RENDERINPUTS_TEST_RANGE(index_bitset, _TNL_FIRST_TEX, _TNL_LAST_TEX)) {
128 int i, count = 0;
129
130 for (i = 0; i < I830_TEX_UNITS; i++) {
131 if (RENDERINPUTS_TEST(index_bitset, _TNL_ATTRIB_TEX(i))) {
132 GLuint sz = VB->AttribPtr[_TNL_ATTRIB_TEX0 + i]->size;
133 GLuint emit;
134 GLuint mcs = (i830->state.Tex[i][I830_TEXREG_MCS] &
135 ~TEXCOORDTYPE_MASK);
136
137 switch (sz) {
138 case 1:
139 case 2:
140 emit = EMIT_2F;
141 sz = 2;
142 mcs |= TEXCOORDTYPE_CARTESIAN;
143 break;
144 case 3:
145 emit = EMIT_3F;
146 sz = 3;
147 mcs |= TEXCOORDTYPE_VECTOR;
148 break;
149 case 4:
150 emit = EMIT_3F_XYW;
151 sz = 3;
152 mcs |= TEXCOORDTYPE_HOMOGENEOUS;
153 break;
154 default:
155 continue;
156 };
157
158
159 EMIT_ATTR(_TNL_ATTRIB_TEX0 + i, emit, 0);
160 v2 |= VRTX_TEX_SET_FMT(count, SZ_TO_HW(sz));
161 mcsb1 |= (count + 8) << (i * 4);
162
163 if (mcs != i830->state.Tex[i][I830_TEXREG_MCS]) {
164 I830_STATECHANGE(i830, I830_UPLOAD_TEX(i));
165 i830->state.Tex[i][I830_TEXREG_MCS] = mcs;
166 }
167
168 count++;
169 }
170 }
171
172 v0 |= VFT0_TEX_COUNT(count);
173 }
174
175 /* Only need to change the vertex emit code if there has been a
176 * statechange to a new hardware vertex format:
177 */
178 if (v0 != i830->state.Ctx[I830_CTXREG_VF] ||
179 v2 != i830->state.Ctx[I830_CTXREG_VF2] ||
180 mcsb1 != i830->state.Ctx[I830_CTXREG_MCSB1] ||
181 !RENDERINPUTS_EQUAL(index_bitset, i830->last_index_bitset)) {
182 int k;
183
184 I830_STATECHANGE(i830, I830_UPLOAD_CTX);
185
186 /* Must do this *after* statechange, so as not to affect
187 * buffered vertices reliant on the old state:
188 */
189 intel->vertex_size =
190 _tnl_install_attrs(ctx,
191 intel->vertex_attrs,
192 intel->vertex_attr_count,
193 intel->ViewportMatrix.m, 0);
194
195 intel->vertex_size >>= 2;
196
197 i830->state.Ctx[I830_CTXREG_VF] = v0;
198 i830->state.Ctx[I830_CTXREG_VF2] = v2;
199 i830->state.Ctx[I830_CTXREG_MCSB1] = mcsb1;
200 RENDERINPUTS_COPY(i830->last_index_bitset, index_bitset);
201
202 k = i830_check_vertex_size(intel, intel->vertex_size);
203 assert(k);
204 }
205 }
206
207 static void
208 i830_reduced_primitive_state(struct intel_context *intel, GLenum rprim)
209 {
210 struct i830_context *i830 = i830_context(&intel->ctx);
211 GLuint st1 = i830->state.Stipple[I830_STPREG_ST1];
212
213 st1 &= ~ST1_ENABLE;
214
215 switch (rprim) {
216 case GL_TRIANGLES:
217 if (intel->ctx.Polygon.StippleFlag && intel->hw_stipple)
218 st1 |= ST1_ENABLE;
219 break;
220 case GL_LINES:
221 case GL_POINTS:
222 default:
223 break;
224 }
225
226 i830->intel.reduced_primitive = rprim;
227
228 if (st1 != i830->state.Stipple[I830_STPREG_ST1]) {
229 INTEL_FIREVERTICES(intel);
230
231 I830_STATECHANGE(i830, I830_UPLOAD_STIPPLE);
232 i830->state.Stipple[I830_STPREG_ST1] = st1;
233 }
234 }
235
236 /* Pull apart the vertex format registers and figure out how large a
237 * vertex is supposed to be.
238 */
239 static GLboolean
240 i830_check_vertex_size(struct intel_context *intel, GLuint expected)
241 {
242 struct i830_context *i830 = i830_context(&intel->ctx);
243 int vft0 = i830->state.Ctx[I830_CTXREG_VF];
244 int vft1 = i830->state.Ctx[I830_CTXREG_VF2];
245 int nrtex = (vft0 & VFT0_TEX_COUNT_MASK) >> VFT0_TEX_COUNT_SHIFT;
246 int i, sz = 0;
247
248 switch (vft0 & VFT0_XYZW_MASK) {
249 case VFT0_XY:
250 sz = 2;
251 break;
252 case VFT0_XYZ:
253 sz = 3;
254 break;
255 case VFT0_XYW:
256 sz = 3;
257 break;
258 case VFT0_XYZW:
259 sz = 4;
260 break;
261 default:
262 fprintf(stderr, "no xyzw specified\n");
263 return 0;
264 }
265
266 if (vft0 & VFT0_SPEC)
267 sz++;
268 if (vft0 & VFT0_DIFFUSE)
269 sz++;
270 if (vft0 & VFT0_DEPTH_OFFSET)
271 sz++;
272 if (vft0 & VFT0_POINT_WIDTH)
273 sz++;
274
275 for (i = 0; i < nrtex; i++) {
276 switch (vft1 & VFT1_TEX0_MASK) {
277 case TEXCOORDFMT_2D:
278 sz += 2;
279 break;
280 case TEXCOORDFMT_3D:
281 sz += 3;
282 break;
283 case TEXCOORDFMT_4D:
284 sz += 4;
285 break;
286 case TEXCOORDFMT_1D:
287 sz += 1;
288 break;
289 }
290 vft1 >>= VFT1_TEX1_SHIFT;
291 }
292
293 if (sz != expected)
294 fprintf(stderr, "vertex size mismatch %d/%d\n", sz, expected);
295
296 return sz == expected;
297 }
298
299 static void
300 i830_emit_invarient_state(struct intel_context *intel)
301 {
302 BATCH_LOCALS;
303
304 BEGIN_BATCH(29);
305
306 OUT_BATCH(_3DSTATE_DFLT_DIFFUSE_CMD);
307 OUT_BATCH(0);
308
309 OUT_BATCH(_3DSTATE_DFLT_SPEC_CMD);
310 OUT_BATCH(0);
311
312 OUT_BATCH(_3DSTATE_DFLT_Z_CMD);
313 OUT_BATCH(0);
314
315 OUT_BATCH(_3DSTATE_FOG_MODE_CMD);
316 OUT_BATCH(FOGFUNC_ENABLE |
317 FOG_LINEAR_CONST | FOGSRC_INDEX_Z | ENABLE_FOG_DENSITY);
318 OUT_BATCH(0);
319 OUT_BATCH(0);
320
321
322 OUT_BATCH(_3DSTATE_MAP_TEX_STREAM_CMD |
323 MAP_UNIT(0) |
324 DISABLE_TEX_STREAM_BUMP |
325 ENABLE_TEX_STREAM_COORD_SET |
326 TEX_STREAM_COORD_SET(0) |
327 ENABLE_TEX_STREAM_MAP_IDX | TEX_STREAM_MAP_IDX(0));
328 OUT_BATCH(_3DSTATE_MAP_TEX_STREAM_CMD |
329 MAP_UNIT(1) |
330 DISABLE_TEX_STREAM_BUMP |
331 ENABLE_TEX_STREAM_COORD_SET |
332 TEX_STREAM_COORD_SET(1) |
333 ENABLE_TEX_STREAM_MAP_IDX | TEX_STREAM_MAP_IDX(1));
334 OUT_BATCH(_3DSTATE_MAP_TEX_STREAM_CMD |
335 MAP_UNIT(2) |
336 DISABLE_TEX_STREAM_BUMP |
337 ENABLE_TEX_STREAM_COORD_SET |
338 TEX_STREAM_COORD_SET(2) |
339 ENABLE_TEX_STREAM_MAP_IDX | TEX_STREAM_MAP_IDX(2));
340 OUT_BATCH(_3DSTATE_MAP_TEX_STREAM_CMD |
341 MAP_UNIT(3) |
342 DISABLE_TEX_STREAM_BUMP |
343 ENABLE_TEX_STREAM_COORD_SET |
344 TEX_STREAM_COORD_SET(3) |
345 ENABLE_TEX_STREAM_MAP_IDX | TEX_STREAM_MAP_IDX(3));
346
347 OUT_BATCH(_3DSTATE_MAP_COORD_TRANSFORM);
348 OUT_BATCH(DISABLE_TEX_TRANSFORM | TEXTURE_SET(0));
349 OUT_BATCH(_3DSTATE_MAP_COORD_TRANSFORM);
350 OUT_BATCH(DISABLE_TEX_TRANSFORM | TEXTURE_SET(1));
351 OUT_BATCH(_3DSTATE_MAP_COORD_TRANSFORM);
352 OUT_BATCH(DISABLE_TEX_TRANSFORM | TEXTURE_SET(2));
353 OUT_BATCH(_3DSTATE_MAP_COORD_TRANSFORM);
354 OUT_BATCH(DISABLE_TEX_TRANSFORM | TEXTURE_SET(3));
355
356 OUT_BATCH(_3DSTATE_VERTEX_TRANSFORM);
357 OUT_BATCH(DISABLE_VIEWPORT_TRANSFORM | DISABLE_PERSPECTIVE_DIVIDE);
358
359 OUT_BATCH(_3DSTATE_W_STATE_CMD);
360 OUT_BATCH(MAGIC_W_STATE_DWORD1);
361 OUT_BATCH(0x3f800000 /* 1.0 in IEEE float */ );
362
363
364 OUT_BATCH(_3DSTATE_COLOR_FACTOR_CMD);
365 OUT_BATCH(0x80808080); /* .5 required in alpha for GL_DOT3_RGBA_EXT */
366
367 ADVANCE_BATCH();
368 }
369
370
371 #define emit( intel, state, size ) \
372 intel_batchbuffer_data(intel, state, size, false)
373
374 static GLuint
375 get_dirty(struct i830_hw_state *state)
376 {
377 return state->active & ~state->emitted;
378 }
379
380 static GLuint
381 get_state_size(struct i830_hw_state *state)
382 {
383 GLuint dirty = get_dirty(state);
384 GLuint sz = 0;
385 GLuint i;
386
387 if (dirty & I830_UPLOAD_INVARIENT)
388 sz += 40 * sizeof(int);
389
390 if (dirty & I830_UPLOAD_RASTER_RULES)
391 sz += sizeof(state->RasterRules);
392
393 if (dirty & I830_UPLOAD_CTX)
394 sz += sizeof(state->Ctx);
395
396 if (dirty & I830_UPLOAD_BUFFERS)
397 sz += sizeof(state->Buffer);
398
399 if (dirty & I830_UPLOAD_STIPPLE)
400 sz += sizeof(state->Stipple);
401
402 for (i = 0; i < I830_TEX_UNITS; i++) {
403 if ((dirty & I830_UPLOAD_TEX(i)))
404 sz += sizeof(state->Tex[i]);
405
406 if (dirty & I830_UPLOAD_TEXBLEND(i))
407 sz += state->TexBlendWordsUsed[i] * 4;
408 }
409
410 return sz;
411 }
412
413
414 /* Push the state into the sarea and/or texture memory.
415 */
416 static void
417 i830_emit_state(struct intel_context *intel)
418 {
419 struct i830_context *i830 = i830_context(&intel->ctx);
420 struct i830_hw_state *state = &i830->state;
421 int i, count;
422 GLuint dirty;
423 drm_intel_bo *aper_array[3 + I830_TEX_UNITS];
424 int aper_count;
425 GET_CURRENT_CONTEXT(ctx);
426 BATCH_LOCALS;
427
428 /* We don't hold the lock at this point, so want to make sure that
429 * there won't be a buffer wrap between the state emits and the primitive
430 * emit header.
431 *
432 * It might be better to talk about explicit places where
433 * scheduling is allowed, rather than assume that it is whenever a
434 * batchbuffer fills up.
435 */
436 intel_batchbuffer_require_space(intel,
437 get_state_size(state) + INTEL_PRIM_EMIT_SIZE,
438 false);
439 count = 0;
440 again:
441 aper_count = 0;
442 dirty = get_dirty(state);
443
444 aper_array[aper_count++] = intel->batch.bo;
445 if (dirty & I830_UPLOAD_BUFFERS) {
446 aper_array[aper_count++] = state->draw_region->buffer;
447 if (state->depth_region)
448 aper_array[aper_count++] = state->depth_region->buffer;
449 }
450
451 for (i = 0; i < I830_TEX_UNITS; i++)
452 if (dirty & I830_UPLOAD_TEX(i)) {
453 if (state->tex_buffer[i]) {
454 aper_array[aper_count++] = state->tex_buffer[i];
455 }
456 }
457
458 if (dri_bufmgr_check_aperture_space(aper_array, aper_count)) {
459 if (count == 0) {
460 count++;
461 intel_batchbuffer_flush(intel);
462 goto again;
463 } else {
464 _mesa_error(ctx, GL_OUT_OF_MEMORY, "i830 emit state");
465 assert(0);
466 }
467 }
468
469
470 /* Do this here as we may have flushed the batchbuffer above,
471 * causing more state to be dirty!
472 */
473 dirty = get_dirty(state);
474 state->emitted |= dirty;
475 assert(get_dirty(state) == 0);
476
477 if (dirty & I830_UPLOAD_INVARIENT) {
478 DBG("I830_UPLOAD_INVARIENT:\n");
479 i830_emit_invarient_state(intel);
480 }
481
482 if (dirty & I830_UPLOAD_RASTER_RULES) {
483 DBG("I830_UPLOAD_RASTER_RULES:\n");
484 emit(intel, state->RasterRules, sizeof(state->RasterRules));
485 }
486
487 if (dirty & I830_UPLOAD_CTX) {
488 DBG("I830_UPLOAD_CTX:\n");
489 emit(intel, state->Ctx, sizeof(state->Ctx));
490
491 }
492
493 if (dirty & I830_UPLOAD_BUFFERS) {
494 GLuint count = 15;
495
496 DBG("I830_UPLOAD_BUFFERS:\n");
497
498 if (state->depth_region)
499 count += 3;
500
501 BEGIN_BATCH(count);
502 OUT_BATCH(state->Buffer[I830_DESTREG_CBUFADDR0]);
503 OUT_BATCH(state->Buffer[I830_DESTREG_CBUFADDR1]);
504 OUT_RELOC(state->draw_region->buffer,
505 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
506
507 if (state->depth_region) {
508 OUT_BATCH(state->Buffer[I830_DESTREG_DBUFADDR0]);
509 OUT_BATCH(state->Buffer[I830_DESTREG_DBUFADDR1]);
510 OUT_RELOC(state->depth_region->buffer,
511 I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, 0);
512 }
513
514 OUT_BATCH(state->Buffer[I830_DESTREG_DV0]);
515 OUT_BATCH(state->Buffer[I830_DESTREG_DV1]);
516 OUT_BATCH(state->Buffer[I830_DESTREG_SENABLE]);
517 OUT_BATCH(state->Buffer[I830_DESTREG_SR0]);
518 OUT_BATCH(state->Buffer[I830_DESTREG_SR1]);
519 OUT_BATCH(state->Buffer[I830_DESTREG_SR2]);
520
521 assert(state->Buffer[I830_DESTREG_DRAWRECT0] != MI_NOOP);
522 OUT_BATCH(state->Buffer[I830_DESTREG_DRAWRECT0]);
523 OUT_BATCH(state->Buffer[I830_DESTREG_DRAWRECT1]);
524 OUT_BATCH(state->Buffer[I830_DESTREG_DRAWRECT2]);
525 OUT_BATCH(state->Buffer[I830_DESTREG_DRAWRECT3]);
526 OUT_BATCH(state->Buffer[I830_DESTREG_DRAWRECT4]);
527 OUT_BATCH(state->Buffer[I830_DESTREG_DRAWRECT5]);
528 ADVANCE_BATCH();
529 }
530
531 if (dirty & I830_UPLOAD_STIPPLE) {
532 DBG("I830_UPLOAD_STIPPLE:\n");
533 emit(intel, state->Stipple, sizeof(state->Stipple));
534 }
535
536 for (i = 0; i < I830_TEX_UNITS; i++) {
537 if ((dirty & I830_UPLOAD_TEX(i))) {
538 DBG("I830_UPLOAD_TEX(%d):\n", i);
539
540 BEGIN_BATCH(I830_TEX_SETUP_SIZE + 1);
541 OUT_BATCH(state->Tex[i][I830_TEXREG_TM0LI]);
542
543 OUT_RELOC(state->tex_buffer[i],
544 I915_GEM_DOMAIN_SAMPLER, 0,
545 state->tex_offset[i]);
546
547 OUT_BATCH(state->Tex[i][I830_TEXREG_TM0S1]);
548 OUT_BATCH(state->Tex[i][I830_TEXREG_TM0S2]);
549 OUT_BATCH(state->Tex[i][I830_TEXREG_TM0S3]);
550 OUT_BATCH(state->Tex[i][I830_TEXREG_TM0S4]);
551 OUT_BATCH(state->Tex[i][I830_TEXREG_MCS]);
552 OUT_BATCH(state->Tex[i][I830_TEXREG_CUBE]);
553
554 ADVANCE_BATCH();
555 }
556
557 if (dirty & I830_UPLOAD_TEXBLEND(i)) {
558 DBG("I830_UPLOAD_TEXBLEND(%d): %d words\n", i,
559 state->TexBlendWordsUsed[i]);
560 emit(intel, state->TexBlend[i], state->TexBlendWordsUsed[i] * 4);
561 }
562 }
563
564 assert(get_dirty(state) == 0);
565 }
566
567 static void
568 i830_destroy_context(struct intel_context *intel)
569 {
570 GLuint i;
571 struct i830_context *i830 = i830_context(&intel->ctx);
572
573 intel_region_release(&i830->state.draw_region);
574 intel_region_release(&i830->state.depth_region);
575
576 for (i = 0; i < I830_TEX_UNITS; i++) {
577 if (i830->state.tex_buffer[i] != NULL) {
578 drm_intel_bo_unreference(i830->state.tex_buffer[i]);
579 i830->state.tex_buffer[i] = NULL;
580 }
581 }
582
583 _tnl_free_vertices(&intel->ctx);
584 }
585
586 static uint32_t i830_render_target_format_for_mesa_format[MESA_FORMAT_COUNT] =
587 {
588 [MESA_FORMAT_ARGB8888] = DV_PF_8888,
589 [MESA_FORMAT_XRGB8888] = DV_PF_8888,
590 [MESA_FORMAT_RGB565] = DV_PF_565,
591 [MESA_FORMAT_ARGB1555] = DV_PF_1555,
592 [MESA_FORMAT_ARGB4444] = DV_PF_4444,
593 };
594
595 static bool
596 i830_render_target_supported(gl_format format)
597 {
598 if (format == MESA_FORMAT_S8_Z24 ||
599 format == MESA_FORMAT_X8_Z24 ||
600 format == MESA_FORMAT_Z16) {
601 return true;
602 }
603
604 return i830_render_target_format_for_mesa_format[format] != 0;
605 }
606
607 static void
608 i830_set_draw_region(struct intel_context *intel,
609 struct intel_region *color_regions[],
610 struct intel_region *depth_region,
611 GLuint num_regions)
612 {
613 struct i830_context *i830 = i830_context(&intel->ctx);
614 struct gl_context *ctx = &intel->ctx;
615 struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[0];
616 struct intel_renderbuffer *irb = intel_renderbuffer(rb);
617 struct gl_renderbuffer *drb;
618 struct intel_renderbuffer *idrb = NULL;
619 GLuint value;
620 struct i830_hw_state *state = &i830->state;
621 uint32_t draw_x, draw_y;
622
623 if (state->draw_region != color_regions[0]) {
624 intel_region_reference(&state->draw_region, color_regions[0]);
625 }
626 if (state->depth_region != depth_region) {
627 intel_region_reference(&state->depth_region, depth_region);
628 }
629
630 /*
631 * Set stride/cpp values
632 */
633 i915_set_buf_info_for_region(&state->Buffer[I830_DESTREG_CBUFADDR0],
634 color_regions[0], BUF_3D_ID_COLOR_BACK);
635
636 i915_set_buf_info_for_region(&state->Buffer[I830_DESTREG_DBUFADDR0],
637 depth_region, BUF_3D_ID_DEPTH);
638
639 /*
640 * Compute/set I830_DESTREG_DV1 value
641 */
642 value = (DSTORG_HORT_BIAS(0x8) | /* .5 */
643 DSTORG_VERT_BIAS(0x8) | DEPTH_IS_Z); /* .5 */
644
645 if (irb != NULL) {
646 value |= i830_render_target_format_for_mesa_format[irb->Base.Format];
647 }
648
649 if (depth_region && depth_region->cpp == 4) {
650 value |= DEPTH_FRMT_24_FIXED_8_OTHER;
651 }
652 else {
653 value |= DEPTH_FRMT_16_FIXED;
654 }
655 state->Buffer[I830_DESTREG_DV1] = value;
656
657 drb = ctx->DrawBuffer->Attachment[BUFFER_DEPTH].Renderbuffer;
658 if (!drb)
659 drb = ctx->DrawBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;
660
661 if (drb)
662 idrb = intel_renderbuffer(drb);
663
664 /* We set up the drawing rectangle to be offset into the color
665 * region's location in the miptree. If it doesn't match with
666 * depth's offsets, we can't render to it.
667 *
668 * (Well, not actually true -- the hw grew a bit to let depth's
669 * offset get forced to 0,0. We may want to use that if people are
670 * hitting that case. Also, some configurations may be supportable
671 * by tweaking the start offset of the buffers around, which we
672 * can't do in general due to tiling)
673 */
674 FALLBACK(intel, I830_FALLBACK_DRAW_OFFSET,
675 idrb && irb && (idrb->draw_x != irb->draw_x ||
676 idrb->draw_y != irb->draw_y));
677
678 if (irb) {
679 draw_x = irb->draw_x;
680 draw_y = irb->draw_y;
681 } else if (idrb) {
682 draw_x = idrb->draw_x;
683 draw_y = idrb->draw_y;
684 } else {
685 draw_x = 0;
686 draw_y = 0;
687 }
688
689 state->Buffer[I830_DESTREG_DRAWRECT0] = _3DSTATE_DRAWRECT_INFO;
690 state->Buffer[I830_DESTREG_DRAWRECT1] = 0;
691 state->Buffer[I830_DESTREG_DRAWRECT2] = (draw_y << 16) | draw_x;
692 state->Buffer[I830_DESTREG_DRAWRECT3] =
693 ((ctx->DrawBuffer->Width + draw_x) & 0xffff) |
694 ((ctx->DrawBuffer->Height + draw_y) << 16);
695 state->Buffer[I830_DESTREG_DRAWRECT4] = (draw_y << 16) | draw_x;
696 state->Buffer[I830_DESTREG_DRAWRECT5] = MI_NOOP;
697
698 I830_STATECHANGE(i830, I830_UPLOAD_BUFFERS);
699 }
700
701 /**
702 * Update the hardware state for drawing into a window or framebuffer object.
703 *
704 * Called by glDrawBuffer, glBindFramebufferEXT, MakeCurrent, and other
705 * places within the driver.
706 *
707 * Basically, this needs to be called any time the current framebuffer
708 * changes, the renderbuffers change, or we need to draw into different
709 * color buffers.
710 */
711 static void
712 i830_update_draw_buffer(struct intel_context *intel)
713 {
714 struct gl_context *ctx = &intel->ctx;
715 struct gl_framebuffer *fb = ctx->DrawBuffer;
716 struct intel_region *colorRegions[MAX_DRAW_BUFFERS], *depthRegion = NULL;
717 struct intel_renderbuffer *irbDepth = NULL, *irbStencil = NULL;
718 bool fb_has_hiz = intel_framebuffer_has_hiz(fb);
719
720 if (!fb) {
721 /* this can happen during the initial context initialization */
722 return;
723 }
724
725 irbDepth = intel_get_renderbuffer(fb, BUFFER_DEPTH);
726 irbStencil = intel_get_renderbuffer(fb, BUFFER_STENCIL);
727
728 /* Do this here, not core Mesa, since this function is called from
729 * many places within the driver.
730 */
731 if (ctx->NewState & _NEW_BUFFERS) {
732 /* this updates the DrawBuffer->_NumColorDrawBuffers fields, etc */
733 _mesa_update_framebuffer(ctx);
734 /* this updates the DrawBuffer's Width/Height if it's a FBO */
735 _mesa_update_draw_buffer_bounds(ctx);
736 }
737
738 if (fb->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
739 /* this may occur when we're called by glBindFrameBuffer() during
740 * the process of someone setting up renderbuffers, etc.
741 */
742 /*_mesa_debug(ctx, "DrawBuffer: incomplete user FBO\n");*/
743 return;
744 }
745
746 /* How many color buffers are we drawing into?
747 *
748 * If there are zero buffers or the buffer is too big, don't configure any
749 * regions for hardware drawing. We'll fallback to software below. Not
750 * having regions set makes some of the software fallback paths faster.
751 */
752 if ((fb->Width > ctx->Const.MaxRenderbufferSize)
753 || (fb->Height > ctx->Const.MaxRenderbufferSize)
754 || (fb->_NumColorDrawBuffers == 0)) {
755 /* writing to 0 */
756 colorRegions[0] = NULL;
757 }
758 else if (fb->_NumColorDrawBuffers > 1) {
759 int i;
760 struct intel_renderbuffer *irb;
761
762 for (i = 0; i < fb->_NumColorDrawBuffers; i++) {
763 irb = intel_renderbuffer(fb->_ColorDrawBuffers[i]);
764 colorRegions[i] = irb ? irb->region : NULL;
765 }
766 }
767 else {
768 /* Get the intel_renderbuffer for the single colorbuffer we're drawing
769 * into.
770 */
771 if (fb->Name == 0) {
772 /* drawing to window system buffer */
773 if (fb->_ColorDrawBufferIndexes[0] == BUFFER_FRONT_LEFT)
774 colorRegions[0] = intel_get_rb_region(fb, BUFFER_FRONT_LEFT);
775 else
776 colorRegions[0] = intel_get_rb_region(fb, BUFFER_BACK_LEFT);
777 }
778 else {
779 /* drawing to user-created FBO */
780 struct intel_renderbuffer *irb;
781 irb = intel_renderbuffer(fb->_ColorDrawBuffers[0]);
782 colorRegions[0] = (irb && irb->region) ? irb->region : NULL;
783 }
784 }
785
786 if (!colorRegions[0]) {
787 FALLBACK(intel, INTEL_FALLBACK_DRAW_BUFFER, GL_TRUE);
788 }
789 else {
790 FALLBACK(intel, INTEL_FALLBACK_DRAW_BUFFER, GL_FALSE);
791 }
792
793 /* Check for depth fallback. */
794 if (irbDepth && irbDepth->region) {
795 assert(!fb_has_hiz || irbDepth->Base.Format != MESA_FORMAT_S8_Z24);
796 FALLBACK(intel, INTEL_FALLBACK_DEPTH_BUFFER, GL_FALSE);
797 depthRegion = irbDepth->region;
798 } else if (irbDepth && !irbDepth->region) {
799 FALLBACK(intel, INTEL_FALLBACK_DEPTH_BUFFER, GL_TRUE);
800 depthRegion = NULL;
801 } else { /* !irbDepth */
802 /* No fallback is needed because there is no depth buffer. */
803 FALLBACK(intel, INTEL_FALLBACK_DEPTH_BUFFER, GL_FALSE);
804 depthRegion = NULL;
805 }
806
807 /* Check for stencil fallback. */
808 if (irbStencil && irbStencil->region) {
809 assert(irbStencil->Base.Format == MESA_FORMAT_S8_Z24);
810 FALLBACK(intel, INTEL_FALLBACK_STENCIL_BUFFER, GL_FALSE);
811 } else if (irbStencil && !irbStencil->region) {
812 FALLBACK(intel, INTEL_FALLBACK_STENCIL_BUFFER, GL_TRUE);
813 } else { /* !irbStencil */
814 /* No fallback is needed because there is no stencil buffer. */
815 FALLBACK(intel, INTEL_FALLBACK_STENCIL_BUFFER, GL_FALSE);
816 }
817
818 /* If we have a (packed) stencil buffer attached but no depth buffer,
819 * we still need to set up the shared depth/stencil state so we can use it.
820 */
821 if (depthRegion == NULL && irbStencil && irbStencil->region
822 && irbStencil->Base.Format == MESA_FORMAT_S8_Z24) {
823 depthRegion = irbStencil->region;
824 }
825
826 /*
827 * Update depth and stencil test state
828 */
829 ctx->Driver.Enable(ctx, GL_DEPTH_TEST,
830 (ctx->Depth.Test && fb->Visual.depthBits > 0));
831 ctx->Driver.Enable(ctx, GL_STENCIL_TEST,
832 (ctx->Stencil.Enabled && fb->Visual.stencilBits > 0));
833
834 intel->vtbl.set_draw_region(intel, colorRegions, depthRegion,
835 fb->_NumColorDrawBuffers);
836 intel->NewGLState |= _NEW_BUFFERS;
837
838 /* update viewport since it depends on window size */
839 intelCalcViewport(ctx);
840
841 /* Set state we know depends on drawable parameters:
842 */
843 ctx->Driver.Scissor(ctx, ctx->Scissor.X, ctx->Scissor.Y,
844 ctx->Scissor.Width, ctx->Scissor.Height);
845
846 ctx->Driver.DepthRange(ctx, ctx->Viewport.Near, ctx->Viewport.Far);
847
848 /* Update culling direction which changes depending on the
849 * orientation of the buffer:
850 */
851 ctx->Driver.FrontFace(ctx, ctx->Polygon.FrontFace);
852 }
853
854 /* This isn't really handled at the moment.
855 */
856 static void
857 i830_new_batch(struct intel_context *intel)
858 {
859 struct i830_context *i830 = i830_context(&intel->ctx);
860 i830->state.emitted = 0;
861 }
862
863 static void
864 i830_assert_not_dirty( struct intel_context *intel )
865 {
866 struct i830_context *i830 = i830_context(&intel->ctx);
867 assert(!get_dirty(&i830->state));
868 (void) i830;
869 }
870
871 static void
872 i830_invalidate_state(struct intel_context *intel, GLuint new_state)
873 {
874 struct gl_context *ctx = &intel->ctx;
875
876 _swsetup_InvalidateState(ctx, new_state);
877 _tnl_InvalidateState(ctx, new_state);
878 _tnl_invalidate_vertex_state(ctx, new_state);
879
880 if (new_state & _NEW_LIGHT)
881 i830_update_provoking_vertex(&intel->ctx);
882 }
883
884 void
885 i830InitVtbl(struct i830_context *i830)
886 {
887 i830->intel.vtbl.check_vertex_size = i830_check_vertex_size;
888 i830->intel.vtbl.destroy = i830_destroy_context;
889 i830->intel.vtbl.emit_state = i830_emit_state;
890 i830->intel.vtbl.new_batch = i830_new_batch;
891 i830->intel.vtbl.reduced_primitive_state = i830_reduced_primitive_state;
892 i830->intel.vtbl.set_draw_region = i830_set_draw_region;
893 i830->intel.vtbl.update_draw_buffer = i830_update_draw_buffer;
894 i830->intel.vtbl.update_texture_state = i830UpdateTextureState;
895 i830->intel.vtbl.render_start = i830_render_start;
896 i830->intel.vtbl.render_prevalidate = i830_render_prevalidate;
897 i830->intel.vtbl.assert_not_dirty = i830_assert_not_dirty;
898 i830->intel.vtbl.finish_batch = intel_finish_vb;
899 i830->intel.vtbl.invalidate_state = i830_invalidate_state;
900 i830->intel.vtbl.render_target_supported = i830_render_target_supported;
901 }