blob: 6ae211da3a1aa68409da11c17de208caef5a6017 [file] [log] [blame]
Ian Romanickaa1a5c02015-08-19 19:24:45 -07001/*
José Fonseca87712852014-01-17 16:27:50 +00002 * Copyright 2003 VMware, Inc.
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00003 * All Rights Reserved.
Kenneth Graunkea7bdd4c2013-11-25 15:46:34 -08004 *
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00005 * 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,
Ian Romanick284dcad2015-08-19 16:36:35 -07009 * distribute, sublicense, and/or sell copies of the Software, and to
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000010 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
Kenneth Graunkea7bdd4c2013-11-25 15:46:34 -080012 *
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000013 * 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.
Kenneth Graunkea7bdd4c2013-11-25 15:46:34 -080016 *
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000017 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Ian Romanick284dcad2015-08-19 16:36:35 -070019 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
José Fonseca87712852014-01-17 16:27:50 +000020 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000021 * 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.
Ian Romanickaa1a5c02015-08-19 19:24:45 -070024 */
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000025
Eric Anholtf6ca4a32011-03-09 12:54:14 -080026#include <errno.h>
Quentin Glidic7cb87642012-10-09 15:15:47 +020027#include <time.h>
Ian Romanick1e4ce082013-02-14 16:50:28 -080028#include <unistd.h>
Brian Paulecadb512008-09-18 15:17:05 -060029#include "main/context.h"
30#include "main/framebuffer.h"
Brian Paulecadb512008-09-18 15:17:05 -060031#include "main/renderbuffer.h"
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +020032#include "main/texobj.h"
Kristian Høgsberg2d995882010-02-11 17:18:01 -050033#include "main/hash.h"
Kristian Høgsbergd7322c92010-02-26 14:49:31 -050034#include "main/fbobject.h"
Brian Paul14aff232012-01-02 15:20:04 -070035#include "main/version.h"
Brian Pauld0dc75c2011-12-05 20:40:48 -070036#include "swrast/s_renderbuffer.h"
Kenneth Graunke1e0da622014-02-24 23:39:14 -080037#include "util/ralloc.h"
Jason Ekstrandae3870d2015-04-16 12:01:09 -070038#include "brw_shader.h"
Emil Velikova39a8fb2016-01-18 12:54:03 +020039#include "compiler/nir/nir.h"
Brian Paul6c244b02009-01-26 12:38:46 -070040
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000041#include "utils.h"
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000042#include "xmlpool.h"
43
Eric Anholt68689232013-09-27 15:25:40 -070044static const __DRIconfigOptionsExtension brw_config_options = {
45 .base = { __DRI_CONFIG_OPTIONS, 1 },
46 .xml =
47DRI_CONF_BEGIN
Eric Anholta0e453a2008-01-17 14:23:04 -080048 DRI_CONF_SECTION_PERFORMANCE
Jesse Barnese9bf3e42008-07-31 11:50:37 -070049 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_ALWAYS_SYNC)
Eric Anholtfe91c052008-03-05 14:14:54 -080050 /* Options correspond to DRI_CONF_BO_REUSE_DISABLED,
51 * DRI_CONF_BO_REUSE_ALL
52 */
Dave Airlief75843a2008-08-24 17:59:10 +100053 DRI_CONF_OPT_BEGIN_V(bo_reuse, enum, 1, "0:1")
Eric Anholtfe91c052008-03-05 14:14:54 -080054 DRI_CONF_DESC_BEGIN(en, "Buffer object reuse")
55 DRI_CONF_ENUM(0, "Disable buffer object reuse")
56 DRI_CONF_ENUM(1, "Enable reuse of all sizes of buffer objects")
57 DRI_CONF_DESC_END
58 DRI_CONF_OPT_END
Eric Anholt1ba96652009-06-03 16:40:20 +000059
Eric Anholtea6cf2b2013-01-02 17:02:58 -080060 DRI_CONF_OPT_BEGIN_B(hiz, "true")
Eric Anholtd09fce52012-03-06 11:05:20 -080061 DRI_CONF_DESC(en, "Enable Hierarchical Z on gen6+")
62 DRI_CONF_OPT_END
Eric Anholta0e453a2008-01-17 14:23:04 -080063 DRI_CONF_SECTION_END
Chad Versace2f896622013-11-03 13:14:50 -080064
Eric Anholta0e453a2008-01-17 14:23:04 -080065 DRI_CONF_SECTION_QUALITY
Eric Anholtea6cf2b2013-01-02 17:02:58 -080066 DRI_CONF_FORCE_S3TC_ENABLE("false")
Chad Versace2f896622013-11-03 13:14:50 -080067
Gurchetan Singhd9546b02016-05-11 13:32:09 -070068 DRI_CONF_PRECISE_TRIG("false")
69
Chad Versace2f896622013-11-03 13:14:50 -080070 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
Eric Anholta0e453a2008-01-17 14:23:04 -080074 DRI_CONF_SECTION_END
Chad Versace2f896622013-11-03 13:14:50 -080075
Eric Anholta0e453a2008-01-17 14:23:04 -080076 DRI_CONF_SECTION_DEBUG
Eric Anholtea6cf2b2013-01-02 17:02:58 -080077 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_DISABLE_GLSL_LINE_CONTINUATIONS("false")
83 DRI_CONF_DISABLE_BLEND_FUNC_EXTENDED("false")
Kenneth Graunkeb3340cd2016-01-20 17:33:14 -080084 DRI_CONF_DUAL_COLOR_BLEND_BY_LOCATION("false")
Kenneth Graunke31f1cbc2014-08-08 01:03:15 -070085 DRI_CONF_ALLOW_GLSL_EXTENSION_DIRECTIVE_MIDSHADER("false")
Eric Anholt81aa5d72009-07-29 13:07:49 -070086
Eric Anholtea6cf2b2013-01-02 17:02:58 -080087 DRI_CONF_OPT_BEGIN_B(shader_precompile, "true")
Eric Anholtc6abde22011-11-23 10:01:39 -080088 DRI_CONF_DESC(en, "Perform code generation at shader link time.")
89 DRI_CONF_OPT_END
Eric Anholta0e453a2008-01-17 14:23:04 -080090 DRI_CONF_SECTION_END
Rob Clarkf78a6b12016-06-24 14:28:51 -040091
92 DRI_CONF_SECTION_MISCELLANEOUS
93 DRI_CONF_GLSL_ZERO_INIT("false")
94 DRI_CONF_SECTION_END
Eric Anholt68689232013-09-27 15:25:40 -070095DRI_CONF_END
96};
Eric Anholta0e453a2008-01-17 14:23:04 -080097
Eric Anholtdf9f8912010-12-13 11:02:15 -080098#include "intel_batchbuffer.h"
99#include "intel_buffers.h"
100#include "intel_bufmgr.h"
Eric Anholtdf9f8912010-12-13 11:02:15 -0800101#include "intel_fbo.h"
Chad Versaceda2816a2011-11-16 14:04:25 -0800102#include "intel_mipmap_tree.h"
Eric Anholtdf9f8912010-12-13 11:02:15 -0800103#include "intel_screen.h"
104#include "intel_tex.h"
Eric Anholt55667472014-04-29 15:30:15 -0700105#include "intel_image.h"
Eric Anholtdf9f8912010-12-13 11:02:15 -0800106
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200107#include "brw_context.h"
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200108
Eric Anholtdf9f8912010-12-13 11:02:15 -0800109#include "i915_drm.h"
110
Eric Anholt006c1a32012-08-07 10:05:38 -0700111/**
112 * For debugging purposes, this returns a time in seconds.
113 */
114double
115get_time(void)
116{
117 struct timespec tp;
118
119 clock_gettime(CLOCK_MONOTONIC, &tp);
120
121 return tp.tv_sec + tp.tv_nsec / 1000000000.0;
122}
123
Kenneth Graunke252d3112012-03-29 23:37:09 -0700124void
125aub_dump_bmp(struct gl_context *ctx)
126{
127 struct gl_framebuffer *fb = ctx->DrawBuffer;
128
Rhys Kidd65fe7c62015-08-06 16:34:00 +1000129 for (unsigned i = 0; i < fb->_NumColorDrawBuffers; i++) {
Kenneth Graunke252d3112012-03-29 23:37:09 -0700130 struct intel_renderbuffer *irb =
131 intel_renderbuffer(fb->_ColorDrawBuffers[i]);
132
133 if (irb && irb->mt) {
134 enum aub_dump_bmp_format format;
135
136 switch (irb->Base.Base.Format) {
Mark Muelleref145ba2014-01-20 14:21:43 -0800137 case MESA_FORMAT_B8G8R8A8_UNORM:
138 case MESA_FORMAT_B8G8R8X8_UNORM:
Kenneth Graunke252d3112012-03-29 23:37:09 -0700139 format = AUB_DUMP_BMP_FORMAT_ARGB_8888;
140 break;
141 default:
142 continue;
143 }
144
Eric Anholte16c5c92014-04-25 13:29:41 -0700145 drm_intel_gem_bo_aub_dump_bmp(irb->mt->bo,
Kenneth Graunke252d3112012-03-29 23:37:09 -0700146 irb->draw_x,
147 irb->draw_y,
148 irb->Base.Base.Width,
149 irb->Base.Base.Height,
150 format,
Eric Anholte16c5c92014-04-25 13:29:41 -0700151 irb->mt->pitch,
Kenneth Graunke252d3112012-03-29 23:37:09 -0700152 0);
153 }
154 }
155}
156
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500157static const __DRItexBufferExtension intelTexBufferExtension = {
Emil Velikov38f20f72014-02-12 17:47:53 +0000158 .base = { __DRI_TEX_BUFFER, 3 },
Chad Versacec9f51262012-11-19 11:43:51 -0800159
160 .setTexBuffer = intelSetTexBuffer,
161 .setTexBuffer2 = intelSetTexBuffer2,
162 .releaseTexBuffer = NULL,
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500163};
164
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500165static void
Eric Anholt313f2bc2012-12-28 11:44:08 -0800166intel_dri2_flush_with_flags(__DRIcontext *cPriv,
167 __DRIdrawable *dPriv,
168 unsigned flags,
169 enum __DRI2throttleReason reason)
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500170{
Eric Anholt313f2bc2012-12-28 11:44:08 -0800171 struct brw_context *brw = cPriv->driverPrivate;
172
173 if (!brw)
Anuj Phogatce1c9492012-01-17 13:21:52 -0800174 return;
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500175
Eric Anholt313f2bc2012-12-28 11:44:08 -0800176 struct gl_context *ctx = &brw->ctx;
Kristian Høgsberge67c3382010-05-18 21:50:44 -0400177
Eric Anholt313f2bc2012-12-28 11:44:08 -0800178 FLUSH_VERTICES(ctx, 0);
179
180 if (flags & __DRI2_FLUSH_DRAWABLE)
181 intel_resolve_for_dri2_flush(brw, dPriv);
182
Chris Wilson8b9bd192015-02-26 11:25:18 +0000183 if (reason == __DRI2_THROTTLE_SWAPBUFFER)
184 brw->need_swap_throttle = true;
185 if (reason == __DRI2_THROTTLE_FLUSHFRONT)
186 brw->need_flush_throttle = true;
Eric Anholt313f2bc2012-12-28 11:44:08 -0800187
188 intel_batchbuffer_flush(brw);
Eric Anholt0247d892012-03-06 15:31:42 -0800189
190 if (INTEL_DEBUG & DEBUG_AUB) {
Kenneth Graunke252d3112012-03-29 23:37:09 -0700191 aub_dump_bmp(ctx);
Eric Anholt0247d892012-03-06 15:31:42 -0800192 }
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500193}
194
Eric Anholt313f2bc2012-12-28 11:44:08 -0800195/**
196 * Provides compatibility with loaders that only support the older (version
197 * 1-3) flush interface.
198 *
199 * That includes libGL up to Mesa 9.0, and the X Server at least up to 1.13.
200 */
201static void
202intel_dri2_flush(__DRIdrawable *drawable)
203{
204 intel_dri2_flush_with_flags(drawable->driContextPriv, drawable,
205 __DRI2_FLUSH_DRAWABLE,
206 __DRI2_THROTTLE_SWAPBUFFER);
207}
Chad Versacec9f51262012-11-19 11:43:51 -0800208
Eric Anholt313f2bc2012-12-28 11:44:08 -0800209static const struct __DRI2flushExtensionRec intelFlushExtension = {
210 .base = { __DRI2_FLUSH, 4 },
211
212 .flush = intel_dri2_flush,
Chad Versacec9f51262012-11-19 11:43:51 -0800213 .invalidate = dri2InvalidateDrawable,
Eric Anholt313f2bc2012-12-28 11:44:08 -0800214 .flush_with_flags = intel_dri2_flush_with_flags,
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500215};
216
Eric Anholt9ba6f472012-09-21 10:36:22 +0200217static struct intel_image_format intel_image_formats[] = {
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200218 { __DRI_IMAGE_FOURCC_ARGB8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
219 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ARGB8888, 4 } } },
220
Gwenole Beauchesnee1c50ab2014-09-09 10:56:24 +0200221 { __DRI_IMAGE_FOURCC_ABGR8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
222 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ABGR8888, 4 } } },
223
Keith Packardaea47572013-11-21 20:08:35 -0800224 { __DRI_IMAGE_FOURCC_SARGB8888, __DRI_IMAGE_COMPONENTS_RGBA, 1,
225 { { 0, 0, 0, __DRI_IMAGE_FORMAT_SARGB8, 4 } } },
226
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200227 { __DRI_IMAGE_FOURCC_XRGB8888, __DRI_IMAGE_COMPONENTS_RGB, 1,
228 { { 0, 0, 0, __DRI_IMAGE_FORMAT_XRGB8888, 4 }, } },
229
Gwenole Beauchesnee1c50ab2014-09-09 10:56:24 +0200230 { __DRI_IMAGE_FOURCC_XBGR8888, __DRI_IMAGE_COMPONENTS_RGB, 1,
231 { { 0, 0, 0, __DRI_IMAGE_FORMAT_XBGR8888, 4 }, } },
232
Chad Versacee2d69d52016-12-22 15:00:12 -0800233 { __DRI_IMAGE_FOURCC_ARGB1555, __DRI_IMAGE_COMPONENTS_RGBA, 1,
234 { { 0, 0, 0, __DRI_IMAGE_FORMAT_ARGB1555, 2 } } },
235
Singh, Satyeshware2620c12013-10-16 01:11:02 +0000236 { __DRI_IMAGE_FOURCC_RGB565, __DRI_IMAGE_COMPONENTS_RGB, 1,
237 { { 0, 0, 0, __DRI_IMAGE_FORMAT_RGB565, 2 } } },
238
Chad Versace56f1f472015-06-23 15:48:40 -0700239 { __DRI_IMAGE_FOURCC_R8, __DRI_IMAGE_COMPONENTS_R, 1,
240 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 }, } },
241
242 { __DRI_IMAGE_FOURCC_GR88, __DRI_IMAGE_COMPONENTS_RG, 1,
243 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR88, 2 }, } },
244
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200245 { __DRI_IMAGE_FOURCC_YUV410, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
246 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
247 { 1, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 },
248 { 2, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 } } },
249
250 { __DRI_IMAGE_FOURCC_YUV411, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
251 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
252 { 1, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 },
253 { 2, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
254
255 { __DRI_IMAGE_FOURCC_YUV420, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
256 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
257 { 1, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 },
258 { 2, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 } } },
259
260 { __DRI_IMAGE_FOURCC_YUV422, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
261 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
262 { 1, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 },
263 { 2, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
264
265 { __DRI_IMAGE_FOURCC_YUV444, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
266 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
267 { 1, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
268 { 2, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
269
Kristian Høgsberg Kristensen2bb935b2016-04-27 15:00:54 -0700270 { __DRI_IMAGE_FOURCC_YVU410, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
271 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
272 { 2, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 },
273 { 1, 2, 2, __DRI_IMAGE_FORMAT_R8, 1 } } },
274
275 { __DRI_IMAGE_FOURCC_YVU411, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
276 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
277 { 2, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 },
278 { 1, 2, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
279
280 { __DRI_IMAGE_FOURCC_YVU420, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
281 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
282 { 2, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 },
283 { 1, 1, 1, __DRI_IMAGE_FORMAT_R8, 1 } } },
284
285 { __DRI_IMAGE_FOURCC_YVU422, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
286 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
287 { 2, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 },
288 { 1, 1, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
289
290 { __DRI_IMAGE_FOURCC_YVU444, __DRI_IMAGE_COMPONENTS_Y_U_V, 3,
291 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
292 { 2, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
293 { 1, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 } } },
294
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200295 { __DRI_IMAGE_FOURCC_NV12, __DRI_IMAGE_COMPONENTS_Y_UV, 2,
296 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
297 { 1, 1, 1, __DRI_IMAGE_FORMAT_GR88, 2 } } },
298
299 { __DRI_IMAGE_FOURCC_NV16, __DRI_IMAGE_COMPONENTS_Y_UV, 2,
300 { { 0, 0, 0, __DRI_IMAGE_FORMAT_R8, 1 },
301 { 1, 1, 0, __DRI_IMAGE_FORMAT_GR88, 2 } } },
302
303 /* For YUYV buffers, we set up two overlapping DRI images and treat
304 * them as planar buffers in the compositors. Plane 0 is GR88 and
305 * samples YU or YV pairs and places Y into the R component, while
306 * plane 1 is ARGB and samples YUYV clusters and places pairs and
307 * places U into the G component and V into A. This lets the
308 * texture sampler interpolate the Y components correctly when
309 * sampling from plane 0, and interpolate U and V correctly when
310 * sampling from plane 1. */
311 { __DRI_IMAGE_FOURCC_YUYV, __DRI_IMAGE_COMPONENTS_Y_XUXV, 2,
312 { { 0, 0, 0, __DRI_IMAGE_FORMAT_GR88, 2 },
313 { 0, 1, 0, __DRI_IMAGE_FORMAT_ARGB8888, 4 } } }
314};
315
Eric Anholte3a9ca42014-04-25 12:14:34 -0700316static void
317intel_image_warn_if_unaligned(__DRIimage *image, const char *func)
318{
319 uint32_t tiling, swizzle;
320 drm_intel_bo_get_tiling(image->bo, &tiling, &swizzle);
321
322 if (tiling != I915_TILING_NONE && (image->offset & 0xfff)) {
323 _mesa_warning(NULL, "%s: offset 0x%08x not on tile boundary",
324 func, image->offset);
325 }
326}
327
Topi Pohjolainen904587a2012-12-28 12:22:54 +0200328static struct intel_image_format *
329intel_image_format_lookup(int fourcc)
330{
331 struct intel_image_format *f = NULL;
332
333 for (unsigned i = 0; i < ARRAY_SIZE(intel_image_formats); i++) {
334 if (intel_image_formats[i].fourcc == fourcc) {
335 f = &intel_image_formats[i];
336 break;
337 }
338 }
339
340 return f;
341}
342
Dave Airlie8f7338f2014-03-03 13:57:16 +1000343static boolean intel_lookup_fourcc(int dri_format, int *fourcc)
344{
345 for (unsigned i = 0; i < ARRAY_SIZE(intel_image_formats); i++) {
346 if (intel_image_formats[i].planes[0].dri_format == dri_format) {
347 *fourcc = intel_image_formats[i].fourcc;
348 return true;
349 }
350 }
351 return false;
352}
353
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500354static __DRIimage *
Kristian Høgsberg1bb15c02012-07-05 00:17:47 -0400355intel_allocate_image(int dri_format, void *loaderPrivate)
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500356{
357 __DRIimage *image;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500358
Brian Paul4fdac652012-09-01 07:47:24 -0600359 image = calloc(1, sizeof *image);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500360 if (image == NULL)
361 return NULL;
362
Kristian Høgsberg1bb15c02012-07-05 00:17:47 -0400363 image->dri_format = dri_format;
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400364 image->offset = 0;
Ander Conselvan de Oliveira249817e2012-04-30 12:32:45 +0300365
Keith Packard1f085ba2013-11-04 17:33:34 -0800366 image->format = driImageFormatToGLFormat(dri_format);
Ander Conselvan de Oliveira5ba6be22013-11-12 14:47:08 +0200367 if (dri_format != __DRI_IMAGE_FORMAT_NONE &&
368 image->format == MESA_FORMAT_NONE) {
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500369 free(image);
370 return NULL;
371 }
372
Kristian Høgsberg454fc072012-07-05 00:07:15 -0400373 image->internal_format = _mesa_get_format_base_format(image->format);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500374 image->data = loaderPrivate;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500375
Kristian Høgsberg1bb15c02012-07-05 00:17:47 -0400376 return image;
377}
378
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200379/**
Eric Anholte3a9ca42014-04-25 12:14:34 -0700380 * Sets up a DRIImage structure to point to a slice out of a miptree.
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200381 */
382static void
Kenneth Graunkeca437572013-07-02 23:17:14 -0700383intel_setup_image_from_mipmap_tree(struct brw_context *brw, __DRIimage *image,
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200384 struct intel_mipmap_tree *mt, GLuint level,
385 GLuint zoffset)
386{
Kenneth Graunkeca437572013-07-02 23:17:14 -0700387 intel_miptree_make_shareable(brw, mt);
Paul Berryef9142d2013-05-21 14:21:44 -0700388
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200389 intel_miptree_check_level_layer(mt, level, zoffset);
390
Kenneth Graunkeb18871c2014-02-22 23:47:30 -0800391 image->width = minify(mt->physical_width0, level - mt->first_level);
392 image->height = minify(mt->physical_height0, level - mt->first_level);
Eric Anholte16c5c92014-04-25 13:29:41 -0700393 image->pitch = mt->pitch;
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200394
Eric Anholt6db640d2014-04-25 11:26:27 -0700395 image->offset = intel_miptree_get_tile_offsets(mt, level, zoffset,
396 &image->tile_x,
397 &image->tile_y);
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200398
Eric Anholte3a9ca42014-04-25 12:14:34 -0700399 drm_intel_bo_unreference(image->bo);
Eric Anholte16c5c92014-04-25 13:29:41 -0700400 image->bo = mt->bo;
401 drm_intel_bo_reference(mt->bo);
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200402}
403
Kristian Høgsberg1bb15c02012-07-05 00:17:47 -0400404static __DRIimage *
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800405intel_create_image_from_name(__DRIscreen *dri_screen,
Kristian Høgsberg1bb15c02012-07-05 00:17:47 -0400406 int width, int height, int format,
407 int name, int pitch, void *loaderPrivate)
408{
Kenneth Graunke9694b232015-11-30 15:47:13 -0800409 struct intel_screen *screen = dri_screen->driverPrivate;
Kristian Høgsberg1bb15c02012-07-05 00:17:47 -0400410 __DRIimage *image;
411 int cpp;
412
413 image = intel_allocate_image(format, loaderPrivate);
Anuj Phogat484b89a2013-04-16 10:34:43 -0700414 if (image == NULL)
415 return NULL;
416
Kristian Høgsberg636646a2012-07-16 10:54:30 -0400417 if (image->format == MESA_FORMAT_NONE)
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200418 cpp = 1;
Kristian Høgsberg636646a2012-07-16 10:54:30 -0400419 else
420 cpp = _mesa_get_format_bytes(image->format);
Eric Anholte3a9ca42014-04-25 12:14:34 -0700421
422 image->width = width;
423 image->height = height;
424 image->pitch = pitch * cpp;
Kenneth Graunke9694b232015-11-30 15:47:13 -0800425 image->bo = drm_intel_bo_gem_create_from_name(screen->bufmgr, "image",
Eric Anholte3a9ca42014-04-25 12:14:34 -0700426 name);
427 if (!image->bo) {
Brian Paulfe72a062012-09-01 07:47:24 -0600428 free(image);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500429 return NULL;
430 }
431
Iago Toral Quiroga2bba2152015-11-24 12:49:55 +0100432 return image;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500433}
434
435static __DRIimage *
436intel_create_image_from_renderbuffer(__DRIcontext *context,
437 int renderbuffer, void *loaderPrivate)
438{
439 __DRIimage *image;
Kenneth Graunkeca437572013-07-02 23:17:14 -0700440 struct brw_context *brw = context->driverPrivate;
Kenneth Graunke8c9a54e2013-07-06 00:46:38 -0700441 struct gl_context *ctx = &brw->ctx;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500442 struct gl_renderbuffer *rb;
443 struct intel_renderbuffer *irb;
444
Kenneth Graunkeca437572013-07-02 23:17:14 -0700445 rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500446 if (!rb) {
Kenneth Graunkeca437572013-07-02 23:17:14 -0700447 _mesa_error(ctx, GL_INVALID_OPERATION, "glRenderbufferExternalMESA");
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500448 return NULL;
449 }
450
451 irb = intel_renderbuffer(rb);
Kenneth Graunkeca437572013-07-02 23:17:14 -0700452 intel_miptree_make_shareable(brw, irb->mt);
Brian Paul4fdac652012-09-01 07:47:24 -0600453 image = calloc(1, sizeof *image);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500454 if (image == NULL)
455 return NULL;
456
457 image->internal_format = rb->InternalFormat;
458 image->format = rb->Format;
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400459 image->offset = 0;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500460 image->data = loaderPrivate;
Eric Anholte3a9ca42014-04-25 12:14:34 -0700461 drm_intel_bo_unreference(image->bo);
Eric Anholte16c5c92014-04-25 13:29:41 -0700462 image->bo = irb->mt->bo;
463 drm_intel_bo_reference(irb->mt->bo);
464 image->width = rb->Width;
465 image->height = rb->Height;
466 image->pitch = irb->mt->pitch;
Keith Packard1f085ba2013-11-04 17:33:34 -0800467 image->dri_format = driGLFormatToImageFormat(image->format);
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200468 image->has_depthstencil = irb->mt->stencil_mt? true : false;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500469
Eric Anholtc810e672013-05-10 12:36:43 -0700470 rb->NeedsFinishRenderTexture = true;
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200471 return image;
472}
473
474static __DRIimage *
475intel_create_image_from_texture(__DRIcontext *context, int target,
476 unsigned texture, int zoffset,
477 int level,
478 unsigned *error,
479 void *loaderPrivate)
480{
481 __DRIimage *image;
Kenneth Graunkeca437572013-07-02 23:17:14 -0700482 struct brw_context *brw = context->driverPrivate;
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200483 struct gl_texture_object *obj;
484 struct intel_texture_object *iobj;
485 GLuint face = 0;
486
Kenneth Graunke8c9a54e2013-07-06 00:46:38 -0700487 obj = _mesa_lookup_texture(&brw->ctx, texture);
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200488 if (!obj || obj->Target != target) {
489 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
490 return NULL;
Ander Conselvan de Oliveira249817e2012-04-30 12:32:45 +0300491 }
492
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200493 if (target == GL_TEXTURE_CUBE_MAP)
494 face = zoffset;
495
Kenneth Graunke8c9a54e2013-07-06 00:46:38 -0700496 _mesa_test_texobj_completeness(&brw->ctx, obj);
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200497 iobj = intel_texture_object(obj);
498 if (!obj->_BaseComplete || (level > 0 && !obj->_MipmapComplete)) {
499 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
500 return NULL;
501 }
502
503 if (level < obj->BaseLevel || level > obj->_MaxLevel) {
504 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
505 return NULL;
506 }
507
508 if (target == GL_TEXTURE_3D && obj->Image[face][level]->Depth < zoffset) {
509 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
510 return NULL;
511 }
512 image = calloc(1, sizeof *image);
513 if (image == NULL) {
514 *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
515 return NULL;
516 }
517
518 image->internal_format = obj->Image[face][level]->InternalFormat;
519 image->format = obj->Image[face][level]->TexFormat;
520 image->data = loaderPrivate;
Kenneth Graunkeca437572013-07-02 23:17:14 -0700521 intel_setup_image_from_mipmap_tree(brw, image, iobj->mt, level, zoffset);
Keith Packard1f085ba2013-11-04 17:33:34 -0800522 image->dri_format = driGLFormatToImageFormat(image->format);
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200523 image->has_depthstencil = iobj->mt->stencil_mt? true : false;
524 if (image->dri_format == MESA_FORMAT_NONE) {
525 *error = __DRI_IMAGE_ERROR_BAD_PARAMETER;
526 free(image);
527 return NULL;
528 }
529
530 *error = __DRI_IMAGE_ERROR_SUCCESS;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500531 return image;
532}
533
534static void
535intel_destroy_image(__DRIimage *image)
536{
Eric Anholte3a9ca42014-04-25 12:14:34 -0700537 drm_intel_bo_unreference(image->bo);
538 free(image);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500539}
540
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400541static __DRIimage *
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800542intel_create_image(__DRIscreen *dri_screen,
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400543 int width, int height, int format,
544 unsigned int use,
545 void *loaderPrivate)
546{
547 __DRIimage *image;
Kenneth Graunke9694b232015-11-30 15:47:13 -0800548 struct intel_screen *screen = dri_screen->driverPrivate;
Kristian Høgsberge5169e92011-05-06 10:31:18 -0400549 uint32_t tiling;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400550 int cpp;
Eric Anholte3a9ca42014-04-25 12:14:34 -0700551 unsigned long pitch;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400552
Daniel Stonee54b2e92016-05-02 15:34:40 +0100553 tiling = I915_TILING_X;
Kristian Høgsberge5169e92011-05-06 10:31:18 -0400554 if (use & __DRI_IMAGE_USE_CURSOR) {
555 if (width != 64 || height != 64)
556 return NULL;
557 tiling = I915_TILING_NONE;
558 }
559
Axel Davye8f91952013-08-15 12:47:58 +0200560 if (use & __DRI_IMAGE_USE_LINEAR)
561 tiling = I915_TILING_NONE;
562
Kristian Høgsberg1bb15c02012-07-05 00:17:47 -0400563 image = intel_allocate_image(format, loaderPrivate);
Anuj Phogat484b89a2013-04-16 10:34:43 -0700564 if (image == NULL)
565 return NULL;
566
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400567 cpp = _mesa_get_format_bytes(image->format);
Kenneth Graunke9694b232015-11-30 15:47:13 -0800568 image->bo = drm_intel_bo_alloc_tiled(screen->bufmgr, "image",
Eric Anholte3a9ca42014-04-25 12:14:34 -0700569 width, height, cpp, &tiling,
570 &pitch, 0);
571 if (image->bo == NULL) {
Brian Paulfe72a062012-09-01 07:47:24 -0600572 free(image);
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400573 return NULL;
574 }
Eric Anholte3a9ca42014-04-25 12:14:34 -0700575 image->width = width;
576 image->height = height;
577 image->pitch = pitch;
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200578
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400579 return image;
580}
581
582static GLboolean
583intel_query_image(__DRIimage *image, int attrib, int *value)
584{
585 switch (attrib) {
586 case __DRI_IMAGE_ATTRIB_STRIDE:
Eric Anholte3a9ca42014-04-25 12:14:34 -0700587 *value = image->pitch;
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700588 return true;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400589 case __DRI_IMAGE_ATTRIB_HANDLE:
Eric Anholte3a9ca42014-04-25 12:14:34 -0700590 *value = image->bo->handle;
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700591 return true;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400592 case __DRI_IMAGE_ATTRIB_NAME:
Eric Anholte3a9ca42014-04-25 12:14:34 -0700593 return !drm_intel_bo_flink(image->bo, (uint32_t *) value);
Jesse Barnes8de5c352012-02-21 12:53:09 -0800594 case __DRI_IMAGE_ATTRIB_FORMAT:
Ander Conselvan de Oliveirafc7d2242012-04-26 16:21:19 +0300595 *value = image->dri_format;
596 return true;
Kristian Høgsberg44f066b2012-07-13 11:19:24 -0400597 case __DRI_IMAGE_ATTRIB_WIDTH:
Eric Anholte3a9ca42014-04-25 12:14:34 -0700598 *value = image->width;
Kristian Høgsberg44f066b2012-07-13 11:19:24 -0400599 return true;
600 case __DRI_IMAGE_ATTRIB_HEIGHT:
Eric Anholte3a9ca42014-04-25 12:14:34 -0700601 *value = image->height;
Kristian Høgsberg44f066b2012-07-13 11:19:24 -0400602 return true;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200603 case __DRI_IMAGE_ATTRIB_COMPONENTS:
604 if (image->planar_format == NULL)
605 return false;
606 *value = image->planar_format->components;
607 return true;
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500608 case __DRI_IMAGE_ATTRIB_FD:
Eric Engestrom25327432016-08-15 15:51:20 +0100609 return !drm_intel_bo_gem_export_to_prime(image->bo, value);
Dave Airlie8f7338f2014-03-03 13:57:16 +1000610 case __DRI_IMAGE_ATTRIB_FOURCC:
Eric Engestrom25327432016-08-15 15:51:20 +0100611 return intel_lookup_fourcc(image->dri_format, value);
Dave Airlie8f7338f2014-03-03 13:57:16 +1000612 case __DRI_IMAGE_ATTRIB_NUM_PLANES:
613 *value = 1;
614 return true;
Chuanbo Wenge4648ba2016-09-14 01:07:18 +0800615 case __DRI_IMAGE_ATTRIB_OFFSET:
616 *value = image->offset;
617 return true;
Dave Airlie8f7338f2014-03-03 13:57:16 +1000618
Kristian Høgsberg44f066b2012-07-13 11:19:24 -0400619 default:
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700620 return false;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400621 }
622}
623
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100624static __DRIimage *
625intel_dup_image(__DRIimage *orig_image, void *loaderPrivate)
626{
627 __DRIimage *image;
628
Brian Paul4fdac652012-09-01 07:47:24 -0600629 image = calloc(1, sizeof *image);
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100630 if (image == NULL)
631 return NULL;
632
Eric Anholte3a9ca42014-04-25 12:14:34 -0700633 drm_intel_bo_reference(orig_image->bo);
634 image->bo = orig_image->bo;
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100635 image->internal_format = orig_image->internal_format;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200636 image->planar_format = orig_image->planar_format;
Ander Conselvan de Oliveira249817e2012-04-30 12:32:45 +0300637 image->dri_format = orig_image->dri_format;
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100638 image->format = orig_image->format;
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400639 image->offset = orig_image->offset;
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200640 image->width = orig_image->width;
641 image->height = orig_image->height;
Eric Anholte3a9ca42014-04-25 12:14:34 -0700642 image->pitch = orig_image->pitch;
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200643 image->tile_x = orig_image->tile_x;
644 image->tile_y = orig_image->tile_y;
645 image->has_depthstencil = orig_image->has_depthstencil;
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100646 image->data = loaderPrivate;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200647
648 memcpy(image->strides, orig_image->strides, sizeof(image->strides));
649 memcpy(image->offsets, orig_image->offsets, sizeof(image->offsets));
650
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100651 return image;
652}
653
Kristian Høgsberg221c6782012-01-18 15:32:35 -0500654static GLboolean
655intel_validate_usage(__DRIimage *image, unsigned int use)
656{
657 if (use & __DRI_IMAGE_USE_CURSOR) {
Eric Anholte3a9ca42014-04-25 12:14:34 -0700658 if (image->width != 64 || image->height != 64)
Kristian Høgsberg221c6782012-01-18 15:32:35 -0500659 return GL_FALSE;
660 }
661
662 return GL_TRUE;
663}
664
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400665static __DRIimage *
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800666intel_create_image_from_names(__DRIscreen *dri_screen,
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200667 int width, int height, int fourcc,
668 int *names, int num_names,
669 int *strides, int *offsets,
670 void *loaderPrivate)
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400671{
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200672 struct intel_image_format *f = NULL;
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400673 __DRIimage *image;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200674 int i, index;
675
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800676 if (dri_screen == NULL || names == NULL || num_names != 1)
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200677 return NULL;
678
Topi Pohjolainen904587a2012-12-28 12:22:54 +0200679 f = intel_image_format_lookup(fourcc);
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200680 if (f == NULL)
681 return NULL;
682
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800683 image = intel_create_image_from_name(dri_screen, width, height,
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200684 __DRI_IMAGE_FORMAT_NONE,
685 names[0], strides[0],
686 loaderPrivate);
687
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500688 if (image == NULL)
689 return NULL;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200690
691 image->planar_format = f;
692 for (i = 0; i < f->nplanes; i++) {
693 index = f->planes[i].buffer_index;
694 image->offsets[index] = offsets[index];
695 image->strides[index] = strides[index];
696 }
697
698 return image;
699}
700
701static __DRIimage *
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800702intel_create_image_from_fds(__DRIscreen *dri_screen,
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500703 int width, int height, int fourcc,
704 int *fds, int num_fds, int *strides, int *offsets,
705 void *loaderPrivate)
706{
Kenneth Graunke9694b232015-11-30 15:47:13 -0800707 struct intel_screen *screen = dri_screen->driverPrivate;
Topi Pohjolainen904587a2012-12-28 12:22:54 +0200708 struct intel_image_format *f;
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500709 __DRIimage *image;
710 int i, index;
711
Kristian Høgsberg Kristensen1be11142016-05-01 21:25:35 -0700712 if (fds == NULL || num_fds < 1)
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500713 return NULL;
714
Kristian Høgsberg Kristensen1be11142016-05-01 21:25:35 -0700715 /* We only support all planes from the same bo */
716 for (i = 0; i < num_fds; i++)
717 if (fds[0] != fds[i])
718 return NULL;
719
Topi Pohjolainen904587a2012-12-28 12:22:54 +0200720 f = intel_image_format_lookup(fourcc);
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500721 if (f == NULL)
722 return NULL;
723
Topi Pohjolainene8568a02013-04-25 14:33:09 +0300724 if (f->nplanes == 1)
725 image = intel_allocate_image(f->planes[0].dri_format, loaderPrivate);
726 else
727 image = intel_allocate_image(__DRI_IMAGE_FORMAT_NONE, loaderPrivate);
728
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500729 if (image == NULL)
730 return NULL;
731
Eric Anholte3a9ca42014-04-25 12:14:34 -0700732 image->width = width;
733 image->height = height;
734 image->pitch = strides[0];
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500735
736 image->planar_format = f;
Kristian Høgsberg Kristensen1be11142016-05-01 21:25:35 -0700737 int size = 0;
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500738 for (i = 0; i < f->nplanes; i++) {
739 index = f->planes[i].buffer_index;
740 image->offsets[index] = offsets[index];
741 image->strides[index] = strides[index];
Kristian Høgsberg Kristensen1be11142016-05-01 21:25:35 -0700742
Kristian Høgsberg Kristensen89bb4be2016-05-25 09:30:26 -0700743 const int plane_height = height >> f->planes[i].height_shift;
744 const int end = offsets[index] + plane_height * strides[index];
Kristian Høgsberg Kristensen1be11142016-05-01 21:25:35 -0700745 if (size < end)
746 size = end;
747 }
748
Kenneth Graunke9694b232015-11-30 15:47:13 -0800749 image->bo = drm_intel_bo_gem_create_from_prime(screen->bufmgr,
Kristian Høgsberg Kristensen1be11142016-05-01 21:25:35 -0700750 fds[0], size);
751 if (image->bo == NULL) {
752 free(image);
753 return NULL;
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500754 }
755
Gwenole Beauchesne3bd65dc2014-03-10 16:55:21 +0100756 if (f->nplanes == 1) {
757 image->offset = image->offsets[0];
Marius Predut28d9e902015-04-07 22:05:28 +0300758 intel_image_warn_if_unaligned(image, __func__);
Gwenole Beauchesne3bd65dc2014-03-10 16:55:21 +0100759 }
760
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500761 return image;
762}
763
Topi Pohjolainen674dedc2013-03-26 15:14:20 +0200764static __DRIimage *
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800765intel_create_image_from_dma_bufs(__DRIscreen *dri_screen,
Topi Pohjolainen674dedc2013-03-26 15:14:20 +0200766 int width, int height, int fourcc,
767 int *fds, int num_fds,
768 int *strides, int *offsets,
769 enum __DRIYUVColorSpace yuv_color_space,
770 enum __DRISampleRange sample_range,
771 enum __DRIChromaSiting horizontal_siting,
772 enum __DRIChromaSiting vertical_siting,
773 unsigned *error,
774 void *loaderPrivate)
775{
776 __DRIimage *image;
777 struct intel_image_format *f = intel_image_format_lookup(fourcc);
778
Kristian Høgsberg Kristensen1be11142016-05-01 21:25:35 -0700779 if (!f) {
Topi Pohjolainen674dedc2013-03-26 15:14:20 +0200780 *error = __DRI_IMAGE_ERROR_BAD_MATCH;
781 return NULL;
782 }
783
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800784 image = intel_create_image_from_fds(dri_screen, width, height, fourcc, fds,
Topi Pohjolainen674dedc2013-03-26 15:14:20 +0200785 num_fds, strides, offsets,
786 loaderPrivate);
787
788 /*
789 * Invalid parameters and any inconsistencies between are assumed to be
790 * checked by the caller. Therefore besides unsupported formats one can fail
791 * only in allocation.
792 */
793 if (!image) {
794 *error = __DRI_IMAGE_ERROR_BAD_ALLOC;
795 return NULL;
796 }
797
Topi Pohjolainen3a52cd32013-06-18 13:47:43 +0300798 image->dma_buf_imported = true;
Topi Pohjolainen674dedc2013-03-26 15:14:20 +0200799 image->yuv_color_space = yuv_color_space;
800 image->sample_range = sample_range;
801 image->horizontal_siting = horizontal_siting;
802 image->vertical_siting = vertical_siting;
803
804 *error = __DRI_IMAGE_ERROR_SUCCESS;
805 return image;
806}
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500807
808static __DRIimage *
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200809intel_from_planar(__DRIimage *parent, int plane, void *loaderPrivate)
810{
Eric Anholt60894ed2013-01-10 15:11:28 -0800811 int width, height, offset, stride, dri_format, index;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200812 struct intel_image_format *f;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200813 __DRIimage *image;
814
815 if (parent == NULL || parent->planar_format == NULL)
816 return NULL;
817
818 f = parent->planar_format;
819
820 if (plane >= f->nplanes)
821 return NULL;
822
Eric Anholte3a9ca42014-04-25 12:14:34 -0700823 width = parent->width >> f->planes[plane].width_shift;
824 height = parent->height >> f->planes[plane].height_shift;
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +0200825 dri_format = f->planes[plane].dri_format;
826 index = f->planes[plane].buffer_index;
827 offset = parent->offsets[index];
828 stride = parent->strides[index];
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400829
830 image = intel_allocate_image(dri_format, loaderPrivate);
Anuj Phogat484b89a2013-04-16 10:34:43 -0700831 if (image == NULL)
832 return NULL;
833
Eric Anholte3a9ca42014-04-25 12:14:34 -0700834 if (offset + height * stride > parent->bo->size) {
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400835 _mesa_warning(NULL, "intel_create_sub_image: subimage out of bounds");
Brian Paulfe72a062012-09-01 07:47:24 -0600836 free(image);
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400837 return NULL;
838 }
839
Eric Anholte3a9ca42014-04-25 12:14:34 -0700840 image->bo = parent->bo;
841 drm_intel_bo_reference(parent->bo);
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400842
Eric Anholte3a9ca42014-04-25 12:14:34 -0700843 image->width = width;
844 image->height = height;
845 image->pitch = stride;
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400846 image->offset = offset;
847
Marius Predut28d9e902015-04-07 22:05:28 +0300848 intel_image_warn_if_unaligned(image, __func__);
Kristian Høgsberg95bc0522012-07-05 13:02:02 -0400849
850 return image;
851}
852
Emil Velikov38f20f72014-02-12 17:47:53 +0000853static const __DRIimageExtension intelImageExtension = {
Chuanbo Wenge4648ba2016-09-14 01:07:18 +0800854 .base = { __DRI_IMAGE, 13 },
Chad Versacec9f51262012-11-19 11:43:51 -0800855
856 .createImageFromName = intel_create_image_from_name,
857 .createImageFromRenderbuffer = intel_create_image_from_renderbuffer,
858 .destroyImage = intel_destroy_image,
859 .createImage = intel_create_image,
860 .queryImage = intel_query_image,
861 .dupImage = intel_dup_image,
862 .validateUsage = intel_validate_usage,
863 .createImageFromNames = intel_create_image_from_names,
Abdiel Janulgue6c7e95c2012-11-28 13:30:18 +0200864 .fromPlanar = intel_from_planar,
Kristian Høgsberg2356e282013-02-02 08:38:07 -0500865 .createImageFromTexture = intel_create_image_from_texture,
Topi Pohjolainen674dedc2013-03-26 15:14:20 +0200866 .createImageFromFds = intel_create_image_from_fds,
Dave Airlie8f7338f2014-03-03 13:57:16 +1000867 .createImageFromDmaBufs = intel_create_image_from_dma_bufs,
868 .blitImage = NULL,
Chuanbo Wenge4648ba2016-09-14 01:07:18 +0800869 .getCapabilities = NULL,
870 .mapImage = NULL,
871 .unmapImage = NULL,
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500872};
873
Ian Romanick1e4ce082013-02-14 16:50:28 -0800874static int
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800875brw_query_renderer_integer(__DRIscreen *dri_screen,
876 int param, unsigned int *value)
Ian Romanick1e4ce082013-02-14 16:50:28 -0800877{
Kenneth Graunke9694b232015-11-30 15:47:13 -0800878 const struct intel_screen *const screen =
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800879 (struct intel_screen *) dri_screen->driverPrivate;
Ian Romanick1e4ce082013-02-14 16:50:28 -0800880
881 switch (param) {
882 case __DRI2_RENDERER_VENDOR_ID:
883 value[0] = 0x8086;
884 return 0;
885 case __DRI2_RENDERER_DEVICE_ID:
Kenneth Graunke9694b232015-11-30 15:47:13 -0800886 value[0] = screen->deviceID;
Ian Romanick1e4ce082013-02-14 16:50:28 -0800887 return 0;
888 case __DRI2_RENDERER_ACCELERATED:
889 value[0] = 1;
890 return 0;
891 case __DRI2_RENDERER_VIDEO_MEMORY: {
892 /* Once a batch uses more than 75% of the maximum mappable size, we
893 * assume that there's some fragmentation, and we start doing extra
894 * flushing, etc. That's the big cliff apps will care about.
Ian Romanick1e4ce082013-02-14 16:50:28 -0800895 */
Ian Romanickcb6182b2013-11-11 10:57:55 -0800896 size_t aper_size;
897 size_t mappable_size;
898
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800899 drm_intel_get_aperture_sizes(dri_screen->fd, &mappable_size, &aper_size);
Ian Romanickcb6182b2013-11-11 10:57:55 -0800900
901 const unsigned gpu_mappable_megabytes =
902 (aper_size / (1024 * 1024)) * 3 / 4;
Ian Romanick1e4ce082013-02-14 16:50:28 -0800903
904 const long system_memory_pages = sysconf(_SC_PHYS_PAGES);
905 const long system_page_size = sysconf(_SC_PAGE_SIZE);
906
907 if (system_memory_pages <= 0 || system_page_size <= 0)
908 return -1;
909
910 const uint64_t system_memory_bytes = (uint64_t) system_memory_pages
911 * (uint64_t) system_page_size;
912
913 const unsigned system_memory_megabytes =
Emil Velikovfc259562014-02-22 03:04:02 +0000914 (unsigned) (system_memory_bytes / (1024 * 1024));
Ian Romanick1e4ce082013-02-14 16:50:28 -0800915
916 value[0] = MIN2(system_memory_megabytes, gpu_mappable_megabytes);
917 return 0;
918 }
919 case __DRI2_RENDERER_UNIFIED_MEMORY_ARCHITECTURE:
920 value[0] = 1;
921 return 0;
Adam Jackson8ce2afe2016-09-21 09:13:36 -0400922 case __DRI2_RENDERER_HAS_TEXTURE_3D:
923 value[0] = 1;
924 return 0;
Ian Romanick1e4ce082013-02-14 16:50:28 -0800925 default:
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800926 return driQueryRendererIntegerCommon(dri_screen, param, value);
Ian Romanick1e4ce082013-02-14 16:50:28 -0800927 }
928
929 return -1;
930}
931
932static int
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800933brw_query_renderer_string(__DRIscreen *dri_screen,
934 int param, const char **value)
Ian Romanick1e4ce082013-02-14 16:50:28 -0800935{
Kenneth Graunke9694b232015-11-30 15:47:13 -0800936 const struct intel_screen *screen =
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -0800937 (struct intel_screen *) dri_screen->driverPrivate;
Ian Romanick1e4ce082013-02-14 16:50:28 -0800938
939 switch (param) {
940 case __DRI2_RENDERER_VENDOR_ID:
941 value[0] = brw_vendor_string;
942 return 0;
943 case __DRI2_RENDERER_DEVICE_ID:
Kenneth Graunke9694b232015-11-30 15:47:13 -0800944 value[0] = brw_get_renderer_string(screen);
Ian Romanick1e4ce082013-02-14 16:50:28 -0800945 return 0;
946 default:
947 break;
948 }
949
950 return -1;
951}
952
Emil Velikov38f20f72014-02-12 17:47:53 +0000953static const __DRI2rendererQueryExtension intelRendererQueryExtension = {
Ian Romanick1e4ce082013-02-14 16:50:28 -0800954 .base = { __DRI2_RENDERER_QUERY, 1 },
955
956 .queryInteger = brw_query_renderer_integer,
957 .queryString = brw_query_renderer_string
958};
959
Emil Velikov38f20f72014-02-12 17:47:53 +0000960static const __DRIrobustnessExtension dri2Robustness = {
961 .base = { __DRI2_ROBUSTNESS, 1 }
Ian Romanick1f712bd2012-09-11 11:08:44 +0300962};
963
Kenneth Graunke9694b232015-11-30 15:47:13 -0800964static const __DRIextension *screenExtensions[] = {
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500965 &intelTexBufferExtension.base,
Chad Versacec6362842015-05-05 19:05:32 -0700966 &intelFenceExtension.base,
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500967 &intelFlushExtension.base,
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500968 &intelImageExtension.base,
Ian Romanick1e4ce082013-02-14 16:50:28 -0800969 &intelRendererQueryExtension.base,
Jesse Barnes234286c2010-04-22 12:47:41 -0700970 &dri2ConfigQueryExtension.base,
Ian Romanick9b1c6862013-11-19 17:01:23 -0800971 NULL
972};
973
974static const __DRIextension *intelRobustScreenExtensions[] = {
975 &intelTexBufferExtension.base,
Chad Versacec6362842015-05-05 19:05:32 -0700976 &intelFenceExtension.base,
Ian Romanick9b1c6862013-11-19 17:01:23 -0800977 &intelFlushExtension.base,
978 &intelImageExtension.base,
979 &intelRendererQueryExtension.base,
980 &dri2ConfigQueryExtension.base,
Ian Romanick1f712bd2012-09-11 11:08:44 +0300981 &dri2Robustness.base,
Kristian Høgsbergac3e8382007-05-15 15:17:30 -0400982 NULL
983};
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000984
Ben Widawskya8975a92016-04-11 09:49:41 -0700985static int
Chad Versace844e0bd2016-06-27 11:29:27 -0700986intel_get_param(struct intel_screen *screen, int param, int *value)
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500987{
Chad Versaced3a147b2016-06-27 11:33:36 -0700988 int ret = 0;
Alan Hourihane1c718c02008-02-22 00:18:54 +0000989 struct drm_i915_getparam gp;
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500990
Eric Anholtf33d1002012-02-16 11:30:49 -0800991 memset(&gp, 0, sizeof(gp));
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500992 gp.param = param;
993 gp.value = value;
994
Chad Versaced3a147b2016-06-27 11:33:36 -0700995 if (drmIoctl(screen->driScrnPriv->fd, DRM_IOCTL_I915_GETPARAM, &gp) == -1) {
996 ret = -errno;
997 if (ret != -EINVAL)
998 _mesa_warning(NULL, "drm_i915_getparam: %d", ret);
999 }
Kristian Høgsberg24e7e452008-01-09 18:04:19 -05001000
Ben Widawskya8975a92016-04-11 09:49:41 -07001001 return ret;
Kristian Høgsberg24e7e452008-01-09 18:04:19 -05001002}
Kristian Høgsbergac3e8382007-05-15 15:17:30 -04001003
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -07001004static bool
Chad Versace844e0bd2016-06-27 11:29:27 -07001005intel_get_boolean(struct intel_screen *screen, int param)
Chris Wilson900a5c92011-03-01 14:46:50 +00001006{
1007 int value = 0;
Chad Versace844e0bd2016-06-27 11:29:27 -07001008 return (intel_get_param(screen, param, &value) == 0) && value;
Chris Wilson900a5c92011-03-01 14:46:50 +00001009}
1010
Chris Wilsonf92a87a2016-08-24 20:35:46 +01001011static int
1012intel_get_integer(struct intel_screen *screen, int param)
1013{
1014 int value = -1;
1015
1016 if (intel_get_param(screen, param, &value) == 0)
1017 return value;
1018
1019 return -1;
1020}
1021
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001022static void
Kristian Høgsbergd61f0732010-01-01 17:09:12 -05001023intelDestroyScreen(__DRIscreen * sPriv)
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001024{
Kenneth Graunke9694b232015-11-30 15:47:13 -08001025 struct intel_screen *screen = sPriv->driverPrivate;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001026
Kenneth Graunke9694b232015-11-30 15:47:13 -08001027 dri_bufmgr_destroy(screen->bufmgr);
1028 driDestroyOptionInfo(&screen->optionCache);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001029
Kenneth Graunke9694b232015-11-30 15:47:13 -08001030 ralloc_free(screen);
George Sapountzis875a7572011-11-03 13:04:57 +02001031 sPriv->driverPrivate = NULL;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001032}
1033
1034
1035/**
1036 * This is called when we need to set up GL rendering to a new X window.
1037 */
1038static GLboolean
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001039intelCreateBuffer(__DRIscreen *dri_screen,
Kristian Høgsbergd61f0732010-01-01 17:09:12 -05001040 __DRIdrawable * driDrawPriv,
Kristian Høgsbergd3491e72010-10-12 11:58:47 -04001041 const struct gl_config * mesaVis, GLboolean isPixmap)
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001042{
Kristian Høgsbergd2821282010-01-01 23:21:16 -05001043 struct intel_renderbuffer *rb;
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001044 struct intel_screen *screen = (struct intel_screen *)
1045 dri_screen->driverPrivate;
Mark Mueller71fe9432014-01-04 14:11:43 -08001046 mesa_format rgbFormat;
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001047 unsigned num_samples =
1048 intel_quantize_num_samples(screen, mesaVis->samples);
Chad Versace2b4fbc42012-07-09 16:51:23 -07001049 struct gl_framebuffer *fb;
Kristian Høgsbergd2821282010-01-01 23:21:16 -05001050
Chad Versace2b4fbc42012-07-09 16:51:23 -07001051 if (isPixmap)
1052 return false;
1053
1054 fb = CALLOC_STRUCT(gl_framebuffer);
1055 if (!fb)
1056 return false;
1057
1058 _mesa_initialize_window_framebuffer(fb, mesaVis);
1059
Eric Anholt41033502014-03-21 16:36:22 -07001060 if (screen->winsys_msaa_samples_override != -1) {
1061 num_samples = screen->winsys_msaa_samples_override;
1062 fb->Visual.samples = num_samples;
1063 }
1064
Haixia Shi35ade362016-04-07 11:05:09 -07001065 if (mesaVis->redBits == 5) {
1066 rgbFormat = mesaVis->redMask == 0x1f ? MESA_FORMAT_R5G6B5_UNORM
1067 : MESA_FORMAT_B5G6R5_UNORM;
1068 } else if (mesaVis->sRGBCapable) {
1069 rgbFormat = mesaVis->redMask == 0xff ? MESA_FORMAT_R8G8B8A8_SRGB
1070 : MESA_FORMAT_B8G8R8A8_SRGB;
1071 } else if (mesaVis->alphaBits == 0) {
1072 rgbFormat = mesaVis->redMask == 0xff ? MESA_FORMAT_R8G8B8X8_UNORM
1073 : MESA_FORMAT_B8G8R8X8_UNORM;
1074 } else {
1075 rgbFormat = mesaVis->redMask == 0xff ? MESA_FORMAT_R8G8B8A8_SRGB
1076 : MESA_FORMAT_B8G8R8A8_SRGB;
Eric Anholt6fddd372013-06-20 16:10:43 -07001077 fb->Visual.sRGBCapable = true;
Eric Anholte15c21a2013-02-15 07:41:42 -08001078 }
Chad Versace2b4fbc42012-07-09 16:51:23 -07001079
1080 /* setup the hardware-based renderbuffers */
Chad Versacee2f23762012-07-11 15:10:49 -07001081 rb = intel_create_renderbuffer(rgbFormat, num_samples);
Chad Versace2b4fbc42012-07-09 16:51:23 -07001082 _mesa_add_renderbuffer(fb, BUFFER_FRONT_LEFT, &rb->Base.Base);
1083
1084 if (mesaVis->doubleBufferMode) {
Chad Versacee2f23762012-07-11 15:10:49 -07001085 rb = intel_create_renderbuffer(rgbFormat, num_samples);
Chad Versace2b4fbc42012-07-09 16:51:23 -07001086 _mesa_add_renderbuffer(fb, BUFFER_BACK_LEFT, &rb->Base.Base);
1087 }
1088
1089 /*
1090 * Assert here that the gl_config has an expected depth/stencil bit
1091 * combination: one of d24/s8, d16/s0, d0/s0. (See intelInitScreen2(),
1092 * which constructs the advertised configs.)
1093 */
1094 if (mesaVis->depthBits == 24) {
1095 assert(mesaVis->stencilBits == 8);
1096
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001097 if (screen->devinfo.has_hiz_and_separate_stencil) {
Kenneth Graunkea487ef82014-02-07 21:53:18 -08001098 rb = intel_create_private_renderbuffer(MESA_FORMAT_Z24_UNORM_X8_UINT,
Chad Versacee2f23762012-07-11 15:10:49 -07001099 num_samples);
Chad Versace2b4fbc42012-07-09 16:51:23 -07001100 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
Mark Mueller50a01d22014-01-20 19:08:54 -08001101 rb = intel_create_private_renderbuffer(MESA_FORMAT_S_UINT8,
Chad Versacee2f23762012-07-11 15:10:49 -07001102 num_samples);
Chad Versace2b4fbc42012-07-09 16:51:23 -07001103 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &rb->Base.Base);
1104 } else {
1105 /*
1106 * Use combined depth/stencil. Note that the renderbuffer is
1107 * attached to two attachment points.
1108 */
Kenneth Graunkea487ef82014-02-07 21:53:18 -08001109 rb = intel_create_private_renderbuffer(MESA_FORMAT_Z24_UNORM_S8_UINT,
Chad Versacee2f23762012-07-11 15:10:49 -07001110 num_samples);
Chad Versace2b4fbc42012-07-09 16:51:23 -07001111 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
1112 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &rb->Base.Base);
1113 }
1114 }
1115 else if (mesaVis->depthBits == 16) {
1116 assert(mesaVis->stencilBits == 0);
Mark Mueller50a01d22014-01-20 19:08:54 -08001117 rb = intel_create_private_renderbuffer(MESA_FORMAT_Z_UNORM16,
Chad Versacee2f23762012-07-11 15:10:49 -07001118 num_samples);
Chad Versace8c94f6b2012-07-09 17:01:29 -07001119 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001120 }
1121 else {
Chad Versace2b4fbc42012-07-09 16:51:23 -07001122 assert(mesaVis->depthBits == 0);
1123 assert(mesaVis->stencilBits == 0);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001124 }
Chad Versace2b4fbc42012-07-09 16:51:23 -07001125
1126 /* now add any/all software-based renderbuffers we may need */
1127 _swrast_add_soft_renderbuffers(fb,
1128 false, /* never sw color */
1129 false, /* never sw depth */
1130 false, /* never sw stencil */
1131 mesaVis->accumRedBits > 0,
1132 false, /* never sw alpha */
1133 false /* never sw aux */ );
1134 driDrawPriv->driverPrivate = fb;
1135
1136 return true;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001137}
1138
1139static void
Kristian Høgsbergd61f0732010-01-01 17:09:12 -05001140intelDestroyBuffer(__DRIdrawable * driDrawPriv)
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001141{
Kristian Høgsbergd2821282010-01-01 23:21:16 -05001142 struct gl_framebuffer *fb = driDrawPriv->driverPrivate;
Kenneth Graunkea7bdd4c2013-11-25 15:46:34 -08001143
Kristian Høgsbergd2821282010-01-01 23:21:16 -05001144 _mesa_reference_framebuffer(&fb, NULL);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001145}
1146
Ben Widawsky4213b002016-04-07 10:53:12 -07001147static void
Kenneth Graunke9694b232015-11-30 15:47:13 -08001148intel_detect_sseu(struct intel_screen *screen)
Ben Widawsky4213b002016-04-07 10:53:12 -07001149{
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001150 assert(screen->devinfo.gen >= 8);
Ben Widawskycc01b632016-04-07 10:53:13 -07001151 int ret;
1152
Kenneth Graunke9694b232015-11-30 15:47:13 -08001153 screen->subslice_total = -1;
1154 screen->eu_total = -1;
Ben Widawsky4213b002016-04-07 10:53:12 -07001155
Kenneth Graunke9694b232015-11-30 15:47:13 -08001156 ret = intel_get_param(screen, I915_PARAM_SUBSLICE_TOTAL,
1157 &screen->subslice_total);
Ben Widawskya8975a92016-04-11 09:49:41 -07001158 if (ret < 0 && ret != -EINVAL)
Ben Widawskycc01b632016-04-07 10:53:13 -07001159 goto err_out;
1160
Kenneth Graunke9694b232015-11-30 15:47:13 -08001161 ret = intel_get_param(screen,
1162 I915_PARAM_EU_TOTAL, &screen->eu_total);
Ben Widawskya8975a92016-04-11 09:49:41 -07001163 if (ret < 0 && ret != -EINVAL)
Ben Widawskycc01b632016-04-07 10:53:13 -07001164 goto err_out;
Ben Widawsky4213b002016-04-07 10:53:12 -07001165
1166 /* Without this information, we cannot get the right Braswell brandstrings,
1167 * and we have to use conservative numbers for GPGPU on many platforms, but
1168 * otherwise, things will just work.
1169 */
Kenneth Graunke9694b232015-11-30 15:47:13 -08001170 if (screen->subslice_total < 1 || screen->eu_total < 1)
Ben Widawsky4213b002016-04-07 10:53:12 -07001171 _mesa_warning(NULL,
1172 "Kernel 4.1 required to properly query GPU properties.\n");
Ben Widawskycc01b632016-04-07 10:53:13 -07001173
1174 return;
1175
1176err_out:
Kenneth Graunke9694b232015-11-30 15:47:13 -08001177 screen->subslice_total = -1;
1178 screen->eu_total = -1;
Mark Janesa2d28dd2016-05-19 13:42:16 -07001179 _mesa_warning(NULL, "Failed to query GPU properties (%s).\n", strerror(-ret));
Ben Widawsky4213b002016-04-07 10:53:12 -07001180}
1181
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -07001182static bool
Kenneth Graunke9694b232015-11-30 15:47:13 -08001183intel_init_bufmgr(struct intel_screen *screen)
Eric Anholt7e0bbdc2008-09-04 22:16:31 +01001184{
Kenneth Graunke9694b232015-11-30 15:47:13 -08001185 __DRIscreen *dri_screen = screen->driScrnPriv;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +01001186
Kenneth Graunke9694b232015-11-30 15:47:13 -08001187 screen->no_hw = getenv("INTEL_NO_HW") != NULL;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +01001188
Kenneth Graunke9694b232015-11-30 15:47:13 -08001189 screen->bufmgr = intel_bufmgr_gem_init(dri_screen->fd, BATCH_SZ);
1190 if (screen->bufmgr == NULL) {
Eric Anholt827ba442009-11-18 18:15:25 +01001191 fprintf(stderr, "[%s:%u] Error initializing buffer manager.\n",
1192 __func__, __LINE__);
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -07001193 return false;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +01001194 }
1195
Kenneth Graunke9694b232015-11-30 15:47:13 -08001196 drm_intel_bufmgr_gem_enable_fenced_relocs(screen->bufmgr);
Eric Anholt06d14722010-03-02 18:04:40 -08001197
Kenneth Graunke9694b232015-11-30 15:47:13 -08001198 if (!intel_get_boolean(screen, I915_PARAM_HAS_RELAXED_DELTA)) {
Kenneth Graunke394edb52013-04-05 23:59:52 -07001199 fprintf(stderr, "[%s: %u] Kernel 2.6.39 required.\n", __func__, __LINE__);
1200 return false;
1201 }
Chris Wilson900a5c92011-03-01 14:46:50 +00001202
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -07001203 return true;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +01001204}
1205
Daniel Vetterf172eae2012-03-02 21:38:44 +01001206static bool
1207intel_detect_swizzling(struct intel_screen *screen)
1208{
1209 drm_intel_bo *buffer;
1210 unsigned long flags = 0;
1211 unsigned long aligned_pitch;
Daniel Stonee54b2e92016-05-02 15:34:40 +01001212 uint32_t tiling = I915_TILING_X;
Daniel Vetterf172eae2012-03-02 21:38:44 +01001213 uint32_t swizzle_mode = 0;
1214
1215 buffer = drm_intel_bo_alloc_tiled(screen->bufmgr, "swizzle test",
1216 64, 64, 4,
1217 &tiling, &aligned_pitch, flags);
1218 if (buffer == NULL)
1219 return false;
1220
1221 drm_intel_bo_get_tiling(buffer, &tiling, &swizzle_mode);
1222 drm_intel_bo_unreference(buffer);
1223
1224 if (swizzle_mode == I915_BIT_6_SWIZZLE_NONE)
1225 return false;
1226 else
1227 return true;
1228}
1229
Chris Wilson013d7312015-07-21 11:12:57 +01001230static int
Chris Wilsonc8d3eba2015-04-29 13:32:38 +01001231intel_detect_timestamp(struct intel_screen *screen)
1232{
Chris Wilson013d7312015-07-21 11:12:57 +01001233 uint64_t dummy = 0, last = 0;
1234 int upper, lower, loops;
Chris Wilsonc8d3eba2015-04-29 13:32:38 +01001235
Chris Wilson013d7312015-07-21 11:12:57 +01001236 /* On 64bit systems, some old kernels trigger a hw bug resulting in the
1237 * TIMESTAMP register being shifted and the low 32bits always zero.
1238 *
1239 * More recent kernels offer an interface to read the full 36bits
1240 * everywhere.
Chris Wilsonc8d3eba2015-04-29 13:32:38 +01001241 */
Chris Wilson013d7312015-07-21 11:12:57 +01001242 if (drm_intel_reg_read(screen->bufmgr, TIMESTAMP | 1, &dummy) == 0)
1243 return 3;
Chris Wilsonc8d3eba2015-04-29 13:32:38 +01001244
Chris Wilson013d7312015-07-21 11:12:57 +01001245 /* Determine if we have a 32bit or 64bit kernel by inspecting the
1246 * upper 32bits for a rapidly changing timestamp.
1247 */
1248 if (drm_intel_reg_read(screen->bufmgr, TIMESTAMP, &last))
1249 return 0;
1250
1251 upper = lower = 0;
1252 for (loops = 0; loops < 10; loops++) {
1253 /* The TIMESTAMP should change every 80ns, so several round trips
1254 * through the kernel should be enough to advance it.
1255 */
1256 if (drm_intel_reg_read(screen->bufmgr, TIMESTAMP, &dummy))
1257 return 0;
1258
1259 upper += (dummy >> 32) != (last >> 32);
1260 if (upper > 1) /* beware 32bit counter overflow */
1261 return 2; /* upper dword holds the low 32bits of the timestamp */
1262
1263 lower += (dummy & 0xffffffff) != (last & 0xffffffff);
1264 if (lower > 1)
1265 return 1; /* timestamp is unshifted */
1266
1267 last = dummy;
1268 }
1269
1270 /* No advancement? No timestamp! */
1271 return 0;
Chris Wilsonc8d3eba2015-04-29 13:32:38 +01001272}
1273
Chris Wilson02a44482017-01-04 08:34:59 +01001274 /**
1275 * Test if we can use MI_LOAD_REGISTER_MEM from an untrusted batchbuffer.
1276 *
1277 * Some combinations of hardware and kernel versions allow this feature,
1278 * while others don't. Instead of trying to enumerate every case, just
1279 * try and write a register and see if works.
1280 */
1281static bool
1282intel_detect_pipelined_register(struct intel_screen *screen,
1283 int reg, uint32_t expected_value, bool reset)
1284{
1285 drm_intel_bo *results, *bo;
1286 uint32_t *batch;
1287 uint32_t offset = 0;
1288 bool success = false;
1289
1290 /* Create a zero'ed temporary buffer for reading our results */
1291 results = drm_intel_bo_alloc(screen->bufmgr, "registers", 4096, 0);
1292 if (results == NULL)
1293 goto err;
1294
1295 bo = drm_intel_bo_alloc(screen->bufmgr, "batchbuffer", 4096, 0);
1296 if (bo == NULL)
1297 goto err_results;
1298
1299 if (drm_intel_bo_map(bo, 1))
1300 goto err_batch;
1301
1302 batch = bo->virtual;
1303
1304 /* Write the register. */
1305 *batch++ = MI_LOAD_REGISTER_IMM | (3 - 2);
1306 *batch++ = reg;
1307 *batch++ = expected_value;
1308
1309 /* Save the register's value back to the buffer. */
1310 *batch++ = MI_STORE_REGISTER_MEM | (3 - 2);
1311 *batch++ = reg;
1312 drm_intel_bo_emit_reloc(bo, (char *)batch -(char *)bo->virtual,
1313 results, offset*sizeof(uint32_t),
1314 I915_GEM_DOMAIN_INSTRUCTION,
1315 I915_GEM_DOMAIN_INSTRUCTION);
1316 *batch++ = results->offset + offset*sizeof(uint32_t);
1317
1318 /* And afterwards clear the register */
1319 if (reset) {
1320 *batch++ = MI_LOAD_REGISTER_IMM | (3 - 2);
1321 *batch++ = reg;
1322 *batch++ = 0;
1323 }
1324
1325 *batch++ = MI_BATCH_BUFFER_END;
1326
1327 drm_intel_bo_mrb_exec(bo, ALIGN((char *)batch - (char *)bo->virtual, 8),
1328 NULL, 0, 0,
1329 I915_EXEC_RENDER);
1330
1331 /* Check whether the value got written. */
1332 if (drm_intel_bo_map(results, false) == 0) {
1333 success = *((uint32_t *)results->virtual + offset) == expected_value;
1334 drm_intel_bo_unmap(results);
1335 }
1336
1337err_batch:
1338 drm_intel_bo_unreference(bo);
1339err_results:
1340 drm_intel_bo_unreference(results);
1341err:
1342 return success;
1343}
1344
1345static bool
1346intel_detect_pipelined_so(struct intel_screen *screen)
1347{
1348 /* Supposedly, Broadwell just works. */
1349 if (screen->devinfo.gen >= 8)
1350 return true;
1351
1352 if (screen->devinfo.gen <= 6)
1353 return false;
1354
1355 /* We use SO_WRITE_OFFSET0 since you're supposed to write it (unlike the
1356 * statistics registers), and we already reset it to zero before using it.
1357 */
1358 return intel_detect_pipelined_register(screen,
1359 GEN7_SO_WRITE_OFFSET(0),
1360 0x1337d0d0,
1361 false);
1362}
1363
Chad Versace95ebabb2013-11-06 19:40:25 -08001364/**
1365 * Return array of MSAA modes supported by the hardware. The array is
1366 * zero-terminated and sorted in decreasing order.
1367 */
1368const int*
1369intel_supported_msaa_modes(const struct intel_screen *screen)
1370{
Neil Roberts6c5f3712015-09-07 18:23:14 +01001371 static const int gen9_modes[] = {16, 8, 4, 2, 0, -1};
Kenneth Graunke57405602014-02-10 11:42:47 -08001372 static const int gen8_modes[] = {8, 4, 2, 0, -1};
Chad Versace95ebabb2013-11-06 19:40:25 -08001373 static const int gen7_modes[] = {8, 4, 0, -1};
1374 static const int gen6_modes[] = {4, 0, -1};
1375 static const int gen4_modes[] = {0, -1};
1376
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001377 if (screen->devinfo.gen >= 9) {
Neil Roberts6c5f3712015-09-07 18:23:14 +01001378 return gen9_modes;
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001379 } else if (screen->devinfo.gen >= 8) {
Kenneth Graunke57405602014-02-10 11:42:47 -08001380 return gen8_modes;
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001381 } else if (screen->devinfo.gen >= 7) {
Chad Versace95ebabb2013-11-06 19:40:25 -08001382 return gen7_modes;
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001383 } else if (screen->devinfo.gen == 6) {
Chad Versace95ebabb2013-11-06 19:40:25 -08001384 return gen6_modes;
1385 } else {
1386 return gen4_modes;
1387 }
1388}
1389
Chad Versaceb2d428c2012-07-12 14:17:22 -07001390static __DRIconfig**
1391intel_screen_make_configs(__DRIscreen *dri_screen)
1392{
Mark Mueller71fe9432014-01-04 14:11:43 -08001393 static const mesa_format formats[] = {
Mark Muellereeed49f2014-01-26 15:12:56 -08001394 MESA_FORMAT_B5G6R5_UNORM,
Boyan Ding28090b32015-03-25 19:36:54 +08001395 MESA_FORMAT_B8G8R8A8_UNORM,
1396 MESA_FORMAT_B8G8R8X8_UNORM
Ian Romanick1f6e10f2012-07-12 13:52:06 -07001397 };
1398
Chad Versace7dc0be82012-08-09 09:06:42 -07001399 /* GLX_SWAP_COPY_OML is not supported due to page flipping. */
Chad Versaceb2d428c2012-07-12 14:17:22 -07001400 static const GLenum back_buffer_modes[] = {
Chad Versace7dc0be82012-08-09 09:06:42 -07001401 GLX_SWAP_UNDEFINED_OML, GLX_NONE,
Chad Versaceb2d428c2012-07-12 14:17:22 -07001402 };
1403
Chad Versace8b5d68d2012-08-02 14:51:47 -07001404 static const uint8_t singlesample_samples[1] = {0};
Chad Versacee943e5c2012-08-02 17:13:17 -07001405 static const uint8_t multisample_samples[2] = {4, 8};
Chad Versace8b5d68d2012-08-02 14:51:47 -07001406
Chad Versacee943e5c2012-08-02 17:13:17 -07001407 struct intel_screen *screen = dri_screen->driverPrivate;
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001408 const struct gen_device_info *devinfo = &screen->devinfo;
Chad Versace8b5d68d2012-08-02 14:51:47 -07001409 uint8_t depth_bits[4], stencil_bits[4];
Chad Versaceb2d428c2012-07-12 14:17:22 -07001410 __DRIconfig **configs = NULL;
1411
Chad Versacee943e5c2012-08-02 17:13:17 -07001412 /* Generate singlesample configs without accumulation buffer. */
Rhys Kiddf4ef8d02015-08-06 16:34:03 +10001413 for (unsigned i = 0; i < ARRAY_SIZE(formats); i++) {
Chad Versaceb2d428c2012-07-12 14:17:22 -07001414 __DRIconfig **new_configs;
Tapani Pällie4e3b072012-10-29 11:56:28 -07001415 int num_depth_stencil_bits = 2;
Chad Versaceb2d428c2012-07-12 14:17:22 -07001416
1417 /* Starting with DRI2 protocol version 1.1 we can request a depth/stencil
1418 * buffer that has a different number of bits per pixel than the color
Tapani Pällie4e3b072012-10-29 11:56:28 -07001419 * buffer, gen >= 6 supports this.
Chad Versaceb2d428c2012-07-12 14:17:22 -07001420 */
Chad Versace8b5d68d2012-08-02 14:51:47 -07001421 depth_bits[0] = 0;
1422 stencil_bits[0] = 0;
1423
Mark Muellereeed49f2014-01-26 15:12:56 -08001424 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
Chad Versaceb2d428c2012-07-12 14:17:22 -07001425 depth_bits[1] = 16;
1426 stencil_bits[1] = 0;
Kenneth Graunkeafe05e72013-07-04 12:35:22 -07001427 if (devinfo->gen >= 6) {
Tapani Pällie4e3b072012-10-29 11:56:28 -07001428 depth_bits[2] = 24;
1429 stencil_bits[2] = 8;
1430 num_depth_stencil_bits = 3;
1431 }
Chad Versaceb2d428c2012-07-12 14:17:22 -07001432 } else {
1433 depth_bits[1] = 24;
1434 stencil_bits[1] = 8;
1435 }
1436
Ian Romanick1f6e10f2012-07-12 13:52:06 -07001437 new_configs = driCreateConfigs(formats[i],
Chad Versaceb2d428c2012-07-12 14:17:22 -07001438 depth_bits,
1439 stencil_bits,
Chad Versace8b5d68d2012-08-02 14:51:47 -07001440 num_depth_stencil_bits,
Chad Versace7dc0be82012-08-09 09:06:42 -07001441 back_buffer_modes, 2,
Chad Versace8b5d68d2012-08-02 14:51:47 -07001442 singlesample_samples, 1,
Ilia Mirkin52839002016-08-20 16:10:20 -04001443 false, false);
Chad Versacea4bf68c2012-08-01 21:23:47 -07001444 configs = driConcatConfigs(configs, new_configs);
Chad Versaceb2d428c2012-07-12 14:17:22 -07001445 }
1446
1447 /* Generate the minimum possible set of configs that include an
1448 * accumulation buffer.
1449 */
Rhys Kiddf4ef8d02015-08-06 16:34:03 +10001450 for (unsigned i = 0; i < ARRAY_SIZE(formats); i++) {
Chad Versaceb2d428c2012-07-12 14:17:22 -07001451 __DRIconfig **new_configs;
1452
Mark Muellereeed49f2014-01-26 15:12:56 -08001453 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
Chad Versaceb2d428c2012-07-12 14:17:22 -07001454 depth_bits[0] = 16;
1455 stencil_bits[0] = 0;
1456 } else {
1457 depth_bits[0] = 24;
1458 stencil_bits[0] = 8;
1459 }
1460
Ian Romanick1f6e10f2012-07-12 13:52:06 -07001461 new_configs = driCreateConfigs(formats[i],
Chad Versaceb2d428c2012-07-12 14:17:22 -07001462 depth_bits, stencil_bits, 1,
Chad Versace7dc0be82012-08-09 09:06:42 -07001463 back_buffer_modes, 1,
Chad Versace8b5d68d2012-08-02 14:51:47 -07001464 singlesample_samples, 1,
Ilia Mirkin52839002016-08-20 16:10:20 -04001465 true, false);
Chad Versacea4bf68c2012-08-01 21:23:47 -07001466 configs = driConcatConfigs(configs, new_configs);
Chad Versaceb2d428c2012-07-12 14:17:22 -07001467 }
1468
Chad Versacee943e5c2012-08-02 17:13:17 -07001469 /* Generate multisample configs.
1470 *
1471 * This loop breaks early, and hence is a no-op, on gen < 6.
1472 *
1473 * Multisample configs must follow the singlesample configs in order to
1474 * work around an X server bug present in 1.12. The X server chooses to
1475 * associate the first listed RGBA888-Z24S8 config, regardless of its
1476 * sample count, with the 32-bit depth visual used for compositing.
1477 *
1478 * Only doublebuffer configs with GLX_SWAP_UNDEFINED_OML behavior are
1479 * supported. Singlebuffer configs are not supported because no one wants
Chad Versace7dc0be82012-08-09 09:06:42 -07001480 * them.
Chad Versacee943e5c2012-08-02 17:13:17 -07001481 */
Rhys Kiddf4ef8d02015-08-06 16:34:03 +10001482 for (unsigned i = 0; i < ARRAY_SIZE(formats); i++) {
Kenneth Graunkeafe05e72013-07-04 12:35:22 -07001483 if (devinfo->gen < 6)
Chad Versacee943e5c2012-08-02 17:13:17 -07001484 break;
1485
1486 __DRIconfig **new_configs;
1487 const int num_depth_stencil_bits = 2;
Eric Anholt3aaeb3e2012-08-07 11:33:10 -07001488 int num_msaa_modes = 0;
Chad Versacee943e5c2012-08-02 17:13:17 -07001489
1490 depth_bits[0] = 0;
1491 stencil_bits[0] = 0;
1492
Mark Muellereeed49f2014-01-26 15:12:56 -08001493 if (formats[i] == MESA_FORMAT_B5G6R5_UNORM) {
Chad Versacee943e5c2012-08-02 17:13:17 -07001494 depth_bits[1] = 16;
1495 stencil_bits[1] = 0;
1496 } else {
1497 depth_bits[1] = 24;
1498 stencil_bits[1] = 8;
1499 }
1500
Kenneth Graunkeafe05e72013-07-04 12:35:22 -07001501 if (devinfo->gen >= 7)
Chad Versacee943e5c2012-08-02 17:13:17 -07001502 num_msaa_modes = 2;
Kenneth Graunkeafe05e72013-07-04 12:35:22 -07001503 else if (devinfo->gen == 6)
Chad Versacee943e5c2012-08-02 17:13:17 -07001504 num_msaa_modes = 1;
1505
Ian Romanick1f6e10f2012-07-12 13:52:06 -07001506 new_configs = driCreateConfigs(formats[i],
Chad Versacee943e5c2012-08-02 17:13:17 -07001507 depth_bits,
1508 stencil_bits,
1509 num_depth_stencil_bits,
Chad Versace7dc0be82012-08-09 09:06:42 -07001510 back_buffer_modes, 1,
Chad Versacee943e5c2012-08-02 17:13:17 -07001511 multisample_samples,
1512 num_msaa_modes,
Ilia Mirkin52839002016-08-20 16:10:20 -04001513 false, false);
Chad Versacee943e5c2012-08-02 17:13:17 -07001514 configs = driConcatConfigs(configs, new_configs);
1515 }
1516
Chad Versaceb2d428c2012-07-12 14:17:22 -07001517 if (configs == NULL) {
1518 fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__,
1519 __LINE__);
1520 return NULL;
1521 }
1522
1523 return configs;
1524}
1525
Chad Versace4945086f32012-11-21 15:08:27 -08001526static void
1527set_max_gl_versions(struct intel_screen *screen)
1528{
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001529 __DRIscreen *dri_screen = screen->driScrnPriv;
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001530 const bool has_astc = screen->devinfo.gen >= 9;
Jordan Justenfde59a22013-02-21 16:59:33 -08001531
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001532 switch (screen->devinfo.gen) {
Jordan Justene8137282014-04-20 17:31:30 -07001533 case 9:
Kenneth Graunke232140a2013-11-01 11:45:47 -07001534 case 8:
Kenneth Graunke75128d62016-10-14 16:33:19 -07001535 dri_screen->max_gl_core_version = 45;
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001536 dri_screen->max_gl_compat_version = 30;
1537 dri_screen->max_gl_es1_version = 11;
Kenneth Graunkea53da572016-09-20 20:33:54 -07001538 dri_screen->max_gl_es2_version = has_astc ? 32 : 31;
Jordan Justene97b2072015-12-15 15:53:20 -08001539 break;
Chad Versace4945086f32012-11-21 15:08:27 -08001540 case 7:
Iago Toral Quirogae3123c82017-01-03 09:27:09 +01001541 dri_screen->max_gl_core_version = screen->devinfo.is_haswell &&
Kenneth Graunked2590eb2017-01-13 22:53:34 -08001542 can_do_pipelined_register_writes(screen) ? 45 : 33;
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001543 dri_screen->max_gl_compat_version = 30;
1544 dri_screen->max_gl_es1_version = 11;
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001545 dri_screen->max_gl_es2_version = screen->devinfo.is_haswell ? 31 : 30;
Jordan Justen93f5eb72016-06-08 13:17:41 -07001546 break;
Chad Versace4945086f32012-11-21 15:08:27 -08001547 case 6:
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001548 dri_screen->max_gl_core_version = 33;
1549 dri_screen->max_gl_compat_version = 30;
1550 dri_screen->max_gl_es1_version = 11;
1551 dri_screen->max_gl_es2_version = 30;
Chad Versace4945086f32012-11-21 15:08:27 -08001552 break;
1553 case 5:
1554 case 4:
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001555 dri_screen->max_gl_core_version = 0;
1556 dri_screen->max_gl_compat_version = 21;
1557 dri_screen->max_gl_es1_version = 11;
1558 dri_screen->max_gl_es2_version = 20;
Chad Versace4945086f32012-11-21 15:08:27 -08001559 break;
Chad Versace4945086f32012-11-21 15:08:27 -08001560 default:
Matt Turner3d826722014-06-29 14:54:01 -07001561 unreachable("unrecognized intel_screen::gen");
Chad Versace4945086f32012-11-21 15:08:27 -08001562 }
Chad Versace4945086f32012-11-21 15:08:27 -08001563}
1564
Ben Widawsky9ecfc6b2015-10-23 14:38:39 -07001565/**
1566 * Return the revision (generally the revid field of the PCI header) of the
1567 * graphics device.
1568 *
1569 * XXX: This function is useful to keep around even if it is not currently in
1570 * use. It is necessary for new platforms and revision specific workarounds or
1571 * features. Please don't remove it so that we know it at least continues to
1572 * build.
1573 */
1574static __attribute__((__unused__)) int
Jason Ekstrand38dc2dd2015-04-16 17:52:03 -07001575brw_get_revision(int fd)
1576{
1577 struct drm_i915_getparam gp;
1578 int revision;
1579 int ret;
1580
1581 memset(&gp, 0, sizeof(gp));
1582 gp.param = I915_PARAM_REVISION;
1583 gp.value = &revision;
1584
1585 ret = drmCommandWriteRead(fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
1586 if (ret)
1587 revision = -1;
1588
1589 return revision;
1590}
1591
Abdiel Janulgue090529a2013-07-02 11:48:22 -04001592/* Drop when RS headers get pulled to libdrm */
1593#ifndef I915_PARAM_HAS_RESOURCE_STREAMER
1594#define I915_PARAM_HAS_RESOURCE_STREAMER 36
1595#endif
1596
Jason Ekstrand870ff6c2016-05-25 18:19:50 -07001597static void
1598shader_debug_log_mesa(void *data, const char *fmt, ...)
1599{
1600 struct brw_context *brw = (struct brw_context *)data;
1601 va_list args;
1602
1603 va_start(args, fmt);
1604 GLuint msg_id = 0;
1605 _mesa_gl_vdebug(&brw->ctx, &msg_id,
1606 MESA_DEBUG_SOURCE_SHADER_COMPILER,
1607 MESA_DEBUG_TYPE_OTHER,
1608 MESA_DEBUG_SEVERITY_NOTIFICATION, fmt, args);
1609 va_end(args);
1610}
1611
1612static void
1613shader_perf_log_mesa(void *data, const char *fmt, ...)
1614{
1615 struct brw_context *brw = (struct brw_context *)data;
1616
1617 va_list args;
1618 va_start(args, fmt);
1619
1620 if (unlikely(INTEL_DEBUG & DEBUG_PERF)) {
1621 va_list args_copy;
1622 va_copy(args_copy, args);
1623 vfprintf(stderr, fmt, args_copy);
1624 va_end(args_copy);
1625 }
1626
1627 if (brw->perf_debug) {
1628 GLuint msg_id = 0;
1629 _mesa_gl_vdebug(&brw->ctx, &msg_id,
1630 MESA_DEBUG_SOURCE_SHADER_COMPILER,
1631 MESA_DEBUG_TYPE_PERFORMANCE,
1632 MESA_DEBUG_SEVERITY_MEDIUM, fmt, args);
1633 }
1634 va_end(args);
1635}
1636
Chad Versace6b2bf272011-05-26 15:24:48 -07001637/**
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001638 * This is the driver specific part of the createNewScreen entry point.
Brian Paul8d976ae2008-06-11 19:33:14 -06001639 * Called when using DRI2.
1640 *
Kristian Høgsbergd3491e72010-10-12 11:58:47 -04001641 * \return the struct gl_config supported by this driver
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001642 */
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001643static const
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001644__DRIconfig **intelInitScreen2(__DRIscreen *dri_screen)
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001645{
Kenneth Graunke9694b232015-11-30 15:47:13 -08001646 struct intel_screen *screen;
Kristian Høgsberg7c50d292010-01-08 12:35:47 -05001647
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001648 if (dri_screen->image.loader) {
1649 } else if (dri_screen->dri2.loader->base.version <= 2 ||
1650 dri_screen->dri2.loader->getBuffersWithFormat == NULL) {
Eric Anholt1b4374d2012-07-04 10:52:34 -07001651 fprintf(stderr,
1652 "\nERROR! DRI2 loader with getBuffersWithFormat() "
1653 "support required\n");
1654 return false;
1655 }
1656
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001657 /* Allocate the private area */
Kenneth Graunke9694b232015-11-30 15:47:13 -08001658 screen = rzalloc(NULL, struct intel_screen);
1659 if (!screen) {
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001660 fprintf(stderr, "\nERROR! Allocating private area failed\n");
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -07001661 return false;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001662 }
1663 /* parse information in __driConfigOptions */
Kenneth Graunke9694b232015-11-30 15:47:13 -08001664 driParseOptionInfo(&screen->optionCache, brw_config_options.xml);
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001665
Kenneth Graunke9694b232015-11-30 15:47:13 -08001666 screen->driScrnPriv = dri_screen;
1667 dri_screen->driverPrivate = (void *) screen;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001668
Kenneth Graunke9694b232015-11-30 15:47:13 -08001669 if (!intel_init_bufmgr(screen))
Eric Anholt2222aa02012-03-09 16:27:35 -08001670 return false;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001671
Kenneth Graunke9694b232015-11-30 15:47:13 -08001672 screen->deviceID = drm_intel_bufmgr_gem_get_devid(screen->bufmgr);
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001673 if (!gen_get_device_info(screen->deviceID, &screen->devinfo))
Kenneth Graunkeeaf33582014-02-10 01:54:23 -08001674 return false;
Eric Anholt4ac2f092010-12-02 18:25:45 -08001675
Kristian Høgsberg Kristensen99ca2252015-10-06 16:19:04 -07001676 brw_process_intel_debug_variable();
1677
1678 if (INTEL_DEBUG & DEBUG_BUFMGR)
Kenneth Graunke9694b232015-11-30 15:47:13 -08001679 dri_bufmgr_set_debug(screen->bufmgr, true);
Kristian Høgsberg Kristensen99ca2252015-10-06 16:19:04 -07001680
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001681 if ((INTEL_DEBUG & DEBUG_SHADER_TIME) && screen->devinfo.gen < 7) {
Kristian Høgsberg Kristensen99ca2252015-10-06 16:19:04 -07001682 fprintf(stderr,
1683 "shader_time debugging requires gen7 (Ivybridge) or better.\n");
1684 INTEL_DEBUG &= ~DEBUG_SHADER_TIME;
1685 }
1686
1687 if (INTEL_DEBUG & DEBUG_AUB)
Kenneth Graunke9694b232015-11-30 15:47:13 -08001688 drm_intel_bufmgr_gem_set_aub_dump(screen->bufmgr, true);
Jason Ekstrand1bc3b622015-04-16 17:39:13 -07001689
Chris Wilsonf92a87a2016-08-24 20:35:46 +01001690#ifndef I915_PARAM_MMAP_GTT_VERSION
1691#define I915_PARAM_MMAP_GTT_VERSION 40 /* XXX delete me with new libdrm */
1692#endif
Kenneth Graunke9694b232015-11-30 15:47:13 -08001693 if (intel_get_integer(screen, I915_PARAM_MMAP_GTT_VERSION) >= 1) {
Chris Wilsonf92a87a2016-08-24 20:35:46 +01001694 /* Theorectically unlimited! At least for individual objects...
1695 *
1696 * Currently the entire (global) address space for all GTT maps is
1697 * limited to 64bits. That is all objects on the system that are
1698 * setup for GTT mmapping must fit within 64bits. An attempt to use
1699 * one that exceeds the limit with fail in drm_intel_bo_map_gtt().
1700 *
1701 * Long before we hit that limit, we will be practically limited by
1702 * that any single object must fit in physical memory (RAM). The upper
1703 * limit on the CPU's address space is currently 48bits (Skylake), of
1704 * which only 39bits can be physical memory. (The GPU itself also has
1705 * a 48bit addressable virtual space.) We can fit over 32 million
1706 * objects of the current maximum allocable size before running out
1707 * of mmap space.
1708 */
Kenneth Graunke9694b232015-11-30 15:47:13 -08001709 screen->max_gtt_map_object_size = UINT64_MAX;
Chris Wilsonf92a87a2016-08-24 20:35:46 +01001710 } else {
1711 /* Estimate the size of the mappable aperture into the GTT. There's an
1712 * ioctl to get the whole GTT size, but not one to get the mappable subset.
1713 * It turns out it's basically always 256MB, though some ancient hardware
1714 * was smaller.
1715 */
1716 uint32_t gtt_size = 256 * 1024 * 1024;
1717
1718 /* We don't want to map two objects such that a memcpy between them would
1719 * just fault one mapping in and then the other over and over forever. So
1720 * we would need to divide the GTT size by 2. Additionally, some GTT is
1721 * taken up by things like the framebuffer and the ringbuffer and such, so
1722 * be more conservative.
1723 */
Kenneth Graunke9694b232015-11-30 15:47:13 -08001724 screen->max_gtt_map_object_size = gtt_size / 4;
Chris Wilsonf92a87a2016-08-24 20:35:46 +01001725 }
1726
Kenneth Graunke9694b232015-11-30 15:47:13 -08001727 screen->hw_has_swizzling = intel_detect_swizzling(screen);
1728 screen->hw_has_timestamp = intel_detect_timestamp(screen);
Daniel Vetterf172eae2012-03-02 21:38:44 +01001729
Ben Widawskycc01b632016-04-07 10:53:13 -07001730 /* GENs prior to 8 do not support EU/Subslice info */
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001731 if (screen->devinfo.gen >= 8) {
Kenneth Graunke9694b232015-11-30 15:47:13 -08001732 intel_detect_sseu(screen);
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001733 } else if (screen->devinfo.gen == 7) {
1734 screen->subslice_total = 1 << (screen->devinfo.gt - 1);
Kenneth Graunke9cd8f952016-06-08 23:36:16 -07001735 }
Ben Widawskycc01b632016-04-07 10:53:13 -07001736
Chris Wilson02a44482017-01-04 08:34:59 +01001737 if (intel_detect_pipelined_so(screen))
Iago Toral Quirogaa98f2e52017-01-04 10:46:08 +01001738 screen->kernel_features |= KERNEL_ALLOWS_SOL_OFFSET_WRITES;
Chris Wilson02a44482017-01-04 08:34:59 +01001739
Eric Anholt41033502014-03-21 16:36:22 -07001740 const char *force_msaa = getenv("INTEL_FORCE_MSAA");
1741 if (force_msaa) {
Kenneth Graunke9694b232015-11-30 15:47:13 -08001742 screen->winsys_msaa_samples_override =
1743 intel_quantize_num_samples(screen, atoi(force_msaa));
Eric Anholt41033502014-03-21 16:36:22 -07001744 printf("Forcing winsys sample count to %d\n",
Kenneth Graunke9694b232015-11-30 15:47:13 -08001745 screen->winsys_msaa_samples_override);
Eric Anholt41033502014-03-21 16:36:22 -07001746 } else {
Kenneth Graunke9694b232015-11-30 15:47:13 -08001747 screen->winsys_msaa_samples_override = -1;
Eric Anholt41033502014-03-21 16:36:22 -07001748 }
1749
Kenneth Graunke9694b232015-11-30 15:47:13 -08001750 set_max_gl_versions(screen);
Chad Versace4945086f32012-11-21 15:08:27 -08001751
Ian Romanick9b1c6862013-11-19 17:01:23 -08001752 /* Notification of GPU resets requires hardware contexts and a kernel new
1753 * enough to support DRM_IOCTL_I915_GET_RESET_STATS. If the ioctl is
1754 * supported, calling it with a context of 0 will either generate EPERM or
1755 * no error. If the ioctl is not supported, it always generate EINVAL.
1756 * Use this to determine whether to advertise the __DRI2_ROBUSTNESS
1757 * extension to the loader.
Kenneth Graunke0380ec42014-03-12 01:43:40 -07001758 *
1759 * Don't even try on pre-Gen6, since we don't attempt to use contexts there.
Ian Romanick9b1c6862013-11-19 17:01:23 -08001760 */
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001761 if (screen->devinfo.gen >= 6) {
Kenneth Graunke0380ec42014-03-12 01:43:40 -07001762 struct drm_i915_reset_stats stats;
1763 memset(&stats, 0, sizeof(stats));
Ian Romanick9b1c6862013-11-19 17:01:23 -08001764
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001765 const int ret = drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats);
Ian Romanick9b1c6862013-11-19 17:01:23 -08001766
Kenneth Graunke9694b232015-11-30 15:47:13 -08001767 screen->has_context_reset_notification =
Kenneth Graunke0380ec42014-03-12 01:43:40 -07001768 (ret != -1 || errno != EINVAL);
1769 }
Ian Romanick53a65e52013-11-26 16:27:57 -08001770
Kenneth Graunke9694b232015-11-30 15:47:13 -08001771 if (intel_get_param(screen, I915_PARAM_CMD_PARSER_VERSION,
1772 &screen->cmd_parser_version) < 0) {
1773 screen->cmd_parser_version = 0;
Chad Versacea2ae8882016-06-27 11:50:17 -07001774 }
Neil Roberts8a59f2f2014-11-07 18:20:17 +00001775
Rafael Antognolliea7e4b12017-01-05 10:33:53 -08001776 if (screen->devinfo.gen >= 8 || screen->cmd_parser_version >= 2)
Iago Toral Quirogaa98f2e52017-01-04 10:46:08 +01001777 screen->kernel_features |= KERNEL_ALLOWS_PREDICATE_WRITES;
1778
1779 /* Haswell requires command parser version 4 in order to have L3
1780 * atomic scratch1 and chicken3 bits
1781 */
1782 if (screen->devinfo.is_haswell && screen->cmd_parser_version >= 4) {
1783 screen->kernel_features |=
1784 KERNEL_ALLOWS_HSW_SCRATCH1_AND_ROW_CHICKEN3;
1785 }
1786
Kenneth Graunke4c71c8a2016-05-05 01:57:30 -07001787 /* Haswell requires command parser version 6 in order to write to the
1788 * MI_MATH GPR registers, and version 7 in order to use
1789 * MI_LOAD_REGISTER_REG (which all users of MI_MATH use).
1790 */
Iago Toral Quirogaa98f2e52017-01-04 10:46:08 +01001791 if (screen->devinfo.gen >= 8 ||
1792 (screen->devinfo.is_haswell && screen->cmd_parser_version >= 7)) {
1793 screen->kernel_features |= KERNEL_ALLOWS_MI_MATH_AND_LRR;
1794 }
1795
1796 /* Gen7 needs at least command parser version 5 to support compute */
1797 if (screen->devinfo.gen >= 8 || screen->cmd_parser_version >= 5)
1798 screen->kernel_features |= KERNEL_ALLOWS_COMPUTE_DISPATCH;
Kenneth Graunke4c71c8a2016-05-05 01:57:30 -07001799
Kenneth Graunke9694b232015-11-30 15:47:13 -08001800 dri_screen->extensions = !screen->has_context_reset_notification
1801 ? screenExtensions : intelRobustScreenExtensions;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001802
Kenneth Graunke9694b232015-11-30 15:47:13 -08001803 screen->compiler = brw_compiler_create(screen,
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001804 &screen->devinfo);
Kenneth Graunke9694b232015-11-30 15:47:13 -08001805 screen->compiler->shader_debug_log = shader_debug_log_mesa;
1806 screen->compiler->shader_perf_log = shader_perf_log_mesa;
1807 screen->program_id = 1;
Kenneth Graunke7a0fd3c2014-03-17 13:53:44 -07001808
Lionel Landwerlinbc245902016-09-22 14:58:11 +03001809 if (screen->devinfo.has_resource_streamer) {
Kenneth Graunke9694b232015-11-30 15:47:13 -08001810 screen->has_resource_streamer =
1811 intel_get_boolean(screen, I915_PARAM_HAS_RESOURCE_STREAMER);
Abdiel Janulgue090529a2013-07-02 11:48:22 -04001812 }
1813
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001814 return (const __DRIconfig**) intel_screen_make_configs(dri_screen);
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -05001815}
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001816
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001817struct intel_buffer {
1818 __DRIbuffer base;
Eric Anholt3278f962014-04-25 13:44:41 -07001819 drm_intel_bo *bo;
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001820};
1821
1822static __DRIbuffer *
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001823intelAllocateBuffer(__DRIscreen *dri_screen,
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001824 unsigned attachment, unsigned format,
1825 int width, int height)
1826{
1827 struct intel_buffer *intelBuffer;
Kenneth Graunke9694b232015-11-30 15:47:13 -08001828 struct intel_screen *screen = dri_screen->driverPrivate;
Chad Versace79653c12011-11-15 07:08:49 -08001829
Chad Versace83fa0842012-07-09 15:51:06 -07001830 assert(attachment == __DRI_BUFFER_FRONT_LEFT ||
1831 attachment == __DRI_BUFFER_BACK_LEFT);
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001832
Brian Paul4fdac652012-09-01 07:47:24 -06001833 intelBuffer = calloc(1, sizeof *intelBuffer);
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001834 if (intelBuffer == NULL)
1835 return NULL;
1836
Chad Versace83fa0842012-07-09 15:51:06 -07001837 /* The front and back buffers are color buffers, which are X tiled. */
Daniel Stonee54b2e92016-05-02 15:34:40 +01001838 uint32_t tiling = I915_TILING_X;
Eric Anholt3278f962014-04-25 13:44:41 -07001839 unsigned long pitch;
1840 int cpp = format / 8;
Kenneth Graunke9694b232015-11-30 15:47:13 -08001841 intelBuffer->bo = drm_intel_bo_alloc_tiled(screen->bufmgr,
Eric Anholt3278f962014-04-25 13:44:41 -07001842 "intelAllocateBuffer",
1843 width,
1844 height,
1845 cpp,
1846 &tiling, &pitch,
1847 BO_ALLOC_FOR_RENDER);
Kenneth Graunkea7bdd4c2013-11-25 15:46:34 -08001848
Eric Anholt3278f962014-04-25 13:44:41 -07001849 if (intelBuffer->bo == NULL) {
Brian Paulfe72a062012-09-01 07:47:24 -06001850 free(intelBuffer);
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001851 return NULL;
1852 }
Kenneth Graunkea7bdd4c2013-11-25 15:46:34 -08001853
Eric Anholt3278f962014-04-25 13:44:41 -07001854 drm_intel_bo_flink(intelBuffer->bo, &intelBuffer->base.name);
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001855
1856 intelBuffer->base.attachment = attachment;
Eric Anholt3278f962014-04-25 13:44:41 -07001857 intelBuffer->base.cpp = cpp;
1858 intelBuffer->base.pitch = pitch;
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001859
1860 return &intelBuffer->base;
1861}
1862
1863static void
Kenneth Graunke8fec9fb2015-11-30 16:04:08 -08001864intelReleaseBuffer(__DRIscreen *dri_screen, __DRIbuffer *buffer)
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001865{
1866 struct intel_buffer *intelBuffer = (struct intel_buffer *) buffer;
1867
Eric Anholt3278f962014-04-25 13:44:41 -07001868 drm_intel_bo_unreference(intelBuffer->bo);
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001869 free(intelBuffer);
1870}
1871
Eric Anholt1925a9a2013-06-26 13:04:51 -07001872static const struct __DriverAPIRec brw_driver_api = {
George Sapountzis7192c372011-11-03 12:46:08 +02001873 .InitScreen = intelInitScreen2,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001874 .DestroyScreen = intelDestroyScreen,
Eric Anholtee8983b2013-09-26 17:08:28 -07001875 .CreateContext = brwCreateContext,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001876 .DestroyContext = intelDestroyContext,
1877 .CreateBuffer = intelCreateBuffer,
1878 .DestroyBuffer = intelDestroyBuffer,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001879 .MakeCurrent = intelMakeCurrent,
1880 .UnbindContext = intelUnbindContext,
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001881 .AllocateBuffer = intelAllocateBuffer,
1882 .ReleaseBuffer = intelReleaseBuffer
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001883};
Kristian Høgsberg39a0e4e2010-01-01 17:56:29 -05001884
Eric Anholt1925a9a2013-06-26 13:04:51 -07001885static const struct __DRIDriverVtableExtensionRec brw_vtable = {
1886 .base = { __DRI_DRIVER_VTABLE, 1 },
1887 .vtable = &brw_driver_api,
1888};
1889
1890static const __DRIextension *brw_driver_extensions[] = {
Kristian Høgsberg39a0e4e2010-01-01 17:56:29 -05001891 &driCoreExtension.base,
Keith Packard44244202013-11-04 18:09:51 -08001892 &driImageDriverExtension.base,
Kristian Høgsberg39a0e4e2010-01-01 17:56:29 -05001893 &driDRI2Extension.base,
Eric Anholt1925a9a2013-06-26 13:04:51 -07001894 &brw_vtable.base,
Eric Anholt68689232013-09-27 15:25:40 -07001895 &brw_config_options.base,
Kristian Høgsberg39a0e4e2010-01-01 17:56:29 -05001896 NULL
1897};
Eric Anholt1925a9a2013-06-26 13:04:51 -07001898
1899PUBLIC const __DRIextension **__driDriverGetExtensions_i965(void)
1900{
1901 globalDriverAPI = &brw_driver_api;
1902
1903 return brw_driver_extensions;
1904}