Blame view

include/drm/mga_drm.h 12.6 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  /* mga_drm.h -- Public header for the Matrox g200/g400 driver -*- linux-c -*-
   * Created: Tue Jan 25 01:50:01 1999 by jhartmann@precisioninsight.com
   *
   * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
   * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
   * 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, sublicense,
   * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
   * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS 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.
   *
   * Authors:
   *    Jeff Hartmann <jhartmann@valinux.com>
   *    Keith Whitwell <keith@tungstengraphics.com>
   *
   * Rewritten by:
   *    Gareth Hughes <gareth@valinux.com>
   */
  
  #ifndef __MGA_DRM_H__
  #define __MGA_DRM_H__
1a95916f5   Kristian Høgsberg   drm: Add compatib...
37
  #include "drm.h"
1d7f83d5a   Arnd Bergmann   make drm headers ...
38

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
40
41
42
43
44
45
46
47
  /* WARNING: If you change any of these defines, make sure to change the
   * defines in the Xserver file (mga_sarea.h)
   */
  
  #ifndef __MGA_SAREA_DEFINES__
  #define __MGA_SAREA_DEFINES__
  
  /* WARP pipe flags
   */
b5e89ed53   Dave Airlie   drm: lindent the ...
48
49
50
51
  #define MGA_F			0x1	/* fog */
  #define MGA_A			0x2	/* alpha */
  #define MGA_S			0x4	/* specular */
  #define MGA_T2			0x8	/* multitexture */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  
  #define MGA_WARP_TGZ		0
  #define MGA_WARP_TGZF		(MGA_F)
  #define MGA_WARP_TGZA		(MGA_A)
  #define MGA_WARP_TGZAF		(MGA_F|MGA_A)
  #define MGA_WARP_TGZS		(MGA_S)
  #define MGA_WARP_TGZSF		(MGA_S|MGA_F)
  #define MGA_WARP_TGZSA		(MGA_S|MGA_A)
  #define MGA_WARP_TGZSAF		(MGA_S|MGA_F|MGA_A)
  #define MGA_WARP_T2GZ		(MGA_T2)
  #define MGA_WARP_T2GZF		(MGA_T2|MGA_F)
  #define MGA_WARP_T2GZA		(MGA_T2|MGA_A)
  #define MGA_WARP_T2GZAF		(MGA_T2|MGA_A|MGA_F)
  #define MGA_WARP_T2GZS		(MGA_T2|MGA_S)
  #define MGA_WARP_T2GZSF		(MGA_T2|MGA_S|MGA_F)
  #define MGA_WARP_T2GZSA		(MGA_T2|MGA_S|MGA_A)
  #define MGA_WARP_T2GZSAF	(MGA_T2|MGA_S|MGA_F|MGA_A)
b5e89ed53   Dave Airlie   drm: lindent the ...
69
  #define MGA_MAX_G200_PIPES	8	/* no multitex */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
  #define MGA_MAX_G400_PIPES	16
  #define MGA_MAX_WARP_PIPES	MGA_MAX_G400_PIPES
b5e89ed53   Dave Airlie   drm: lindent the ...
72
  #define MGA_WARP_UCODE_SIZE	32768	/* in bytes */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
74
75
  
  #define MGA_CARD_TYPE_G200	1
  #define MGA_CARD_TYPE_G400	2
b5e89ed53   Dave Airlie   drm: lindent the ...
76
  #define MGA_CARD_TYPE_G450	3	/* not currently used */
93f453f3f   Dave Airlie   drm: add new mga ...
77
  #define MGA_CARD_TYPE_G550	4
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
78
79
80
81
82
83
84
85
86
87
88
  
  #define MGA_FRONT		0x1
  #define MGA_BACK		0x2
  #define MGA_DEPTH		0x4
  
  /* What needs to be changed for the current vertex dma buffer?
   */
  #define MGA_UPLOAD_CONTEXT	0x1
  #define MGA_UPLOAD_TEX0		0x2
  #define MGA_UPLOAD_TEX1		0x4
  #define MGA_UPLOAD_PIPE		0x8
b5e89ed53   Dave Airlie   drm: lindent the ...
89
90
  #define MGA_UPLOAD_TEX0IMAGE	0x10	/* handled client-side */
  #define MGA_UPLOAD_TEX1IMAGE	0x20	/* handled client-side */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
  #define MGA_UPLOAD_2D		0x40
b5e89ed53   Dave Airlie   drm: lindent the ...
92
93
  #define MGA_WAIT_AGE		0x80	/* handled client-side */
  #define MGA_UPLOAD_CLIPRECTS	0x100	/* handled client-side */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
  #if 0
