i965: Introduce a "memory zone" concept on BO allocation.
[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 <drm_fourcc.h>
27 #include <errno.h>
28 #include <time.h>
29 #include <unistd.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 "util/disk_cache.h"
40 #include "brw_defines.h"
41 #include "brw_state.h"
42 #include "compiler/nir/nir.h"
43
44 #include "utils.h"
45 #include "util/disk_cache.h"
46 #include "util/xmlpool.h"
47
48 #include "common/gen_defines.h"
49
50 static const __DRIconfigOptionsExtension brw_config_options = {
51 .base = { __DRI_CONFIG_OPTIONS, 1 },
52 .xml =
53 DRI_CONF_BEGIN
54 DRI_CONF_SECTION_PERFORMANCE
55 /* Options correspond to DRI_CONF_BO_REUSE_DISABLED,
56 * DRI_CONF_BO_REUSE_ALL
57 */
58 DRI_CONF_OPT_BEGIN_V(bo_reuse, enum, 1, "0:1")
59 DRI_CONF_DESC_BEGIN(en, "Buffer object reuse")
60 DRI_CONF_ENUM(0, "Disable buffer object reuse")
61 DRI_CONF_ENUM(1, "Enable reuse of all sizes of buffer objects")
62 DRI_CONF_DESC_END
63 DRI_CONF_OPT_END
64 DRI_CONF_MESA_NO_ERROR("false")
65 DRI_CONF_SECTION_END
66
67 DRI_CONF_SECTION_QUALITY
68 DRI_CONF_PRECISE_TRIG("false")
69
70 DRI_CONF_OPT_BEGIN(clamp_max_samples, int, -1)
71 DRI_CONF_DESC(en, "Clamp the value of GL_MAX_SAMPLES to the "
72 "given integer. If negative, then do not clamp.")
73 DRI_CONF_OPT_END
74 DRI_CONF_SECTION_END
75
76 DRI_CONF_SECTION_DEBUG
77 DRI_CONF_NO_RAST("false")
78 DRI_CONF_ALWAYS_FLUSH_BATCH("false")
79 DRI_CONF_ALWAYS_FLUSH_CACHE("false")
80 DRI_CONF_DISABLE_THROTTLING("false")
81 DRI_CONF_FORCE_GLSL_EXTENSIONS_WARN("false")
82 DRI_CONF_FORCE_GLSL_VERSION(0)
83 DRI_CONF_DISABLE_GLSL_LINE_CONTINUATIONS("false")
84 DRI_CONF_DISABLE_BLEND_FUNC_EXTENDED("false")
85 DRI_CONF_DUAL_COLOR_BLEND_BY_LOCATION("false")
86 DRI_CONF_ALLOW_GLSL_EXTENSION_DIRECTIVE_MIDSHADER("false")
87 DRI_CONF_ALLOW_GLSL_BUILTIN_VARIABLE_REDECLARATION("false")
88 DRI_CONF_ALLOW_GLSL_CROSS_STAGE_INTERPOLATION_MISMATCH("false")
89 DRI_CONF_ALLOW_HIGHER_COMPAT_VERSION("false")
90 DRI_CONF_FORCE_GLSL_ABS_SQRT("false")
91
92 DRI_CONF_OPT_BEGIN_B(shader_precompile, "true")
93 DRI_CONF_DESC(en, "Perform code generation at shader link time.")
94 DRI_CONF_OPT_END
95 DRI_CONF_SECTION_END
96
97 DRI_CONF_SECTION_MISCELLANEOUS
98 DRI_CONF_GLSL_ZERO_INIT("false")
99 DRI_CONF_ALLOW_RGB10_CONFIGS("false")
100 DRI_CONF_SECTION_END
101 DRI_CONF_END
102 };
103
104 #include "intel_batchbuffer.h"
105 #include "intel_buffers.h"
106 #include "brw_bufmgr.h"
107 #include "intel_fbo.h"
108 #include "intel_mipmap_tree.h"
109 #include "intel_screen.h"
110 #include "intel_tex.h"
111 #include "intel_image.h"
112
113 #include "brw_context.h"
114
115 #include "i915_drm.h"
116
117 /**
118 * For debugging purposes, this returns a time in seconds.
119 */
120 double
121 get_time(void)
122 {
123 struct timespec tp;
124
125 clock_gettime(CLOCK_MONOTONIC, &tp);
126
127 return tp.tv_sec + tp.tv_nsec / 1000000000.0;
128 }
129
130 static const __DRItexBufferExtension intelTexBufferExtension = {
131 .base = { __DRI_TEX_BUFFER, 3 },
132
133 .setTexBuffer = intelSetTexBuffer,
134 .setTexBuffer2 = intelSetTexBuffer2,
135 .releaseTexBuffer = intelReleaseTexBuffer,
136 };
137
138 static void
139 intel_dri2_flush_with_flags(__DRIcontext *cPriv,
140 __DRIdrawable *dPriv,
141 unsigned flags,
142 enum __DRI2throttleReason reason)
143 {
144 struct brw_context *brw = cPriv->driverPrivate;
145
146 if (!brw)
147 return;
148
149 struct gl_context *ctx = &brw->ctx;
150
151 FLUSH_VERTICES(ctx, 0);
152
153 if (flags & __DRI2_FLUSH_DRAWABLE)
154 intel_resolve_for_dri2_flush(brw, dPriv);
155
156 if (reason == __DRI2_THROTTLE_SWAPBUFFER)
157 brw->need_swap_throttle = true;
158 if (reason == __DRI2_THROTTLE_FLUSHFRONT)
159 brw->need_flush_throttle = true;
160
161 intel_batchbuffer_flush(brw);
162 }
163
164 /**
165 * Provides compatibility with loaders that only support the older (version
166 * 1-3) flush interface.
167 *
168 * That includes libGL up to Mesa 9.0, and the X Server at least up to 1.13.
169 */
170 static void
171 intel_dri2_flush(__DRIdrawable *drawable)
172 {
173 intel_dri2_flush_with_flags(drawable->driContextPriv, drawable,
174 __DRI2_FLUSH_DRAWABLE,
175 __DRI2_THROTTLE_SWAPBUFFER);
176 }
177
178 static const struct __DRI2flushExtensionRec intelFlushExtension = {
179 .base = { __DRI2_FLUSH, 4 },
180
181 .flush = intel_dri2_flush,
182 .invalidate = dri2InvalidateDrawable,
183 .flush_with_flags = intel_dri2_flush_with_flags,
184 };
185
186 static const struct intel_image_format intel_image_formats[] = {
187 { __DRI_IMAGE_FOURCC_ARGB2101010, __DRI_IMAGE_COMPONENTS_RGBA, 1,
188 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ARGB2101010, 4 } } },
189
190 { __DRI_IMAGE_FOURCC_XRGB2101010, __DRI_IMAGE_COMPONENTS_RGB, 1,
191 { { 0, 0, 0, __DRI_IMAGE_FORMAT_XRGB2101010, 4 } } },
192
193 { __DRI_IMAGE_FOURCC_ARGB8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
194 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ARGB8888, 4 } } },
195
196 { __DRI_IMAGE_FOURCC_ABGR8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
197 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ABGR8888, 4 } } },
198
199 { __DRI_IMAGE_FOURCC_SARGB8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
200 { { 0, 0, 0, __DRI_IMAGE_FORMAT_SARGB8, 4 } } },
201
202 { __DRI_IMAGE_FOURCC_XRGB8888, __DRI_IMAGE_COMPONENTS_RGB, 1,
203 { { 0, 0, 0, __DRI_IMAGE_FORMAT_XRGB8888, 4 }, } },
204
205 { __DRI_IMAGE_FOURCC_XBGR8888, __DRI_IMAGE_COMPONENTS_RGB, 1,
206 { { 0, 0, 0, __DRI_IMAGE_FORMAT_XBGR8888, 4 }, } },
207
208 { __DRI_IMAGE_FOURCC_ARGB1555, __DRI_IMAGE_COMPONENTS_RGBA, 1,
209 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ARGB1555, 2 } } },
210
211 { __DRI_IMAGE_FOURCC_RGB565, __DRI_IMAGE_COMPONENTS_RGB, 1,
212 { { 0, 0, 0, __DRI_IMAGE_FORMAT_RGB565, 2 } } },
213
214 { __DRI_IMAGE_FOURCC_R8, __DRI_IMAGE_COMPONENTS_R, 1,
215 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 }, } },
216
217 { __DRI_IMAGE_FOURCC_R16, __DRI_IMAGE_COMPONENTS_R, 1,
218 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R16, 1 }, } },
219
220 { __DRI_IMAGE_FOURCC_GR88, __DRI_IMAGE_COMPONENTS_RG, 1,
221 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR88, 2 }, } },
222
223 { __DRI_IMAGE_FOURCC_GR1616, __DRI_IMAGE_COMPONENTS_RG, 1,
224 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR1616, 2 }, } },
225
226 { __DRI_IMAGE_FOURCC_YUV410, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
227 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
228 { 1, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 },
229 { 2, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 } } },
230
231 { __DRI_IMAGE_FOURCC_YUV411, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
232 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
233 { 1, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 },
234 { 2, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
235
236 { __DRI_IMAGE_FOURCC_YUV420, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
237 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
238 { 1, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 },
239 { 2, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 } } },
240
241 { __DRI_IMAGE_FOURCC_YUV422, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
242 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
243 { 1, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 },
244 { 2, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
245
246 { __DRI_IMAGE_FOURCC_YUV444, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
247 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
248 { 1, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
249 { 2, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
250
251 { __DRI_IMAGE_FOURCC_YVU410, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
252 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
253 { 2, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 },
254 { 1, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 } } },
255
256 { __DRI_IMAGE_FOURCC_YVU411, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
257 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
258 { 2, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 },
259 { 1, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
260
261 { __DRI_IMAGE_FOURCC_YVU420, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
262 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
263 { 2, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 },
264 { 1, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 } } },
265
266 { __DRI_IMAGE_FOURCC_YVU422, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
267 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
268 { 2, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 },
269 { 1, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
270
271 { __DRI_IMAGE_FOURCC_YVU444, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
272 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
273 { 2, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
274 { 1, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
275
276 { __DRI_IMAGE_FOURCC_NV12, __DRI_IMAGE_COMPONENTS_Y_UV, 2,
277 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
278 { 1, 1, 1, __DRI_IMAGE_FORMAT_GR88, 2 } } },
279
280 { __DRI_IMAGE_FOURCC_NV16, __DRI_IMAGE_COMPONENTS_Y_UV, 2,
281 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
282 { 1, 1, 0, __DRI_IMAGE_FORMAT_GR88, 2 } } },
283
284 /* For YUYV and UYVY buffers, we set up two overlapping DRI images
285 * and treat them as planar buffers in the compositors.
286 * Plane 0 is GR88 and samples YU or YV pairs and places Y into
287 * the R component, while plane 1 is ARGB/ABGR and samples YUYV/UYVY
288 * clusters and places pairs and places U into the G component and
289 * V into A. This lets the texture sampler interpolate the Y
290 * components correctly when sampling from plane 0, and interpolate
291 * U and V correctly when sampling from plane 1. */
292 { __DRI_IMAGE_FOURCC_YUYV, __DRI_IMAGE_COMPONENTS_Y_XUXV, 2,
293 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR88, 2 },
294 { 0, 1, 0, __DRI_IMAGE_FORMAT_ARGB8888, 4 } } },
295 { __DRI_IMAGE_FOURCC_UYVY, __DRI_IMAGE_COMPONENTS_Y_UXVX, 2,
296 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR88, 2 },
297 { 0, 1, 0, __DRI_IMAGE_FORMAT_ABGR8888, 4 } } }
298 };
299
300 static const struct {
301 uint64_t modifier;
302 unsigned since_gen;
303 } supported_modifiers[] = {
304 { .modifier = DRM_FORMAT_MOD_LINEAR , .since_gen = 1 },
305 { .modifier = I915_FORMAT_MOD_X_TILED , .since_gen = 1 },
306 { .modifier = I915_FORMAT_MOD_Y_TILED , .since_gen = 6 },
307 { .modifier = I915_FORMAT_MOD_Y_TILED_CCS , .since_gen = 9 },
308 };
309
310 static bool
311 modifier_is_supported(const struct gen_device_info *devinfo,
312 const struct intel_image_format *fmt, int dri_format,
313 uint64_t modifier)
314 {
315 const struct isl_drm_modifier_info *modinfo =
316 isl_drm_modifier_get_info(modifier);
317 int i;
318
319 /* ISL had better know about the modifier */
320 if (!modinfo)
321 return false;
322
323 if (modinfo->aux_usage == ISL_AUX_USAGE_CCS_E) {
324 /* If INTEL_DEBUG=norbc is set, don't support any CCS_E modifiers */
325 if (unlikely(INTEL_DEBUG & DEBUG_NO_RBC))
326 return false;
327
328 /* CCS_E is not supported for planar images */
329 if (fmt && fmt->nplanes > 1)
330 return false;
331
332 if (fmt) {
333 assert(dri_format == 0);
334 dri_format = fmt->planes[0].dri_format;
335 }
336
337 mesa_format format = driImageFormatToGLFormat(dri_format);
338 format = _mesa_get_srgb_format_linear(format);
339 if (!isl_format_supports_ccs_e(devinfo,
340 brw_isl_format_for_mesa_format(format)))
341 return false;
342 }
343
344 for (i = 0; i < ARRAY_SIZE(supported_modifiers); i++) {
345 if (supported_modifiers[i].modifier != modifier)
346 continue;
347
348 return supported_modifiers[i].since_gen <= devinfo->gen;
349 }
350
351 return false;
352 }
353
354 static uint64_t
355 tiling_to_modifier(uint32_t tiling)
356 {
357 static const uint64_t map[] = {
358 [I915_TILING_NONE] = DRM_FORMAT_MOD_LINEAR,
359 [I915_TILING_X] = I915_FORMAT_MOD_X_TILED,
360 [I915_TILING_Y] = I915_FORMAT_MOD_Y_TILED,
361 };
362
363 assert(tiling < ARRAY_SIZE(map));
364
365 return map[tiling];
366 }
367
368 static void
369 intel_image_warn_if_unaligned(__DRIimage *image, const char *func)
370 {
371 uint32_t tiling, swizzle;
372 brw_bo_get_tiling(image->bo, &tiling, &swizzle);
373
374 if (tiling != I915_TILING_NONE && (image->offset & 0xfff)) {
375 _mesa_warning(NULL, "%s: offset 0x%08x not on tile boundary",
376 func, image->offset);
377 }
378 }
379
380 static const struct intel_image_format *
381 intel_image_format_lookup(int fourcc)
382 {
383 for (unsigned i = 0; i < ARRAY_SIZE(intel_image_formats); i++) {
384 if (intel_image_formats[i].fourcc == fourcc)
385 return &intel_image_formats[i];
386 }
387
388 return NULL;
389 }
390
391 static boolean
392 intel_image_get_fourcc(__DRIimage *image, int *fourcc)
393 {
394 if (image->planar_format) {
395 *fourcc = image->planar_format->fourcc;
396 return true;
397 }
398
399 for (unsigned i = 0; i < ARRAY_SIZE(intel_image_formats); i++) {
400 if (intel_image_formats[i].planes[0].dri_format == image->dri_format) {
401 *fourcc = intel_image_formats[i].fourcc;
402 return true;
403 }
404 }
405 return false;
406 }
407
408 static __DRIimage *
409 intel_allocate_image(struct intel_screen *screen, int dri_format,
410 void *loaderPrivate)
411 {
412 __DRIimage *image;
413
414 image = calloc(1, sizeof *image);
415 if (image == NULL)
416 return NULL;
417
418 image->screen = screen;
419 image->dri_format = dri_format;
420 image->offset = 0;
421
422 image->format = driImageFormatToGLFormat(dri_format);
423 if (dri_format != __DRI_IMAGE_FORMAT_NONE &&
424 image->format == MESA_FORMAT_NONE) {
425 free(image);
426 return NULL;
427 }
428
429 image->internal_format = _mesa_get_format_base_format(image->format);
430 image->data = loaderPrivate;
431
432 return image;
433 }
434
435 /**
436 * Sets up a DRIImage structure to point to a slice out of a miptree.
437 */
438 static void
439 intel_setup_image_from_mipmap_tree(struct brw_context *brw, __DRIimage *image,
440 struct intel_mipmap_tree *mt, GLuint level,
441 GLuint zoffset)
442 {
443 intel_miptree_make_shareable(brw, mt);
444
445 intel_miptree_check_level_layer(mt, level, zoffset);
446
447 image->width = minify(mt->surf.phys_level0_sa.width,
448 level - mt->first_level);
449 image->height = minify(mt->surf.phys_level0_sa.height,
450 level - mt->first_level);
451 image->pitch = mt->surf.row_pitch;
452
453 image->offset = intel_miptree_get_tile_offsets(mt, level, zoffset,
454 &image->tile_x,
455 &image->tile_y);
456
457 brw_bo_unreference(image->bo);
458 image->bo = mt->bo;
459 brw_bo_reference(mt->bo);
460 }
461
462 static __DRIimage *
463 intel_create_image_from_name(__DRIscreen *dri_screen,
464 int width, int height, int format,
465 int name, int pitch, void *loaderPrivate)
466 {
467 struct intel_screen *screen = dri_screen->driverPrivate;
468 __DRIimage *image;
469 int cpp;
470
471 image = intel_allocate_image(screen, format, loaderPrivate);
472 if (image == NULL)
473 return NULL;
474
475 if (image->format == MESA_FORMAT_NONE)
476 cpp = 1;
477 else
478 cpp = _mesa_get_format_bytes(image->format);
479
480 image->width = width;
481 image->height = height;
482 image->pitch = pitch * cpp;
483 image->bo = brw_bo_gem_create_from_name(screen->bufmgr, "image",
484 name);
485 if (!image->bo) {
486 free(image);
487 return NULL;
488 }
489 image->modifier = tiling_to_modifier(image->bo->tiling_mode);
490
491 return image;
492 }
493
494 static __DRIimage *
495 intel_create_image_from_renderbuffer(__DRIcontext *context,
496 int renderbuffer, void *loaderPrivate)
497 {
498 __DRIimage *image;
499 struct brw_context *brw = context->driverPrivate;
500 struct gl_context *ctx = &brw->ctx;
501 struct gl_renderbuffer *rb;
502 struct intel_renderbuffer *irb;
503
504 rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
505 if (!rb) {
506 _mesa_error(ctx, GL_INVALID_OPERATION, "glRenderbufferExternalMESA");
507 return NULL;
508 }
509
510 irb = intel_renderbuffer(rb);
511 intel_miptree_make_shareable(brw, irb->mt);
512 image = calloc(1, sizeof *image);
513 if (image == NULL)
514 return NULL;
515
516 image->internal_format = rb->InternalFormat;
517 image->format = rb->Format;
518 image->modifier = tiling_to_modifier(
519 isl_tiling_to_i915_tiling(irb->mt->surf.tiling));
520 image->offset = 0;
521 image->data = loaderPrivate;
522 brw_bo_unreference(image->bo);
523 image->bo = irb->mt->bo;
524 brw_bo_reference(irb->mt->bo);
525 image->width = rb->Width;
526 image->height = rb->Height;
527 image->pitch = irb->mt->surf.row_pitch;
528 image->dri_format = driGLFormatToImageFormat(image->format);
529 image->has_depthstencil = irb->mt->stencil_mt? true : false;
530
531 rb->NeedsFinishRenderTexture = true;
532 return image;
533 }
534
535 static __DRIimage *
536 intel_create_image_from_texture(__DRIcontext *context, int target,
537 unsigned texture, int zoffset,
538 int level,
539 unsigned *error,
540 void *loaderPrivate)
541 {
542 __DRIimage *image;
543 struct brw_context *brw = context->driverPrivate;
544 struct gl_texture_object *obj;
545 struct intel_texture_object *iobj;
546 GLuint face = 0;
547
548 obj = _mesa_lookup_texture(&brw->ctx, texture);
549 if (!obj || obj->Target != target) {
550 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
551 return NULL;
552 }
553
554 if (target == GL_TEXTURE_CUBE_MAP)
555 face = zoffset;
556
557 _mesa_test_texobj_completeness(&brw->ctx, obj);
558 iobj = intel_texture_object(obj);
559 if (!obj->_BaseComplete || (level > 0 && !obj->_MipmapComplete)) {
560 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
561 return NULL;
562 }
563
564 if (level < obj->BaseLevel || level > obj->_MaxLevel) {
565 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
566 return NULL;
567 }
568
569 if (target == GL_TEXTURE_3D && obj->Image[face][level]->Depth < zoffset) {
570 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
571 return NULL;
572 }
573 image = calloc(1, sizeof *image);
574 if (image == NULL) {
575 *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
576 return NULL;
577 }
578
579 image->internal_format = obj->Image[face][level]->InternalFormat;
580 image->format = obj->Image[face][level]->TexFormat;
581 image->modifier = tiling_to_modifier(
582 isl_tiling_to_i915_tiling(iobj->mt->surf.tiling));
583 image->data = loaderPrivate;
584 intel_setup_image_from_mipmap_tree(brw, image, iobj->mt, level, zoffset);
585 image->dri_format = driGLFormatToImageFormat(image->format);
586 image->has_depthstencil = iobj->mt->stencil_mt? true : false;
587 image->planar_format = iobj->planar_format;
588 if (image->dri_format == MESA_FORMAT_NONE) {
589 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
590 free(image);
591 return NULL;
592 }
593
594 *error = __DRI_IMAGE_ERROR_SUCCESS;
595 return image;
596 }
597
598 static void
599 intel_destroy_image(__DRIimage *image)
600 {
601 brw_bo_unreference(image->bo);
602 free(image);
603 }
604
605 enum modifier_priority {
606 MODIFIER_PRIORITY_INVALID = 0,
607 MODIFIER_PRIORITY_LINEAR,
608 MODIFIER_PRIORITY_X,
609 MODIFIER_PRIORITY_Y,
610 MODIFIER_PRIORITY_Y_CCS,
611 };
612
613 const uint64_t priority_to_modifier[] = {
614 [MODIFIER_PRIORITY_INVALID] = DRM_FORMAT_MOD_INVALID,
615 [MODIFIER_PRIORITY_LINEAR] = DRM_FORMAT_MOD_LINEAR,
616 [MODIFIER_PRIORITY_X] = I915_FORMAT_MOD_X_TILED,
617 [MODIFIER_PRIORITY_Y] = I915_FORMAT_MOD_Y_TILED,
618 [MODIFIER_PRIORITY_Y_CCS] = I915_FORMAT_MOD_Y_TILED_CCS,
619 };
620
621 static uint64_t
622 select_best_modifier(struct gen_device_info *devinfo,
623 int dri_format,
624 const uint64_t *modifiers,
625 const unsigned count)
626 {
627 enum modifier_priority prio = MODIFIER_PRIORITY_INVALID;
628
629 for (int i = 0; i < count; i++) {
630 if (!modifier_is_supported(devinfo, NULL, dri_format, modifiers[i]))
631 continue;
632
633 switch (modifiers[i]) {
634 case I915_FORMAT_MOD_Y_TILED_CCS:
635 prio = MAX2(prio, MODIFIER_PRIORITY_Y_CCS);
636 break;
637 case I915_FORMAT_MOD_Y_TILED:
638 prio = MAX2(prio, MODIFIER_PRIORITY_Y);
639 break;
640 case I915_FORMAT_MOD_X_TILED:
641 prio = MAX2(prio, MODIFIER_PRIORITY_X);
642 break;
643 case DRM_FORMAT_MOD_LINEAR:
644 prio = MAX2(prio, MODIFIER_PRIORITY_LINEAR);
645 break;
646 case DRM_FORMAT_MOD_INVALID:
647 default:
648 break;
649 }
650 }
651
652 return priority_to_modifier[prio];
653 }
654
655 static __DRIimage *
656 intel_create_image_common(__DRIscreen *dri_screen,
657 int width, int height, int format,
658 unsigned int use,
659 const uint64_t *modifiers,
660 unsigned count,
661 void *loaderPrivate)
662 {
663 __DRIimage *image;
664 struct intel_screen *screen = dri_screen->driverPrivate;
665 uint64_t modifier = DRM_FORMAT_MOD_INVALID;
666 bool ok;
667
668 /* Callers of this may specify a modifier, or a dri usage, but not both. The
669 * newer modifier interface deprecates the older usage flags newer modifier
670 * interface deprecates the older usage flags.
671 */
672 assert(!(use && count));
673
674 if (use & __DRI_IMAGE_USE_CURSOR) {
675 if (width != 64 || height != 64)
676 return NULL;
677 modifier = DRM_FORMAT_MOD_LINEAR;
678 }
679
680 if (use & __DRI_IMAGE_USE_LINEAR)
681 modifier = DRM_FORMAT_MOD_LINEAR;
682
683 if (modifier == DRM_FORMAT_MOD_INVALID) {
684 if (modifiers) {
685 /* User requested specific modifiers */
686 modifier = select_best_modifier(&screen->devinfo, format,
687 modifiers, count);
688 if (modifier == DRM_FORMAT_MOD_INVALID)
689 return NULL;
690 } else {
691 /* Historically, X-tiled was the default, and so lack of modifier means
692 * X-tiled.
693 */
694 modifier = I915_FORMAT_MOD_X_TILED;
695 }
696 }
697
698 image = intel_allocate_image(screen, format, loaderPrivate);
699 if (image == NULL)
700 return NULL;
701
702 const struct isl_drm_modifier_info *mod_info =
703 isl_drm_modifier_get_info(modifier);
704
705 struct isl_surf surf;
706 ok = isl_surf_init(&screen->isl_dev, &surf,
707 .dim = ISL_SURF_DIM_2D,
708 .format = brw_isl_format_for_mesa_format(image->format),
709 .width = width,
710 .height = height,
711 .depth = 1,
712 .levels = 1,
713 .array_len = 1,
714 .samples = 1,
715 .usage = ISL_SURF_USAGE_RENDER_TARGET_BIT |
716 ISL_SURF_USAGE_TEXTURE_BIT |
717 ISL_SURF_USAGE_STORAGE_BIT,
718 .tiling_flags = (1 << mod_info->tiling));
719 assert(ok);
720 if (!ok) {
721 free(image);
722 return NULL;
723 }
724
725 struct isl_surf aux_surf;
726 if (mod_info->aux_usage == ISL_AUX_USAGE_CCS_E) {
727 ok = isl_surf_get_ccs_surf(&screen->isl_dev, &surf, &aux_surf, 0);
728 if (!ok) {
729 free(image);
730 return NULL;
731 }
732 } else {
733 assert(mod_info->aux_usage == ISL_AUX_USAGE_NONE);
734 aux_surf.size = 0;
735 }
736
737 /* We request that the bufmgr zero the buffer for us for two reasons:
738 *
739 * 1) If a buffer gets re-used from the pool, we don't want to leak random
740 * garbage from our process to some other.
741 *
742 * 2) For images with CCS_E, we want to ensure that the CCS starts off in
743 * a valid state. A CCS value of 0 indicates that the given block is
744 * in the pass-through state which is what we want.
745 */
746 image->bo = brw_bo_alloc_tiled(screen->bufmgr, "image",
747 surf.size + aux_surf.size,
748 BRW_MEMZONE_OTHER,
749 isl_tiling_to_i915_tiling(mod_info->tiling),
750 surf.row_pitch, BO_ALLOC_ZEROED);
751 if (image->bo == NULL) {
752 free(image);
753 return NULL;
754 }
755 image->width = width;
756 image->height = height;
757 image->pitch = surf.row_pitch;
758 image->modifier = modifier;
759
760 if (aux_surf.size) {
761 image->aux_offset = surf.size;
762 image->aux_pitch = aux_surf.row_pitch;
763 image->aux_size = aux_surf.size;
764 }
765
766 return image;
767 }
768
769 static __DRIimage *
770 intel_create_image(__DRIscreen *dri_screen,
771 int width, int height, int format,
772 unsigned int use,
773 void *loaderPrivate)
774 {
775 return intel_create_image_common(dri_screen, width, height, format, use, NULL, 0,
776 loaderPrivate);
777 }
778
779 static void *
780 intel_map_image(__DRIcontext *context, __DRIimage *image,
781 int x0, int y0, int width, int height,
782 unsigned int flags, int *stride, void **map_info)
783 {
784 struct brw_context *brw = NULL;
785 struct brw_bo *bo = NULL;
786 void *raw_data = NULL;
787 GLuint pix_w = 1;
788 GLuint pix_h = 1;
789 GLint pix_bytes = 1;
790
791 if (!context || !image || !stride || !map_info || *map_info)
792 return NULL;
793
794 if (x0 < 0 || x0 >= image->width || width > image->width - x0)
795 return NULL;
796
797 if (y0 < 0 || y0 >= image->height || height > image->height - y0)
798 return NULL;
799
800 if (flags & MAP_INTERNAL_MASK)
801 return NULL;
802
803 brw = context->driverPrivate;
804 bo = image->bo;
805
806 assert(brw);
807 assert(bo);
808
809 /* DRI flags and GL_MAP.*_BIT flags are the same, so just pass them on. */
810 raw_data = brw_bo_map(brw, bo, flags);
811 if (!raw_data)
812 return NULL;
813
814 _mesa_get_format_block_size(image->format, &pix_w, &pix_h);
815 pix_bytes = _mesa_get_format_bytes(image->format);
816
817 assert(pix_w);
818 assert(pix_h);
819 assert(pix_bytes > 0);
820
821 raw_data += (x0 / pix_w) * pix_bytes + (y0 / pix_h) * image->pitch;
822
823 brw_bo_reference(bo);
824
825 *stride = image->pitch;
826 *map_info = bo;
827
828 return raw_data;
829 }
830
831 static void
832 intel_unmap_image(__DRIcontext *context, __DRIimage *image, void *map_info)
833 {
834 struct brw_bo *bo = map_info;
835
836 brw_bo_unmap(bo);
837 brw_bo_unreference(bo);
838 }
839
840 static __DRIimage *
841 intel_create_image_with_modifiers(__DRIscreen *dri_screen,
842 int width, int height, int format,
843 const uint64_t *modifiers,
844 const unsigned count,
845 void *loaderPrivate)
846 {
847 return intel_create_image_common(dri_screen, width, height, format, 0,
848 modifiers, count, loaderPrivate);
849 }
850
851 static GLboolean
852 intel_query_image(__DRIimage *image, int attrib, int *value)
853 {
854 switch (attrib) {
855 case __DRI_IMAGE_ATTRIB_STRIDE:
856 *value = image->pitch;
857 return true;
858 case __DRI_IMAGE_ATTRIB_HANDLE:
859 *value = brw_bo_export_gem_handle(image->bo);
860 return true;
861 case __DRI_IMAGE_ATTRIB_NAME:
862 return !brw_bo_flink(image->bo, (uint32_t *) value);
863 case __DRI_IMAGE_ATTRIB_FORMAT:
864 *value = image->dri_format;
865 return true;
866 case __DRI_IMAGE_ATTRIB_WIDTH:
867 *value = image->width;
868 return true;
869 case __DRI_IMAGE_ATTRIB_HEIGHT:
870 *value = image->height;
871 return true;
872 case __DRI_IMAGE_ATTRIB_COMPONENTS:
873 if (image->planar_format == NULL)
874 return false;
875 *value = image->planar_format->components;
876 return true;
877 case __DRI_IMAGE_ATTRIB_FD:
878 return !brw_bo_gem_export_to_prime(image->bo, value);
879 case __DRI_IMAGE_ATTRIB_FOURCC:
880 return intel_image_get_fourcc(image, value);
881 case __DRI_IMAGE_ATTRIB_NUM_PLANES:
882 if (isl_drm_modifier_has_aux(image->modifier)) {
883 assert(!image->planar_format || image->planar_format->nplanes == 1);
884 *value = 2;
885 } else if (image->planar_format) {
886 *value = image->planar_format->nplanes;
887 } else {
888 *value = 1;
889 }
890 return true;
891 case __DRI_IMAGE_ATTRIB_OFFSET:
892 *value = image->offset;
893 return true;
894 case __DRI_IMAGE_ATTRIB_MODIFIER_LOWER:
895 *value = (image->modifier & 0xffffffff);
896 return true;
897 case __DRI_IMAGE_ATTRIB_MODIFIER_UPPER:
898 *value = ((image->modifier >> 32) & 0xffffffff);
899 return true;
900
901 default:
902 return false;
903 }
904 }
905
906 static GLboolean
907 intel_query_format_modifier_attribs(__DRIscreen *dri_screen,
908 uint32_t fourcc, uint64_t modifier,
909 int attrib, uint64_t *value)
910 {
911 struct intel_screen *screen = dri_screen->driverPrivate;
912 const struct intel_image_format *f = intel_image_format_lookup(fourcc);
913
914 if (!modifier_is_supported(&screen->devinfo, f, 0, modifier))
915 return false;
916
917 switch (attrib) {
918 case __DRI_IMAGE_FORMAT_MODIFIER_ATTRIB_PLANE_COUNT:
919 *value = isl_drm_modifier_has_aux(modifier) ? 2 : f->nplanes;
920 return true;
921
922 default:
923 return false;
924 }
925 }
926
927 static __DRIimage *
928 intel_dup_image(__DRIimage *orig_image, void *loaderPrivate)
929 {
930 __DRIimage *image;
931
932 image = calloc(1, sizeof *image);
933 if (image == NULL)
934 return NULL;
935
936 brw_bo_reference(orig_image->bo);
937 image->bo = orig_image->bo;
938 image->internal_format = orig_image->internal_format;
939 image->planar_format = orig_image->planar_format;
940 image->dri_format = orig_image->dri_format;
941 image->format = orig_image->format;
942 image->modifier = orig_image->modifier;
943 image->offset = orig_image->offset;
944 image->width = orig_image->width;
945 image->height = orig_image->height;
946 image->pitch = orig_image->pitch;
947 image->tile_x = orig_image->tile_x;
948 image->tile_y = orig_image->tile_y;
949 image->has_depthstencil = orig_image->has_depthstencil;
950 image->data = loaderPrivate;
951 image->dma_buf_imported = orig_image->dma_buf_imported;
952 image->aux_offset = orig_image->aux_offset;
953 image->aux_pitch = orig_image->aux_pitch;
954
955 memcpy(image->strides, orig_image->strides, sizeof(image->strides));
956 memcpy(image->offsets, orig_image->offsets, sizeof(image->offsets));
957
958 return image;
959 }
960
961 static GLboolean
962 intel_validate_usage(__DRIimage *image, unsigned int use)
963 {
964 if (use & __DRI_IMAGE_USE_CURSOR) {
965 if (image->width != 64 || image->height != 64)
966 return GL_FALSE;
967 }
968
969 return GL_TRUE;
970 }
971
972 static __DRIimage *
973 intel_create_image_from_names(__DRIscreen *dri_screen,
974 int width, int height, int fourcc,
975 int *names, int num_names,
976 int *strides, int *offsets,
977 void *loaderPrivate)
978 {
979 const struct intel_image_format *f = NULL;
980 __DRIimage *image;
981 int i, index;
982
983 if (dri_screen == NULL || names == NULL || num_names != 1)
984 return NULL;
985
986 f = intel_image_format_lookup(fourcc);
987 if (f == NULL)
988 return NULL;
989
990 image = intel_create_image_from_name(dri_screen, width, height,
991 __DRI_IMAGE_FORMAT_NONE,
992 names[0], strides[0],
993 loaderPrivate);
994
995 if (image == NULL)
996 return NULL;
997
998 image->planar_format = f;
999 for (i = 0; i < f->nplanes; i++) {
1000 index = f->planes[i].buffer_index;
1001 image->offsets[index] = offsets[index];
1002 image->strides[index] = strides[index];
1003 }
1004
1005 return image;
1006 }
1007
1008 static __DRIimage *
1009 intel_create_image_from_fds_common(__DRIscreen *dri_screen,
1010 int width, int height, int fourcc,
1011 uint64_t modifier, int *fds, int num_fds,
1012 int *strides, int *offsets,
1013 void *loaderPrivate)
1014 {
1015 struct intel_screen *screen = dri_screen->driverPrivate;
1016 const struct intel_image_format *f;
1017 __DRIimage *image;
1018 int i, index;
1019 bool ok;
1020
1021 if (fds == NULL || num_fds < 1)
1022 return NULL;
1023
1024 f = intel_image_format_lookup(fourcc);
1025 if (f == NULL)
1026 return NULL;
1027
1028 if (modifier != DRM_FORMAT_MOD_INVALID &&
1029 !modifier_is_supported(&screen->devinfo, f, 0, modifier))
1030 return NULL;
1031
1032 if (f->nplanes == 1)
1033 image = intel_allocate_image(screen, f->planes[0].dri_format,
1034 loaderPrivate);
1035 else
1036 image = intel_allocate_image(screen, __DRI_IMAGE_FORMAT_NONE,
1037 loaderPrivate);
1038
1039 if (image == NULL)
1040 return NULL;
1041
1042 image->width = width;
1043 image->height = height;
1044 image->pitch = strides[0];
1045
1046 image->planar_format = f;
1047
1048 if (modifier != DRM_FORMAT_MOD_INVALID) {
1049 const struct isl_drm_modifier_info *mod_info =
1050 isl_drm_modifier_get_info(modifier);
1051 uint32_t tiling = isl_tiling_to_i915_tiling(mod_info->tiling);
1052 image->bo = brw_bo_gem_create_from_prime_tiled(screen->bufmgr, fds[0],
1053 tiling, strides[0]);
1054 } else {
1055 image->bo = brw_bo_gem_create_from_prime(screen->bufmgr, fds[0]);
1056 }
1057
1058 if (image->bo == NULL) {
1059 free(image);
1060 return NULL;
1061 }
1062
1063 /* We only support all planes from the same bo.
1064 * brw_bo_gem_create_from_prime() should return the same pointer for all
1065 * fds received here */
1066 for (i = 1; i < num_fds; i++) {
1067 struct brw_bo *aux = brw_bo_gem_create_from_prime(screen->bufmgr, fds[i]);
1068 brw_bo_unreference(aux);
1069 if (aux != image->bo) {
1070 brw_bo_unreference(image->bo);
1071 free(image);
1072 return NULL;
1073 }
1074 }
1075
1076 if (modifier != DRM_FORMAT_MOD_INVALID)
1077 image->modifier = modifier;
1078 else
1079 image->modifier = tiling_to_modifier(image->bo->tiling_mode);
1080
1081 const struct isl_drm_modifier_info *mod_info =
1082 isl_drm_modifier_get_info(image->modifier);
1083
1084 int size = 0;
1085 struct isl_surf surf;
1086 for (i = 0; i < f->nplanes; i++) {
1087 index = f->planes[i].buffer_index;
1088 image->offsets[index] = offsets[index];
1089 image->strides[index] = strides[index];
1090
1091 mesa_format format = driImageFormatToGLFormat(f->planes[i].dri_format);
1092
1093 ok = isl_surf_init(&screen->isl_dev, &surf,
1094 .dim = ISL_SURF_DIM_2D,
1095 .format = brw_isl_format_for_mesa_format(format),
1096 .width = image->width >> f->planes[i].width_shift,
1097 .height = image->height >> f->planes[i].height_shift,
1098 .depth = 1,
1099 .levels = 1,
1100 .array_len = 1,
1101 .samples = 1,
1102 .row_pitch = strides[index],
1103 .usage = ISL_SURF_USAGE_RENDER_TARGET_BIT |
1104 ISL_SURF_USAGE_TEXTURE_BIT |
1105 ISL_SURF_USAGE_STORAGE_BIT,
1106 .tiling_flags = (1 << mod_info->tiling));
1107 if (!ok) {
1108 brw_bo_unreference(image->bo);
1109 free(image);
1110 return NULL;
1111 }
1112
1113 const int end = offsets[index] + surf.size;
1114 if (size < end)
1115 size = end;
1116 }
1117
1118 if (mod_info->aux_usage == ISL_AUX_USAGE_CCS_E) {
1119 /* Even though we initialize surf in the loop above, we know that
1120 * anything with CCS_E will have exactly one plane so surf is properly
1121 * initialized when we get here.
1122 */
1123 assert(f->nplanes == 1);
1124
1125 image->aux_offset = offsets[1];
1126 image->aux_pitch = strides[1];
1127
1128 /* Scanout hardware requires that the CCS be placed after the main
1129 * surface in memory. We consider any CCS that is placed any earlier in
1130 * memory to be invalid and reject it.
1131 *
1132 * At some point in the future, this restriction may be relaxed if the
1133 * hardware becomes less strict but we may need a new modifier for that.
1134 */
1135 assert(size > 0);
1136 if (image->aux_offset < size) {
1137 brw_bo_unreference(image->bo);
1138 free(image);
1139 return NULL;
1140 }
1141
1142 struct isl_surf aux_surf;
1143 ok = isl_surf_get_ccs_surf(&screen->isl_dev, &surf, &aux_surf,
1144 image->aux_pitch);
1145 if (!ok) {
1146 brw_bo_unreference(image->bo);
1147 free(image);
1148 return NULL;
1149 }
1150
1151 image->aux_size = aux_surf.size;
1152
1153 const int end = image->aux_offset + aux_surf.size;
1154 if (size < end)
1155 size = end;
1156 } else {
1157 assert(mod_info->aux_usage == ISL_AUX_USAGE_NONE);
1158 }
1159
1160 /* Check that the requested image actually fits within the BO. 'size'
1161 * is already relative to the offsets, so we don't need to add that. */
1162 if (image->bo->size == 0) {
1163 image->bo->size = size;
1164 } else if (size > image->bo->size) {
1165 brw_bo_unreference(image->bo);
1166 free(image);
1167 return NULL;
1168 }
1169
1170 if (f->nplanes == 1) {
1171 image->offset = image->offsets[0];
1172 intel_image_warn_if_unaligned(image, __func__);
1173 }
1174
1175 return image;
1176 }
1177
1178 static __DRIimage *
1179 intel_create_image_from_fds(__DRIscreen *dri_screen,
1180 int width, int height, int fourcc,
1181 int *fds, int num_fds, int *strides, int *offsets,
1182 void *loaderPrivate)
1183 {
1184 return intel_create_image_from_fds_common(dri_screen, width, height, fourcc,
1185 DRM_FORMAT_MOD_INVALID,
1186 fds, num_fds, strides, offsets,
1187 loaderPrivate);
1188 }
1189
1190 static __DRIimage *
1191 intel_create_image_from_dma_bufs2(__DRIscreen *dri_screen,
1192 int width, int height,
1193 int fourcc, uint64_t modifier,
1194 int *fds, int num_fds,
1195 int *strides, int *offsets,
1196 enum __DRIYUVColorSpace yuv_color_space,
1197 enum __DRISampleRange sample_range,
1198 enum __DRIChromaSiting horizontal_siting,
1199 enum __DRIChromaSiting vertical_siting,
1200 unsigned *error,
1201 void *loaderPrivate)
1202 {
1203 __DRIimage *image;
1204 const struct intel_image_format *f = intel_image_format_lookup(fourcc);
1205
1206 if (!f) {
1207 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
1208 return NULL;
1209 }
1210
1211 image = intel_create_image_from_fds_common(dri_screen, width, height,
1212 fourcc, modifier,
1213 fds, num_fds, strides, offsets,
1214 loaderPrivate);
1215
1216 /*
1217 * Invalid parameters and any inconsistencies between are assumed to be
1218 * checked by the caller. Therefore besides unsupported formats one can fail
1219 * only in allocation.
1220 */
1221 if (!image) {
1222 *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
1223 return NULL;
1224 }
1225
1226 image->dma_buf_imported = true;
1227 image->yuv_color_space = yuv_color_space;
1228 image->sample_range = sample_range;
1229 image->horizontal_siting = horizontal_siting;
1230 image->vertical_siting = vertical_siting;
1231
1232 *error = __DRI_IMAGE_ERROR_SUCCESS;
1233 return image;
1234 }
1235
1236 static __DRIimage *
1237 intel_create_image_from_dma_bufs(__DRIscreen *dri_screen,
1238 int width, int height, int fourcc,
1239 int *fds, int num_fds,
1240 int *strides, int *offsets,
1241 enum __DRIYUVColorSpace yuv_color_space,
1242 enum __DRISampleRange sample_range,
1243 enum __DRIChromaSiting horizontal_siting,
1244 enum __DRIChromaSiting vertical_siting,
1245 unsigned *error,
1246 void *loaderPrivate)
1247 {
1248 return intel_create_image_from_dma_bufs2(dri_screen, width, height,
1249 fourcc, DRM_FORMAT_MOD_INVALID,
1250 fds, num_fds, strides, offsets,
1251 yuv_color_space,
1252 sample_range,
1253 horizontal_siting,
1254 vertical_siting,
1255 error,
1256 loaderPrivate);
1257 }
1258
1259 static GLboolean
1260 intel_query_dma_buf_formats(__DRIscreen *screen, int max,
1261 int *formats, int *count)
1262 {
1263 int i, j = 0;
1264
1265 if (max == 0) {
1266 /* Note, sRGB formats not included. */
1267 *count = ARRAY_SIZE(intel_image_formats) - 2;
1268 return true;
1269 }
1270
1271 for (i = 0; i < (ARRAY_SIZE(intel_image_formats)) && j < max; i++) {
1272 if (intel_image_formats[i].fourcc == __DRI_IMAGE_FOURCC_SARGB8888 ||
1273 intel_image_formats[i].fourcc == __DRI_IMAGE_FOURCC_SABGR8888)
1274 continue;
1275 formats[j++] = intel_image_formats[i].fourcc;
1276 }
1277
1278 *count = j;
1279 return true;
1280 }
1281
1282 static GLboolean
1283 intel_query_dma_buf_modifiers(__DRIscreen *_screen, int fourcc, int max,
1284 uint64_t *modifiers,
1285 unsigned int *external_only,
1286 int *count)
1287 {
1288 struct intel_screen *screen = _screen->driverPrivate;
1289 const struct intel_image_format *f;
1290 int num_mods = 0, i;
1291
1292 f = intel_image_format_lookup(fourcc);
1293 if (f == NULL)
1294 return false;
1295
1296 for (i = 0; i < ARRAY_SIZE(supported_modifiers); i++) {
1297 uint64_t modifier = supported_modifiers[i].modifier;
1298 if (!modifier_is_supported(&screen->devinfo, f, 0, modifier))
1299 continue;
1300
1301 num_mods++;
1302 if (max == 0)
1303 continue;
1304
1305 modifiers[num_mods - 1] = modifier;
1306 if (num_mods >= max)
1307 break;
1308 }
1309
1310 if (external_only != NULL) {
1311 for (i = 0; i < num_mods && i < max; i++) {
1312 if (f->components == __DRI_IMAGE_COMPONENTS_Y_U_V ||
1313 f->components == __DRI_IMAGE_COMPONENTS_Y_UV ||
1314 f->components == __DRI_IMAGE_COMPONENTS_Y_XUXV) {
1315 external_only[i] = GL_TRUE;
1316 }
1317 else {
1318 external_only[i] = GL_FALSE;
1319 }
1320 }
1321 }
1322
1323 *count = num_mods;
1324 return true;
1325 }
1326
1327 static __DRIimage *
1328 intel_from_planar(__DRIimage *parent, int plane, void *loaderPrivate)
1329 {
1330 int width, height, offset, stride, size, dri_format;
1331 __DRIimage *image;
1332
1333 if (parent == NULL)
1334 return NULL;
1335
1336 width = parent->width;
1337 height = parent->height;
1338
1339 const struct intel_image_format *f = parent->planar_format;
1340
1341 if (f && plane < f->nplanes) {
1342 /* Use the planar format definition. */
1343 width >>= f->planes[plane].width_shift;
1344 height >>= f->planes[plane].height_shift;
1345 dri_format = f->planes[plane].dri_format;
1346 int index = f->planes[plane].buffer_index;
1347 offset = parent->offsets[index];
1348 stride = parent->strides[index];
1349 size = height * stride;
1350 } else if (plane == 0) {
1351 /* The only plane of a non-planar image: copy the parent definition
1352 * directly. */
1353 dri_format = parent->dri_format;
1354 offset = parent->offset;
1355 stride = parent->pitch;
1356 size = height * stride;
1357 } else if (plane == 1 && parent->modifier != DRM_FORMAT_MOD_INVALID &&
1358 isl_drm_modifier_has_aux(parent->modifier)) {
1359 /* Auxiliary plane */
1360 dri_format = parent->dri_format;
1361 offset = parent->aux_offset;
1362 stride = parent->aux_pitch;
1363 size = parent->aux_size;
1364 } else {
1365 return NULL;
1366 }
1367
1368 if (offset + size > parent->bo->size) {
1369 _mesa_warning(NULL, "intel_from_planar: subimage out of bounds");
1370 return NULL;
1371 }
1372
1373 image = intel_allocate_image(parent->screen, dri_format, loaderPrivate);
1374 if (image == NULL)
1375 return NULL;
1376
1377 image->bo = parent->bo;
1378 brw_bo_reference(parent->bo);
1379 image->modifier = parent->modifier;
1380
1381 image->width = width;
1382 image->height = height;
1383 image->pitch = stride;
1384 image->offset = offset;
1385
1386 intel_image_warn_if_unaligned(image, __func__);
1387
1388 return image;
1389 }
1390
1391 static const __DRIimageExtension intelImageExtension = {
1392 .base = { __DRI_IMAGE, 16 },
1393
1394 .createImageFromName = intel_create_image_from_name,
1395 .createImageFromRenderbuffer = intel_create_image_from_renderbuffer,
1396 .destroyImage = intel_destroy_image,
1397 .createImage = intel_create_image,
1398 .queryImage = intel_query_image,
1399 .dupImage = intel_dup_image,
1400 .validateUsage = intel_validate_usage,
1401 .createImageFromNames = intel_create_image_from_names,
1402 .fromPlanar = intel_from_planar,
1403 .createImageFromTexture = intel_create_image_from_texture,
1404 .createImageFromFds = intel_create_image_from_fds,
1405 .createImageFromDmaBufs = intel_create_image_from_dma_bufs,
1406 .blitImage = NULL,
1407 .getCapabilities = NULL,
1408 .mapImage = intel_map_image,
1409 .unmapImage = intel_unmap_image,
1410 .createImageWithModifiers = intel_create_image_with_modifiers,
1411 .createImageFromDmaBufs2 = intel_create_image_from_dma_bufs2,
1412 .queryDmaBufFormats = intel_query_dma_buf_formats,
1413 .queryDmaBufModifiers = intel_query_dma_buf_modifiers,
1414 .queryDmaBufFormatModifierAttribs = intel_query_format_modifier_attribs,
1415 };
1416
1417 static uint64_t
1418 get_aperture_size(int fd)
1419 {
1420 struct drm_i915_gem_get_aperture aperture;
1421
1422 if (drmIoctl(fd, DRM_IOCTL_I915_GEM_GET_APERTURE, &aperture) != 0)
1423 return 0;
1424
1425 return aperture.aper_size;
1426 }
1427
1428 static int
1429 brw_query_renderer_integer(__DRIscreen *dri_screen,
1430 int param, unsigned int *value)
1431 {
1432 const struct intel_screen *const screen =
1433 (struct intel_screen *) dri_screen->driverPrivate;
1434
1435 switch (param) {
1436 case __DRI2_RENDERER_VENDOR_ID:
1437 value[0] = 0x8086;
1438 return 0;
1439 case __DRI2_RENDERER_DEVICE_ID:
1440 value[0] = screen->deviceID;
1441 return 0;
1442 case __DRI2_RENDERER_ACCELERATED:
1443 value[0] = 1;
1444 return 0;
1445 case __DRI2_RENDERER_VIDEO_MEMORY: {
1446 /* Once a batch uses more than 75% of the maximum mappable size, we
1447 * assume that there's some fragmentation, and we start doing extra
1448 * flushing, etc. That's the big cliff apps will care about.
1449 */
1450 const unsigned gpu_mappable_megabytes =
1451 screen->aperture_threshold / (1024 * 1024);
1452
1453 const long system_memory_pages = sysconf(_SC_PHYS_PAGES);
1454 const long system_page_size = sysconf(_SC_PAGE_SIZE);
1455
1456 if (system_memory_pages <= 0 || system_page_size <= 0)
1457 return -1;
1458
1459 const uint64_t system_memory_bytes = (uint64_t) system_memory_pages
1460 * (uint64_t) system_page_size;
1461
1462 const unsigned system_memory_megabytes =
1463 (unsigned) (system_memory_bytes / (1024 * 1024));
1464
1465 value[0] = MIN2(system_memory_megabytes, gpu_mappable_megabytes);
1466 return 0;
1467 }
1468 case __DRI2_RENDERER_UNIFIED_MEMORY_ARCHITECTURE:
1469 value[0] = 1;
1470 return 0;
1471 case __DRI2_RENDERER_HAS_TEXTURE_3D:
1472 value[0] = 1;
1473 return 0;
1474 case __DRI2_RENDERER_HAS_CONTEXT_PRIORITY:
1475 value[0] = 0;
1476 if (brw_hw_context_set_priority(screen->bufmgr,
1477 0, GEN_CONTEXT_HIGH_PRIORITY) == 0)
1478 value[0] |= __DRI2_RENDERER_HAS_CONTEXT_PRIORITY_HIGH;
1479 if (brw_hw_context_set_priority(screen->bufmgr,
1480 0, GEN_CONTEXT_LOW_PRIORITY) == 0)
1481 value[0] |= __DRI2_RENDERER_HAS_CONTEXT_PRIORITY_LOW;
1482 /* reset to default last, just in case */
1483 if (brw_hw_context_set_priority(screen->bufmgr,
1484 0, GEN_CONTEXT_MEDIUM_PRIORITY) == 0)
1485 value[0] |= __DRI2_RENDERER_HAS_CONTEXT_PRIORITY_MEDIUM;
1486 return 0;
1487 case __DRI2_RENDERER_HAS_FRAMEBUFFER_SRGB:
1488 value[0] = 1;
1489 return 0;
1490 default:
1491 return driQueryRendererIntegerCommon(dri_screen, param, value);
1492 }
1493
1494 return -1;
1495 }
1496
1497 static int
1498 brw_query_renderer_string(__DRIscreen *dri_screen,
1499 int param, const char **value)
1500 {
1501 const struct intel_screen *screen =
1502 (struct intel_screen *) dri_screen->driverPrivate;
1503
1504 switch (param) {
1505 case __DRI2_RENDERER_VENDOR_ID:
1506 value[0] = brw_vendor_string;
1507 return 0;
1508 case __DRI2_RENDERER_DEVICE_ID:
1509 value[0] = brw_get_renderer_string(screen);
1510 return 0;
1511 default:
1512 break;
1513 }
1514
1515 return -1;
1516 }
1517
1518 static void
1519 brw_set_cache_funcs(__DRIscreen *dri_screen,
1520 __DRIblobCacheSet set, __DRIblobCacheGet get)
1521 {
1522 const struct intel_screen *const screen =
1523 (struct intel_screen *) dri_screen->driverPrivate;
1524
1525 if (!screen->disk_cache)
1526 return;
1527
1528 disk_cache_set_callbacks(screen->disk_cache, set, get);
1529 }
1530
1531 static const __DRI2rendererQueryExtension intelRendererQueryExtension = {
1532 .base = { __DRI2_RENDERER_QUERY, 1 },
1533
1534 .queryInteger = brw_query_renderer_integer,
1535 .queryString = brw_query_renderer_string
1536 };
1537
1538 static const __DRIrobustnessExtension dri2Robustness = {
1539 .base = { __DRI2_ROBUSTNESS, 1 }
1540 };
1541
1542 static const __DRI2blobExtension intelBlobExtension = {
1543 .base = { __DRI2_BLOB, 1 },
1544 .set_cache_funcs = brw_set_cache_funcs
1545 };
1546
1547 static const __DRIextension *screenExtensions[] = {
1548 &intelTexBufferExtension.base,
1549 &intelFenceExtension.base,
1550 &intelFlushExtension.base,
1551 &intelImageExtension.base,
1552 &intelRendererQueryExtension.base,
1553 &dri2ConfigQueryExtension.base,
1554 &dri2NoErrorExtension.base,
1555 &intelBlobExtension.base,
1556 NULL
1557 };
1558
1559 static const __DRIextension *intelRobustScreenExtensions[] = {
1560 &intelTexBufferExtension.base,
1561 &intelFenceExtension.base,
1562 &intelFlushExtension.base,
1563 &intelImageExtension.base,
1564 &intelRendererQueryExtension.base,
1565 &dri2ConfigQueryExtension.base,
1566 &dri2Robustness.base,
1567 &dri2NoErrorExtension.base,
1568 &intelBlobExtension.base,
1569 NULL
1570 };
1571
1572 static int
1573 intel_get_param(struct intel_screen *screen, int param, int *value)
1574 {
1575 int ret = 0;
1576 struct drm_i915_getparam gp;
1577
1578 memset(&gp, 0, sizeof(gp));
1579 gp.param = param;
1580 gp.value = value;
1581
1582 if (drmIoctl(screen->driScrnPriv->fd, DRM_IOCTL_I915_GETPARAM, &gp) == -1) {
1583 ret = -errno;
1584 if (ret != -EINVAL)
1585 _mesa_warning(NULL, "drm_i915_getparam: %d", ret);
1586 }
1587
1588 return ret;
1589 }
1590
1591 static bool
1592 intel_get_boolean(struct intel_screen *screen, int param)
1593 {
1594 int value = 0;
1595 return (intel_get_param(screen, param, &value) == 0) && value;
1596 }
1597
1598 static int
1599 intel_get_integer(struct intel_screen *screen, int param)
1600 {
1601 int value = -1;
1602
1603 if (intel_get_param(screen, param, &value) == 0)
1604 return value;
1605
1606 return -1;
1607 }
1608
1609 static void
1610 intelDestroyScreen(__DRIscreen * sPriv)
1611 {
1612 struct intel_screen *screen = sPriv->driverPrivate;
1613
1614 brw_bufmgr_destroy(screen->bufmgr);
1615 driDestroyOptionInfo(&screen->optionCache);
1616
1617 disk_cache_destroy(screen->disk_cache);
1618
1619 ralloc_free(screen);
1620 sPriv->driverPrivate = NULL;
1621 }
1622
1623
1624 /**
1625 * Create a gl_framebuffer and attach it to __DRIdrawable::driverPrivate.
1626 *
1627 *_This implements driDriverAPI::createNewDrawable, which the DRI layer calls
1628 * when creating a EGLSurface, GLXDrawable, or GLXPixmap. Despite the name,
1629 * this does not allocate GPU memory.
1630 */
1631 static GLboolean
1632 intelCreateBuffer(__DRIscreen *dri_screen,
1633 __DRIdrawable * driDrawPriv,
1634 const struct gl_config * mesaVis, GLboolean isPixmap)
1635 {
1636 struct intel_renderbuffer *rb;
1637 struct intel_screen *screen = (struct intel_screen *)
1638 dri_screen->driverPrivate;
1639 mesa_format rgbFormat;
1640 unsigned num_samples =
1641 intel_quantize_num_samples(screen, mesaVis->samples);
1642
1643 if (isPixmap)
1644 return false;
1645
1646 struct gl_framebuffer *fb = CALLOC_STRUCT(gl_framebuffer);
1647 if (!fb)
1648 return false;
1649
1650 _mesa_initialize_window_framebuffer(fb, mesaVis);
1651
1652 if (screen->winsys_msaa_samples_override != -1) {
1653 num_samples = screen->winsys_msaa_samples_override;
1654 fb->Visual.samples = num_samples;
1655 }
1656
1657 if (mesaVis->redBits == 10 && mesaVis->alphaBits > 0) {
1658 rgbFormat = mesaVis->redMask == 0x3ff00000 ? MESA_FORMAT_B10G10R10A2_UNORM
1659 : MESA_FORMAT_R10G10B10A2_UNORM;
1660 } else if (mesaVis->redBits == 10) {
1661 rgbFormat = mesaVis->redMask == 0x3ff00000 ? MESA_FORMAT_B10G10R10X2_UNORM
1662 : MESA_FORMAT_R10G10B10X2_UNORM;
1663 } else if (mesaVis->redBits == 5) {
1664 rgbFormat = mesaVis->redMask == 0x1f ? MESA_FORMAT_R5G6B5_UNORM
1665 : MESA_FORMAT_B5G6R5_UNORM;
1666 } else if (mesaVis->sRGBCapable) {
1667 rgbFormat = mesaVis->redMask == 0xff ? MESA_FORMAT_R8G8B8A8_SRGB
1668 : MESA_FORMAT_B8G8R8A8_SRGB;
1669 } else if (mesaVis->alphaBits == 0) {
1670 rgbFormat = mesaVis->redMask == 0xff ? MESA_FORMAT_R8G8B8X8_UNORM
1671 : MESA_FORMAT_B8G8R8X8_UNORM;
1672 } else {
1673 rgbFormat = mesaVis->redMask == 0xff ? MESA_FORMAT_R8G8B8A8_SRGB
1674 : MESA_FORMAT_B8G8R8A8_SRGB;
1675 fb->Visual.sRGBCapable = true;
1676 }
1677
1678 /* mesaVis->sRGBCapable was set, user is asking for sRGB */
1679 bool srgb_cap_set = mesaVis->redBits >= 8 && mesaVis->sRGBCapable;
1680
1681 /* setup the hardware-based renderbuffers */
1682 rb = intel_create_winsys_renderbuffer(screen, rgbFormat, num_samples);
1683 _mesa_attach_and_own_rb(fb, BUFFER_FRONT_LEFT, &rb->Base.Base);
1684 rb->need_srgb = srgb_cap_set;
1685
1686 if (mesaVis->doubleBufferMode) {
1687 rb = intel_create_winsys_renderbuffer(screen, rgbFormat, num_samples);
1688 _mesa_attach_and_own_rb(fb, BUFFER_BACK_LEFT, &rb->Base.Base);
1689 rb->need_srgb = srgb_cap_set;
1690 }
1691
1692 /*
1693 * Assert here that the gl_config has an expected depth/stencil bit
1694 * combination: one of d24/s8, d16/s0, d0/s0. (See intelInitScreen2(),
1695 * which constructs the advertised configs.)
1696 */
1697 if (mesaVis->depthBits == 24) {
1698 assert(mesaVis->stencilBits == 8);
1699
1700 if (screen->devinfo.has_hiz_and_separate_stencil) {
1701 rb = intel_create_private_renderbuffer(screen,
1702 MESA_FORMAT_Z24_UNORM_X8_UINT,
1703 num_samples);
1704 _mesa_attach_and_own_rb(fb, BUFFER_DEPTH, &rb->Base.Base);
1705 rb = intel_create_private_renderbuffer(screen, MESA_FORMAT_S_UINT8,
1706 num_samples);
1707 _mesa_attach_and_own_rb(fb, BUFFER_STENCIL, &rb->Base.Base);
1708 } else {
1709 /*
1710 * Use combined depth/stencil. Note that the renderbuffer is
1711 * attached to two attachment points.
1712 */
1713 rb = intel_create_private_renderbuffer(screen,
1714 MESA_FORMAT_Z24_UNORM_S8_UINT,
1715 num_samples);
1716 _mesa_attach_and_own_rb(fb, BUFFER_DEPTH, &rb->Base.Base);
1717 _mesa_attach_and_reference_rb(fb, BUFFER_STENCIL, &rb->Base.Base);
1718 }
1719 }
1720 else if (mesaVis->depthBits == 16) {
1721 assert(mesaVis->stencilBits == 0);
1722 rb = intel_create_private_renderbuffer(screen, MESA_FORMAT_Z_UNORM16,
1723 num_samples);
1724 _mesa_attach_and_own_rb(fb, BUFFER_DEPTH, &rb->Base.Base);
1725 }
1726 else {
1727 assert(mesaVis->depthBits == 0);
1728 assert(mesaVis->stencilBits == 0);
1729 }
1730
1731 /* now add any/all software-based renderbuffers we may need */
1732 _swrast_add_soft_renderbuffers(fb,
1733 false, /* never sw color */
1734 false, /* never sw depth */
1735 false, /* never sw stencil */
1736 mesaVis->accumRedBits > 0,
1737 false, /* never sw alpha */
1738 false /* never sw aux */ );
1739 driDrawPriv->driverPrivate = fb;
1740
1741 return true;
1742 }
1743
1744 static void
1745 intelDestroyBuffer(__DRIdrawable * driDrawPriv)
1746 {
1747 struct gl_framebuffer *fb = driDrawPriv->driverPrivate;
1748
1749 _mesa_reference_framebuffer(&fb, NULL);
1750 }
1751
1752 static void
1753 intel_cs_timestamp_frequency(struct intel_screen *screen)
1754 {
1755 /* We shouldn't need to update gen_device_info.timestamp_frequency prior to
1756 * gen10, PCI-id is enough to figure it out.
1757 */
1758 assert(screen->devinfo.gen >= 10);
1759
1760 int ret, freq;
1761
1762 ret = intel_get_param(screen, I915_PARAM_CS_TIMESTAMP_FREQUENCY,
1763 &freq);
1764 if (ret < 0) {
1765 _mesa_warning(NULL,
1766 "Kernel 4.15 required to read the CS timestamp frequency.\n");
1767 return;
1768 }
1769
1770 screen->devinfo.timestamp_frequency = freq;
1771 }
1772
1773 static void
1774 intel_detect_sseu(struct intel_screen *screen)
1775 {
1776 assert(screen->devinfo.gen >= 8);
1777 int ret;
1778
1779 screen->subslice_total = -1;
1780 screen->eu_total = -1;
1781
1782 ret = intel_get_param(screen, I915_PARAM_SUBSLICE_TOTAL,
1783 &screen->subslice_total);
1784 if (ret < 0 && ret != -EINVAL)
1785 goto err_out;
1786
1787 ret = intel_get_param(screen,
1788 I915_PARAM_EU_TOTAL, &screen->eu_total);
1789 if (ret < 0 && ret != -EINVAL)
1790 goto err_out;
1791
1792 /* Without this information, we cannot get the right Braswell brandstrings,
1793 * and we have to use conservative numbers for GPGPU on many platforms, but
1794 * otherwise, things will just work.
1795 */
1796 if (screen->subslice_total < 1 || screen->eu_total < 1)
1797 _mesa_warning(NULL,
1798 "Kernel 4.1 required to properly query GPU properties.\n");
1799
1800 return;
1801
1802 err_out:
1803 screen->subslice_total = -1;
1804 screen->eu_total = -1;
1805 _mesa_warning(NULL, "Failed to query GPU properties (%s).\n", strerror(-ret));
1806 }
1807
1808 static bool
1809 intel_init_bufmgr(struct intel_screen *screen)
1810 {
1811 __DRIscreen *dri_screen = screen->driScrnPriv;
1812
1813 if (getenv("INTEL_NO_HW") != NULL)
1814 screen->no_hw = true;
1815
1816 screen->bufmgr = brw_bufmgr_init(&screen->devinfo, dri_screen->fd);
1817 if (screen->bufmgr == NULL) {
1818 fprintf(stderr, "[%s:%u] Error initializing buffer manager.\n",
1819 __func__, __LINE__);
1820 return false;
1821 }
1822
1823 if (!intel_get_boolean(screen, I915_PARAM_HAS_EXEC_NO_RELOC)) {
1824 fprintf(stderr, "[%s: %u] Kernel 3.9 required.\n", __func__, __LINE__);
1825 return false;
1826 }
1827
1828 return true;
1829 }
1830
1831 static bool
1832 intel_detect_swizzling(struct intel_screen *screen)
1833 {
1834 uint32_t tiling = I915_TILING_X;
1835 uint32_t swizzle_mode = 0;
1836 struct brw_bo *buffer =
1837 brw_bo_alloc_tiled(screen->bufmgr, "swizzle test", 32768,
1838 BRW_MEMZONE_OTHER, tiling, 512, 0);
1839 if (buffer == NULL)
1840 return false;
1841
1842 brw_bo_get_tiling(buffer, &tiling, &swizzle_mode);
1843 brw_bo_unreference(buffer);
1844
1845 return swizzle_mode != I915_BIT_6_SWIZZLE_NONE;
1846 }
1847
1848 static int
1849 intel_detect_timestamp(struct intel_screen *screen)
1850 {
1851 uint64_t dummy = 0, last = 0;
1852 int upper, lower, loops;
1853
1854 /* On 64bit systems, some old kernels trigger a hw bug resulting in the
1855 * TIMESTAMP register being shifted and the low 32bits always zero.
1856 *
1857 * More recent kernels offer an interface to read the full 36bits
1858 * everywhere.
1859 */
1860 if (brw_reg_read(screen->bufmgr, TIMESTAMP | 1, &dummy) == 0)
1861 return 3;
1862
1863 /* Determine if we have a 32bit or 64bit kernel by inspecting the
1864 * upper 32bits for a rapidly changing timestamp.
1865 */
1866 if (brw_reg_read(screen->bufmgr, TIMESTAMP, &last))
1867 return 0;
1868
1869 upper = lower = 0;
1870 for (loops = 0; loops < 10; loops++) {
1871 /* The TIMESTAMP should change every 80ns, so several round trips
1872 * through the kernel should be enough to advance it.
1873 */
1874 if (brw_reg_read(screen->bufmgr, TIMESTAMP, &dummy))
1875 return 0;
1876
1877 upper += (dummy >> 32) != (last >> 32);
1878 if (upper > 1) /* beware 32bit counter overflow */
1879 return 2; /* upper dword holds the low 32bits of the timestamp */
1880
1881 lower += (dummy & 0xffffffff) != (last & 0xffffffff);
1882 if (lower > 1)
1883 return 1; /* timestamp is unshifted */
1884
1885 last = dummy;
1886 }
1887
1888 /* No advancement? No timestamp! */
1889 return 0;
1890 }
1891
1892 /**
1893 * Test if we can use MI_LOAD_REGISTER_MEM from an untrusted batchbuffer.
1894 *
1895 * Some combinations of hardware and kernel versions allow this feature,
1896 * while others don't. Instead of trying to enumerate every case, just
1897 * try and write a register and see if works.
1898 */
1899 static bool
1900 intel_detect_pipelined_register(struct intel_screen *screen,
1901 int reg, uint32_t expected_value, bool reset)
1902 {
1903 if (screen->no_hw)
1904 return false;
1905
1906 struct brw_bo *results, *bo;
1907 uint32_t *batch;
1908 uint32_t offset = 0;
1909 void *map;
1910 bool success = false;
1911
1912 /* Create a zero'ed temporary buffer for reading our results */
1913 results = brw_bo_alloc(screen->bufmgr, "registers", 4096, BRW_MEMZONE_OTHER);
1914 if (results == NULL)
1915 goto err;
1916
1917 bo = brw_bo_alloc(screen->bufmgr, "batchbuffer", 4096, BRW_MEMZONE_OTHER);
1918 if (bo == NULL)
1919 goto err_results;
1920
1921 map = brw_bo_map(NULL, bo, MAP_WRITE);
1922 if (!map)
1923 goto err_batch;
1924
1925 batch = map;
1926
1927 /* Write the register. */
1928 *batch++ = MI_LOAD_REGISTER_IMM | (3 - 2);
1929 *batch++ = reg;
1930 *batch++ = expected_value;
1931
1932 /* Save the register's value back to the buffer. */
1933 *batch++ = MI_STORE_REGISTER_MEM | (3 - 2);
1934 *batch++ = reg;
1935 struct drm_i915_gem_relocation_entry reloc = {
1936 .offset = (char *) batch - (char *) map,
1937 .delta = offset * sizeof(uint32_t),
1938 .target_handle = results->gem_handle,
1939 .read_domains = I915_GEM_DOMAIN_INSTRUCTION,
1940 .write_domain = I915_GEM_DOMAIN_INSTRUCTION,
1941 };
1942 *batch++ = reloc.presumed_offset + reloc.delta;
1943
1944 /* And afterwards clear the register */
1945 if (reset) {
1946 *batch++ = MI_LOAD_REGISTER_IMM | (3 - 2);
1947 *batch++ = reg;
1948 *batch++ = 0;
1949 }
1950
1951 *batch++ = MI_BATCH_BUFFER_END;
1952
1953 struct drm_i915_gem_exec_object2 exec_objects[2] = {
1954 {
1955 .handle = results->gem_handle,
1956 },
1957 {
1958 .handle = bo->gem_handle,
1959 .relocation_count = 1,
1960 .relocs_ptr = (uintptr_t) &reloc,
1961 }
1962 };
1963
1964 struct drm_i915_gem_execbuffer2 execbuf = {
1965 .buffers_ptr = (uintptr_t) exec_objects,
1966 .buffer_count = 2,
1967 .batch_len = ALIGN((char *) batch - (char *) map, 8),
1968 .flags = I915_EXEC_RENDER,
1969 };
1970
1971 /* Don't bother with error checking - if the execbuf fails, the
1972 * value won't be written and we'll just report that there's no access.
1973 */
1974 __DRIscreen *dri_screen = screen->driScrnPriv;
1975 drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf);
1976
1977 /* Check whether the value got written. */
1978 void *results_map = brw_bo_map(NULL, results, MAP_READ);
1979 if (results_map) {
1980 success = *((uint32_t *)results_map + offset) == expected_value;
1981 brw_bo_unmap(results);
1982 }
1983
1984 err_batch:
1985 brw_bo_unreference(bo);
1986 err_results:
1987 brw_bo_unreference(results);
1988 err:
1989 return success;
1990 }
1991
1992 static bool
1993 intel_detect_pipelined_so(struct intel_screen *screen)
1994 {
1995 const struct gen_device_info *devinfo = &screen->devinfo;
1996
1997 /* Supposedly, Broadwell just works. */
1998 if (devinfo->gen >= 8)
1999 return true;
2000
2001 if (devinfo->gen <= 6)
2002 return false;
2003
2004 /* See the big explanation about command parser versions below */
2005 if (screen->cmd_parser_version >= (devinfo->is_haswell ? 7 : 2))
2006 return true;
2007
2008 /* We use SO_WRITE_OFFSET0 since you're supposed to write it (unlike the
2009 * statistics registers), and we already reset it to zero before using it.
2010 */
2011 return intel_detect_pipelined_register(screen,
2012 GEN7_SO_WRITE_OFFSET(0),
2013 0x1337d0d0,
2014 false);
2015 }
2016
2017 /**
2018 * Return array of MSAA modes supported by the hardware. The array is
2019 * zero-terminated and sorted in decreasing order.
2020 */
2021 const int*
2022 intel_supported_msaa_modes(const struct intel_screen *screen)
2023 {
2024 static const int gen9_modes[] = {16, 8, 4, 2, 0, -1};
2025 static const int gen8_modes[] = {8, 4, 2, 0, -1};
2026 static const int gen7_modes[] = {8, 4, 0, -1};
2027 static const int gen6_modes[] = {4, 0, -1};
2028 static const int gen4_modes[] = {0, -1};
2029
2030 if (screen->devinfo.gen >= 9) {
2031 return gen9_modes;
2032 } else if (screen->devinfo.gen >= 8) {
2033 return gen8_modes;
2034 } else if (screen->devinfo.gen >= 7) {
2035 return gen7_modes;
2036 } else if (screen->devinfo.gen == 6) {
2037 return gen6_modes;
2038 } else {
2039 return gen4_modes;
2040 }
2041 }
2042
2043 static unsigned
2044 intel_loader_get_cap(const __DRIscreen *dri_screen, enum dri_loader_cap cap)
2045 {
2046 if (dri_screen->dri2.loader && dri_screen->dri2.loader->base.version >= 4 &&
2047 dri_screen->dri2.loader->getCapability)
2048 return dri_screen->dri2.loader->getCapability(dri_screen->loaderPrivate, cap);
2049
2050 if (dri_screen->image.loader && dri_screen->image.loader->base.version >= 2 &&
2051 dri_screen->image.loader->getCapability)
2052 return dri_screen->image.loader->getCapability(dri_screen->loaderPrivate, cap);
2053
2054 return 0;
2055 }
2056
2057 static __DRIconfig**
2058 intel_screen_make_configs(__DRIscreen *dri_screen)
2059 {
2060 static const mesa_format formats[] = {
2061 MESA_FORMAT_B5G6R5_UNORM,
2062 MESA_FORMAT_B8G8R8A8_UNORM,
2063 MESA_FORMAT_B8G8R8X8_UNORM,
2064
2065 MESA_FORMAT_B8G8R8A8_SRGB,
2066
2067 /* For 10 bpc, 30 bit depth framebuffers. */
2068 MESA_FORMAT_B10G10R10A2_UNORM,
2069 MESA_FORMAT_B10G10R10X2_UNORM,
2070
2071 /* The 32-bit RGBA format must not precede the 32-bit BGRA format.
2072 * Likewise for RGBX and BGRX. Otherwise, the GLX client and the GLX
2073 * server may disagree on which format the GLXFBConfig represents,
2074 * resulting in swapped color channels.
2075 *
2076 * The problem, as of 2017-05-30:
2077 * When matching a GLXFBConfig to a __DRIconfig, GLX ignores the channel
2078 * order and chooses the first __DRIconfig with the expected channel
2079 * sizes. Specifically, GLX compares the GLXFBConfig's and __DRIconfig's
2080 * __DRI_ATTRIB_{CHANNEL}_SIZE but ignores __DRI_ATTRIB_{CHANNEL}_MASK.
2081 *
2082 * EGL does not suffer from this problem. It correctly compares the
2083 * channel masks when matching EGLConfig to __DRIconfig.
2084 */
2085
2086 /* Required by Android, for HAL_PIXEL_FORMAT_RGBA_8888. */
2087 MESA_FORMAT_R8G8B8A8_UNORM,
2088
2089 /* Required by Android, for HAL_PIXEL_FORMAT_RGBX_8888. */
2090 MESA_FORMAT_R8G8B8X8_UNORM,
2091
2092 MESA_FORMAT_R8G8B8A8_SRGB,
2093 };
2094
2095 /* GLX_SWAP_COPY_OML is not supported due to page flipping. */
2096 static const GLenum back_buffer_modes[] = {
2097 __DRI_ATTRIB_SWAP_UNDEFINED, __DRI_ATTRIB_SWAP_NONE
2098 };
2099
2100 static const uint8_t singlesample_samples[1] = {0};
2101
2102 struct intel_screen *screen = dri_screen->driverPrivate;
2103 const struct gen_device_info *devinfo = &screen->devinfo;
2104 uint8_t depth_bits[4], stencil_bits[4];
2105 __DRIconfig **configs = NULL;
2106
2107 /* Expose only BGRA ordering if the loader doesn't support RGBA ordering. */
2108 unsigned num_formats;
2109 if (intel_loader_get_cap(dri_screen, DRI_LOADER_CAP_RGBA_ORDERING))
2110 num_formats = ARRAY_SIZE(formats);
2111 else
2112 num_formats = ARRAY_SIZE(formats) - 3; /* all - RGBA_ORDERING formats */
2113
2114 /* Shall we expose 10 bpc formats? */
2115 bool allow_rgb10_configs = driQueryOptionb(&screen->optionCache,
2116 "allow_rgb10_configs");
2117
2118 /* Generate singlesample configs without accumulation buffer. */
2119 for (unsigned i = 0; i < num_formats; i++) {
2120 __DRIconfig **new_configs;
2121 int num_depth_stencil_bits = 2;
2122
2123 if (!allow_rgb10_configs &&
2124 (formats[i] == MESA_FORMAT_B10G10R10A2_UNORM ||
2125 formats[i] == MESA_FORMAT_B10G10R10X2_UNORM))
2126 continue;
2127
2128 /* Starting with DRI2 protocol version 1.1 we can request a depth/stencil
2129 * buffer that has a different number of bits per pixel than the color
2130 * buffer, gen >= 6 supports this.
2131 */
2132 depth_bits[0] = 0;
2133 stencil_bits[0] = 0;
2134
2135 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
2136 depth_bits[1] = 16;
2137 stencil_bits[1] = 0;
2138 if (devinfo->gen >= 6) {
2139 depth_bits[2] = 24;
2140 stencil_bits[2] = 8;
2141 num_depth_stencil_bits = 3;
2142 }
2143 } else {
2144 depth_bits[1] = 24;
2145 stencil_bits[1] = 8;
2146 }
2147
2148 new_configs = driCreateConfigs(formats[i],
2149 depth_bits,
2150 stencil_bits,
2151 num_depth_stencil_bits,
2152 back_buffer_modes, 2,
2153 singlesample_samples, 1,
2154 false, false);
2155 configs = driConcatConfigs(configs, new_configs);
2156 }
2157
2158 /* Generate the minimum possible set of configs that include an
2159 * accumulation buffer.
2160 */
2161 for (unsigned i = 0; i < num_formats; i++) {
2162 __DRIconfig **new_configs;
2163
2164 if (!allow_rgb10_configs &&
2165 (formats[i] == MESA_FORMAT_B10G10R10A2_UNORM ||
2166 formats[i] == MESA_FORMAT_B10G10R10X2_UNORM))
2167 continue;
2168
2169 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
2170 depth_bits[0] = 16;
2171 stencil_bits[0] = 0;
2172 } else {
2173 depth_bits[0] = 24;
2174 stencil_bits[0] = 8;
2175 }
2176
2177 new_configs = driCreateConfigs(formats[i],
2178 depth_bits, stencil_bits, 1,
2179 back_buffer_modes, 1,
2180 singlesample_samples, 1,
2181 true, false);
2182 configs = driConcatConfigs(configs, new_configs);
2183 }
2184
2185 /* Generate multisample configs.
2186 *
2187 * This loop breaks early, and hence is a no-op, on gen < 6.
2188 *
2189 * Multisample configs must follow the singlesample configs in order to
2190 * work around an X server bug present in 1.12. The X server chooses to
2191 * associate the first listed RGBA888-Z24S8 config, regardless of its
2192 * sample count, with the 32-bit depth visual used for compositing.
2193 *
2194 * Only doublebuffer configs with GLX_SWAP_UNDEFINED_OML behavior are
2195 * supported. Singlebuffer configs are not supported because no one wants
2196 * them.
2197 */
2198 for (unsigned i = 0; i < num_formats; i++) {
2199 if (devinfo->gen < 6)
2200 break;
2201
2202 if (!allow_rgb10_configs &&
2203 (formats[i] == MESA_FORMAT_B10G10R10A2_UNORM ||
2204 formats[i] == MESA_FORMAT_B10G10R10X2_UNORM))
2205 continue;
2206
2207 __DRIconfig **new_configs;
2208 const int num_depth_stencil_bits = 2;
2209 int num_msaa_modes = 0;
2210 const uint8_t *multisample_samples = NULL;
2211
2212 depth_bits[0] = 0;
2213 stencil_bits[0] = 0;
2214
2215 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
2216 depth_bits[1] = 16;
2217 stencil_bits[1] = 0;
2218 } else {
2219 depth_bits[1] = 24;
2220 stencil_bits[1] = 8;
2221 }
2222
2223 if (devinfo->gen >= 9) {
2224 static const uint8_t multisample_samples_gen9[] = {2, 4, 8, 16};
2225 multisample_samples = multisample_samples_gen9;
2226 num_msaa_modes = ARRAY_SIZE(multisample_samples_gen9);
2227 } else if (devinfo->gen == 8) {
2228 static const uint8_t multisample_samples_gen8[] = {2, 4, 8};
2229 multisample_samples = multisample_samples_gen8;
2230 num_msaa_modes = ARRAY_SIZE(multisample_samples_gen8);
2231 } else if (devinfo->gen == 7) {
2232 static const uint8_t multisample_samples_gen7[] = {4, 8};
2233 multisample_samples = multisample_samples_gen7;
2234 num_msaa_modes = ARRAY_SIZE(multisample_samples_gen7);
2235 } else if (devinfo->gen == 6) {
2236 static const uint8_t multisample_samples_gen6[] = {4};
2237 multisample_samples = multisample_samples_gen6;
2238 num_msaa_modes = ARRAY_SIZE(multisample_samples_gen6);
2239 }
2240
2241 new_configs = driCreateConfigs(formats[i],
2242 depth_bits,
2243 stencil_bits,
2244 num_depth_stencil_bits,
2245 back_buffer_modes, 1,
2246 multisample_samples,
2247 num_msaa_modes,
2248 false, false);
2249 configs = driConcatConfigs(configs, new_configs);
2250 }
2251
2252 if (configs == NULL) {
2253 fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__,
2254 __LINE__);
2255 return NULL;
2256 }
2257
2258 return configs;
2259 }
2260
2261 static void
2262 set_max_gl_versions(struct intel_screen *screen)
2263 {
2264 __DRIscreen *dri_screen = screen->driScrnPriv;
2265 const bool has_astc = screen->devinfo.gen >= 9;
2266
2267 switch (screen->devinfo.gen) {
2268 case 11:
2269 case 10:
2270 case 9:
2271 case 8:
2272 dri_screen->max_gl_core_version = 45;
2273 dri_screen->max_gl_compat_version = 30;
2274 dri_screen->max_gl_es1_version = 11;
2275 dri_screen->max_gl_es2_version = has_astc ? 32 : 31;
2276 break;
2277 case 7:
2278 dri_screen->max_gl_core_version = 33;
2279 if (can_do_pipelined_register_writes(screen)) {
2280 dri_screen->max_gl_core_version = 42;
2281 if (screen->devinfo.is_haswell && can_do_compute_dispatch(screen))
2282 dri_screen->max_gl_core_version = 43;
2283 if (screen->devinfo.is_haswell && can_do_mi_math_and_lrr(screen))
2284 dri_screen->max_gl_core_version = 45;
2285 }
2286 dri_screen->max_gl_compat_version = 30;
2287 dri_screen->max_gl_es1_version = 11;
2288 dri_screen->max_gl_es2_version = screen->devinfo.is_haswell ? 31 : 30;
2289 break;
2290 case 6:
2291 dri_screen->max_gl_core_version = 33;
2292 dri_screen->max_gl_compat_version = 30;
2293 dri_screen->max_gl_es1_version = 11;
2294 dri_screen->max_gl_es2_version = 30;
2295 break;
2296 case 5:
2297 case 4:
2298 dri_screen->max_gl_core_version = 0;
2299 dri_screen->max_gl_compat_version = 21;
2300 dri_screen->max_gl_es1_version = 11;
2301 dri_screen->max_gl_es2_version = 20;
2302 break;
2303 default:
2304 unreachable("unrecognized intel_screen::gen");
2305 }
2306 }
2307
2308 /**
2309 * Return the revision (generally the revid field of the PCI header) of the
2310 * graphics device.
2311 */
2312 int
2313 intel_device_get_revision(int fd)
2314 {
2315 struct drm_i915_getparam gp;
2316 int revision;
2317 int ret;
2318
2319 memset(&gp, 0, sizeof(gp));
2320 gp.param = I915_PARAM_REVISION;
2321 gp.value = &revision;
2322
2323 ret = drmCommandWriteRead(fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
2324 if (ret)
2325 revision = -1;
2326
2327 return revision;
2328 }
2329
2330 static void
2331 shader_debug_log_mesa(void *data, const char *fmt, ...)
2332 {
2333 struct brw_context *brw = (struct brw_context *)data;
2334 va_list args;
2335
2336 va_start(args, fmt);
2337 GLuint msg_id = 0;
2338 _mesa_gl_vdebug(&brw->ctx, &msg_id,
2339 MESA_DEBUG_SOURCE_SHADER_COMPILER,
2340 MESA_DEBUG_TYPE_OTHER,
2341 MESA_DEBUG_SEVERITY_NOTIFICATION, fmt, args);
2342 va_end(args);
2343 }
2344
2345 static void
2346 shader_perf_log_mesa(void *data, const char *fmt, ...)
2347 {
2348 struct brw_context *brw = (struct brw_context *)data;
2349
2350 va_list args;
2351 va_start(args, fmt);
2352
2353 if (unlikely(INTEL_DEBUG & DEBUG_PERF)) {
2354 va_list args_copy;
2355 va_copy(args_copy, args);
2356 vfprintf(stderr, fmt, args_copy);
2357 va_end(args_copy);
2358 }
2359
2360 if (brw->perf_debug) {
2361 GLuint msg_id = 0;
2362 _mesa_gl_vdebug(&brw->ctx, &msg_id,
2363 MESA_DEBUG_SOURCE_SHADER_COMPILER,
2364 MESA_DEBUG_TYPE_PERFORMANCE,
2365 MESA_DEBUG_SEVERITY_MEDIUM, fmt, args);
2366 }
2367 va_end(args);
2368 }
2369
2370 /**
2371 * This is the driver specific part of the createNewScreen entry point.
2372 * Called when using DRI2.
2373 *
2374 * \return the struct gl_config supported by this driver
2375 */
2376 static const
2377 __DRIconfig **intelInitScreen2(__DRIscreen *dri_screen)
2378 {
2379 struct intel_screen *screen;
2380
2381 if (dri_screen->image.loader) {
2382 } else if (dri_screen->dri2.loader->base.version <= 2 ||
2383 dri_screen->dri2.loader->getBuffersWithFormat == NULL) {
2384 fprintf(stderr,
2385 "\nERROR! DRI2 loader with getBuffersWithFormat() "
2386 "support required\n");
2387 return NULL;
2388 }
2389
2390 /* Allocate the private area */
2391 screen = rzalloc(NULL, struct intel_screen);
2392 if (!screen) {
2393 fprintf(stderr, "\nERROR! Allocating private area failed\n");
2394 return NULL;
2395 }
2396 /* parse information in __driConfigOptions */
2397 driOptionCache options;
2398 memset(&options, 0, sizeof(options));
2399
2400 driParseOptionInfo(&options, brw_config_options.xml);
2401 driParseConfigFiles(&screen->optionCache, &options, dri_screen->myNum, "i965");
2402 driDestroyOptionCache(&options);
2403
2404 screen->driScrnPriv = dri_screen;
2405 dri_screen->driverPrivate = (void *) screen;
2406
2407 screen->deviceID = gen_get_pci_device_id_override();
2408 if (screen->deviceID < 0)
2409 screen->deviceID = intel_get_integer(screen, I915_PARAM_CHIPSET_ID);
2410 else
2411 screen->no_hw = true;
2412
2413 if (!gen_get_device_info(screen->deviceID, &screen->devinfo))
2414 return NULL;
2415
2416 if (!intel_init_bufmgr(screen))
2417 return NULL;
2418
2419 const struct gen_device_info *devinfo = &screen->devinfo;
2420
2421 brw_process_intel_debug_variable();
2422
2423 if ((INTEL_DEBUG & DEBUG_SHADER_TIME) && devinfo->gen < 7) {
2424 fprintf(stderr,
2425 "shader_time debugging requires gen7 (Ivybridge) or better.\n");
2426 INTEL_DEBUG &= ~DEBUG_SHADER_TIME;
2427 }
2428
2429 if (intel_get_integer(screen, I915_PARAM_MMAP_GTT_VERSION) >= 1) {
2430 /* Theorectically unlimited! At least for individual objects...
2431 *
2432 * Currently the entire (global) address space for all GTT maps is
2433 * limited to 64bits. That is all objects on the system that are
2434 * setup for GTT mmapping must fit within 64bits. An attempt to use
2435 * one that exceeds the limit with fail in brw_bo_map_gtt().
2436 *
2437 * Long before we hit that limit, we will be practically limited by
2438 * that any single object must fit in physical memory (RAM). The upper
2439 * limit on the CPU's address space is currently 48bits (Skylake), of
2440 * which only 39bits can be physical memory. (The GPU itself also has
2441 * a 48bit addressable virtual space.) We can fit over 32 million
2442 * objects of the current maximum allocable size before running out
2443 * of mmap space.
2444 */
2445 screen->max_gtt_map_object_size = UINT64_MAX;
2446 } else {
2447 /* Estimate the size of the mappable aperture into the GTT. There's an
2448 * ioctl to get the whole GTT size, but not one to get the mappable subset.
2449 * It turns out it's basically always 256MB, though some ancient hardware
2450 * was smaller.
2451 */
2452 uint32_t gtt_size = 256 * 1024 * 1024;
2453
2454 /* We don't want to map two objects such that a memcpy between them would
2455 * just fault one mapping in and then the other over and over forever. So
2456 * we would need to divide the GTT size by 2. Additionally, some GTT is
2457 * taken up by things like the framebuffer and the ringbuffer and such, so
2458 * be more conservative.
2459 */
2460 screen->max_gtt_map_object_size = gtt_size / 4;
2461 }
2462
2463 screen->aperture_threshold = get_aperture_size(dri_screen->fd) * 3 / 4;
2464
2465 screen->hw_has_swizzling = intel_detect_swizzling(screen);
2466 screen->hw_has_timestamp = intel_detect_timestamp(screen);
2467
2468 isl_device_init(&screen->isl_dev, &screen->devinfo,
2469 screen->hw_has_swizzling);
2470
2471 if (devinfo->gen >= 10)
2472 intel_cs_timestamp_frequency(screen);
2473
2474 /* GENs prior to 8 do not support EU/Subslice info */
2475 if (devinfo->gen >= 8) {
2476 intel_detect_sseu(screen);
2477 } else if (devinfo->gen == 7) {
2478 screen->subslice_total = 1 << (devinfo->gt - 1);
2479 }
2480
2481 /* Gen7-7.5 kernel requirements / command parser saga:
2482 *
2483 * - pre-v3.16:
2484 * Haswell and Baytrail cannot use any privileged batchbuffer features.
2485 *
2486 * Ivybridge has aliasing PPGTT on by default, which accidentally marks
2487 * all batches secure, allowing them to use any feature with no checking.
2488 * This is effectively equivalent to a command parser version of
2489 * \infinity - everything is possible.
2490 *
2491 * The command parser does not exist, and querying the version will
2492 * return -EINVAL.
2493 *
2494 * - v3.16:
2495 * The kernel enables the command parser by default, for systems with
2496 * aliasing PPGTT enabled (Ivybridge and Haswell). However, the
2497 * hardware checker is still enabled, so Haswell and Baytrail cannot
2498 * do anything.
2499 *
2500 * Ivybridge goes from "everything is possible" to "only what the
2501 * command parser allows" (if the user boots with i915.cmd_parser=0,
2502 * then everything is possible again). We can only safely use features
2503 * allowed by the supported command parser version.
2504 *
2505 * Annoyingly, I915_PARAM_CMD_PARSER_VERSION reports the static version
2506 * implemented by the kernel, even if it's turned off. So, checking
2507 * for version > 0 does not mean that you can write registers. We have
2508 * to try it and see. The version does, however, indicate the age of
2509 * the kernel.
2510 *
2511 * Instead of matching the hardware checker's behavior of converting
2512 * privileged commands to MI_NOOP, it makes execbuf2 start returning
2513 * -EINVAL, making it dangerous to try and use privileged features.
2514 *
2515 * Effective command parser versions:
2516 * - Haswell: 0 (reporting 1, writes don't work)
2517 * - Baytrail: 0 (reporting 1, writes don't work)
2518 * - Ivybridge: 1 (enabled) or infinite (disabled)
2519 *
2520 * - v3.17:
2521 * Baytrail aliasing PPGTT is enabled, making it like Ivybridge:
2522 * effectively version 1 (enabled) or infinite (disabled).
2523 *
2524 * - v3.19: f1f55cc0556031c8ee3fe99dae7251e78b9b653b
2525 * Command parser v2 supports predicate writes.
2526 *
2527 * - Haswell: 0 (reporting 1, writes don't work)
2528 * - Baytrail: 2 (enabled) or infinite (disabled)
2529 * - Ivybridge: 2 (enabled) or infinite (disabled)
2530 *
2531 * So version >= 2 is enough to know that Ivybridge and Baytrail
2532 * will work. Haswell still can't do anything.
2533 *
2534 * - v4.0: Version 3 happened. Largely not relevant.
2535 *
2536 * - v4.1: 6702cf16e0ba8b0129f5aa1b6609d4e9c70bc13b
2537 * L3 config registers are properly saved and restored as part
2538 * of the hardware context. We can approximately detect this point
2539 * in time by checking if I915_PARAM_REVISION is recognized - it
2540 * landed in a later commit, but in the same release cycle.
2541 *
2542 * - v4.2: 245054a1fe33c06ad233e0d58a27ec7b64db9284
2543 * Command parser finally gains secure batch promotion. On Haswell,
2544 * the hardware checker gets disabled, which finally allows it to do
2545 * privileged commands.
2546 *
2547 * I915_PARAM_CMD_PARSER_VERSION reports 3. Effective versions:
2548 * - Haswell: 3 (enabled) or 0 (disabled)
2549 * - Baytrail: 3 (enabled) or infinite (disabled)
2550 * - Ivybridge: 3 (enabled) or infinite (disabled)
2551 *
2552 * Unfortunately, detecting this point in time is tricky, because
2553 * no version bump happened when this important change occurred.
2554 * On Haswell, if we can write any register, then the kernel is at
2555 * least this new, and we can start trusting the version number.
2556 *
2557 * - v4.4: 2bbe6bbb0dc94fd4ce287bdac9e1bd184e23057b and
2558 * Command parser reaches version 4, allowing access to Haswell
2559 * atomic scratch and chicken3 registers. If version >= 4, we know
2560 * the kernel is new enough to support privileged features on all
2561 * hardware. However, the user might have disabled it...and the
2562 * kernel will still report version 4. So we still have to guess
2563 * and check.
2564 *
2565 * - v4.4: 7b9748cb513a6bef4af87b79f0da3ff7e8b56cd8
2566 * Command parser v5 whitelists indirect compute shader dispatch
2567 * registers, needed for OpenGL 4.3 and later.
2568 *
2569 * - v4.8:
2570 * Command parser v7 lets us use MI_MATH on Haswell.
2571 *
2572 * Additionally, the kernel begins reporting version 0 when
2573 * the command parser is disabled, allowing us to skip the
2574 * guess-and-check step on Haswell. Unfortunately, this also
2575 * means that we can no longer use it as an indicator of the
2576 * age of the kernel.
2577 */
2578 if (intel_get_param(screen, I915_PARAM_CMD_PARSER_VERSION,
2579 &screen->cmd_parser_version) < 0) {
2580 /* Command parser does not exist - getparam is unrecognized */
2581 screen->cmd_parser_version = 0;
2582 }
2583
2584 /* Kernel 4.13 retuired for exec object capture */
2585 if (intel_get_boolean(screen, I915_PARAM_HAS_EXEC_CAPTURE)) {
2586 screen->kernel_features |= KERNEL_ALLOWS_EXEC_CAPTURE;
2587 }
2588
2589 if (intel_get_boolean(screen, I915_PARAM_HAS_EXEC_BATCH_FIRST)) {
2590 screen->kernel_features |= KERNEL_ALLOWS_EXEC_BATCH_FIRST;
2591 }
2592
2593 if (!intel_detect_pipelined_so(screen)) {
2594 /* We can't do anything, so the effective version is 0. */
2595 screen->cmd_parser_version = 0;
2596 } else {
2597 screen->kernel_features |= KERNEL_ALLOWS_SOL_OFFSET_WRITES;
2598 }
2599
2600 if (devinfo->gen >= 8 || screen->cmd_parser_version >= 2)
2601 screen->kernel_features |= KERNEL_ALLOWS_PREDICATE_WRITES;
2602
2603 /* Haswell requires command parser version 4 in order to have L3
2604 * atomic scratch1 and chicken3 bits
2605 */
2606 if (devinfo->is_haswell && screen->cmd_parser_version >= 4) {
2607 screen->kernel_features |=
2608 KERNEL_ALLOWS_HSW_SCRATCH1_AND_ROW_CHICKEN3;
2609 }
2610
2611 /* Haswell requires command parser version 6 in order to write to the
2612 * MI_MATH GPR registers, and version 7 in order to use
2613 * MI_LOAD_REGISTER_REG (which all users of MI_MATH use).
2614 */
2615 if (devinfo->gen >= 8 ||
2616 (devinfo->is_haswell && screen->cmd_parser_version >= 7)) {
2617 screen->kernel_features |= KERNEL_ALLOWS_MI_MATH_AND_LRR;
2618 }
2619
2620 /* Gen7 needs at least command parser version 5 to support compute */
2621 if (devinfo->gen >= 8 || screen->cmd_parser_version >= 5)
2622 screen->kernel_features |= KERNEL_ALLOWS_COMPUTE_DISPATCH;
2623
2624 if (intel_get_boolean(screen, I915_PARAM_HAS_CONTEXT_ISOLATION))
2625 screen->kernel_features |= KERNEL_ALLOWS_CONTEXT_ISOLATION;
2626
2627 const char *force_msaa = getenv("INTEL_FORCE_MSAA");
2628 if (force_msaa) {
2629 screen->winsys_msaa_samples_override =
2630 intel_quantize_num_samples(screen, atoi(force_msaa));
2631 printf("Forcing winsys sample count to %d\n",
2632 screen->winsys_msaa_samples_override);
2633 } else {
2634 screen->winsys_msaa_samples_override = -1;
2635 }
2636
2637 set_max_gl_versions(screen);
2638
2639 /* Notification of GPU resets requires hardware contexts and a kernel new
2640 * enough to support DRM_IOCTL_I915_GET_RESET_STATS. If the ioctl is
2641 * supported, calling it with a context of 0 will either generate EPERM or
2642 * no error. If the ioctl is not supported, it always generate EINVAL.
2643 * Use this to determine whether to advertise the __DRI2_ROBUSTNESS
2644 * extension to the loader.
2645 *
2646 * Don't even try on pre-Gen6, since we don't attempt to use contexts there.
2647 */
2648 if (devinfo->gen >= 6) {
2649 struct drm_i915_reset_stats stats;
2650 memset(&stats, 0, sizeof(stats));
2651
2652 const int ret = drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats);
2653
2654 screen->has_context_reset_notification =
2655 (ret != -1 || errno != EINVAL);
2656 }
2657
2658 dri_screen->extensions = !screen->has_context_reset_notification
2659 ? screenExtensions : intelRobustScreenExtensions;
2660
2661 screen->compiler = brw_compiler_create(screen, devinfo);
2662 screen->compiler->shader_debug_log = shader_debug_log_mesa;
2663 screen->compiler->shader_perf_log = shader_perf_log_mesa;
2664
2665 /* Changing the meaning of constant buffer pointers from a dynamic state
2666 * offset to an absolute address is only safe if the kernel isolates other
2667 * contexts from our changes.
2668 */
2669 screen->compiler->constant_buffer_0_is_relative = devinfo->gen < 8 ||
2670 !(screen->kernel_features & KERNEL_ALLOWS_CONTEXT_ISOLATION);
2671
2672 screen->compiler->supports_pull_constants = true;
2673
2674 screen->has_exec_fence =
2675 intel_get_boolean(screen, I915_PARAM_HAS_EXEC_FENCE);
2676
2677 intel_screen_init_surface_formats(screen);
2678
2679 if (INTEL_DEBUG & (DEBUG_BATCH | DEBUG_SUBMIT)) {
2680 unsigned int caps = intel_get_integer(screen, I915_PARAM_HAS_SCHEDULER);
2681 if (caps) {
2682 fprintf(stderr, "Kernel scheduler detected: %08x\n", caps);
2683 if (caps & I915_SCHEDULER_CAP_PRIORITY)
2684 fprintf(stderr, " - User priority sorting enabled\n");
2685 if (caps & I915_SCHEDULER_CAP_PREEMPTION)
2686 fprintf(stderr, " - Preemption enabled\n");
2687 }
2688 }
2689
2690 brw_disk_cache_init(screen);
2691
2692 return (const __DRIconfig**) intel_screen_make_configs(dri_screen);
2693 }
2694
2695 struct intel_buffer {
2696 __DRIbuffer base;
2697 struct brw_bo *bo;
2698 };
2699
2700 static __DRIbuffer *
2701 intelAllocateBuffer(__DRIscreen *dri_screen,
2702 unsigned attachment, unsigned format,
2703 int width, int height)
2704 {
2705 struct intel_buffer *intelBuffer;
2706 struct intel_screen *screen = dri_screen->driverPrivate;
2707
2708 assert(attachment == __DRI_BUFFER_FRONT_LEFT ||
2709 attachment == __DRI_BUFFER_BACK_LEFT);
2710
2711 intelBuffer = calloc(1, sizeof *intelBuffer);
2712 if (intelBuffer == NULL)
2713 return NULL;
2714
2715 /* The front and back buffers are color buffers, which are X tiled. GEN9+
2716 * supports Y tiled and compressed buffers, but there is no way to plumb that
2717 * through to here. */
2718 uint32_t pitch;
2719 int cpp = format / 8;
2720 intelBuffer->bo = brw_bo_alloc_tiled_2d(screen->bufmgr,
2721 "intelAllocateBuffer",
2722 width,
2723 height,
2724 cpp,
2725 BRW_MEMZONE_OTHER,
2726 I915_TILING_X, &pitch,
2727 BO_ALLOC_BUSY);
2728
2729 if (intelBuffer->bo == NULL) {
2730 free(intelBuffer);
2731 return NULL;
2732 }
2733
2734 brw_bo_flink(intelBuffer->bo, &intelBuffer->base.name);
2735
2736 intelBuffer->base.attachment = attachment;
2737 intelBuffer->base.cpp = cpp;
2738 intelBuffer->base.pitch = pitch;
2739
2740 return &intelBuffer->base;
2741 }
2742
2743 static void
2744 intelReleaseBuffer(__DRIscreen *dri_screen, __DRIbuffer *buffer)
2745 {
2746 struct intel_buffer *intelBuffer = (struct intel_buffer *) buffer;
2747
2748 brw_bo_unreference(intelBuffer->bo);
2749 free(intelBuffer);
2750 }
2751
2752 static const struct __DriverAPIRec brw_driver_api = {
2753 .InitScreen = intelInitScreen2,
2754 .DestroyScreen = intelDestroyScreen,
2755 .CreateContext = brwCreateContext,
2756 .DestroyContext = intelDestroyContext,
2757 .CreateBuffer = intelCreateBuffer,
2758 .DestroyBuffer = intelDestroyBuffer,
2759 .MakeCurrent = intelMakeCurrent,
2760 .UnbindContext = intelUnbindContext,
2761 .AllocateBuffer = intelAllocateBuffer,
2762 .ReleaseBuffer = intelReleaseBuffer
2763 };
2764
2765 static const struct __DRIDriverVtableExtensionRec brw_vtable = {
2766 .base = { __DRI_DRIVER_VTABLE, 1 },
2767 .vtable = &brw_driver_api,
2768 };
2769
2770 static const __DRIextension *brw_driver_extensions[] = {
2771 &driCoreExtension.base,
2772 &driImageDriverExtension.base,
2773 &driDRI2Extension.base,
2774 &brw_vtable.base,
2775 &brw_config_options.base,
2776 NULL
2777 };
2778
2779 PUBLIC const __DRIextension **__driDriverGetExtensions_i965(void)
2780 {
2781 globalDriverAPI = &brw_driver_api;
2782
2783 return brw_driver_extensions;
2784 }