1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
|
/*
* Copyright 1999 through 2004 by Marc Aurele La France (TSI @ UQV), tsi@xfree86.org
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that copyright
* notice and this permission notice appear in supporting documentation, and
* that the name of Marc Aurele La France not be used in advertising or
* publicity pertaining to distribution of the software without specific,
* written prior permission. Marc Aurele La France makes no representations
* about the suitability of this software for any purpose. It is provided
* "as-is" without express or implied warranty.
*
* MARC AURELE LA FRANCE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
* EVENT SHALL MARC AURELE LA FRANCE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*
* DRI support by:
* Gareth Hughes <gareth@valinux.com>
* José Fonseca <j_r_fonseca@yahoo.co.uk>
* Leif Delgass <ldelgass@retinalburn.net>
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include "ati.h"
#include "atibus.h"
#include "atichip.h"
#include "aticursor.h"
#include "atidac.h"
#include "atidga.h"
#include "atidri.h"
#include "atimach64.h"
#include "atimode.h"
#include "atistruct.h"
#include "atiscreen.h"
#include "atixv.h"
#include "atimach64accel.h"
#include "aticonsole.h"
#ifdef XF86DRI_DEVEL
#include "mach64_dri.h"
#include "mach64_sarea.h"
#endif
#ifdef TV_OUT
#include "atichip.h"
#endif /* TV_OUT */
#include "shadowfb.h"
#include "xf86cmap.h"
#include "fb.h"
#include "micmap.h"
#include "mipointer.h"
/*
* ATIRefreshArea --
*
* This function is called by the shadow frame buffer code to refresh the
* hardware frame buffer.
*/
static void
ATIRefreshArea
(
ScrnInfoPtr pScreenInfo,
int nBox,
BoxPtr pBox
)
{
ATIPtr pATI = ATIPTR(pScreenInfo);
while (nBox-- > 0)
{
int w = (pBox->x2 - pBox->x1) * pATI->AdjustDepth;
int h = pBox->y2 - pBox->y1;
int offset = (pBox->y1 * pATI->FBPitch) + (pBox->x1 * pATI->AdjustDepth);
pointer pSrc = (char *)pATI->pShadow + offset;
pointer pDst = (char *)pATI->pMemory + offset;
while (h-- > 0)
{
(void)memcpy(pDst, pSrc, w);
pSrc = (char *)pSrc + pATI->FBPitch;
pDst = (char *)pDst + pATI->FBPitch;
}
pBox++;
}
}
/*
* ATIScreenInit --
*
* This function is called by DIX to initialise the screen.
*/
Bool
ATIScreenInit(SCREEN_INIT_ARGS_DECL)
{
ScrnInfoPtr pScreenInfo = xf86ScreenToScrn(pScreen);
ATIPtr pATI = ATIPTR(pScreenInfo);
pointer pFB;
int VisualMask;
/* Set video hardware state */
if (!ATIEnterGraphics(pScreen, pScreenInfo, pATI))
return FALSE;
/* Re-initialise mi's visual list */
miClearVisualTypes();
if ((pATI->depth > 8) && (pATI->DAC == ATI_DAC_INTERNAL))
VisualMask = TrueColorMask;
else
VisualMask = miGetDefaultVisualMask(pATI->depth);
if (!miSetVisualTypes(pATI->depth, VisualMask, pATI->rgbBits,
pScreenInfo->defaultVisual))
return FALSE;
if (!miSetPixmapDepths())
return FALSE;
pFB = pATI->pMemory;
pATI->FBPitch = PixmapBytePad(pATI->displayWidth, pATI->depth);
if (pATI->OptionShadowFB)
{
pATI->FBBytesPerPixel = pATI->bitsPerPixel >> 3;
pATI->FBPitch = PixmapBytePad(pATI->displayWidth, pATI->depth);
if ((pATI->pShadow = malloc(pATI->FBPitch * pScreenInfo->virtualY)))
{
pFB = pATI->pShadow;
}
else
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Insufficient virtual memory for shadow frame buffer.\n");
pATI->OptionShadowFB = FALSE;
}
}
#ifdef XF86DRI_DEVEL
/* Setup DRI after visuals have been established, but before
* fbScreenInit is called.
*/
/* According to atiregs.h, GTPro (3D Rage Pro) is the first chip type with
* 3D triangle setup (the VERTEX_* registers)
*/
if (pATI->Chip < ATI_CHIP_264GTPRO) {
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Direct rendering is not supported for ATI chips earlier than "
"the ATI 3D Rage Pro.\n");
pATI->directRenderingEnabled = FALSE;
} else {
/* FIXME: When we move to dynamic allocation of back and depth
* buffers, we will want to revisit the following check for 3
* times the virtual size (or 2.5 times for 24-bit depth) of the screen below.
*/
int cpp = pATI->bitsPerPixel >> 3;
int maxY = pScreenInfo->videoRam * 1024 / (pATI->displayWidth * cpp);
int requiredY;
requiredY = pScreenInfo->virtualY * 2 /* front, back buffers */
+ (pScreenInfo->virtualY * 2 / cpp); /* depth buffer (always 16-bit) */
if (!pATI->OptionAccel) {
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"Acceleration disabled, not initializing the DRI\n");
pATI->directRenderingEnabled = FALSE;
} else if ( maxY > requiredY ) {
pATI->directRenderingEnabled = ATIDRIScreenInit(pScreen);
} else {
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"DRI static buffer allocation failed -- "
"need at least %d kB video memory\n",
(pScreenInfo->displayWidth * requiredY * cpp ) / 1024);
pATI->directRenderingEnabled = FALSE;
}
}
#endif /* XF86DRI_DEVEL */
/* Initialise framebuffer layer */
switch (pATI->bitsPerPixel)
{
case 8:
case 16:
case 24:
case 32:
pATI->Closeable = fbScreenInit(pScreen, pFB,
pScreenInfo->virtualX, pScreenInfo->virtualY,
pScreenInfo->xDpi, pScreenInfo->yDpi, pATI->displayWidth,
pATI->bitsPerPixel);
break;
default:
return FALSE;
}
if (!pATI->Closeable)
return FALSE;
/* Fixup RGB ordering */
if (pATI->depth > 8)
{
VisualPtr pVisual = pScreen->visuals + pScreen->numVisuals;
while (--pVisual >= pScreen->visuals)
{
if ((pVisual->class | DynamicClass) != DirectColor)
continue;
pVisual->offsetRed = pScreenInfo->offset.red;
pVisual->offsetGreen = pScreenInfo->offset.green;
pVisual->offsetBlue = pScreenInfo->offset.blue;
pVisual->redMask = pScreenInfo->mask.red;
pVisual->greenMask = pScreenInfo->mask.green;
pVisual->blueMask = pScreenInfo->mask.blue;
}
}
/* initialise RENDER extension */
if (!fbPictureInit(pScreen, NULL, 0) && (serverGeneration == 1))
{
xf86DrvMsg(pScreenInfo->scrnIndex, X_WARNING,
"RENDER extension initialisation failed.\n");
}
xf86SetBlackWhitePixels(pScreen);
#ifdef USE_EXA
if (pATI->useEXA) {
/* EXA setups both memory manager and acceleration here */
if (pATI->OptionAccel && !ATIMach64ExaInit(pScreen))
return FALSE;
}
#endif /* USE_EXA */
#ifndef AVOID_DGA
/* Initialise DGA support */
(void)ATIDGAInit(pScreen, pScreenInfo, pATI);
#endif /* AVOID_DGA */
/* Initialise backing store */
xf86SetBackingStore(pScreen);
/* Initialise cursor */
if (!ATIMach64CursorInit(pScreen))
return FALSE;
/* Create default colourmap */
if (!miCreateDefColormap(pScreen))
return FALSE;
if (!xf86HandleColormaps(pScreen, 256, pATI->rgbBits, ATILoadPalette, NULL,
CMAP_PALETTED_TRUECOLOR |
CMAP_LOAD_EVEN_IF_OFFSCREEN))
return FALSE;
/* Initialise shadow framebuffer */
if (pATI->OptionShadowFB &&
!ShadowFBInit(pScreen, ATIRefreshArea))
return FALSE;
/* Initialise DPMS support */
(void)xf86DPMSInit(pScreen, ATISetDPMSMode, 0);
/* Initialise XVideo support */
(void)ATIInitializeXVideo(pScreen, pScreenInfo, pATI);
/* Set pScreen->SaveScreen and wrap CloseScreen vector */
pScreen->SaveScreen = ATISaveScreen;
pATI->CloseScreen = pScreen->CloseScreen;
pScreen->CloseScreen = ATICloseScreen;
if (serverGeneration == 1)
xf86ShowUnusedOptions(pScreenInfo->scrnIndex, pScreenInfo->options);
#ifdef TV_OUT
/* Fix-up TV out after ImpacTV probe */
if (pATI->OptionTvOut && pATI->Chip < ATI_CHIP_264GTPRO)
ATISwitchMode(SWITCH_MODE_ARGS(pScreenInfo, pScreenInfo->currentMode));
#endif /* TV_OUT */
#ifdef XF86DRI_DEVEL
/* DRI finalization */
if (pATI->directRenderingEnabled) {
/* Now that mi, fb, drm and others have done their thing,
* complete the DRI setup.
*/
pATI->directRenderingEnabled = ATIDRIFinishScreenInit(pScreen);
}
if (pATI->directRenderingEnabled) {
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Direct rendering enabled\n");
} else {
/* FIXME: Release unused offscreen mem here? */
xf86DrvMsg(pScreenInfo->scrnIndex, X_INFO,
"Direct rendering disabled\n");
}
#endif /* XF86DRI_DEVEL */
return TRUE;
}
/*
* ATICloseScreen --
*
* This function is called by DIX to close the screen.
*/
Bool
ATICloseScreen (CLOSE_SCREEN_ARGS_DECL)
{
ScrnInfoPtr pScreenInfo = xf86ScreenToScrn(pScreen);
ATIPtr pATI = ATIPTR(pScreenInfo);
#ifdef XF86DRI_DEVEL
/* Disable direct rendering */
if (pATI->directRenderingEnabled)
{
ATIDRICloseScreen(pScreen);
pATI->directRenderingEnabled = FALSE;
}
#endif /* XF86DRI_DEVEL */
ATICloseXVideo(pScreen, pScreenInfo, pATI);
#ifdef USE_EXA
if (pATI->pExa)
{
exaDriverFini(pScreen);
free(pATI->pExa);
pATI->pExa = NULL;
}
#endif
if (pATI->pCursorInfo)
{
xf86DestroyCursorInfoRec(pATI->pCursorInfo);
pATI->pCursorInfo = NULL;
}
pATI->Closeable = FALSE;
ATILeaveGraphics(pScreenInfo, pATI);
free(pATI->pShadow);
pATI->pShadow = NULL;
pScreenInfo->pScreen = NULL;
pScreen->CloseScreen = pATI->CloseScreen;
return (*pScreen->CloseScreen)(CLOSE_SCREEN_ARGS);
}
|