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