b5e89ed53   Dave Airlie   drm: lindent the ...
95
96
  #define MGA_DMA_FLUSH		0x200	/* set when someone gets the lock
  					   quiescent */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
97
98
99
100
101
102
103
104
105
106
  #endif
  
  /* 32 buffers of 64k each, total 2 meg.
   */
  #define MGA_BUFFER_SIZE		(1 << 16)
  #define MGA_NUM_BUFFERS		128
  
  /* Keep these small for testing.
   */
  #define MGA_NR_SAREA_CLIPRECTS	8
25985edce   Lucas De Marchi   Fix common misspe...
107
  /* 2 heaps (1 for card, 1 for agp), each divided into up to 128
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
108
109
110
111
112
113
114
115
116
117
118
119
120
   * regions, subject to a minimum region size of (1<<16) == 64k.
   *
   * Clients may subdivide regions internally, but when sharing between
   * clients, the region size is the minimum granularity.
   */
  
  #define MGA_CARD_HEAP			0
  #define MGA_AGP_HEAP			1
  #define MGA_NR_TEX_HEAPS		2
  #define MGA_NR_TEX_REGIONS		16
  #define MGA_LOG_MIN_TEX_REGION_SIZE	16
  
  #define  DRM_MGA_IDLE_RETRY          2048
