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

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_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. u32 *gatt_table;
  79. u32 *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 OUTREG64(mmap, addr, val)   __raw_writeq((val), (mmap)+(addr))
  116. #define OUTREG32(mmap, addr, val)   __raw_writel((val), (mmap)+(addr))
  117. #define OUTREG16(mmap, addr, val)   __raw_writew((val), (mmap)+(addr))
  118. #define OUTREG8(mmap, addr, val)   __raw_writeb((val), (mmap)+(addr))
  119. #define INREG64(mmap, addr)         __raw_readq((mmap)+(addr))
  120. #define INREG32(mmap, addr)         __raw_readl((mmap)+(addr))
  121. #define INREG16(mmap, addr)         __raw_readw((mmap)+(addr))
  122. #define INREG8(mmap, addr)         __raw_readb((mmap)+(addr))
  123. #define KB(x) ((x) * 1024)
  124. #define MB(x) (KB (KB (x)))
  125. #define GB(x) (MB (KB (x)))
  126. #define CACHE_FLUSH agp_bridge.cache_flush
  127. #define A_SIZE_8(x) ((aper_size_info_8 *) x)
  128. #define A_SIZE_16(x) ((aper_size_info_16 *) x)
  129. #define A_SIZE_32(x) ((aper_size_info_32 *) x)
  130. #define A_SIZE_LVL2(x)  ((aper_size_info_lvl2 *) x)
  131. #define A_SIZE_FIX(x) ((aper_size_info_fixed *) x)
  132. #define A_IDX8() (A_SIZE_8(agp_bridge.aperture_sizes) + i)
  133. #define A_IDX16() (A_SIZE_16(agp_bridge.aperture_sizes) + i)
  134. #define A_IDX32() (A_SIZE_32(agp_bridge.aperture_sizes) + i)
  135. #define A_IDXLVL2() (A_SIZE_LVL2(agp_bridge.aperture_sizes) + i)
  136. #define A_IDXFIX() (A_SIZE_FIX(agp_bridge.aperture_sizes) + i)
  137. #define MAXKEY (4096 * 32)
  138. #define AGPGART_MODULE_NAME "agpgart"
  139. #define PFX AGPGART_MODULE_NAME ": "
  140. #define PGE_EMPTY(p) (!(p) || (p) == (unsigned long) agp_bridge.scratch_page)
  141. #ifndef PCI_DEVICE_ID_VIA_82C691_0
  142. #define PCI_DEVICE_ID_VIA_82C691_0      0x0691
  143. #endif
  144. #ifndef PCI_DEVICE_ID_VIA_8371_0
  145. #define PCI_DEVICE_ID_VIA_8371_0      0x0391
  146. #endif
  147. #ifndef PCI_DEVICE_ID_VIA_8363_0
  148. #define PCI_DEVICE_ID_VIA_8363_0      0x0305
  149. #endif
  150. #ifndef PCI_DEVICE_ID_VIA_82C694X_0
  151. #define PCI_DEVICE_ID_VIA_82C694X_0      0x0605
  152. #endif
  153. #ifndef PCI_DEVICE_ID_INTEL_810_0
  154. #define PCI_DEVICE_ID_INTEL_810_0       0x7120
  155. #endif
  156. #ifndef PCI_DEVICE_ID_INTEL_845_G_0
  157. #define PCI_DEVICE_ID_INTEL_845_G_0 0x2560
  158. #endif
  159. #ifndef PCI_DEVICE_ID_INTEL_845_G_1
  160. #define PCI_DEVICE_ID_INTEL_845_G_1     0x2562
  161. #endif
  162. #ifndef PCI_DEVICE_ID_INTEL_830_M_0
  163. #define PCI_DEVICE_ID_INTEL_830_M_0 0x3575
  164. #endif
  165. #ifndef PCI_DEVICE_ID_INTEL_830_M_1
  166. #define PCI_DEVICE_ID_INTEL_830_M_1     0x3577
  167. #endif
  168. #ifndef PCI_DEVICE_ID_INTEL_820_0
  169. #define PCI_DEVICE_ID_INTEL_820_0       0x2500
  170. #endif
  171. #ifndef PCI_DEVICE_ID_INTEL_820_UP_0
  172. #define PCI_DEVICE_ID_INTEL_820_UP_0    0x2501
  173. #endif
  174. #ifndef PCI_DEVICE_ID_INTEL_840_0
  175. #define PCI_DEVICE_ID_INTEL_840_0 0x1a21
  176. #endif
  177. #ifndef PCI_DEVICE_ID_INTEL_845_0
  178. #define PCI_DEVICE_ID_INTEL_845_0     0x1a30
  179. #endif
  180. #ifndef PCI_DEVICE_ID_INTEL_850_0
  181. #define PCI_DEVICE_ID_INTEL_850_0     0x2530
  182. #endif
  183. #ifndef PCI_DEVICE_ID_INTEL_860_0
  184. #define PCI_DEVICE_ID_INTEL_860_0     0x2531
  185. #endif
  186. #ifndef PCI_DEVICE_ID_INTEL_810_DC100_0
  187. #define PCI_DEVICE_ID_INTEL_810_DC100_0 0x7122
  188. #endif
  189. #ifndef PCI_DEVICE_ID_INTEL_810_E_0
  190. #define PCI_DEVICE_ID_INTEL_810_E_0     0x7124
  191. #endif
  192. #ifndef PCI_DEVICE_ID_INTEL_82443GX_0
  193. #define PCI_DEVICE_ID_INTEL_82443GX_0   0x71a0
  194. #endif
  195. #ifndef PCI_DEVICE_ID_INTEL_810_1
  196. #define PCI_DEVICE_ID_INTEL_810_1       0x7121
  197. #endif
  198. #ifndef PCI_DEVICE_ID_INTEL_810_DC100_1
  199. #define PCI_DEVICE_ID_INTEL_810_DC100_1 0x7123
  200. #endif
  201. #ifndef PCI_DEVICE_ID_INTEL_810_E_1
  202. #define PCI_DEVICE_ID_INTEL_810_E_1     0x7125
  203. #endif
  204. #ifndef PCI_DEVICE_ID_INTEL_815_0
  205. #define PCI_DEVICE_ID_INTEL_815_0       0x1130
  206. #endif
  207. #ifndef PCI_DEVICE_ID_INTEL_815_1
  208. #define PCI_DEVICE_ID_INTEL_815_1       0x1132
  209. #endif
  210. #ifndef PCI_DEVICE_ID_INTEL_82443GX_1
  211. #define PCI_DEVICE_ID_INTEL_82443GX_1   0x71a1
  212. #endif
  213. #ifndef PCI_DEVICE_ID_AMD_IRONGATE_0
  214. #define PCI_DEVICE_ID_AMD_IRONGATE_0    0x7006
  215. #endif
  216. #ifndef PCI_DEVICE_ID_AMD_761_0
  217. #define PCI_DEVICE_ID_AMD_761_0         0x700e
  218. #endif
  219. #ifndef PCI_DEVICE_ID_AMD_762_0
  220. #define PCI_DEVICE_ID_AMD_762_0 0x700C
  221. #endif
  222. #ifndef PCI_DEVICE_ID_AMD_8151_0
  223. #define PCI_DEVICE_ID_AMD_8151_0 0x7454
  224. #endif
  225. #ifndef PCI_VENDOR_ID_AL
  226. #define PCI_VENDOR_ID_AL 0x10b9
  227. #endif
  228. #ifndef PCI_DEVICE_ID_AL_M1541_0
  229. #define PCI_DEVICE_ID_AL_M1541_0 0x1541
  230. #endif
  231. #ifndef PCI_DEVICE_ID_AL_M1621_0
  232. #define PCI_DEVICE_ID_AL_M1621_0 0x1621
  233. #endif
  234. #ifndef PCI_DEVICE_ID_AL_M1631_0
  235. #define PCI_DEVICE_ID_AL_M1631_0 0x1631
  236. #endif
  237. #ifndef PCI_DEVICE_ID_AL_M1632_0
  238. #define PCI_DEVICE_ID_AL_M1632_0 0x1632
  239. #endif
  240. #ifndef PCI_DEVICE_ID_AL_M1641_0
  241. #define PCI_DEVICE_ID_AL_M1641_0 0x1641
  242. #endif
  243. #ifndef PCI_DEVICE_ID_AL_M1644_0
  244. #define PCI_DEVICE_ID_AL_M1644_0 0x1644
  245. #endif
  246. #ifndef PCI_DEVICE_ID_AL_M1647_0
  247. #define PCI_DEVICE_ID_AL_M1647_0 0x1647
  248. #endif
  249. #ifndef PCI_DEVICE_ID_AL_M1651_0
  250. #define PCI_DEVICE_ID_AL_M1651_0 0x1651
  251. #endif
  252. #ifndef PCI_DEVICE_ID_AL_M1671_0
  253. #define PCI_DEVICE_ID_AL_M1671_0 0x1671
  254. #endif
  255. /* intel register */
  256. #define INTEL_APBASE    0x10
  257. #define INTEL_APSIZE    0xb4
  258. #define INTEL_ATTBASE   0xb8
  259. #define INTEL_AGPCTRL   0xb0
  260. #define INTEL_NBXCFG    0x50
  261. #define INTEL_ERRSTS    0x91
  262. /* intel i830 registers */
  263. #define I830_GMCH_CTRL             0x52
  264. #define I830_GMCH_ENABLED          0x4
  265. #define I830_GMCH_MEM_MASK         0x1
  266. #define I830_GMCH_MEM_64M          0x1
  267. #define I830_GMCH_MEM_128M         0
  268. #define I830_GMCH_GMS_MASK         0x70
  269. #define I830_GMCH_GMS_DISABLED     0x00
  270. #define I830_GMCH_GMS_LOCAL        0x10
  271. #define I830_GMCH_GMS_STOLEN_512   0x20
  272. #define I830_GMCH_GMS_STOLEN_1024  0x30
  273. #define I830_GMCH_GMS_STOLEN_8192  0x40
  274. #define I830_RDRAM_CHANNEL_TYPE    0x03010
  275. #define I830_RDRAM_ND(x)           (((x) & 0x20) >> 5)
  276. #define I830_RDRAM_DDT(x)          (((x) & 0x18) >> 3)
  277. /* This one is for I830MP w. an external graphic card */
  278. #define INTEL_I830_ERRSTS          0x92
  279. /* intel 815 register */
  280. #define INTEL_815_APCONT        0x51
  281. #define INTEL_815_ATTBASE_MASK  ~0x1FFFFFFF
  282. /* intel i820 registers */
  283. #define INTEL_I820_RDCR     0x51
  284. #define INTEL_I820_ERRSTS   0xc8
  285. /* intel i840 registers */
  286. #define INTEL_I840_MCHCFG   0x50
  287. #define INTEL_I840_ERRSTS   0xc8
  288.  
  289. /* intel i845 registers */
  290. #define INTEL_I845_AGPM     0x51
  291. #define INTEL_I845_ERRSTS   0xc8
  292. /* intel i850 registers */
  293. #define INTEL_I850_MCHCFG   0x50
  294. #define INTEL_I850_ERRSTS   0xc8
  295. /* intel i860 registers */
  296. #define INTEL_I860_MCHCFG 0x50
  297. #define INTEL_I860_ERRSTS 0xc8
  298. /* intel i810 registers */
  299. #define I810_GMADDR 0x10
  300. #define I810_MMADDR 0x14
  301. #define I810_PTE_BASE          0x10000
  302. #define I810_PTE_MAIN_UNCACHED 0x00000000
  303. #define I810_PTE_LOCAL         0x00000002
  304. #define I810_PTE_VALID         0x00000001
  305. #define I810_SMRAM_MISCC       0x70
  306. #define I810_GFX_MEM_WIN_SIZE  0x00010000
  307. #define I810_GFX_MEM_WIN_32M   0x00010000
  308. #define I810_GMS               0x000000c0
  309. #define I810_GMS_DISABLE       0x00000000
  310. #define I810_PGETBL_CTL        0x2020
  311. #define I810_PGETBL_ENABLED    0x00000001
  312. #define I810_DRAM_CTL          0x3000
  313. #define I810_DRAM_ROW_0        0x00000001
  314. #define I810_DRAM_ROW_0_SDRAM  0x00000001
  315. /* VIA register */
  316. #define VIA_APBASE      0x10
  317. #define VIA_GARTCTRL    0x80
  318. #define VIA_APSIZE      0x84
  319. #define VIA_ATTBASE     0x88
  320. /* SiS registers */
  321. #define SIS_APBASE      0x10
  322. #define SIS_ATTBASE     0x90
  323. #define SIS_APSIZE      0x94
  324. #define SIS_TLBCNTRL    0x97
  325. #define SIS_TLBFLUSH    0x98
  326. /* AMD registers */
  327. #define AMD_APBASE      0x10
  328. #define AMD_MMBASE      0x14
  329. #define AMD_APSIZE      0xac
  330. #define AMD_MODECNTL    0xb0
  331. #define AMD_MODECNTL2   0xb2
  332. #define AMD_GARTENABLE  0x02 /* In mmio region (16-bit register) */
  333. #define AMD_ATTBASE     0x04 /* In mmio region (32-bit register) */
  334. #define AMD_TLBFLUSH    0x0c /* In mmio region (32-bit register) */
  335. #define AMD_CACHEENTRY  0x10 /* In mmio region (32-bit register) */
  336. #define AMD_8151_APSIZE 0xb4
  337. #define AMD_8151_GARTBLOCK 0xb8
  338. #define AMD_X86_64_GARTAPERTURECTL 0x90
  339. #define AMD_X86_64_GARTAPERTUREBASE 0x94
  340. #define AMD_X86_64_GARTTABLEBASE 0x98
  341. #define AMD_X86_64_GARTCACHECTL 0x9c
  342. #define AMD_X86_64_GARTEN 1<<0
  343. #define AMD_8151_VMAPERTURE 0x10
  344. #define AMD_8151_AGP_CTL 0xb0
  345. #define AMD_8151_APERTURESIZE 0xb4
  346. #define AMD_8151_GARTPTR 0xb8
  347. #define AMD_8151_GTLBEN 1<<7
  348. #define AMD_8151_APEREN 1<<8
  349. /* ALi registers */
  350. #define ALI_APBASE 0x10
  351. #define ALI_AGPCTRL 0xb8
  352. #define ALI_ATTBASE 0xbc
  353. #define ALI_TLBCTRL 0xc0
  354. #define ALI_TAGCTRL 0xc4
  355. #define ALI_CACHE_FLUSH_CTRL 0xD0
  356. #define ALI_CACHE_FLUSH_ADDR_MASK 0xFFFFF000
  357. #define ALI_CACHE_FLUSH_EN 0x100
  358. /* Serverworks Registers */
  359. #define SVWRKS_APSIZE 0x10
  360. #define SVWRKS_SIZE_MASK 0xfe000000
  361. #define SVWRKS_MMBASE 0x14
  362. #define SVWRKS_CACHING 0x4b
  363. #define SVWRKS_FEATURE 0x68
  364. /* func 1 registers */
  365. #define SVWRKS_AGP_ENABLE 0x60
  366. #define SVWRKS_COMMAND 0x04
  367. /* Memory mapped registers */
  368. #define SVWRKS_GART_CACHE 0x02
  369. #define SVWRKS_GATTBASE   0x04
  370. #define SVWRKS_TLBFLUSH   0x10
  371. #define SVWRKS_POSTFLUSH  0x14
  372. #define SVWRKS_DIRFLUSH   0x0c
  373. /* HP ZX1 SBA registers */
  374. #define HP_ZX1_CTRL 0x200
  375. #define HP_ZX1_IBASE 0x300
  376. #define HP_ZX1_IMASK 0x308
  377. #define HP_ZX1_PCOM 0x310
  378. #define HP_ZX1_TCNFG 0x318
  379. #define HP_ZX1_PDIR_BASE 0x320
  380. #define HP_ZX1_CACHE_FLUSH 0x428
  381. #endif /* _AGP_BACKEND_PRIV_H */