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
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/mga/mga_dri.h,v 1.1 2000/02/11 17:25:55 dawes Exp $ */
#ifndef _MGA_DRI_
#define _MGA_DRI_
#include <xf86drm.h>
#include <xf86drmMga.h>
#define MGA_MAX_DRAWABLES 256
typedef struct {
int reserved_map_agpstart;
int reserved_map_idx;
int buffer_map_idx;
int sarea_priv_offset;
int primary_size;
int warp_ucode_size;
int chipset;
int sgram;
unsigned long agpMode;
unsigned long agpHandle;
Bool agpAcquired;
drmHandle agp_private;
drmSize agpSizep;
drmAddress agpBase;
int irq;
drmHandle regs;
drmSize regsSize;
drmAddress regsMap;
drmMgaWarpIndex WarpIndex[MGA_MAX_WARP_PIPES];
drmBufMapPtr drmBufs;
CARD8 *agp_map;
} MGADRIServerPrivateRec, *MGADRIServerPrivatePtr;
typedef struct {
int chipset;
int width;
int height;
int mem;
int cpp;
int frontOffset;
int frontPitch;
int backOffset;
int backPitch;
int depthOffset;
int depthPitch;
int textureOffset;
int textureSize;
int logTextureGranularity;
int agpTextureSize;
int logAgpTextureGranularity;
/* Redundant?
*/
unsigned int frontOrg;
unsigned int backOrg;
unsigned int depthOrg;
unsigned int mAccess;
drmHandle agp;
drmSize agpSize;
} MGADRIRec, *MGADRIPtr;
/* WARNING: Do not change the SAREA structure without changing the kernel
* as well */
typedef struct {
unsigned char next, prev;
unsigned char in_use;
int age;
} MGATexRegionRec, *MGATexRegionPtr;
typedef struct {
/* The channel for communication of state information to the kernel
* on firing a vertex dma buffer.
*/
unsigned int ContextState[MGA_CTX_SETUP_SIZE];
unsigned int ServerState[MGA_2D_SETUP_SIZE];
unsigned int TexState[2][MGA_TEX_SETUP_SIZE];
unsigned int WarpPipe;
unsigned int dirty;
unsigned int nbox;
XF86DRIClipRectRec boxes[MGA_NR_SAREA_CLIPRECTS];
/* Information about the most recently used 3d drawable. The
* client fills in the req_* fields, the server fills in the
* exported_ fields and puts the cliprects into boxes, above.
*
* The client clears the exported_drawable field before
* clobbering the boxes data.
*/
unsigned int req_drawable; /* the X drawable id */
unsigned int req_draw_buffer; /* MGA_FRONT or MGA_BACK */
unsigned int exported_drawable;
unsigned int exported_index;
unsigned int exported_stamp;
unsigned int exported_buffers;
unsigned int exported_nfront;
unsigned int exported_nback;
int exported_back_x, exported_front_x, exported_w;
int exported_back_y, exported_front_y, exported_h;
XF86DRIClipRectRec exported_boxes[MGA_NR_SAREA_CLIPRECTS];
/* Counters for aging textures and for client-side throttling.
*/
int last_enqueue; /* last time a buffer was enqueued */
int last_dispatch; /* age of the most recently dispatched buffer */
int last_quiescent; /* */
/* LRU lists for texture memory in agp space and on the card */
MGATexRegionRec texList[MGA_NR_TEX_HEAPS][MGA_NR_TEX_REGIONS+1];
unsigned int texAge[MGA_NR_TEX_HEAPS];
/* Mechanism to validate card state.
*/
int ctxOwner;
} MGASAREARec, *MGASAREAPtr;
typedef struct {
/* Nothing here yet */
int dummy;
} MGAConfigPrivRec, *MGAConfigPrivPtr;
typedef struct {
/* Nothing here yet */
int dummy;
} MGADRIContextRec, *MGADRIContextPtr;
#endif
|