agp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式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_BACKEND_PRIV_H
  27. #define _AGP_BACKEND_PRIV_H 1
  28. enum aper_size_type {
  29. U8_APER_SIZE,
  30. U16_APER_SIZE,
  31. U32_APER_SIZE,
  32. LVL2_APER_SIZE,
  33. FIXED_APER_SIZE
  34. };
  35. typedef struct _gatt_mask {
  36. unsigned long mask;
  37. u32 type;
  38. /* totally device specific, for integrated chipsets that 
  39.  * might have different types of memory masks.  For other
  40.  * devices this will probably be ignored */
  41. } gatt_mask;
  42. typedef struct _aper_size_info_8 {
  43. int size;
  44. int num_entries;
  45. int page_order;
  46. u8 size_value;
  47. } aper_size_info_8;
  48. typedef struct _aper_size_info_16 {
  49. int size;
  50. int num_entries;
  51. int page_order;
  52. u16 size_value;
  53. } aper_size_info_16;
  54. typedef struct _aper_size_info_32 {
  55. int size;
  56. int num_entries;
  57. int page_order;
  58. u32 size_value;
  59. } aper_size_info_32;
  60. typedef struct _aper_size_info_lvl2 {
  61. int size;
  62. int num_entries;
  63. u32 size_value;
  64. } aper_size_info_lvl2;
  65. typedef struct _aper_size_info_fixed {
  66. int size;
  67. int num_entries;
  68. int page_order;
  69. } aper_size_info_fixed;
  70. struct agp_bridge_data {
  71. agp_version *version;
  72. void *aperture_sizes;
  73. void *previous_size;
  74. void *current_size;
  75. void *dev_private_data;
  76. struct pci_dev *dev;
  77. gatt_mask *masks;
  78. unsigned long *gatt_table;
  79. unsigned long *gatt_table_real;
  80. unsigned long scratch_page;
  81. unsigned long gart_bus_addr;
  82. unsigned long gatt_bus_addr;
  83. u32 mode;
  84. enum chipset_type type;
  85. enum aper_size_type size_type;
  86. unsigned long *key_list;
  87. atomic_t current_memory_agp;
  88. atomic_t agp_in_use;
  89. int max_memory_agp; /* in number of pages */
  90. int needs_scratch_page;
  91. int aperture_size_idx;
  92. int num_aperture_sizes;
  93. int num_of_masks;
  94. int capndx;
  95. int cant_use_aperture;
  96. /* Links to driver specific functions */
  97. int (*fetch_size) (void);
  98. int (*configure) (void);
  99. void (*agp_enable) (u32);
  100. void (*cleanup) (void);
  101. void (*tlb_flush) (agp_memory *);
  102. unsigned long (*mask_memory) (unsigned long, int);
  103. void (*cache_flush) (void);
  104. int (*create_gatt_table) (void);
  105. int (*free_gatt_table) (void);
  106. int (*insert_memory) (agp_memory *, off_t, int);
  107. int (*remove_memory) (agp_memory *, off_t, int);
  108. agp_memory *(*alloc_by_type) (size_t, int);
  109. void (*free_by_type) (agp_memory *);
  110. unsigned long (*agp_alloc_page) (void);
  111. void (*agp_destroy_page) (unsigned long);
  112. int (*suspend)(void);
  113. void (*resume)(void);
  114. };
  115. #define OUTREG32(mmap, addr, val)   __raw_writel((val), (mmap)+(addr))
  116. #define OUTREG16(mmap, addr, val)   __raw_writew((val), (mmap)+(addr))
  117. #define OUTREG8(mmap, addr, val)   __raw_writeb((val), (mmap)+(addr))
  118. #define INREG32(mmap, addr)         __raw_readl((mmap)+(addr))
  119. #define INREG16(mmap, addr)         __raw_readw((mmap)+(addr))
  120. #define INREG8(mmap, addr)         __raw_readb((mmap)+(addr))
  121. #define KB(x) ((x) * 1024)
  122. #define MB(x) (KB (KB (x)))
  123. #define GB(x) (MB (KB (x)))
  124. #define CACHE_FLUSH agp_bridge.cache_flush
  125. #define A_SIZE_8(x) ((aper_size_info_8 *) x)
  126. #define A_SIZE_16(x) ((aper_size_info_16 *) x)
  127. #define A_SIZE_32(x) ((aper_size_info_32 *) x)
  128. #define A_SIZE_LVL2(x)  ((aper_size_info_lvl2 *) x)
  129. #define A_SIZE_FIX(x) ((aper_size_info_fixed *) x)
  130. #define A_IDX8() (A_SIZE_8(agp_bridge.aperture_sizes) + i)
  131. #define A_IDX16() (A_SIZE_16(agp_bridge.aperture_sizes) + i)
  132. #define A_IDX32() (A_SIZE_32(agp_bridge.aperture_sizes) + i)
  133. #define A_IDXLVL2() (A_SIZE_LVL2(agp_bridge.aperture_sizes) + i)
  134. #define A_IDXFIX() (A_SIZE_FIX(agp_bridge.aperture_sizes) + i)
  135. #define MAXKEY (4096 * 32)
  136. #define AGPGART_MODULE_NAME "agpgart"
  137. #define PFX AGPGART_MODULE_NAME ": "
  138. #define PGE_EMPTY(p) (!(p) || (p) == (unsigned long) agp_bridge.scratch_page)
  139. #ifndef PCI_DEVICE_ID_VIA_82C691_0
  140. #define PCI_DEVICE_ID_VIA_82C691_0      0x0691
  141. #endif
  142. #ifndef PCI_DEVICE_ID_VIA_8371_0
  143. #define PCI_DEVICE_ID_VIA_8371_0      0x0391
  144. #endif
  145. #ifndef PCI_DEVICE_ID_VIA_8363_0
  146. #define PCI_DEVICE_ID_VIA_8363_0      0x0305
  147. #endif
  148. #ifndef PCI_DEVICE_ID_VIA_82C694X_0
  149. #define PCI_DEVICE_ID_VIA_82C694X_0      0x0605
  150. #endif
  151. #ifndef PCI_DEVICE_ID_INTEL_810_0
  152. #define PCI_DEVICE_ID_INTEL_810_0       0x7120
  153. #endif
  154. #ifndef PCI_DEVICE_ID_INTEL_830_M_0
  155. #define PCI_DEVICE_ID_INTEL_830_M_0 0x3575
  156. #endif
  157. #ifndef PCI_DEVICE_ID_INTEL_830_M_1
  158. #define PCI_DEVICE_ID_INTEL_830_M_1     0x3577
  159. #endif
  160. #ifndef PCI_DEVICE_ID_INTEL_820_0
  161. #define PCI_DEVICE_ID_INTEL_820_0       0x2500
  162. #endif
  163. #ifndef PCI_DEVICE_ID_INTEL_820_UP_0
  164. #define PCI_DEVICE_ID_INTEL_820_UP_0    0x2501
  165. #endif
  166. #ifndef PCI_DEVICE_ID_INTEL_840_0
  167. #define PCI_DEVICE_ID_INTEL_840_0 0x1a21
  168. #endif
  169. #ifndef PCI_DEVICE_ID_INTEL_845_0
  170. #define PCI_DEVICE_ID_INTEL_845_0     0x1a30
  171. #endif
  172. #ifndef PCI_DEVICE_ID_INTEL_850_0
  173. #define PCI_DEVICE_ID_INTEL_850_0     0x2530
  174. #endif
  175. #ifndef PCI_DEVICE_ID_INTEL_860_0
  176. #define PCI_DEVICE_ID_INTEL_860_0     0x2531
  177. #endif
  178. #ifndef PCI_DEVICE_ID_INTEL_810_DC100_0
  179. #define PCI_DEVICE_ID_INTEL_810_DC100_0 0x7122
  180. #endif
  181. #ifndef PCI_DEVICE_ID_INTEL_810_E_0
  182. #define PCI_DEVICE_ID_INTEL_810_E_0     0x7124
  183. #endif
  184. #ifndef PCI_DEVICE_ID_INTEL_82443GX_0
  185. #define PCI_DEVICE_ID_INTEL_82443GX_0   0x71a0
  186. #endif
  187. #ifndef PCI_DEVICE_ID_INTEL_810_1
  188. #define PCI_DEVICE_ID_INTEL_810_1       0x7121
  189. #endif
  190. #ifndef PCI_DEVICE_ID_INTEL_810_DC100_1
  191. #define PCI_DEVICE_ID_INTEL_810_DC100_1 0x7123
  192. #endif
  193. #ifndef PCI_DEVICE_ID_INTEL_810_E_1
  194. #define PCI_DEVICE_ID_INTEL_810_E_1     0x7125
  195. #endif
  196. #ifndef PCI_DEVICE_ID_INTEL_815_0
  197. #define PCI_DEVICE_ID_INTEL_815_0       0x1130
  198. #endif
  199. #ifndef PCI_DEVICE_ID_INTEL_815_1
  200. #define PCI_DEVICE_ID_INTEL_815_1       0x1132
  201. #endif
  202. #ifndef PCI_DEVICE_ID_INTEL_82443GX_1
  203. #define PCI_DEVICE_ID_INTEL_82443GX_1   0x71a1
  204. #endif
  205. #ifndef PCI_DEVICE_ID_AMD_IRONGATE_0
  206. #define PCI_DEVICE_ID_AMD_IRONGATE_0    0x7006
  207. #endif
  208. #ifndef PCI_DEVICE_ID_AMD_761_0
  209. #define PCI_DEVICE_ID_AMD_761_0         0x700e
  210. #endif
  211. #ifndef PCI_DEVICE_ID_AMD_762_0
  212. #define PCI_DEVICE_ID_AMD_762_0 0x700C
  213. #endif
  214. #ifndef PCI_VENDOR_ID_AL
  215. #define PCI_VENDOR_ID_AL 0x10b9
  216. #endif
  217. #ifndef PCI_DEVICE_ID_AL_M1541_0
  218. #define PCI_DEVICE_ID_AL_M1541_0 0x1541
  219. #endif
  220. #ifndef PCI_DEVICE_ID_AL_M1621_0
  221. #define PCI_DEVICE_ID_AL_M1621_0 0x1621
  222. #endif
  223. #ifndef PCI_DEVICE_ID_AL_M1631_0
  224. #define PCI_DEVICE_ID_AL_M1631_0 0x1631
  225. #endif
  226. #ifndef PCI_DEVICE_ID_AL_M1632_0
  227. #define PCI_DEVICE_ID_AL_M1632_0 0x1632
  228. #endif
  229. #ifndef PCI_DEVICE_ID_AL_M1641_0
  230. #define PCI_DEVICE_ID_AL_M1641_0 0x1641
  231. #endif
  232. #ifndef PCI_DEVICE_ID_AL_M1647_0
  233. #define PCI_DEVICE_ID_AL_M1647_0 0x1647
  234. #endif
  235. #ifndef PCI_DEVICE_ID_AL_M1651_0
  236. #define PCI_DEVICE_ID_AL_M1651_0 0x1651
  237. #endif
  238. /* intel register */
  239. #define INTEL_APBASE    0x10
  240. #define INTEL_APSIZE    0xb4
  241. #define INTEL_ATTBASE   0xb8
  242. #define INTEL_AGPCTRL   0xb0
  243. #define INTEL_NBXCFG    0x50
  244. #define INTEL_ERRSTS    0x91
  245. /* intel i830 registers */
  246. #define I830_GMCH_CTRL             0x52
  247. #define I830_GMCH_ENABLED          0x4
  248. #define I830_GMCH_MEM_MASK         0x1
  249. #define I830_GMCH_MEM_64M          0x1
  250. #define I830_GMCH_MEM_128M         0
  251. #define I830_GMCH_GMS_MASK         0x70
  252. #define I830_GMCH_GMS_DISABLED     0x00
  253. #define I830_GMCH_GMS_LOCAL        0x10
  254. #define I830_GMCH_GMS_STOLEN_512   0x20
  255. #define I830_GMCH_GMS_STOLEN_1024  0x30
  256. #define I830_GMCH_GMS_STOLEN_8192  0x40
  257. #define I830_RDRAM_CHANNEL_TYPE    0x03010
  258. #define I830_RDRAM_ND(x)           (((x) & 0x20) >> 5)
  259. #define I830_RDRAM_DDT(x)          (((x) & 0x18) >> 3)
  260. /* This one is for I830MP w. an external graphic card */
  261. #define INTEL_I830_ERRSTS          0x92
  262. /* intel i820 registers */
  263. #define INTEL_I820_RDCR     0x51
  264. #define INTEL_I820_ERRSTS   0xc8
  265. /* intel i840 registers */
  266. #define INTEL_I840_MCHCFG   0x50
  267. #define INTEL_I840_ERRSTS   0xc8
  268.  
  269. /* intel i845 registers */
  270. #define INTEL_I845_AGPM     0x51
  271. #define INTEL_I845_ERRSTS   0xc8
  272. /* intel i850 registers */
  273. #define INTEL_I850_MCHCFG   0x50
  274. #define INTEL_I850_ERRSTS   0xc8
  275. /* intel i860 registers */
  276. #define INTEL_I860_MCHCFG 0x50
  277. #define INTEL_I860_ERRSTS 0xc8
  278. /* intel i810 registers */
  279. #define I810_GMADDR 0x10
  280. #define I810_MMADDR 0x14
  281. #define I810_PTE_BASE          0x10000
  282. #define I810_PTE_MAIN_UNCACHED 0x00000000
  283. #define I810_PTE_LOCAL         0x00000002
  284. #define I810_PTE_VALID         0x00000001
  285. #define I810_SMRAM_MISCC       0x70
  286. #define I810_GFX_MEM_WIN_SIZE  0x00010000
  287. #define I810_GFX_MEM_WIN_32M   0x00010000
  288. #define I810_GMS               0x000000c0
  289. #define I810_GMS_DISABLE       0x00000000
  290. #define I810_PGETBL_CTL        0x2020
  291. #define I810_PGETBL_ENABLED    0x00000001
  292. #define I810_DRAM_CTL          0x3000
  293. #define I810_DRAM_ROW_0        0x00000001
  294. #define I810_DRAM_ROW_0_SDRAM  0x00000001
  295. /* VIA register */
  296. #define VIA_APBASE      0x10
  297. #define VIA_GARTCTRL    0x80
  298. #define VIA_APSIZE      0x84
  299. #define VIA_ATTBASE     0x88
  300. /* SiS registers */
  301. #define SIS_APBASE      0x10
  302. #define SIS_ATTBASE     0x90
  303. #define SIS_APSIZE      0x94
  304. #define SIS_TLBCNTRL    0x97
  305. #define SIS_TLBFLUSH    0x98
  306. /* AMD registers */
  307. #define AMD_APBASE      0x10
  308. #define AMD_MMBASE      0x14
  309. #define AMD_APSIZE      0xac
  310. #define AMD_MODECNTL    0xb0
  311. #define AMD_MODECNTL2   0xb2
  312. #define AMD_GARTENABLE  0x02 /* In mmio region (16-bit register) */
  313. #define AMD_ATTBASE     0x04 /* In mmio region (32-bit register) */
  314. #define AMD_TLBFLUSH    0x0c /* In mmio region (32-bit register) */
  315. #define AMD_CACHEENTRY  0x10 /* In mmio region (32-bit register) */
  316. /* ALi registers */
  317. #define ALI_APBASE 0x10
  318. #define ALI_AGPCTRL 0xb8
  319. #define ALI_ATTBASE 0xbc
  320. #define ALI_TLBCTRL 0xc0
  321. #define ALI_TAGCTRL 0xc4
  322. #define ALI_CACHE_FLUSH_CTRL 0xD0
  323. #define ALI_CACHE_FLUSH_ADDR_MASK 0xFFFFF000
  324. #define ALI_CACHE_FLUSH_EN 0x100
  325. /* Serverworks Registers */
  326. #define SVWRKS_APSIZE 0x10
  327. #define SVWRKS_SIZE_MASK 0xfe000000
  328. #define SVWRKS_MMBASE 0x14
  329. #define SVWRKS_CACHING 0x4b
  330. #define SVWRKS_FEATURE 0x68
  331. /* func 1 registers */
  332. #define SVWRKS_AGP_ENABLE 0x60
  333. #define SVWRKS_COMMAND 0x04
  334. /* Memory mapped registers */
  335. #define SVWRKS_GART_CACHE 0x02
  336. #define SVWRKS_GATTBASE   0x04
  337. #define SVWRKS_TLBFLUSH   0x10
  338. #define SVWRKS_POSTFLUSH  0x14
  339. #define SVWRKS_DIRFLUSH   0x0c
  340. #endif /* _AGP_BACKEND_PRIV_H */