3 * Copyright (C) 2004 Silicon Graphics, Inc.
4 * Copyright (C) 2002-2004 Dave Jones
5 * Copyright (C) 1999 Jeff Hartmann
6 * Copyright (C) 1999 Precision Insight, Inc.
7 * Copyright (C) 1999 Xi Graphics, Inc.
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * JEFF HARTMANN, OR ANY OTHER CONTRIBUTORS BE LIABLE FOR ANY CLAIM,
23 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
25 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 #ifndef _AGP_BACKEND_PRIV_H
30 #define _AGP_BACKEND_PRIV_H 1
32 #include <asm/agp.h> /* for flush_agp_cache() */
34 #define PFX "agpgart: "
38 #define DBG(x,y...) printk (KERN_DEBUG PFX "%s: " x "\n", __func__ , ## y)
40 #define DBG(x,y...) do { } while (0)
43 extern struct agp_bridge_data
*agp_bridge
;
56 /* totally device specific, for integrated chipsets that
57 * might have different types of memory masks. For other
58 * devices this will probably be ignored */
61 #define AGP_PAGE_DESTROY_UNMAP 1
62 #define AGP_PAGE_DESTROY_FREE 2
64 struct aper_size_info_8
{
71 struct aper_size_info_16
{
78 struct aper_size_info_32
{
85 struct aper_size_info_lvl2
{
91 struct aper_size_info_fixed
{
97 struct agp_bridge_driver
{
99 const void *aperture_sizes
;
100 int num_aperture_sizes
;
101 enum aper_size_type size_type
;
102 bool cant_use_aperture
;
103 bool needs_scratch_page
;
104 const struct gatt_mask
*masks
;
105 int (*fetch_size
)(void);
106 int (*configure
)(void);
107 void (*agp_enable
)(struct agp_bridge_data
*, u32
);
108 void (*cleanup
)(void);
109 void (*tlb_flush
)(struct agp_memory
*);
110 unsigned long (*mask_memory
)(struct agp_bridge_data
*, dma_addr_t
, int);
111 void (*cache_flush
)(void);
112 int (*create_gatt_table
)(struct agp_bridge_data
*);
113 int (*free_gatt_table
)(struct agp_bridge_data
*);
114 int (*insert_memory
)(struct agp_memory
*, off_t
, int);
115 int (*remove_memory
)(struct agp_memory
*, off_t
, int);
116 struct agp_memory
*(*alloc_by_type
) (size_t, int);
117 void (*free_by_type
)(struct agp_memory
*);
118 struct page
*(*agp_alloc_page
)(struct agp_bridge_data
*);
119 int (*agp_alloc_pages
)(struct agp_bridge_data
*, struct agp_memory
*, size_t);
120 void (*agp_destroy_page
)(struct page
*, int flags
);
121 void (*agp_destroy_pages
)(struct agp_memory
*);
122 int (*agp_type_to_mask_type
) (struct agp_bridge_data
*, int);
123 void (*chipset_flush
)(struct agp_bridge_data
*);
125 int (*agp_map_page
)(struct page
*page
, dma_addr_t
*ret
);
126 void (*agp_unmap_page
)(struct page
*page
, dma_addr_t dma
);
127 int (*agp_map_memory
)(struct agp_memory
*mem
);
128 void (*agp_unmap_memory
)(struct agp_memory
*mem
);
131 struct agp_bridge_data
{
132 const struct agp_version
*version
;
133 const struct agp_bridge_driver
*driver
;
134 const struct vm_operations_struct
*vm_ops
;
137 void *dev_private_data
;
139 u32 __iomem
*gatt_table
;
140 u32
*gatt_table_real
;
141 unsigned long scratch_page
;
142 struct page
*scratch_page_page
;
143 dma_addr_t scratch_page_dma
;
144 unsigned long gart_bus_addr
;
145 unsigned long gatt_bus_addr
;
147 enum chipset_type type
;
148 unsigned long *key_list
;
149 atomic_t current_memory_agp
;
151 int max_memory_agp
; /* in number of pages */
152 int aperture_size_idx
;
157 struct list_head list
;
159 /* list of agp_memory mapped to the aperture */
160 struct list_head mapped_list
;
161 spinlock_t mapped_lock
;
164 #define KB(x) ((x) * 1024)
165 #define MB(x) (KB (KB (x)))
166 #define GB(x) (MB (KB (x)))
168 #define A_SIZE_8(x) ((struct aper_size_info_8 *) x)
169 #define A_SIZE_16(x) ((struct aper_size_info_16 *) x)
170 #define A_SIZE_32(x) ((struct aper_size_info_32 *) x)
171 #define A_SIZE_LVL2(x) ((struct aper_size_info_lvl2 *) x)
172 #define A_SIZE_FIX(x) ((struct aper_size_info_fixed *) x)
173 #define A_IDX8(bridge) (A_SIZE_8((bridge)->driver->aperture_sizes) + i)
174 #define A_IDX16(bridge) (A_SIZE_16((bridge)->driver->aperture_sizes) + i)
175 #define A_IDX32(bridge) (A_SIZE_32((bridge)->driver->aperture_sizes) + i)
176 #define MAXKEY (4096 * 32)
178 #define PGE_EMPTY(b, p) (!(p) || (p) == (unsigned long) (b)->scratch_page)
181 /* Intel registers */
182 #define INTEL_APSIZE 0xb4
183 #define INTEL_ATTBASE 0xb8
184 #define INTEL_AGPCTRL 0xb0
185 #define INTEL_NBXCFG 0x50
186 #define INTEL_ERRSTS 0x91
188 /* Intel i830 registers */
189 #define I830_GMCH_CTRL 0x52
190 #define I830_GMCH_ENABLED 0x4
191 #define I830_GMCH_MEM_MASK 0x1
192 #define I830_GMCH_MEM_64M 0x1
193 #define I830_GMCH_MEM_128M 0
194 #define I830_GMCH_GMS_MASK 0x70
195 #define I830_GMCH_GMS_DISABLED 0x00
196 #define I830_GMCH_GMS_LOCAL 0x10
197 #define I830_GMCH_GMS_STOLEN_512 0x20
198 #define I830_GMCH_GMS_STOLEN_1024 0x30
199 #define I830_GMCH_GMS_STOLEN_8192 0x40
200 #define I830_RDRAM_CHANNEL_TYPE 0x03010
201 #define I830_RDRAM_ND(x) (((x) & 0x20) >> 5)
202 #define I830_RDRAM_DDT(x) (((x) & 0x18) >> 3)
204 /* This one is for I830MP w. an external graphic card */
205 #define INTEL_I830_ERRSTS 0x92
207 /* Intel 855GM/852GM registers */
208 #define I855_GMCH_GMS_MASK 0xF0
209 #define I855_GMCH_GMS_STOLEN_0M 0x0
210 #define I855_GMCH_GMS_STOLEN_1M (0x1 << 4)
211 #define I855_GMCH_GMS_STOLEN_4M (0x2 << 4)
212 #define I855_GMCH_GMS_STOLEN_8M (0x3 << 4)
213 #define I855_GMCH_GMS_STOLEN_16M (0x4 << 4)
214 #define I855_GMCH_GMS_STOLEN_32M (0x5 << 4)
215 #define I85X_CAPID 0x44
216 #define I85X_VARIANT_MASK 0x7
217 #define I85X_VARIANT_SHIFT 5
223 /* Intel i845 registers */
224 #define INTEL_I845_AGPM 0x51
225 #define INTEL_I845_ERRSTS 0xc8
227 /* Intel i860 registers */
228 #define INTEL_I860_MCHCFG 0x50
229 #define INTEL_I860_ERRSTS 0xc8
231 /* Intel i810 registers */
232 #define I810_GMADDR 0x10
233 #define I810_MMADDR 0x14
234 #define I810_PTE_BASE 0x10000
235 #define I810_PTE_MAIN_UNCACHED 0x00000000
236 #define I810_PTE_LOCAL 0x00000002
237 #define I810_PTE_VALID 0x00000001
238 #define I830_PTE_SYSTEM_CACHED 0x00000006
239 #define I810_SMRAM_MISCC 0x70
240 #define I810_GFX_MEM_WIN_SIZE 0x00010000
241 #define I810_GFX_MEM_WIN_32M 0x00010000
242 #define I810_GMS 0x000000c0
243 #define I810_GMS_DISABLE 0x00000000
244 #define I810_PGETBL_CTL 0x2020
245 #define I810_PGETBL_ENABLED 0x00000001
246 #define I965_PGETBL_SIZE_MASK 0x0000000e
247 #define I965_PGETBL_SIZE_512KB (0 << 1)
248 #define I965_PGETBL_SIZE_256KB (1 << 1)
249 #define I965_PGETBL_SIZE_128KB (2 << 1)
250 #define I965_PGETBL_SIZE_1MB (3 << 1)
251 #define I965_PGETBL_SIZE_2MB (4 << 1)
252 #define I965_PGETBL_SIZE_1_5MB (5 << 1)
253 #define G33_PGETBL_SIZE_MASK (3 << 8)
254 #define G33_PGETBL_SIZE_1M (1 << 8)
255 #define G33_PGETBL_SIZE_2M (2 << 8)
257 #define I810_DRAM_CTL 0x3000
258 #define I810_DRAM_ROW_0 0x00000001
259 #define I810_DRAM_ROW_0_SDRAM 0x00000001
261 struct agp_device_ids
{
262 unsigned short device_id
; /* first, to make table easier to read */
263 enum chipset_type chipset
;
264 const char *chipset_name
;
265 int (*chipset_setup
) (struct pci_dev
*pdev
); /* used to override generic */
268 /* Driver registration */
269 struct agp_bridge_data
*agp_alloc_bridge(void);
270 void agp_put_bridge(struct agp_bridge_data
*bridge
);
271 int agp_add_bridge(struct agp_bridge_data
*bridge
);
272 void agp_remove_bridge(struct agp_bridge_data
*bridge
);
274 /* Frontend routines. */
275 int agp_frontend_initialize(void);
276 void agp_frontend_cleanup(void);
278 /* Generic routines. */
279 void agp_generic_enable(struct agp_bridge_data
*bridge
, u32 mode
);
280 int agp_generic_create_gatt_table(struct agp_bridge_data
*bridge
);
281 int agp_generic_free_gatt_table(struct agp_bridge_data
*bridge
);
282 struct agp_memory
*agp_create_memory(int scratch_pages
);
283 int agp_generic_insert_memory(struct agp_memory
*mem
, off_t pg_start
, int type
);
284 int agp_generic_remove_memory(struct agp_memory
*mem
, off_t pg_start
, int type
);
285 struct agp_memory
*agp_generic_alloc_by_type(size_t page_count
, int type
);
286 void agp_generic_free_by_type(struct agp_memory
*curr
);
287 struct page
*agp_generic_alloc_page(struct agp_bridge_data
*bridge
);
288 int agp_generic_alloc_pages(struct agp_bridge_data
*agp_bridge
,
289 struct agp_memory
*memory
, size_t page_count
);
290 void agp_generic_destroy_page(struct page
*page
, int flags
);
291 void agp_generic_destroy_pages(struct agp_memory
*memory
);
292 void agp_free_key(int key
);
293 int agp_num_entries(void);
294 u32
agp_collect_device_status(struct agp_bridge_data
*bridge
, u32 mode
, u32 command
);
295 void agp_device_command(u32 command
, bool agp_v3
);
296 int agp_3_5_enable(struct agp_bridge_data
*bridge
);
297 void global_cache_flush(void);
298 void get_agp_version(struct agp_bridge_data
*bridge
);
299 unsigned long agp_generic_mask_memory(struct agp_bridge_data
*bridge
,
300 dma_addr_t phys
, int type
);
301 int agp_generic_type_to_mask_type(struct agp_bridge_data
*bridge
,
303 struct agp_bridge_data
*agp_generic_find_bridge(struct pci_dev
*pdev
);
305 /* generic functions for user-populated AGP memory types */
306 struct agp_memory
*agp_generic_alloc_user(size_t page_count
, int type
);
307 void agp_alloc_page_array(size_t size
, struct agp_memory
*mem
);
308 void agp_free_page_array(struct agp_memory
*mem
);
311 /* generic routines for agp>=3 */
312 int agp3_generic_fetch_size(void);
313 void agp3_generic_tlbflush(struct agp_memory
*mem
);
314 int agp3_generic_configure(void);
315 void agp3_generic_cleanup(void);
317 /* aperture sizes have been standardised since v3 */
318 #define AGP_GENERIC_SIZES_ENTRIES 11
319 extern const struct aper_size_info_16 agp3_generic_sizes
[];
322 extern int agp_try_unsupported_boot
;
324 long compat_agp_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
);
326 /* Chipset independant registers (from AGP Spec) */
327 #define AGP_APBASE 0x10
331 #define AGPNISTAT 0xc
333 #define AGPAPSIZE 0x14
335 #define AGPGARTLO 0x18
336 #define AGPGARTHI 0x1c
337 #define AGPNICMD 0x20
339 #define AGP_MAJOR_VERSION_SHIFT (20)
340 #define AGP_MINOR_VERSION_SHIFT (16)
342 #define AGPSTAT_RQ_DEPTH (0xff000000)
343 #define AGPSTAT_RQ_DEPTH_SHIFT 24
345 #define AGPSTAT_CAL_MASK (1<<12|1<<11|1<<10)
346 #define AGPSTAT_ARQSZ (1<<15|1<<14|1<<13)
347 #define AGPSTAT_ARQSZ_SHIFT 13
349 #define AGPSTAT_SBA (1<<9)
350 #define AGPSTAT_AGP_ENABLE (1<<8)
351 #define AGPSTAT_FW (1<<4)
352 #define AGPSTAT_MODE_3_0 (1<<3)
354 #define AGPSTAT2_1X (1<<0)
355 #define AGPSTAT2_2X (1<<1)
356 #define AGPSTAT2_4X (1<<2)
358 #define AGPSTAT3_RSVD (1<<2)
359 #define AGPSTAT3_8X (1<<1)
360 #define AGPSTAT3_4X (1)
362 #define AGPCTRL_APERENB (1<<8)
363 #define AGPCTRL_GTLBEN (1<<7)
365 #define AGP2_RESERVED_MASK 0x00fffcc8
366 #define AGP3_RESERVED_MASK 0x00ff00c4
368 #define AGP_ERRATA_FASTWRITES 1<<0
369 #define AGP_ERRATA_SBA 1<<1
370 #define AGP_ERRATA_1X 1<<2
372 #endif /* _AGP_BACKEND_PRIV_H */