7b759661ca7535b95db2d053ae13609509d36b2a
[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
45 #define STANDALONE_MMIO
46 #include "radeon_chipset.h"
47 #include "radeon_macros.h"
48 #include "radeon_screen.h"
49 #include "radeon_common.h"
50 #include "radeon_span.h"
51 #if !RADEON_COMMON
52 #include "radeon_context.h"
53 #include "radeon_tex.h"
54 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
55 #include "r200_context.h"
56 #include "r200_ioctl.h"
57 #include "r200_tex.h"
58 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
59 #include "r300_context.h"
60 #include "r300_tex.h"
61 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R600)
62 #include "r600_context.h"
63 #include "r700_driconf.h" /* +r6/r7 */
64 #include "r600_tex.h" /* +r6/r7 */
65 #endif
66
67 #include "utils.h"
68 #include "vblank.h"
69 #include "drirenderbuffer.h"
70
71 #include "radeon_bocs_wrapper.h"
72
73 #include "GL/internal/dri_interface.h"
74
75 /* Radeon configuration
76 */
77 #include "xmlpool.h"
78
79 #define DRI_CONF_COMMAND_BUFFER_SIZE(def,min,max) \
80 DRI_CONF_OPT_BEGIN_V(command_buffer_size,int,def, # min ":" # max ) \
81 DRI_CONF_DESC(en,"Size of command buffer (in KB)") \
82 DRI_CONF_DESC(de,"Grösse des Befehlspuffers (in KB)") \
83 DRI_CONF_OPT_END
84
85 #if !RADEON_COMMON /* R100 */
86 PUBLIC const char __driConfigOptions[] =
87 DRI_CONF_BEGIN
88 DRI_CONF_SECTION_PERFORMANCE
89 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
90 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
91 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
92 DRI_CONF_MAX_TEXTURE_UNITS(3,2,3)
93 DRI_CONF_HYPERZ(false)
94 DRI_CONF_COMMAND_BUFFER_SIZE(8, 8, 32)
95 DRI_CONF_SECTION_END
96 DRI_CONF_SECTION_QUALITY
97 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
98 DRI_CONF_DEF_MAX_ANISOTROPY(1.0,"1.0,2.0,4.0,8.0,16.0")
99 DRI_CONF_NO_NEG_LOD_BIAS(false)
100 DRI_CONF_FORCE_S3TC_ENABLE(false)
101 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
102 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
103 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
104 DRI_CONF_ALLOW_LARGE_TEXTURES(2)
105 DRI_CONF_SECTION_END
106 DRI_CONF_SECTION_DEBUG
107 DRI_CONF_NO_RAST(false)
108 DRI_CONF_SECTION_END
109 DRI_CONF_END;
110 static const GLuint __driNConfigOptions = 15;
111
112 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
113
114 PUBLIC const char __driConfigOptions[] =
115 DRI_CONF_BEGIN
116 DRI_CONF_SECTION_PERFORMANCE
117 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
118 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
119 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
120 DRI_CONF_MAX_TEXTURE_UNITS(6,2,6)
121 DRI_CONF_HYPERZ(false)
122 DRI_CONF_COMMAND_BUFFER_SIZE(8, 8, 32)
123 DRI_CONF_SECTION_END
124 DRI_CONF_SECTION_QUALITY
125 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
126 DRI_CONF_DEF_MAX_ANISOTROPY(1.0,"1.0,2.0,4.0,8.0,16.0")
127 DRI_CONF_NO_NEG_LOD_BIAS(false)
128 DRI_CONF_FORCE_S3TC_ENABLE(false)
129 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
130 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
131 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
132 DRI_CONF_ALLOW_LARGE_TEXTURES(2)
133 DRI_CONF_TEXTURE_BLEND_QUALITY(1.0,"0.0:1.0")
134 DRI_CONF_SECTION_END
135 DRI_CONF_SECTION_DEBUG
136 DRI_CONF_NO_RAST(false)
137 DRI_CONF_SECTION_END
138 DRI_CONF_SECTION_SOFTWARE
139 DRI_CONF_NV_VERTEX_PROGRAM(false)
140 DRI_CONF_SECTION_END
141 DRI_CONF_END;
142 static const GLuint __driNConfigOptions = 17;
143
144 extern const struct dri_extension blend_extensions[];
145 extern const struct dri_extension ARB_vp_extension[];
146 extern const struct dri_extension NV_vp_extension[];
147 extern const struct dri_extension ATI_fs_extension[];
148 extern const struct dri_extension point_extensions[];
149
150 #elif RADEON_COMMON && (defined(RADEON_COMMON_FOR_R300) || defined(RADEON_COMMON_FOR_R600))
151
152 #define DRI_CONF_FP_OPTIMIZATION_SPEED 0
153 #define DRI_CONF_FP_OPTIMIZATION_QUALITY 1
154
155 /* TODO: integrate these into xmlpool.h! */
156 #define DRI_CONF_MAX_TEXTURE_IMAGE_UNITS(def,min,max) \
157 DRI_CONF_OPT_BEGIN_V(texture_image_units,int,def, # min ":" # max ) \
158 DRI_CONF_DESC(en,"Number of texture image units") \
159 DRI_CONF_DESC(de,"Anzahl der Textureinheiten") \
160 DRI_CONF_OPT_END
161
162 #define DRI_CONF_MAX_TEXTURE_COORD_UNITS(def,min,max) \
163 DRI_CONF_OPT_BEGIN_V(texture_coord_units,int,def, # min ":" # max ) \
164 DRI_CONF_DESC(en,"Number of texture coordinate units") \
165 DRI_CONF_DESC(de,"Anzahl der Texturkoordinateneinheiten") \
166 DRI_CONF_OPT_END
167
168
169
170 #define DRI_CONF_DISABLE_S3TC(def) \
171 DRI_CONF_OPT_BEGIN(disable_s3tc,bool,def) \
172 DRI_CONF_DESC(en,"Disable S3TC compression") \
173 DRI_CONF_OPT_END
174
175 #define DRI_CONF_DISABLE_FALLBACK(def) \
176 DRI_CONF_OPT_BEGIN(disable_lowimpact_fallback,bool,def) \
177 DRI_CONF_DESC(en,"Disable Low-impact fallback") \
178 DRI_CONF_OPT_END
179
180 #define DRI_CONF_DISABLE_DOUBLE_SIDE_STENCIL(def) \
181 DRI_CONF_OPT_BEGIN(disable_stencil_two_side,bool,def) \
182 DRI_CONF_DESC(en,"Disable GL_EXT_stencil_two_side") \
183 DRI_CONF_OPT_END
184
185 #define DRI_CONF_FP_OPTIMIZATION(def) \
186 DRI_CONF_OPT_BEGIN_V(fp_optimization,enum,def,"0:1") \
187 DRI_CONF_DESC_BEGIN(en,"Fragment Program optimization") \
188 DRI_CONF_ENUM(0,"Optimize for Speed") \
189 DRI_CONF_ENUM(1,"Optimize for Quality") \
190 DRI_CONF_DESC_END \
191 DRI_CONF_OPT_END
192
193 PUBLIC const char __driConfigOptions[] =
194 DRI_CONF_BEGIN
195 DRI_CONF_SECTION_PERFORMANCE
196 DRI_CONF_TCL_MODE(DRI_CONF_TCL_CODEGEN)
197 DRI_CONF_FTHROTTLE_MODE(DRI_CONF_FTHROTTLE_IRQS)
198 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_DEF_INTERVAL_0)
199 DRI_CONF_MAX_TEXTURE_IMAGE_UNITS(8, 2, 8)
200 DRI_CONF_MAX_TEXTURE_COORD_UNITS(8, 2, 8)
201 DRI_CONF_COMMAND_BUFFER_SIZE(8, 8, 32)
202 DRI_CONF_DISABLE_FALLBACK(true)
203 DRI_CONF_DISABLE_DOUBLE_SIDE_STENCIL(false)
204 DRI_CONF_SECTION_END
205 DRI_CONF_SECTION_QUALITY
206 DRI_CONF_TEXTURE_DEPTH(DRI_CONF_TEXTURE_DEPTH_FB)
207 DRI_CONF_DEF_MAX_ANISOTROPY(1.0, "1.0,2.0,4.0,8.0,16.0")
208 DRI_CONF_FORCE_S3TC_ENABLE(false)
209 DRI_CONF_DISABLE_S3TC(false)
210 DRI_CONF_COLOR_REDUCTION(DRI_CONF_COLOR_REDUCTION_DITHER)
211 DRI_CONF_ROUND_MODE(DRI_CONF_ROUND_TRUNC)
212 DRI_CONF_DITHER_MODE(DRI_CONF_DITHER_XERRORDIFF)
213 DRI_CONF_FP_OPTIMIZATION(DRI_CONF_FP_OPTIMIZATION_SPEED)
214 DRI_CONF_SECTION_END
215 DRI_CONF_SECTION_DEBUG
216 DRI_CONF_NO_RAST(false)
217 DRI_CONF_SECTION_END
218 DRI_CONF_END;
219 static const GLuint __driNConfigOptions = 17;
220
221 extern const struct dri_extension gl_20_extension[];
222
223 #ifndef RADEON_DEBUG
224
225 static const struct dri_debug_control debug_control[] = {
226 {"fall", DEBUG_FALLBACKS},
227 {"tex", DEBUG_TEXTURE},
228 {"ioctl", DEBUG_IOCTL},
229 {"prim", DEBUG_PRIMS},
230 {"vert", DEBUG_VERTS},
231 {"state", DEBUG_STATE},
232 {"code", DEBUG_CODEGEN},
233 {"vfmt", DEBUG_VFMT},
234 {"vtxf", DEBUG_VFMT},
235 {"verb", DEBUG_VERBOSE},
236 {"dri", DEBUG_DRI},
237 {"dma", DEBUG_DMA},
238 {"san", DEBUG_SANITY},
239 {"sync", DEBUG_SYNC},
240 {"pix", DEBUG_PIXEL},
241 {"mem", DEBUG_MEMORY},
242 {"allmsg", ~DEBUG_SYNC}, /* avoid the term "sync" because the parser uses strstr */
243 {NULL, 0}
244 };
245 #endif /* RADEON_DEBUG */
246
247 #endif /* RADEON_COMMON && defined(RADEON_COMMON_FOR_R300) */
248
249 extern const struct dri_extension card_extensions[];
250 extern const struct dri_extension mm_extensions[];
251
252 static int getSwapInfo( __DRIdrawablePrivate *dPriv, __DRIswapInfo * sInfo );
253
254 static int
255 radeonGetParam(__DRIscreenPrivate *sPriv, int param, void *value)
256 {
257 int ret;
258 drm_radeon_getparam_t gp = { 0 };
259 struct drm_radeon_info info = { 0 };
260
261 if (sPriv->drm_version.major >= 2) {
262 info.value = (uint64_t)value;
263 switch (param) {
264 case RADEON_PARAM_DEVICE_ID:
265 info.request = RADEON_INFO_DEVICE_ID;
266 break;
267 case RADEON_PARAM_NUM_GB_PIPES:
268 info.request = RADEON_INFO_NUM_GB_PIPES;
269 break;
270 default:
271 return -EINVAL;
272 }
273 ret = drmCommandWriteRead(sPriv->fd, DRM_RADEON_INFO, &info, sizeof(info));
274 } else {
275 gp.param = param;
276 gp.value = value;
277
278 ret = drmCommandWriteRead(sPriv->fd, DRM_RADEON_GETPARAM, &gp, sizeof(gp));
279 }
280 return ret;
281 }
282
283 static const __DRIconfig **
284 radeonFillInModes( __DRIscreenPrivate *psp,
285 unsigned pixel_bits, unsigned depth_bits,
286 unsigned stencil_bits, GLboolean have_back_buffer )
287 {
288 __DRIconfig **configs;
289 __GLcontextModes *m;
290 unsigned depth_buffer_factor;
291 unsigned back_buffer_factor;
292 int i;
293
294 /* Right now GLX_SWAP_COPY_OML isn't supported, but it would be easy
295 * enough to add support. Basically, if a context is created with an
296 * fbconfig where the swap method is GLX_SWAP_COPY_OML, pageflipping
297 * will never be used.
298 */
299 static const GLenum back_buffer_modes[] = {
300 GLX_NONE, GLX_SWAP_UNDEFINED_OML /*, GLX_SWAP_COPY_OML */
301 };
302
303 uint8_t depth_bits_array[2];
304 uint8_t stencil_bits_array[2];
305 uint8_t msaa_samples_array[1];
306
307 depth_bits_array[0] = depth_bits;
308 depth_bits_array[1] = depth_bits;
309
310 /* Just like with the accumulation buffer, always provide some modes
311 * with a stencil buffer. It will be a sw fallback, but some apps won't
312 * care about that.
313 */
314 stencil_bits_array[0] = stencil_bits;
315 stencil_bits_array[1] = (stencil_bits == 0) ? 8 : stencil_bits;
316
317 msaa_samples_array[0] = 0;
318
319 depth_buffer_factor = (stencil_bits == 0) ? 2 : 1;
320 back_buffer_factor = (have_back_buffer) ? 2 : 1;
321
322 if (pixel_bits == 16) {
323 __DRIconfig **configs_a8r8g8b8;
324 __DRIconfig **configs_r5g6b5;
325
326 configs_r5g6b5 = driCreateConfigs(GL_RGB, GL_UNSIGNED_SHORT_5_6_5,
327 depth_bits_array, stencil_bits_array,
328 depth_buffer_factor, back_buffer_modes,
329 back_buffer_factor, msaa_samples_array,
330 1);
331 configs_a8r8g8b8 = driCreateConfigs(GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV,
332 depth_bits_array, stencil_bits_array,
333 1, back_buffer_modes, 1,
334 msaa_samples_array, 1);
335 configs = driConcatConfigs(configs_r5g6b5, configs_a8r8g8b8);
336 } else
337 configs = driCreateConfigs(GL_BGRA, GL_UNSIGNED_INT_8_8_8_8_REV,
338 depth_bits_array, stencil_bits_array,
339 depth_buffer_factor,
340 back_buffer_modes, back_buffer_factor,
341 msaa_samples_array, 1);
342
343 if (configs == NULL) {
344 fprintf( stderr, "[%s:%u] Error creating FBConfig!\n",
345 __func__, __LINE__ );
346 return NULL;
347 }
348
349 /* Mark the visual as slow if there are "fake" stencil bits.
350 */
351 for (i = 0; configs[i]; i++) {
352 m = &configs[i]->modes;
353 if ((m->stencilBits != 0) && (m->stencilBits != stencil_bits)) {
354 m->visualRating = GLX_SLOW_CONFIG;
355 }
356 }
357
358 return (const __DRIconfig **) configs;
359 }
360
361 #if !RADEON_COMMON
362 static const __DRItexOffsetExtension radeonTexOffsetExtension = {
363 { __DRI_TEX_OFFSET, __DRI_TEX_OFFSET_VERSION },
364 radeonSetTexOffset,
365 };
366
367 static const __DRItexBufferExtension radeonTexBufferExtension = {
368 { __DRI_TEX_BUFFER, __DRI_TEX_BUFFER_VERSION },
369 radeonSetTexBuffer,
370 radeonSetTexBuffer2,
371 };
372 #endif
373
374 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
375 static const __DRIallocateExtension r200AllocateExtension = {
376 { __DRI_ALLOCATE, __DRI_ALLOCATE_VERSION },
377 r200AllocateMemoryMESA,
378 r200FreeMemoryMESA,
379 r200GetMemoryOffsetMESA
380 };
381
382 static const __DRItexOffsetExtension r200texOffsetExtension = {
383 { __DRI_TEX_OFFSET, __DRI_TEX_OFFSET_VERSION },
384 r200SetTexOffset,
385 };
386
387 static const __DRItexBufferExtension r200TexBufferExtension = {
388 { __DRI_TEX_BUFFER, __DRI_TEX_BUFFER_VERSION },
389 r200SetTexBuffer,
390 r200SetTexBuffer2,
391 };
392 #endif
393
394 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
395 static const __DRItexOffsetExtension r300texOffsetExtension = {
396 { __DRI_TEX_OFFSET, __DRI_TEX_OFFSET_VERSION },
397 r300SetTexOffset,
398 };
399
400 static const __DRItexBufferExtension r300TexBufferExtension = {
401 { __DRI_TEX_BUFFER, __DRI_TEX_BUFFER_VERSION },
402 r300SetTexBuffer,
403 r300SetTexBuffer2,
404 };
405 #endif
406
407 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R600)
408 static const __DRItexOffsetExtension r600texOffsetExtension = {
409 { __DRI_TEX_OFFSET, __DRI_TEX_OFFSET_VERSION },
410 r600SetTexOffset, /* +r6/r7 */
411 };
412
413 static const __DRItexBufferExtension r600TexBufferExtension = {
414 { __DRI_TEX_BUFFER, __DRI_TEX_BUFFER_VERSION },
415 r600SetTexBuffer, /* +r6/r7 */
416 r600SetTexBuffer2, /* +r6/r7 */
417 };
418 #endif
419
420 static int radeon_set_screen_flags(radeonScreenPtr screen, int device_id)
421 {
422 screen->device_id = device_id;
423 screen->chip_flags = 0;
424 switch ( device_id ) {
425 case PCI_CHIP_RADEON_LY:
426 case PCI_CHIP_RADEON_LZ:
427 case PCI_CHIP_RADEON_QY:
428 case PCI_CHIP_RADEON_QZ:
429 case PCI_CHIP_RN50_515E:
430 case PCI_CHIP_RN50_5969:
431 screen->chip_family = CHIP_FAMILY_RV100;
432 break;
433
434 case PCI_CHIP_RS100_4136:
435 case PCI_CHIP_RS100_4336:
436 screen->chip_family = CHIP_FAMILY_RS100;
437 break;
438
439 case PCI_CHIP_RS200_4137:
440 case PCI_CHIP_RS200_4337:
441 case PCI_CHIP_RS250_4237:
442 case PCI_CHIP_RS250_4437:
443 screen->chip_family = CHIP_FAMILY_RS200;
444 break;
445
446 case PCI_CHIP_RADEON_QD:
447 case PCI_CHIP_RADEON_QE:
448 case PCI_CHIP_RADEON_QF:
449 case PCI_CHIP_RADEON_QG:
450 /* all original radeons (7200) presumably have a stencil op bug */
451 screen->chip_family = CHIP_FAMILY_R100;
452 screen->chip_flags = RADEON_CHIPSET_TCL | RADEON_CHIPSET_BROKEN_STENCIL;
453 break;
454
455 case PCI_CHIP_RV200_QW:
456 case PCI_CHIP_RV200_QX:
457 case PCI_CHIP_RADEON_LW:
458 case PCI_CHIP_RADEON_LX:
459 screen->chip_family = CHIP_FAMILY_RV200;
460 screen->chip_flags = RADEON_CHIPSET_TCL;
461 break;
462
463 case PCI_CHIP_R200_BB:
464 case PCI_CHIP_R200_BC:
465 case PCI_CHIP_R200_QH:
466 case PCI_CHIP_R200_QL:
467 case PCI_CHIP_R200_QM:
468 screen->chip_family = CHIP_FAMILY_R200;
469 screen->chip_flags = RADEON_CHIPSET_TCL;
470 break;
471
472 case PCI_CHIP_RV250_If:
473 case PCI_CHIP_RV250_Ig:
474 case PCI_CHIP_RV250_Ld:
475 case PCI_CHIP_RV250_Lf:
476 case PCI_CHIP_RV250_Lg:
477 screen->chip_family = CHIP_FAMILY_RV250;
478 screen->chip_flags = R200_CHIPSET_YCBCR_BROKEN | RADEON_CHIPSET_TCL;
479 break;
480
481 case PCI_CHIP_RV280_5960:
482 case PCI_CHIP_RV280_5961:
483 case PCI_CHIP_RV280_5962:
484 case PCI_CHIP_RV280_5964:
485 case PCI_CHIP_RV280_5965:
486 case PCI_CHIP_RV280_5C61:
487 case PCI_CHIP_RV280_5C63:
488 screen->chip_family = CHIP_FAMILY_RV280;
489 screen->chip_flags = RADEON_CHIPSET_TCL;
490 break;
491
492 case PCI_CHIP_RS300_5834:
493 case PCI_CHIP_RS300_5835:
494 case PCI_CHIP_RS350_7834:
495 case PCI_CHIP_RS350_7835:
496 screen->chip_family = CHIP_FAMILY_RS300;
497 break;
498
499 case PCI_CHIP_R300_AD:
500 case PCI_CHIP_R300_AE:
501 case PCI_CHIP_R300_AF:
502 case PCI_CHIP_R300_AG:
503 case PCI_CHIP_R300_ND:
504 case PCI_CHIP_R300_NE:
505 case PCI_CHIP_R300_NF:
506 case PCI_CHIP_R300_NG:
507 screen->chip_family = CHIP_FAMILY_R300;
508 screen->chip_flags = RADEON_CHIPSET_TCL;
509 break;
510
511 case PCI_CHIP_RV350_AP:
512 case PCI_CHIP_RV350_AQ:
513 case PCI_CHIP_RV350_AR:
514 case PCI_CHIP_RV350_AS:
515 case PCI_CHIP_RV350_AT:
516 case PCI_CHIP_RV350_AV:
517 case PCI_CHIP_RV350_AU:
518 case PCI_CHIP_RV350_NP:
519 case PCI_CHIP_RV350_NQ:
520 case PCI_CHIP_RV350_NR:
521 case PCI_CHIP_RV350_NS:
522 case PCI_CHIP_RV350_NT:
523 case PCI_CHIP_RV350_NV:
524 screen->chip_family = CHIP_FAMILY_RV350;
525 screen->chip_flags = RADEON_CHIPSET_TCL;
526 break;
527
528 case PCI_CHIP_R350_AH:
529 case PCI_CHIP_R350_AI:
530 case PCI_CHIP_R350_AJ:
531 case PCI_CHIP_R350_AK:
532 case PCI_CHIP_R350_NH:
533 case PCI_CHIP_R350_NI:
534 case PCI_CHIP_R360_NJ:
535 case PCI_CHIP_R350_NK:
536 screen->chip_family = CHIP_FAMILY_R350;
537 screen->chip_flags = RADEON_CHIPSET_TCL;
538 break;
539
540 case PCI_CHIP_RV370_5460:
541 case PCI_CHIP_RV370_5462:
542 case PCI_CHIP_RV370_5464:
543 case PCI_CHIP_RV370_5B60:
544 case PCI_CHIP_RV370_5B62:
545 case PCI_CHIP_RV370_5B63:
546 case PCI_CHIP_RV370_5B64:
547 case PCI_CHIP_RV370_5B65:
548 case PCI_CHIP_RV380_3150:
549 case PCI_CHIP_RV380_3152:
550 case PCI_CHIP_RV380_3154:
551 case PCI_CHIP_RV380_3E50:
552 case PCI_CHIP_RV380_3E54:
553 screen->chip_family = CHIP_FAMILY_RV380;
554 screen->chip_flags = RADEON_CHIPSET_TCL;
555 break;
556
557 case PCI_CHIP_R420_JN:
558 case PCI_CHIP_R420_JH:
559 case PCI_CHIP_R420_JI:
560 case PCI_CHIP_R420_JJ:
561 case PCI_CHIP_R420_JK:
562 case PCI_CHIP_R420_JL:
563 case PCI_CHIP_R420_JM:
564 case PCI_CHIP_R420_JO:
565 case PCI_CHIP_R420_JP:
566 case PCI_CHIP_R420_JT:
567 case PCI_CHIP_R481_4B49:
568 case PCI_CHIP_R481_4B4A:
569 case PCI_CHIP_R481_4B4B:
570 case PCI_CHIP_R481_4B4C:
571 case PCI_CHIP_R423_UH:
572 case PCI_CHIP_R423_UI:
573 case PCI_CHIP_R423_UJ:
574 case PCI_CHIP_R423_UK:
575 case PCI_CHIP_R430_554C:
576 case PCI_CHIP_R430_554D:
577 case PCI_CHIP_R430_554E:
578 case PCI_CHIP_R430_554F:
579 case PCI_CHIP_R423_5550:
580 case PCI_CHIP_R423_UQ:
581 case PCI_CHIP_R423_UR:
582 case PCI_CHIP_R423_UT:
583 case PCI_CHIP_R430_5D48:
584 case PCI_CHIP_R430_5D49:
585 case PCI_CHIP_R430_5D4A:
586 case PCI_CHIP_R480_5D4C:
587 case PCI_CHIP_R480_5D4D:
588 case PCI_CHIP_R480_5D4E:
589 case PCI_CHIP_R480_5D4F:
590 case PCI_CHIP_R480_5D50:
591 case PCI_CHIP_R480_5D52:
592 case PCI_CHIP_R423_5D57:
593 screen->chip_family = CHIP_FAMILY_R420;
594 screen->chip_flags = RADEON_CHIPSET_TCL;
595 break;
596
597 case PCI_CHIP_RV410_5E4C:
598 case PCI_CHIP_RV410_5E4F:
599 case PCI_CHIP_RV410_564A:
600 case PCI_CHIP_RV410_564B:
601 case PCI_CHIP_RV410_564F:
602 case PCI_CHIP_RV410_5652:
603 case PCI_CHIP_RV410_5653:
604 case PCI_CHIP_RV410_5657:
605 case PCI_CHIP_RV410_5E48:
606 case PCI_CHIP_RV410_5E4A:
607 case PCI_CHIP_RV410_5E4B:
608 case PCI_CHIP_RV410_5E4D:
609 screen->chip_family = CHIP_FAMILY_RV410;
610 screen->chip_flags = RADEON_CHIPSET_TCL;
611 break;
612
613 case PCI_CHIP_RS480_5954:
614 case PCI_CHIP_RS480_5955:
615 case PCI_CHIP_RS482_5974:
616 case PCI_CHIP_RS482_5975:
617 case PCI_CHIP_RS400_5A41:
618 case PCI_CHIP_RS400_5A42:
619 case PCI_CHIP_RC410_5A61:
620 case PCI_CHIP_RC410_5A62:
621 screen->chip_family = CHIP_FAMILY_RS400;
622 break;
623
624 case PCI_CHIP_RS600_793F:
625 case PCI_CHIP_RS600_7941:
626 case PCI_CHIP_RS600_7942:
627 screen->chip_family = CHIP_FAMILY_RS600;
628 break;
629
630 case PCI_CHIP_RS690_791E:
631 case PCI_CHIP_RS690_791F:
632 screen->chip_family = CHIP_FAMILY_RS690;
633 break;
634 case PCI_CHIP_RS740_796C:
635 case PCI_CHIP_RS740_796D:
636 case PCI_CHIP_RS740_796E:
637 case PCI_CHIP_RS740_796F:
638 screen->chip_family = CHIP_FAMILY_RS740;
639 break;
640
641 case PCI_CHIP_R520_7100:
642 case PCI_CHIP_R520_7101:
643 case PCI_CHIP_R520_7102:
644 case PCI_CHIP_R520_7103:
645 case PCI_CHIP_R520_7104:
646 case PCI_CHIP_R520_7105:
647 case PCI_CHIP_R520_7106:
648 case PCI_CHIP_R520_7108:
649 case PCI_CHIP_R520_7109:
650 case PCI_CHIP_R520_710A:
651 case PCI_CHIP_R520_710B:
652 case PCI_CHIP_R520_710C:
653 case PCI_CHIP_R520_710E:
654 case PCI_CHIP_R520_710F:
655 screen->chip_family = CHIP_FAMILY_R520;
656 screen->chip_flags = RADEON_CHIPSET_TCL;
657 break;
658
659 case PCI_CHIP_RV515_7140:
660 case PCI_CHIP_RV515_7141:
661 case PCI_CHIP_RV515_7142:
662 case PCI_CHIP_RV515_7143:
663 case PCI_CHIP_RV515_7144:
664 case PCI_CHIP_RV515_7145:
665 case PCI_CHIP_RV515_7146:
666 case PCI_CHIP_RV515_7147:
667 case PCI_CHIP_RV515_7149:
668 case PCI_CHIP_RV515_714A:
669 case PCI_CHIP_RV515_714B:
670 case PCI_CHIP_RV515_714C:
671 case PCI_CHIP_RV515_714D:
672 case PCI_CHIP_RV515_714E:
673 case PCI_CHIP_RV515_714F:
674 case PCI_CHIP_RV515_7151:
675 case PCI_CHIP_RV515_7152:
676 case PCI_CHIP_RV515_7153:
677 case PCI_CHIP_RV515_715E:
678 case PCI_CHIP_RV515_715F:
679 case PCI_CHIP_RV515_7180:
680 case PCI_CHIP_RV515_7181:
681 case PCI_CHIP_RV515_7183:
682 case PCI_CHIP_RV515_7186:
683 case PCI_CHIP_RV515_7187:
684 case PCI_CHIP_RV515_7188:
685 case PCI_CHIP_RV515_718A:
686 case PCI_CHIP_RV515_718B:
687 case PCI_CHIP_RV515_718C:
688 case PCI_CHIP_RV515_718D:
689 case PCI_CHIP_RV515_718F:
690 case PCI_CHIP_RV515_7193:
691 case PCI_CHIP_RV515_7196:
692 case PCI_CHIP_RV515_719B:
693 case PCI_CHIP_RV515_719F:
694 case PCI_CHIP_RV515_7200:
695 case PCI_CHIP_RV515_7210:
696 case PCI_CHIP_RV515_7211:
697 screen->chip_family = CHIP_FAMILY_RV515;
698 screen->chip_flags = RADEON_CHIPSET_TCL;
699 break;
700
701 case PCI_CHIP_RV530_71C0:
702 case PCI_CHIP_RV530_71C1:
703 case PCI_CHIP_RV530_71C2:
704 case PCI_CHIP_RV530_71C3:
705 case PCI_CHIP_RV530_71C4:
706 case PCI_CHIP_RV530_71C5:
707 case PCI_CHIP_RV530_71C6:
708 case PCI_CHIP_RV530_71C7:
709 case PCI_CHIP_RV530_71CD:
710 case PCI_CHIP_RV530_71CE:
711 case PCI_CHIP_RV530_71D2:
712 case PCI_CHIP_RV530_71D4:
713 case PCI_CHIP_RV530_71D5:
714 case PCI_CHIP_RV530_71D6:
715 case PCI_CHIP_RV530_71DA:
716 case PCI_CHIP_RV530_71DE:
717 screen->chip_family = CHIP_FAMILY_RV530;
718 screen->chip_flags = RADEON_CHIPSET_TCL;
719 break;
720
721 case PCI_CHIP_R580_7240:
722 case PCI_CHIP_R580_7243:
723 case PCI_CHIP_R580_7244:
724 case PCI_CHIP_R580_7245:
725 case PCI_CHIP_R580_7246:
726 case PCI_CHIP_R580_7247:
727 case PCI_CHIP_R580_7248:
728 case PCI_CHIP_R580_7249:
729 case PCI_CHIP_R580_724A:
730 case PCI_CHIP_R580_724B:
731 case PCI_CHIP_R580_724C:
732 case PCI_CHIP_R580_724D:
733 case PCI_CHIP_R580_724E:
734 case PCI_CHIP_R580_724F:
735 case PCI_CHIP_R580_7284:
736 screen->chip_family = CHIP_FAMILY_R580;
737 screen->chip_flags = RADEON_CHIPSET_TCL;
738 break;
739
740 case PCI_CHIP_RV570_7280:
741 case PCI_CHIP_RV560_7281:
742 case PCI_CHIP_RV560_7283:
743 case PCI_CHIP_RV560_7287:
744 case PCI_CHIP_RV570_7288:
745 case PCI_CHIP_RV570_7289:
746 case PCI_CHIP_RV570_728B:
747 case PCI_CHIP_RV570_728C:
748 case PCI_CHIP_RV560_7290:
749 case PCI_CHIP_RV560_7291:
750 case PCI_CHIP_RV560_7293:
751 case PCI_CHIP_RV560_7297:
752 screen->chip_family = CHIP_FAMILY_RV560;
753 screen->chip_flags = RADEON_CHIPSET_TCL;
754 break;
755
756 case PCI_CHIP_R600_9400:
757 case PCI_CHIP_R600_9401:
758 case PCI_CHIP_R600_9402:
759 case PCI_CHIP_R600_9403:
760 case PCI_CHIP_R600_9405:
761 case PCI_CHIP_R600_940A:
762 case PCI_CHIP_R600_940B:
763 case PCI_CHIP_R600_940F:
764 screen->chip_family = CHIP_FAMILY_R600;
765 screen->chip_flags = RADEON_CHIPSET_TCL;
766 break;
767
768 case PCI_CHIP_RV610_94C0:
769 case PCI_CHIP_RV610_94C1:
770 case PCI_CHIP_RV610_94C3:
771 case PCI_CHIP_RV610_94C4:
772 case PCI_CHIP_RV610_94C5:
773 case PCI_CHIP_RV610_94C6:
774 case PCI_CHIP_RV610_94C7:
775 case PCI_CHIP_RV610_94C8:
776 case PCI_CHIP_RV610_94C9:
777 case PCI_CHIP_RV610_94CB:
778 case PCI_CHIP_RV610_94CC:
779 case PCI_CHIP_RV610_94CD:
780 screen->chip_family = CHIP_FAMILY_RV610;
781 screen->chip_flags = RADEON_CHIPSET_TCL;
782 break;
783
784 case PCI_CHIP_RV630_9580:
785 case PCI_CHIP_RV630_9581:
786 case PCI_CHIP_RV630_9583:
787 case PCI_CHIP_RV630_9586:
788 case PCI_CHIP_RV630_9587:
789 case PCI_CHIP_RV630_9588:
790 case PCI_CHIP_RV630_9589:
791 case PCI_CHIP_RV630_958A:
792 case PCI_CHIP_RV630_958B:
793 case PCI_CHIP_RV630_958C:
794 case PCI_CHIP_RV630_958D:
795 case PCI_CHIP_RV630_958E:
796 case PCI_CHIP_RV630_958F:
797 screen->chip_family = CHIP_FAMILY_RV630;
798 screen->chip_flags = RADEON_CHIPSET_TCL;
799 break;
800
801 case PCI_CHIP_RV670_9500:
802 case PCI_CHIP_RV670_9501:
803 case PCI_CHIP_RV670_9504:
804 case PCI_CHIP_RV670_9505:
805 case PCI_CHIP_RV670_9506:
806 case PCI_CHIP_RV670_9507:
807 case PCI_CHIP_RV670_9508:
808 case PCI_CHIP_RV670_9509:
809 case PCI_CHIP_RV670_950F:
810 case PCI_CHIP_RV670_9511:
811 case PCI_CHIP_RV670_9515:
812 case PCI_CHIP_RV670_9517:
813 case PCI_CHIP_RV670_9519:
814 screen->chip_family = CHIP_FAMILY_RV670;
815 screen->chip_flags = RADEON_CHIPSET_TCL;
816 break;
817
818 case PCI_CHIP_RV620_95C0:
819 case PCI_CHIP_RV620_95C2:
820 case PCI_CHIP_RV620_95C4:
821 case PCI_CHIP_RV620_95C5:
822 case PCI_CHIP_RV620_95C6:
823 case PCI_CHIP_RV620_95C7:
824 case PCI_CHIP_RV620_95C9:
825 case PCI_CHIP_RV620_95CC:
826 case PCI_CHIP_RV620_95CD:
827 case PCI_CHIP_RV620_95CE:
828 case PCI_CHIP_RV620_95CF:
829 screen->chip_family = CHIP_FAMILY_RV620;
830 screen->chip_flags = RADEON_CHIPSET_TCL;
831 break;
832
833 case PCI_CHIP_RV635_9590:
834 case PCI_CHIP_RV635_9591:
835 case PCI_CHIP_RV635_9593:
836 case PCI_CHIP_RV635_9595:
837 case PCI_CHIP_RV635_9596:
838 case PCI_CHIP_RV635_9597:
839 case PCI_CHIP_RV635_9598:
840 case PCI_CHIP_RV635_9599:
841 case PCI_CHIP_RV635_959B:
842 screen->chip_family = CHIP_FAMILY_RV635;
843 screen->chip_flags = RADEON_CHIPSET_TCL;
844 break;
845
846 case PCI_CHIP_RS780_9610:
847 case PCI_CHIP_RS780_9611:
848 case PCI_CHIP_RS780_9612:
849 case PCI_CHIP_RS780_9613:
850 case PCI_CHIP_RS780_9614:
851 case PCI_CHIP_RS780_9615:
852 case PCI_CHIP_RS780_9616:
853 screen->chip_family = CHIP_FAMILY_RS780;
854 screen->chip_flags = RADEON_CHIPSET_TCL;
855 break;
856
857 case PCI_CHIP_RV770_9440:
858 case PCI_CHIP_RV770_9441:
859 case PCI_CHIP_RV770_9442:
860 case PCI_CHIP_RV770_9444:
861 case PCI_CHIP_RV770_9446:
862 case PCI_CHIP_RV770_944A:
863 case PCI_CHIP_RV770_944B:
864 case PCI_CHIP_RV770_944C:
865 case PCI_CHIP_RV770_944E:
866 case PCI_CHIP_RV770_9450:
867 case PCI_CHIP_RV770_9452:
868 case PCI_CHIP_RV770_9456:
869 case PCI_CHIP_RV770_945A:
870 case PCI_CHIP_RV770_945B:
871 case PCI_CHIP_RV790_9460:
872 case PCI_CHIP_RV790_9462:
873 case PCI_CHIP_RV770_946A:
874 case PCI_CHIP_RV770_946B:
875 case PCI_CHIP_RV770_947A:
876 case PCI_CHIP_RV770_947B:
877 screen->chip_family = CHIP_FAMILY_RV770;
878 screen->chip_flags = RADEON_CHIPSET_TCL;
879 break;
880
881 case PCI_CHIP_RV730_9480:
882 case PCI_CHIP_RV730_9487:
883 case PCI_CHIP_RV730_9488:
884 case PCI_CHIP_RV730_9489:
885 case PCI_CHIP_RV730_948F:
886 case PCI_CHIP_RV730_9490:
887 case PCI_CHIP_RV730_9491:
888 case PCI_CHIP_RV730_9495:
889 case PCI_CHIP_RV730_9498:
890 case PCI_CHIP_RV730_949C:
891 case PCI_CHIP_RV730_949E:
892 case PCI_CHIP_RV730_949F:
893 screen->chip_family = CHIP_FAMILY_RV730;
894 screen->chip_flags = RADEON_CHIPSET_TCL;
895 break;
896
897 case PCI_CHIP_RV710_9540:
898 case PCI_CHIP_RV710_9541:
899 case PCI_CHIP_RV710_9542:
900 case PCI_CHIP_RV710_954E:
901 case PCI_CHIP_RV710_954F:
902 case PCI_CHIP_RV710_9552:
903 case PCI_CHIP_RV710_9553:
904 case PCI_CHIP_RV710_9555:
905 case PCI_CHIP_RV710_9557:
906 screen->chip_family = CHIP_FAMILY_RV710;
907 screen->chip_flags = RADEON_CHIPSET_TCL;
908 break;
909
910 case PCI_CHIP_RV740_94A0:
911 case PCI_CHIP_RV740_94A1:
912 case PCI_CHIP_RV740_94A3:
913 case PCI_CHIP_RV740_94B1:
914 case PCI_CHIP_RV740_94B3:
915 case PCI_CHIP_RV740_94B4:
916 case PCI_CHIP_RV740_94B5:
917 case PCI_CHIP_RV740_94B9:
918 screen->chip_family = CHIP_FAMILY_RV740;
919 screen->chip_flags = RADEON_CHIPSET_TCL;
920 break;
921
922 default:
923 fprintf(stderr, "unknown chip id 0x%x, can't guess.\n",
924 device_id);
925 return -1;
926 }
927
928 return 0;
929 }
930
931
932 /* Create the device specific screen private data struct.
933 */
934 static radeonScreenPtr
935 radeonCreateScreen( __DRIscreenPrivate *sPriv )
936 {
937 radeonScreenPtr screen;
938 RADEONDRIPtr dri_priv = (RADEONDRIPtr)sPriv->pDevPriv;
939 unsigned char *RADEONMMIO = NULL;
940 int i;
941 int ret;
942 uint32_t temp = 0;
943
944 if (sPriv->devPrivSize != sizeof(RADEONDRIRec)) {
945 fprintf(stderr,"\nERROR! sizeof(RADEONDRIRec) does not match passed size from device driver\n");
946 return GL_FALSE;
947 }
948
949 /* Allocate the private area */
950 screen = (radeonScreenPtr) CALLOC( sizeof(*screen) );
951 if ( !screen ) {
952 __driUtilMessage("%s: Could not allocate memory for screen structure",
953 __FUNCTION__);
954 return NULL;
955 }
956
957 #if DO_DEBUG && RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
958 RADEON_DEBUG = driParseDebugString(getenv("RADEON_DEBUG"), debug_control);
959 #endif
960 /* parse information in __driConfigOptions */
961 driParseOptionInfo (&screen->optionCache,
962 __driConfigOptions, __driNConfigOptions);
963
964 /* This is first since which regions we map depends on whether or
965 * not we are using a PCI card.
966 */
967 screen->card_type = (dri_priv->IsPCI ? RADEON_CARD_PCI : RADEON_CARD_AGP);
968 {
969 int ret;
970
971 ret = radeonGetParam(sPriv, RADEON_PARAM_GART_BUFFER_OFFSET,
972 &screen->gart_buffer_offset);
973
974 if (ret) {
975 FREE( screen );
976 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_GART_BUFFER_OFFSET): %d\n", ret);
977 return NULL;
978 }
979
980 ret = radeonGetParam(sPriv, RADEON_PARAM_GART_BASE,
981 &screen->gart_base);
982 if (ret) {
983 FREE( screen );
984 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_GART_BASE): %d\n", ret);
985 return NULL;
986 }
987
988 ret = radeonGetParam(sPriv, RADEON_PARAM_IRQ_NR,
989 &screen->irq);
990 if (ret) {
991 FREE( screen );
992 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_IRQ_NR): %d\n", ret);
993 return NULL;
994 }
995 screen->drmSupportsCubeMapsR200 = (sPriv->drm_version.minor >= 7);
996 screen->drmSupportsBlendColor = (sPriv->drm_version.minor >= 11);
997 screen->drmSupportsTriPerf = (sPriv->drm_version.minor >= 16);
998 screen->drmSupportsFragShader = (sPriv->drm_version.minor >= 18);
999 screen->drmSupportsPointSprites = (sPriv->drm_version.minor >= 13);
1000 screen->drmSupportsCubeMapsR100 = (sPriv->drm_version.minor >= 15);
1001 screen->drmSupportsVertexProgram = (sPriv->drm_version.minor >= 25);
1002 }
1003
1004 ret = radeon_set_screen_flags(screen, dri_priv->deviceID);
1005 if (ret == -1)
1006 return NULL;
1007
1008 screen->mmio.handle = dri_priv->registerHandle;
1009 screen->mmio.size = dri_priv->registerSize;
1010 if ( drmMap( sPriv->fd,
1011 screen->mmio.handle,
1012 screen->mmio.size,
1013 &screen->mmio.map ) ) {
1014 FREE( screen );
1015 __driUtilMessage("%s: drmMap failed\n", __FUNCTION__ );
1016 return NULL;
1017 }
1018
1019 RADEONMMIO = screen->mmio.map;
1020
1021 screen->status.handle = dri_priv->statusHandle;
1022 screen->status.size = dri_priv->statusSize;
1023 if ( drmMap( sPriv->fd,
1024 screen->status.handle,
1025 screen->status.size,
1026 &screen->status.map ) ) {
1027 drmUnmap( screen->mmio.map, screen->mmio.size );
1028 FREE( screen );
1029 __driUtilMessage("%s: drmMap (2) failed\n", __FUNCTION__ );
1030 return NULL;
1031 }
1032 if (screen->chip_family < CHIP_FAMILY_R600)
1033 screen->scratch = (__volatile__ uint32_t *)
1034 ((GLubyte *)screen->status.map + RADEON_SCRATCH_REG_OFFSET);
1035 else
1036 screen->scratch = (__volatile__ uint32_t *)
1037 ((GLubyte *)screen->status.map + R600_SCRATCH_REG_OFFSET);
1038
1039 screen->buffers = drmMapBufs( sPriv->fd );
1040 if ( !screen->buffers ) {
1041 drmUnmap( screen->status.map, screen->status.size );
1042 drmUnmap( screen->mmio.map, screen->mmio.size );
1043 FREE( screen );
1044 __driUtilMessage("%s: drmMapBufs failed\n", __FUNCTION__ );
1045 return NULL;
1046 }
1047
1048 if ( dri_priv->gartTexHandle && dri_priv->gartTexMapSize ) {
1049 screen->gartTextures.handle = dri_priv->gartTexHandle;
1050 screen->gartTextures.size = dri_priv->gartTexMapSize;
1051 if ( drmMap( sPriv->fd,
1052 screen->gartTextures.handle,
1053 screen->gartTextures.size,
1054 (drmAddressPtr)&screen->gartTextures.map ) ) {
1055 drmUnmapBufs( screen->buffers );
1056 drmUnmap( screen->status.map, screen->status.size );
1057 drmUnmap( screen->mmio.map, screen->mmio.size );
1058 FREE( screen );
1059 __driUtilMessage("%s: drmMap failed for GART texture area\n", __FUNCTION__);
1060 return NULL;
1061 }
1062
1063 screen->gart_texture_offset = dri_priv->gartTexOffset + screen->gart_base;
1064 }
1065
1066 if ((screen->chip_family == CHIP_FAMILY_R350 || screen->chip_family == CHIP_FAMILY_R300) &&
1067 sPriv->ddx_version.minor < 2) {
1068 fprintf(stderr, "xf86-video-ati-6.6.2 or newer needed for Radeon 9500/9700/9800 cards.\n");
1069 return NULL;
1070 }
1071
1072 if ((sPriv->drm_version.minor < 29) && (screen->chip_family >= CHIP_FAMILY_RV515)) {
1073 fprintf(stderr, "R500 support requires a newer drm.\n");
1074 return NULL;
1075 }
1076
1077 if (getenv("R300_NO_TCL"))
1078 screen->chip_flags &= ~RADEON_CHIPSET_TCL;
1079
1080 if (screen->chip_family <= CHIP_FAMILY_RS200)
1081 screen->chip_flags |= RADEON_CLASS_R100;
1082 else if (screen->chip_family <= CHIP_FAMILY_RV280)
1083 screen->chip_flags |= RADEON_CLASS_R200;
1084 else if (screen->chip_family <= CHIP_FAMILY_RV570)
1085 screen->chip_flags |= RADEON_CLASS_R300;
1086 else
1087 screen->chip_flags |= RADEON_CLASS_R600;
1088
1089 screen->cpp = dri_priv->bpp / 8;
1090 screen->AGPMode = dri_priv->AGPMode;
1091
1092 ret = radeonGetParam(sPriv, RADEON_PARAM_FB_LOCATION, &temp);
1093
1094 /* +r6/r7 */
1095 if(screen->chip_family >= CHIP_FAMILY_R600)
1096 {
1097 if (ret)
1098 {
1099 FREE( screen );
1100 fprintf(stderr, "Unable to get fb location need newer drm\n");
1101 return NULL;
1102 }
1103 else
1104 {
1105 screen->fbLocation = (temp & 0xffff) << 24;
1106 }
1107 }
1108 else
1109 {
1110 if (ret)
1111 {
1112 if (screen->chip_family < CHIP_FAMILY_RS600 && !screen->kernel_mm)
1113 screen->fbLocation = ( INREG( RADEON_MC_FB_LOCATION ) & 0xffff) << 16;
1114 else
1115 {
1116 FREE( screen );
1117 fprintf(stderr, "Unable to get fb location need newer drm\n");
1118 return NULL;
1119 }
1120 }
1121 else
1122 {
1123 screen->fbLocation = (temp & 0xffff) << 16;
1124 }
1125 }
1126
1127 if (IS_R300_CLASS(screen)) {
1128 ret = radeonGetParam(sPriv, RADEON_PARAM_NUM_GB_PIPES, &temp);
1129 if (ret) {
1130 fprintf(stderr, "Unable to get num_pipes, need newer drm\n");
1131 switch (screen->chip_family) {
1132 case CHIP_FAMILY_R300:
1133 case CHIP_FAMILY_R350:
1134 screen->num_gb_pipes = 2;
1135 break;
1136 case CHIP_FAMILY_R420:
1137 case CHIP_FAMILY_R520:
1138 case CHIP_FAMILY_R580:
1139 case CHIP_FAMILY_RV560:
1140 case CHIP_FAMILY_RV570:
1141 screen->num_gb_pipes = 4;
1142 break;
1143 case CHIP_FAMILY_RV350:
1144 case CHIP_FAMILY_RV515:
1145 case CHIP_FAMILY_RV530:
1146 case CHIP_FAMILY_RV410:
1147 default:
1148 screen->num_gb_pipes = 1;
1149 break;
1150 }
1151 } else {
1152 screen->num_gb_pipes = temp;
1153 }
1154
1155 /* pipe overrides */
1156 switch (dri_priv->deviceID) {
1157 case PCI_CHIP_R300_AD: /* 9500 with 1 quadpipe verified by: Reid Linnemann <lreid@cs.okstate.edu> */
1158 case PCI_CHIP_RV410_5E4C: /* RV410 SE only have 1 quadpipe */
1159 case PCI_CHIP_RV410_5E4F: /* RV410 SE only have 1 quadpipe */
1160 screen->num_gb_pipes = 1;
1161 break;
1162 default:
1163 break;
1164 }
1165 }
1166
1167 if ( sPriv->drm_version.minor >= 10 ) {
1168 drm_radeon_setparam_t sp;
1169
1170 sp.param = RADEON_SETPARAM_FB_LOCATION;
1171 sp.value = screen->fbLocation;
1172
1173 drmCommandWrite( sPriv->fd, DRM_RADEON_SETPARAM,
1174 &sp, sizeof( sp ) );
1175 }
1176
1177 screen->frontOffset = dri_priv->frontOffset;
1178 screen->frontPitch = dri_priv->frontPitch;
1179 screen->backOffset = dri_priv->backOffset;
1180 screen->backPitch = dri_priv->backPitch;
1181 screen->depthOffset = dri_priv->depthOffset;
1182 screen->depthPitch = dri_priv->depthPitch;
1183
1184 /* Check if ddx has set up a surface reg to cover depth buffer */
1185 screen->depthHasSurface = (sPriv->ddx_version.major > 4) ||
1186 /* these chips don't use tiled z without hyperz. So always pretend
1187 we have set up a surface which will cause linear reads/writes */
1188 (IS_R100_CLASS(screen) &&
1189 !(screen->chip_flags & RADEON_CHIPSET_TCL));
1190
1191 if ( dri_priv->textureSize == 0 ) {
1192 screen->texOffset[RADEON_LOCAL_TEX_HEAP] = screen->gart_texture_offset;
1193 screen->texSize[RADEON_LOCAL_TEX_HEAP] = dri_priv->gartTexMapSize;
1194 screen->logTexGranularity[RADEON_LOCAL_TEX_HEAP] =
1195 dri_priv->log2GARTTexGran;
1196 } else {
1197 screen->texOffset[RADEON_LOCAL_TEX_HEAP] = dri_priv->textureOffset
1198 + screen->fbLocation;
1199 screen->texSize[RADEON_LOCAL_TEX_HEAP] = dri_priv->textureSize;
1200 screen->logTexGranularity[RADEON_LOCAL_TEX_HEAP] =
1201 dri_priv->log2TexGran;
1202 }
1203
1204 if ( !screen->gartTextures.map || dri_priv->textureSize == 0
1205 || getenv( "RADEON_GARTTEXTURING_FORCE_DISABLE" ) ) {
1206 screen->numTexHeaps = RADEON_NR_TEX_HEAPS - 1;
1207 screen->texOffset[RADEON_GART_TEX_HEAP] = 0;
1208 screen->texSize[RADEON_GART_TEX_HEAP] = 0;
1209 screen->logTexGranularity[RADEON_GART_TEX_HEAP] = 0;
1210 } else {
1211 screen->numTexHeaps = RADEON_NR_TEX_HEAPS;
1212 screen->texOffset[RADEON_GART_TEX_HEAP] = screen->gart_texture_offset;
1213 screen->texSize[RADEON_GART_TEX_HEAP] = dri_priv->gartTexMapSize;
1214 screen->logTexGranularity[RADEON_GART_TEX_HEAP] =
1215 dri_priv->log2GARTTexGran;
1216 }
1217
1218 i = 0;
1219 screen->extensions[i++] = &driCopySubBufferExtension.base;
1220 screen->extensions[i++] = &driFrameTrackingExtension.base;
1221 screen->extensions[i++] = &driReadDrawableExtension;
1222
1223 if ( screen->irq != 0 ) {
1224 screen->extensions[i++] = &driSwapControlExtension.base;
1225 screen->extensions[i++] = &driMediaStreamCounterExtension.base;
1226 }
1227
1228 #if !RADEON_COMMON
1229 screen->extensions[i++] = &radeonTexOffsetExtension.base;
1230 #endif
1231
1232 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1233 if (IS_R200_CLASS(screen))
1234 screen->extensions[i++] = &r200AllocateExtension.base;
1235
1236 screen->extensions[i++] = &r200texOffsetExtension.base;
1237 #endif
1238
1239 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
1240 screen->extensions[i++] = &r300texOffsetExtension.base;
1241 #endif
1242
1243 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R600)
1244 screen->extensions[i++] = &r600texOffsetExtension.base;
1245 #endif
1246
1247 screen->extensions[i++] = NULL;
1248 sPriv->extensions = screen->extensions;
1249
1250 screen->driScreen = sPriv;
1251 screen->sarea_priv_offset = dri_priv->sarea_priv_offset;
1252 screen->sarea = (drm_radeon_sarea_t *) ((GLubyte *) sPriv->pSAREA +
1253 screen->sarea_priv_offset);
1254
1255 screen->bom = radeon_bo_manager_legacy_ctor(screen);
1256 if (screen->bom == NULL) {
1257 free(screen);
1258 return NULL;
1259 }
1260
1261 return screen;
1262 }
1263
1264 static radeonScreenPtr
1265 radeonCreateScreen2(__DRIscreenPrivate *sPriv)
1266 {
1267 radeonScreenPtr screen;
1268 int i;
1269 int ret;
1270 uint32_t device_id = 0;
1271 uint32_t temp = 0;
1272
1273 /* Allocate the private area */
1274 screen = (radeonScreenPtr) CALLOC( sizeof(*screen) );
1275 if ( !screen ) {
1276 __driUtilMessage("%s: Could not allocate memory for screen structure",
1277 __FUNCTION__);
1278 fprintf(stderr, "leaving here\n");
1279 return NULL;
1280 }
1281
1282 #if DO_DEBUG && RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
1283 RADEON_DEBUG = driParseDebugString(getenv("RADEON_DEBUG"), debug_control);
1284 #endif
1285
1286 /* parse information in __driConfigOptions */
1287 driParseOptionInfo (&screen->optionCache,
1288 __driConfigOptions, __driNConfigOptions);
1289
1290 screen->kernel_mm = 1;
1291 screen->chip_flags = 0;
1292
1293 /* if we have kms we can support all of these */
1294 screen->drmSupportsCubeMapsR200 = 1;
1295 screen->drmSupportsBlendColor = 1;
1296 screen->drmSupportsTriPerf = 1;
1297 screen->drmSupportsFragShader = 1;
1298 screen->drmSupportsPointSprites = 1;
1299 screen->drmSupportsCubeMapsR100 = 1;
1300 screen->drmSupportsVertexProgram = 1;
1301 screen->irq = 1;
1302
1303 ret = radeonGetParam(sPriv, RADEON_PARAM_DEVICE_ID, &device_id);
1304 if (ret) {
1305 FREE( screen );
1306 fprintf(stderr, "drm_radeon_getparam_t (RADEON_PARAM_DEVICE_ID): %d\n", ret);
1307 return NULL;
1308 }
1309
1310 ret = radeon_set_screen_flags(screen, device_id);
1311 if (ret == -1)
1312 return NULL;
1313
1314 if (getenv("R300_NO_TCL"))
1315 screen->chip_flags &= ~RADEON_CHIPSET_TCL;
1316
1317 if (screen->chip_family <= CHIP_FAMILY_RS200)
1318 screen->chip_flags |= RADEON_CLASS_R100;
1319 else if (screen->chip_family <= CHIP_FAMILY_RV280)
1320 screen->chip_flags |= RADEON_CLASS_R200;
1321 else if (screen->chip_family <= CHIP_FAMILY_RV570)
1322 screen->chip_flags |= RADEON_CLASS_R300;
1323 else
1324 screen->chip_flags |= RADEON_CLASS_R600;
1325
1326 if (IS_R300_CLASS(screen)) {
1327 ret = radeonGetParam(sPriv, RADEON_PARAM_NUM_GB_PIPES, &temp);
1328 if (ret) {
1329 fprintf(stderr, "Unable to get num_pipes, need newer drm\n");
1330 switch (screen->chip_family) {
1331 case CHIP_FAMILY_R300:
1332 case CHIP_FAMILY_R350:
1333 screen->num_gb_pipes = 2;
1334 break;
1335 case CHIP_FAMILY_R420:
1336 case CHIP_FAMILY_R520:
1337 case CHIP_FAMILY_R580:
1338 case CHIP_FAMILY_RV560:
1339 case CHIP_FAMILY_RV570:
1340 screen->num_gb_pipes = 4;
1341 break;
1342 case CHIP_FAMILY_RV350:
1343 case CHIP_FAMILY_RV515:
1344 case CHIP_FAMILY_RV530:
1345 case CHIP_FAMILY_RV410:
1346 default:
1347 screen->num_gb_pipes = 1;
1348 break;
1349 }
1350 } else {
1351 screen->num_gb_pipes = temp;
1352 }
1353
1354 /* pipe overrides */
1355 switch (device_id) {
1356 case PCI_CHIP_R300_AD: /* 9500 with 1 quadpipe verified by: Reid Linnemann <lreid@cs.okstate.edu> */
1357 case PCI_CHIP_RV410_5E4C: /* RV410 SE only have 1 quadpipe */
1358 case PCI_CHIP_RV410_5E4F: /* RV410 SE only have 1 quadpipe */
1359 screen->num_gb_pipes = 1;
1360 break;
1361 default:
1362 break;
1363 }
1364
1365 }
1366
1367 i = 0;
1368 screen->extensions[i++] = &driCopySubBufferExtension.base;
1369 screen->extensions[i++] = &driFrameTrackingExtension.base;
1370 screen->extensions[i++] = &driReadDrawableExtension;
1371
1372 if ( screen->irq != 0 ) {
1373 screen->extensions[i++] = &driSwapControlExtension.base;
1374 screen->extensions[i++] = &driMediaStreamCounterExtension.base;
1375 }
1376
1377 #if !RADEON_COMMON
1378 screen->extensions[i++] = &radeonTexBufferExtension.base;
1379 #endif
1380
1381 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1382 if (IS_R200_CLASS(screen))
1383 screen->extensions[i++] = &r200AllocateExtension.base;
1384
1385 screen->extensions[i++] = &r200TexBufferExtension.base;
1386 #endif
1387
1388 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
1389 screen->extensions[i++] = &r300TexBufferExtension.base;
1390 #endif
1391
1392 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R600)
1393 screen->extensions[i++] = &r600TexBufferExtension.base;
1394 #endif
1395
1396 screen->extensions[i++] = NULL;
1397 sPriv->extensions = screen->extensions;
1398
1399 screen->driScreen = sPriv;
1400 screen->bom = radeon_bo_manager_gem_ctor(sPriv->fd);
1401 if (screen->bom == NULL) {
1402 free(screen);
1403 return NULL;
1404 }
1405 return screen;
1406 }
1407
1408 /* Destroy the device specific screen private data struct.
1409 */
1410 static void
1411 radeonDestroyScreen( __DRIscreenPrivate *sPriv )
1412 {
1413 radeonScreenPtr screen = (radeonScreenPtr)sPriv->private;
1414
1415 if (!screen)
1416 return;
1417
1418 if (screen->kernel_mm) {
1419 #ifdef RADEON_BO_TRACK
1420 radeon_tracker_print(&screen->bom->tracker, stderr);
1421 #endif
1422 radeon_bo_manager_gem_dtor(screen->bom);
1423 } else {
1424 radeon_bo_manager_legacy_dtor(screen->bom);
1425
1426 if ( screen->gartTextures.map ) {
1427 drmUnmap( screen->gartTextures.map, screen->gartTextures.size );
1428 }
1429 drmUnmapBufs( screen->buffers );
1430 drmUnmap( screen->status.map, screen->status.size );
1431 drmUnmap( screen->mmio.map, screen->mmio.size );
1432 }
1433
1434 /* free all option information */
1435 driDestroyOptionInfo (&screen->optionCache);
1436
1437 FREE( screen );
1438 sPriv->private = NULL;
1439 }
1440
1441
1442 /* Initialize the driver specific screen private data.
1443 */
1444 static GLboolean
1445 radeonInitDriver( __DRIscreenPrivate *sPriv )
1446 {
1447 if (sPriv->dri2.enabled) {
1448 sPriv->private = (void *) radeonCreateScreen2( sPriv );
1449 } else {
1450 sPriv->private = (void *) radeonCreateScreen( sPriv );
1451 }
1452 if ( !sPriv->private ) {
1453 radeonDestroyScreen( sPriv );
1454 return GL_FALSE;
1455 }
1456
1457 return GL_TRUE;
1458 }
1459
1460
1461
1462 /**
1463 * Create the Mesa framebuffer and renderbuffers for a given window/drawable.
1464 *
1465 * \todo This function (and its interface) will need to be updated to support
1466 * pbuffers.
1467 */
1468 static GLboolean
1469 radeonCreateBuffer( __DRIscreenPrivate *driScrnPriv,
1470 __DRIdrawablePrivate *driDrawPriv,
1471 const __GLcontextModes *mesaVis,
1472 GLboolean isPixmap )
1473 {
1474 radeonScreenPtr screen = (radeonScreenPtr) driScrnPriv->private;
1475
1476 const GLboolean swDepth = GL_FALSE;
1477 const GLboolean swAlpha = GL_FALSE;
1478 const GLboolean swAccum = mesaVis->accumRedBits > 0;
1479 const GLboolean swStencil = mesaVis->stencilBits > 0 &&
1480 mesaVis->depthBits != 24;
1481 GLenum rgbFormat;
1482 struct radeon_framebuffer *rfb;
1483
1484 if (isPixmap)
1485 return GL_FALSE; /* not implemented */
1486
1487 rfb = CALLOC_STRUCT(radeon_framebuffer);
1488 if (!rfb)
1489 return GL_FALSE;
1490
1491 _mesa_initialize_framebuffer(&rfb->base, mesaVis);
1492
1493 if (mesaVis->redBits == 5)
1494 rgbFormat = GL_RGB5;
1495 else if (mesaVis->alphaBits == 0)
1496 rgbFormat = GL_RGB8;
1497 else
1498 rgbFormat = GL_RGBA8;
1499
1500 /* front color renderbuffer */
1501 rfb->color_rb[0] = radeon_create_renderbuffer(rgbFormat, driDrawPriv);
1502 _mesa_add_renderbuffer(&rfb->base, BUFFER_FRONT_LEFT, &rfb->color_rb[0]->base);
1503 rfb->color_rb[0]->has_surface = 1;
1504
1505 /* back color renderbuffer */
1506 if (mesaVis->doubleBufferMode) {
1507 rfb->color_rb[1] = radeon_create_renderbuffer(rgbFormat, driDrawPriv);
1508 _mesa_add_renderbuffer(&rfb->base, BUFFER_BACK_LEFT, &rfb->color_rb[1]->base);
1509 rfb->color_rb[1]->has_surface = 1;
1510 }
1511
1512 if (mesaVis->depthBits == 24) {
1513 if (mesaVis->stencilBits == 8) {
1514 struct radeon_renderbuffer *depthStencilRb = radeon_create_renderbuffer(GL_DEPTH24_STENCIL8_EXT, driDrawPriv);
1515 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depthStencilRb->base);
1516 _mesa_add_renderbuffer(&rfb->base, BUFFER_STENCIL, &depthStencilRb->base);
1517 depthStencilRb->has_surface = screen->depthHasSurface;
1518 } else {
1519 /* depth renderbuffer */
1520 struct radeon_renderbuffer *depth = radeon_create_renderbuffer(GL_DEPTH_COMPONENT24, driDrawPriv);
1521 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depth->base);
1522 depth->has_surface = screen->depthHasSurface;
1523 }
1524 } else if (mesaVis->depthBits == 16) {
1525 /* just 16-bit depth buffer, no hw stencil */
1526 struct radeon_renderbuffer *depth = radeon_create_renderbuffer(GL_DEPTH_COMPONENT16, driDrawPriv);
1527 _mesa_add_renderbuffer(&rfb->base, BUFFER_DEPTH, &depth->base);
1528 depth->has_surface = screen->depthHasSurface;
1529 }
1530
1531 _mesa_add_soft_renderbuffers(&rfb->base,
1532 GL_FALSE, /* color */
1533 swDepth,
1534 swStencil,
1535 swAccum,
1536 swAlpha,
1537 GL_FALSE /* aux */);
1538 driDrawPriv->driverPrivate = (void *) rfb;
1539
1540 return (driDrawPriv->driverPrivate != NULL);
1541 }
1542
1543
1544 static void radeon_cleanup_renderbuffers(struct radeon_framebuffer *rfb)
1545 {
1546 struct radeon_renderbuffer *rb;
1547
1548 rb = rfb->color_rb[0];
1549 if (rb && rb->bo) {
1550 radeon_bo_unref(rb->bo);
1551 rb->bo = NULL;
1552 }
1553 rb = rfb->color_rb[1];
1554 if (rb && rb->bo) {
1555 radeon_bo_unref(rb->bo);
1556 rb->bo = NULL;
1557 }
1558 rb = radeon_get_renderbuffer(&rfb->base, BUFFER_DEPTH);
1559 if (rb && rb->bo) {
1560 radeon_bo_unref(rb->bo);
1561 rb->bo = NULL;
1562 }
1563 }
1564
1565 void
1566 radeonDestroyBuffer(__DRIdrawablePrivate *driDrawPriv)
1567 {
1568 struct radeon_framebuffer *rfb;
1569 if (!driDrawPriv)
1570 return;
1571
1572 rfb = (void*)driDrawPriv->driverPrivate;
1573 if (!rfb)
1574 return;
1575 radeon_cleanup_renderbuffers(rfb);
1576 _mesa_reference_framebuffer((GLframebuffer **)(&(driDrawPriv->driverPrivate)), NULL);
1577 }
1578
1579 /**
1580 * Choose the appropriate CreateContext function based on the chipset.
1581 * Eventually, all drivers will go through this process.
1582 */
1583 static GLboolean radeonCreateContext(const __GLcontextModes * glVisual,
1584 __DRIcontextPrivate * driContextPriv,
1585 void *sharedContextPriv)
1586 {
1587 __DRIscreenPrivate *sPriv = driContextPriv->driScreenPriv;
1588 radeonScreenPtr screen = (radeonScreenPtr) (sPriv->private);
1589 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
1590 if (IS_R300_CLASS(screen))
1591 return r300CreateContext(glVisual, driContextPriv, sharedContextPriv);
1592 #endif
1593
1594 #if !RADEON_COMMON
1595 (void)screen;
1596 return r100CreateContext(glVisual, driContextPriv, sharedContextPriv);
1597 #endif
1598 return GL_FALSE;
1599 }
1600
1601
1602 /**
1603 * This is the driver specific part of the createNewScreen entry point.
1604 *
1605 * \todo maybe fold this into intelInitDriver
1606 *
1607 * \return the __GLcontextModes supported by this driver
1608 */
1609 static const __DRIconfig **
1610 radeonInitScreen(__DRIscreenPrivate *psp)
1611 {
1612 #if !RADEON_COMMON
1613 static const char *driver_name = "Radeon";
1614 static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
1615 static const __DRIversion dri_expected = { 4, 0, 0 };
1616 static const __DRIversion drm_expected = { 1, 6, 0 };
1617 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1618 static const char *driver_name = "R200";
1619 static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
1620 static const __DRIversion dri_expected = { 4, 0, 0 };
1621 static const __DRIversion drm_expected = { 1, 6, 0 };
1622 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R300)
1623 static const char *driver_name = "R300";
1624 static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
1625 static const __DRIversion dri_expected = { 4, 0, 0 };
1626 static const __DRIversion drm_expected = { 1, 24, 0 };
1627 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R600)
1628 static const char *driver_name = "R600";
1629 static const __DRIutilversion2 ddx_expected = { 4, 5, 0, 0 };
1630 static const __DRIversion dri_expected = { 4, 0, 0 };
1631 static const __DRIversion drm_expected = { 1, 24, 0 };
1632 #endif
1633 RADEONDRIPtr dri_priv = (RADEONDRIPtr) psp->pDevPriv;
1634
1635 if ( ! driCheckDriDdxDrmVersions3( driver_name,
1636 &psp->dri_version, & dri_expected,
1637 &psp->ddx_version, & ddx_expected,
1638 &psp->drm_version, & drm_expected ) ) {
1639 return NULL;
1640 }
1641
1642 /* Calling driInitExtensions here, with a NULL context pointer,
1643 * does not actually enable the extensions. It just makes sure
1644 * that all the dispatch offsets for all the extensions that
1645 * *might* be enables are known. This is needed because the
1646 * dispatch offsets need to be known when _mesa_context_create
1647 * is called, but we can't enable the extensions until we have a
1648 * context pointer.
1649 *
1650 * Hello chicken. Hello egg. How are you two today?
1651 */
1652 driInitExtensions( NULL, card_extensions, GL_FALSE );
1653 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1654 driInitExtensions( NULL, blend_extensions, GL_FALSE );
1655 driInitSingleExtension( NULL, ARB_vp_extension );
1656 driInitSingleExtension( NULL, NV_vp_extension );
1657 driInitSingleExtension( NULL, ATI_fs_extension );
1658 driInitExtensions( NULL, point_extensions, GL_FALSE );
1659 #elif (defined(RADEON_COMMON_FOR_R300) || defined(RADEON_COMMON_FOR_R600))
1660 driInitSingleExtension( NULL, gl_20_extension );
1661 #endif
1662
1663 if (!radeonInitDriver(psp))
1664 return NULL;
1665
1666 /* for now fill in all modes */
1667 return radeonFillInModes( psp,
1668 dri_priv->bpp,
1669 (dri_priv->bpp == 16) ? 16 : 24,
1670 (dri_priv->bpp == 16) ? 0 : 8, 1);
1671 }
1672 #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
1673
1674 /**
1675 * This is the driver specific part of the createNewScreen entry point.
1676 * Called when using DRI2.
1677 *
1678 * \return the __GLcontextModes supported by this driver
1679 */
1680 static const
1681 __DRIconfig **radeonInitScreen2(__DRIscreenPrivate *psp)
1682 {
1683 GLenum fb_format[3];
1684 GLenum fb_type[3];
1685 /* GLX_SWAP_COPY_OML is only supported because the Intel driver doesn't
1686 * support pageflipping at all.
1687 */
1688 static const GLenum back_buffer_modes[] = {
1689 GLX_NONE, GLX_SWAP_UNDEFINED_OML, /*, GLX_SWAP_COPY_OML*/
1690 };
1691 uint8_t depth_bits[4], stencil_bits[4], msaa_samples_array[1];
1692 int color;
1693 __DRIconfig **configs = NULL;
1694
1695 /* Calling driInitExtensions here, with a NULL context pointer,
1696 * does not actually enable the extensions. It just makes sure
1697 * that all the dispatch offsets for all the extensions that
1698 * *might* be enables are known. This is needed because the
1699 * dispatch offsets need to be known when _mesa_context_create
1700 * is called, but we can't enable the extensions until we have a
1701 * context pointer.
1702 *
1703 * Hello chicken. Hello egg. How are you two today?
1704 */
1705 driInitExtensions( NULL, card_extensions, GL_FALSE );
1706 driInitExtensions( NULL, mm_extensions, GL_FALSE );
1707 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1708 driInitExtensions( NULL, blend_extensions, GL_FALSE );
1709 driInitSingleExtension( NULL, ARB_vp_extension );
1710 driInitSingleExtension( NULL, NV_vp_extension );
1711 driInitSingleExtension( NULL, ATI_fs_extension );
1712 driInitExtensions( NULL, point_extensions, GL_FALSE );
1713 #endif
1714
1715 if (!radeonInitDriver(psp)) {
1716 return NULL;
1717 }
1718 depth_bits[0] = 0;
1719 stencil_bits[0] = 0;
1720 depth_bits[1] = 16;
1721 stencil_bits[1] = 0;
1722 depth_bits[2] = 24;
1723 stencil_bits[2] = 0;
1724 depth_bits[3] = 24;
1725 stencil_bits[3] = 8;
1726
1727 msaa_samples_array[0] = 0;
1728
1729 fb_format[0] = GL_RGB;
1730 fb_type[0] = GL_UNSIGNED_SHORT_5_6_5;
1731
1732 fb_format[1] = GL_BGR;
1733 fb_type[1] = GL_UNSIGNED_INT_8_8_8_8_REV;
1734
1735 fb_format[2] = GL_BGRA;
1736 fb_type[2] = GL_UNSIGNED_INT_8_8_8_8_REV;
1737
1738 for (color = 0; color < ARRAY_SIZE(fb_format); color++) {
1739 __DRIconfig **new_configs;
1740
1741 new_configs = driCreateConfigs(fb_format[color], fb_type[color],
1742 depth_bits,
1743 stencil_bits,
1744 ARRAY_SIZE(depth_bits),
1745 back_buffer_modes,
1746 ARRAY_SIZE(back_buffer_modes),
1747 msaa_samples_array,
1748 ARRAY_SIZE(msaa_samples_array));
1749 if (configs == NULL)
1750 configs = new_configs;
1751 else
1752 configs = driConcatConfigs(configs, new_configs);
1753 }
1754
1755 if (configs == NULL) {
1756 fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__,
1757 __LINE__);
1758 return NULL;
1759 }
1760
1761 return (const __DRIconfig **)configs;
1762 }
1763
1764 /**
1765 * Get information about previous buffer swaps.
1766 */
1767 static int
1768 getSwapInfo( __DRIdrawablePrivate *dPriv, __DRIswapInfo * sInfo )
1769 {
1770 struct radeon_framebuffer *rfb;
1771
1772 if ( (dPriv == NULL) || (dPriv->driContextPriv == NULL)
1773 || (dPriv->driContextPriv->driverPrivate == NULL)
1774 || (sInfo == NULL) ) {
1775 return -1;
1776 }
1777
1778 rfb = dPriv->driverPrivate;
1779 sInfo->swap_count = rfb->swap_count;
1780 sInfo->swap_ust = rfb->swap_ust;
1781 sInfo->swap_missed_count = rfb->swap_missed_count;
1782
1783 sInfo->swap_missed_usage = (sInfo->swap_missed_count != 0)
1784 ? driCalculateSwapUsage( dPriv, 0, rfb->swap_missed_ust )
1785 : 0.0;
1786
1787 return 0;
1788 }
1789
1790 const struct __DriverAPIRec driDriverAPI = {
1791 .InitScreen = radeonInitScreen,
1792 .DestroyScreen = radeonDestroyScreen,
1793 #if RADEON_COMMON && defined(RADEON_COMMON_FOR_R200)
1794 .CreateContext = r200CreateContext,
1795 .DestroyContext = r200DestroyContext,
1796 #elif RADEON_COMMON && defined(RADEON_COMMON_FOR_R600)
1797 .CreateContext = r600CreateContext,
1798 .DestroyContext = r600DestroyContext,
1799 #else
1800 .CreateContext = radeonCreateContext,
1801 .DestroyContext = radeonDestroyContext,
1802 #endif
1803 .CreateBuffer = radeonCreateBuffer,
1804 .DestroyBuffer = radeonDestroyBuffer,
1805 .SwapBuffers = radeonSwapBuffers,
1806 .MakeCurrent = radeonMakeCurrent,
1807 .UnbindContext = radeonUnbindContext,
1808 .GetSwapInfo = getSwapInfo,
1809 .GetDrawableMSC = driDrawableGetMSC32,
1810 .WaitForMSC = driWaitForMSC32,
1811 .WaitForSBC = NULL,
1812 .SwapBuffersMSC = NULL,
1813 .CopySubBuffer = radeonCopySubBuffer,
1814 /* DRI2 */
1815 .InitScreen2 = radeonInitScreen2,
1816 };
1817