dri/radeon: use a const __DRIextension array
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_screen.c
1 /**************************************************************************
2
3 Copyright 2000, 2001 ATI Technologies Inc., Ontario, Canada, and
4 VA Linux Systems Inc., Fremont, California.
5
6 All Rights Reserved.
7
8 Permission is hereby granted, free of charge, to any person obtaining
9 a copy of this software and associated documentation files (the
10 "Software"), to deal in the Software without restriction, including
11 without limitation the rights to use, copy, modify, merge, publish,
12 distribute, sublicense, and/or sell copies of the Software, and to
13 permit persons to whom the Software is furnished to do so, subject to
14 the following conditions:
15
16 The above copyright notice and this permission notice (including the
17 next paragraph) shall be included in all copies or substantial
18 portions of the Software.
19
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
24 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28 **************************************************************************/
29
30 /**
31 * \file radeon_screen.c
32 * Screen initialization functions for the Radeon driver.
33 *
34 * \author Kevin E. Martin <martin@valinux.com>
35 * \author Gareth Hughes <gareth@valinux.com>
36 */
37
38 #include <errno.h>
39 #include "main/glheader.h"
40 #include "main/imports.h"
41 #include "main/mtypes.h"
42 #include "main/framebuffer.h"
43 #include "main/renderbuffer.h"
44 #include "main/fbobject.h"
45 #include "swrast/s_renderbuffer.h"
46
47 #include "radeon_chipset.h"
48 #include "radeon_macros.h"
49 #include "radeon_screen.h"
50 #include "radeon_common.h"
51 #include "radeon_common_context.h"
52 #if defined(RADEON_R100)
53 #include "radeon_context.h"
54 #include "radeon_tex.h"
55 #elif defined(RADEON_R200)
56 #include "r200_context.h"
57 #include "r200_tex.h"
58 #endif
59
60 #include "utils.h"
61
62 #include "GL/internal/dri_interface.h"
63
64 /* Radeon configuration
65 */
66 #include "xmlpool.h"
67
68 #define DRI_CONF_COMMAND_BUFFER_SIZE(def,min,max) \
69 DRI_CONF_OPT_BEGIN_V(command_buffer_size,int,def, # min ":" # max ) \
70 DRI_CONF_DESC(en,"Size of command buffer (in KB)") \
71 DRI_CONF_DESC(de,"Grösse des Befehlspuffers (in KB)") \
72 DRI_CONF_OPT_END
73
74 #if defined(RADEON_R100) /* R100 */
75 static const __DRIconfigOptionsExtension radeon_config_options = {
76 .base = { __DRI_CONFIG_OPTIONS, 1 },
77 .xml =
78 DRI_CONF_BEGIN
79 DRI_CONF_SECTION_PERFORMANCE
80 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
81 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
82 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
83 DRI_CONF_MAX_TEXTURE_UNITS(3,2,3)
84 DRI_CONF_HYPERZ("false")
85 DRI_CONF_COMMAND_BUFFER_SIZE(8, 8, 32)
86 DRI_CONF_SECTION_END
87 DRI_CONF_SECTION_QUALITY
88 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
89 DRI_CONF_DEF_MAX_ANISOTROPY(1.0,"1.0,2.0,4.0,8.0,16.0")
90 DRI_CONF_NO_NEG_LOD_BIAS("false")
91 DRI_CONF_FORCE_S3TC_ENABLE("false")
92 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
93 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
94 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
95 DRI_CONF_SECTION_END
96 DRI_CONF_SECTION_DEBUG
97 DRI_CONF_NO_RAST("false")
98 DRI_CONF_SECTION_END
99 DRI_CONF_END
100 };
101
102 #elif defined(RADEON_R200)
103 static const __DRIconfigOptionsExtension radeon_config_options = {
104 .base = { __DRI_CONFIG_OPTIONS, 1 },
105 .xml =
106 DRI_CONF_BEGIN
107 DRI_CONF_SECTION_PERFORMANCE
108 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
109 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
110 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
111 DRI_CONF_MAX_TEXTURE_UNITS(6,2,6)
112 DRI_CONF_HYPERZ("false")
113 DRI_CONF_COMMAND_BUFFER_SIZE(8, 8, 32)
114 DRI_CONF_SECTION_END
115 DRI_CONF_SECTION_QUALITY
116 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
117 DRI_CONF_DEF_MAX_ANISOTROPY(1.0,"1.0,2.0,4.0,8.0,16.0")
118 DRI_CONF_NO_NEG_LOD_BIAS("false")
119 DRI_CONF_FORCE_S3TC_ENABLE("false")
120 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
121 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
122 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
123 DRI_CONF_TEXTURE_BLEND_QUALITY(1.0,"0.0:1.0")
124 DRI_CONF_SECTION_END
125 DRI_CONF_SECTION_DEBUG
126 DRI_CONF_NO_RAST("false")
127 DRI_CONF_SECTION_END
128 DRI_CONF_END
129 };
130 #endif
131
132 #ifndef RADEON_INFO_TILE_CONFIG
133 #define RADEON_INFO_TILE_CONFIG 0x6
134 #endif
135
136 static int
137 radeonGetParam(__DRIscreen *sPriv, int param, void *value)
138 {
139 int ret;
140 drm_radeon_getparam_t gp = { 0 };
141 struct drm_radeon_info info = { 0 };
142
143 if (sPriv->drm_version.major >= 2) {
144 info.value = (uint64_t)(uintptr_t)value;
145 switch (param) {
146 case RADEON_PARAM_DEVICE_ID:
147 info.request = RADEON_INFO_DEVICE_ID;
148 break;
149 case RADEON_PARAM_NUM_GB_PIPES:
150 info.request = RADEON_INFO_NUM_GB_PIPES;
151 break;
152 case RADEON_PARAM_NUM_Z_PIPES:
153 info.request = RADEON_INFO_NUM_Z_PIPES;
154 break;
155 case RADEON_INFO_TILE_CONFIG:
156 info.request = RADEON_INFO_TILE_CONFIG;
157 break;
158 default:
159 return -EINVAL;
160 }
161 ret = drmCommandWriteRead(sPriv->fd, DRM_RADEON_INFO, &info, sizeof(info));
162 } else {
163 gp.param = param;
164 gp.value = value;
165
166 ret = drmCommandWriteRead(sPriv->fd, DRM_RADEON_GETPARAM, &gp, sizeof(gp));
167 }
168 return ret;
169 }
170
171 #if defined(RADEON_R100)
172 static const __DRItexBufferExtension radeonTexBufferExtension = {
173 .base = { __DRI_TEX_BUFFER, 3 },
174
175 .setTexBuffer = radeonSetTexBuffer,
176 .setTexBuffer2 = radeonSetTexBuffer2,
177 .releaseTexBuffer = NULL,
178 };
179 #elif defined(RADEON_R200)
180 static const __DRItexBufferExtension r200TexBufferExtension = {
181 .base = { __DRI_TEX_BUFFER, 3 },
182
183 .setTexBuffer = r200SetTexBuffer,
184 .setTexBuffer2 = r200SetTexBuffer2,
185 .releaseTexBuffer = NULL,
186 };
187 #endif
188
189 static void
190 radeonDRI2Flush(__DRIdrawable *drawable)
191 {
192 radeonContextPtr rmesa;
193
194 rmesa = (radeonContextPtr) drawable->driContextPriv->driverPrivate;
195 radeonFlush(&rmesa->glCtx);
196 }
197
198 static const struct __DRI2flushExtensionRec radeonFlushExtension = {
199 .base = { __DRI2_FLUSH, 3 },
200
201 .flush = radeonDRI2Flush,
202 .invalidate = dri2InvalidateDrawable,
203 };
204
205 static __DRIimage *
206 radeon_create_image_from_name(__DRIscreen *screen,
207 int width, int height, int format,
208 int name, int pitch, void *loaderPrivate)
209 {
210 __DRIimage *image;
211 radeonScreenPtr radeonScreen = screen->driverPrivate;
212
213 if (name == 0)
214 return NULL;
215
216 image = calloc(1, sizeof *image);
217 if (image == NULL)
218 return NULL;
219
220 switch (format) {
221 case __DRI_IMAGE_FORMAT_RGB565:
222 image->format = MESA_FORMAT_B5G6R5_UNORM;
223 image->internal_format = GL_RGB;
224 image->data_type = GL_UNSIGNED_BYTE;
225 break;
226 case __DRI_IMAGE_FORMAT_XRGB8888:
227 image->format = MESA_FORMAT_B8G8R8X8_UNORM;
228 image->internal_format = GL_RGB;
229 image->data_type = GL_UNSIGNED_BYTE;
230 break;
231 case __DRI_IMAGE_FORMAT_ARGB8888:
232 image->format = MESA_FORMAT_B8G8R8A8_UNORM;
233 image->internal_format = GL_RGBA;
234 image->data_type = GL_UNSIGNED_BYTE;
235 break;
236 default:
237 free(image);
238 return NULL;
239 }
240
241 image->data = loaderPrivate;
242 image->cpp = _mesa_get_format_bytes(image->format);
243 image->width = width;
244 image->pitch = pitch;
245 image->height = height;
246
247 image->bo = radeon_bo_open(radeonScreen->bom,
248 (uint32_t)name,
249 image->pitch * image->height * image->cpp,
250 0,
251 RADEON_GEM_DOMAIN_VRAM,
252 0);
253
254 if (image->bo == NULL) {
255 free(image);
256 return NULL;
257 }
258
259 return image;
260 }
261
262 static __DRIimage *
263 radeon_create_image_from_renderbuffer(__DRIcontext *context,
264 int renderbuffer, void *loaderPrivate)
265 {
266 __DRIimage *image;
267 radeonContextPtr radeon = context->driverPrivate;
268 struct gl_renderbuffer *rb;
269 struct radeon_renderbuffer *rrb;
270
271 rb = _mesa_lookup_renderbuffer(&radeon->glCtx, renderbuffer);
272 if (!rb) {
273 _mesa_error(&radeon->glCtx,
274 GL_INVALID_OPERATION, "glRenderbufferExternalMESA");
275 return NULL;
276 }
277
278 rrb = radeon_renderbuffer(rb);
279 image = calloc(1, sizeof *image);
280 if (image == NULL)
281 return NULL;
282
283 image->internal_format = rb->InternalFormat;
284 image->format = rb->Format;
285 image->cpp = rrb->cpp;
286 image->data_type = GL_UNSIGNED_BYTE;
287 image->data = loaderPrivate;
288 radeon_bo_ref(rrb->bo);
289 image->bo = rrb->bo;
290
291 image->width = rb->Width;
292 image->height = rb->Height;
293 image->pitch = rrb->pitch / image->cpp;
294
295 return image;
296 }
297
298 static void
299 radeon_destroy_image(__DRIimage *image)
300 {
301 radeon_bo_unref(image->bo);
302 free(image);
303 }
304
305 static __DRIimage *
306 radeon_create_image(__DRIscreen *screen,
307 int width, int height, int format,
308 unsigned int use,
309 void *loaderPrivate)
310 {
311 __DRIimage *image;
312 radeonScreenPtr radeonScreen = screen->driverPrivate;
313
314 image = calloc(1, sizeof *image);
315 if (image == NULL)
316 return NULL;
317
318 image->dri_format = format;
319
320 switch (format) {
321 case __DRI_IMAGE_FORMAT_RGB565:
322 image->format = MESA_FORMAT_B5G6R5_UNORM;
323 image->internal_format = GL_RGB;
324 image->data_type = GL_UNSIGNED_BYTE;
325 break;
326 case __DRI_IMAGE_FORMAT_XRGB8888:
327 image->format = MESA_FORMAT_B8G8R8X8_UNORM;
328 image->internal_format = GL_RGB;
329 image->data_type = GL_UNSIGNED_BYTE;
330 break;
331 case __DRI_IMAGE_FORMAT_ARGB8888:
332 image->format = MESA_FORMAT_B8G8R8A8_UNORM;
333 image->internal_format = GL_RGBA;
334 image->data_type = GL_UNSIGNED_BYTE;
335 break;
336 default:
337 free(image);
338 return NULL;
339 }
340
341 image->data = loaderPrivate;
342 image->cpp = _mesa_get_format_bytes(image->format);
343 image->width = width;
344 image->height = height;
345 image->pitch = ((image->cpp * image->width + 255) & ~255) / image->cpp;
346
347 image->bo = radeon_bo_open(radeonScreen->bom,
348 0,
349 image->pitch * image->height * image->cpp,
350 0,
351 RADEON_GEM_DOMAIN_VRAM,
352 0);
353
354 if (image->bo == NULL) {
355 free(image);
356 return NULL;
357 }
358
359 return image;
360 }
361
362 static GLboolean
363 radeon_query_image(__DRIimage *image, int attrib, int *value)
364 {
365 switch (attrib) {
366 case __DRI_IMAGE_ATTRIB_STRIDE:
367 *value = image->pitch * image->cpp;
368 return GL_TRUE;
369 case __DRI_IMAGE_ATTRIB_HANDLE:
370 *value = image->bo->handle;
371 return GL_TRUE;
372 case __DRI_IMAGE_ATTRIB_NAME:
373 radeon_gem_get_kernel_name(image->bo, (uint32_t *) value);
374 return GL_TRUE;
375 default:
376 return GL_FALSE;
377 }
378 }
379
380 static const __DRIimageExtension radeonImageExtension = {
381 .base = { __DRI_IMAGE, 1 },
382
383 .createImageFromName = radeon_create_image_from_name,
384 .createImageFromRenderbuffer = radeon_create_image_from_renderbuffer,
385 .destroyImage = radeon_destroy_image,
386 .createImage = radeon_create_image,
387 .queryImage = radeon_query_image
388 };
389
390 static int radeon_set_screen_flags(radeonScreenPtr screen, int device_id)
391 {
392 screen->device_id = device_id;
393 screen->chip_flags = 0;
394 switch ( device_id ) {
395 #if defined(RADEON_R100)
396 case PCI_CHIP_RN50_515E:
397 case PCI_CHIP_RN50_5969:
398 return -1;
399
400 case PCI_CHIP_RADEON_LY:
401 case PCI_CHIP_RADEON_LZ:
402 case PCI_CHIP_RADEON_QY:
403 case PCI_CHIP_RADEON_QZ:
404 screen->chip_family = CHIP_FAMILY_RV100;
405 break;
406
407 case PCI_CHIP_RS100_4136:
408 case PCI_CHIP_RS100_4336:
409 screen->chip_family = CHIP_FAMILY_RS100;
410 break;
411
412 case PCI_CHIP_RS200_4137:
413 case PCI_CHIP_RS200_4337:
414 case PCI_CHIP_RS250_4237:
415 case PCI_CHIP_RS250_4437:
416 screen->chip_family = CHIP_FAMILY_RS200;
417 break;
418
419 case PCI_CHIP_RADEON_QD:
420 case PCI_CHIP_RADEON_QE:
421 case PCI_CHIP_RADEON_QF:
422 case PCI_CHIP_RADEON_QG:
423 /* all original radeons (7200) presumably have a stencil op bug */
424 screen->chip_family = CHIP_FAMILY_R100;
425 screen->chip_flags = RADEON_CHIPSET_TCL | RADEON_CHIPSET_BROKEN_STENCIL | RADEON_CHIPSET_DEPTH_ALWAYS_TILED;
426 break;
427
428 case PCI_CHIP_RV200_QW:
429 case PCI_CHIP_RV200_QX:
430 case PCI_CHIP_RADEON_LW:
431 case PCI_CHIP_RADEON_LX:
432 screen->chip_family = CHIP_FAMILY_RV200;
433 screen->chip_flags = RADEON_CHIPSET_TCL | RADEON_CHIPSET_DEPTH_ALWAYS_TILED;
434 break;
435
436 #elif defined(RADEON_R200)
437 case PCI_CHIP_R200_BB:
438 case PCI_CHIP_R200_QH:
439 case PCI_CHIP_R200_QL:
440 case PCI_CHIP_R200_QM:
441 screen->chip_family = CHIP_FAMILY_R200;
442 screen->chip_flags = RADEON_CHIPSET_TCL | RADEON_CHIPSET_DEPTH_ALWAYS_TILED;
443 break;
444
445 case PCI_CHIP_RV250_If:
446 case PCI_CHIP_RV250_Ig:
447 case PCI_CHIP_RV250_Ld:
448 case PCI_CHIP_RV250_Lf:
449 case PCI_CHIP_RV250_Lg:
450 screen->chip_family = CHIP_FAMILY_RV250;
451 screen->chip_flags = R200_CHIPSET_YCBCR_BROKEN | RADEON_CHIPSET_TCL | RADEON_CHIPSET_DEPTH_ALWAYS_TILED;
452 break;
453
454 case PCI_CHIP_RV280_4C6E:
455 case PCI_CHIP_RV280_5960:
456 case PCI_CHIP_RV280_5961:
457 case PCI_CHIP_RV280_5962:
458 case PCI_CHIP_RV280_5964:
459 case PCI_CHIP_RV280_5965:
460 case PCI_CHIP_RV280_5C61:
461 case PCI_CHIP_RV280_5C63:
462 screen->chip_family = CHIP_FAMILY_RV280;
463 screen->chip_flags = RADEON_CHIPSET_TCL | RADEON_CHIPSET_DEPTH_ALWAYS_TILED;
464 break;
465
466 case PCI_CHIP_RS300_5834:
467 case PCI_CHIP_RS300_5835:
468 case PCI_CHIP_RS350_7834:
469 case PCI_CHIP_RS350_7835:
470 screen->chip_family = CHIP_FAMILY_RS300;
471 screen->chip_flags = RADEON_CHIPSET_DEPTH_ALWAYS_TILED;
472 break;
473 #endif
474
475 default:
476 fprintf(stderr, "unknown chip id 0x%x, can't guess.\n",
477 device_id);
478 return -1;
479 }
480
481 return 0;
482 }
483
484
485 static const __DRIextension *radeon_screen_extensions[] = {
486 &dri2ConfigQueryExtension.base,
487 #if defined(RADEON_R100)
488 &radeonTexBufferExtension.base,
489 #elif defined(RADEON_R200)
490 &r200TexBufferExtension.base,
491 #endif
492 &radeonFlushExtension.base,
493 &radeonImageExtension.base,
494 NULL
495 };
496
497 static radeonScreenPtr
498 radeonCreateScreen2(__DRIscreen *sPriv)
499 {
500 radeonScreenPtr screen;
501 int ret;
502 uint32_t device_id = 0;
503
504 /* Allocate the private area */
505 screen = calloc(1, sizeof(*screen));
506 if ( !screen ) {
507 fprintf(stderr, "%s: Could not allocate memory for screen structure", __FUNCTION__);
508 fprintf(stderr, "leaving here\n");
509 return NULL;
510 }
511
512 radeon_init_debug();
513
514 /* parse information in __driConfigOptions */
515 driParseOptionInfo (&screen->optionCache, radeon_config_options.xml);
516
517 screen->chip_flags = 0;
518
519 screen->irq = 1;
520
521 ret = radeonGetParam(sPriv, RADEON_PARAM_DEVICE_ID, &device_id);
522 if (ret) {
523 free( screen );
524 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_DEVICE_ID): %d\n", ret);
525 return NULL;
526 }
527
528 ret = radeon_set_screen_flags(screen, device_id);
529 if (ret == -1) {
530 free(screen);
531 return NULL;
532 }
533
534 if (getenv("RADEON_NO_TCL"))
535 screen->chip_flags &= ~RADEON_CHIPSET_TCL;
536
537 sPriv->extensions = radeon_screen_extensions;
538
539 screen->driScreen = sPriv;
540 screen->bom = radeon_bo_manager_gem_ctor(sPriv->fd);
541 if (screen->bom == NULL) {
542 free(screen);
543 return NULL;
544 }
545 return screen;
546 }
547
548 /* Destroy the device specific screen private data struct.
549 */
550 static void
551 radeonDestroyScreen( __DRIscreen *sPriv )
552 {
553 radeonScreenPtr screen = (radeonScreenPtr)sPriv->driverPrivate;
554
555 if (!screen)
556 return;
557
558 #ifdef RADEON_BO_TRACK
559 radeon_tracker_print(&screen->bom->tracker, stderr);
560 #endif
561 radeon_bo_manager_gem_dtor(screen->bom);
562
563 /* free all option information */
564 driDestroyOptionInfo (&screen->optionCache);
565
566 free( screen );
567 sPriv->driverPrivate = NULL;
568 }
569
570
571 /* Initialize the driver specific screen private data.
572 */
573 static GLboolean
574 radeonInitDriver( __DRIscreen *sPriv )
575 {
576 sPriv->driverPrivate = (void *) radeonCreateScreen2( sPriv );
577 if ( !sPriv->driverPrivate ) {
578 radeonDestroyScreen( sPriv );
579 return GL_FALSE;
580 }
581
582 return GL_TRUE;
583 }
584
585
586
587 /**
588 * Create the Mesa framebuffer and renderbuffers for a given window/drawable.
589 *
590 * \todo This function (and its interface) will need to be updated to support
591 * pbuffers.
592 */
593 static GLboolean
594 radeonCreateBuffer( __DRIscreen *driScrnPriv,
595 __DRIdrawable *driDrawPriv,
596 const struct gl_config *mesaVis,
597 GLboolean isPixmap )
598 {
599 radeonScreenPtr screen = (radeonScreenPtr) driScrnPriv->driverPrivate;
600
601 const GLboolean swDepth = GL_FALSE;
602 const GLboolean swAlpha = GL_FALSE;
603 const GLboolean swAccum = mesaVis->accumRedBits > 0;
604 const GLboolean swStencil = mesaVis->stencilBits > 0 &&
605 mesaVis->depthBits != 24;
606 mesa_format rgbFormat;
607 struct radeon_framebuffer *rfb;
608
609 if (isPixmap)
610 return GL_FALSE; /* not implemented */
611
612 rfb = CALLOC_STRUCT(radeon_framebuffer);
613 if (!rfb)
614 return GL_FALSE;
615
616 _mesa_initialize_window_framebuffer(&rfb->base, mesaVis);
617
618 if (mesaVis->redBits == 5)
619 rgbFormat = _mesa_little_endian() ? MESA_FORMAT_B5G6R5_UNORM : MESA_FORMAT_R5G6B5_UNORM;
620 else if (mesaVis->alphaBits == 0)
621 rgbFormat = _mesa_little_endian() ? MESA_FORMAT_B8G8R8X8_UNORM : MESA_FORMAT_X8R8G8B8_UNORM;
622 else
623 rgbFormat = _mesa_little_endian() ? MESA_FORMAT_B8G8R8A8_UNORM : MESA_FORMAT_A8R8G8B8_UNORM;
624
625 /* front color renderbuffer */
626 rfb->color_rb[0] = radeon_create_renderbuffer(rgbFormat, driDrawPriv);
627 _mesa_add_renderbuffer(&rfb->base, BUFFER_FRONT_LEFT, &rfb->color_rb[0]->base.Base);
628 rfb->color_rb[0]->has_surface = 1;
629
630 /* back color renderbuffer */
631 if (mesaVis->doubleBufferMode) {
632 rfb->color_rb[1] = radeon_create_renderbuffer(rgbFormat, driDrawPriv);
633 _mesa_add_renderbuffer(&rfb->base, BUFFER_BACK_LEFT, &rfb->color_rb[1]->base.Base);
634 rfb->color_rb[1]->has_surface = 1;
635 }
636
637 if (mesaVis->depthBits == 24) {
638 if (mesaVis->stencilBits == 8) {
639 struct radeon_renderbuffer *depthStencilRb =
640 radeon_create_renderbuffer(MESA_FORMAT_Z24_UNORM_S8_UINT, driDrawPriv);
641 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depthStencilRb->base.Base);
642 _mesa_add_renderbuffer(&rfb->base, BUFFER_STENCIL, &depthStencilRb->base.Base);
643 depthStencilRb->has_surface = screen->depthHasSurface;
644 } else {
645 /* depth renderbuffer */
646 struct radeon_renderbuffer *depth =
647 radeon_create_renderbuffer(MESA_FORMAT_Z24_UNORM_X8_UINT, driDrawPriv);
648 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depth->base.Base);
649 depth->has_surface = screen->depthHasSurface;
650 }
651 } else if (mesaVis->depthBits == 16) {
652 /* just 16-bit depth buffer, no hw stencil */
653 struct radeon_renderbuffer *depth =
654 radeon_create_renderbuffer(MESA_FORMAT_Z_UNORM16, driDrawPriv);
655 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depth->base.Base);
656 depth->has_surface = screen->depthHasSurface;
657 }
658
659 _swrast_add_soft_renderbuffers(&rfb->base,
660 GL_FALSE, /* color */
661 swDepth,
662 swStencil,
663 swAccum,
664 swAlpha,
665 GL_FALSE /* aux */);
666 driDrawPriv->driverPrivate = (void *) rfb;
667
668 return (driDrawPriv->driverPrivate != NULL);
669 }
670
671
672 static void radeon_cleanup_renderbuffers(struct radeon_framebuffer *rfb)
673 {
674 struct radeon_renderbuffer *rb;
675
676 rb = rfb->color_rb[0];
677 if (rb && rb->bo) {
678 radeon_bo_unref(rb->bo);
679 rb->bo = NULL;
680 }
681 rb = rfb->color_rb[1];
682 if (rb && rb->bo) {
683 radeon_bo_unref(rb->bo);
684 rb->bo = NULL;
685 }
686 rb = radeon_get_renderbuffer(&rfb->base, BUFFER_DEPTH);
687 if (rb && rb->bo) {
688 radeon_bo_unref(rb->bo);
689 rb->bo = NULL;
690 }
691 }
692
693 void
694 radeonDestroyBuffer(__DRIdrawable *driDrawPriv)
695 {
696 struct radeon_framebuffer *rfb;
697 if (!driDrawPriv)
698 return;
699
700 rfb = (void*)driDrawPriv->driverPrivate;
701 if (!rfb)
702 return;
703 radeon_cleanup_renderbuffers(rfb);
704 _mesa_reference_framebuffer((struct gl_framebuffer **)(&(driDrawPriv->driverPrivate)), NULL);
705 }
706
707 /**
708 * This is the driver specific part of the createNewScreen entry point.
709 * Called when using DRI2.
710 *
711 * \return the struct gl_config supported by this driver
712 */
713 static const
714 __DRIconfig **radeonInitScreen2(__DRIscreen *psp)
715 {
716 static const mesa_format formats[3] = {
717 MESA_FORMAT_B5G6R5_UNORM,
718 MESA_FORMAT_B8G8R8X8_UNORM,
719 MESA_FORMAT_B8G8R8A8_UNORM
720 };
721 /* GLX_SWAP_COPY_OML is only supported because the Intel driver doesn't
722 * support pageflipping at all.
723 */
724 static const GLenum back_buffer_modes[] = {
725 GLX_NONE, GLX_SWAP_UNDEFINED_OML, /*, GLX_SWAP_COPY_OML*/
726 };
727 uint8_t depth_bits[4], stencil_bits[4], msaa_samples_array[1];
728 int color;
729 __DRIconfig **configs = NULL;
730
731 psp->max_gl_compat_version = 13;
732 psp->max_gl_es1_version = 11;
733
734 if (!radeonInitDriver(psp)) {
735 return NULL;
736 }
737 depth_bits[0] = 0;
738 stencil_bits[0] = 0;
739 depth_bits[1] = 16;
740 stencil_bits[1] = 0;
741 depth_bits[2] = 24;
742 stencil_bits[2] = 0;
743 depth_bits[3] = 24;
744 stencil_bits[3] = 8;
745
746 msaa_samples_array[0] = 0;
747
748 for (color = 0; color < ARRAY_SIZE(formats); color++) {
749 __DRIconfig **new_configs;
750
751 new_configs = driCreateConfigs(formats[color],
752 depth_bits,
753 stencil_bits,
754 ARRAY_SIZE(depth_bits),
755 back_buffer_modes,
756 ARRAY_SIZE(back_buffer_modes),
757 msaa_samples_array,
758 ARRAY_SIZE(msaa_samples_array),
759 GL_TRUE);
760 configs = driConcatConfigs(configs, new_configs);
761 }
762
763 if (configs == NULL) {
764 fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__,
765 __LINE__);
766 return NULL;
767 }
768
769 return (const __DRIconfig **)configs;
770 }
771
772 static const struct __DriverAPIRec radeon_driver_api = {
773 .InitScreen = radeonInitScreen2,
774 .DestroyScreen = radeonDestroyScreen,
775 #if defined(RADEON_R200)
776 .CreateContext = r200CreateContext,
777 .DestroyContext = r200DestroyContext,
778 #else
779 .CreateContext = r100CreateContext,
780 .DestroyContext = radeonDestroyContext,
781 #endif
782 .CreateBuffer = radeonCreateBuffer,
783 .DestroyBuffer = radeonDestroyBuffer,
784 .MakeCurrent = radeonMakeCurrent,
785 .UnbindContext = radeonUnbindContext,
786 };
787
788 static const struct __DRIDriverVtableExtensionRec radeon_vtable = {
789 .base = { __DRI_DRIVER_VTABLE, 1 },
790 .vtable = &radeon_driver_api,
791 };
792
793 /* This is the table of extensions that the loader will dlsym() for. */
794 static const __DRIextension *radeon_driver_extensions[] = {
795 &driCoreExtension.base,
796 &driDRI2Extension.base,
797 &radeon_config_options.base,
798 &radeon_vtable.base,
799 NULL
800 };
801
802 #ifdef RADEON_R200
803 PUBLIC const __DRIextension **__driDriverGetExtensions_r200(void)
804 {
805 globalDriverAPI = &radeon_driver_api;
806
807 return radeon_driver_extensions;
808 }
809 #else
810 PUBLIC const __DRIextension **__driDriverGetExtensions_radeon(void)
811 {
812 globalDriverAPI = &radeon_driver_api;
813
814 return radeon_driver_extensions;
815 }
816 #endif