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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * AGPGART module version 0.99
  3.  * Copyright (C) 1999 Jeff Hartmann
  4.  * Copyright (C) 1999 Precision Insight, Inc.
  5.  * Copyright (C) 1999 Xi Graphics, Inc.
  6.  *
  7.  * Permission is hereby granted, free of charge, to any person obtaining a
  8.  * copy of this software and associated documentation files (the "Software"),
  9.  * to deal in the Software without restriction, including without limitation
  10.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.  * and/or sell copies of the Software, and to permit persons to whom the
  12.  * Software is furnished to do so, subject to the following conditions:
  13.  *
  14.  * The above copyright notice and this permission notice shall be included
  15.  * in all copies or substantial portions of the Software.
  16.  *
  17.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  18.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  20.  * JEFF HARTMANN, OR ANY OTHER CONTRIBUTORS BE LIABLE FOR ANY CLAIM, 
  21.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
  22.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 
  23.  * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24.  *
  25.  */
  26. #ifndef _AGP_H
  27. #define _AGP_H 1
  28. #define AGPIOC_BASE       'A'
  29. #define AGPIOC_INFO       _IOR (AGPIOC_BASE, 0, agp_info*)
  30. #define AGPIOC_ACQUIRE    _IO  (AGPIOC_BASE, 1)
  31. #define AGPIOC_RELEASE    _IO  (AGPIOC_BASE, 2)
  32. #define AGPIOC_SETUP      _IOW (AGPIOC_BASE, 3, agp_setup*)
  33. #define AGPIOC_RESERVE    _IOW (AGPIOC_BASE, 4, agp_region*)
  34. #define AGPIOC_PROTECT    _IOW (AGPIOC_BASE, 5, agp_region*)
  35. #define AGPIOC_ALLOCATE   _IOWR(AGPIOC_BASE, 6, agp_allocate*)
  36. #define AGPIOC_DEALLOCATE _IOW (AGPIOC_BASE, 7, int)
  37. #define AGPIOC_BIND       _IOW (AGPIOC_BASE, 8, agp_bind*)
  38. #define AGPIOC_UNBIND     _IOW (AGPIOC_BASE, 9, agp_unbind*)
  39. #define AGP_DEVICE      "/dev/agpgart"
  40. #ifndef TRUE
  41. #define TRUE 1
  42. #endif
  43. #ifndef FALSE
  44. #define FALSE 0
  45. #endif
  46. #ifndef __KERNEL__
  47. #include <linux/types.h>
  48. #include <asm/types.h>
  49. typedef struct _agp_version {
  50. __u16 major;
  51. __u16 minor;
  52. } agp_version;
  53. typedef struct _agp_info {
  54. agp_version version; /* version of the driver        */
  55. __u32 bridge_id; /* bridge vendor/device         */
  56. __u32 agp_mode; /* mode info of bridge          */
  57. off_t aper_base; /* base of aperture             */
  58. size_t aper_size; /* size of aperture             */
  59. size_t pg_total; /* max pages (swap + system)    */
  60. size_t pg_system; /* max pages (system)           */
  61. size_t pg_used; /* current pages used           */
  62. } agp_info;
  63. typedef struct _agp_setup {
  64. __u32 agp_mode; /* mode info of bridge          */
  65. } agp_setup;
  66. /*
  67.  * The "prot" down below needs still a "sleep" flag somehow ...
  68.  */
  69. typedef struct _agp_segment {
  70. off_t pg_start; /* starting page to populate    */
  71. size_t pg_count; /* number of pages              */
  72. int prot; /* prot flags for mmap          */
  73. } agp_segment;
  74. typedef struct _agp_region {
  75. pid_t pid; /* pid of process               */
  76. size_t seg_count; /* number of segments           */
  77. struct _agp_segment *seg_list;
  78. } agp_region;
  79. typedef struct _agp_allocate {
  80. int key; /* tag of allocation            */
  81. size_t pg_count; /* number of pages              */
  82. __u32 type; /* 0 == normal, other devspec   */
  83.     __u32 physical;         /* device specific (some devices  
  84.  * need a phys address of the     
  85.  * actual page behind the gatt    
  86.  * table)                        */
  87. } agp_allocate;
  88. typedef struct _agp_bind {
  89. int key; /* tag of allocation            */
  90. off_t pg_start; /* starting page to populate    */
  91. } agp_bind;
  92. typedef struct _agp_unbind {
  93. int key; /* tag of allocation            */
  94. __u32 priority; /* priority for paging out      */
  95. } agp_unbind;
  96. #else /* __KERNEL__ */
  97. #define AGPGART_MINOR 175
  98. #define AGP_UNLOCK()       up(&(agp_fe.agp_mutex));
  99. #define AGP_LOCK()     down(&(agp_fe.agp_mutex));
  100. #define AGP_LOCK_INIT()  sema_init(&(agp_fe.agp_mutex), 1)
  101. #ifndef _AGP_BACKEND_H
  102. typedef struct _agp_version {
  103. u16 major;
  104. u16 minor;
  105. } agp_version;
  106. #endif
  107. typedef struct _agp_info {
  108. agp_version version; /* version of the driver        */
  109. u32 bridge_id; /* bridge vendor/device         */
  110. u32 agp_mode; /* mode info of bridge          */
  111. off_t aper_base; /* base of aperture             */
  112. size_t aper_size; /* size of aperture             */
  113. size_t pg_total; /* max pages (swap + system)    */
  114. size_t pg_system; /* max pages (system)           */
  115. size_t pg_used; /* current pages used           */
  116. } agp_info;
  117. typedef struct _agp_setup {
  118. u32 agp_mode; /* mode info of bridge          */
  119. } agp_setup;
  120. /*
  121.  * The "prot" down below needs still a "sleep" flag somehow ...
  122.  */
  123. typedef struct _agp_segment {
  124. off_t pg_start; /* starting page to populate    */
  125. size_t pg_count; /* number of pages              */
  126. int prot; /* prot flags for mmap          */
  127. } agp_segment;
  128. typedef struct _agp_segment_priv {
  129. off_t pg_start;
  130. size_t pg_count;
  131. pgprot_t prot;
  132. } agp_segment_priv;
  133. typedef struct _agp_region {
  134. pid_t pid; /* pid of process               */
  135. size_t seg_count; /* number of segments           */
  136. struct _agp_segment *seg_list;
  137. } agp_region;
  138. typedef struct _agp_allocate {
  139. int key; /* tag of allocation            */
  140. size_t pg_count; /* number of pages              */
  141. u32 type; /* 0 == normal, other devspec   */
  142. u32 physical;           /* device specific (some devices  
  143.  * need a phys address of the     
  144.  * actual page behind the gatt    
  145.  * table)                        */
  146. } agp_allocate;
  147. typedef struct _agp_bind {
  148. int key; /* tag of allocation            */
  149. off_t pg_start; /* starting page to populate    */
  150. } agp_bind;
  151. typedef struct _agp_unbind {
  152. int key; /* tag of allocation            */
  153. u32 priority; /* priority for paging out      */
  154. } agp_unbind;
  155. typedef struct _agp_client {
  156. struct _agp_client *next;
  157. struct _agp_client *prev;
  158. pid_t pid;
  159. int num_segments;
  160. agp_segment_priv **segments;
  161. } agp_client;
  162. typedef struct _agp_controller {
  163. struct _agp_controller *next;
  164. struct _agp_controller *prev;
  165. pid_t pid;
  166. int num_clients;
  167. agp_memory *pool;
  168. agp_client *clients;
  169. } agp_controller;
  170. #define AGP_FF_ALLOW_CLIENT 0
  171. #define AGP_FF_ALLOW_CONTROLLER  1
  172. #define AGP_FF_IS_CLIENT 2
  173. #define AGP_FF_IS_CONTROLLER 3
  174. #define AGP_FF_IS_VALID  4
  175. typedef struct _agp_file_private {
  176. struct _agp_file_private *next;
  177. struct _agp_file_private *prev;
  178. pid_t my_pid;
  179. long access_flags; /* long req'd for set_bit --RR */
  180. } agp_file_private;
  181. struct agp_front_data {
  182. struct semaphore agp_mutex;
  183. agp_controller *current_controller;
  184. agp_controller *controllers;
  185. agp_file_private *file_priv_list;
  186. u8 used_by_controller;
  187. u8 backend_acquired;
  188. };
  189. #endif /* __KERNEL__ */
  190. #endif /* _AGP_H */