3a0a8d208b252aac96208491eaa7dec30388b2dc
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_screen.c
1 /* $XFree86: xc/lib/GL/mesa/src/drv/radeon/radeon_screen.c,v 1.7 2003/03/26 20:43:51 tsi Exp $ */
2 /**************************************************************************
3
4 Copyright 2000, 2001 ATI Technologies Inc., Ontario, Canada, and
5 VA Linux Systems Inc., Fremont, California.
6
7 All Rights Reserved.
8
9 Permission is hereby granted, free of charge, to any person obtaining
10 a copy of this software and associated documentation files (the
11 "Software"), to deal in the Software without restriction, including
12 without limitation the rights to use, copy, modify, merge, publish,
13 distribute, sublicense, and/or sell copies of the Software, and to
14 permit persons to whom the Software is furnished to do so, subject to
15 the following conditions:
16
17 The above copyright notice and this permission notice (including the
18 next paragraph) shall be included in all copies or substantial
19 portions of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
25 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 **************************************************************************/
30
31 /**
32 * \file radeon_screen.c
33 * Screen initialization functions for the Radeon driver.
34 *
35 * \author Kevin E. Martin <martin@valinux.com>
36 * \author Gareth Hughes <gareth@valinux.com>
37 */
38
39 #include "glheader.h"
40 #include "imports.h"
41 #include "mtypes.h"
42 #include "framebuffer.h"
43 #include "renderbuffer.h"
44
45 #define STANDALONE_MMIO
46 #include "radeon_chipset.h"
47 #include "radeon_macros.h"
48 #include "radeon_screen.h"
49 #if !RADEON_COMMON
50 #include "radeon_context.h"
51 #include "radeon_span.h"
52 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
53 #include "r200_context.h"
54 #include "r200_ioctl.h"
55 #include "r200_span.h"
56 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
57 #include "r300_context.h"
58 #include "radeon_span.h"
59 #endif
60
61 #include "utils.h"
62 #include "context.h"
63 #include "vblank.h"
64 #include "drirenderbuffer.h"
65
66 #include "GL/internal/dri_interface.h"
67
68 /* Radeon configuration
69 */
70 #include "xmlpool.h"
71
72 #if !RADEON_COMMON /* R100 */
73 PUBLIC const char __driConfigOptions[] =
74 DRI_CONF_BEGIN
75 DRI_CONF_SECTION_PERFORMANCE
76 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
77 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
78 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
79 DRI_CONF_MAX_TEXTURE_UNITS(3,2,3)
80 DRI_CONF_HYPERZ(false)
81 DRI_CONF_SECTION_END
82 DRI_CONF_SECTION_QUALITY
83 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
84 DRI_CONF_DEF_MAX_ANISOTROPY(1.0,"1.0,2.0,4.0,8.0,16.0")
85 DRI_CONF_NO_NEG_LOD_BIAS(false)
86 DRI_CONF_FORCE_S3TC_ENABLE(false)
87 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
88 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
89 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
90 DRI_CONF_ALLOW_LARGE_TEXTURES(1)
91 DRI_CONF_SECTION_END
92 DRI_CONF_SECTION_DEBUG
93 DRI_CONF_NO_RAST(false)
94 DRI_CONF_SECTION_END
95 DRI_CONF_END;
96 static const GLuint __driNConfigOptions = 14;
97
98 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
99
100 PUBLIC const char __driConfigOptions[] =
101 DRI_CONF_BEGIN
102 DRI_CONF_SECTION_PERFORMANCE
103 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
104 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
105 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
106 DRI_CONF_MAX_TEXTURE_UNITS(6,2,6)
107 DRI_CONF_HYPERZ(false)
108 DRI_CONF_SECTION_END
109 DRI_CONF_SECTION_QUALITY
110 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
111 DRI_CONF_DEF_MAX_ANISOTROPY(1.0,"1.0,2.0,4.0,8.0,16.0")
112 DRI_CONF_NO_NEG_LOD_BIAS(false)
113 DRI_CONF_FORCE_S3TC_ENABLE(false)
114 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
115 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
116 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
117 DRI_CONF_ALLOW_LARGE_TEXTURES(1)
118 DRI_CONF_TEXTURE_BLEND_QUALITY(1.0,"0.0:1.0")
119 DRI_CONF_SECTION_END
120 DRI_CONF_SECTION_DEBUG
121 DRI_CONF_NO_RAST(false)
122 DRI_CONF_SECTION_END
123 DRI_CONF_SECTION_SOFTWARE
124 DRI_CONF_ARB_VERTEX_PROGRAM(false)
125 DRI_CONF_NV_VERTEX_PROGRAM(false)
126 DRI_CONF_SECTION_END
127 DRI_CONF_END;
128 static const GLuint __driNConfigOptions = 17;
129
130 extern const struct dri_extension blend_extensions[];
131 extern const struct dri_extension ARB_vp_extension[];
132 extern const struct dri_extension NV_vp_extension[];
133 extern const struct dri_extension ATI_fs_extension[];
134
135 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
136
137 /* TODO: integrate these into xmlpool.h! */
138 #define DRI_CONF_MAX_TEXTURE_IMAGE_UNITS(def,min,max) \
139 DRI_CONF_OPT_BEGIN_V(texture_image_units,int,def, # min ":" # max ) \
140 DRI_CONF_DESC(en,"Number of texture image units") \
141 DRI_CONF_DESC(de,"Anzahl der Textureinheiten") \
142 DRI_CONF_OPT_END
143
144 #define DRI_CONF_MAX_TEXTURE_COORD_UNITS(def,min,max) \
145 DRI_CONF_OPT_BEGIN_V(texture_coord_units,int,def, # min ":" # max ) \
146 DRI_CONF_DESC(en,"Number of texture coordinate units") \
147 DRI_CONF_DESC(de,"Anzahl der Texturkoordinateneinheiten") \
148 DRI_CONF_OPT_END
149
150 #define DRI_CONF_COMMAND_BUFFER_SIZE(def,min,max) \
151 DRI_CONF_OPT_BEGIN_V(command_buffer_size,int,def, # min ":" # max ) \
152 DRI_CONF_DESC(en,"Size of command buffer (in KB)") \
153 DRI_CONF_DESC(de,"Grösse des Befehlspuffers (in KB)") \
154 DRI_CONF_OPT_END
155
156 const char __driConfigOptions[] =
157 DRI_CONF_BEGIN
158 DRI_CONF_SECTION_PERFORMANCE
159 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
160 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
161 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
162 DRI_CONF_MAX_TEXTURE_IMAGE_UNITS(8, 2, 8)
163 DRI_CONF_MAX_TEXTURE_COORD_UNITS(8, 2, 8)
164 DRI_CONF_COMMAND_BUFFER_SIZE(8, 8, 32)
165 DRI_CONF_SECTION_END
166 DRI_CONF_SECTION_QUALITY
167 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
168 DRI_CONF_DEF_MAX_ANISOTROPY(1.0, "1.0,2.0,4.0,8.0,16.0")
169 DRI_CONF_NO_NEG_LOD_BIAS(false)
170 DRI_CONF_FORCE_S3TC_ENABLE(false)
171 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
172 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
173 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
174 DRI_CONF_SECTION_END
175 DRI_CONF_SECTION_DEBUG
176 DRI_CONF_NO_RAST(false)
177 DRI_CONF_SECTION_END
178 DRI_CONF_END;
179 static const GLuint __driNConfigOptions = 14;
180
181 #ifndef RADEON_DEBUG
182 int RADEON_DEBUG = 0;
183
184 static const struct dri_debug_control debug_control[] = {
185 {"fall", DEBUG_FALLBACKS},
186 {"tex", DEBUG_TEXTURE},
187 {"ioctl", DEBUG_IOCTL},
188 {"prim", DEBUG_PRIMS},
189 {"vert", DEBUG_VERTS},
190 {"state", DEBUG_STATE},
191 {"code", DEBUG_CODEGEN},
192 {"vfmt", DEBUG_VFMT},
193 {"vtxf", DEBUG_VFMT},
194 {"verb", DEBUG_VERBOSE},
195 {"dri", DEBUG_DRI},
196 {"dma", DEBUG_DMA},
197 {"san", DEBUG_SANITY},
198 {"sync", DEBUG_SYNC},
199 {"pix", DEBUG_PIXEL},
200 {"mem", DEBUG_MEMORY},
201 {"allmsg", ~DEBUG_SYNC}, /* avoid the term "sync" because the parser uses strstr */
202 {NULL, 0}
203 };
204 #endif /* RADEON_DEBUG */
205
206 #endif /* RADEON_COMMON && defined(RADEON_COMMON_FOR_R300) */
207
208 extern const struct dri_extension card_extensions[];
209
210 static int getSwapInfo( __DRIdrawablePrivate *dPriv, __DRIswapInfo * sInfo );
211
212 static int
213 radeonGetParam(int fd, int param, void *value)
214 {
215 int ret;
216 drm_radeon_getparam_t gp;
217
218 gp.param = param;
219 gp.value = value;
220
221 ret = drmCommandWriteRead( fd, DRM_RADEON_GETPARAM, &gp, sizeof(gp));
222 return ret;
223 }
224
225 static __GLcontextModes *
226 radeonFillInModes( unsigned pixel_bits, unsigned depth_bits,
227 unsigned stencil_bits, GLboolean have_back_buffer )
228 {
229 __GLcontextModes * modes;
230 __GLcontextModes * m;
231 unsigned num_modes;
232 unsigned depth_buffer_factor;
233 unsigned back_buffer_factor;
234 GLenum fb_format;
235 GLenum fb_type;
236
237 /* Right now GLX_SWAP_COPY_OML isn't supported, but it would be easy
238 * enough to add support. Basically, if a context is created with an
239 * fbconfig where the swap method is GLX_SWAP_COPY_OML, pageflipping
240 * will never be used.
241 */
242 static const GLenum back_buffer_modes[] = {
243 GLX_NONE, GLX_SWAP_UNDEFINED_OML /*, GLX_SWAP_COPY_OML */
244 };
245
246 u_int8_t depth_bits_array[2];
247 u_int8_t stencil_bits_array[2];
248
249
250 depth_bits_array[0] = depth_bits;
251 depth_bits_array[1] = depth_bits;
252
253 /* Just like with the accumulation buffer, always provide some modes
254 * with a stencil buffer. It will be a sw fallback, but some apps won't
255 * care about that.
256 */
257 stencil_bits_array[0] = 0;
258 stencil_bits_array[1] = (stencil_bits == 0) ? 8 : stencil_bits;
259
260 depth_buffer_factor = ((depth_bits != 0) || (stencil_bits != 0)) ? 2 : 1;
261 back_buffer_factor = (have_back_buffer) ? 2 : 1;
262
263 num_modes = depth_buffer_factor * back_buffer_factor * 4;
264
265 if ( pixel_bits == 16 ) {
266 fb_format = GL_RGB;
267 fb_type = GL_UNSIGNED_SHORT_5_6_5;
268 }
269 else {
270 fb_format = GL_BGRA;
271 fb_type = GL_UNSIGNED_INT_8_8_8_8_REV;
272 }
273
274 modes = (*dri_interface->createContextModes)( num_modes, sizeof( __GLcontextModes ) );
275 m = modes;
276 if ( ! driFillInModes( & m, fb_format, fb_type,
277 depth_bits_array, stencil_bits_array, depth_buffer_factor,
278 back_buffer_modes, back_buffer_factor,
279 GLX_TRUE_COLOR ) ) {
280 fprintf( stderr, "[%s:%u] Error creating FBConfig!\n",
281 __func__, __LINE__ );
282 return NULL;
283 }
284
285 if ( ! driFillInModes( & m, fb_format, fb_type,
286 depth_bits_array, stencil_bits_array, depth_buffer_factor,
287 back_buffer_modes, back_buffer_factor,
288 GLX_DIRECT_COLOR ) ) {
289 fprintf( stderr, "[%s:%u] Error creating FBConfig!\n",
290 __func__, __LINE__ );
291 return NULL;
292 }
293
294 /* Mark the visual as slow if there are "fake" stencil bits.
295 */
296 for ( m = modes ; m != NULL ; m = m->next ) {
297 if ( (m->stencilBits != 0) && (m->stencilBits != stencil_bits) ) {
298 m->visualRating = GLX_SLOW_CONFIG;
299 }
300 }
301
302 return modes;
303 }
304
305
306 /* Create the device specific screen private data struct.
307 */
308 static radeonScreenPtr
309 radeonCreateScreen( __DRIscreenPrivate *sPriv )
310 {
311 radeonScreenPtr screen;
312 RADEONDRIPtr dri_priv = (RADEONDRIPtr)sPriv->pDevPriv;
313 unsigned char *RADEONMMIO;
314 PFNGLXSCRENABLEEXTENSIONPROC glx_enable_extension =
315 (PFNGLXSCRENABLEEXTENSIONPROC) (*dri_interface->getProcAddress("glxEnableExtension"));
316 void * const psc = sPriv->psc->screenConfigs;
317
318 if (sPriv->devPrivSize != sizeof(RADEONDRIRec)) {
319 fprintf(stderr,"\nERROR! sizeof(RADEONDRIRec) does not match passed size from device driver\n");
320 return GL_FALSE;
321 }
322
323 /* Allocate the private area */
324 screen = (radeonScreenPtr) CALLOC( sizeof(*screen) );
325 if ( !screen ) {
326 __driUtilMessage("%s: Could not allocate memory for screen structure",
327 __FUNCTION__);
328 return NULL;
329 }
330
331 #if DO_DEBUG && RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
332 RADEON_DEBUG = driParseDebugString(getenv("RADEON_DEBUG"), debug_control);
333 #endif
334
335 /* parse information in __driConfigOptions */
336 driParseOptionInfo (&screen->optionCache,
337 __driConfigOptions, __driNConfigOptions);
338
339 /* This is first since which regions we map depends on whether or
340 * not we are using a PCI card.
341 */
342 screen->card_type = (dri_priv->IsPCI ? RADEON_CARD_PCI : RADEON_CARD_AGP);
343 {
344 int ret;
345 ret = radeonGetParam( sPriv->fd, RADEON_PARAM_GART_BUFFER_OFFSET,
346 &screen->gart_buffer_offset);
347
348 if (ret) {
349 FREE( screen );
350 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_GART_BUFFER_OFFSET): %d\n", ret);
351 return NULL;
352 }
353
354 ret = radeonGetParam( sPriv->fd, RADEON_PARAM_GART_BASE,
355 &screen->gart_base);
356 if (ret) {
357 FREE( screen );
358 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_GART_BASE): %d\n", ret);
359 return NULL;
360 }
361
362 ret = radeonGetParam( sPriv->fd, RADEON_PARAM_IRQ_NR,
363 &screen->irq);
364 if (ret) {
365 FREE( screen );
366 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_IRQ_NR): %d\n", ret);
367 return NULL;
368 }
369 screen->drmSupportsCubeMapsR200 = (sPriv->drmMinor >= 7);
370 screen->drmSupportsBlendColor = (sPriv->drmMinor >= 11);
371 screen->drmSupportsTriPerf = (sPriv->drmMinor >= 16);
372 screen->drmSupportsFragShader = (sPriv->drmMinor >= 18);
373 screen->drmSupportsPointSprites = (sPriv->drmMinor >= 13);
374 screen->drmSupportsCubeMapsR100 = (sPriv->drmMinor >= 15);
375 }
376
377 screen->mmio.handle = dri_priv->registerHandle;
378 screen->mmio.size = dri_priv->registerSize;
379 if ( drmMap( sPriv->fd,
380 screen->mmio.handle,
381 screen->mmio.size,
382 &screen->mmio.map ) ) {
383 FREE( screen );
384 __driUtilMessage("%s: drmMap failed\n", __FUNCTION__ );
385 return NULL;
386 }
387
388 RADEONMMIO = screen->mmio.map;
389
390 screen->status.handle = dri_priv->statusHandle;
391 screen->status.size = dri_priv->statusSize;
392 if ( drmMap( sPriv->fd,
393 screen->status.handle,
394 screen->status.size,
395 &screen->status.map ) ) {
396 drmUnmap( screen->mmio.map, screen->mmio.size );
397 FREE( screen );
398 __driUtilMessage("%s: drmMap (2) failed\n", __FUNCTION__ );
399 return NULL;
400 }
401 screen->scratch = (__volatile__ u_int32_t *)
402 ((GLubyte *)screen->status.map + RADEON_SCRATCH_REG_OFFSET);
403
404 screen->buffers = drmMapBufs( sPriv->fd );
405 if ( !screen->buffers ) {
406 drmUnmap( screen->status.map, screen->status.size );
407 drmUnmap( screen->mmio.map, screen->mmio.size );
408 FREE( screen );
409 __driUtilMessage("%s: drmMapBufs failed\n", __FUNCTION__ );
410 return NULL;
411 }
412
413 if ( dri_priv->gartTexHandle && dri_priv->gartTexMapSize ) {
414 screen->gartTextures.handle = dri_priv->gartTexHandle;
415 screen->gartTextures.size = dri_priv->gartTexMapSize;
416 if ( drmMap( sPriv->fd,
417 screen->gartTextures.handle,
418 screen->gartTextures.size,
419 (drmAddressPtr)&screen->gartTextures.map ) ) {
420 drmUnmapBufs( screen->buffers );
421 drmUnmap( screen->status.map, screen->status.size );
422 drmUnmap( screen->mmio.map, screen->mmio.size );
423 FREE( screen );
424 __driUtilMessage("%s: drmMap failed for GART texture area\n", __FUNCTION__);
425 return NULL;
426 }
427
428 screen->gart_texture_offset = dri_priv->gartTexOffset + screen->gart_base;
429 }
430
431 screen->chip_flags = 0;
432 /* XXX: add more chipsets */
433 switch ( dri_priv->deviceID ) {
434 case PCI_CHIP_RADEON_LY:
435 case PCI_CHIP_RADEON_LZ:
436 case PCI_CHIP_RADEON_QY:
437 case PCI_CHIP_RADEON_QZ:
438 case PCI_CHIP_RN50_515E:
439 case PCI_CHIP_RN50_5969:
440 screen->chip_family = CHIP_FAMILY_RV100;
441 break;
442
443 case PCI_CHIP_RS100_4136:
444 case PCI_CHIP_RS100_4336:
445 screen->chip_family = CHIP_FAMILY_RS100;
446 break;
447
448 case PCI_CHIP_RS200_4137:
449 case PCI_CHIP_RS200_4337:
450 case PCI_CHIP_RS250_4237:
451 case PCI_CHIP_RS250_4437:
452 screen->chip_family = CHIP_FAMILY_RS200;
453 break;
454
455 case PCI_CHIP_RADEON_QD:
456 case PCI_CHIP_RADEON_QE:
457 case PCI_CHIP_RADEON_QF:
458 case PCI_CHIP_RADEON_QG:
459 /* all original radeons (7200) presumably have a stencil op bug */
460 screen->chip_family = CHIP_FAMILY_R100;
461 screen->chip_flags = RADEON_CHIPSET_TCL | RADEON_CHIPSET_BROKEN_STENCIL;
462 break;
463
464 case PCI_CHIP_RV200_QW:
465 case PCI_CHIP_RV200_QX:
466 case PCI_CHIP_RADEON_LW:
467 case PCI_CHIP_RADEON_LX:
468 screen->chip_family = CHIP_FAMILY_RV200;
469 screen->chip_flags = RADEON_CHIPSET_TCL;
470 break;
471
472 case PCI_CHIP_R200_BB:
473 case PCI_CHIP_R200_BC:
474 case PCI_CHIP_R200_QH:
475 case PCI_CHIP_R200_QL:
476 case PCI_CHIP_R200_QM:
477 screen->chip_family = CHIP_FAMILY_R200;
478 screen->chip_flags = RADEON_CHIPSET_TCL;
479 break;
480
481 case PCI_CHIP_RV250_If:
482 case PCI_CHIP_RV250_Ig:
483 case PCI_CHIP_RV250_Ld:
484 case PCI_CHIP_RV250_Lf:
485 case PCI_CHIP_RV250_Lg:
486 screen->chip_family = CHIP_FAMILY_RV250;
487 screen->chip_flags = R200_CHIPSET_YCBCR_BROKEN | RADEON_CHIPSET_TCL;
488 break;
489
490 case PCI_CHIP_RV280_5960:
491 case PCI_CHIP_RV280_5961:
492 case PCI_CHIP_RV280_5962:
493 case PCI_CHIP_RV280_5964:
494 case PCI_CHIP_RV280_5965:
495 case PCI_CHIP_RV280_5C61:
496 case PCI_CHIP_RV280_5C63:
497 screen->chip_family = CHIP_FAMILY_RV280;
498 screen->chip_flags = RADEON_CHIPSET_TCL;
499 break;
500
501 case PCI_CHIP_RS300_5834:
502 case PCI_CHIP_RS300_5835:
503 case PCI_CHIP_RS350_7834:
504 case PCI_CHIP_RS350_7835:
505 screen->chip_family = CHIP_FAMILY_RS300;
506 break;
507
508 case PCI_CHIP_R300_AD:
509 case PCI_CHIP_R300_AE:
510 case PCI_CHIP_R300_AF:
511 case PCI_CHIP_R300_AG:
512 case PCI_CHIP_R300_ND:
513 case PCI_CHIP_R300_NE:
514 case PCI_CHIP_R300_NF:
515 case PCI_CHIP_R300_NG:
516 screen->chip_family = CHIP_FAMILY_R300;
517 screen->chip_flags = RADEON_CHIPSET_TCL;
518 break;
519
520 case PCI_CHIP_RV350_AP:
521 case PCI_CHIP_RV350_AQ:
522 case PCI_CHIP_RV350_AR:
523 case PCI_CHIP_RV350_AS:
524 case PCI_CHIP_RV350_AT:
525 case PCI_CHIP_RV350_AV:
526 case PCI_CHIP_RV350_AU:
527 case PCI_CHIP_RV350_NP:
528 case PCI_CHIP_RV350_NQ:
529 case PCI_CHIP_RV350_NR:
530 case PCI_CHIP_RV350_NS:
531 case PCI_CHIP_RV350_NT:
532 case PCI_CHIP_RV350_NV:
533 screen->chip_family = CHIP_FAMILY_RV350;
534 screen->chip_flags = RADEON_CHIPSET_TCL;
535 break;
536
537 case PCI_CHIP_R350_AH:
538 case PCI_CHIP_R350_AI:
539 case PCI_CHIP_R350_AJ:
540 case PCI_CHIP_R350_AK:
541 case PCI_CHIP_R350_NH:
542 case PCI_CHIP_R350_NI:
543 case PCI_CHIP_R360_NJ:
544 case PCI_CHIP_R350_NK:
545 screen->chip_family = CHIP_FAMILY_R350;
546 screen->chip_flags = RADEON_CHIPSET_TCL;
547 break;
548
549 case PCI_CHIP_RV370_5460:
550 case PCI_CHIP_RV370_5462:
551 case PCI_CHIP_RV370_5464:
552 case PCI_CHIP_RV370_5B60:
553 case PCI_CHIP_RV370_5B62:
554 case PCI_CHIP_RV370_5B63:
555 case PCI_CHIP_RV370_5B64:
556 case PCI_CHIP_RV370_5B65:
557 case PCI_CHIP_RV380_3150:
558 case PCI_CHIP_RV380_3152:
559 case PCI_CHIP_RV380_3154:
560 case PCI_CHIP_RV380_3E50:
561 case PCI_CHIP_RV380_3E54:
562 screen->chip_family = CHIP_FAMILY_RV380;
563 screen->chip_flags = RADEON_CHIPSET_TCL;
564 break;
565
566 case PCI_CHIP_R420_JN:
567 case PCI_CHIP_R420_JH:
568 case PCI_CHIP_R420_JI:
569 case PCI_CHIP_R420_JJ:
570 case PCI_CHIP_R420_JK:
571 case PCI_CHIP_R420_JL:
572 case PCI_CHIP_R420_JM:
573 case PCI_CHIP_R420_JO:
574 case PCI_CHIP_R420_JP:
575 case PCI_CHIP_R420_JT:
576 case PCI_CHIP_R481_4B49:
577 case PCI_CHIP_R481_4B4A:
578 case PCI_CHIP_R481_4B4B:
579 case PCI_CHIP_R481_4B4C:
580 case PCI_CHIP_R423_UH:
581 case PCI_CHIP_R423_UI:
582 case PCI_CHIP_R423_UJ:
583 case PCI_CHIP_R423_UK:
584 case PCI_CHIP_R430_554C:
585 case PCI_CHIP_R430_554D:
586 case PCI_CHIP_R430_554E:
587 case PCI_CHIP_R430_554F:
588 case PCI_CHIP_R423_5550:
589 case PCI_CHIP_R423_UQ:
590 case PCI_CHIP_R423_UR:
591 case PCI_CHIP_R423_UT:
592 case PCI_CHIP_R430_5D48:
593 case PCI_CHIP_R430_5D49:
594 case PCI_CHIP_R430_5D4A:
595 case PCI_CHIP_R480_5D4C:
596 case PCI_CHIP_R480_5D4D:
597 case PCI_CHIP_R480_5D4E:
598 case PCI_CHIP_R480_5D4F:
599 case PCI_CHIP_R480_5D50:
600 case PCI_CHIP_R480_5D52:
601 case PCI_CHIP_R423_5D57:
602 screen->chip_family = CHIP_FAMILY_R420;
603 screen->chip_flags = RADEON_CHIPSET_TCL;
604 break;
605
606 case PCI_CHIP_RV410_564A:
607 case PCI_CHIP_RV410_564B:
608 case PCI_CHIP_RV410_564F:
609 case PCI_CHIP_RV410_5652:
610 case PCI_CHIP_RV410_5653:
611 case PCI_CHIP_RV410_5E48:
612 case PCI_CHIP_RV410_5E4A:
613 case PCI_CHIP_RV410_5E4B:
614 case PCI_CHIP_RV410_5E4C:
615 case PCI_CHIP_RV410_5E4D:
616 case PCI_CHIP_RV410_5E4F:
617 screen->chip_family = CHIP_FAMILY_RV410;
618 screen->chip_flags = RADEON_CHIPSET_TCL;
619 break;
620
621 case PCI_CHIP_RS480_5954:
622 case PCI_CHIP_RS480_5955:
623 case PCI_CHIP_RS482_5974:
624 case PCI_CHIP_RS482_5975:
625 case PCI_CHIP_RS400_5A41:
626 case PCI_CHIP_RS400_5A42:
627 case PCI_CHIP_RC410_5A61:
628 case PCI_CHIP_RC410_5A62:
629 screen->chip_family = CHIP_FAMILY_RS400;
630 fprintf(stderr, "Warning, xpress200 detected. Probably won't work.\n");
631 break;
632
633 default:
634 fprintf(stderr, "unknown chip id 0x%x, can't guess.\n",
635 dri_priv->deviceID);
636 return NULL;
637 }
638 if (screen->chip_family == CHIP_FAMILY_R350 ||
639 screen->chip_family == CHIP_FAMILY_R300) {
640 if (getenv("R300_FORCE_R300") == NULL) {
641 fprintf(stderr, "Radeon 9500/9700/9800 cards are not currently stable.\n");
642 fprintf(stderr, "More details can be found at https://bugs.freedesktop.org/show_bug.cgi?id=6318\n");
643 return NULL;
644 }
645 }
646
647 if (screen->chip_family <= CHIP_FAMILY_RS200)
648 screen->chip_flags |= RADEON_CLASS_R100;
649 else if (screen->chip_family <= CHIP_FAMILY_RV280)
650 screen->chip_flags |= RADEON_CLASS_R200;
651 else
652 screen->chip_flags |= RADEON_CLASS_R300;
653
654 screen->cpp = dri_priv->bpp / 8;
655 screen->AGPMode = dri_priv->AGPMode;
656
657 screen->fbLocation = ( INREG( RADEON_MC_FB_LOCATION ) & 0xffff ) << 16;
658
659 if ( sPriv->drmMinor >= 10 ) {
660 drm_radeon_setparam_t sp;
661
662 sp.param = RADEON_SETPARAM_FB_LOCATION;
663 sp.value = screen->fbLocation;
664
665 drmCommandWrite( sPriv->fd, DRM_RADEON_SETPARAM,
666 &sp, sizeof( sp ) );
667 }
668
669 screen->frontOffset = dri_priv->frontOffset;
670 screen->frontPitch = dri_priv->frontPitch;
671 screen->backOffset = dri_priv->backOffset;
672 screen->backPitch = dri_priv->backPitch;
673 screen->depthOffset = dri_priv->depthOffset;
674 screen->depthPitch = dri_priv->depthPitch;
675
676 /* Check if ddx has set up a surface reg to cover depth buffer */
677 screen->depthHasSurface = ((sPriv->ddxMajor > 4) &&
678 (screen->chip_flags & RADEON_CHIPSET_TCL));
679
680 if ( dri_priv->textureSize == 0 ) {
681 screen->texOffset[RADEON_LOCAL_TEX_HEAP] = screen->gart_texture_offset;
682 screen->texSize[RADEON_LOCAL_TEX_HEAP] = dri_priv->gartTexMapSize;
683 screen->logTexGranularity[RADEON_LOCAL_TEX_HEAP] =
684 dri_priv->log2GARTTexGran;
685 } else {
686 screen->texOffset[RADEON_LOCAL_TEX_HEAP] = dri_priv->textureOffset
687 + screen->fbLocation;
688 screen->texSize[RADEON_LOCAL_TEX_HEAP] = dri_priv->textureSize;
689 screen->logTexGranularity[RADEON_LOCAL_TEX_HEAP] =
690 dri_priv->log2TexGran;
691 }
692
693 if ( !screen->gartTextures.map || dri_priv->textureSize == 0
694 || getenv( "RADEON_GARTTEXTURING_FORCE_DISABLE" ) ) {
695 screen->numTexHeaps = RADEON_NR_TEX_HEAPS - 1;
696 screen->texOffset[RADEON_GART_TEX_HEAP] = 0;
697 screen->texSize[RADEON_GART_TEX_HEAP] = 0;
698 screen->logTexGranularity[RADEON_GART_TEX_HEAP] = 0;
699 } else {
700 screen->numTexHeaps = RADEON_NR_TEX_HEAPS;
701 screen->texOffset[RADEON_GART_TEX_HEAP] = screen->gart_texture_offset;
702 screen->texSize[RADEON_GART_TEX_HEAP] = dri_priv->gartTexMapSize;
703 screen->logTexGranularity[RADEON_GART_TEX_HEAP] =
704 dri_priv->log2GARTTexGran;
705 }
706
707 if ( glx_enable_extension != NULL ) {
708 if ( screen->irq != 0 ) {
709 (*glx_enable_extension)( psc, "GLX_SGI_swap_control" );
710 (*glx_enable_extension)( psc, "GLX_SGI_video_sync" );
711 (*glx_enable_extension)( psc, "GLX_MESA_swap_control" );
712 }
713
714 (*glx_enable_extension)( psc, "GLX_MESA_swap_frame_usage" );
715 if (IS_R200_CLASS(screen))
716 (*glx_enable_extension)( psc, "GLX_MESA_allocate_memory" );
717
718 (*glx_enable_extension)( psc, "GLX_MESA_copy_sub_buffer" );
719 }
720
721 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
722 if (IS_R200_CLASS(screen)) {
723 sPriv->psc->allocateMemory = (void *) r200AllocateMemoryMESA;
724 sPriv->psc->freeMemory = (void *) r200FreeMemoryMESA;
725 sPriv->psc->memoryOffset = (void *) r200GetMemoryOffsetMESA;
726 }
727 #endif
728
729 screen->driScreen = sPriv;
730 screen->sarea_priv_offset = dri_priv->sarea_priv_offset;
731 return screen;
732 }
733
734 /* Destroy the device specific screen private data struct.
735 */
736 static void
737 radeonDestroyScreen( __DRIscreenPrivate *sPriv )
738 {
739 radeonScreenPtr screen = (radeonScreenPtr)sPriv->private;
740
741 if (!screen)
742 return;
743
744 if ( screen->gartTextures.map ) {
745 drmUnmap( screen->gartTextures.map, screen->gartTextures.size );
746 }
747 drmUnmapBufs( screen->buffers );
748 drmUnmap( screen->status.map, screen->status.size );
749 drmUnmap( screen->mmio.map, screen->mmio.size );
750
751 /* free all option information */
752 driDestroyOptionInfo (&screen->optionCache);
753
754 FREE( screen );
755 sPriv->private = NULL;
756 }
757
758
759 /* Initialize the driver specific screen private data.
760 */
761 static GLboolean
762 radeonInitDriver( __DRIscreenPrivate *sPriv )
763 {
764 sPriv->private = (void *) radeonCreateScreen( sPriv );
765 if ( !sPriv->private ) {
766 radeonDestroyScreen( sPriv );
767 return GL_FALSE;
768 }
769
770 return GL_TRUE;
771 }
772
773
774 /**
775 * Create the Mesa framebuffer and renderbuffers for a given window/drawable.
776 *
777 * \todo This function (and its interface) will need to be updated to support
778 * pbuffers.
779 */
780 static GLboolean
781 radeonCreateBuffer( __DRIscreenPrivate *driScrnPriv,
782 __DRIdrawablePrivate *driDrawPriv,
783 const __GLcontextModes *mesaVis,
784 GLboolean isPixmap )
785 {
786 radeonScreenPtr screen = (radeonScreenPtr) driScrnPriv->private;
787
788 if (isPixmap) {
789 return GL_FALSE; /* not implemented */
790 }
791 else {
792 const GLboolean swDepth = GL_FALSE;
793 const GLboolean swAlpha = GL_FALSE;
794 const GLboolean swAccum = mesaVis->accumRedBits > 0;
795 const GLboolean swStencil = mesaVis->stencilBits > 0 &&
796 mesaVis->depthBits != 24;
797 struct gl_framebuffer *fb = _mesa_create_framebuffer(mesaVis);
798
799 /* front color renderbuffer */
800 {
801 driRenderbuffer *frontRb
802 = driNewRenderbuffer(GL_RGBA,
803 driScrnPriv->pFB + screen->frontOffset,
804 screen->cpp,
805 screen->frontOffset, screen->frontPitch,
806 driDrawPriv);
807 radeonSetSpanFunctions(frontRb, mesaVis);
808 _mesa_add_renderbuffer(fb, BUFFER_FRONT_LEFT, &frontRb->Base);
809 }
810
811 /* back color renderbuffer */
812 if (mesaVis->doubleBufferMode) {
813 driRenderbuffer *backRb
814 = driNewRenderbuffer(GL_RGBA,
815 driScrnPriv->pFB + screen->backOffset,
816 screen->cpp,
817 screen->backOffset, screen->backPitch,
818 driDrawPriv);
819 radeonSetSpanFunctions(backRb, mesaVis);
820 _mesa_add_renderbuffer(fb, BUFFER_BACK_LEFT, &backRb->Base);
821 }
822
823 /* depth renderbuffer */
824 if (mesaVis->depthBits == 16) {
825 driRenderbuffer *depthRb
826 = driNewRenderbuffer(GL_DEPTH_COMPONENT16,
827 driScrnPriv->pFB + screen->depthOffset,
828 screen->cpp,
829 screen->depthOffset, screen->depthPitch,
830 driDrawPriv);
831 radeonSetSpanFunctions(depthRb, mesaVis);
832 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &depthRb->Base);
833 depthRb->depthHasSurface = screen->depthHasSurface;
834 }
835 else if (mesaVis->depthBits == 24) {
836 driRenderbuffer *depthRb
837 = driNewRenderbuffer(GL_DEPTH_COMPONENT24,
838 driScrnPriv->pFB + screen->depthOffset,
839 screen->cpp,
840 screen->depthOffset, screen->depthPitch,
841 driDrawPriv);
842 radeonSetSpanFunctions(depthRb, mesaVis);
843 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &depthRb->Base);
844 depthRb->depthHasSurface = screen->depthHasSurface;
845 }
846
847 /* stencil renderbuffer */
848 if (mesaVis->stencilBits > 0 && !swStencil) {
849 driRenderbuffer *stencilRb
850 = driNewRenderbuffer(GL_STENCIL_INDEX8_EXT,
851 driScrnPriv->pFB + screen->depthOffset,
852 screen->cpp,
853 screen->depthOffset, screen->depthPitch,
854 driDrawPriv);
855 radeonSetSpanFunctions(stencilRb, mesaVis);
856 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &stencilRb->Base);
857 stencilRb->depthHasSurface = screen->depthHasSurface;
858 }
859
860 _mesa_add_soft_renderbuffers(fb,
861 GL_FALSE, /* color */
862 swDepth,
863 swStencil,
864 swAccum,
865 swAlpha,
866 GL_FALSE /* aux */);
867 driDrawPriv->driverPrivate = (void *) fb;
868
869 return (driDrawPriv->driverPrivate != NULL);
870 }
871 }
872
873
874 static void
875 radeonDestroyBuffer(__DRIdrawablePrivate *driDrawPriv)
876 {
877 _mesa_destroy_framebuffer((GLframebuffer *) (driDrawPriv->driverPrivate));
878 }
879
880 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
881 /**
882 * Choose the appropriate CreateContext function based on the chipset.
883 * Eventually, all drivers will go through this process.
884 */
885 static GLboolean radeonCreateContext(const __GLcontextModes * glVisual,
886 __DRIcontextPrivate * driContextPriv,
887 void *sharedContextPriv)
888 {
889 __DRIscreenPrivate *sPriv = driContextPriv->driScreenPriv;
890 radeonScreenPtr screen = (radeonScreenPtr) (sPriv->private);
891
892 if (IS_R300_CLASS(screen))
893 return r300CreateContext(glVisual, driContextPriv, sharedContextPriv);
894 return GL_FALSE;
895 }
896
897 /**
898 * Choose the appropriate DestroyContext function based on the chipset.
899 */
900 static void radeonDestroyContext(__DRIcontextPrivate * driContextPriv)
901 {
902 radeonContextPtr radeon = (radeonContextPtr) driContextPriv->driverPrivate;
903
904 if (IS_R300_CLASS(radeon->radeonScreen))
905 return r300DestroyContext(driContextPriv);
906 }
907
908
909 #endif
910
911 #if !RADEON_COMMON || (RADEON_COMMON && defined(RADEON_COMMON_FOR_R300))
912 static struct __DriverAPIRec radeonAPI = {
913 .InitDriver = radeonInitDriver,
914 .DestroyScreen = radeonDestroyScreen,
915 .CreateContext = radeonCreateContext,
916 .DestroyContext = radeonDestroyContext,
917 .CreateBuffer = radeonCreateBuffer,
918 .DestroyBuffer = radeonDestroyBuffer,
919 .SwapBuffers = radeonSwapBuffers,
920 .MakeCurrent = radeonMakeCurrent,
921 .UnbindContext = radeonUnbindContext,
922 .GetSwapInfo = getSwapInfo,
923 .GetMSC = driGetMSC32,
924 .WaitForMSC = driWaitForMSC32,
925 .WaitForSBC = NULL,
926 .SwapBuffersMSC = NULL,
927 .CopySubBuffer = radeonCopySubBuffer,
928 };
929 #else
930 static const struct __DriverAPIRec r200API = {
931 .InitDriver = radeonInitDriver,
932 .DestroyScreen = radeonDestroyScreen,
933 .CreateContext = r200CreateContext,
934 .DestroyContext = r200DestroyContext,
935 .CreateBuffer = radeonCreateBuffer,
936 .DestroyBuffer = radeonDestroyBuffer,
937 .SwapBuffers = r200SwapBuffers,
938 .MakeCurrent = r200MakeCurrent,
939 .UnbindContext = r200UnbindContext,
940 .GetSwapInfo = getSwapInfo,
941 .GetMSC = driGetMSC32,
942 .WaitForMSC = driWaitForMSC32,
943 .WaitForSBC = NULL,
944 .SwapBuffersMSC = NULL,
945 .CopySubBuffer = r200CopySubBuffer
946 };
947 #endif
948
949 /**
950 * This is the bootstrap function for the driver. libGL supplies all of the
951 * requisite information about the system, and the driver initializes itself.
952 * This routine also fills in the linked list pointed to by \c driver_modes
953 * with the \c __GLcontextModes that the driver can support for windows or
954 * pbuffers.
955 *
956 * \return A pointer to a \c __DRIscreenPrivate on success, or \c NULL on
957 * failure.
958 */
959 PUBLIC void *
960 __driCreateNewScreen_20050727( __DRInativeDisplay *dpy,
961 int scrn, __DRIscreen *psc,
962 const __GLcontextModes * modes,
963 const __DRIversion * ddx_version,
964 const __DRIversion * dri_version,
965 const __DRIversion * drm_version,
966 const __DRIframebuffer * frame_buffer,
967 drmAddress pSAREA, int fd,
968 int internal_api_version,
969 const __DRIinterfaceMethods * interface,
970 __GLcontextModes ** driver_modes )
971 {
972 __DRIscreenPrivate *psp;
973 #if !RADEON_COMMON
974 static const char *driver_name = "Radeon";
975 static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
976 static const __DRIversion dri_expected = { 4, 0, 0 };
977 static const __DRIversion drm_expected = { 1, 6, 0 };
978 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
979 static const char *driver_name = "R200";
980 static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
981 static const __DRIversion dri_expected = { 4, 0, 0 };
982 static const __DRIversion drm_expected = { 1, 6, 0 };
983 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
984 static const char *driver_name = "R300";
985 static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
986 static const __DRIversion dri_expected = { 4, 0, 0 };
987 static const __DRIversion drm_expected = { 1, 24, 0 };
988 #endif
989
990 dri_interface = interface;
991
992 if ( ! driCheckDriDdxDrmVersions3( driver_name,
993 dri_version, & dri_expected,
994 ddx_version, & ddx_expected,
995 drm_version, & drm_expected ) ) {
996 return NULL;
997 }
998 #if !RADEON_COMMON || (RADEON_COMMON && defined(RADEON_COMMON_FOR_R300))
999 psp = __driUtilCreateNewScreen(dpy, scrn, psc, NULL,
1000 ddx_version, dri_version, drm_version,
1001 frame_buffer, pSAREA, fd,
1002 internal_api_version, &radeonAPI);
1003 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1004 psp = __driUtilCreateNewScreen(dpy, scrn, psc, NULL,
1005 ddx_version, dri_version, drm_version,
1006 frame_buffer, pSAREA, fd,
1007 internal_api_version, &r200API);
1008 #endif
1009
1010 if ( psp != NULL ) {
1011 RADEONDRIPtr dri_priv = (RADEONDRIPtr) psp->pDevPriv;
1012 if (driver_modes) {
1013 *driver_modes = radeonFillInModes( dri_priv->bpp,
1014 (dri_priv->bpp == 16) ? 16 : 24,
1015 (dri_priv->bpp == 16) ? 0 : 8,
1016 (dri_priv->backOffset != dri_priv->depthOffset) );
1017 }
1018
1019 /* Calling driInitExtensions here, with a NULL context pointer,
1020 * does not actually enable the extensions. It just makes sure
1021 * that all the dispatch offsets for all the extensions that
1022 * *might* be enables are known. This is needed because the
1023 * dispatch offsets need to be known when _mesa_context_create
1024 * is called, but we can't enable the extensions until we have a
1025 * context pointer.
1026 *
1027 * Hello chicken. Hello egg. How are you two today?
1028 */
1029 driInitExtensions( NULL, card_extensions, GL_FALSE );
1030 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1031 driInitExtensions( NULL, blend_extensions, GL_FALSE );
1032 driInitSingleExtension( NULL, ARB_vp_extension );
1033 driInitSingleExtension( NULL, NV_vp_extension );
1034 driInitSingleExtension( NULL, ATI_fs_extension );
1035 #endif
1036 }
1037
1038 return (void *) psp;
1039 }
1040
1041
1042 /**
1043 * Get information about previous buffer swaps.
1044 */
1045 static int
1046 getSwapInfo( __DRIdrawablePrivate *dPriv, __DRIswapInfo * sInfo )
1047 {
1048 #if !RADEON_COMMON || (RADEON_COMMON && defined(RADEON_COMMON_FOR_R300))
1049 radeonContextPtr rmesa;
1050 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1051 r200ContextPtr rmesa;
1052 #endif
1053
1054 if ( (dPriv == NULL) || (dPriv->driContextPriv == NULL)
1055 || (dPriv->driContextPriv->driverPrivate == NULL)
1056 || (sInfo == NULL) ) {
1057 return -1;
1058 }
1059
1060 rmesa = dPriv->driContextPriv->driverPrivate;
1061 sInfo->swap_count = rmesa->swap_count;
1062 sInfo->swap_ust = rmesa->swap_ust;
1063 sInfo->swap_missed_count = rmesa->swap_missed_count;
1064
1065 sInfo->swap_missed_usage = (sInfo->swap_missed_count != 0)
1066 ? driCalculateSwapUsage( dPriv, 0, rmesa->swap_missed_ust )
1067 : 0.0;
1068
1069 return 0;
1070 }