b5e89ed53   Dave Airlie   drm: lindent the ...
121
  #endif				/* __MGA_SAREA_DEFINES__ */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
  
  /* Setup registers for 3D context
   */
  typedef struct {
  	unsigned int dstorg;
  	unsigned int maccess;
  	unsigned int plnwt;
  	unsigned int dwgctl;
  	unsigned int alphactrl;
  	unsigned int fogcolor;
  	unsigned int wflag;
  	unsigned int tdualstage0;
  	unsigned int tdualstage1;
  	unsigned int fcol;
  	unsigned int stencil;
  	unsigned int stencilctl;
  } drm_mga_context_regs_t;
  
  /* Setup registers for 2D, X server
   */
  typedef struct {
  	unsigned int pitch;
  } drm_mga_server_regs_t;
  
  /* Setup registers for each texture unit
   */
  typedef struct {
  	unsigned int texctl;
  	unsigned int texctl2;
  	unsigned int texfilter;
  	unsigned int texbordercol;
  	unsigned int texorg;
  	unsigned int texwidth;
  	unsigned int texheight;
  	unsigned int texorg1;
  	unsigned int texorg2;
  	unsigned int texorg3;
  	unsigned int texorg4;
  } drm_mga_texture_regs_t;
  
  /* General aging mechanism
   */
  typedef struct {
b5e89ed53   Dave Airlie   drm: lindent the ...
165
166
  	unsigned int head;	/* Position of head pointer          */
  	unsigned int wrap;	/* Primary DMA wrap count            */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
167
168
169
170
171
172
  } drm_mga_age_t;
  
  typedef struct _drm_mga_sarea {
  	/* The channel for communication of state information to the kernel
  	 * on firing a vertex dma buffer.
  	 */
b5e89ed53   Dave Airlie   drm: lindent the ...
173
174
175
176
177
178
  	drm_mga_context_regs_t context_state;
  	drm_mga_server_regs_t server_state;
  	drm_mga_texture_regs_t tex_state[2];
  	unsigned int warp_pipe;
  	unsigned int dirty;
  	unsigned int vertsize;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
179
180
181
  
  	/* The current cliprects, or a subset thereof.
  	 */
eddca551a   Dave Airlie   drm: fixup other ...
182
  	struct drm_clip_rect boxes[MGA_NR_SAREA_CLIPRECTS];
b5e89ed53   Dave Airlie   drm: lindent the ...
183
  	unsigned int nbox;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
184
185
186
187
188
189
190
191
  
  	/* 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.
  	 */
b5e89ed53   Dave Airlie   drm: lindent the ...
192
193
  	unsigned int req_drawable;	/* the X drawable id */
  	unsigned int req_draw_buffer;	/* MGA_FRONT or MGA_BACK */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
194

b5e89ed53   Dave Airlie   drm: lindent the ...
195
  	unsigned int exported_drawable;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
196
  	unsigned int exported_index;
b5e89ed53   Dave Airlie   drm: lindent the ...
197
198
199
200
  	unsigned int exported_stamp;
  	unsigned int exported_buffers;
  	unsigned int exported_nfront;
  	unsigned int exported_nback;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
201
202
  	int exported_back_x, exported_front_x, exported_w;
  	int exported_back_y, exported_front_y, exported_h;
eddca551a   Dave Airlie   drm: fixup other ...
203
  	struct drm_clip_rect exported_boxes[MGA_NR_SAREA_CLIPRECTS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
204
205
206
207
208
209
210
  
  	/* Counters for aging textures and for client-side throttling.
  	 */
  	unsigned int status[4];
  	unsigned int last_wrap;
  
  	drm_mga_age_t last_frame;
b5e89ed53   Dave Airlie   drm: lindent the ...
211
  	unsigned int last_enqueue;	/* last time a buffer was enqueued */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
212
  	unsigned int last_dispatch;	/* age of the most recently dispatched buffer */
b5e89ed53   Dave Airlie   drm: lindent the ...
213
  	unsigned int last_quiescent;	/*  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
215
216
  
  	/* LRU lists for texture memory in agp space and on the card.
  	 */
eddca551a   Dave Airlie   drm: fixup other ...
217
  	struct drm_tex_region texList[MGA_NR_TEX_HEAPS][MGA_NR_TEX_REGIONS + 1];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
218
219
220
221
  	unsigned int texAge[MGA_NR_TEX_HEAPS];
  
  	/* Mechanism to validate card state.
  	 */
b5e89ed53   Dave Airlie   drm: lindent the ...
222
  	int ctxOwner;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
223
  } drm_mga_sarea_t;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224
225
226
227
228
229
230
231
232
233
234
235
236
  /* MGA specific ioctls
   * The device specific ioctl range is 0x40 to 0x79.
   */
  #define DRM_MGA_INIT     0x00
  #define DRM_MGA_FLUSH    0x01
  #define DRM_MGA_RESET    0x02
  #define DRM_MGA_SWAP     0x03
  #define DRM_MGA_CLEAR    0x04
  #define DRM_MGA_VERTEX   0x05
  #define DRM_MGA_INDICES  0x06
  #define DRM_MGA_ILOAD    0x07
  #define DRM_MGA_BLIT     0x08
  #define DRM_MGA_GETPARAM 0x09
6795c985a   Dave Airlie   Add support for P...
237
238
239
240
241
242
  /* 3.2:
   * ioctls for operating on fences.
   */
  #define DRM_MGA_SET_FENCE      0x0a
  #define DRM_MGA_WAIT_FENCE     0x0b
  #define DRM_MGA_DMA_BOOTSTRAP  0x0c
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
243
  #define DRM_IOCTL_MGA_INIT     DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_INIT, drm_mga_init_t)
1b2f14896   Dave Airlie   drm: block usersp...
244
  #define DRM_IOCTL_MGA_FLUSH    DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_FLUSH, struct drm_lock)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
245
246
247
248
249
250
251
252
  #define DRM_IOCTL_MGA_RESET    DRM_IO(  DRM_COMMAND_BASE + DRM_MGA_RESET)
  #define DRM_IOCTL_MGA_SWAP     DRM_IO(  DRM_COMMAND_BASE + DRM_MGA_SWAP)
  #define DRM_IOCTL_MGA_CLEAR    DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_CLEAR, drm_mga_clear_t)
  #define DRM_IOCTL_MGA_VERTEX   DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_VERTEX, drm_mga_vertex_t)
  #define DRM_IOCTL_MGA_INDICES  DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_INDICES, drm_mga_indices_t)
  #define DRM_IOCTL_MGA_ILOAD    DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_ILOAD, drm_mga_iload_t)
  #define DRM_IOCTL_MGA_BLIT     DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_BLIT, drm_mga_blit_t)
  #define DRM_IOCTL_MGA_GETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_MGA_GETPARAM, drm_mga_getparam_t)
1d7f83d5a   Arnd Bergmann   make drm headers ...
253
254
  #define DRM_IOCTL_MGA_SET_FENCE     DRM_IOW( DRM_COMMAND_BASE + DRM_MGA_SET_FENCE, __u32)
  #define DRM_IOCTL_MGA_WAIT_FENCE    DRM_IOWR(DRM_COMMAND_BASE + DRM_MGA_WAIT_FENCE, __u32)
6795c985a   Dave Airlie   Add support for P...
255
  #define DRM_IOCTL_MGA_DMA_BOOTSTRAP DRM_IOWR(DRM_COMMAND_BASE + DRM_MGA_DMA_BOOTSTRAP, drm_mga_dma_bootstrap_t)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
257
  
  typedef struct _drm_mga_warp_index {
b5e89ed53   Dave Airlie   drm: lindent the ...
258
259
260
  	int installed;
  	unsigned long phys_addr;
  	int size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
262
263
  } drm_mga_warp_index_t;
  
  typedef struct drm_mga_init {
b5e89ed53   Dave Airlie   drm: lindent the ...
264
265
266
  	enum {
  		MGA_INIT_DMA = 0x01,
  		MGA_CLEANUP_DMA = 0x02
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
267
  	} func;
b5e89ed53   Dave Airlie   drm: lindent the ...
268
  	unsigned long sarea_priv_offset;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
269
270
  
  	int chipset;
b5e89ed53   Dave Airlie   drm: lindent the ...
271
  	int sgram;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
272
273
  
  	unsigned int maccess;
b5e89ed53   Dave Airlie   drm: lindent the ...
274
  	unsigned int fb_cpp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
275
  	unsigned int front_offset, front_pitch;
b5e89ed53   Dave Airlie   drm: lindent the ...
276
  	unsigned int back_offset, back_pitch;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
277

b5e89ed53   Dave Airlie   drm: lindent the ...
278
279
  	unsigned int depth_cpp;
  	unsigned int depth_offset, depth_pitch;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
280

b5e89ed53   Dave Airlie   drm: lindent the ...
281
282
  	unsigned int texture_offset[MGA_NR_TEX_HEAPS];
  	unsigned int texture_size[MGA_NR_TEX_HEAPS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283
284
285
286
287
288
289
290
  
  	unsigned long fb_offset;
  	unsigned long mmio_offset;
  	unsigned long status_offset;
  	unsigned long warp_offset;
  	unsigned long primary_offset;
  	unsigned long buffers_offset;
  } drm_mga_init_t;
6795c985a   Dave Airlie   Add support for P...
291
292
293
294
  typedef struct drm_mga_dma_bootstrap {
  	/**
  	 * 
  ame AGP texture region
b5e89ed53   Dave Airlie   drm: lindent the ...
295
  	 *
6795c985a   Dave Airlie   Add support for P...
296
297
  	 * On return from the DRM_MGA_DMA_BOOTSTRAP ioctl, these fields will
  	 * be filled in with the actual AGP texture settings.
b5e89ed53   Dave Airlie   drm: lindent the ...
298
  	 *
6795c985a   Dave Airlie   Add support for P...
299
300
301
302
303
  	 * \warning
  	 * If these fields are non-zero, but dma_mga_dma_bootstrap::agp_mode
  	 * is zero, it means that PCI memory (most likely through the use of
  	 * an IOMMU) is being used for "AGP" textures.
  	 */
b5e89ed53   Dave Airlie   drm: lindent the ...
304
  	/*@{ */
d1f2b55ad   Dave Airlie   drm: updated DRM ...
305
  	unsigned long texture_handle; /**< Handle used to map AGP textures. */
1d7f83d5a   Arnd Bergmann   make drm headers ...
306
  	__u32 texture_size;	      /**< Size of the AGP texture region. */
b5e89ed53   Dave Airlie   drm: lindent the ...
307
  	/*@} */
6795c985a   Dave Airlie   Add support for P...
308
309
310
  
  	/**
  	 * Requested size of the primary DMA region.
b5e89ed53   Dave Airlie   drm: lindent the ...
311
  	 *
6795c985a   Dave Airlie   Add support for P...
312
313
314
  	 * On return from the DRM_MGA_DMA_BOOTSTRAP ioctl, this field will be
  	 * filled in with the actual AGP mode.  If AGP was not available
  	 */
1d7f83d5a   Arnd Bergmann   make drm headers ...
315
  	__u32 primary_size;
6795c985a   Dave Airlie   Add support for P...
316

6795c985a   Dave Airlie   Add support for P...
317
318
  	/**
  	 * Requested number of secondary DMA buffers.
b5e89ed53   Dave Airlie   drm: lindent the ...
319
  	 *
6795c985a   Dave Airlie   Add support for P...
320
321
322
323
324
  	 * On return from the DRM_MGA_DMA_BOOTSTRAP ioctl, this field will be
  	 * filled in with the actual number of secondary DMA buffers
  	 * allocated.  Particularly when PCI DMA is used, this may be
  	 * (subtantially) less than the number requested.
  	 */
1d7f83d5a   Arnd Bergmann   make drm headers ...
325
  	__u32 secondary_bin_count;
b5e89ed53   Dave Airlie   drm: lindent the ...
326

6795c985a   Dave Airlie   Add support for P...
327
328
  	/**
  	 * Requested size of each secondary DMA buffer.
b5e89ed53   Dave Airlie   drm: lindent the ...
329
  	 *
6795c985a   Dave Airlie   Add support for P...
330
331
332
333
  	 * While the kernel \b is free to reduce
  	 * dma_mga_dma_bootstrap::secondary_bin_count, it is \b not allowed
  	 * to reduce dma_mga_dma_bootstrap::secondary_bin_size.
  	 */
1d7f83d5a   Arnd Bergmann   make drm headers ...
334
  	__u32 secondary_bin_size;
6795c985a   Dave Airlie   Add support for P...
335

6795c985a   Dave Airlie   Add support for P...
336
337
338
339
340
  	/**
  	 * Bit-wise mask of AGPSTAT2_* values.  Currently only \c AGPSTAT2_1X,
  	 * \c AGPSTAT2_2X, and \c AGPSTAT2_4X are supported.  If this value is
  	 * zero, it means that PCI DMA should be used, even if AGP is
  	 * possible.
b5e89ed53   Dave Airlie   drm: lindent the ...
341
  	 *
6795c985a   Dave Airlie   Add support for P...
342
343
344
345
  	 * On return from the DRM_MGA_DMA_BOOTSTRAP ioctl, this field will be
  	 * filled in with the actual AGP mode.  If AGP was not available
  	 * (i.e., PCI DMA was used), this value will be zero.
  	 */
1d7f83d5a   Arnd Bergmann   make drm headers ...
346
  	__u32 agp_mode;
6795c985a   Dave Airlie   Add support for P...
347

6795c985a   Dave Airlie   Add support for P...
348
349
350
  	/**
  	 * Desired AGP GART size, measured in megabytes.
  	 */
1d7f83d5a   Arnd Bergmann   make drm headers ...
351
  	__u8 agp_size;
6795c985a   Dave Airlie   Add support for P...
352
  } drm_mga_dma_bootstrap_t;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
353
354
355
356
357
358
359
360
361
362
  
  typedef struct drm_mga_clear {
  	unsigned int flags;
  	unsigned int clear_color;
  	unsigned int clear_depth;
  	unsigned int color_mask;
  	unsigned int depth_mask;
  } drm_mga_clear_t;
  
  typedef struct drm_mga_vertex {
b5e89ed53   Dave Airlie   drm: lindent the ...
363
364
365
  	int idx;		/* buffer to queue */
  	int used;		/* bytes in use */
  	int discard;		/* client finished with buffer?  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
366
367
368
  } drm_mga_vertex_t;
  
  typedef struct drm_mga_indices {
b5e89ed53   Dave Airlie   drm: lindent the ...
369
  	int idx;		/* buffer to queue */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
370
371
  	unsigned int start;
  	unsigned int end;
b5e89ed53   Dave Airlie   drm: lindent the ...
372
  	int discard;		/* client finished with buffer?  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
  } drm_mga_indices_t;
  
  typedef struct drm_mga_iload {
  	int idx;
  	unsigned int dstorg;
  	unsigned int length;
  } drm_mga_iload_t;
  
  typedef struct _drm_mga_blit {
  	unsigned int planemask;
  	unsigned int srcorg;
  	unsigned int dstorg;
  	int src_pitch, dst_pitch;
  	int delta_sx, delta_sy;
  	int delta_dx, delta_dy;
b5e89ed53   Dave Airlie   drm: lindent the ...
388
  	int height, ydir;	/* flip image vertically */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
389
390
391
392
  	int source_pitch, dest_pitch;
  } drm_mga_blit_t;
  
  /* 3.1: An ioctl to get parameters that aren't available to the 3d
b5e89ed53   Dave Airlie   drm: lindent the ...
393
   * client any other way.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
394
395
   */
  #define MGA_PARAM_IRQ_NR            1
6795c985a   Dave Airlie   Add support for P...
396
397
398
399
400
401
402
  /* 3.2: Query the actual card type.  The DDX only distinguishes between
   * G200 chips and non-G200 chips, which it calls G400.  It turns out that
   * there are some very sublte differences between the G4x0 chips and the G550
   * chips.  Using this parameter query, a client-side driver can detect the
   * difference between a G4x0 and a G550.
   */
  #define MGA_PARAM_CARD_TYPE         2
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
403
404
405
406
407
408
  typedef struct drm_mga_getparam {
  	int param;
  	void __user *value;
  } drm_mga_getparam_t;
  
  #endif