i965: Configure bufmgr debug options from intel_screen.c
[mesa.git] / src / mesa / drivers / dri / i965 / intel_screen.c
1 /*
2 * Copyright 2003 VMware, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 #include <errno.h>
27 #include <time.h>
28 #include <unistd.h>
29 #include "main/glheader.h"
30 #include "main/context.h"
31 #include "main/framebuffer.h"
32 #include "main/renderbuffer.h"
33 #include "main/texobj.h"
34 #include "main/hash.h"
35 #include "main/fbobject.h"
36 #include "main/version.h"
37 #include "swrast/s_renderbuffer.h"
38 #include "util/ralloc.h"
39 #include "brw_shader.h"
40 #include "glsl/nir/nir.h"
41
42 #include "utils.h"
43 #include "xmlpool.h"
44
45 static const __DRIconfigOptionsExtension brw_config_options = {
46 .base = { __DRI_CONFIG_OPTIONS, 1 },
47 .xml =
48 DRI_CONF_BEGIN
49 DRI_CONF_SECTION_PERFORMANCE
50 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_ALWAYS_SYNC)
51 /* Options correspond to DRI_CONF_BO_REUSE_DISABLED,
52 * DRI_CONF_BO_REUSE_ALL
53 */
54 DRI_CONF_OPT_BEGIN_V(bo_reuse, enum, 1, "0:1")
55 DRI_CONF_DESC_BEGIN(en, "Buffer object reuse")
56 DRI_CONF_ENUM(0, "Disable buffer object reuse")
57 DRI_CONF_ENUM(1, "Enable reuse of all sizes of buffer objects")
58 DRI_CONF_DESC_END
59 DRI_CONF_OPT_END
60
61 DRI_CONF_OPT_BEGIN_B(hiz, "true")
62 DRI_CONF_DESC(en, "Enable Hierarchical Z on gen6+")
63 DRI_CONF_OPT_END
64 DRI_CONF_SECTION_END
65
66 DRI_CONF_SECTION_QUALITY
67 DRI_CONF_FORCE_S3TC_ENABLE("false")
68
69 DRI_CONF_OPT_BEGIN(clamp_max_samples, int, -1)
70 DRI_CONF_DESC(en, "Clamp the value of GL_MAX_SAMPLES to the "
71 "given integer. If negative, then do not clamp.")
72 DRI_CONF_OPT_END
73 DRI_CONF_SECTION_END
74
75 DRI_CONF_SECTION_DEBUG
76 DRI_CONF_NO_RAST("false")
77 DRI_CONF_ALWAYS_FLUSH_BATCH("false")
78 DRI_CONF_ALWAYS_FLUSH_CACHE("false")
79 DRI_CONF_DISABLE_THROTTLING("false")
80 DRI_CONF_FORCE_GLSL_EXTENSIONS_WARN("false")
81 DRI_CONF_DISABLE_GLSL_LINE_CONTINUATIONS("false")
82 DRI_CONF_DISABLE_BLEND_FUNC_EXTENDED("false")
83 DRI_CONF_ALLOW_GLSL_EXTENSION_DIRECTIVE_MIDSHADER("false")
84
85 DRI_CONF_OPT_BEGIN_B(shader_precompile, "true")
86 DRI_CONF_DESC(en, "Perform code generation at shader link time.")
87 DRI_CONF_OPT_END
88 DRI_CONF_SECTION_END
89 DRI_CONF_END
90 };
91
92 #include "intel_batchbuffer.h"
93 #include "intel_buffers.h"
94 #include "intel_bufmgr.h"
95 #include "intel_fbo.h"
96 #include "intel_mipmap_tree.h"
97 #include "intel_screen.h"
98 #include "intel_tex.h"
99 #include "intel_image.h"
100
101 #include "brw_context.h"
102
103 #include "i915_drm.h"
104
105 /**
106 * For debugging purposes, this returns a time in seconds.
107 */
108 double
109 get_time(void)
110 {
111 struct timespec tp;
112
113 clock_gettime(CLOCK_MONOTONIC, &tp);
114
115 return tp.tv_sec + tp.tv_nsec / 1000000000.0;
116 }
117
118 void
119 aub_dump_bmp(struct gl_context *ctx)
120 {
121 struct gl_framebuffer *fb = ctx->DrawBuffer;
122
123 for (unsigned i = 0; i < fb->_NumColorDrawBuffers; i++) {
124 struct intel_renderbuffer *irb =
125 intel_renderbuffer(fb->_ColorDrawBuffers[i]);
126
127 if (irb && irb->mt) {
128 enum aub_dump_bmp_format format;
129
130 switch (irb->Base.Base.Format) {
131 case MESA_FORMAT_B8G8R8A8_UNORM:
132 case MESA_FORMAT_B8G8R8X8_UNORM:
133 format = AUB_DUMP_BMP_FORMAT_ARGB_8888;
134 break;
135 default:
136 continue;
137 }
138
139 drm_intel_gem_bo_aub_dump_bmp(irb->mt->bo,
140 irb->draw_x,
141 irb->draw_y,
142 irb->Base.Base.Width,
143 irb->Base.Base.Height,
144 format,
145 irb->mt->pitch,
146 0);
147 }
148 }
149 }
150
151 static const __DRItexBufferExtension intelTexBufferExtension = {
152 .base = { __DRI_TEX_BUFFER, 3 },
153
154 .setTexBuffer = intelSetTexBuffer,
155 .setTexBuffer2 = intelSetTexBuffer2,
156 .releaseTexBuffer = NULL,
157 };
158
159 static void
160 intel_dri2_flush_with_flags(__DRIcontext *cPriv,
161 __DRIdrawable *dPriv,
162 unsigned flags,
163 enum __DRI2throttleReason reason)
164 {
165 struct brw_context *brw = cPriv->driverPrivate;
166
167 if (!brw)
168 return;
169
170 struct gl_context *ctx = &brw->ctx;
171
172 FLUSH_VERTICES(ctx, 0);
173
174 if (flags & __DRI2_FLUSH_DRAWABLE)
175 intel_resolve_for_dri2_flush(brw, dPriv);
176
177 if (reason == __DRI2_THROTTLE_SWAPBUFFER)
178 brw->need_swap_throttle = true;
179 if (reason == __DRI2_THROTTLE_FLUSHFRONT)
180 brw->need_flush_throttle = true;
181
182 intel_batchbuffer_flush(brw);
183
184 if (INTEL_DEBUG & DEBUG_AUB) {
185 aub_dump_bmp(ctx);
186 }
187 }
188
189 /**
190 * Provides compatibility with loaders that only support the older (version
191 * 1-3) flush interface.
192 *
193 * That includes libGL up to Mesa 9.0, and the X Server at least up to 1.13.
194 */
195 static void
196 intel_dri2_flush(__DRIdrawable *drawable)
197 {
198 intel_dri2_flush_with_flags(drawable->driContextPriv, drawable,
199 __DRI2_FLUSH_DRAWABLE,
200 __DRI2_THROTTLE_SWAPBUFFER);
201 }
202
203 static const struct __DRI2flushExtensionRec intelFlushExtension = {
204 .base = { __DRI2_FLUSH, 4 },
205
206 .flush = intel_dri2_flush,
207 .invalidate = dri2InvalidateDrawable,
208 .flush_with_flags = intel_dri2_flush_with_flags,
209 };
210
211 static struct intel_image_format intel_image_formats[] = {
212 { __DRI_IMAGE_FOURCC_ARGB8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
213 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ARGB8888, 4 } } },
214
215 { __DRI_IMAGE_FOURCC_ABGR8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
216 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ABGR8888, 4 } } },
217
218 { __DRI_IMAGE_FOURCC_SARGB8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
219 { { 0, 0, 0, __DRI_IMAGE_FORMAT_SARGB8, 4 } } },
220
221 { __DRI_IMAGE_FOURCC_XRGB8888, __DRI_IMAGE_COMPONENTS_RGB, 1,
222 { { 0, 0, 0, __DRI_IMAGE_FORMAT_XRGB8888, 4 }, } },
223
224 { __DRI_IMAGE_FOURCC_XBGR8888, __DRI_IMAGE_COMPONENTS_RGB, 1,
225 { { 0, 0, 0, __DRI_IMAGE_FORMAT_XBGR8888, 4 }, } },
226
227 { __DRI_IMAGE_FOURCC_RGB565, __DRI_IMAGE_COMPONENTS_RGB, 1,
228 { { 0, 0, 0, __DRI_IMAGE_FORMAT_RGB565, 2 } } },
229
230 { __DRI_IMAGE_FOURCC_R8, __DRI_IMAGE_COMPONENTS_R, 1,
231 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 }, } },
232
233 { __DRI_IMAGE_FOURCC_GR88, __DRI_IMAGE_COMPONENTS_RG, 1,
234 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR88, 2 }, } },
235
236 { __DRI_IMAGE_FOURCC_YUV410, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
237 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
238 { 1, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 },
239 { 2, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 } } },
240
241 { __DRI_IMAGE_FOURCC_YUV411, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
242 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
243 { 1, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 },
244 { 2, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
245
246 { __DRI_IMAGE_FOURCC_YUV420, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
247 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
248 { 1, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 },
249 { 2, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 } } },
250
251 { __DRI_IMAGE_FOURCC_YUV422, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
252 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
253 { 1, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 },
254 { 2, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
255
256 { __DRI_IMAGE_FOURCC_YUV444, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
257 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
258 { 1, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
259 { 2, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
260
261 { __DRI_IMAGE_FOURCC_NV12, __DRI_IMAGE_COMPONENTS_Y_UV, 2,
262 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
263 { 1, 1, 1, __DRI_IMAGE_FORMAT_GR88, 2 } } },
264
265 { __DRI_IMAGE_FOURCC_NV16, __DRI_IMAGE_COMPONENTS_Y_UV, 2,
266 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
267 { 1, 1, 0, __DRI_IMAGE_FORMAT_GR88, 2 } } },
268
269 /* For YUYV buffers, we set up two overlapping DRI images and treat
270 * them as planar buffers in the compositors. Plane 0 is GR88 and
271 * samples YU or YV pairs and places Y into the R component, while
272 * plane 1 is ARGB and samples YUYV clusters and places pairs and
273 * places U into the G component and V into A. This lets the
274 * texture sampler interpolate the Y components correctly when
275 * sampling from plane 0, and interpolate U and V correctly when
276 * sampling from plane 1. */
277 { __DRI_IMAGE_FOURCC_YUYV, __DRI_IMAGE_COMPONENTS_Y_XUXV, 2,
278 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR88, 2 },
279 { 0, 1, 0, __DRI_IMAGE_FORMAT_ARGB8888, 4 } } }
280 };
281
282 static void
283 intel_image_warn_if_unaligned(__DRIimage *image, const char *func)
284 {
285 uint32_t tiling, swizzle;
286 drm_intel_bo_get_tiling(image->bo, &tiling, &swizzle);
287
288 if (tiling != I915_TILING_NONE && (image->offset & 0xfff)) {
289 _mesa_warning(NULL, "%s: offset 0x%08x not on tile boundary",
290 func, image->offset);
291 }
292 }
293
294 static struct intel_image_format *
295 intel_image_format_lookup(int fourcc)
296 {
297 struct intel_image_format *f = NULL;
298
299 for (unsigned i = 0; i < ARRAY_SIZE(intel_image_formats); i++) {
300 if (intel_image_formats[i].fourcc == fourcc) {
301 f = &intel_image_formats[i];
302 break;
303 }
304 }
305
306 return f;
307 }
308
309 static boolean intel_lookup_fourcc(int dri_format, int *fourcc)
310 {
311 for (unsigned i = 0; i < ARRAY_SIZE(intel_image_formats); i++) {
312 if (intel_image_formats[i].planes[0].dri_format == dri_format) {
313 *fourcc = intel_image_formats[i].fourcc;
314 return true;
315 }
316 }
317 return false;
318 }
319
320 static __DRIimage *
321 intel_allocate_image(int dri_format, void *loaderPrivate)
322 {
323 __DRIimage *image;
324
325 image = calloc(1, sizeof *image);
326 if (image == NULL)
327 return NULL;
328
329 image->dri_format = dri_format;
330 image->offset = 0;
331
332 image->format = driImageFormatToGLFormat(dri_format);
333 if (dri_format != __DRI_IMAGE_FORMAT_NONE &&
334 image->format == MESA_FORMAT_NONE) {
335 free(image);
336 return NULL;
337 }
338
339 image->internal_format = _mesa_get_format_base_format(image->format);
340 image->data = loaderPrivate;
341
342 return image;
343 }
344
345 /**
346 * Sets up a DRIImage structure to point to a slice out of a miptree.
347 */
348 static void
349 intel_setup_image_from_mipmap_tree(struct brw_context *brw, __DRIimage *image,
350 struct intel_mipmap_tree *mt, GLuint level,
351 GLuint zoffset)
352 {
353 intel_miptree_make_shareable(brw, mt);
354
355 intel_miptree_check_level_layer(mt, level, zoffset);
356
357 image->width = minify(mt->physical_width0, level - mt->first_level);
358 image->height = minify(mt->physical_height0, level - mt->first_level);
359 image->pitch = mt->pitch;
360
361 image->offset = intel_miptree_get_tile_offsets(mt, level, zoffset,
362 &image->tile_x,
363 &image->tile_y);
364
365 drm_intel_bo_unreference(image->bo);
366 image->bo = mt->bo;
367 drm_intel_bo_reference(mt->bo);
368 }
369
370 static __DRIimage *
371 intel_create_image_from_name(__DRIscreen *screen,
372 int width, int height, int format,
373 int name, int pitch, void *loaderPrivate)
374 {
375 struct intel_screen *intelScreen = screen->driverPrivate;
376 __DRIimage *image;
377 int cpp;
378
379 image = intel_allocate_image(format, loaderPrivate);
380 if (image == NULL)
381 return NULL;
382
383 if (image->format == MESA_FORMAT_NONE)
384 cpp = 1;
385 else
386 cpp = _mesa_get_format_bytes(image->format);
387
388 image->width = width;
389 image->height = height;
390 image->pitch = pitch * cpp;
391 image->bo = drm_intel_bo_gem_create_from_name(intelScreen->bufmgr, "image",
392 name);
393 if (!image->bo) {
394 free(image);
395 return NULL;
396 }
397
398 return image;
399 }
400
401 static __DRIimage *
402 intel_create_image_from_renderbuffer(__DRIcontext *context,
403 int renderbuffer, void *loaderPrivate)
404 {
405 __DRIimage *image;
406 struct brw_context *brw = context->driverPrivate;
407 struct gl_context *ctx = &brw->ctx;
408 struct gl_renderbuffer *rb;
409 struct intel_renderbuffer *irb;
410
411 rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
412 if (!rb) {
413 _mesa_error(ctx, GL_INVALID_OPERATION, "glRenderbufferExternalMESA");
414 return NULL;
415 }
416
417 irb = intel_renderbuffer(rb);
418 intel_miptree_make_shareable(brw, irb->mt);
419 image = calloc(1, sizeof *image);
420 if (image == NULL)
421 return NULL;
422
423 image->internal_format = rb->InternalFormat;
424 image->format = rb->Format;
425 image->offset = 0;
426 image->data = loaderPrivate;
427 drm_intel_bo_unreference(image->bo);
428 image->bo = irb->mt->bo;
429 drm_intel_bo_reference(irb->mt->bo);
430 image->width = rb->Width;
431 image->height = rb->Height;
432 image->pitch = irb->mt->pitch;
433 image->dri_format = driGLFormatToImageFormat(image->format);
434 image->has_depthstencil = irb->mt->stencil_mt? true : false;
435
436 rb->NeedsFinishRenderTexture = true;
437 return image;
438 }
439
440 static __DRIimage *
441 intel_create_image_from_texture(__DRIcontext *context, int target,
442 unsigned texture, int zoffset,
443 int level,
444 unsigned *error,
445 void *loaderPrivate)
446 {
447 __DRIimage *image;
448 struct brw_context *brw = context->driverPrivate;
449 struct gl_texture_object *obj;
450 struct intel_texture_object *iobj;
451 GLuint face = 0;
452
453 obj = _mesa_lookup_texture(&brw->ctx, texture);
454 if (!obj || obj->Target != target) {
455 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
456 return NULL;
457 }
458
459 if (target == GL_TEXTURE_CUBE_MAP)
460 face = zoffset;
461
462 _mesa_test_texobj_completeness(&brw->ctx, obj);
463 iobj = intel_texture_object(obj);
464 if (!obj->_BaseComplete || (level > 0 && !obj->_MipmapComplete)) {
465 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
466 return NULL;
467 }
468
469 if (level < obj->BaseLevel || level > obj->_MaxLevel) {
470 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
471 return NULL;
472 }
473
474 if (target == GL_TEXTURE_3D && obj->Image[face][level]->Depth < zoffset) {
475 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
476 return NULL;
477 }
478 image = calloc(1, sizeof *image);
479 if (image == NULL) {
480 *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
481 return NULL;
482 }
483
484 image->internal_format = obj->Image[face][level]->InternalFormat;
485 image->format = obj->Image[face][level]->TexFormat;
486 image->data = loaderPrivate;
487 intel_setup_image_from_mipmap_tree(brw, image, iobj->mt, level, zoffset);
488 image->dri_format = driGLFormatToImageFormat(image->format);
489 image->has_depthstencil = iobj->mt->stencil_mt? true : false;
490 if (image->dri_format == MESA_FORMAT_NONE) {
491 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
492 free(image);
493 return NULL;
494 }
495
496 *error = __DRI_IMAGE_ERROR_SUCCESS;
497 return image;
498 }
499
500 static void
501 intel_destroy_image(__DRIimage *image)
502 {
503 drm_intel_bo_unreference(image->bo);
504 free(image);
505 }
506
507 static __DRIimage *
508 intel_create_image(__DRIscreen *screen,
509 int width, int height, int format,
510 unsigned int use,
511 void *loaderPrivate)
512 {
513 __DRIimage *image;
514 struct intel_screen *intelScreen = screen->driverPrivate;
515 uint32_t tiling;
516 int cpp;
517 unsigned long pitch;
518
519 tiling = I915_TILING_X;
520 if (use & __DRI_IMAGE_USE_CURSOR) {
521 if (width != 64 || height != 64)
522 return NULL;
523 tiling = I915_TILING_NONE;
524 }
525
526 if (use & __DRI_IMAGE_USE_LINEAR)
527 tiling = I915_TILING_NONE;
528
529 image = intel_allocate_image(format, loaderPrivate);
530 if (image == NULL)
531 return NULL;
532
533
534 cpp = _mesa_get_format_bytes(image->format);
535 image->bo = drm_intel_bo_alloc_tiled(intelScreen->bufmgr, "image",
536 width, height, cpp, &tiling,
537 &pitch, 0);
538 if (image->bo == NULL) {
539 free(image);
540 return NULL;
541 }
542 image->width = width;
543 image->height = height;
544 image->pitch = pitch;
545
546 return image;
547 }
548
549 static GLboolean
550 intel_query_image(__DRIimage *image, int attrib, int *value)
551 {
552 switch (attrib) {
553 case __DRI_IMAGE_ATTRIB_STRIDE:
554 *value = image->pitch;
555 return true;
556 case __DRI_IMAGE_ATTRIB_HANDLE:
557 *value = image->bo->handle;
558 return true;
559 case __DRI_IMAGE_ATTRIB_NAME:
560 return !drm_intel_bo_flink(image->bo, (uint32_t *) value);
561 case __DRI_IMAGE_ATTRIB_FORMAT:
562 *value = image->dri_format;
563 return true;
564 case __DRI_IMAGE_ATTRIB_WIDTH:
565 *value = image->width;
566 return true;
567 case __DRI_IMAGE_ATTRIB_HEIGHT:
568 *value = image->height;
569 return true;
570 case __DRI_IMAGE_ATTRIB_COMPONENTS:
571 if (image->planar_format == NULL)
572 return false;
573 *value = image->planar_format->components;
574 return true;
575 case __DRI_IMAGE_ATTRIB_FD:
576 if (drm_intel_bo_gem_export_to_prime(image->bo, value) == 0)
577 return true;
578 return false;
579 case __DRI_IMAGE_ATTRIB_FOURCC:
580 if (intel_lookup_fourcc(image->dri_format, value))
581 return true;
582 return false;
583 case __DRI_IMAGE_ATTRIB_NUM_PLANES:
584 *value = 1;
585 return true;
586
587 default:
588 return false;
589 }
590 }
591
592 static __DRIimage *
593 intel_dup_image(__DRIimage *orig_image, void *loaderPrivate)
594 {
595 __DRIimage *image;
596
597 image = calloc(1, sizeof *image);
598 if (image == NULL)
599 return NULL;
600
601 drm_intel_bo_reference(orig_image->bo);
602 image->bo = orig_image->bo;
603 image->internal_format = orig_image->internal_format;
604 image->planar_format = orig_image->planar_format;
605 image->dri_format = orig_image->dri_format;
606 image->format = orig_image->format;
607 image->offset = orig_image->offset;
608 image->width = orig_image->width;
609 image->height = orig_image->height;
610 image->pitch = orig_image->pitch;
611 image->tile_x = orig_image->tile_x;
612 image->tile_y = orig_image->tile_y;
613 image->has_depthstencil = orig_image->has_depthstencil;
614 image->data = loaderPrivate;
615
616 memcpy(image->strides, orig_image->strides, sizeof(image->strides));
617 memcpy(image->offsets, orig_image->offsets, sizeof(image->offsets));
618
619 return image;
620 }
621
622 static GLboolean
623 intel_validate_usage(__DRIimage *image, unsigned int use)
624 {
625 if (use & __DRI_IMAGE_USE_CURSOR) {
626 if (image->width != 64 || image->height != 64)
627 return GL_FALSE;
628 }
629
630 return GL_TRUE;
631 }
632
633 static __DRIimage *
634 intel_create_image_from_names(__DRIscreen *screen,
635 int width, int height, int fourcc,
636 int *names, int num_names,
637 int *strides, int *offsets,
638 void *loaderPrivate)
639 {
640 struct intel_image_format *f = NULL;
641 __DRIimage *image;
642 int i, index;
643
644 if (screen == NULL || names == NULL || num_names != 1)
645 return NULL;
646
647 f = intel_image_format_lookup(fourcc);
648 if (f == NULL)
649 return NULL;
650
651 image = intel_create_image_from_name(screen, width, height,
652 __DRI_IMAGE_FORMAT_NONE,
653 names[0], strides[0],
654 loaderPrivate);
655
656 if (image == NULL)
657 return NULL;
658
659 image->planar_format = f;
660 for (i = 0; i < f->nplanes; i++) {
661 index = f->planes[i].buffer_index;
662 image->offsets[index] = offsets[index];
663 image->strides[index] = strides[index];
664 }
665
666 return image;
667 }
668
669 static __DRIimage *
670 intel_create_image_from_fds(__DRIscreen *screen,
671 int width, int height, int fourcc,
672 int *fds, int num_fds, int *strides, int *offsets,
673 void *loaderPrivate)
674 {
675 struct intel_screen *intelScreen = screen->driverPrivate;
676 struct intel_image_format *f;
677 __DRIimage *image;
678 int i, index;
679
680 if (fds == NULL || num_fds != 1)
681 return NULL;
682
683 f = intel_image_format_lookup(fourcc);
684 if (f == NULL)
685 return NULL;
686
687 if (f->nplanes == 1)
688 image = intel_allocate_image(f->planes[0].dri_format, loaderPrivate);
689 else
690 image = intel_allocate_image(__DRI_IMAGE_FORMAT_NONE, loaderPrivate);
691
692 if (image == NULL)
693 return NULL;
694
695 image->bo = drm_intel_bo_gem_create_from_prime(intelScreen->bufmgr,
696 fds[0],
697 height * strides[0]);
698 if (image->bo == NULL) {
699 free(image);
700 return NULL;
701 }
702 image->width = width;
703 image->height = height;
704 image->pitch = strides[0];
705
706 image->planar_format = f;
707 for (i = 0; i < f->nplanes; i++) {
708 index = f->planes[i].buffer_index;
709 image->offsets[index] = offsets[index];
710 image->strides[index] = strides[index];
711 }
712
713 if (f->nplanes == 1) {
714 image->offset = image->offsets[0];
715 intel_image_warn_if_unaligned(image, __func__);
716 }
717
718 return image;
719 }
720
721 static __DRIimage *
722 intel_create_image_from_dma_bufs(__DRIscreen *screen,
723 int width, int height, int fourcc,
724 int *fds, int num_fds,
725 int *strides, int *offsets,
726 enum __DRIYUVColorSpace yuv_color_space,
727 enum __DRISampleRange sample_range,
728 enum __DRIChromaSiting horizontal_siting,
729 enum __DRIChromaSiting vertical_siting,
730 unsigned *error,
731 void *loaderPrivate)
732 {
733 __DRIimage *image;
734 struct intel_image_format *f = intel_image_format_lookup(fourcc);
735
736 /* For now only packed formats that have native sampling are supported. */
737 if (!f || f->nplanes != 1) {
738 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
739 return NULL;
740 }
741
742 image = intel_create_image_from_fds(screen, width, height, fourcc, fds,
743 num_fds, strides, offsets,
744 loaderPrivate);
745
746 /*
747 * Invalid parameters and any inconsistencies between are assumed to be
748 * checked by the caller. Therefore besides unsupported formats one can fail
749 * only in allocation.
750 */
751 if (!image) {
752 *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
753 return NULL;
754 }
755
756 image->dma_buf_imported = true;
757 image->yuv_color_space = yuv_color_space;
758 image->sample_range = sample_range;
759 image->horizontal_siting = horizontal_siting;
760 image->vertical_siting = vertical_siting;
761
762 *error = __DRI_IMAGE_ERROR_SUCCESS;
763 return image;
764 }
765
766 static __DRIimage *
767 intel_from_planar(__DRIimage *parent, int plane, void *loaderPrivate)
768 {
769 int width, height, offset, stride, dri_format, index;
770 struct intel_image_format *f;
771 __DRIimage *image;
772
773 if (parent == NULL || parent->planar_format == NULL)
774 return NULL;
775
776 f = parent->planar_format;
777
778 if (plane >= f->nplanes)
779 return NULL;
780
781 width = parent->width >> f->planes[plane].width_shift;
782 height = parent->height >> f->planes[plane].height_shift;
783 dri_format = f->planes[plane].dri_format;
784 index = f->planes[plane].buffer_index;
785 offset = parent->offsets[index];
786 stride = parent->strides[index];
787
788 image = intel_allocate_image(dri_format, loaderPrivate);
789 if (image == NULL)
790 return NULL;
791
792 if (offset + height * stride > parent->bo->size) {
793 _mesa_warning(NULL, "intel_create_sub_image: subimage out of bounds");
794 free(image);
795 return NULL;
796 }
797
798 image->bo = parent->bo;
799 drm_intel_bo_reference(parent->bo);
800
801 image->width = width;
802 image->height = height;
803 image->pitch = stride;
804 image->offset = offset;
805
806 intel_image_warn_if_unaligned(image, __func__);
807
808 return image;
809 }
810
811 static const __DRIimageExtension intelImageExtension = {
812 .base = { __DRI_IMAGE, 11 },
813
814 .createImageFromName = intel_create_image_from_name,
815 .createImageFromRenderbuffer = intel_create_image_from_renderbuffer,
816 .destroyImage = intel_destroy_image,
817 .createImage = intel_create_image,
818 .queryImage = intel_query_image,
819 .dupImage = intel_dup_image,
820 .validateUsage = intel_validate_usage,
821 .createImageFromNames = intel_create_image_from_names,
822 .fromPlanar = intel_from_planar,
823 .createImageFromTexture = intel_create_image_from_texture,
824 .createImageFromFds = intel_create_image_from_fds,
825 .createImageFromDmaBufs = intel_create_image_from_dma_bufs,
826 .blitImage = NULL,
827 .getCapabilities = NULL
828 };
829
830 static int
831 brw_query_renderer_integer(__DRIscreen *psp, int param, unsigned int *value)
832 {
833 const struct intel_screen *const intelScreen =
834 (struct intel_screen *) psp->driverPrivate;
835
836 switch (param) {
837 case __DRI2_RENDERER_VENDOR_ID:
838 value[0] = 0x8086;
839 return 0;
840 case __DRI2_RENDERER_DEVICE_ID:
841 value[0] = intelScreen->deviceID;
842 return 0;
843 case __DRI2_RENDERER_ACCELERATED:
844 value[0] = 1;
845 return 0;
846 case __DRI2_RENDERER_VIDEO_MEMORY: {
847 /* Once a batch uses more than 75% of the maximum mappable size, we
848 * assume that there's some fragmentation, and we start doing extra
849 * flushing, etc. That's the big cliff apps will care about.
850 */
851 size_t aper_size;
852 size_t mappable_size;
853
854 drm_intel_get_aperture_sizes(psp->fd, &mappable_size, &aper_size);
855
856 const unsigned gpu_mappable_megabytes =
857 (aper_size / (1024 * 1024)) * 3 / 4;
858
859 const long system_memory_pages = sysconf(_SC_PHYS_PAGES);
860 const long system_page_size = sysconf(_SC_PAGE_SIZE);
861
862 if (system_memory_pages <= 0 || system_page_size <= 0)
863 return -1;
864
865 const uint64_t system_memory_bytes = (uint64_t) system_memory_pages
866 * (uint64_t) system_page_size;
867
868 const unsigned system_memory_megabytes =
869 (unsigned) (system_memory_bytes / (1024 * 1024));
870
871 value[0] = MIN2(system_memory_megabytes, gpu_mappable_megabytes);
872 return 0;
873 }
874 case __DRI2_RENDERER_UNIFIED_MEMORY_ARCHITECTURE:
875 value[0] = 1;
876 return 0;
877 default:
878 return driQueryRendererIntegerCommon(psp, param, value);
879 }
880
881 return -1;
882 }
883
884 static int
885 brw_query_renderer_string(__DRIscreen *psp, int param, const char **value)
886 {
887 const struct intel_screen *intelScreen =
888 (struct intel_screen *) psp->driverPrivate;
889
890 switch (param) {
891 case __DRI2_RENDERER_VENDOR_ID:
892 value[0] = brw_vendor_string;
893 return 0;
894 case __DRI2_RENDERER_DEVICE_ID:
895 value[0] = brw_get_renderer_string(intelScreen->deviceID);
896 return 0;
897 default:
898 break;
899 }
900
901 return -1;
902 }
903
904 static const __DRI2rendererQueryExtension intelRendererQueryExtension = {
905 .base = { __DRI2_RENDERER_QUERY, 1 },
906
907 .queryInteger = brw_query_renderer_integer,
908 .queryString = brw_query_renderer_string
909 };
910
911 static const __DRIrobustnessExtension dri2Robustness = {
912 .base = { __DRI2_ROBUSTNESS, 1 }
913 };
914
915 static const __DRIextension *intelScreenExtensions[] = {
916 &intelTexBufferExtension.base,
917 &intelFenceExtension.base,
918 &intelFlushExtension.base,
919 &intelImageExtension.base,
920 &intelRendererQueryExtension.base,
921 &dri2ConfigQueryExtension.base,
922 NULL
923 };
924
925 static const __DRIextension *intelRobustScreenExtensions[] = {
926 &intelTexBufferExtension.base,
927 &intelFenceExtension.base,
928 &intelFlushExtension.base,
929 &intelImageExtension.base,
930 &intelRendererQueryExtension.base,
931 &dri2ConfigQueryExtension.base,
932 &dri2Robustness.base,
933 NULL
934 };
935
936 static bool
937 intel_get_param(__DRIscreen *psp, int param, int *value)
938 {
939 int ret;
940 struct drm_i915_getparam gp;
941
942 memset(&gp, 0, sizeof(gp));
943 gp.param = param;
944 gp.value = value;
945
946 ret = drmCommandWriteRead(psp->fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
947 if (ret) {
948 if (ret != -EINVAL)
949 _mesa_warning(NULL, "drm_i915_getparam: %d", ret);
950 return false;
951 }
952
953 return true;
954 }
955
956 static bool
957 intel_get_boolean(__DRIscreen *psp, int param)
958 {
959 int value = 0;
960 return intel_get_param(psp, param, &value) && value;
961 }
962
963 static void
964 intelDestroyScreen(__DRIscreen * sPriv)
965 {
966 struct intel_screen *intelScreen = sPriv->driverPrivate;
967
968 dri_bufmgr_destroy(intelScreen->bufmgr);
969 driDestroyOptionInfo(&intelScreen->optionCache);
970
971 ralloc_free(intelScreen);
972 sPriv->driverPrivate = NULL;
973 }
974
975
976 /**
977 * This is called when we need to set up GL rendering to a new X window.
978 */
979 static GLboolean
980 intelCreateBuffer(__DRIscreen * driScrnPriv,
981 __DRIdrawable * driDrawPriv,
982 const struct gl_config * mesaVis, GLboolean isPixmap)
983 {
984 struct intel_renderbuffer *rb;
985 struct intel_screen *screen = (struct intel_screen*) driScrnPriv->driverPrivate;
986 mesa_format rgbFormat;
987 unsigned num_samples = intel_quantize_num_samples(screen, mesaVis->samples);
988 struct gl_framebuffer *fb;
989
990 if (isPixmap)
991 return false;
992
993 fb = CALLOC_STRUCT(gl_framebuffer);
994 if (!fb)
995 return false;
996
997 _mesa_initialize_window_framebuffer(fb, mesaVis);
998
999 if (screen->winsys_msaa_samples_override != -1) {
1000 num_samples = screen->winsys_msaa_samples_override;
1001 fb->Visual.samples = num_samples;
1002 }
1003
1004 if (mesaVis->redBits == 5)
1005 rgbFormat = MESA_FORMAT_B5G6R5_UNORM;
1006 else if (mesaVis->sRGBCapable)
1007 rgbFormat = MESA_FORMAT_B8G8R8A8_SRGB;
1008 else if (mesaVis->alphaBits == 0)
1009 rgbFormat = MESA_FORMAT_B8G8R8X8_UNORM;
1010 else {
1011 rgbFormat = MESA_FORMAT_B8G8R8A8_SRGB;
1012 fb->Visual.sRGBCapable = true;
1013 }
1014
1015 /* setup the hardware-based renderbuffers */
1016 rb = intel_create_renderbuffer(rgbFormat, num_samples);
1017 _mesa_add_renderbuffer(fb, BUFFER_FRONT_LEFT, &rb->Base.Base);
1018
1019 if (mesaVis->doubleBufferMode) {
1020 rb = intel_create_renderbuffer(rgbFormat, num_samples);
1021 _mesa_add_renderbuffer(fb, BUFFER_BACK_LEFT, &rb->Base.Base);
1022 }
1023
1024 /*
1025 * Assert here that the gl_config has an expected depth/stencil bit
1026 * combination: one of d24/s8, d16/s0, d0/s0. (See intelInitScreen2(),
1027 * which constructs the advertised configs.)
1028 */
1029 if (mesaVis->depthBits == 24) {
1030 assert(mesaVis->stencilBits == 8);
1031
1032 if (screen->devinfo->has_hiz_and_separate_stencil) {
1033 rb = intel_create_private_renderbuffer(MESA_FORMAT_Z24_UNORM_X8_UINT,
1034 num_samples);
1035 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
1036 rb = intel_create_private_renderbuffer(MESA_FORMAT_S_UINT8,
1037 num_samples);
1038 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &rb->Base.Base);
1039 } else {
1040 /*
1041 * Use combined depth/stencil. Note that the renderbuffer is
1042 * attached to two attachment points.
1043 */
1044 rb = intel_create_private_renderbuffer(MESA_FORMAT_Z24_UNORM_S8_UINT,
1045 num_samples);
1046 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
1047 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &rb->Base.Base);
1048 }
1049 }
1050 else if (mesaVis->depthBits == 16) {
1051 assert(mesaVis->stencilBits == 0);
1052 rb = intel_create_private_renderbuffer(MESA_FORMAT_Z_UNORM16,
1053 num_samples);
1054 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
1055 }
1056 else {
1057 assert(mesaVis->depthBits == 0);
1058 assert(mesaVis->stencilBits == 0);
1059 }
1060
1061 /* now add any/all software-based renderbuffers we may need */
1062 _swrast_add_soft_renderbuffers(fb,
1063 false, /* never sw color */
1064 false, /* never sw depth */
1065 false, /* never sw stencil */
1066 mesaVis->accumRedBits > 0,
1067 false, /* never sw alpha */
1068 false /* never sw aux */ );
1069 driDrawPriv->driverPrivate = fb;
1070
1071 return true;
1072 }
1073
1074 static void
1075 intelDestroyBuffer(__DRIdrawable * driDrawPriv)
1076 {
1077 struct gl_framebuffer *fb = driDrawPriv->driverPrivate;
1078
1079 _mesa_reference_framebuffer(&fb, NULL);
1080 }
1081
1082 static bool
1083 intel_init_bufmgr(struct intel_screen *intelScreen)
1084 {
1085 __DRIscreen *spriv = intelScreen->driScrnPriv;
1086
1087 intelScreen->no_hw = getenv("INTEL_NO_HW") != NULL;
1088
1089 intelScreen->bufmgr = intel_bufmgr_gem_init(spriv->fd, BATCH_SZ);
1090 if (intelScreen->bufmgr == NULL) {
1091 fprintf(stderr, "[%s:%u] Error initializing buffer manager.\n",
1092 __func__, __LINE__);
1093 return false;
1094 }
1095
1096 drm_intel_bufmgr_gem_enable_fenced_relocs(intelScreen->bufmgr);
1097
1098 if (!intel_get_boolean(spriv, I915_PARAM_HAS_RELAXED_DELTA)) {
1099 fprintf(stderr, "[%s: %u] Kernel 2.6.39 required.\n", __func__, __LINE__);
1100 return false;
1101 }
1102
1103 return true;
1104 }
1105
1106 static bool
1107 intel_detect_swizzling(struct intel_screen *screen)
1108 {
1109 drm_intel_bo *buffer;
1110 unsigned long flags = 0;
1111 unsigned long aligned_pitch;
1112 uint32_t tiling = I915_TILING_X;
1113 uint32_t swizzle_mode = 0;
1114
1115 buffer = drm_intel_bo_alloc_tiled(screen->bufmgr, "swizzle test",
1116 64, 64, 4,
1117 &tiling, &aligned_pitch, flags);
1118 if (buffer == NULL)
1119 return false;
1120
1121 drm_intel_bo_get_tiling(buffer, &tiling, &swizzle_mode);
1122 drm_intel_bo_unreference(buffer);
1123
1124 if (swizzle_mode == I915_BIT_6_SWIZZLE_NONE)
1125 return false;
1126 else
1127 return true;
1128 }
1129
1130 static int
1131 intel_detect_timestamp(struct intel_screen *screen)
1132 {
1133 uint64_t dummy = 0, last = 0;
1134 int upper, lower, loops;
1135
1136 /* On 64bit systems, some old kernels trigger a hw bug resulting in the
1137 * TIMESTAMP register being shifted and the low 32bits always zero.
1138 *
1139 * More recent kernels offer an interface to read the full 36bits
1140 * everywhere.
1141 */
1142 if (drm_intel_reg_read(screen->bufmgr, TIMESTAMP | 1, &dummy) == 0)
1143 return 3;
1144
1145 /* Determine if we have a 32bit or 64bit kernel by inspecting the
1146 * upper 32bits for a rapidly changing timestamp.
1147 */
1148 if (drm_intel_reg_read(screen->bufmgr, TIMESTAMP, &last))
1149 return 0;
1150
1151 upper = lower = 0;
1152 for (loops = 0; loops < 10; loops++) {
1153 /* The TIMESTAMP should change every 80ns, so several round trips
1154 * through the kernel should be enough to advance it.
1155 */
1156 if (drm_intel_reg_read(screen->bufmgr, TIMESTAMP, &dummy))
1157 return 0;
1158
1159 upper += (dummy >> 32) != (last >> 32);
1160 if (upper > 1) /* beware 32bit counter overflow */
1161 return 2; /* upper dword holds the low 32bits of the timestamp */
1162
1163 lower += (dummy & 0xffffffff) != (last & 0xffffffff);
1164 if (lower > 1)
1165 return 1; /* timestamp is unshifted */
1166
1167 last = dummy;
1168 }
1169
1170 /* No advancement? No timestamp! */
1171 return 0;
1172 }
1173
1174 /**
1175 * Return array of MSAA modes supported by the hardware. The array is
1176 * zero-terminated and sorted in decreasing order.
1177 */
1178 const int*
1179 intel_supported_msaa_modes(const struct intel_screen *screen)
1180 {
1181 static const int gen8_modes[] = {8, 4, 2, 0, -1};
1182 static const int gen7_modes[] = {8, 4, 0, -1};
1183 static const int gen6_modes[] = {4, 0, -1};
1184 static const int gen4_modes[] = {0, -1};
1185
1186 if (screen->devinfo->gen >= 8) {
1187 return gen8_modes;
1188 } else if (screen->devinfo->gen >= 7) {
1189 return gen7_modes;
1190 } else if (screen->devinfo->gen == 6) {
1191 return gen6_modes;
1192 } else {
1193 return gen4_modes;
1194 }
1195 }
1196
1197 static __DRIconfig**
1198 intel_screen_make_configs(__DRIscreen *dri_screen)
1199 {
1200 static const mesa_format formats[] = {
1201 MESA_FORMAT_B5G6R5_UNORM,
1202 MESA_FORMAT_B8G8R8A8_UNORM,
1203 MESA_FORMAT_B8G8R8X8_UNORM
1204 };
1205
1206 /* GLX_SWAP_COPY_OML is not supported due to page flipping. */
1207 static const GLenum back_buffer_modes[] = {
1208 GLX_SWAP_UNDEFINED_OML, GLX_NONE,
1209 };
1210
1211 static const uint8_t singlesample_samples[1] = {0};
1212 static const uint8_t multisample_samples[2] = {4, 8};
1213
1214 struct intel_screen *screen = dri_screen->driverPrivate;
1215 const struct brw_device_info *devinfo = screen->devinfo;
1216 uint8_t depth_bits[4], stencil_bits[4];
1217 __DRIconfig **configs = NULL;
1218
1219 /* Generate singlesample configs without accumulation buffer. */
1220 for (unsigned i = 0; i < ARRAY_SIZE(formats); i++) {
1221 __DRIconfig **new_configs;
1222 int num_depth_stencil_bits = 2;
1223
1224 /* Starting with DRI2 protocol version 1.1 we can request a depth/stencil
1225 * buffer that has a different number of bits per pixel than the color
1226 * buffer, gen >= 6 supports this.
1227 */
1228 depth_bits[0] = 0;
1229 stencil_bits[0] = 0;
1230
1231 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
1232 depth_bits[1] = 16;
1233 stencil_bits[1] = 0;
1234 if (devinfo->gen >= 6) {
1235 depth_bits[2] = 24;
1236 stencil_bits[2] = 8;
1237 num_depth_stencil_bits = 3;
1238 }
1239 } else {
1240 depth_bits[1] = 24;
1241 stencil_bits[1] = 8;
1242 }
1243
1244 new_configs = driCreateConfigs(formats[i],
1245 depth_bits,
1246 stencil_bits,
1247 num_depth_stencil_bits,
1248 back_buffer_modes, 2,
1249 singlesample_samples, 1,
1250 false);
1251 configs = driConcatConfigs(configs, new_configs);
1252 }
1253
1254 /* Generate the minimum possible set of configs that include an
1255 * accumulation buffer.
1256 */
1257 for (unsigned i = 0; i < ARRAY_SIZE(formats); i++) {
1258 __DRIconfig **new_configs;
1259
1260 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
1261 depth_bits[0] = 16;
1262 stencil_bits[0] = 0;
1263 } else {
1264 depth_bits[0] = 24;
1265 stencil_bits[0] = 8;
1266 }
1267
1268 new_configs = driCreateConfigs(formats[i],
1269 depth_bits, stencil_bits, 1,
1270 back_buffer_modes, 1,
1271 singlesample_samples, 1,
1272 true);
1273 configs = driConcatConfigs(configs, new_configs);
1274 }
1275
1276 /* Generate multisample configs.
1277 *
1278 * This loop breaks early, and hence is a no-op, on gen < 6.
1279 *
1280 * Multisample configs must follow the singlesample configs in order to
1281 * work around an X server bug present in 1.12. The X server chooses to
1282 * associate the first listed RGBA888-Z24S8 config, regardless of its
1283 * sample count, with the 32-bit depth visual used for compositing.
1284 *
1285 * Only doublebuffer configs with GLX_SWAP_UNDEFINED_OML behavior are
1286 * supported. Singlebuffer configs are not supported because no one wants
1287 * them.
1288 */
1289 for (unsigned i = 0; i < ARRAY_SIZE(formats); i++) {
1290 if (devinfo->gen < 6)
1291 break;
1292
1293 __DRIconfig **new_configs;
1294 const int num_depth_stencil_bits = 2;
1295 int num_msaa_modes = 0;
1296
1297 depth_bits[0] = 0;
1298 stencil_bits[0] = 0;
1299
1300 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
1301 depth_bits[1] = 16;
1302 stencil_bits[1] = 0;
1303 } else {
1304 depth_bits[1] = 24;
1305 stencil_bits[1] = 8;
1306 }
1307
1308 if (devinfo->gen >= 7)
1309 num_msaa_modes = 2;
1310 else if (devinfo->gen == 6)
1311 num_msaa_modes = 1;
1312
1313 new_configs = driCreateConfigs(formats[i],
1314 depth_bits,
1315 stencil_bits,
1316 num_depth_stencil_bits,
1317 back_buffer_modes, 1,
1318 multisample_samples,
1319 num_msaa_modes,
1320 false);
1321 configs = driConcatConfigs(configs, new_configs);
1322 }
1323
1324 if (configs == NULL) {
1325 fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__,
1326 __LINE__);
1327 return NULL;
1328 }
1329
1330 return configs;
1331 }
1332
1333 static void
1334 set_max_gl_versions(struct intel_screen *screen)
1335 {
1336 __DRIscreen *psp = screen->driScrnPriv;
1337
1338 switch (screen->devinfo->gen) {
1339 case 9:
1340 case 8:
1341 case 7:
1342 case 6:
1343 psp->max_gl_core_version = 33;
1344 psp->max_gl_compat_version = 30;
1345 psp->max_gl_es1_version = 11;
1346 psp->max_gl_es2_version = 30;
1347 break;
1348 case 5:
1349 case 4:
1350 psp->max_gl_core_version = 0;
1351 psp->max_gl_compat_version = 21;
1352 psp->max_gl_es1_version = 11;
1353 psp->max_gl_es2_version = 20;
1354 break;
1355 default:
1356 unreachable("unrecognized intel_screen::gen");
1357 }
1358 }
1359
1360 static int
1361 brw_get_revision(int fd)
1362 {
1363 struct drm_i915_getparam gp;
1364 int revision;
1365 int ret;
1366
1367 memset(&gp, 0, sizeof(gp));
1368 gp.param = I915_PARAM_REVISION;
1369 gp.value = &revision;
1370
1371 ret = drmCommandWriteRead(fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
1372 if (ret)
1373 revision = -1;
1374
1375 return revision;
1376 }
1377
1378 /* Drop when RS headers get pulled to libdrm */
1379 #ifndef I915_PARAM_HAS_RESOURCE_STREAMER
1380 #define I915_PARAM_HAS_RESOURCE_STREAMER 36
1381 #endif
1382
1383 /**
1384 * This is the driver specific part of the createNewScreen entry point.
1385 * Called when using DRI2.
1386 *
1387 * \return the struct gl_config supported by this driver
1388 */
1389 static const
1390 __DRIconfig **intelInitScreen2(__DRIscreen *psp)
1391 {
1392 struct intel_screen *intelScreen;
1393
1394 if (psp->image.loader) {
1395 } else if (psp->dri2.loader->base.version <= 2 ||
1396 psp->dri2.loader->getBuffersWithFormat == NULL) {
1397 fprintf(stderr,
1398 "\nERROR! DRI2 loader with getBuffersWithFormat() "
1399 "support required\n");
1400 return false;
1401 }
1402
1403 /* Allocate the private area */
1404 intelScreen = rzalloc(NULL, struct intel_screen);
1405 if (!intelScreen) {
1406 fprintf(stderr, "\nERROR! Allocating private area failed\n");
1407 return false;
1408 }
1409 /* parse information in __driConfigOptions */
1410 driParseOptionInfo(&intelScreen->optionCache, brw_config_options.xml);
1411
1412 intelScreen->driScrnPriv = psp;
1413 psp->driverPrivate = (void *) intelScreen;
1414
1415 if (!intel_init_bufmgr(intelScreen))
1416 return false;
1417
1418 intelScreen->deviceID = drm_intel_bufmgr_gem_get_devid(intelScreen->bufmgr);
1419 intelScreen->devinfo = brw_get_device_info(intelScreen->deviceID,
1420 brw_get_revision(psp->fd));
1421 if (!intelScreen->devinfo)
1422 return false;
1423
1424 brw_process_intel_debug_variable();
1425
1426 if (INTEL_DEBUG & DEBUG_BUFMGR)
1427 dri_bufmgr_set_debug(intelScreen->bufmgr, true);
1428
1429 if ((INTEL_DEBUG & DEBUG_SHADER_TIME) && intelScreen->devinfo->gen < 7) {
1430 fprintf(stderr,
1431 "shader_time debugging requires gen7 (Ivybridge) or better.\n");
1432 INTEL_DEBUG &= ~DEBUG_SHADER_TIME;
1433 }
1434
1435 if (INTEL_DEBUG & DEBUG_AUB)
1436 drm_intel_bufmgr_gem_set_aub_dump(intelScreen->bufmgr, true);
1437
1438 intelScreen->hw_must_use_separate_stencil = intelScreen->devinfo->gen >= 7;
1439
1440 intelScreen->hw_has_swizzling = intel_detect_swizzling(intelScreen);
1441 intelScreen->hw_has_timestamp = intel_detect_timestamp(intelScreen);
1442
1443 const char *force_msaa = getenv("INTEL_FORCE_MSAA");
1444 if (force_msaa) {
1445 intelScreen->winsys_msaa_samples_override =
1446 intel_quantize_num_samples(intelScreen, atoi(force_msaa));
1447 printf("Forcing winsys sample count to %d\n",
1448 intelScreen->winsys_msaa_samples_override);
1449 } else {
1450 intelScreen->winsys_msaa_samples_override = -1;
1451 }
1452
1453 set_max_gl_versions(intelScreen);
1454
1455 /* Notification of GPU resets requires hardware contexts and a kernel new
1456 * enough to support DRM_IOCTL_I915_GET_RESET_STATS. If the ioctl is
1457 * supported, calling it with a context of 0 will either generate EPERM or
1458 * no error. If the ioctl is not supported, it always generate EINVAL.
1459 * Use this to determine whether to advertise the __DRI2_ROBUSTNESS
1460 * extension to the loader.
1461 *
1462 * Don't even try on pre-Gen6, since we don't attempt to use contexts there.
1463 */
1464 if (intelScreen->devinfo->gen >= 6) {
1465 struct drm_i915_reset_stats stats;
1466 memset(&stats, 0, sizeof(stats));
1467
1468 const int ret = drmIoctl(psp->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats);
1469
1470 intelScreen->has_context_reset_notification =
1471 (ret != -1 || errno != EINVAL);
1472 }
1473
1474 struct drm_i915_getparam getparam;
1475 getparam.param = I915_PARAM_CMD_PARSER_VERSION;
1476 getparam.value = &intelScreen->cmd_parser_version;
1477 const int ret = drmIoctl(psp->fd, DRM_IOCTL_I915_GETPARAM, &getparam);
1478 if (ret == -1)
1479 intelScreen->cmd_parser_version = 0;
1480
1481 psp->extensions = !intelScreen->has_context_reset_notification
1482 ? intelScreenExtensions : intelRobustScreenExtensions;
1483
1484 intelScreen->compiler = brw_compiler_create(intelScreen,
1485 intelScreen->devinfo);
1486
1487 if (intelScreen->devinfo->has_resource_streamer) {
1488 int val = -1;
1489 getparam.param = I915_PARAM_HAS_RESOURCE_STREAMER;
1490 getparam.value = &val;
1491
1492 drmIoctl(psp->fd, DRM_IOCTL_I915_GETPARAM, &getparam);
1493 intelScreen->has_resource_streamer = val > 0;
1494 }
1495
1496 return (const __DRIconfig**) intel_screen_make_configs(psp);
1497 }
1498
1499 struct intel_buffer {
1500 __DRIbuffer base;
1501 drm_intel_bo *bo;
1502 };
1503
1504 static __DRIbuffer *
1505 intelAllocateBuffer(__DRIscreen *screen,
1506 unsigned attachment, unsigned format,
1507 int width, int height)
1508 {
1509 struct intel_buffer *intelBuffer;
1510 struct intel_screen *intelScreen = screen->driverPrivate;
1511
1512 assert(attachment == __DRI_BUFFER_FRONT_LEFT ||
1513 attachment == __DRI_BUFFER_BACK_LEFT);
1514
1515 intelBuffer = calloc(1, sizeof *intelBuffer);
1516 if (intelBuffer == NULL)
1517 return NULL;
1518
1519 /* The front and back buffers are color buffers, which are X tiled. */
1520 uint32_t tiling = I915_TILING_X;
1521 unsigned long pitch;
1522 int cpp = format / 8;
1523 intelBuffer->bo = drm_intel_bo_alloc_tiled(intelScreen->bufmgr,
1524 "intelAllocateBuffer",
1525 width,
1526 height,
1527 cpp,
1528 &tiling, &pitch,
1529 BO_ALLOC_FOR_RENDER);
1530
1531 if (intelBuffer->bo == NULL) {
1532 free(intelBuffer);
1533 return NULL;
1534 }
1535
1536 drm_intel_bo_flink(intelBuffer->bo, &intelBuffer->base.name);
1537
1538 intelBuffer->base.attachment = attachment;
1539 intelBuffer->base.cpp = cpp;
1540 intelBuffer->base.pitch = pitch;
1541
1542 return &intelBuffer->base;
1543 }
1544
1545 static void
1546 intelReleaseBuffer(__DRIscreen *screen, __DRIbuffer *buffer)
1547 {
1548 struct intel_buffer *intelBuffer = (struct intel_buffer *) buffer;
1549
1550 drm_intel_bo_unreference(intelBuffer->bo);
1551 free(intelBuffer);
1552 }
1553
1554 static const struct __DriverAPIRec brw_driver_api = {
1555 .InitScreen = intelInitScreen2,
1556 .DestroyScreen = intelDestroyScreen,
1557 .CreateContext = brwCreateContext,
1558 .DestroyContext = intelDestroyContext,
1559 .CreateBuffer = intelCreateBuffer,
1560 .DestroyBuffer = intelDestroyBuffer,
1561 .MakeCurrent = intelMakeCurrent,
1562 .UnbindContext = intelUnbindContext,
1563 .AllocateBuffer = intelAllocateBuffer,
1564 .ReleaseBuffer = intelReleaseBuffer
1565 };
1566
1567 static const struct __DRIDriverVtableExtensionRec brw_vtable = {
1568 .base = { __DRI_DRIVER_VTABLE, 1 },
1569 .vtable = &brw_driver_api,
1570 };
1571
1572 static const __DRIextension *brw_driver_extensions[] = {
1573 &driCoreExtension.base,
1574 &driImageDriverExtension.base,
1575 &driDRI2Extension.base,
1576 &brw_vtable.base,
1577 &brw_config_options.base,
1578 NULL
1579 };
1580
1581 PUBLIC const __DRIextension **__driDriverGetExtensions_i965(void)
1582 {
1583 globalDriverAPI = &brw_driver_api;
1584
1585 return brw_driver_extensions;
1586 }