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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
|
/*
* Copyright 2004-2005 The Unichrome Project [unichrome.sf.net]
* Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved.
* Copyright 2001-2003 S3 Graphics, Inc. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sub license,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#ifndef _VIA_DRIVER_H_
#define _VIA_DRIVER_H_ 1
//#define VIA_DEBUG_COMPOSITE 1
#define HAVE_DEBUG 1
#ifdef HAVE_DEBUG
#define DEBUG(x) x
#else
#define DEBUG(x)
#endif
#include "vgaHW.h"
#include "xf86.h"
#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6
#include "xf86Resources.h"
#endif
#include "xf86Pci.h"
#include "xf86_OSproc.h"
#include "compiler.h"
#include "xf86Cursor.h"
#include "mipointer.h"
#include "micmap.h"
#include "fourcc.h"
#include "fb.h"
#include "xf86Crtc.h"
#include "xf86fbman.h"
#include "xf86RandR12.h"
#include "xf86cmap.h"
#ifdef HAVE_DRI
#define _XF86DRI_SERVER_
#include "xf86dri.h"
#include "sarea.h"
#include "dri.h"
#include "drm_fourcc.h"
#include "GL/glxint.h"
#include "via_dri.h"
#include "via_drmclient.h"
#include "via_drm.h"
#endif
#include "exa.h"
#include "via_memmgr.h"
#include "via_regs.h"
#include "via_kms.h"
#include "via_ums.h"
#include "via_dmabuffer.h"
#include "via_3d.h"
#include "via_xv.h"
#include "via_xv_overlay.h"
#include "via_eng_regs.h"
#ifdef HAVE_PCIACCESS
#include <pciaccess.h>
#else
#include "xf86PciInfo.h"
#endif
#include <errno.h>
#include "via_vt1632.h"
#include "compat-api.h"
#define VIA_AGP_UPL_SIZE (1024*128)
#define VIA_DMA_DL_SIZE (1024*128)
#define VIA_SCRATCH_SIZE (4*1024*1024)
/*
* Pixmap sizes below which we don't try to do hw accel.
*/
#define VIA_MIN_COMPOSITE 400
#define VIA_MIN_UPLOAD 4000
#define VIA_MIN_TEX_UPLOAD 200
#define VIA_MIN_DOWNLOAD 200
#define AGP_PAGE_SIZE 4096
#define AGP_PAGES 8192
#define AGP_SIZE (AGP_PAGE_SIZE * AGP_PAGES)
#define DRIVER_NAME "openchrome"
#define VIA_VERSION ((VIA_MAJOR_VERSION << 24) | (VIA_MINOR_VERSION << 16) | VIA_PATCHLEVEL)
#define VIA_VQ_SIZE (256 * 1024)
#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6
#define VIA_RES_SHARED RES_SHARED_VGA
#define VIA_RES_UNDEF RES_UNDEFINED
#else
#define VIA_RES_SHARED NULL
#define VIA_RES_UNDEF NULL
#endif
/* Video Engines */
#define VIDEO_ENGINE_UNK 0 /* Unknown video engine */
#define VIDEO_ENGINE_CLE 1 /* CLE First generation video engine */
#define VIDEO_ENGINE_CME 2 /* CME Second generation video engine */
extern int gVIAEntityIndex;
/*
* variables that need to be shared among different screens.
*/
typedef struct {
Bool b3DRegsInitialized;
} ViaSharedRec, *ViaSharedPtr;
enum dri_type {
DRI_NONE,
DRI_1,
DRI_2
};
#ifdef HAVE_DRI
#define VIA_XVMC_MAX_BUFFERS 2
#define VIA_XVMC_MAX_CONTEXTS 4
#define VIA_XVMC_MAX_SURFACES 20
typedef struct {
struct buffer_object *memory_ref;
unsigned long offsets[VIA_XVMC_MAX_BUFFERS];
} ViaXvMCSurfacePriv;
typedef struct {
drm_context_t drmCtx;
} ViaXvMCContextPriv;
typedef struct {
XID contexts[VIA_XVMC_MAX_CONTEXTS];
XID surfaces[VIA_XVMC_MAX_SURFACES];
ViaXvMCSurfacePriv *sPrivs[VIA_XVMC_MAX_SURFACES];
ViaXvMCContextPriv *cPrivs[VIA_XVMC_MAX_CONTEXTS];
int nContexts,nSurfaces;
drm_handle_t mmioBase,fbBase,sAreaBase;
unsigned sAreaSize;
drmAddress sAreaAddr;
unsigned activePorts;
}ViaXvMC, *ViaXvMCPtr;
#endif
typedef struct _twodContext {
CARD32 mode;
CARD32 cmd;
CARD32 fgColor;
CARD32 bgColor;
CARD32 pattern0;
CARD32 pattern1;
CARD32 patternAddr;
CARD32 keyControl;
unsigned srcOffset;
unsigned srcPitch;
unsigned Bpp;
unsigned bytesPPShift;
Bool clipping;
Bool dashed;
int clipX1;
int clipX2;
int clipY1;
int clipY2;
} ViaTwodContext;
typedef struct _VIA {
int Bpp, Bpl;
Bool KMS;
Bool FirstInit;
unsigned long videoRambytes;
int FBFreeStart;
int FBFreeEnd;
int driSize;
int maxDriSize;
struct buffer_object *vq_bo;
int VQStart;
int VQEnd;
/* These are physical addresses. */
unsigned long FrameBufferBase;
unsigned long MmioBase;
/* These are linear addresses. */
unsigned char* MapBase;
unsigned char* MpegMapBase;
unsigned char* BltBase;
unsigned char* MapBaseDense;
unsigned char* FBBase;
CARD8 MemClk;
/* Here are all the Options */
Bool VQEnable;
Bool NoAccel;
Bool shadowFB;
Rotation rotate;
int agpMem;
CreateScreenResourcesProcPtr CreateScreenResources;
CloseScreenProcPtr CloseScreen;
#ifdef HAVE_PCIACCESS
struct pci_device *PciInfo;
#else
pciVideoPtr PciInfo;
PCITAG PciTag;
#endif
int Chipset;
int ChipId;
int ChipRev;
int EntityIndex;
/* Support for shadowFB and rotation */
unsigned char* ShadowPtr;
/* Support for EXA acceleration */
ViaTwodContext td;
Via3DState v3d;
Via3DState *lastToUpload;
ViaCommandBuffer cb;
int accelMarker;
struct buffer_object *exa_sync_bo;
struct buffer_object *exaMem;
CARD32 markerOffset;
void *markerBuf;
CARD32 curMarker;
CARD32 lastMarkerRead;
Bool agpDMA;
Bool nPOT[VIA_NUM_TEXUNITS];
const unsigned *HqvCmeRegs;
ExaDriverPtr exaDriverPtr;
ExaOffscreenArea *exa_scratch;
unsigned int exa_scratch_next;
Bool useEXA;
void *maskP;
CARD32 maskFormat;
Bool componentAlpha;
void *srcP;
CARD32 srcFormat;
unsigned scratchOffset;
int exaScratchSize;
char * scratchAddr;
Bool noComposite;
struct buffer_object *scratchBuffer;
#ifdef HAVE_DRI
struct buffer_object *texAGPBuffer;
char * dBounce;
#endif
/* Rotation */
Bool RandRRotation;
/* Display Record Pointer */
VIADisplayPtr pVIADisplay;
/* MHS */
Bool IsSecondary;
Bool HasSecondary;
Bool SAMM;
drmmode_rec drmmode;
enum dri_type directRenderingType;
#ifdef HAVE_DRI
Bool XvMCEnabled;
DRIInfoPtr pDRIInfo;
int numVisualConfigs;
__GLXvisualConfig* pVisualConfigs;
VIAConfigPrivPtr pVisualConfigsPriv;
drm_handle_t agpHandle;
drm_handle_t registerHandle;
drm_handle_t frameBufferHandle;
unsigned long agpAddr;
drmAddress agpMappedAddr;
unsigned int agpSize;
Bool IsPCI;
ViaXvMC xvmc;
int drmVerMajor;
int drmVerMinor;
int drmVerPatchLevel;
struct buffer_object *driOffScreenMem;
void * driOffScreenSave;
#endif
Bool DRIIrqEnable;
Bool agpEnable;
Bool dma2d;
Bool dmaXV;
/* Video */
int VideoEngine;
swovRec swov;
CARD32 VideoStatus;
VIAHWDiff HWDiff;
unsigned long dwV1, dwV3;
unsigned long dwFrameNum;
CARD32* VidRegBuffer; /* Temporary buffer for video overlay registers. */
unsigned long VidRegCursor; /* Write cursor for VidRegBuffer. */
unsigned long old_dwUseExtendedFIFO;
ViaSharedPtr sharedData;
Bool useDmaBlit;
void *displayMap;
CARD32 displayOffset;
#ifdef HAVE_DEBUG
Bool disableXvBWCheck;
Bool DumpVGAROM;
Bool PrintVGARegs;
Bool PrintTVRegs;
#endif /* HAVE_DEBUG */
video_via_regs* VideoRegs;
} VIARec, *VIAPtr;
#define VIAPTR(p) ((VIAPtr)((p)->driverPrivate))
typedef struct
{
Bool IsDRIEnabled;
Bool HasSecondary;
Bool BypassSecondary;
/*These two registers are used to make sure the CRTC2 is
restored before CRTC_EXT, otherwise it could lead to blank screen.*/
Bool IsSecondaryRestored;
Bool RestorePrimary;
ScrnInfoPtr pSecondaryScrn;
ScrnInfoPtr pPrimaryScrn;
} VIAEntRec, *VIAEntPtr;
/* In via_display.c. */
extern const xf86CrtcFuncsRec iga1_crtc_funcs;
extern const xf86CrtcFuncsRec iga2_crtc_funcs;
/* In via_exa.c. */
Bool viaInitExa(ScreenPtr pScreen);
Bool viaAccelSetMode(int bpp, ViaTwodContext * tdc);
void viaAccelSync(ScrnInfoPtr);
void viaExitAccel(ScreenPtr);
void viaFinishInitAccel(ScreenPtr);
Bool viaOrder(CARD32 val, CARD32 * shift);
CARD32 viaBitExpandHelper(CARD32 pixel, CARD32 bits);
Bool viaCheckUpload(ScrnInfoPtr pScrn, Via3DState * v3d);
void viaPixelARGB8888(unsigned format, void *pixelP, CARD32 * argb8888);
Bool viaExpandablePixel(int format);
void viaAccelFillPixmap(ScrnInfoPtr, unsigned long, unsigned long,
int, int, int, int, int, unsigned long);
void viaAccelTextureBlit(ScrnInfoPtr, unsigned long, unsigned, unsigned,
unsigned, unsigned, unsigned, unsigned,
unsigned long, unsigned, unsigned,
unsigned, unsigned, int);
#ifdef VIA_DEBUG_COMPOSITE
void viaExaCompositePictDesc(PicturePtr pict, char *string, int n);
void viaExaPrintCompositeInfo(char *info, CARD8 op, PicturePtr pSrc, PicturePtr pMask,
PicturePtr pDst);
#endif
/* In via_exa_h2.c */
Bool viaExaPrepareSolid_H2(PixmapPtr pPixmap, int alu, Pixel planeMask,
Pixel fg);
void viaExaSolid_H2(PixmapPtr pPixmap, int x1, int y1, int x2, int y2);
void viaExaDoneSolidCopy_H2(PixmapPtr pPixmap);
Bool viaExaPrepareCopy_H2(PixmapPtr pSrcPixmap, PixmapPtr pDstPixmap,
int xdir, int ydir, int alu, Pixel planeMask);
void viaExaCopy_H2(PixmapPtr pDstPixmap, int srcX, int srcY, int dstX,
int dstY, int width, int height);
Bool viaExaCheckComposite_H2(int op, PicturePtr pSrcPicture,
PicturePtr pMaskPicture, PicturePtr pDstPicture);
Bool viaExaPrepareComposite_H2(int op, PicturePtr pSrcPicture,
PicturePtr pMaskPicture, PicturePtr pDstPicture,
PixmapPtr pSrc, PixmapPtr pMask, PixmapPtr pDst);
void viaExaComposite_H2(PixmapPtr pDst, int srcX, int srcY,
int maskX, int maskY, int dstX, int dstY,
int width, int height);
int viaAccelMarkSync_H2(ScreenPtr);
/* In via_exa_h6.c */
Bool viaExaPrepareSolid_H6(PixmapPtr pPixmap, int alu, Pixel planeMask,
Pixel fg);
void viaExaSolid_H6(PixmapPtr pPixmap, int x1, int y1, int x2, int y2);
void viaExaDoneSolidCopy_H6(PixmapPtr pPixmap);
Bool viaExaPrepareCopy_H6(PixmapPtr pSrcPixmap, PixmapPtr pDstPixmap,
int xdir, int ydir, int alu, Pixel planeMask);
void viaExaCopy_H6(PixmapPtr pDstPixmap, int srcX, int srcY, int dstX,
int dstY, int width, int height);
Bool viaExaCheckComposite_H6(int op, PicturePtr pSrcPicture,
PicturePtr pMaskPicture, PicturePtr pDstPicture);
Bool viaExaPrepareComposite_H6(int op, PicturePtr pSrcPicture,
PicturePtr pMaskPicture, PicturePtr pDstPicture,
PixmapPtr pSrc, PixmapPtr pMask, PixmapPtr pDst);
void viaExaComposite_H6(PixmapPtr pDst, int srcX, int srcY,
int maskX, int maskY, int dstX, int dstY,
int width, int height);
int viaAccelMarkSync_H6(ScreenPtr);
/* In via_xv.c */
void viaInitVideo(ScreenPtr pScreen);
void viaExitVideo(ScrnInfoPtr pScrn);
void viaSaveVideo(ScrnInfoPtr pScrn);
void viaRestoreVideo(ScrnInfoPtr pScrn);
void viaSetColorSpace(VIAPtr pVia, int hue, int saturation, int brightness, int contrast,
Bool reset);
/* In via_xv.c */
void viaInitVideo(ScreenPtr pScreen);
void viaExitVideo(ScrnInfoPtr pScrn);
void viaSaveVideo(ScrnInfoPtr pScrn);
void viaRestoreVideo(ScrnInfoPtr pScrn);
void viaSetColorSpace(VIAPtr pVia, int hue, int saturation, int brightness, int contrast,
Bool reset);
void VIAVidAdjustFrame(ScrnInfoPtr pScrn, int x, int y);
/* In via_memcpy.c */
typedef void (*vidCopyFunc)(unsigned char *, const unsigned char *,
int, int, int, int);
extern vidCopyFunc viaVidCopyInit( char *copyType, ScreenPtr pScreen );
/* In via_xwmc.c */
#ifdef HAVE_DRI
/* Basic init and exit functions */
void ViaInitXVMC(ScreenPtr pScreen);
void ViaCleanupXVMC(ScrnInfoPtr pScrn, XF86VideoAdaptorPtr *XvAdaptors, int XvAdaptorCount);
int viaXvMCInitXv(ScrnInfoPtr pScrn, XF86VideoAdaptorPtr XvAdapt);
/* Returns the size of the fake Xv Image used as XvMC command buffer to the X server*/
unsigned long viaXvMCPutImageSize(ScrnInfoPtr pScrn);
#endif
#ifdef HAVE_DRI
Bool VIADRI1ScreenInit(ScreenPtr pScreen);
void VIADRICloseScreen(ScreenPtr pScreen);
Bool VIADRIFinishScreenInit(ScreenPtr pScreen);
void VIADRIRingBufferCleanup(ScrnInfoPtr pScrn);
Bool VIADRIRingBufferInit(ScrnInfoPtr pScrn);
void viaDRIOffscreenRestore(ScrnInfoPtr pScrn);
void viaDRIOffscreenSave(ScrnInfoPtr pScrn);
Bool VIADRIBufferInit(ScrnInfoPtr pScrn);
#endif /* HAVE_DRI */
int viaOffScreenLinear(struct buffer_object *obj, ScrnInfoPtr pScrn, unsigned long size);
void viaShowCursor(ScrnInfoPtr pScrn);
void viaHideCursor(ScrnInfoPtr pScrn);
Bool viaHWCursorInit(ScreenPtr pScreen);
#endif /* _VIA_DRIVER_H_ */
|