blob: 9db56064bea44aa769c92d9652e64cfc7e32cd7b [file] [log] [blame]
Keith Whitwell6b9e31f2006-11-01 12:03:11 +00001/**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
Eric Anholtf6ca4a32011-03-09 12:54:14 -080028#include <errno.h>
Brian Paulecadb512008-09-18 15:17:05 -060029#include "main/glheader.h"
30#include "main/context.h"
31#include "main/framebuffer.h"
Brian Paulecadb512008-09-18 15:17:05 -060032#include "main/renderbuffer.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"
Vinson Lee45a56e42011-01-09 01:25:54 -080035#include "main/mfeatures.h"
Brian Paul14aff232012-01-02 15:20:04 -070036#include "main/version.h"
Brian Pauld0dc75c2011-12-05 20:40:48 -070037#include "swrast/s_renderbuffer.h"
Brian Paul6c244b02009-01-26 12:38:46 -070038
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000039#include "utils.h"
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000040#include "xmlpool.h"
41
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000042PUBLIC const char __driConfigOptions[] =
Eric Anholta0e453a2008-01-17 14:23:04 -080043 DRI_CONF_BEGIN
44 DRI_CONF_SECTION_PERFORMANCE
Jesse Barnese9bf3e42008-07-31 11:50:37 -070045 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_ALWAYS_SYNC)
Eric Anholtfe91c052008-03-05 14:14:54 -080046 /* Options correspond to DRI_CONF_BO_REUSE_DISABLED,
47 * DRI_CONF_BO_REUSE_ALL
48 */
Dave Airlief75843a2008-08-24 17:59:10 +100049 DRI_CONF_OPT_BEGIN_V(bo_reuse, enum, 1, "0:1")
Eric Anholtfe91c052008-03-05 14:14:54 -080050 DRI_CONF_DESC_BEGIN(en, "Buffer object reuse")
51 DRI_CONF_ENUM(0, "Disable buffer object reuse")
52 DRI_CONF_ENUM(1, "Enable reuse of all sizes of buffer objects")
53 DRI_CONF_DESC_END
54 DRI_CONF_OPT_END
Eric Anholt1ba96652009-06-03 16:40:20 +000055
Eric Anholt8e7a8d62010-03-03 11:51:51 -080056 DRI_CONF_OPT_BEGIN(texture_tiling, bool, true)
57 DRI_CONF_DESC(en, "Enable texture tiling")
58 DRI_CONF_OPT_END
Eric Anholt1ba96652009-06-03 16:40:20 +000059
Eric Anholtd09fce52012-03-06 11:05:20 -080060 DRI_CONF_OPT_BEGIN(hiz, bool, true)
61 DRI_CONF_DESC(en, "Enable Hierarchical Z on gen6+")
62 DRI_CONF_OPT_END
63
Eric Anholtb30dc2c2009-06-09 16:12:43 -070064 DRI_CONF_OPT_BEGIN(early_z, bool, false)
65 DRI_CONF_DESC(en, "Enable early Z in classic mode (unstable, 945-only).")
66 DRI_CONF_OPT_END
67
Eric Anholta58514c2010-08-17 15:07:22 -070068 DRI_CONF_OPT_BEGIN(fragment_shader, bool, true)
Eric Anholt862a2a52009-07-29 13:00:09 -070069 DRI_CONF_DESC(en, "Enable limited ARB_fragment_shader support on 915/945.")
70 DRI_CONF_OPT_END
71
Eric Anholta0e453a2008-01-17 14:23:04 -080072 DRI_CONF_SECTION_END
73 DRI_CONF_SECTION_QUALITY
74 DRI_CONF_FORCE_S3TC_ENABLE(false)
Michel Dänzeracba9c12008-04-29 18:43:28 +020075 DRI_CONF_ALLOW_LARGE_TEXTURES(2)
Eric Anholta0e453a2008-01-17 14:23:04 -080076 DRI_CONF_SECTION_END
77 DRI_CONF_SECTION_DEBUG
78 DRI_CONF_NO_RAST(false)
Eric Anholt40bc2742009-03-05 17:18:49 -080079 DRI_CONF_ALWAYS_FLUSH_BATCH(false)
Eric Anholtf3687282009-03-05 17:08:36 -080080 DRI_CONF_ALWAYS_FLUSH_CACHE(false)
Eric Anholt64224782012-01-25 14:13:13 -080081 DRI_CONF_FORCE_GLSL_EXTENSIONS_WARN(false)
Eric Anholt81aa5d72009-07-29 13:07:49 -070082
83 DRI_CONF_OPT_BEGIN(stub_occlusion_query, bool, false)
84 DRI_CONF_DESC(en, "Enable stub ARB_occlusion_query support on 915/945.")
85 DRI_CONF_OPT_END
Eric Anholtc6abde22011-11-23 10:01:39 -080086
87 DRI_CONF_OPT_BEGIN(shader_precompile, bool, false)
88 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
91DRI_CONF_END;
92
Eric Anholtd09fce52012-03-06 11:05:20 -080093const GLuint __driNConfigOptions = 14;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +000094
Eric Anholtdf9f8912010-12-13 11:02:15 -080095#include "intel_batchbuffer.h"
96#include "intel_buffers.h"
97#include "intel_bufmgr.h"
98#include "intel_chipset.h"
99#include "intel_fbo.h"
Chad Versaceda2816a2011-11-16 14:04:25 -0800100#include "intel_mipmap_tree.h"
Eric Anholtdf9f8912010-12-13 11:02:15 -0800101#include "intel_screen.h"
102#include "intel_tex.h"
103#include "intel_regions.h"
104
105#include "i915_drm.h"
106
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000107#ifdef USE_NEW_INTERFACE
Eric Anholt85063f12008-02-13 16:08:19 -0800108static PFNGLXCREATECONTEXTMODES create_context_modes = NULL;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000109#endif /*USE_NEW_INTERFACE */
110
Kenneth Graunke252d3112012-03-29 23:37:09 -0700111void
112aub_dump_bmp(struct gl_context *ctx)
113{
114 struct gl_framebuffer *fb = ctx->DrawBuffer;
115
116 for (int i = 0; i < fb->_NumColorDrawBuffers; i++) {
117 struct intel_renderbuffer *irb =
118 intel_renderbuffer(fb->_ColorDrawBuffers[i]);
119
120 if (irb && irb->mt) {
121 enum aub_dump_bmp_format format;
122
123 switch (irb->Base.Base.Format) {
124 case MESA_FORMAT_ARGB8888:
125 case MESA_FORMAT_XRGB8888:
126 format = AUB_DUMP_BMP_FORMAT_ARGB_8888;
127 break;
128 default:
129 continue;
130 }
131
132 drm_intel_gem_bo_aub_dump_bmp(irb->mt->region->bo,
133 irb->draw_x,
134 irb->draw_y,
135 irb->Base.Base.Width,
136 irb->Base.Base.Height,
137 format,
138 irb->mt->region->pitch *
139 irb->mt->region->cpp,
140 0);
141 }
142 }
143}
144
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500145static const __DRItexBufferExtension intelTexBufferExtension = {
146 { __DRI_TEX_BUFFER, __DRI_TEX_BUFFER_VERSION },
147 intelSetTexBuffer,
Eric Anholt66175aa2009-03-18 12:07:09 -0700148 intelSetTexBuffer2,
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500149};
150
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500151static void
152intelDRI2Flush(__DRIdrawable *drawable)
153{
Eric Anholtdea5e572011-02-14 18:57:49 -0800154 GET_CURRENT_CONTEXT(ctx);
155 struct intel_context *intel = intel_context(ctx);
Anuj Phogatce1c9492012-01-17 13:21:52 -0800156 if (intel == NULL)
157 return;
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500158
Anuj Phogatce1c9492012-01-17 13:21:52 -0800159 if (intel->gen < 4)
160 INTEL_FIREVERTICES(intel);
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500161
Anuj Phogatce1c9492012-01-17 13:21:52 -0800162 intel->need_throttle = true;
Kristian Høgsberge67c3382010-05-18 21:50:44 -0400163
Anuj Phogatce1c9492012-01-17 13:21:52 -0800164 if (intel->batch.used)
165 intel_batchbuffer_flush(intel);
Eric Anholt0247d892012-03-06 15:31:42 -0800166
167 if (INTEL_DEBUG & DEBUG_AUB) {
Kenneth Graunke252d3112012-03-29 23:37:09 -0700168 aub_dump_bmp(ctx);
Eric Anholt0247d892012-03-06 15:31:42 -0800169 }
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500170}
171
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500172static const struct __DRI2flushExtensionRec intelFlushExtension = {
173 { __DRI2_FLUSH, __DRI2_FLUSH_VERSION },
174 intelDRI2Flush,
Kristian Høgsberge67c3382010-05-18 21:50:44 -0400175 dri2InvalidateDrawable,
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500176};
177
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500178static __DRIimage *
Kristian Høgsberg9ec0b2a2010-09-22 15:07:15 -0400179intel_create_image_from_name(__DRIscreen *screen,
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500180 int width, int height, int format,
181 int name, int pitch, void *loaderPrivate)
182{
George Sapountzis875a7572011-11-03 13:04:57 +0200183 struct intel_screen *intelScreen = screen->driverPrivate;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500184 __DRIimage *image;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500185 int cpp;
186
187 image = CALLOC(sizeof *image);
188 if (image == NULL)
189 return NULL;
190
Ander Conselvan de Oliveira249817e2012-04-30 12:32:45 +0300191 image->dri_format = format;
192
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500193 switch (format) {
194 case __DRI_IMAGE_FORMAT_RGB565:
195 image->format = MESA_FORMAT_RGB565;
196 image->internal_format = GL_RGB;
197 image->data_type = GL_UNSIGNED_BYTE;
198 break;
199 case __DRI_IMAGE_FORMAT_XRGB8888:
200 image->format = MESA_FORMAT_XRGB8888;
201 image->internal_format = GL_RGB;
202 image->data_type = GL_UNSIGNED_BYTE;
203 break;
204 case __DRI_IMAGE_FORMAT_ARGB8888:
205 image->format = MESA_FORMAT_ARGB8888;
206 image->internal_format = GL_RGBA;
207 image->data_type = GL_UNSIGNED_BYTE;
208 break;
Chia-I Wu9fe197c2011-08-21 21:36:40 +0800209 case __DRI_IMAGE_FORMAT_ABGR8888:
210 image->format = MESA_FORMAT_RGBA8888_REV;
211 image->internal_format = GL_RGBA;
212 image->data_type = GL_UNSIGNED_BYTE;
213 break;
Sean V Kelleyfd0082c2012-04-24 07:49:10 -0700214 case __DRI_IMAGE_FORMAT_XBGR8888:
215 image->format = MESA_FORMAT_RGBX8888_REV;
216 image->internal_format = GL_RGB;
217 image->data_type = GL_UNSIGNED_BYTE;
218 break;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500219 default:
220 free(image);
221 return NULL;
222 }
223
224 image->data = loaderPrivate;
225 cpp = _mesa_get_format_bytes(image->format);
226
Kristian Høgsberg9ec0b2a2010-09-22 15:07:15 -0400227 image->region = intel_region_alloc_for_handle(intelScreen,
Kristian Høgsberg9087ba12010-06-03 21:56:21 -0400228 cpp, width, height,
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500229 pitch, name, "image");
230 if (image->region == NULL) {
231 FREE(image);
232 return NULL;
233 }
234
235 return image;
236}
237
238static __DRIimage *
239intel_create_image_from_renderbuffer(__DRIcontext *context,
240 int renderbuffer, void *loaderPrivate)
241{
242 __DRIimage *image;
243 struct intel_context *intel = context->driverPrivate;
244 struct gl_renderbuffer *rb;
245 struct intel_renderbuffer *irb;
246
Kristian Høgsbergd7322c92010-02-26 14:49:31 -0500247 rb = _mesa_lookup_renderbuffer(&intel->ctx, renderbuffer);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500248 if (!rb) {
249 _mesa_error(&intel->ctx,
250 GL_INVALID_OPERATION, "glRenderbufferExternalMESA");
251 return NULL;
252 }
253
254 irb = intel_renderbuffer(rb);
255 image = CALLOC(sizeof *image);
256 if (image == NULL)
257 return NULL;
258
259 image->internal_format = rb->InternalFormat;
260 image->format = rb->Format;
Brian Paulf9874fe2012-01-16 12:03:09 -0700261 image->data_type = GL_UNSIGNED_BYTE;
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500262 image->data = loaderPrivate;
Chad Versaceda2816a2011-11-16 14:04:25 -0800263 intel_region_reference(&image->region, irb->mt->region);
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500264
Ander Conselvan de Oliveira249817e2012-04-30 12:32:45 +0300265 switch (image->format) {
266 case MESA_FORMAT_RGB565:
267 image->dri_format = __DRI_IMAGE_FORMAT_RGB565;
268 break;
269 case MESA_FORMAT_XRGB8888:
270 image->dri_format = __DRI_IMAGE_FORMAT_XRGB8888;
271 break;
272 case MESA_FORMAT_ARGB8888:
273 image->dri_format = __DRI_IMAGE_FORMAT_ARGB8888;
274 break;
275 case MESA_FORMAT_RGBA8888_REV:
276 image->dri_format = __DRI_IMAGE_FORMAT_ABGR8888;
277 break;
278 }
279
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500280 return image;
281}
282
283static void
284intel_destroy_image(__DRIimage *image)
285{
286 intel_region_release(&image->region);
287 FREE(image);
288}
289
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400290static __DRIimage *
291intel_create_image(__DRIscreen *screen,
292 int width, int height, int format,
293 unsigned int use,
294 void *loaderPrivate)
295{
296 __DRIimage *image;
George Sapountzis875a7572011-11-03 13:04:57 +0200297 struct intel_screen *intelScreen = screen->driverPrivate;
Kristian Høgsberge5169e92011-05-06 10:31:18 -0400298 uint32_t tiling;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400299 int cpp;
300
Kristian Høgsberge5169e92011-05-06 10:31:18 -0400301 tiling = I915_TILING_X;
302 if (use & __DRI_IMAGE_USE_CURSOR) {
303 if (width != 64 || height != 64)
304 return NULL;
305 tiling = I915_TILING_NONE;
306 }
307
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400308 image = CALLOC(sizeof *image);
309 if (image == NULL)
310 return NULL;
311
Jesse Barnes8de5c352012-02-21 12:53:09 -0800312 image->dri_format = format;
313
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400314 switch (format) {
315 case __DRI_IMAGE_FORMAT_RGB565:
316 image->format = MESA_FORMAT_RGB565;
317 image->internal_format = GL_RGB;
318 image->data_type = GL_UNSIGNED_BYTE;
319 break;
320 case __DRI_IMAGE_FORMAT_XRGB8888:
321 image->format = MESA_FORMAT_XRGB8888;
322 image->internal_format = GL_RGB;
323 image->data_type = GL_UNSIGNED_BYTE;
324 break;
325 case __DRI_IMAGE_FORMAT_ARGB8888:
326 image->format = MESA_FORMAT_ARGB8888;
327 image->internal_format = GL_RGBA;
328 image->data_type = GL_UNSIGNED_BYTE;
329 break;
Chia-I Wu9fe197c2011-08-21 21:36:40 +0800330 case __DRI_IMAGE_FORMAT_ABGR8888:
331 image->format = MESA_FORMAT_RGBA8888_REV;
332 image->internal_format = GL_RGBA;
333 image->data_type = GL_UNSIGNED_BYTE;
334 break;
Sean V Kelleyfd0082c2012-04-24 07:49:10 -0700335 case __DRI_IMAGE_FORMAT_XBGR8888:
336 image->format = MESA_FORMAT_RGBX8888_REV;
337 image->internal_format = GL_RGB;
338 image->data_type = GL_UNSIGNED_BYTE;
339 break;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400340 default:
341 free(image);
342 return NULL;
343 }
344
345 image->data = loaderPrivate;
346 cpp = _mesa_get_format_bytes(image->format);
347
348 image->region =
Kristian Høgsberge5169e92011-05-06 10:31:18 -0400349 intel_region_alloc(intelScreen, tiling,
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700350 cpp, width, height, true);
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400351 if (image->region == NULL) {
352 FREE(image);
353 return NULL;
354 }
355
356 return image;
357}
358
359static GLboolean
360intel_query_image(__DRIimage *image, int attrib, int *value)
361{
362 switch (attrib) {
363 case __DRI_IMAGE_ATTRIB_STRIDE:
364 *value = image->region->pitch * image->region->cpp;
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700365 return true;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400366 case __DRI_IMAGE_ATTRIB_HANDLE:
Eric Anholt8004a1c2011-09-22 11:58:37 -0700367 *value = image->region->bo->handle;
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700368 return true;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400369 case __DRI_IMAGE_ATTRIB_NAME:
370 return intel_region_flink(image->region, (uint32_t *) value);
Jesse Barnes8de5c352012-02-21 12:53:09 -0800371 case __DRI_IMAGE_ATTRIB_FORMAT:
Ander Conselvan de Oliveirafc7d2242012-04-26 16:21:19 +0300372 *value = image->dri_format;
373 return true;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400374 default:
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700375 return false;
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400376 }
377}
378
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100379static __DRIimage *
380intel_dup_image(__DRIimage *orig_image, void *loaderPrivate)
381{
382 __DRIimage *image;
383
384 image = CALLOC(sizeof *image);
385 if (image == NULL)
386 return NULL;
387
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100388 intel_region_reference(&image->region, orig_image->region);
389 if (image->region == NULL) {
390 FREE(image);
391 return NULL;
392 }
393
394 image->internal_format = orig_image->internal_format;
Ander Conselvan de Oliveira249817e2012-04-30 12:32:45 +0300395 image->dri_format = orig_image->dri_format;
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100396 image->format = orig_image->format;
397 image->data_type = orig_image->data_type;
398 image->data = loaderPrivate;
399
400 return image;
401}
402
Kristian Høgsberg221c6782012-01-18 15:32:35 -0500403static GLboolean
404intel_validate_usage(__DRIimage *image, unsigned int use)
405{
406 if (use & __DRI_IMAGE_USE_CURSOR) {
407 if (image->region->width != 64 || image->region->height != 64)
408 return GL_FALSE;
409 }
410
411 return GL_TRUE;
412}
413
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500414static struct __DRIimageExtensionRec intelImageExtension = {
Jesse Barnes0beed7f2012-02-22 09:52:09 -0800415 { __DRI_IMAGE, 3 },
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500416 intel_create_image_from_name,
417 intel_create_image_from_renderbuffer,
418 intel_destroy_image,
Kristian Høgsbergf3019322010-06-06 20:39:19 -0400419 intel_create_image,
Benjamin Franzke3af3c582011-03-09 20:56:02 +0100420 intel_query_image,
Kristian Høgsberg221c6782012-01-18 15:32:35 -0500421 intel_dup_image,
422 intel_validate_usage
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500423};
424
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400425static const __DRIextension *intelScreenExtensions[] = {
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500426 &intelTexBufferExtension.base,
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500427 &intelFlushExtension.base,
Kristian Høgsbergc2624712010-02-11 18:59:40 -0500428 &intelImageExtension.base,
Jesse Barnes234286c2010-04-22 12:47:41 -0700429 &dri2ConfigQueryExtension.base,
Kristian Høgsbergac3e8382007-05-15 15:17:30 -0400430 NULL
431};
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000432
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700433static bool
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500434intel_get_param(__DRIscreen *psp, int param, int *value)
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500435{
436 int ret;
Alan Hourihane1c718c02008-02-22 00:18:54 +0000437 struct drm_i915_getparam gp;
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500438
Eric Anholtf33d1002012-02-16 11:30:49 -0800439 memset(&gp, 0, sizeof(gp));
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500440 gp.param = param;
441 gp.value = value;
442
Alan Hourihane1c718c02008-02-22 00:18:54 +0000443 ret = drmCommandWriteRead(psp->fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500444 if (ret) {
Eric Anholtf6ca4a32011-03-09 12:54:14 -0800445 if (ret != -EINVAL)
446 _mesa_warning(NULL, "drm_i915_getparam: %d", ret);
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700447 return false;
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500448 }
449
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700450 return true;
Kristian Høgsberg24e7e452008-01-09 18:04:19 -0500451}
Kristian Høgsbergac3e8382007-05-15 15:17:30 -0400452
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700453static bool
Chris Wilson900a5c92011-03-01 14:46:50 +0000454intel_get_boolean(__DRIscreen *psp, int param)
455{
456 int value = 0;
457 return intel_get_param(psp, param, &value) && value;
458}
459
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000460static void
Kristian Høgsberg2d995882010-02-11 17:18:01 -0500461nop_callback(GLuint key, void *data, void *userData)
462{
463}
464
465static void
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500466intelDestroyScreen(__DRIscreen * sPriv)
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000467{
George Sapountzis875a7572011-11-03 13:04:57 +0200468 struct intel_screen *intelScreen = sPriv->driverPrivate;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000469
Eric Anholt904f31a2008-09-16 17:01:06 -0700470 dri_bufmgr_destroy(intelScreen->bufmgr);
Eric Anholt6d66f232009-07-02 13:30:20 -0700471 driDestroyOptionInfo(&intelScreen->optionCache);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000472
Kristian Høgsberg2d995882010-02-11 17:18:01 -0500473 /* Some regions may still have references to them at this point, so
474 * flush the hash table to prevent _mesa_DeleteHashTable() from
475 * complaining about the hash not being empty; */
476 _mesa_HashDeleteAll(intelScreen->named_regions, nop_callback, NULL);
477 _mesa_DeleteHashTable(intelScreen->named_regions);
478
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000479 FREE(intelScreen);
George Sapountzis875a7572011-11-03 13:04:57 +0200480 sPriv->driverPrivate = NULL;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000481}
482
483
484/**
485 * This is called when we need to set up GL rendering to a new X window.
486 */
487static GLboolean
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500488intelCreateBuffer(__DRIscreen * driScrnPriv,
489 __DRIdrawable * driDrawPriv,
Kristian Høgsbergd3491e72010-10-12 11:58:47 -0400490 const struct gl_config * mesaVis, GLboolean isPixmap)
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000491{
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500492 struct intel_renderbuffer *rb;
George Sapountzis875a7572011-11-03 13:04:57 +0200493 struct intel_screen *screen = (struct intel_screen*) driScrnPriv->driverPrivate;
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500494
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000495 if (isPixmap) {
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700496 return false; /* not implemented */
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000497 }
498 else {
Brian Paul4a253432009-10-29 19:12:50 -0600499 gl_format rgbFormat;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000500
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500501 struct gl_framebuffer *fb = CALLOC_STRUCT(gl_framebuffer);
Michel Dänzer6b99caf2007-02-15 16:30:40 +0100502
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500503 if (!fb)
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700504 return false;
Michel Dänzer6b99caf2007-02-15 16:30:40 +0100505
Francisco Jerez2ec50d22010-02-03 03:21:04 -0800506 _mesa_initialize_window_framebuffer(fb, mesaVis);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000507
Eric Anholt119f34e2009-02-25 22:54:51 -0800508 if (mesaVis->redBits == 5)
Brian Paul4a253432009-10-29 19:12:50 -0600509 rgbFormat = MESA_FORMAT_RGB565;
Eric Anholt119f34e2009-02-25 22:54:51 -0800510 else if (mesaVis->alphaBits == 0)
Brian Paul409469f2009-10-30 09:12:11 -0600511 rgbFormat = MESA_FORMAT_XRGB8888;
Eric Anholt119f34e2009-02-25 22:54:51 -0800512 else
Brian Paul4a253432009-10-29 19:12:50 -0600513 rgbFormat = MESA_FORMAT_ARGB8888;
Eric Anholt119f34e2009-02-25 22:54:51 -0800514
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000515 /* setup the hardware-based renderbuffers */
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500516 rb = intel_create_renderbuffer(rgbFormat);
Brian Paul9f8ed9d2012-01-16 12:40:01 -0700517 _mesa_add_renderbuffer(fb, BUFFER_FRONT_LEFT, &rb->Base.Base);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000518
519 if (mesaVis->doubleBufferMode) {
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500520 rb = intel_create_renderbuffer(rgbFormat);
Brian Paul9f8ed9d2012-01-16 12:40:01 -0700521 _mesa_add_renderbuffer(fb, BUFFER_BACK_LEFT, &rb->Base.Base);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000522 }
523
Chad Versacef4efb7f2011-05-26 14:55:54 -0700524 /*
525 * Assert here that the gl_config has an expected depth/stencil bit
526 * combination: one of d24/s8, d16/s0, d0/s0. (See intelInitScreen2(),
527 * which constructs the advertised configs.)
528 */
Eric Anholt38c61622007-11-08 14:49:37 -0800529 if (mesaVis->depthBits == 24) {
Eric Anholt800a4b22010-03-16 12:59:59 -0700530 assert(mesaVis->stencilBits == 8);
Chad Versaceaea22362011-06-03 16:33:32 -0700531
532 if (screen->hw_has_separate_stencil
533 && screen->dri2_has_hiz != INTEL_DRI2_HAS_HIZ_FALSE) {
534 /*
535 * Request a separate stencil buffer even if we do not yet know if
536 * the screen supports it. (See comments for
537 * enum intel_dri2_has_hiz).
538 */
539 rb = intel_create_renderbuffer(MESA_FORMAT_X8_Z24);
Brian Paul9f8ed9d2012-01-16 12:40:01 -0700540 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
Chad Versaceaea22362011-06-03 16:33:32 -0700541 rb = intel_create_renderbuffer(MESA_FORMAT_S8);
Brian Paul9f8ed9d2012-01-16 12:40:01 -0700542 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &rb->Base.Base);
Chad Versaceaea22362011-06-03 16:33:32 -0700543 } else {
544 /*
545 * Use combined depth/stencil. Note that the renderbuffer is
546 * attached to two attachment points.
547 */
548 rb = intel_create_renderbuffer(MESA_FORMAT_S8_Z24);
Brian Paul9f8ed9d2012-01-16 12:40:01 -0700549 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &rb->Base.Base);
550 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &rb->Base.Base);
Chad Versaceaea22362011-06-03 16:33:32 -0700551 }
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000552 }
553 else if (mesaVis->depthBits == 16) {
Chad Versacef4efb7f2011-05-26 14:55:54 -0700554 assert(mesaVis->stencilBits == 0);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000555 /* just 16-bit depth buffer, no hw stencil */
556 struct intel_renderbuffer *depthRb
Brian Paul4a253432009-10-29 19:12:50 -0600557 = intel_create_renderbuffer(MESA_FORMAT_Z16);
Brian Paul9f8ed9d2012-01-16 12:40:01 -0700558 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &depthRb->Base.Base);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000559 }
Chad Versacef4efb7f2011-05-26 14:55:54 -0700560 else {
561 assert(mesaVis->depthBits == 0);
562 assert(mesaVis->stencilBits == 0);
563 }
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000564
565 /* now add any/all software-based renderbuffers we may need */
Brian Pauld0dc75c2011-12-05 20:40:48 -0700566 _swrast_add_soft_renderbuffers(fb,
567 false, /* never sw color */
568 false, /* never sw depth */
569 false, /* never sw stencil */
570 mesaVis->accumRedBits > 0,
571 false, /* never sw alpha */
572 false /* never sw aux */ );
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500573 driDrawPriv->driverPrivate = fb;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000574
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700575 return true;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000576 }
577}
578
579static void
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500580intelDestroyBuffer(__DRIdrawable * driDrawPriv)
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000581{
Kristian Høgsbergd2821282010-01-01 23:21:16 -0500582 struct gl_framebuffer *fb = driDrawPriv->driverPrivate;
583
584 _mesa_reference_framebuffer(&fb, NULL);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000585}
586
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000587/* There are probably better ways to do this, such as an
588 * init-designated function to register chipids and createcontext
589 * functions.
590 */
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700591extern bool
592i830CreateContext(const struct gl_config *mesaVis,
593 __DRIcontext *driContextPriv,
594 void *sharedContextPrivate);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000595
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700596extern bool
597i915CreateContext(int api,
598 const struct gl_config *mesaVis,
599 __DRIcontext *driContextPriv,
600 void *sharedContextPrivate);
601extern bool
602brwCreateContext(int api,
603 const struct gl_config *mesaVis,
604 __DRIcontext *driContextPriv,
605 void *sharedContextPrivate);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000606
607static GLboolean
Kristian Høgsberga7a9a912010-04-27 11:04:51 -0400608intelCreateContext(gl_api api,
Kristian Høgsbergd3491e72010-10-12 11:58:47 -0400609 const struct gl_config * mesaVis,
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500610 __DRIcontext * driContextPriv,
Ian Romanicke532b622011-12-01 14:06:58 -0800611 unsigned major_version,
612 unsigned minor_version,
613 uint32_t flags,
614 unsigned *error,
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000615 void *sharedContextPrivate)
616{
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500617 __DRIscreen *sPriv = driContextPriv->driScreenPriv;
George Sapountzis875a7572011-11-03 13:04:57 +0200618 struct intel_screen *intelScreen = sPriv->driverPrivate;
Eric Anholt35cdd7b2012-01-11 12:07:15 -0800619 bool success = false;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000620
Eric Anholtbea6b5f2007-12-20 11:29:39 -0800621#ifdef I915
Eric Anholt19420e62008-02-15 13:16:01 -0800622 if (IS_9XX(intelScreen->deviceID)) {
623 if (!IS_965(intelScreen->deviceID)) {
Ian Romanicke532b622011-12-01 14:06:58 -0800624 success = i915CreateContext(api, mesaVis, driContextPriv,
625 sharedContextPrivate);
Eric Anholt19420e62008-02-15 13:16:01 -0800626 }
Eric Anholtbea6b5f2007-12-20 11:29:39 -0800627 } else {
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700628 intelScreen->no_vbo = true;
Ian Romanicke532b622011-12-01 14:06:58 -0800629 success = i830CreateContext(mesaVis, driContextPriv,
630 sharedContextPrivate);
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000631 }
Eric Anholtbea6b5f2007-12-20 11:29:39 -0800632#else
633 if (IS_965(intelScreen->deviceID))
Ian Romanicke532b622011-12-01 14:06:58 -0800634 success = brwCreateContext(api, mesaVis,
635 driContextPriv,
636 sharedContextPrivate);
Eric Anholtbea6b5f2007-12-20 11:29:39 -0800637#endif
Ian Romanicke532b622011-12-01 14:06:58 -0800638
639 if (success) {
640 struct gl_context *ctx =
641 (struct gl_context *) driContextPriv->driverPrivate;
642
643 _mesa_compute_version(ctx);
644 if (ctx->VersionMajor > major_version
645 || (ctx->VersionMajor == major_version
646 && ctx->VersionMinor >= minor_version)) {
647 *error = __DRI_CTX_ERROR_BAD_VERSION;
648 return true;
649 }
650
651 intelDestroyContext(driContextPriv);
652 } else {
653 *error = __DRI_CTX_ERROR_NO_MEMORY;
654 fprintf(stderr, "Unrecognized deviceID 0x%x\n", intelScreen->deviceID);
655 }
656
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700657 return false;
Keith Whitwell6b9e31f2006-11-01 12:03:11 +0000658}
659
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700660static bool
Kristian Høgsberg5777dee2010-02-11 16:44:21 -0500661intel_init_bufmgr(struct intel_screen *intelScreen)
Eric Anholt7e0bbdc2008-09-04 22:16:31 +0100662{
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500663 __DRIscreen *spriv = intelScreen->driScrnPriv;
Eric Anholtcb4ef342009-07-01 17:08:16 -0700664 int num_fences = 0;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +0100665
Eric Anholt2222aa02012-03-09 16:27:35 -0800666 intelScreen->no_hw = getenv("INTEL_NO_HW") != NULL;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +0100667
Eric Anholt827ba442009-11-18 18:15:25 +0100668 intelScreen->bufmgr = intel_bufmgr_gem_init(spriv->fd, BATCH_SZ);
Eric Anholt7e0bbdc2008-09-04 22:16:31 +0100669 if (intelScreen->bufmgr == NULL) {
Eric Anholt827ba442009-11-18 18:15:25 +0100670 fprintf(stderr, "[%s:%u] Error initializing buffer manager.\n",
671 __func__, __LINE__);
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700672 return false;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +0100673 }
674
Eric Anholtbb350002010-03-04 15:47:19 -0800675 if (!intel_get_param(spriv, I915_PARAM_NUM_FENCES_AVAIL, &num_fences) ||
676 num_fences == 0) {
677 fprintf(stderr, "[%s: %u] Kernel 2.6.29 required.\n", __func__, __LINE__);
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700678 return false;
Eric Anholtbb350002010-03-04 15:47:19 -0800679 }
Eric Anholte7aef002009-04-06 09:38:16 -0700680
Eric Anholt06d14722010-03-02 18:04:40 -0800681 drm_intel_bufmgr_gem_enable_fenced_relocs(intelScreen->bufmgr);
682
Kristian Høgsberg2d995882010-02-11 17:18:01 -0500683 intelScreen->named_regions = _mesa_NewHashTable();
684
Chris Wilson900a5c92011-03-01 14:46:50 +0000685 intelScreen->relaxed_relocations = 0;
686 intelScreen->relaxed_relocations |=
687 intel_get_boolean(spriv, I915_PARAM_HAS_RELAXED_DELTA) << 0;
688
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700689 return true;
Eric Anholt7e0bbdc2008-09-04 22:16:31 +0100690}
691
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500692/**
Chad Versace6b2bf272011-05-26 15:24:48 -0700693 * Override intel_screen.hw_has_separate_stencil with environment variable
694 * INTEL_SEPARATE_STENCIL.
695 *
696 * Valid values for INTEL_SEPARATE_STENCIL are "0" and "1". If an invalid
697 * valid value is encountered, a warning is emitted and INTEL_SEPARATE_STENCIL
698 * is ignored.
699 */
700static void
701intel_override_separate_stencil(struct intel_screen *screen)
702{
703 const char *s = getenv("INTEL_SEPARATE_STENCIL");
704 if (!s) {
705 return;
706 } else if (!strncmp("0", s, 2)) {
707 screen->hw_has_separate_stencil = false;
708 } else if (!strncmp("1", s, 2)) {
709 screen->hw_has_separate_stencil = true;
710 } else {
711 fprintf(stderr,
712 "warning: env variable INTEL_SEPARATE_STENCIL=\"%s\" has "
713 "invalid value and is ignored", s);
714 }
715}
716
Daniel Vetterf172eae2012-03-02 21:38:44 +0100717static bool
718intel_detect_swizzling(struct intel_screen *screen)
719{
720 drm_intel_bo *buffer;
721 unsigned long flags = 0;
722 unsigned long aligned_pitch;
723 uint32_t tiling = I915_TILING_X;
724 uint32_t swizzle_mode = 0;
725
726 buffer = drm_intel_bo_alloc_tiled(screen->bufmgr, "swizzle test",
727 64, 64, 4,
728 &tiling, &aligned_pitch, flags);
729 if (buffer == NULL)
730 return false;
731
732 drm_intel_bo_get_tiling(buffer, &tiling, &swizzle_mode);
733 drm_intel_bo_unreference(buffer);
734
735 if (swizzle_mode == I915_BIT_6_SWIZZLE_NONE)
736 return false;
737 else
738 return true;
739}
740
Chad Versace6b2bf272011-05-26 15:24:48 -0700741/**
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500742 * This is the driver specific part of the createNewScreen entry point.
Brian Paul8d976ae2008-06-11 19:33:14 -0600743 * Called when using DRI2.
744 *
Kristian Høgsbergd3491e72010-10-12 11:58:47 -0400745 * \return the struct gl_config supported by this driver
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500746 */
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400747static const
Kristian Høgsbergd61f0732010-01-01 17:09:12 -0500748__DRIconfig **intelInitScreen2(__DRIscreen *psp)
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500749{
Kristian Høgsberg5777dee2010-02-11 16:44:21 -0500750 struct intel_screen *intelScreen;
Eric Anholt3ee21f32009-01-29 14:57:49 -0800751 GLenum fb_format[3];
752 GLenum fb_type[3];
Kristian Høgsberg5efee4d2010-04-27 21:43:40 -0400753 unsigned int api_mask;
Kristian Høgsberg7c50d292010-01-08 12:35:47 -0500754
Eric Anholt3ee21f32009-01-29 14:57:49 -0800755 static const GLenum back_buffer_modes[] = {
Ian Romanick6bd9da02010-02-08 13:11:58 -0800756 GLX_NONE, GLX_SWAP_UNDEFINED_OML, GLX_SWAP_COPY_OML
Eric Anholt3ee21f32009-01-29 14:57:49 -0800757 };
Brian Paule1359362009-02-09 11:16:20 -0700758 uint8_t depth_bits[4], stencil_bits[4], msaa_samples_array[1];
Eric Anholt3ee21f32009-01-29 14:57:49 -0800759 int color;
Eric Anholt5d5ae372009-02-10 14:30:38 -0800760 __DRIconfig **configs = NULL;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500761
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500762 /* Allocate the private area */
Kristian Høgsberg5777dee2010-02-11 16:44:21 -0500763 intelScreen = CALLOC(sizeof *intelScreen);
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500764 if (!intelScreen) {
765 fprintf(stderr, "\nERROR! Allocating private area failed\n");
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700766 return false;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500767 }
768 /* parse information in __driConfigOptions */
769 driParseOptionInfo(&intelScreen->optionCache,
770 __driConfigOptions, __driNConfigOptions);
771
772 intelScreen->driScrnPriv = psp;
George Sapountzis875a7572011-11-03 13:04:57 +0200773 psp->driverPrivate = (void *) intelScreen;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500774
Eric Anholt2222aa02012-03-09 16:27:35 -0800775 if (!intel_init_bufmgr(intelScreen))
776 return false;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500777
Eric Anholt2222aa02012-03-09 16:27:35 -0800778 intelScreen->deviceID = drm_intel_bufmgr_gem_get_devid(intelScreen->bufmgr);
Eric Anholt4ac2f092010-12-02 18:25:45 -0800779
Eric Anholtcd2a24a2011-12-29 23:37:17 -0800780 intelScreen->kernel_has_gen7_sol_reset =
781 intel_get_boolean(intelScreen->driScrnPriv,
782 I915_PARAM_HAS_GEN7_SOL_RESET);
783
Kenneth Graunke89a82d72011-05-16 15:19:22 -0700784 if (IS_GEN7(intelScreen->deviceID)) {
785 intelScreen->gen = 7;
786 } else if (IS_GEN6(intelScreen->deviceID)) {
Kristian Høgsberg73630882011-04-25 09:49:09 -0400787 intelScreen->gen = 6;
788 } else if (IS_GEN5(intelScreen->deviceID)) {
789 intelScreen->gen = 5;
790 } else if (IS_965(intelScreen->deviceID)) {
791 intelScreen->gen = 4;
792 } else if (IS_9XX(intelScreen->deviceID)) {
793 intelScreen->gen = 3;
794 } else {
795 intelScreen->gen = 2;
796 }
797
Chad Versacee5411d82011-11-17 08:53:39 -0800798 intelScreen->hw_has_separate_stencil = intelScreen->gen >= 6;
Chad Versace6b2bf272011-05-26 15:24:48 -0700799 intelScreen->hw_must_use_separate_stencil = intelScreen->gen >= 7;
Chad Versace6b2bf272011-05-26 15:24:48 -0700800 intelScreen->dri2_has_hiz = INTEL_DRI2_HAS_HIZ_UNKNOWN;
801
Eric Anholt249fc702012-03-21 14:35:14 -0700802 int has_llc = 0;
803 bool success = intel_get_param(intelScreen->driScrnPriv, I915_PARAM_HAS_LLC,
804 &has_llc);
805 if (success && has_llc)
806 intelScreen->hw_has_llc = true;
807 else if (!success && intelScreen->gen >= 6)
808 intelScreen->hw_has_llc = true;
Eugeni Dodonov7def2932012-02-01 18:06:53 -0200809
Chad Versace6b2bf272011-05-26 15:24:48 -0700810 intel_override_separate_stencil(intelScreen);
811
Kristian Høgsberg5efee4d2010-04-27 21:43:40 -0400812 api_mask = (1 << __DRI_API_OPENGL);
813#if FEATURE_ES1
814 api_mask |= (1 << __DRI_API_GLES);
815#endif
816#if FEATURE_ES2
817 api_mask |= (1 << __DRI_API_GLES2);
818#endif
819
820 if (IS_9XX(intelScreen->deviceID) || IS_965(intelScreen->deviceID))
821 psp->api_mask = api_mask;
822
Daniel Vetterf172eae2012-03-02 21:38:44 +0100823 intelScreen->hw_has_swizzling = intel_detect_swizzling(intelScreen);
824
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400825 psp->extensions = intelScreenExtensions;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500826
Michel Dänzereaf15db2009-02-10 13:47:49 +0100827 msaa_samples_array[0] = 0;
828
Eric Anholt3ee21f32009-01-29 14:57:49 -0800829 fb_format[0] = GL_RGB;
830 fb_type[0] = GL_UNSIGNED_SHORT_5_6_5;
831
Eric Anholt24ff1692009-01-31 10:32:34 -0800832 fb_format[1] = GL_BGR;
Eric Anholt3ee21f32009-01-29 14:57:49 -0800833 fb_type[1] = GL_UNSIGNED_INT_8_8_8_8_REV;
834
Eric Anholt24ff1692009-01-31 10:32:34 -0800835 fb_format[2] = GL_BGRA;
Eric Anholt3ee21f32009-01-29 14:57:49 -0800836 fb_type[2] = GL_UNSIGNED_INT_8_8_8_8_REV;
837
Eric Anholt160c3612009-02-26 00:18:46 -0800838 depth_bits[0] = 0;
839 stencil_bits[0] = 0;
840
Ian Romanickbb65a1d2010-02-08 11:21:29 -0800841 /* Generate a rich set of useful configs that do not include an
842 * accumulation buffer.
843 */
Eric Anholt3ee21f32009-01-29 14:57:49 -0800844 for (color = 0; color < ARRAY_SIZE(fb_format); color++) {
Eric Anholt5d5ae372009-02-10 14:30:38 -0800845 __DRIconfig **new_configs;
Eric Anholt160c3612009-02-26 00:18:46 -0800846 int depth_factor;
Eric Anholt3ee21f32009-01-29 14:57:49 -0800847
Ian Romanick066f45c2010-02-08 10:32:29 -0800848 /* Starting with DRI2 protocol version 1.1 we can request a depth/stencil
849 * buffer that has a diffferent number of bits per pixel than the color
850 * buffer. This isn't yet supported here.
Eric Anholt160c3612009-02-26 00:18:46 -0800851 */
852 if (fb_type[color] == GL_UNSIGNED_SHORT_5_6_5) {
853 depth_bits[1] = 16;
854 stencil_bits[1] = 0;
Eric Anholt160c3612009-02-26 00:18:46 -0800855 } else {
856 depth_bits[1] = 24;
Ian Romanick73e24cd2010-02-08 10:34:52 -0800857 stencil_bits[1] = 8;
Eric Anholt160c3612009-02-26 00:18:46 -0800858 }
Ian Romanick73e24cd2010-02-08 10:34:52 -0800859
860 depth_factor = 2;
861
Eric Anholt5d5ae372009-02-10 14:30:38 -0800862 new_configs = driCreateConfigs(fb_format[color], fb_type[color],
863 depth_bits,
864 stencil_bits,
Eric Anholt160c3612009-02-26 00:18:46 -0800865 depth_factor,
Eric Anholt5d5ae372009-02-10 14:30:38 -0800866 back_buffer_modes,
867 ARRAY_SIZE(back_buffer_modes),
868 msaa_samples_array,
Ian Romanick3cce4a12010-02-08 11:09:15 -0800869 ARRAY_SIZE(msaa_samples_array),
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700870 false);
Ian Romanickbb65a1d2010-02-08 11:21:29 -0800871 if (configs == NULL)
872 configs = new_configs;
873 else
874 configs = driConcatConfigs(configs, new_configs);
875 }
876
877 /* Generate the minimum possible set of configs that include an
878 * accumulation buffer.
879 */
880 for (color = 0; color < ARRAY_SIZE(fb_format); color++) {
881 __DRIconfig **new_configs;
882
883 if (fb_type[color] == GL_UNSIGNED_SHORT_5_6_5) {
884 depth_bits[0] = 16;
885 stencil_bits[0] = 0;
886 } else {
887 depth_bits[0] = 24;
888 stencil_bits[0] = 8;
889 }
890
891 new_configs = driCreateConfigs(fb_format[color], fb_type[color],
892 depth_bits, stencil_bits, 1,
893 back_buffer_modes + 1, 1,
894 msaa_samples_array, 1,
Kenneth Graunke2e5a1a22011-10-07 12:26:50 -0700895 true);
Eric Anholt3ee21f32009-01-29 14:57:49 -0800896 if (configs == NULL)
897 configs = new_configs;
898 else
899 configs = driConcatConfigs(configs, new_configs);
900 }
901
902 if (configs == NULL) {
903 fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__,
904 __LINE__);
905 return NULL;
906 }
907
Eric Anholt5d5ae372009-02-10 14:30:38 -0800908 return (const __DRIconfig **)configs;
Kristian Høgsbergc5c73c12008-01-21 17:07:33 -0500909}
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400910
Benjamin Franzke2adfde32011-02-04 12:01:31 +0100911struct intel_buffer {
912 __DRIbuffer base;
913 struct intel_region *region;
914};
915
Chad Versace79653c12011-11-15 07:08:49 -0800916/**
917 * \brief Get tiling format for a DRI buffer.
918 *
919 * \param attachment is the buffer's attachmet point, such as
920 * __DRI_BUFFER_DEPTH.
921 * \param out_tiling is the returned tiling format for buffer.
922 * \return false if attachment is unrecognized or is incompatible with screen.
923 */
924static bool
925intel_get_dri_buffer_tiling(struct intel_screen *screen,
926 uint32_t attachment,
927 uint32_t *out_tiling)
928{
929 if (screen->gen < 4) {
930 *out_tiling = I915_TILING_X;
931 return true;
932 }
933
934 switch (attachment) {
935 case __DRI_BUFFER_DEPTH:
936 case __DRI_BUFFER_DEPTH_STENCIL:
937 case __DRI_BUFFER_HIZ:
938 *out_tiling = I915_TILING_Y;
939 return true;
940 case __DRI_BUFFER_ACCUM:
941 case __DRI_BUFFER_FRONT_LEFT:
942 case __DRI_BUFFER_FRONT_RIGHT:
943 case __DRI_BUFFER_BACK_LEFT:
944 case __DRI_BUFFER_BACK_RIGHT:
945 case __DRI_BUFFER_FAKE_FRONT_LEFT:
946 case __DRI_BUFFER_FAKE_FRONT_RIGHT:
947 *out_tiling = I915_TILING_X;
948 return true;
949 case __DRI_BUFFER_STENCIL:
950 /* The stencil buffer is W tiled. However, we request from the kernel
951 * a non-tiled buffer because the GTT is incapable of W fencing.
952 */
953 *out_tiling = I915_TILING_NONE;
954 return true;
955 default:
956 if(unlikely(INTEL_DEBUG & DEBUG_DRI)) {
957 fprintf(stderr, "error: %s: unrecognized DRI buffer attachment 0x%x\n",
958 __FUNCTION__, attachment);
959 }
960 return false;
961 }
962}
963
Benjamin Franzke2adfde32011-02-04 12:01:31 +0100964static __DRIbuffer *
965intelAllocateBuffer(__DRIscreen *screen,
966 unsigned attachment, unsigned format,
967 int width, int height)
968{
969 struct intel_buffer *intelBuffer;
George Sapountzis875a7572011-11-03 13:04:57 +0200970 struct intel_screen *intelScreen = screen->driverPrivate;
Chad Versace79653c12011-11-15 07:08:49 -0800971
Kristian Høgsberg5dfba092011-04-25 09:53:22 -0400972 uint32_t tiling;
Chad Versace79653c12011-11-15 07:08:49 -0800973 uint32_t region_width;
974 uint32_t region_height;
975 uint32_t region_cpp;
976
977 bool ok = true;
978
979 ok = intel_get_dri_buffer_tiling(intelScreen, attachment, &tiling);
980 if (!ok)
981 return NULL;
Benjamin Franzke2adfde32011-02-04 12:01:31 +0100982
983 intelBuffer = CALLOC(sizeof *intelBuffer);
984 if (intelBuffer == NULL)
985 return NULL;
986
Chad Versace79653c12011-11-15 07:08:49 -0800987 if (attachment == __DRI_BUFFER_STENCIL) {
Paul Berrya27c7d82012-04-06 12:14:28 -0700988 /* Stencil buffers use W tiling, a tiling format that the DRM functions
989 * don't properly account for. Therefore, when we allocate a stencil
990 * buffer that is private to Mesa (see intel_miptree_create), we round
991 * the height and width up to the next multiple of the tile size (64x64)
992 * and then ask DRM to allocate an untiled buffer. Consequently, the
993 * height and the width stored in the stencil buffer's region structure
994 * are always multiples of 64, even if the stencil buffer itself is
995 * smaller.
996 *
997 * To avoid inconsistencies between how we represent private buffers and
998 * buffers shared with the window system, round up the height and width
999 * for window system buffers too.
Chad Versace79653c12011-11-15 07:08:49 -08001000 */
1001 region_width = ALIGN(width, 64);
Paul Berrya27c7d82012-04-06 12:14:28 -07001002 region_height = ALIGN(height, 64);
Chad Versace79653c12011-11-15 07:08:49 -08001003 } else {
1004 region_width = width;
1005 region_height = height;
Chad Versace79653c12011-11-15 07:08:49 -08001006 }
Kristian Høgsberg5dfba092011-04-25 09:53:22 -04001007
Paul Berrya27c7d82012-04-06 12:14:28 -07001008 region_cpp = format / 8;
1009
Chad Versace79653c12011-11-15 07:08:49 -08001010 intelBuffer->region = intel_region_alloc(intelScreen,
1011 tiling,
1012 region_cpp,
1013 region_width,
1014 region_height,
1015 true);
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001016
1017 if (intelBuffer->region == NULL) {
1018 FREE(intelBuffer);
1019 return NULL;
1020 }
1021
1022 intel_region_flink(intelBuffer->region, &intelBuffer->base.name);
1023
1024 intelBuffer->base.attachment = attachment;
1025 intelBuffer->base.cpp = intelBuffer->region->cpp;
1026 intelBuffer->base.pitch =
1027 intelBuffer->region->pitch * intelBuffer->region->cpp;
1028
1029 return &intelBuffer->base;
1030}
1031
1032static void
1033intelReleaseBuffer(__DRIscreen *screen, __DRIbuffer *buffer)
1034{
1035 struct intel_buffer *intelBuffer = (struct intel_buffer *) buffer;
1036
1037 intel_region_release(&intelBuffer->region);
1038 free(intelBuffer);
1039}
1040
1041
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001042const struct __DriverAPIRec driDriverAPI = {
George Sapountzis7192c372011-11-03 12:46:08 +02001043 .InitScreen = intelInitScreen2,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001044 .DestroyScreen = intelDestroyScreen,
1045 .CreateContext = intelCreateContext,
1046 .DestroyContext = intelDestroyContext,
1047 .CreateBuffer = intelCreateBuffer,
1048 .DestroyBuffer = intelDestroyBuffer,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001049 .MakeCurrent = intelMakeCurrent,
1050 .UnbindContext = intelUnbindContext,
Benjamin Franzke2adfde32011-02-04 12:01:31 +01001051 .AllocateBuffer = intelAllocateBuffer,
1052 .ReleaseBuffer = intelReleaseBuffer
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04001053};
Kristian Høgsberg39a0e4e2010-01-01 17:56:29 -05001054
1055/* This is the table of extensions that the loader will dlsym() for. */
1056PUBLIC const __DRIextension *__driDriverExtensions[] = {
1057 &driCoreExtension.base,
Kristian Høgsberg39a0e4e2010-01-01 17:56:29 -05001058 &driDRI2Extension.base,
1059 NULL
1060};