Merge branch 'mesa_7_7_branch'
[mesa.git] / src / mesa / drivers / dri / intel / intel_context.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
29 #include "main/glheader.h"
30 #include "main/context.h"
31 #include "main/arrayobj.h"
32 #include "main/extensions.h"
33 #include "main/framebuffer.h"
34 #include "main/imports.h"
35 #include "main/points.h"
36
37 #include "swrast/swrast.h"
38 #include "swrast_setup/swrast_setup.h"
39 #include "tnl/tnl.h"
40 #include "drivers/common/driverfuncs.h"
41 #include "drivers/common/meta.h"
42
43 #include "i830_dri.h"
44
45 #include "intel_chipset.h"
46 #include "intel_buffers.h"
47 #include "intel_tex.h"
48 #include "intel_batchbuffer.h"
49 #include "intel_clear.h"
50 #include "intel_extensions.h"
51 #include "intel_pixel.h"
52 #include "intel_regions.h"
53 #include "intel_buffer_objects.h"
54 #include "intel_fbo.h"
55 #include "intel_decode.h"
56 #include "intel_bufmgr.h"
57 #include "intel_screen.h"
58 #include "intel_swapbuffers.h"
59
60 #include "drirenderbuffer.h"
61 #include "vblank.h"
62 #include "utils.h"
63 #include "xmlpool.h" /* for symbolic values of enum-type options */
64
65
66 #ifndef INTEL_DEBUG
67 int INTEL_DEBUG = (0);
68 #endif
69
70
71 #define DRIVER_DATE "20091221 DEVELOPMENT"
72 #define DRIVER_DATE_GEM "GEM " DRIVER_DATE
73
74
75 static void intel_flush(GLcontext *ctx, GLboolean needs_mi_flush);
76
77 static const GLubyte *
78 intelGetString(GLcontext * ctx, GLenum name)
79 {
80 const struct intel_context *const intel = intel_context(ctx);
81 const char *chipset;
82 static char buffer[128];
83
84 switch (name) {
85 case GL_VENDOR:
86 return (GLubyte *) "Tungsten Graphics, Inc";
87 break;
88
89 case GL_RENDERER:
90 switch (intel->intelScreen->deviceID) {
91 case PCI_CHIP_845_G:
92 chipset = "Intel(R) 845G";
93 break;
94 case PCI_CHIP_I830_M:
95 chipset = "Intel(R) 830M";
96 break;
97 case PCI_CHIP_I855_GM:
98 chipset = "Intel(R) 852GM/855GM";
99 break;
100 case PCI_CHIP_I865_G:
101 chipset = "Intel(R) 865G";
102 break;
103 case PCI_CHIP_I915_G:
104 chipset = "Intel(R) 915G";
105 break;
106 case PCI_CHIP_E7221_G:
107 chipset = "Intel (R) E7221G (i915)";
108 break;
109 case PCI_CHIP_I915_GM:
110 chipset = "Intel(R) 915GM";
111 break;
112 case PCI_CHIP_I945_G:
113 chipset = "Intel(R) 945G";
114 break;
115 case PCI_CHIP_I945_GM:
116 chipset = "Intel(R) 945GM";
117 break;
118 case PCI_CHIP_I945_GME:
119 chipset = "Intel(R) 945GME";
120 break;
121 case PCI_CHIP_G33_G:
122 chipset = "Intel(R) G33";
123 break;
124 case PCI_CHIP_Q35_G:
125 chipset = "Intel(R) Q35";
126 break;
127 case PCI_CHIP_Q33_G:
128 chipset = "Intel(R) Q33";
129 break;
130 case PCI_CHIP_IGD_GM:
131 case PCI_CHIP_IGD_G:
132 chipset = "Intel(R) IGD";
133 break;
134 case PCI_CHIP_I965_Q:
135 chipset = "Intel(R) 965Q";
136 break;
137 case PCI_CHIP_I965_G:
138 case PCI_CHIP_I965_G_1:
139 chipset = "Intel(R) 965G";
140 break;
141 case PCI_CHIP_I946_GZ:
142 chipset = "Intel(R) 946GZ";
143 break;
144 case PCI_CHIP_I965_GM:
145 chipset = "Intel(R) 965GM";
146 break;
147 case PCI_CHIP_I965_GME:
148 chipset = "Intel(R) 965GME/GLE";
149 break;
150 case PCI_CHIP_GM45_GM:
151 chipset = "Mobile IntelĀ® GM45 Express Chipset";
152 break;
153 case PCI_CHIP_IGD_E_G:
154 chipset = "Intel(R) Integrated Graphics Device";
155 break;
156 case PCI_CHIP_G45_G:
157 chipset = "Intel(R) G45/G43";
158 break;
159 case PCI_CHIP_Q45_G:
160 chipset = "Intel(R) Q45/Q43";
161 break;
162 case PCI_CHIP_G41_G:
163 chipset = "Intel(R) G41";
164 break;
165 case PCI_CHIP_B43_G:
166 chipset = "Intel(R) B43";
167 break;
168 case PCI_CHIP_ILD_G:
169 chipset = "Intel(R) IGDNG_D";
170 break;
171 case PCI_CHIP_ILM_G:
172 chipset = "Intel(R) IGDNG_M";
173 break;
174 default:
175 chipset = "Unknown Intel Chipset";
176 break;
177 }
178
179 (void) driGetRendererString(buffer, chipset, DRIVER_DATE_GEM, 0);
180 return (GLubyte *) buffer;
181
182 default:
183 return NULL;
184 }
185 }
186
187 static unsigned
188 intel_bits_per_pixel(const struct intel_renderbuffer *rb)
189 {
190 return _mesa_get_format_bytes(rb->Base.Format) * 8;
191 }
192
193 void
194 intel_update_renderbuffers(__DRIcontext *context, __DRIdrawable *drawable)
195 {
196 struct intel_framebuffer *intel_fb = drawable->driverPrivate;
197 struct intel_renderbuffer *rb;
198 struct intel_region *region, *depth_region;
199 struct intel_context *intel = context->driverPrivate;
200 __DRIbuffer *buffers = NULL;
201 __DRIscreen *screen;
202 int i, count;
203 unsigned int attachments[10];
204 uint32_t name;
205 const char *region_name;
206
207 if (INTEL_DEBUG & DEBUG_DRI)
208 fprintf(stderr, "enter %s, drawable %p\n", __func__, drawable);
209
210 screen = intel->intelScreen->driScrnPriv;
211
212 if (screen->dri2.loader
213 && (screen->dri2.loader->base.version > 2)
214 && (screen->dri2.loader->getBuffersWithFormat != NULL)) {
215 struct intel_renderbuffer *depth_rb;
216 struct intel_renderbuffer *stencil_rb;
217
218 i = 0;
219 if ((intel->is_front_buffer_rendering ||
220 intel->is_front_buffer_reading ||
221 !intel_fb->color_rb[1])
222 && intel_fb->color_rb[0]) {
223 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
224 attachments[i++] = intel_bits_per_pixel(intel_fb->color_rb[0]);
225 }
226
227 if (intel_fb->color_rb[1]) {
228 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
229 attachments[i++] = intel_bits_per_pixel(intel_fb->color_rb[1]);
230 }
231
232 depth_rb = intel_get_renderbuffer(&intel_fb->Base, BUFFER_DEPTH);
233 stencil_rb = intel_get_renderbuffer(&intel_fb->Base, BUFFER_STENCIL);
234
235 if ((depth_rb != NULL) && (stencil_rb != NULL)) {
236 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
237 attachments[i++] = intel_bits_per_pixel(depth_rb);
238 } else if (depth_rb != NULL) {
239 attachments[i++] = __DRI_BUFFER_DEPTH;
240 attachments[i++] = intel_bits_per_pixel(depth_rb);
241 } else if (stencil_rb != NULL) {
242 attachments[i++] = __DRI_BUFFER_STENCIL;
243 attachments[i++] = intel_bits_per_pixel(stencil_rb);
244 }
245
246 buffers =
247 (*screen->dri2.loader->getBuffersWithFormat)(drawable,
248 &drawable->w,
249 &drawable->h,
250 attachments, i / 2,
251 &count,
252 drawable->loaderPrivate);
253 } else if (screen->dri2.loader) {
254 i = 0;
255 if (intel_fb->color_rb[0])
256 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
257 if (intel_fb->color_rb[1])
258 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
259 if (intel_get_renderbuffer(&intel_fb->Base, BUFFER_DEPTH))
260 attachments[i++] = __DRI_BUFFER_DEPTH;
261 if (intel_get_renderbuffer(&intel_fb->Base, BUFFER_STENCIL))
262 attachments[i++] = __DRI_BUFFER_STENCIL;
263
264 buffers = (*screen->dri2.loader->getBuffers)(drawable,
265 &drawable->w,
266 &drawable->h,
267 attachments, i,
268 &count,
269 drawable->loaderPrivate);
270 }
271
272 if (buffers == NULL)
273 return;
274
275 drawable->x = 0;
276 drawable->y = 0;
277 drawable->backX = 0;
278 drawable->backY = 0;
279 drawable->numClipRects = 1;
280 drawable->pClipRects[0].x1 = 0;
281 drawable->pClipRects[0].y1 = 0;
282 drawable->pClipRects[0].x2 = drawable->w;
283 drawable->pClipRects[0].y2 = drawable->h;
284 drawable->numBackClipRects = 1;
285 drawable->pBackClipRects[0].x1 = 0;
286 drawable->pBackClipRects[0].y1 = 0;
287 drawable->pBackClipRects[0].x2 = drawable->w;
288 drawable->pBackClipRects[0].y2 = drawable->h;
289
290 depth_region = NULL;
291 for (i = 0; i < count; i++) {
292 switch (buffers[i].attachment) {
293 case __DRI_BUFFER_FRONT_LEFT:
294 rb = intel_fb->color_rb[0];
295 region_name = "dri2 front buffer";
296 break;
297
298 case __DRI_BUFFER_FAKE_FRONT_LEFT:
299 rb = intel_fb->color_rb[0];
300 region_name = "dri2 fake front buffer";
301 break;
302
303 case __DRI_BUFFER_BACK_LEFT:
304 rb = intel_fb->color_rb[1];
305 region_name = "dri2 back buffer";
306 break;
307
308 case __DRI_BUFFER_DEPTH:
309 rb = intel_get_renderbuffer(&intel_fb->Base, BUFFER_DEPTH);
310 region_name = "dri2 depth buffer";
311 break;
312
313 case __DRI_BUFFER_DEPTH_STENCIL:
314 rb = intel_get_renderbuffer(&intel_fb->Base, BUFFER_DEPTH);
315 region_name = "dri2 depth / stencil buffer";
316 break;
317
318 case __DRI_BUFFER_STENCIL:
319 rb = intel_get_renderbuffer(&intel_fb->Base, BUFFER_STENCIL);
320 region_name = "dri2 stencil buffer";
321 break;
322
323 case __DRI_BUFFER_ACCUM:
324 default:
325 fprintf(stderr,
326 "unhandled buffer attach event, attacment type %d\n",
327 buffers[i].attachment);
328 return;
329 }
330
331 if (rb == NULL)
332 continue;
333
334 if (rb->region) {
335 dri_bo_flink(rb->region->buffer, &name);
336 if (name == buffers[i].name)
337 continue;
338 }
339
340 if (INTEL_DEBUG & DEBUG_DRI)
341 fprintf(stderr,
342 "attaching buffer %d, at %d, cpp %d, pitch %d\n",
343 buffers[i].name, buffers[i].attachment,
344 buffers[i].cpp, buffers[i].pitch);
345
346 if (buffers[i].attachment == __DRI_BUFFER_STENCIL && depth_region) {
347 if (INTEL_DEBUG & DEBUG_DRI)
348 fprintf(stderr, "(reusing depth buffer as stencil)\n");
349 intel_region_reference(&region, depth_region);
350 }
351 else
352 region = intel_region_alloc_for_handle(intel, buffers[i].cpp,
353 drawable->w,
354 drawable->h,
355 buffers[i].pitch / buffers[i].cpp,
356 buffers[i].name,
357 region_name);
358
359 if (buffers[i].attachment == __DRI_BUFFER_DEPTH)
360 depth_region = region;
361
362 intel_renderbuffer_set_region(rb, region);
363 intel_region_release(&region);
364
365 if (buffers[i].attachment == __DRI_BUFFER_DEPTH_STENCIL) {
366 rb = intel_get_renderbuffer(&intel_fb->Base, BUFFER_STENCIL);
367 if (rb != NULL) {
368 struct intel_region *stencil_region = NULL;
369
370 if (rb->region) {
371 dri_bo_flink(rb->region->buffer, &name);
372 if (name == buffers[i].name)
373 continue;
374 }
375
376 intel_region_reference(&stencil_region, region);
377 intel_renderbuffer_set_region(rb, stencil_region);
378 intel_region_release(&stencil_region);
379 }
380 }
381 }
382
383 driUpdateFramebufferSize(&intel->ctx, drawable);
384 }
385
386 void
387 intel_viewport(GLcontext *ctx, GLint x, GLint y, GLsizei w, GLsizei h)
388 {
389 struct intel_context *intel = intel_context(ctx);
390 __DRIcontext *driContext = intel->driContext;
391 void (*old_viewport)(GLcontext *ctx, GLint x, GLint y,
392 GLsizei w, GLsizei h);
393
394 if (!driContext->driScreenPriv->dri2.enabled)
395 return;
396
397 if (!intel->meta.internal_viewport_call && ctx->DrawBuffer->Name == 0) {
398 /* If we're rendering to the fake front buffer, make sure all the pending
399 * drawing has landed on the real front buffer. Otherwise when we
400 * eventually get to DRI2GetBuffersWithFormat the stale real front
401 * buffer contents will get copied to the new fake front buffer.
402 */
403 if (intel->is_front_buffer_rendering) {
404 intel_flush(ctx, GL_FALSE);
405 }
406
407 intel_update_renderbuffers(driContext, driContext->driDrawablePriv);
408 if (driContext->driDrawablePriv != driContext->driReadablePriv)
409 intel_update_renderbuffers(driContext, driContext->driReadablePriv);
410 }
411
412 old_viewport = ctx->Driver.Viewport;
413 ctx->Driver.Viewport = NULL;
414 intel->driDrawable = driContext->driDrawablePriv;
415 intelWindowMoved(intel);
416 intel_draw_buffer(ctx, intel->ctx.DrawBuffer);
417 ctx->Driver.Viewport = old_viewport;
418 }
419
420
421 static const struct dri_debug_control debug_control[] = {
422 { "tex", DEBUG_TEXTURE},
423 { "state", DEBUG_STATE},
424 { "ioctl", DEBUG_IOCTL},
425 { "blit", DEBUG_BLIT},
426 { "mip", DEBUG_MIPTREE},
427 { "fall", DEBUG_FALLBACKS},
428 { "verb", DEBUG_VERBOSE},
429 { "bat", DEBUG_BATCH},
430 { "pix", DEBUG_PIXEL},
431 { "buf", DEBUG_BUFMGR},
432 { "reg", DEBUG_REGION},
433 { "fbo", DEBUG_FBO},
434 { "lock", DEBUG_LOCK},
435 { "sync", DEBUG_SYNC},
436 { "prim", DEBUG_PRIMS },
437 { "vert", DEBUG_VERTS },
438 { "dri", DEBUG_DRI },
439 { "dma", DEBUG_DMA },
440 { "san", DEBUG_SANITY },
441 { "sleep", DEBUG_SLEEP },
442 { "stats", DEBUG_STATS },
443 { "tile", DEBUG_TILE },
444 { "sing", DEBUG_SINGLE_THREAD },
445 { "thre", DEBUG_SINGLE_THREAD },
446 { "wm", DEBUG_WM },
447 { "urb", DEBUG_URB },
448 { "vs", DEBUG_VS },
449 { NULL, 0 }
450 };
451
452
453 static void
454 intelInvalidateState(GLcontext * ctx, GLuint new_state)
455 {
456 struct intel_context *intel = intel_context(ctx);
457
458 _swrast_InvalidateState(ctx, new_state);
459 _swsetup_InvalidateState(ctx, new_state);
460 _vbo_InvalidateState(ctx, new_state);
461 _tnl_InvalidateState(ctx, new_state);
462 _tnl_invalidate_vertex_state(ctx, new_state);
463
464 intel->NewGLState |= new_state;
465
466 if (intel->vtbl.invalidate_state)
467 intel->vtbl.invalidate_state( intel, new_state );
468 }
469
470 static void
471 intel_flush(GLcontext *ctx, GLboolean needs_mi_flush)
472 {
473 struct intel_context *intel = intel_context(ctx);
474
475 if (intel->Fallback)
476 _swrast_flush(ctx);
477
478 if (intel->gen < 4)
479 INTEL_FIREVERTICES(intel);
480
481 /* Emit a flush so that any frontbuffer rendering that might have occurred
482 * lands onscreen in a timely manner, even if the X Server doesn't trigger
483 * a flush for us.
484 */
485 if (!intel->driScreen->dri2.enabled && needs_mi_flush)
486 intel_batchbuffer_emit_mi_flush(intel->batch);
487
488 if (intel->batch->map != intel->batch->ptr)
489 intel_batchbuffer_flush(intel->batch);
490
491 if ((ctx->DrawBuffer->Name == 0) && intel->front_buffer_dirty) {
492 __DRIscreen *const screen = intel->intelScreen->driScrnPriv;
493
494 if (screen->dri2.loader &&
495 (screen->dri2.loader->base.version >= 2)
496 && (screen->dri2.loader->flushFrontBuffer != NULL) &&
497 intel->driDrawable && intel->driDrawable->loaderPrivate) {
498 (*screen->dri2.loader->flushFrontBuffer)(intel->driDrawable,
499 intel->driDrawable->loaderPrivate);
500
501 /* Only clear the dirty bit if front-buffer rendering is no longer
502 * enabled. This is done so that the dirty bit can only be set in
503 * glDrawBuffer. Otherwise the dirty bit would have to be set at
504 * each of N places that do rendering. This has worse performances,
505 * but it is much easier to get correct.
506 */
507 if (!intel->is_front_buffer_rendering) {
508 intel->front_buffer_dirty = GL_FALSE;
509 }
510 }
511 }
512 }
513
514 void
515 intelFlush(GLcontext * ctx)
516 {
517 intel_flush(ctx, GL_FALSE);
518 }
519
520 static void
521 intel_glFlush(GLcontext *ctx)
522 {
523 struct intel_context *intel = intel_context(ctx);
524
525 intel_flush(ctx, GL_TRUE);
526
527 /* We're using glFlush as an indicator that a frame is done, which is
528 * what DRI2 does before calling SwapBuffers (and means we should catch
529 * people doing front-buffer rendering, as well)..
530 *
531 * Wait for the swapbuffers before the one we just emitted, so we don't
532 * get too many swaps outstanding for apps that are GPU-heavy but not
533 * CPU-heavy.
534 *
535 * Unfortunately, we don't have a handle to the batch containing the swap,
536 * and getting our hands on that doesn't seem worth it, so we just us the
537 * first batch we emitted after the last swap.
538 */
539 if (intel->first_post_swapbuffers_batch != NULL) {
540 drm_intel_bo_wait_rendering(intel->first_post_swapbuffers_batch);
541 drm_intel_bo_unreference(intel->first_post_swapbuffers_batch);
542 intel->first_post_swapbuffers_batch = NULL;
543 }
544 }
545
546 void
547 intelFinish(GLcontext * ctx)
548 {
549 struct gl_framebuffer *fb = ctx->DrawBuffer;
550 int i;
551
552 intelFlush(ctx);
553
554 for (i = 0; i < fb->_NumColorDrawBuffers; i++) {
555 struct intel_renderbuffer *irb;
556
557 irb = intel_renderbuffer(fb->_ColorDrawBuffers[i]);
558
559 if (irb && irb->region)
560 dri_bo_wait_rendering(irb->region->buffer);
561 }
562 if (fb->_DepthBuffer) {
563 /* XXX: Wait on buffer idle */
564 }
565 }
566
567 void
568 intelInitDriverFunctions(struct dd_function_table *functions)
569 {
570 _mesa_init_driver_functions(functions);
571
572 functions->Flush = intel_glFlush;
573 functions->Finish = intelFinish;
574 functions->GetString = intelGetString;
575 functions->UpdateState = intelInvalidateState;
576
577 intelInitTextureFuncs(functions);
578 intelInitTextureImageFuncs(functions);
579 intelInitTextureSubImageFuncs(functions);
580 intelInitTextureCopyImageFuncs(functions);
581 intelInitStateFuncs(functions);
582 intelInitClearFuncs(functions);
583 intelInitBufferFuncs(functions);
584 intelInitPixelFuncs(functions);
585 intelInitBufferObjectFuncs(functions);
586 intel_init_syncobj_functions(functions);
587 }
588
589
590 GLboolean
591 intelInitContext(struct intel_context *intel,
592 const __GLcontextModes * mesaVis,
593 __DRIcontextPrivate * driContextPriv,
594 void *sharedContextPrivate,
595 struct dd_function_table *functions)
596 {
597 GLcontext *ctx = &intel->ctx;
598 GLcontext *shareCtx = (GLcontext *) sharedContextPrivate;
599 __DRIscreenPrivate *sPriv = driContextPriv->driScreenPriv;
600 intelScreenPrivate *intelScreen = (intelScreenPrivate *) sPriv->private;
601 int bo_reuse_mode;
602
603 if (!_mesa_initialize_context(&intel->ctx, mesaVis, shareCtx,
604 functions, (void *) intel)) {
605 _mesa_printf("%s: failed to init mesa context\n", __FUNCTION__);
606 return GL_FALSE;
607 }
608
609 driContextPriv->driverPrivate = intel;
610 intel->intelScreen = intelScreen;
611 intel->driScreen = sPriv;
612 intel->sarea = intelScreen->sarea;
613 intel->driContext = driContextPriv;
614
615 if (IS_965(intel->intelScreen->deviceID)) {
616 intel->gen = 4;
617 } else if (IS_9XX(intel->intelScreen->deviceID)) {
618 intel->gen = 3;
619 if (IS_945(intel->intelScreen->deviceID)) {
620 intel->is_945 = GL_TRUE;
621 }
622 } else {
623 intel->gen = 2;
624 }
625
626 if (IS_IGDNG(intel->intelScreen->deviceID)) {
627 intel->is_ironlake = GL_TRUE;
628 intel->needs_ff_sync = GL_TRUE;
629 intel->has_luminance_srgb = GL_TRUE;
630 } else if (IS_G4X(intel->intelScreen->deviceID)) {
631 intel->has_luminance_srgb = GL_TRUE;
632 intel->is_g4x = GL_TRUE;
633 }
634
635 /* Dri stuff */
636 intel->hHWContext = driContextPriv->hHWContext;
637 intel->driFd = sPriv->fd;
638 intel->driHwLock = sPriv->lock;
639
640 driParseConfigFiles(&intel->optionCache, &intelScreen->optionCache,
641 intel->driScreen->myNum,
642 (intel->gen >= 4) ? "i965" : "i915");
643 if (intelScreen->deviceID == PCI_CHIP_I865_G)
644 intel->maxBatchSize = 4096;
645 else
646 intel->maxBatchSize = BATCH_SZ;
647
648 intel->bufmgr = intelScreen->bufmgr;
649
650 bo_reuse_mode = driQueryOptioni(&intel->optionCache, "bo_reuse");
651 switch (bo_reuse_mode) {
652 case DRI_CONF_BO_REUSE_DISABLED:
653 break;
654 case DRI_CONF_BO_REUSE_ALL:
655 intel_bufmgr_gem_enable_reuse(intel->bufmgr);
656 break;
657 }
658
659 /* This doesn't yet catch all non-conformant rendering, but it's a
660 * start.
661 */
662 if (getenv("INTEL_STRICT_CONFORMANCE")) {
663 unsigned int value = atoi(getenv("INTEL_STRICT_CONFORMANCE"));
664 if (value > 0) {
665 intel->conformance_mode = value;
666 }
667 else {
668 intel->conformance_mode = 1;
669 }
670 }
671
672 if (intel->conformance_mode > 0) {
673 ctx->Const.MinLineWidth = 1.0;
674 ctx->Const.MinLineWidthAA = 1.0;
675 ctx->Const.MaxLineWidth = 1.0;
676 ctx->Const.MaxLineWidthAA = 1.0;
677 ctx->Const.LineWidthGranularity = 1.0;
678 }
679 else {
680 ctx->Const.MinLineWidth = 1.0;
681 ctx->Const.MinLineWidthAA = 1.0;
682 ctx->Const.MaxLineWidth = 5.0;
683 ctx->Const.MaxLineWidthAA = 5.0;
684 ctx->Const.LineWidthGranularity = 0.5;
685 }
686
687 ctx->Const.MinPointSize = 1.0;
688 ctx->Const.MinPointSizeAA = 1.0;
689 ctx->Const.MaxPointSize = 255.0;
690 ctx->Const.MaxPointSizeAA = 3.0;
691 ctx->Const.PointSizeGranularity = 1.0;
692
693 /* reinitialize the context point state.
694 * It depend on constants in __GLcontextRec::Const
695 */
696 _mesa_init_point(ctx);
697
698 meta_init_metaops(ctx, &intel->meta);
699 ctx->Const.MaxColorAttachments = 4; /* XXX FBO: review this */
700 if (intel->gen >= 4) {
701 if (MAX_WIDTH > 8192)
702 ctx->Const.MaxRenderbufferSize = 8192;
703 } else {
704 if (MAX_WIDTH > 2048)
705 ctx->Const.MaxRenderbufferSize = 2048;
706 }
707
708 /* Initialize the software rasterizer and helper modules. */
709 _swrast_CreateContext(ctx);
710 _vbo_CreateContext(ctx);
711 _tnl_CreateContext(ctx);
712 _swsetup_CreateContext(ctx);
713
714 /* Configure swrast to match hardware characteristics: */
715 _swrast_allow_pixel_fog(ctx, GL_FALSE);
716 _swrast_allow_vertex_fog(ctx, GL_TRUE);
717
718 _mesa_meta_init(ctx);
719
720 intel->hw_stencil = mesaVis->stencilBits && mesaVis->depthBits == 24;
721 intel->hw_stipple = 1;
722
723 /* XXX FBO: this doesn't seem to be used anywhere */
724 switch (mesaVis->depthBits) {
725 case 0: /* what to do in this case? */
726 case 16:
727 intel->polygon_offset_scale = 1.0;
728 break;
729 case 24:
730 intel->polygon_offset_scale = 2.0; /* req'd to pass glean */
731 break;
732 default:
733 assert(0);
734 break;
735 }
736
737 if (intel->gen >= 4)
738 intel->polygon_offset_scale /= 0xffff;
739
740 intel->RenderIndex = ~0;
741
742 if (intel->gen >= 4 && !intel->intelScreen->irq_active) {
743 _mesa_printf("IRQs not active. Exiting\n");
744 exit(1);
745 }
746
747 intelInitExtensions(ctx);
748
749 INTEL_DEBUG = driParseDebugString(getenv("INTEL_DEBUG"), debug_control);
750 if (INTEL_DEBUG & DEBUG_BUFMGR)
751 dri_bufmgr_set_debug(intel->bufmgr, GL_TRUE);
752
753 if (!sPriv->dri2.enabled)
754 intel_recreate_static_regions(intel);
755
756 intel->batch = intel_batchbuffer_alloc(intel);
757
758 intel_fbo_init(intel);
759
760 if (intel->ctx.Mesa_DXTn) {
761 _mesa_enable_extension(ctx, "GL_EXT_texture_compression_s3tc");
762 _mesa_enable_extension(ctx, "GL_S3_s3tc");
763 }
764 else if (driQueryOptionb(&intel->optionCache, "force_s3tc_enable")) {
765 _mesa_enable_extension(ctx, "GL_EXT_texture_compression_s3tc");
766 }
767 intel->use_texture_tiling = driQueryOptionb(&intel->optionCache,
768 "texture_tiling");
769 if (intel->use_texture_tiling &&
770 !intel->intelScreen->kernel_exec_fencing) {
771 fprintf(stderr, "No kernel support for execution fencing, "
772 "disabling texture tiling\n");
773 intel->use_texture_tiling = GL_FALSE;
774 }
775 intel->use_early_z = driQueryOptionb(&intel->optionCache, "early_z");
776
777 intel->prim.primitive = ~0;
778
779 /* Force all software fallbacks */
780 if (driQueryOptionb(&intel->optionCache, "no_rast")) {
781 fprintf(stderr, "disabling 3D rasterization\n");
782 intel->no_rast = 1;
783 }
784
785 if (driQueryOptionb(&intel->optionCache, "always_flush_batch")) {
786 fprintf(stderr, "flushing batchbuffer before/after each draw call\n");
787 intel->always_flush_batch = 1;
788 }
789
790 if (driQueryOptionb(&intel->optionCache, "always_flush_cache")) {
791 fprintf(stderr, "flushing GPU caches before/after each draw call\n");
792 intel->always_flush_cache = 1;
793 }
794
795 /* Disable all hardware rendering (skip emitting batches and fences/waits
796 * to the kernel)
797 */
798 intel->no_hw = getenv("INTEL_NO_HW") != NULL;
799
800 return GL_TRUE;
801 }
802
803 void
804 intelDestroyContext(__DRIcontextPrivate * driContextPriv)
805 {
806 struct intel_context *intel =
807 (struct intel_context *) driContextPriv->driverPrivate;
808
809 assert(intel); /* should never be null */
810 if (intel) {
811 GLboolean release_texture_heaps;
812
813 INTEL_FIREVERTICES(intel);
814
815 _mesa_meta_free(&intel->ctx);
816
817 meta_destroy_metaops(&intel->meta);
818
819 intel->vtbl.destroy(intel);
820
821 release_texture_heaps = (intel->ctx.Shared->RefCount == 1);
822 _swsetup_DestroyContext(&intel->ctx);
823 _tnl_DestroyContext(&intel->ctx);
824 _vbo_DestroyContext(&intel->ctx);
825
826 _swrast_DestroyContext(&intel->ctx);
827 intel->Fallback = 0x0; /* don't call _swrast_Flush later */
828
829 intel_batchbuffer_free(intel->batch);
830 intel->batch = NULL;
831
832 free(intel->prim.vb);
833 intel->prim.vb = NULL;
834 dri_bo_unreference(intel->prim.vb_bo);
835 intel->prim.vb_bo = NULL;
836 dri_bo_unreference(intel->first_post_swapbuffers_batch);
837 intel->first_post_swapbuffers_batch = NULL;
838
839 if (release_texture_heaps) {
840 /* Nothing is currently done here to free texture heaps;
841 * but we're not using the texture heap utilities, so I
842 * rather think we shouldn't. I've taken a look, and can't
843 * find any private texture data hanging around anywhere, but
844 * I'm not yet certain there isn't any at all...
845 */
846 /* if (INTEL_DEBUG & DEBUG_TEXTURE)
847 fprintf(stderr, "do something to free texture heaps\n");
848 */
849 }
850
851 /* XXX In intelMakeCurrent() below, the context's static regions are
852 * referenced inside the frame buffer; it's listed as a hack,
853 * with a comment of "XXX FBO temporary fix-ups!", but
854 * as long as it's there, we should release the regions here.
855 * The do/while loop around the block is used to allow the
856 * "continue" statements inside the block to exit the block,
857 * to avoid many layers of "if" constructs.
858 */
859 do {
860 __DRIdrawablePrivate * driDrawPriv = intel->driDrawable;
861 struct intel_framebuffer *intel_fb;
862 struct intel_renderbuffer *irbDepth, *irbStencil;
863 if (!driDrawPriv) {
864 /* We're already detached from the drawable; exit this block. */
865 continue;
866 }
867 intel_fb = (struct intel_framebuffer *) driDrawPriv->driverPrivate;
868 if (!intel_fb) {
869 /* The frame buffer is already gone; exit this block. */
870 continue;
871 }
872 irbDepth = intel_get_renderbuffer(&intel_fb->Base, BUFFER_DEPTH);
873 irbStencil = intel_get_renderbuffer(&intel_fb->Base, BUFFER_STENCIL);
874
875 /* If the regions of the frame buffer still match the regions
876 * of the context, release them. If they've changed somehow,
877 * leave them alone.
878 */
879 if (intel_fb->color_rb[0] && intel_fb->color_rb[0]->region == intel->front_region) {
880 intel_renderbuffer_set_region(intel_fb->color_rb[0], NULL);
881 }
882 if (intel_fb->color_rb[1] && intel_fb->color_rb[1]->region == intel->back_region) {
883 intel_renderbuffer_set_region(intel_fb->color_rb[1], NULL);
884 }
885
886 if (irbDepth && irbDepth->region == intel->depth_region) {
887 intel_renderbuffer_set_region(irbDepth, NULL);
888 }
889 /* Usually, the stencil buffer is the same as the depth buffer;
890 * but they're handled separately in MakeCurrent, so we'll
891 * handle them separately here.
892 */
893 if (irbStencil && irbStencil->region == intel->depth_region) {
894 intel_renderbuffer_set_region(irbStencil, NULL);
895 }
896 } while (0);
897
898 intel_region_release(&intel->front_region);
899 intel_region_release(&intel->back_region);
900 intel_region_release(&intel->depth_region);
901
902 driDestroyOptionCache(&intel->optionCache);
903
904 /* free the Mesa context */
905 _mesa_free_context_data(&intel->ctx);
906
907 FREE(intel);
908 driContextPriv->driverPrivate = NULL;
909 }
910 }
911
912 GLboolean
913 intelUnbindContext(__DRIcontextPrivate * driContextPriv)
914 {
915 struct intel_context *intel =
916 (struct intel_context *) driContextPriv->driverPrivate;
917
918 /* Deassociate the context with the drawables.
919 */
920 intel->driDrawable = NULL;
921 intel->driReadDrawable = NULL;
922
923 return GL_TRUE;
924 }
925
926 GLboolean
927 intelMakeCurrent(__DRIcontextPrivate * driContextPriv,
928 __DRIdrawablePrivate * driDrawPriv,
929 __DRIdrawablePrivate * driReadPriv)
930 {
931 __DRIscreenPrivate *psp = driDrawPriv->driScreenPriv;
932 struct intel_context *intel;
933 GET_CURRENT_CONTEXT(curCtx);
934
935 if (driContextPriv)
936 intel = (struct intel_context *) driContextPriv->driverPrivate;
937 else
938 intel = NULL;
939
940 /* According to the glXMakeCurrent() man page: "Pending commands to
941 * the previous context, if any, are flushed before it is released."
942 * But only flush if we're actually changing contexts.
943 */
944 if (intel_context(curCtx) && intel_context(curCtx) != intel) {
945 _mesa_flush(curCtx);
946 }
947
948 if (driContextPriv) {
949 struct intel_framebuffer *intel_fb =
950 (struct intel_framebuffer *) driDrawPriv->driverPrivate;
951 GLframebuffer *readFb = (GLframebuffer *) driReadPriv->driverPrivate;
952
953 if (driContextPriv->driScreenPriv->dri2.enabled) {
954 intel_update_renderbuffers(driContextPriv, driDrawPriv);
955 if (driDrawPriv != driReadPriv)
956 intel_update_renderbuffers(driContextPriv, driReadPriv);
957 } else {
958 /* XXX FBO temporary fix-ups! These are released in
959 * intelDextroyContext(), above. Changes here should be
960 * reflected there.
961 */
962 /* if the renderbuffers don't have regions, init them from the context */
963 struct intel_renderbuffer *irbDepth
964 = intel_get_renderbuffer(&intel_fb->Base, BUFFER_DEPTH);
965 struct intel_renderbuffer *irbStencil
966 = intel_get_renderbuffer(&intel_fb->Base, BUFFER_STENCIL);
967
968 if (intel_fb->color_rb[0]) {
969 intel_renderbuffer_set_region(intel_fb->color_rb[0],
970 intel->front_region);
971 }
972 if (intel_fb->color_rb[1]) {
973 intel_renderbuffer_set_region(intel_fb->color_rb[1],
974 intel->back_region);
975 }
976
977 if (irbDepth) {
978 intel_renderbuffer_set_region(irbDepth, intel->depth_region);
979 }
980 if (irbStencil) {
981 intel_renderbuffer_set_region(irbStencil, intel->depth_region);
982 }
983 }
984
985 /* set GLframebuffer size to match window, if needed */
986 driUpdateFramebufferSize(&intel->ctx, driDrawPriv);
987
988 if (driReadPriv != driDrawPriv) {
989 driUpdateFramebufferSize(&intel->ctx, driReadPriv);
990 }
991
992 _mesa_make_current(&intel->ctx, &intel_fb->Base, readFb);
993
994 intel->driReadDrawable = driReadPriv;
995
996 if (intel->driDrawable != driDrawPriv) {
997 if (driDrawPriv->swap_interval == (unsigned)-1) {
998 int i;
999
1000 driDrawPriv->vblFlags = (intel->intelScreen->irq_active != 0)
1001 ? driGetDefaultVBlankFlags(&intel->optionCache)
1002 : VBLANK_FLAG_NO_IRQ;
1003
1004 /* Prevent error printf if one crtc is disabled, this will
1005 * be properly calculated in intelWindowMoved() next.
1006 */
1007 driDrawPriv->vblFlags = intelFixupVblank(intel, driDrawPriv);
1008
1009 (*psp->systemTime->getUST) (&intel_fb->swap_ust);
1010 driDrawableInitVBlank(driDrawPriv);
1011 intel_fb->vbl_waited = driDrawPriv->vblSeq;
1012
1013 for (i = 0; i < 2; i++) {
1014 if (intel_fb->color_rb[i])
1015 intel_fb->color_rb[i]->vbl_pending = driDrawPriv->vblSeq;
1016 }
1017 }
1018 intel->driDrawable = driDrawPriv;
1019 intelWindowMoved(intel);
1020 }
1021
1022 intel_draw_buffer(&intel->ctx, &intel_fb->Base);
1023 }
1024 else {
1025 _mesa_make_current(NULL, NULL, NULL);
1026 }
1027
1028 return GL_TRUE;
1029 }
1030
1031 static void
1032 intelContendedLock(struct intel_context *intel, GLuint flags)
1033 {
1034 __DRIdrawablePrivate *dPriv = intel->driDrawable;
1035 __DRIscreenPrivate *sPriv = intel->driScreen;
1036 volatile drm_i915_sarea_t *sarea = intel->sarea;
1037 int me = intel->hHWContext;
1038
1039 drmGetLock(intel->driFd, intel->hHWContext, flags);
1040
1041 if (INTEL_DEBUG & DEBUG_LOCK)
1042 _mesa_printf("%s - got contended lock\n", __progname);
1043
1044 /* If the window moved, may need to set a new cliprect now.
1045 *
1046 * NOTE: This releases and regains the hw lock, so all state
1047 * checking must be done *after* this call:
1048 */
1049 if (dPriv)
1050 DRI_VALIDATE_DRAWABLE_INFO(sPriv, dPriv);
1051
1052 if (sarea && sarea->ctxOwner != me) {
1053 if (INTEL_DEBUG & DEBUG_BUFMGR) {
1054 fprintf(stderr, "Lost Context: sarea->ctxOwner %x me %x\n",
1055 sarea->ctxOwner, me);
1056 }
1057 sarea->ctxOwner = me;
1058 }
1059
1060 /* Drawable changed?
1061 */
1062 if (dPriv && intel->lastStamp != dPriv->lastStamp) {
1063 intelWindowMoved(intel);
1064 intel->lastStamp = dPriv->lastStamp;
1065 }
1066 }
1067
1068
1069 _glthread_DECLARE_STATIC_MUTEX(lockMutex);
1070
1071 /* Lock the hardware and validate our state.
1072 */
1073 void LOCK_HARDWARE( struct intel_context *intel )
1074 {
1075 __DRIdrawable *dPriv = intel->driDrawable;
1076 __DRIscreen *sPriv = intel->driScreen;
1077 char __ret = 0;
1078 struct intel_framebuffer *intel_fb = NULL;
1079 struct intel_renderbuffer *intel_rb = NULL;
1080
1081 intel->locked++;
1082 if (intel->locked >= 2)
1083 return;
1084
1085 if (!sPriv->dri2.enabled)
1086 _glthread_LOCK_MUTEX(lockMutex);
1087
1088 if (intel->driDrawable) {
1089 intel_fb = intel->driDrawable->driverPrivate;
1090
1091 if (intel_fb)
1092 intel_rb =
1093 intel_get_renderbuffer(&intel_fb->Base,
1094 intel_fb->Base._ColorDrawBufferIndexes[0]);
1095 }
1096
1097 if (intel_rb && dPriv->vblFlags &&
1098 !(dPriv->vblFlags & VBLANK_FLAG_NO_IRQ) &&
1099 (intel_fb->vbl_waited - intel_rb->vbl_pending) > (1<<23)) {
1100 drmVBlank vbl;
1101
1102 vbl.request.type = DRM_VBLANK_ABSOLUTE;
1103
1104 if ( dPriv->vblFlags & VBLANK_FLAG_SECONDARY ) {
1105 vbl.request.type |= DRM_VBLANK_SECONDARY;
1106 }
1107
1108 vbl.request.sequence = intel_rb->vbl_pending;
1109 drmWaitVBlank(intel->driFd, &vbl);
1110 intel_fb->vbl_waited = vbl.reply.sequence;
1111 }
1112
1113 if (!sPriv->dri2.enabled) {
1114 DRM_CAS(intel->driHwLock, intel->hHWContext,
1115 (DRM_LOCK_HELD|intel->hHWContext), __ret);
1116
1117 if (__ret)
1118 intelContendedLock( intel, 0 );
1119 }
1120
1121
1122 if (INTEL_DEBUG & DEBUG_LOCK)
1123 _mesa_printf("%s - locked\n", __progname);
1124 }
1125
1126
1127 /* Unlock the hardware using the global current context
1128 */
1129 void UNLOCK_HARDWARE( struct intel_context *intel )
1130 {
1131 __DRIscreen *sPriv = intel->driScreen;
1132
1133 intel->locked--;
1134 if (intel->locked > 0)
1135 return;
1136
1137 assert(intel->locked == 0);
1138
1139 if (!sPriv->dri2.enabled) {
1140 DRM_UNLOCK(intel->driFd, intel->driHwLock, intel->hHWContext);
1141 _glthread_UNLOCK_MUTEX(lockMutex);
1142 }
1143
1144 if (INTEL_DEBUG & DEBUG_LOCK)
1145 _mesa_printf("%s - unlocked\n", __progname);
1146
1147 /**
1148 * Nothing should be left in batch outside of LOCK/UNLOCK which references
1149 * cliprects.
1150 */
1151 if (intel->batch->cliprect_mode == REFERENCES_CLIPRECTS)
1152 intel_batchbuffer_flush(intel->batch);
1153 }
1154