Merge branch 'gallium-index-bias'
[mesa.git] / src / mesa / drivers / dri / savage / savage_xmesa.c
1 /*
2 * Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved.
3 * Copyright 2001-2003 S3 Graphics, Inc. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sub license,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial portions
14 * of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * VIA, S3 GRAPHICS, AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25
26 #include <stdio.h>
27
28 #include "main/context.h"
29 #include "main/context.h"
30 #include "main/matrix.h"
31 #include "main/framebuffer.h"
32 #include "main/renderbuffer.h"
33 #include "main/simple_list.h"
34
35 #include "utils.h"
36
37 #include "main/extensions.h"
38
39 #include "swrast/swrast.h"
40 #include "swrast_setup/swrast_setup.h"
41 #include "tnl/tnl.h"
42 #include "vbo/vbo.h"
43
44 #include "tnl/t_pipeline.h"
45
46 #include "drivers/common/driverfuncs.h"
47 #include "drivers/common/meta.h"
48
49 #include "savagedd.h"
50 #include "savagestate.h"
51 #include "savagetex.h"
52 #include "savagespan.h"
53 #include "savagetris.h"
54 #include "savageioctl.h"
55 #include "savage_bci.h"
56
57 #include "savage_dri.h"
58
59 #include "drirenderbuffer.h"
60 #include "texmem.h"
61
62 #define need_GL_EXT_secondary_color
63 #include "main/remap_helper.h"
64
65 #include "xmlpool.h"
66
67 /* Driver-specific options
68 */
69 #define SAVAGE_ENABLE_VDMA(def) \
70 DRI_CONF_OPT_BEGIN(enable_vdma,bool,def) \
71 DRI_CONF_DESC(en,"Use DMA for vertex transfers") \
72 DRI_CONF_DESC(de,"Benutze DMA für Vertextransfers") \
73 DRI_CONF_OPT_END
74 #define SAVAGE_ENABLE_FASTPATH(def) \
75 DRI_CONF_OPT_BEGIN(enable_fastpath,bool,def) \
76 DRI_CONF_DESC(en,"Use fast path for unclipped primitives") \
77 DRI_CONF_DESC(de,"Schneller Codepfad für ungeschnittene Polygone") \
78 DRI_CONF_OPT_END
79 #define SAVAGE_SYNC_FRAMES(def) \
80 DRI_CONF_OPT_BEGIN(sync_frames,bool,def) \
81 DRI_CONF_DESC(en,"Synchronize with graphics hardware after each frame") \
82 DRI_CONF_DESC(de,"Synchronisiere nach jedem Frame mit Grafikhardware") \
83 DRI_CONF_OPT_END
84
85 /* Configuration
86 */
87 PUBLIC const char __driConfigOptions[] =
88 DRI_CONF_BEGIN
89 DRI_CONF_SECTION_QUALITY
90 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
91 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
92 DRI_CONF_FLOAT_DEPTH(false)
93 DRI_CONF_SECTION_END
94 DRI_CONF_SECTION_PERFORMANCE
95 SAVAGE_ENABLE_VDMA(true)
96 SAVAGE_ENABLE_FASTPATH(true)
97 SAVAGE_SYNC_FRAMES(false)
98 DRI_CONF_MAX_TEXTURE_UNITS(2,1,2)
99 DRI_CONF_TEXTURE_HEAPS(DRI_CONF_TEXTURE_HEAPS_ALL)
100 DRI_CONF_FORCE_S3TC_ENABLE(false)
101 DRI_CONF_SECTION_END
102 DRI_CONF_SECTION_DEBUG
103 DRI_CONF_NO_RAST(false)
104 DRI_CONF_SECTION_END
105 DRI_CONF_END;
106 static const GLuint __driNConfigOptions = 10;
107
108
109 static const struct dri_debug_control debug_control[] =
110 {
111 { "fall", DEBUG_FALLBACKS },
112 { "api", DEBUG_VERBOSE_API },
113 { "tex", DEBUG_VERBOSE_TEX },
114 { "verb", DEBUG_VERBOSE_MSG },
115 { "dma", DEBUG_DMA },
116 { "state", DEBUG_STATE },
117 { NULL, 0 }
118 };
119 #ifndef SAVAGE_DEBUG
120 int SAVAGE_DEBUG = 0;
121 #endif
122
123
124 /*For time caculating test*/
125 #if defined(DEBUG_TIME) && DEBUG_TIME
126 struct timeval tv_s,tv_f;
127 unsigned long time_sum=0;
128 struct timeval tv_s1,tv_f1;
129 #endif
130
131 static const struct dri_extension card_extensions[] =
132 {
133 { "GL_ARB_multitexture", NULL },
134 { "GL_EXT_stencil_wrap", NULL },
135 { "GL_EXT_texture_lod_bias", NULL },
136 { "GL_EXT_secondary_color", GL_EXT_secondary_color_functions },
137 { NULL, NULL }
138 };
139
140 static const struct dri_extension s4_extensions[] =
141 {
142 { "GL_ARB_texture_env_add", NULL },
143 { "GL_ARB_texture_mirrored_repeat", NULL },
144 { NULL, NULL }
145 };
146
147 extern struct tnl_pipeline_stage _savage_texnorm_stage;
148 extern struct tnl_pipeline_stage _savage_render_stage;
149
150 static const struct tnl_pipeline_stage *savage_pipeline[] = {
151
152 &_tnl_vertex_transform_stage,
153 &_tnl_normal_transform_stage,
154 &_tnl_lighting_stage,
155 &_tnl_fog_coordinate_stage,
156 &_tnl_texgen_stage,
157 &_tnl_texture_transform_stage,
158 &_savage_texnorm_stage,
159 &_savage_render_stage,
160 &_tnl_render_stage,
161 0,
162 };
163
164
165 PUBLIC const __DRIextension *savageScreenExtensions[] = {
166 &driCoreExtension.base,
167 &driLegacyExtension.base,
168 &driReadDrawableExtension,
169 };
170
171 static GLboolean
172 savageInitDriver(__DRIscreen *sPriv)
173 {
174 savageScreenPrivate *savageScreen;
175 SAVAGEDRIPtr gDRIPriv = (SAVAGEDRIPtr)sPriv->pDevPriv;
176
177 if (sPriv->devPrivSize != sizeof(SAVAGEDRIRec)) {
178 fprintf(stderr,"\nERROR! sizeof(SAVAGEDRIRec) does not match passed size from device driver\n");
179 return GL_FALSE;
180 }
181
182 /* Allocate the private area */
183 savageScreen = (savageScreenPrivate *)malloc(sizeof(savageScreenPrivate));
184 if (!savageScreen)
185 return GL_FALSE;
186
187 savageScreen->driScrnPriv = sPriv;
188 sPriv->private = (void *)savageScreen;
189
190 savageScreen->chipset=gDRIPriv->chipset;
191 savageScreen->width=gDRIPriv->width;
192 savageScreen->height=gDRIPriv->height;
193 savageScreen->mem=gDRIPriv->mem;
194 savageScreen->cpp=gDRIPriv->cpp;
195 savageScreen->zpp=gDRIPriv->zpp;
196
197 savageScreen->agpMode=gDRIPriv->agpMode;
198
199 savageScreen->bufferSize=gDRIPriv->bufferSize;
200
201 if (gDRIPriv->cpp == 4)
202 savageScreen->frontFormat = DV_PF_8888;
203 else
204 savageScreen->frontFormat = DV_PF_565;
205 savageScreen->frontOffset=gDRIPriv->frontOffset;
206 savageScreen->backOffset = gDRIPriv->backOffset;
207 savageScreen->depthOffset=gDRIPriv->depthOffset;
208
209 savageScreen->textureOffset[SAVAGE_CARD_HEAP] =
210 gDRIPriv->textureOffset;
211 savageScreen->textureSize[SAVAGE_CARD_HEAP] =
212 gDRIPriv->textureSize;
213 savageScreen->logTextureGranularity[SAVAGE_CARD_HEAP] =
214 gDRIPriv->logTextureGranularity;
215
216 savageScreen->textureOffset[SAVAGE_AGP_HEAP] =
217 gDRIPriv->agpTextureHandle;
218 savageScreen->textureSize[SAVAGE_AGP_HEAP] =
219 gDRIPriv->agpTextureSize;
220 savageScreen->logTextureGranularity[SAVAGE_AGP_HEAP] =
221 gDRIPriv->logAgpTextureGranularity;
222
223 savageScreen->agpTextures.handle = gDRIPriv->agpTextureHandle;
224 savageScreen->agpTextures.size = gDRIPriv->agpTextureSize;
225 if (gDRIPriv->agpTextureSize) {
226 if (drmMap(sPriv->fd,
227 savageScreen->agpTextures.handle,
228 savageScreen->agpTextures.size,
229 (drmAddress *)&(savageScreen->agpTextures.map)) != 0) {
230 free(savageScreen);
231 sPriv->private = NULL;
232 return GL_FALSE;
233 }
234 } else
235 savageScreen->agpTextures.map = NULL;
236
237 savageScreen->texVirtual[SAVAGE_CARD_HEAP] =
238 (drmAddress)(((GLubyte *)sPriv->pFB)+gDRIPriv->textureOffset);
239 savageScreen->texVirtual[SAVAGE_AGP_HEAP] =
240 (drmAddress)(savageScreen->agpTextures.map);
241
242 savageScreen->aperture.handle = gDRIPriv->apertureHandle;
243 savageScreen->aperture.size = gDRIPriv->apertureSize;
244 savageScreen->aperturePitch = gDRIPriv->aperturePitch;
245 if (drmMap(sPriv->fd,
246 savageScreen->aperture.handle,
247 savageScreen->aperture.size,
248 (drmAddress *)&savageScreen->aperture.map) != 0)
249 {
250 free(savageScreen);
251 sPriv->private = NULL;
252 return GL_FALSE;
253 }
254
255 savageScreen->bufs = drmMapBufs(sPriv->fd);
256
257 savageScreen->sarea_priv_offset = gDRIPriv->sarea_priv_offset;
258
259 /* parse information in __driConfigOptions */
260 driParseOptionInfo (&savageScreen->optionCache,
261 __driConfigOptions, __driNConfigOptions);
262
263 sPriv->extensions = savageScreenExtensions;
264
265 #if 0
266 savageDDFastPathInit();
267 savageDDTrifuncInit();
268 savageDDSetupInit();
269 #endif
270 return GL_TRUE;
271 }
272
273 /* Accessed by dlsym from dri_mesa_init.c
274 */
275 static void
276 savageDestroyScreen(__DRIscreen *sPriv)
277 {
278 savageScreenPrivate *savageScreen = (savageScreenPrivate *)sPriv->private;
279
280 if (savageScreen->bufs)
281 drmUnmapBufs(savageScreen->bufs);
282
283 /* free all option information */
284 driDestroyOptionInfo (&savageScreen->optionCache);
285
286 free(savageScreen);
287 sPriv->private = NULL;
288 }
289
290 static GLboolean
291 savageCreateContext( const __GLcontextModes *mesaVis,
292 __DRIcontext *driContextPriv,
293 void *sharedContextPrivate )
294 {
295 GLcontext *ctx, *shareCtx;
296 savageContextPtr imesa;
297 __DRIscreen *sPriv = driContextPriv->driScreenPriv;
298 struct dd_function_table functions;
299 savageScreenPrivate *savageScreen = (savageScreenPrivate *)sPriv->private;
300 drm_savage_sarea_t *saPriv=(drm_savage_sarea_t *)(((char*)sPriv->pSAREA)+
301 savageScreen->sarea_priv_offset);
302 int textureSize[SAVAGE_NR_TEX_HEAPS];
303 int i;
304 imesa = (savageContextPtr)calloc(1, sizeof(savageContext));
305 if (!imesa) {
306 return GL_FALSE;
307 }
308
309 /* Init default driver functions then plug in savage-specific texture
310 * functions that are needed as early as during context creation. */
311 _mesa_init_driver_functions( &functions );
312 savageDDInitTextureFuncs( &functions );
313
314 /* Allocate the Mesa context */
315 if (sharedContextPrivate)
316 shareCtx = ((savageContextPtr) sharedContextPrivate)->glCtx;
317 else
318 shareCtx = NULL;
319 ctx = _mesa_create_context(mesaVis, shareCtx, &functions, imesa);
320 if (!ctx) {
321 free(imesa);
322 return GL_FALSE;
323 }
324 driContextPriv->driverPrivate = imesa;
325
326 imesa->cmdBuf.size = SAVAGE_CMDBUF_SIZE;
327 imesa->cmdBuf.base = imesa->cmdBuf.write =
328 malloc(SAVAGE_CMDBUF_SIZE * sizeof(drm_savage_cmd_header_t));
329 if (!imesa->cmdBuf.base)
330 return GL_FALSE;
331
332 /* Parse configuration files */
333 driParseConfigFiles (&imesa->optionCache, &savageScreen->optionCache,
334 sPriv->myNum, "savage");
335
336 imesa->float_depth = driQueryOptionb(&imesa->optionCache, "float_depth") &&
337 savageScreen->chipset >= S3_SAVAGE4;
338 imesa->no_rast = driQueryOptionb(&imesa->optionCache, "no_rast");
339
340 #if 0
341 ctx->Const.MinLineWidth = 1.0;
342 ctx->Const.MinLineWidthAA = 1.0;
343 ctx->Const.MaxLineWidth = 3.0;
344 ctx->Const.MaxLineWidthAA = 3.0;
345 ctx->Const.LineWidthGranularity = 1.0;
346 #endif
347
348 ctx->Const.MaxDrawBuffers = 1;
349
350 /* Dri stuff
351 */
352 imesa->hHWContext = driContextPriv->hHWContext;
353 imesa->driFd = sPriv->fd;
354 imesa->driHwLock = &sPriv->pSAREA->lock;
355
356 imesa->savageScreen = savageScreen;
357 imesa->driScreen = sPriv;
358 imesa->sarea = saPriv;
359 imesa->glBuffer = NULL;
360
361 /* DMA buffer */
362
363 for(i=0;i<5;i++)
364 {
365 imesa->apertureBase[i] = (GLubyte *)savageScreen->aperture.map +
366 0x01000000 * i;
367 }
368
369 imesa->aperturePitch = savageScreen->aperturePitch;
370
371 /* change texHeap initialize to support two kind of texture heap*/
372 /* here is some parts of initialization, others in InitDriver() */
373
374 (void) memset( imesa->textureHeaps, 0, sizeof( imesa->textureHeaps ) );
375 make_empty_list( & imesa->swapped );
376
377 textureSize[SAVAGE_CARD_HEAP] = savageScreen->textureSize[SAVAGE_CARD_HEAP];
378 textureSize[SAVAGE_AGP_HEAP] = savageScreen->textureSize[SAVAGE_AGP_HEAP];
379 imesa->lastTexHeap = savageScreen->texVirtual[SAVAGE_AGP_HEAP] ? 2 : 1;
380 switch(driQueryOptioni (&imesa->optionCache, "texture_heaps")) {
381 case DRI_CONF_TEXTURE_HEAPS_CARD: /* only use card memory, if available */
382 if (textureSize[SAVAGE_CARD_HEAP])
383 imesa->lastTexHeap = 1;
384 break;
385 case DRI_CONF_TEXTURE_HEAPS_GART: /* only use gart memory, if available */
386 if (imesa->lastTexHeap == 2 && textureSize[SAVAGE_AGP_HEAP])
387 textureSize[SAVAGE_CARD_HEAP] = 0;
388 break;
389 /*default: Nothing to do, use all available memory. */
390 }
391
392 for (i = 0; i < imesa->lastTexHeap; i++) {
393 imesa->textureHeaps[i] = driCreateTextureHeap(
394 i, imesa,
395 textureSize[i],
396 11, /* 2^11 = 2k alignment */
397 SAVAGE_NR_TEX_REGIONS,
398 (drmTextureRegionPtr)imesa->sarea->texList[i],
399 &imesa->sarea->texAge[i],
400 &imesa->swapped,
401 sizeof( savageTexObj ),
402 (destroy_texture_object_t *) savageDestroyTexObj );
403 /* If textureSize[i] == 0 textureHeaps[i] is NULL. This can happen
404 * if there is not enough card memory for a card texture heap. */
405 if (imesa->textureHeaps[i])
406 driSetTextureSwapCounterLocation( imesa->textureHeaps[i],
407 & imesa->c_textureSwaps );
408 }
409 imesa->texture_depth = driQueryOptioni (&imesa->optionCache,
410 "texture_depth");
411 if (imesa->texture_depth == DRI_CONF_TEXTURE_DEPTH_FB)
412 imesa->texture_depth = ( savageScreen->cpp == 4 ) ?
413 DRI_CONF_TEXTURE_DEPTH_32 : DRI_CONF_TEXTURE_DEPTH_16;
414
415 if (savageScreen->chipset >= S3_SAVAGE4)
416 ctx->Const.MaxTextureUnits = 2;
417 else
418 ctx->Const.MaxTextureUnits = 1;
419 if (driQueryOptioni(&imesa->optionCache, "texture_units") <
420 ctx->Const.MaxTextureUnits)
421 ctx->Const.MaxTextureUnits =
422 driQueryOptioni(&imesa->optionCache, "texture_units");
423 ctx->Const.MaxTextureImageUnits = ctx->Const.MaxTextureUnits;
424 ctx->Const.MaxTextureCoordUnits = ctx->Const.MaxTextureUnits;
425
426 driCalculateMaxTextureLevels( imesa->textureHeaps,
427 imesa->lastTexHeap,
428 & ctx->Const,
429 4,
430 11, /* max 2D texture size is 2048x2048 */
431 0, /* 3D textures unsupported. */
432 0, /* cube textures unsupported. */
433 0, /* texture rectangles unsupported. */
434 12,
435 GL_FALSE,
436 0 );
437 if (ctx->Const.MaxTextureLevels <= 6) { /*spec requires at least 64x64*/
438 __driUtilMessage("Not enough texture memory. "
439 "Falling back to indirect rendering.");
440 free(imesa);
441 return GL_FALSE;
442 }
443
444 imesa->hw_stencil = mesaVis->stencilBits && mesaVis->depthBits == 24;
445 imesa->depth_scale = (imesa->savageScreen->zpp == 2) ?
446 (1.0F/0xffff):(1.0F/0xffffff);
447
448 imesa->bufferSize = savageScreen->bufferSize;
449 imesa->dmaVtxBuf.total = 0;
450 imesa->dmaVtxBuf.used = 0;
451 imesa->dmaVtxBuf.flushed = 0;
452
453 imesa->clientVtxBuf.total = imesa->bufferSize / 4;
454 imesa->clientVtxBuf.used = 0;
455 imesa->clientVtxBuf.flushed = 0;
456 imesa->clientVtxBuf.buf = (uint32_t *)malloc(imesa->bufferSize);
457
458 imesa->vtxBuf = &imesa->clientVtxBuf;
459
460 imesa->firstElt = -1;
461
462 /* Uninitialized vertex format. Force setting the vertex state in
463 * savageRenderStart.
464 */
465 imesa->vertex_size = 0;
466
467 /* Utah stuff
468 */
469 imesa->new_state = ~0;
470 imesa->new_gl_state = ~0;
471 imesa->RenderIndex = ~0;
472 imesa->dirty = ~0;
473 imesa->lostContext = GL_TRUE;
474 imesa->CurrentTexObj[0] = 0;
475 imesa->CurrentTexObj[1] = 0;
476
477 _mesa_meta_init( ctx );
478
479 /* Initialize the software rasterizer and helper modules.
480 */
481 _swrast_CreateContext( ctx );
482 _vbo_CreateContext( ctx );
483 _tnl_CreateContext( ctx );
484
485 _swsetup_CreateContext( ctx );
486
487 /* Install the customized pipeline:
488 */
489 _tnl_destroy_pipeline( ctx );
490 _tnl_install_pipeline( ctx, savage_pipeline );
491
492 imesa->enable_fastpath = driQueryOptionb(&imesa->optionCache,
493 "enable_fastpath");
494 /* DRM versions before 2.1.3 would only render triangle lists. ELTS
495 * support was added in 2.2.0. */
496 if (imesa->enable_fastpath && sPriv->drm_version.minor < 2) {
497 fprintf (stderr,
498 "*** Disabling fast path because your DRM version is buggy "
499 "or doesn't\n*** support ELTS. You need at least Savage DRM "
500 "version 2.2.\n");
501 imesa->enable_fastpath = GL_FALSE;
502 }
503
504 if (!savageScreen->bufs || savageScreen->chipset == S3_SUPERSAVAGE)
505 imesa->enable_vdma = GL_FALSE;
506 else
507 imesa->enable_vdma = driQueryOptionb(&imesa->optionCache, "enable_vdma");
508
509 imesa->sync_frames = driQueryOptionb(&imesa->optionCache, "sync_frames");
510
511 /* Configure swrast to match hardware characteristics:
512 */
513 _tnl_allow_pixel_fog( ctx, GL_FALSE );
514 _tnl_allow_vertex_fog( ctx, GL_TRUE );
515 _swrast_allow_pixel_fog( ctx, GL_FALSE );
516 _swrast_allow_vertex_fog( ctx, GL_TRUE );
517
518 ctx->DriverCtx = (void *) imesa;
519 imesa->glCtx = ctx;
520
521 #ifndef SAVAGE_DEBUG
522 SAVAGE_DEBUG = driParseDebugString( getenv( "SAVAGE_DEBUG" ),
523 debug_control );
524 #endif
525
526 driInitExtensions( ctx, card_extensions, GL_TRUE );
527 if (savageScreen->chipset >= S3_SAVAGE4)
528 driInitExtensions( ctx, s4_extensions, GL_FALSE );
529 if (ctx->Mesa_DXTn ||
530 driQueryOptionb (&imesa->optionCache, "force_s3tc_enable")) {
531 _mesa_enable_extension( ctx, "GL_S3_s3tc" );
532 if (savageScreen->chipset >= S3_SAVAGE4)
533 /* This extension needs DXT3 and DTX5 support in hardware.
534 * Not available on Savage3D/MX/IX. */
535 _mesa_enable_extension( ctx, "GL_EXT_texture_compression_s3tc" );
536 }
537
538 savageDDInitStateFuncs( ctx );
539 savageDDInitSpanFuncs( ctx );
540 savageDDInitDriverFuncs( ctx );
541 savageDDInitIoctlFuncs( ctx );
542 savageInitTriFuncs( ctx );
543
544 savageDDInitState( imesa );
545
546 driContextPriv->driverPrivate = (void *) imesa;
547
548 return GL_TRUE;
549 }
550
551 static void
552 savageDestroyContext(__DRIcontext *driContextPriv)
553 {
554 savageContextPtr imesa = (savageContextPtr) driContextPriv->driverPrivate;
555 GLuint i;
556
557 assert (imesa); /* should never be NULL */
558 if (imesa) {
559 savageFlushVertices(imesa);
560 savageReleaseIndexedVerts(imesa);
561 savageFlushCmdBuf(imesa, GL_TRUE); /* release DMA buffer */
562 WAIT_IDLE_EMPTY(imesa);
563
564 for (i = 0; i < imesa->lastTexHeap; i++)
565 driDestroyTextureHeap(imesa->textureHeaps[i]);
566
567 free(imesa->cmdBuf.base);
568 free(imesa->clientVtxBuf.buf);
569
570 _mesa_meta_free( imesa->glCtx );
571
572 _swsetup_DestroyContext(imesa->glCtx );
573 _tnl_DestroyContext( imesa->glCtx );
574 _vbo_DestroyContext( imesa->glCtx );
575 _swrast_DestroyContext( imesa->glCtx );
576
577 /* free the Mesa context */
578 imesa->glCtx->DriverCtx = NULL;
579 _mesa_destroy_context(imesa->glCtx);
580
581 /* no longer use vertex_dma_buf*/
582 free(imesa);
583 }
584 }
585
586
587 static GLboolean
588 savageCreateBuffer( __DRIscreen *driScrnPriv,
589 __DRIdrawable *driDrawPriv,
590 const __GLcontextModes *mesaVis,
591 GLboolean isPixmap)
592 {
593 savageScreenPrivate *screen = (savageScreenPrivate *) driScrnPriv->private;
594
595 if (isPixmap) {
596 return GL_FALSE; /* not implemented */
597 }
598 else {
599 GLboolean swStencil = mesaVis->stencilBits > 0 && mesaVis->depthBits != 24;
600 struct gl_framebuffer *fb = _mesa_create_framebuffer(mesaVis);
601 /*
602 * XXX: this value needs to be set according to the config file
603 * setting. But we don't get that until we create a rendering
604 * context!!!!
605 */
606 GLboolean float_depth = GL_FALSE;
607
608 {
609 driRenderbuffer *frontRb
610 = driNewRenderbuffer(MESA_FORMAT_ARGB8888,
611 (GLubyte *) screen->aperture.map
612 + 0x01000000 * TARGET_FRONT,
613 screen->cpp,
614 screen->frontOffset, screen->aperturePitch,
615 driDrawPriv);
616 savageSetSpanFunctions(frontRb, mesaVis, float_depth);
617 assert(frontRb->Base.Data);
618 _mesa_add_renderbuffer(fb, BUFFER_FRONT_LEFT, &frontRb->Base);
619 }
620
621 if (mesaVis->doubleBufferMode) {
622 driRenderbuffer *backRb
623 = driNewRenderbuffer(MESA_FORMAT_ARGB8888,
624 (GLubyte *) screen->aperture.map
625 + 0x01000000 * TARGET_BACK,
626 screen->cpp,
627 screen->backOffset, screen->aperturePitch,
628 driDrawPriv);
629 savageSetSpanFunctions(backRb, mesaVis, float_depth);
630 assert(backRb->Base.Data);
631 _mesa_add_renderbuffer(fb, BUFFER_BACK_LEFT, &backRb->Base);
632 }
633
634 if (mesaVis->depthBits == 16) {
635 driRenderbuffer *depthRb
636 = driNewRenderbuffer(MESA_FORMAT_Z16,
637 (GLubyte *) screen->aperture.map
638 + 0x01000000 * TARGET_DEPTH,
639 screen->zpp,
640 screen->depthOffset, screen->aperturePitch,
641 driDrawPriv);
642 savageSetSpanFunctions(depthRb, mesaVis, float_depth);
643 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &depthRb->Base);
644 }
645 else if (mesaVis->depthBits == 24) {
646 driRenderbuffer *depthRb
647 = driNewRenderbuffer(MESA_FORMAT_S8_Z24,
648 (GLubyte *) screen->aperture.map
649 + 0x01000000 * TARGET_DEPTH,
650 screen->zpp,
651 screen->depthOffset, screen->aperturePitch,
652 driDrawPriv);
653 savageSetSpanFunctions(depthRb, mesaVis, float_depth);
654 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &depthRb->Base);
655 }
656
657 if (mesaVis->stencilBits > 0 && !swStencil) {
658 driRenderbuffer *stencilRb
659 = driNewRenderbuffer(MESA_FORMAT_S8,
660 (GLubyte *) screen->aperture.map
661 + 0x01000000 * TARGET_DEPTH,
662 screen->zpp,
663 screen->depthOffset, screen->aperturePitch,
664 driDrawPriv);
665 savageSetSpanFunctions(stencilRb, mesaVis, float_depth);
666 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &stencilRb->Base);
667 }
668
669 _mesa_add_soft_renderbuffers(fb,
670 GL_FALSE, /* color */
671 GL_FALSE, /* depth */
672 swStencil,
673 mesaVis->accumRedBits > 0,
674 GL_FALSE, /* alpha */
675 GL_FALSE /* aux */);
676 driDrawPriv->driverPrivate = (void *) fb;
677
678 return (driDrawPriv->driverPrivate != NULL);
679 }
680 }
681
682 static void
683 savageDestroyBuffer(__DRIdrawable *driDrawPriv)
684 {
685 _mesa_reference_framebuffer((GLframebuffer **)(&(driDrawPriv->driverPrivate)), NULL);
686 }
687
688 #if 0
689 void XMesaSwapBuffers(__DRIdrawable *driDrawPriv)
690 {
691 /* XXX should do swap according to the buffer, not the context! */
692 savageContextPtr imesa = savageCtx;
693
694 FLUSH_VB( imesa->glCtx, "swap buffers" );
695 savageSwapBuffers(imesa);
696 }
697 #endif
698
699
700 void savageXMesaSetClipRects(savageContextPtr imesa)
701 {
702 __DRIdrawable *dPriv = imesa->driDrawable;
703
704 if ((dPriv->numBackClipRects == 0)
705 || (imesa->glCtx->DrawBuffer->_ColorDrawBufferIndexes[0] == BUFFER_FRONT_LEFT)) {
706 imesa->numClipRects = dPriv->numClipRects;
707 imesa->pClipRects = dPriv->pClipRects;
708 imesa->drawX = dPriv->x;
709 imesa->drawY = dPriv->y;
710 } else {
711 imesa->numClipRects = dPriv->numBackClipRects;
712 imesa->pClipRects = dPriv->pBackClipRects;
713 imesa->drawX = dPriv->backX;
714 imesa->drawY = dPriv->backY;
715 }
716
717 savageCalcViewport( imesa->glCtx );
718 }
719
720
721 static void savageXMesaWindowMoved( savageContextPtr imesa )
722 {
723 __DRIdrawable *const drawable = imesa->driDrawable;
724 __DRIdrawable *const readable = imesa->driReadable;
725
726 if (0)
727 fprintf(stderr, "savageXMesaWindowMoved\n\n");
728
729 savageXMesaSetClipRects(imesa);
730
731 driUpdateFramebufferSize(imesa->glCtx, drawable);
732 if (drawable != readable) {
733 driUpdateFramebufferSize(imesa->glCtx, readable);
734 }
735 }
736
737
738 static GLboolean
739 savageUnbindContext(__DRIcontext *driContextPriv)
740 {
741 savageContextPtr savage = (savageContextPtr) driContextPriv->driverPrivate;
742 if (savage)
743 savage->dirty = ~0;
744
745 return GL_TRUE;
746 }
747
748 #if 0
749 static GLboolean
750 savageOpenFullScreen(__DRIcontext *driContextPriv)
751 {
752
753
754
755 if (driContextPriv) {
756 savageContextPtr imesa = (savageContextPtr) driContextPriv->driverPrivate;
757 imesa->IsFullScreen = GL_TRUE;
758 imesa->backup_frontOffset = imesa->savageScreen->frontOffset;
759 imesa->backup_backOffset = imesa->savageScreen->backOffset;
760 imesa->backup_frontBitmapDesc = imesa->savageScreen->frontBitmapDesc;
761 imesa->savageScreen->frontBitmapDesc = imesa->savageScreen->backBitmapDesc;
762 imesa->toggle = TARGET_BACK;
763 }
764
765 return GL_TRUE;
766 }
767
768 static GLboolean
769 savageCloseFullScreen(__DRIcontext *driContextPriv)
770 {
771
772 if (driContextPriv) {
773 savageContextPtr imesa = (savageContextPtr) driContextPriv->driverPrivate;
774 WAIT_IDLE_EMPTY(imesa);
775 imesa->IsFullScreen = GL_FALSE;
776 imesa->savageScreen->frontOffset = imesa->backup_frontOffset;
777 imesa->savageScreen->backOffset = imesa->backup_backOffset;
778 imesa->savageScreen->frontBitmapDesc = imesa->backup_frontBitmapDesc;
779 }
780 return GL_TRUE;
781 }
782 #endif
783
784 static GLboolean
785 savageMakeCurrent(__DRIcontext *driContextPriv,
786 __DRIdrawable *driDrawPriv,
787 __DRIdrawable *driReadPriv)
788 {
789 if (driContextPriv) {
790 savageContextPtr imesa
791 = (savageContextPtr) driContextPriv->driverPrivate;
792 struct gl_framebuffer *drawBuffer
793 = (GLframebuffer *) driDrawPriv->driverPrivate;
794 struct gl_framebuffer *readBuffer
795 = (GLframebuffer *) driReadPriv->driverPrivate;
796 driRenderbuffer *frontRb = (driRenderbuffer *)
797 drawBuffer->Attachment[BUFFER_FRONT_LEFT].Renderbuffer;
798 driRenderbuffer *backRb = (driRenderbuffer *)
799 drawBuffer->Attachment[BUFFER_BACK_LEFT].Renderbuffer;
800
801 assert(frontRb->Base.Data);
802 if (imesa->glCtx->Visual.doubleBufferMode) {
803 assert(backRb->Base.Data);
804 }
805
806 imesa->driReadable = driReadPriv;
807 imesa->driDrawable = driDrawPriv;
808 imesa->dirty = ~0;
809
810 _mesa_make_current(imesa->glCtx, drawBuffer, readBuffer);
811
812 savageXMesaWindowMoved( imesa );
813 }
814 else
815 {
816 _mesa_make_current(NULL, NULL, NULL);
817 }
818 return GL_TRUE;
819 }
820
821
822 void savageGetLock( savageContextPtr imesa, GLuint flags )
823 {
824 __DRIdrawable *const drawable = imesa->driDrawable;
825 __DRIdrawable *const readable = imesa->driReadable;
826 __DRIscreen *sPriv = imesa->driScreen;
827 drm_savage_sarea_t *sarea = imesa->sarea;
828 int me = imesa->hHWContext;
829 int stamp = drawable->lastStamp;
830 int heap;
831 unsigned int timestamp = 0;
832
833
834
835 /* We know there has been contention.
836 */
837 drmGetLock(imesa->driFd, imesa->hHWContext, flags);
838
839
840 /* Note contention for throttling hint
841 */
842 imesa->any_contend = 1;
843
844 /* If the window moved, may need to set a new cliprect now.
845 *
846 * NOTE: This releases and regains the hw lock, so all state
847 * checking must be done *after* this call:
848 */
849 DRI_VALIDATE_DRAWABLE_INFO(sPriv, drawable);
850 if (drawable != readable) {
851 DRI_VALIDATE_DRAWABLE_INFO(sPriv, readable);
852 }
853
854
855 /* If we lost context, need to dump all registers to hardware.
856 * Note that we don't care about 2d contexts, even if they perform
857 * accelerated commands, so the DRI locking in the X server is even
858 * more broken than usual.
859 */
860 if (sarea->ctxOwner != me) {
861 imesa->dirty |= (SAVAGE_UPLOAD_LOCAL |
862 SAVAGE_UPLOAD_GLOBAL |
863 SAVAGE_UPLOAD_FOGTBL |
864 SAVAGE_UPLOAD_TEX0 |
865 SAVAGE_UPLOAD_TEX1 |
866 SAVAGE_UPLOAD_TEXGLOBAL);
867 imesa->lostContext = GL_TRUE;
868 sarea->ctxOwner = me;
869 }
870
871 for (heap = 0; heap < imesa->lastTexHeap; ++heap) {
872 /* If a heap was changed, update its timestamp. Do this before
873 * DRI_AGE_TEXTURES updates the local_age. */
874 if (imesa->textureHeaps[heap] &&
875 imesa->textureHeaps[heap]->global_age[0] >
876 imesa->textureHeaps[heap]->local_age) {
877 if (timestamp == 0)
878 timestamp = savageEmitEventLocked(imesa, 0);
879 imesa->textureHeaps[heap]->timestamp = timestamp;
880 }
881 DRI_AGE_TEXTURES( imesa->textureHeaps[heap] );
882 }
883
884 if (drawable->lastStamp != stamp) {
885 driUpdateFramebufferSize(imesa->glCtx, drawable);
886 savageXMesaWindowMoved( imesa );
887 }
888 }
889
890 static const __DRIconfig **
891 savageFillInModes( __DRIscreen *psp,
892 unsigned pixel_bits, unsigned depth_bits,
893 unsigned stencil_bits, GLboolean have_back_buffer )
894 {
895 __DRIconfig **configs;
896 __GLcontextModes * m;
897 unsigned depth_buffer_factor;
898 unsigned back_buffer_factor;
899 GLenum fb_format;
900 GLenum fb_type;
901 int i;
902
903 /* Right now GLX_SWAP_COPY_OML isn't supported, but it would be easy
904 * enough to add support. Basically, if a context is created with an
905 * fbconfig where the swap method is GLX_SWAP_COPY_OML, pageflipping
906 * will never be used.
907 *
908 * FK: What about drivers that don't use page flipping? Could they
909 * just expose GLX_SWAP_COPY_OML?
910 */
911 static const GLenum back_buffer_modes[] = {
912 GLX_NONE, GLX_SWAP_UNDEFINED_OML /*, GLX_SWAP_COPY_OML */
913 };
914
915 uint8_t depth_bits_array[2];
916 uint8_t stencil_bits_array[2];
917 uint8_t msaa_samples_array[1];
918
919 depth_bits_array[0] = depth_bits;
920 depth_bits_array[1] = depth_bits;
921
922 /* Just like with the accumulation buffer, always provide some modes
923 * with a stencil buffer. It will be a sw fallback, but some apps won't
924 * care about that.
925 */
926 stencil_bits_array[0] = 0;
927 stencil_bits_array[1] = (stencil_bits == 0) ? 8 : stencil_bits;
928
929 msaa_samples_array[0] = 0;
930
931 depth_buffer_factor = ((depth_bits != 0) || (stencil_bits != 0)) ? 2 : 1;
932 back_buffer_factor = (have_back_buffer) ? 2 : 1;
933
934 if ( pixel_bits == 16 ) {
935 fb_format = GL_RGB;
936 fb_type = GL_UNSIGNED_SHORT_5_6_5;
937 }
938 else {
939 fb_format = GL_BGR;
940 fb_type = GL_UNSIGNED_INT_8_8_8_8_REV;
941 }
942
943 configs = driCreateConfigs(fb_format, fb_type,
944 depth_bits_array, stencil_bits_array,
945 depth_buffer_factor,
946 back_buffer_modes, back_buffer_factor,
947 msaa_samples_array, 1, GL_TRUE);
948 if (configs == NULL) {
949 fprintf( stderr, "[%s:%u] Error creating FBConfig!\n",
950 __func__, __LINE__ );
951 return NULL;
952 }
953
954 /* Mark the visual as slow if there are "fake" stencil bits.
955 */
956 for (i = 0; configs[i]; i++) {
957 m = &configs[i]->modes;
958 if ((m->stencilBits != 0) && (m->stencilBits != stencil_bits)) {
959 m->visualRating = GLX_SLOW_CONFIG;
960 }
961 }
962
963 return (const __DRIconfig **) configs;
964 }
965
966
967 /**
968 * This is the driver specific part of the createNewScreen entry point.
969 *
970 * \todo maybe fold this into intelInitDriver
971 *
972 * \return the __GLcontextModes supported by this driver
973 */
974 static const __DRIconfig **
975 savageInitScreen(__DRIscreen *psp)
976 {
977 static const __DRIversion ddx_expected = { 2, 0, 0 };
978 static const __DRIversion dri_expected = { 4, 0, 0 };
979 static const __DRIversion drm_expected = { 2, 1, 0 };
980 SAVAGEDRIPtr dri_priv = (SAVAGEDRIPtr)psp->pDevPriv;
981
982 if ( ! driCheckDriDdxDrmVersions2( "Savage",
983 &psp->dri_version, & dri_expected,
984 &psp->ddx_version, & ddx_expected,
985 &psp->drm_version, & drm_expected ) )
986 return NULL;
987
988 if (!savageInitDriver(psp))
989 return NULL;
990
991 return savageFillInModes( psp,
992 dri_priv->cpp*8,
993 (dri_priv->cpp == 2) ? 16 : 24,
994 (dri_priv->cpp == 2) ? 0 : 8,
995 (dri_priv->backOffset != dri_priv->depthOffset) );
996 }
997
998 const struct __DriverAPIRec driDriverAPI = {
999 savageInitScreen,
1000 savageDestroyScreen,
1001 savageCreateContext,
1002 savageDestroyContext,
1003 savageCreateBuffer,
1004 savageDestroyBuffer,
1005 savageSwapBuffers,
1006 savageMakeCurrent,
1007 savageUnbindContext
1008 };
1009
1010 /* This is the table of extensions that the loader will dlsym() for. */
1011 PUBLIC const __DRIextension *__driDriverExtensions[] = {
1012 &driCoreExtension.base,
1013 &driLegacyExtension.base,
1014 NULL
1015 };