agpgart.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

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. #include <linux/agp_backend.h>
  29. #define AGPIOC_BASE       'A'
  30. #define AGPIOC_INFO       _IOR (AGPIOC_BASE, 0, struct agp_info*)
  31. #define AGPIOC_ACQUIRE    _IO  (AGPIOC_BASE, 1)
  32. #define AGPIOC_RELEASE    _IO  (AGPIOC_BASE, 2)
  33. #define AGPIOC_SETUP      _IOW (AGPIOC_BASE, 3, struct agp_setup*)
  34. #define AGPIOC_RESERVE    _IOW (AGPIOC_BASE, 4, struct agp_region*)
  35. #define AGPIOC_PROTECT    _IOW (AGPIOC_BASE, 5, struct agp_region*)
  36. #define AGPIOC_ALLOCATE   _IOWR(AGPIOC_BASE, 6, struct agp_allocate*)
  37. #define AGPIOC_DEALLOCATE _IOW (AGPIOC_BASE, 7, int)
  38. #define AGPIOC_BIND       _IOW (AGPIOC_BASE, 8, struct agp_bind*)
  39. #define AGPIOC_UNBIND     _IOW (AGPIOC_BASE, 9, struct agp_unbind*)
  40. #define AGP_DEVICE      "/dev/agpgart"
  41. #ifndef TRUE
  42. #define TRUE 1
  43. #endif
  44. #ifndef FALSE
  45. #define FALSE 0
  46. #endif
  47. #ifndef __KERNEL__
  48. #include <linux/types.h>
  49. #include <asm/types.h>
  50. struct agp_version {
  51. __u16 major;
  52. __u16 minor;
  53. };
  54. typedef struct _agp_info {
  55. struct agp_version version; /* version of the driver        */
  56. __u32 bridge_id; /* bridge vendor/device         */
  57. __u32 agp_mode; /* mode info of bridge          */
  58. unsigned long aper_base;/* base of aperture             */
  59. size_t aper_size; /* size of aperture             */
  60. size_t pg_total; /* max pages (swap + system)    */
  61. size_t pg_system; /* max pages (system)           */
  62. size_t pg_used; /* current pages used           */
  63. } agp_info;
  64. typedef struct _agp_setup {
  65. __u32 agp_mode; /* mode info of bridge          */
  66. } agp_setup;
  67. /*
  68.  * The "prot" down below needs still a "sleep" flag somehow ...
  69.  */
  70. typedef struct _agp_segment {
  71. off_t pg_start; /* starting page to populate    */
  72. size_t pg_count; /* number of pages              */
  73. int prot; /* prot flags for mmap          */
  74. } agp_segment;
  75. typedef struct _agp_region {
  76. pid_t pid; /* pid of process               */
  77. size_t seg_count; /* number of segments           */
  78. struct _agp_segment *seg_list;
  79. } agp_region;
  80. typedef struct _agp_allocate {
  81. int key; /* tag of allocation            */
  82. size_t pg_count; /* number of pages              */
  83. __u32 type; /* 0 == normal, other devspec   */
  84.     __u32 physical;         /* device specific (some devices  
  85.  * need a phys address of the     
  86.  * actual page behind the gatt    
  87.  * table)                        */
  88. } agp_allocate;
  89. typedef struct _agp_bind {
  90. int key; /* tag of allocation            */
  91. off_t pg_start; /* starting page to populate    */
  92. } agp_bind;
  93. typedef struct _agp_unbind {
  94. int key; /* tag of allocation            */
  95. __u32 priority; /* priority for paging out      */
  96. } agp_unbind;
  97. #else /* __KERNEL__ */
  98. #define AGPGART_MINOR 175
  99. struct agp_info {
  100. struct agp_version version; /* version of the driver        */
  101. u32 bridge_id; /* bridge vendor/device         */
  102. u32 agp_mode; /* mode info of bridge          */
  103. unsigned long aper_base;/* base of aperture             */
  104. size_t aper_size; /* size of aperture             */
  105. size_t pg_total; /* max pages (swap + system)    */
  106. size_t pg_system; /* max pages (system)           */
  107. size_t pg_used; /* current pages used           */
  108. };
  109. struct agp_setup {
  110. u32 agp_mode; /* mode info of bridge          */
  111. };
  112. /*
  113.  * The "prot" down below needs still a "sleep" flag somehow ...
  114.  */
  115. struct agp_segment {
  116. off_t pg_start; /* starting page to populate    */
  117. size_t pg_count; /* number of pages              */
  118. int prot; /* prot flags for mmap          */
  119. };
  120. struct agp_segment_priv {
  121. off_t pg_start;
  122. size_t pg_count;
  123. pgprot_t prot;
  124. };
  125. struct agp_region {
  126. pid_t pid; /* pid of process               */
  127. size_t seg_count; /* number of segments           */
  128. struct agp_segment *seg_list;
  129. };
  130. struct agp_allocate {
  131. int key; /* tag of allocation            */
  132. size_t pg_count; /* number of pages              */
  133. u32 type; /* 0 == normal, other devspec   */
  134. u32 physical;           /* device specific (some devices  
  135.  * need a phys address of the     
  136.  * actual page behind the gatt    
  137.  * table)                        */
  138. };
  139. struct agp_bind {
  140. int key; /* tag of allocation            */
  141. off_t pg_start; /* starting page to populate    */
  142. };
  143. struct agp_unbind {
  144. int key; /* tag of allocation            */
  145. u32 priority; /* priority for paging out      */
  146. };
  147. struct agp_client {
  148. struct agp_client *next;
  149. struct agp_client *prev;
  150. pid_t pid;
  151. int num_segments;
  152. struct agp_segment_priv **segments;
  153. };
  154. struct agp_controller {
  155. struct agp_controller *next;
  156. struct agp_controller *prev;
  157. pid_t pid;
  158. int num_clients;
  159. struct agp_memory *pool;
  160. struct agp_client *clients;
  161. };
  162. #define AGP_FF_ALLOW_CLIENT 0
  163. #define AGP_FF_ALLOW_CONTROLLER  1
  164. #define AGP_FF_IS_CLIENT 2
  165. #define AGP_FF_IS_CONTROLLER 3
  166. #define AGP_FF_IS_VALID  4
  167. struct agp_file_private {
  168. struct agp_file_private *next;
  169. struct agp_file_private *prev;
  170. pid_t my_pid;
  171. long access_flags; /* long req'd for set_bit --RR */
  172. };
  173. struct agp_front_data {
  174. struct semaphore agp_mutex;
  175. struct agp_controller *current_controller;
  176. struct agp_controller *controllers;
  177. struct agp_file_private *file_priv_list;
  178. u8 used_by_controller;
  179. u8 backend_acquired;
  180. };
  181. #endif /* __KERNEL__ */
  182. #endif /* _AGP_H */