mga_drm.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* mga_drm.h -- Public header for the Matrox g200/g400 driver -*- linux-c -*-
  2.  * Created: Tue Jan 25 01:50:01 1999 by jhartmann@precisioninsight.com
  3.  *
  4.  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  5.  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  6.  * All rights reserved.
  7.  *
  8.  * Permission is hereby granted, free of charge, to any person obtaining a
  9.  * copy of this software and associated documentation files (the "Software"),
  10.  * to deal in the Software without restriction, including without limitation
  11.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12.  * and/or sell copies of the Software, and to permit persons to whom the
  13.  * Software is furnished to do so, subject to the following conditions:
  14.  *
  15.  * The above copyright notice and this permission notice (including the next
  16.  * paragraph) shall be included in all copies or substantial portions of the
  17.  * Software.
  18.  *
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  22.  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25.  * OTHER DEALINGS IN THE SOFTWARE.
  26.  *
  27.  * Authors:
  28.  *    Jeff Hartmann <jhartmann@valinux.com>
  29.  *    Keith Whitwell <keithw@valinux.com>
  30.  *
  31.  * Rewritten by:
  32.  *    Gareth Hughes <gareth@valinux.com>
  33.  */
  34. #ifndef __MGA_DRM_H__
  35. #define __MGA_DRM_H__
  36. /* WARNING: If you change any of these defines, make sure to change the
  37.  * defines in the Xserver file (mga_sarea.h)
  38.  */
  39. #ifndef __MGA_SAREA_DEFINES__
  40. #define __MGA_SAREA_DEFINES__
  41. /* WARP pipe flags
  42.  */
  43. #define MGA_F 0x1 /* fog */
  44. #define MGA_A 0x2 /* alpha */
  45. #define MGA_S 0x4 /* specular */
  46. #define MGA_T2 0x8 /* multitexture */
  47. #define MGA_WARP_TGZ 0
  48. #define MGA_WARP_TGZF (MGA_F)
  49. #define MGA_WARP_TGZA (MGA_A)
  50. #define MGA_WARP_TGZAF (MGA_F|MGA_A)
  51. #define MGA_WARP_TGZS (MGA_S)
  52. #define MGA_WARP_TGZSF (MGA_S|MGA_F)
  53. #define MGA_WARP_TGZSA (MGA_S|MGA_A)
  54. #define MGA_WARP_TGZSAF (MGA_S|MGA_F|MGA_A)
  55. #define MGA_WARP_T2GZ (MGA_T2)
  56. #define MGA_WARP_T2GZF (MGA_T2|MGA_F)
  57. #define MGA_WARP_T2GZA (MGA_T2|MGA_A)
  58. #define MGA_WARP_T2GZAF (MGA_T2|MGA_A|MGA_F)
  59. #define MGA_WARP_T2GZS (MGA_T2|MGA_S)
  60. #define MGA_WARP_T2GZSF (MGA_T2|MGA_S|MGA_F)
  61. #define MGA_WARP_T2GZSA (MGA_T2|MGA_S|MGA_A)
  62. #define MGA_WARP_T2GZSAF (MGA_T2|MGA_S|MGA_F|MGA_A)
  63. #define MGA_MAX_G200_PIPES 8 /* no multitex */
  64. #define MGA_MAX_G400_PIPES 16
  65. #define MGA_MAX_WARP_PIPES MGA_MAX_G400_PIPES
  66. #define MGA_WARP_UCODE_SIZE 32768 /* in bytes */
  67. #define MGA_CARD_TYPE_G200 1
  68. #define MGA_CARD_TYPE_G400 2
  69. #define MGA_FRONT 0x1
  70. #define MGA_BACK 0x2
  71. #define MGA_DEPTH 0x4
  72. /* What needs to be changed for the current vertex dma buffer?
  73.  */
  74. #define MGA_UPLOAD_CONTEXT 0x1
  75. #define MGA_UPLOAD_TEX0 0x2
  76. #define MGA_UPLOAD_TEX1 0x4
  77. #define MGA_UPLOAD_PIPE 0x8
  78. #define MGA_UPLOAD_TEX0IMAGE 0x10 /* handled client-side */
  79. #define MGA_UPLOAD_TEX1IMAGE 0x20 /* handled client-side */
  80. #define MGA_UPLOAD_2D 0x40
  81. #define MGA_WAIT_AGE 0x80 /* handled client-side */
  82. #define MGA_UPLOAD_CLIPRECTS 0x100 /* handled client-side */
  83. #if 0
  84. #define MGA_DMA_FLUSH 0x200 /* set when someone gets the lock
  85.  quiescent */
  86. #endif
  87. /* 32 buffers of 64k each, total 2 meg.
  88.  */
  89. #define MGA_BUFFER_SIZE (1 << 16)
  90. #define MGA_NUM_BUFFERS 128
  91. /* Keep these small for testing.
  92.  */
  93. #define MGA_NR_SAREA_CLIPRECTS 8
  94. /* 2 heaps (1 for card, 1 for agp), each divided into upto 128
  95.  * regions, subject to a minimum region size of (1<<16) == 64k.
  96.  *
  97.  * Clients may subdivide regions internally, but when sharing between
  98.  * clients, the region size is the minimum granularity.
  99.  */
  100. #define MGA_CARD_HEAP 0
  101. #define MGA_AGP_HEAP 1
  102. #define MGA_NR_TEX_HEAPS 2
  103. #define MGA_NR_TEX_REGIONS 16
  104. #define MGA_LOG_MIN_TEX_REGION_SIZE 16
  105. #endif /* __MGA_SAREA_DEFINES__ */
  106. /* Setup registers for 3D context
  107.  */
  108. typedef struct {
  109. unsigned int dstorg;
  110. unsigned int maccess;
  111. unsigned int plnwt;
  112. unsigned int dwgctl;
  113. unsigned int alphactrl;
  114. unsigned int fogcolor;
  115. unsigned int wflag;
  116. unsigned int tdualstage0;
  117. unsigned int tdualstage1;
  118. unsigned int fcol;
  119. unsigned int stencil;
  120. unsigned int stencilctl;
  121. } drm_mga_context_regs_t;
  122. /* Setup registers for 2D, X server
  123.  */
  124. typedef struct {
  125. unsigned int pitch;
  126. } drm_mga_server_regs_t;
  127. /* Setup registers for each texture unit
  128.  */
  129. typedef struct {
  130. unsigned int texctl;
  131. unsigned int texctl2;
  132. unsigned int texfilter;
  133. unsigned int texbordercol;
  134. unsigned int texorg;
  135. unsigned int texwidth;
  136. unsigned int texheight;
  137. unsigned int texorg1;
  138. unsigned int texorg2;
  139. unsigned int texorg3;
  140. unsigned int texorg4;
  141. } drm_mga_texture_regs_t;
  142. /* General aging mechanism
  143.  */
  144. typedef struct {
  145. unsigned int head; /* Position of head pointer          */
  146. unsigned int wrap; /* Primary DMA wrap count            */
  147. } drm_mga_age_t;
  148. typedef struct _drm_mga_sarea {
  149. /* The channel for communication of state information to the kernel
  150.  * on firing a vertex dma buffer.
  151.  */
  152.     drm_mga_context_regs_t context_state;
  153.     drm_mga_server_regs_t server_state;
  154.     drm_mga_texture_regs_t tex_state[2];
  155.     unsigned int warp_pipe;
  156.     unsigned int dirty;
  157.     unsigned int vertsize;
  158. /* The current cliprects, or a subset thereof.
  159.  */
  160.     drm_clip_rect_t boxes[MGA_NR_SAREA_CLIPRECTS];
  161.     unsigned int nbox;
  162. /* Information about the most recently used 3d drawable.  The
  163.  * client fills in the req_* fields, the server fills in the
  164.  * exported_ fields and puts the cliprects into boxes, above.
  165.  *
  166.  * The client clears the exported_drawable field before
  167.  * clobbering the boxes data.
  168.  */
  169.         unsigned int req_drawable;  /* the X drawable id */
  170. unsigned int req_draw_buffer;  /* MGA_FRONT or MGA_BACK */
  171.         unsigned int exported_drawable;
  172. unsigned int exported_index;
  173.         unsigned int exported_stamp;
  174.         unsigned int exported_buffers;
  175.         unsigned int exported_nfront;
  176.         unsigned int exported_nback;
  177. int exported_back_x, exported_front_x, exported_w;
  178. int exported_back_y, exported_front_y, exported_h;
  179.     drm_clip_rect_t exported_boxes[MGA_NR_SAREA_CLIPRECTS];
  180. /* Counters for aging textures and for client-side throttling.
  181.  */
  182. unsigned int status[4];
  183. unsigned int last_wrap;
  184. drm_mga_age_t last_frame;
  185.         unsigned int last_enqueue; /* last time a buffer was enqueued */
  186. unsigned int last_dispatch; /* age of the most recently dispatched buffer */
  187. unsigned int last_quiescent;     /*  */
  188. /* LRU lists for texture memory in agp space and on the card.
  189.  */
  190. drm_tex_region_t texList[MGA_NR_TEX_HEAPS][MGA_NR_TEX_REGIONS+1];
  191. unsigned int texAge[MGA_NR_TEX_HEAPS];
  192. /* Mechanism to validate card state.
  193.  */
  194.     int ctxOwner;
  195. } drm_mga_sarea_t;
  196. /* WARNING: If you change any of these defines, make sure to change the
  197.  * defines in the Xserver file (xf86drmMga.h)
  198.  */
  199. typedef struct _drm_mga_warp_index {
  200.     int installed;
  201.     unsigned long phys_addr;
  202.     int size;
  203. } drm_mga_warp_index_t;
  204. typedef struct drm_mga_init {
  205.     enum {
  206.     MGA_INIT_DMA    = 0x01,
  207.         MGA_CLEANUP_DMA = 0x02
  208. } func;
  209.     unsigned long sarea_priv_offset;
  210. int chipset;
  211.     int sgram;
  212. unsigned int maccess;
  213.     unsigned int fb_cpp;
  214. unsigned int front_offset, front_pitch;
  215.     unsigned int back_offset, back_pitch;
  216.     unsigned int depth_cpp;
  217.     unsigned int depth_offset, depth_pitch;
  218.     unsigned int texture_offset[MGA_NR_TEX_HEAPS];
  219.     unsigned int texture_size[MGA_NR_TEX_HEAPS];
  220. unsigned long fb_offset;
  221. unsigned long mmio_offset;
  222. unsigned long status_offset;
  223. unsigned long warp_offset;
  224. unsigned long primary_offset;
  225. unsigned long buffers_offset;
  226. } drm_mga_init_t;
  227. typedef struct drm_mga_fullscreen {
  228. enum {
  229. MGA_INIT_FULLSCREEN    = 0x01,
  230. MGA_CLEANUP_FULLSCREEN = 0x02
  231. } func;
  232. } drm_mga_fullscreen_t;
  233. typedef struct drm_mga_clear {
  234. unsigned int flags;
  235. unsigned int clear_color;
  236. unsigned int clear_depth;
  237. unsigned int color_mask;
  238. unsigned int depth_mask;
  239. } drm_mga_clear_t;
  240. typedef struct drm_mga_vertex {
  241.     int idx; /* buffer to queue */
  242. int used; /* bytes in use */
  243. int discard; /* client finished with buffer?  */
  244. } drm_mga_vertex_t;
  245. typedef struct drm_mga_indices {
  246.     int idx; /* buffer to queue */
  247. unsigned int start;
  248. unsigned int end;
  249. int discard; /* client finished with buffer?  */
  250. } drm_mga_indices_t;
  251. typedef struct drm_mga_iload {
  252. int idx;
  253. unsigned int dstorg;
  254. unsigned int length;
  255. } drm_mga_iload_t;
  256. typedef struct _drm_mga_blit {
  257. unsigned int planemask;
  258. unsigned int srcorg;
  259. unsigned int dstorg;
  260. int src_pitch, dst_pitch;
  261. int delta_sx, delta_sy;
  262. int delta_dx, delta_dy;
  263. int height, ydir; /* flip image vertically */
  264. int source_pitch, dest_pitch;
  265. } drm_mga_blit_t;
  266. #endif