3 * Copyright (C) 2004 Silicon Graphics, Inc.
4 * Copyright (C) 2002-2005 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.
28 * - Allocate more than order 0 pages to avoid too much linear map splitting.
30 #include <linux/module.h>
31 #include <linux/pci.h>
32 #include <linux/init.h>
33 #include <linux/pagemap.h>
34 #include <linux/miscdevice.h>
36 #include <linux/agp_backend.h>
37 #include <linux/vmalloc.h>
38 #include <linux/dma-mapping.h>
41 #include <asm/cacheflush.h>
42 #include <asm/pgtable.h>
45 __u32 *agp_gatt_table;
46 int agp_memory_reserved;
49 * Needed by the Nforce GART driver for the time being. Would be
50 * nice to do this some other way instead of needing this export.
52 EXPORT_SYMBOL_GPL(agp_memory_reserved);
55 * Generic routines for handling agp_memory structures -
56 * They use the basic page allocation routines to do the brunt of the work.
59 void agp_free_key(int key)
65 clear_bit(key, agp_bridge->key_list);
67 EXPORT_SYMBOL(agp_free_key);
70 static int agp_get_key(void)
74 bit = find_first_zero_bit(agp_bridge->key_list, MAXKEY);
76 set_bit(bit, agp_bridge->key_list);
83 * Use kmalloc if possible for the page list. Otherwise fall back to
84 * vmalloc. This speeds things up and also saves memory for small AGP
88 void agp_alloc_page_array(size_t size, struct agp_memory *mem)
91 mem->vmalloc_flag = 0;
93 if (size <= 2*PAGE_SIZE)
94 mem->memory = kmalloc(size, GFP_KERNEL | __GFP_NORETRY);
95 if (mem->memory == NULL) {
96 mem->memory = vmalloc(size);
97 mem->vmalloc_flag = 1;
100 EXPORT_SYMBOL(agp_alloc_page_array);
102 void agp_free_page_array(struct agp_memory *mem)
104 if (mem->vmalloc_flag) {
110 EXPORT_SYMBOL(agp_free_page_array);
113 static struct agp_memory *agp_create_user_memory(unsigned long num_agp_pages)
115 struct agp_memory *new;
116 unsigned long alloc_size = num_agp_pages*sizeof(struct page *);
118 new = kzalloc(sizeof(struct agp_memory), GFP_KERNEL);
122 new->key = agp_get_key();
129 agp_alloc_page_array(alloc_size, new);
131 if (new->memory == NULL) {
132 agp_free_key(new->key);
136 new->num_scratch_pages = 0;
140 struct agp_memory *agp_create_memory(int scratch_pages)
142 struct agp_memory *new;
144 new = kzalloc(sizeof(struct agp_memory), GFP_KERNEL);
148 new->key = agp_get_key();
155 agp_alloc_page_array(PAGE_SIZE * scratch_pages, new);
157 if (new->memory == NULL) {
158 agp_free_key(new->key);
162 new->num_scratch_pages = scratch_pages;
163 new->type = AGP_NORMAL_MEMORY;
166 EXPORT_SYMBOL(agp_create_memory);
169 * agp_free_memory - free memory associated with an agp_memory pointer.
171 * @curr: agp_memory pointer to be freed.
173 * It is the only function that can be called when the backend is not owned
174 * by the caller. (So it can free memory on client death.)
176 void agp_free_memory(struct agp_memory *curr)
183 if (curr->is_bound == TRUE)
184 agp_unbind_memory(curr);
186 if (curr->type >= AGP_USER_TYPES) {
187 agp_generic_free_by_type(curr);
191 if (curr->type != 0) {
192 curr->bridge->driver->free_by_type(curr);
195 if (curr->page_count != 0) {
196 for (i = 0; i < curr->page_count; i++) {
197 curr->bridge->driver->agp_destroy_page(gart_to_virt(curr->memory[i]));
199 flush_agp_mappings();
201 agp_free_key(curr->key);
202 agp_free_page_array(curr);
205 EXPORT_SYMBOL(agp_free_memory);
207 #define ENTRIES_PER_PAGE (PAGE_SIZE / sizeof(unsigned long))
210 * agp_allocate_memory - allocate a group of pages of a certain type.
212 * @page_count: size_t argument of the number of pages
213 * @type: u32 argument of the type of memory to be allocated.
215 * Every agp bridge device will allow you to allocate AGP_NORMAL_MEMORY which
216 * maps to physical ram. Any other type is device dependent.
218 * It returns NULL whenever memory is unavailable.
220 struct agp_memory *agp_allocate_memory(struct agp_bridge_data *bridge,
221 size_t page_count, u32 type)
224 struct agp_memory *new;
230 if ((atomic_read(&bridge->current_memory_agp) + page_count) > bridge->max_memory_agp)
233 if (type >= AGP_USER_TYPES) {
234 new = agp_generic_alloc_user(page_count, type);
236 new->bridge = bridge;
241 new = bridge->driver->alloc_by_type(page_count, type);
243 new->bridge = bridge;
247 scratch_pages = (page_count + ENTRIES_PER_PAGE - 1) / ENTRIES_PER_PAGE;
249 new = agp_create_memory(scratch_pages);
254 for (i = 0; i < page_count; i++) {
255 void *addr = bridge->driver->agp_alloc_page(bridge);
258 agp_free_memory(new);
261 new->memory[i] = virt_to_gart(addr);
264 new->bridge = bridge;
266 flush_agp_mappings();
270 EXPORT_SYMBOL(agp_allocate_memory);
273 /* End - Generic routines for handling agp_memory structures */
276 static int agp_return_size(void)
281 temp = agp_bridge->current_size;
283 switch (agp_bridge->driver->size_type) {
285 current_size = A_SIZE_8(temp)->size;
288 current_size = A_SIZE_16(temp)->size;
291 current_size = A_SIZE_32(temp)->size;
294 current_size = A_SIZE_LVL2(temp)->size;
296 case FIXED_APER_SIZE:
297 current_size = A_SIZE_FIX(temp)->size;
304 current_size -= (agp_memory_reserved / (1024*1024));
311 int agp_num_entries(void)
316 temp = agp_bridge->current_size;
318 switch (agp_bridge->driver->size_type) {
320 num_entries = A_SIZE_8(temp)->num_entries;
323 num_entries = A_SIZE_16(temp)->num_entries;
326 num_entries = A_SIZE_32(temp)->num_entries;
329 num_entries = A_SIZE_LVL2(temp)->num_entries;
331 case FIXED_APER_SIZE:
332 num_entries = A_SIZE_FIX(temp)->num_entries;
339 num_entries -= agp_memory_reserved>>PAGE_SHIFT;
344 EXPORT_SYMBOL_GPL(agp_num_entries);
348 * agp_copy_info - copy bridge state information
350 * @info: agp_kern_info pointer. The caller should insure that this pointer is valid.
352 * This function copies information about the agp bridge device and the state of
353 * the agp backend into an agp_kern_info pointer.
355 int agp_copy_info(struct agp_bridge_data *bridge, struct agp_kern_info *info)
357 memset(info, 0, sizeof(struct agp_kern_info));
359 info->chipset = NOT_SUPPORTED;
363 info->version.major = bridge->version->major;
364 info->version.minor = bridge->version->minor;
365 info->chipset = SUPPORTED;
366 info->device = bridge->dev;
367 if (bridge->mode & AGPSTAT_MODE_3_0)
368 info->mode = bridge->mode & ~AGP3_RESERVED_MASK;
370 info->mode = bridge->mode & ~AGP2_RESERVED_MASK;
371 info->aper_base = bridge->gart_bus_addr;
372 info->aper_size = agp_return_size();
373 info->max_memory = bridge->max_memory_agp;
374 info->current_memory = atomic_read(&bridge->current_memory_agp);
375 info->cant_use_aperture = bridge->driver->cant_use_aperture;
376 info->vm_ops = bridge->vm_ops;
377 info->page_mask = ~0UL;
380 EXPORT_SYMBOL(agp_copy_info);
382 /* End - Routine to copy over information structure */
385 * Routines for handling swapping of agp_memory into the GATT -
386 * These routines take agp_memory and insert them into the GATT.
387 * They call device specific routines to actually write to the GATT.
391 * agp_bind_memory - Bind an agp_memory structure into the GATT.
393 * @curr: agp_memory pointer
394 * @pg_start: an offset into the graphics aperture translation table
396 * It returns -EINVAL if the pointer == NULL.
397 * It returns -EBUSY if the area of the table requested is already in use.
399 int agp_bind_memory(struct agp_memory *curr, off_t pg_start)
406 if (curr->is_bound == TRUE) {
407 printk(KERN_INFO PFX "memory %p is already bound!\n", curr);
410 if (curr->is_flushed == FALSE) {
411 curr->bridge->driver->cache_flush();
412 curr->is_flushed = TRUE;
414 ret_val = curr->bridge->driver->insert_memory(curr, pg_start, curr->type);
419 curr->is_bound = TRUE;
420 curr->pg_start = pg_start;
423 EXPORT_SYMBOL(agp_bind_memory);
427 * agp_unbind_memory - Removes an agp_memory structure from the GATT
429 * @curr: agp_memory pointer to be removed from the GATT.
431 * It returns -EINVAL if this piece of agp_memory is not currently bound to
432 * the graphics aperture translation table or if the agp_memory pointer == NULL
434 int agp_unbind_memory(struct agp_memory *curr)
441 if (curr->is_bound != TRUE) {
442 printk(KERN_INFO PFX "memory %p was not bound!\n", curr);
446 ret_val = curr->bridge->driver->remove_memory(curr, curr->pg_start, curr->type);
451 curr->is_bound = FALSE;
455 EXPORT_SYMBOL(agp_unbind_memory);
457 /* End - Routines for handling swapping of agp_memory into the GATT */
460 /* Generic Agp routines - Start */
461 static void agp_v2_parse_one(u32 *requested_mode, u32 *bridge_agpstat, u32 *vga_agpstat)
465 if (*requested_mode & AGP2_RESERVED_MASK) {
466 printk(KERN_INFO PFX "reserved bits set (%x) in mode 0x%x. Fixed.\n",
467 *requested_mode & AGP2_RESERVED_MASK, *requested_mode);
468 *requested_mode &= ~AGP2_RESERVED_MASK;
472 * Some dumb bridges are programmed to disobey the AGP2 spec.
473 * This is likely a BIOS misprogramming rather than poweron default, or
474 * it would be a lot more common.
475 * https://bugs.freedesktop.org/show_bug.cgi?id=8816
476 * AGPv2 spec 6.1.9 states:
477 * The RATE field indicates the data transfer rates supported by this
478 * device. A.G.P. devices must report all that apply.
479 * Fix them up as best we can.
481 switch (*bridge_agpstat & 7) {
483 *bridge_agpstat |= (AGPSTAT2_2X | AGPSTAT2_1X);
484 printk(KERN_INFO PFX "BIOS bug. AGP bridge claims to only support x4 rate"
485 "Fixing up support for x2 & x1\n");
488 *bridge_agpstat |= AGPSTAT2_1X;
489 printk(KERN_INFO PFX "BIOS bug. AGP bridge claims to only support x2 rate"
490 "Fixing up support for x1\n");
496 /* Check the speed bits make sense. Only one should be set. */
497 tmp = *requested_mode & 7;
500 printk(KERN_INFO PFX "%s tried to set rate=x0. Setting to x1 mode.\n", current->comm);
501 *requested_mode |= AGPSTAT2_1X;
507 *requested_mode &= ~(AGPSTAT2_1X); /* rate=2 */
514 *requested_mode &= ~(AGPSTAT2_1X|AGPSTAT2_2X); /* rate=4*/
518 /* disable SBA if it's not supported */
519 if (!((*bridge_agpstat & AGPSTAT_SBA) && (*vga_agpstat & AGPSTAT_SBA) && (*requested_mode & AGPSTAT_SBA)))
520 *bridge_agpstat &= ~AGPSTAT_SBA;
523 if (!((*bridge_agpstat & AGPSTAT2_4X) && (*vga_agpstat & AGPSTAT2_4X) && (*requested_mode & AGPSTAT2_4X)))
524 *bridge_agpstat &= ~AGPSTAT2_4X;
526 if (!((*bridge_agpstat & AGPSTAT2_2X) && (*vga_agpstat & AGPSTAT2_2X) && (*requested_mode & AGPSTAT2_2X)))
527 *bridge_agpstat &= ~AGPSTAT2_2X;
529 if (!((*bridge_agpstat & AGPSTAT2_1X) && (*vga_agpstat & AGPSTAT2_1X) && (*requested_mode & AGPSTAT2_1X)))
530 *bridge_agpstat &= ~AGPSTAT2_1X;
532 /* Now we know what mode it should be, clear out the unwanted bits. */
533 if (*bridge_agpstat & AGPSTAT2_4X)
534 *bridge_agpstat &= ~(AGPSTAT2_1X | AGPSTAT2_2X); /* 4X */
536 if (*bridge_agpstat & AGPSTAT2_2X)
537 *bridge_agpstat &= ~(AGPSTAT2_1X | AGPSTAT2_4X); /* 2X */
539 if (*bridge_agpstat & AGPSTAT2_1X)
540 *bridge_agpstat &= ~(AGPSTAT2_2X | AGPSTAT2_4X); /* 1X */
542 /* Apply any errata. */
543 if (agp_bridge->flags & AGP_ERRATA_FASTWRITES)
544 *bridge_agpstat &= ~AGPSTAT_FW;
546 if (agp_bridge->flags & AGP_ERRATA_SBA)
547 *bridge_agpstat &= ~AGPSTAT_SBA;
549 if (agp_bridge->flags & AGP_ERRATA_1X) {
550 *bridge_agpstat &= ~(AGPSTAT2_2X | AGPSTAT2_4X);
551 *bridge_agpstat |= AGPSTAT2_1X;
554 /* If we've dropped down to 1X, disable fast writes. */
555 if (*bridge_agpstat & AGPSTAT2_1X)
556 *bridge_agpstat &= ~AGPSTAT_FW;
560 * requested_mode = Mode requested by (typically) X.
561 * bridge_agpstat = PCI_AGP_STATUS from agp bridge.
562 * vga_agpstat = PCI_AGP_STATUS from graphic card.
564 static void agp_v3_parse_one(u32 *requested_mode, u32 *bridge_agpstat, u32 *vga_agpstat)
566 u32 origbridge=*bridge_agpstat, origvga=*vga_agpstat;
569 if (*requested_mode & AGP3_RESERVED_MASK) {
570 printk(KERN_INFO PFX "reserved bits set (%x) in mode 0x%x. Fixed.\n",
571 *requested_mode & AGP3_RESERVED_MASK, *requested_mode);
572 *requested_mode &= ~AGP3_RESERVED_MASK;
575 /* Check the speed bits make sense. */
576 tmp = *requested_mode & 7;
578 printk(KERN_INFO PFX "%s tried to set rate=x0. Setting to AGP3 x4 mode.\n", current->comm);
579 *requested_mode |= AGPSTAT3_4X;
582 printk(KERN_INFO PFX "%s tried to set rate=x%d. Setting to AGP3 x8 mode.\n", current->comm, tmp * 4);
583 *requested_mode = (*requested_mode & ~7) | AGPSTAT3_8X;
586 /* ARQSZ - Set the value to the maximum one.
587 * Don't allow the mode register to override values. */
588 *bridge_agpstat = ((*bridge_agpstat & ~AGPSTAT_ARQSZ) |
589 max_t(u32,(*bridge_agpstat & AGPSTAT_ARQSZ),(*vga_agpstat & AGPSTAT_ARQSZ)));
591 /* Calibration cycle.
592 * Don't allow the mode register to override values. */
593 *bridge_agpstat = ((*bridge_agpstat & ~AGPSTAT_CAL_MASK) |
594 min_t(u32,(*bridge_agpstat & AGPSTAT_CAL_MASK),(*vga_agpstat & AGPSTAT_CAL_MASK)));
596 /* SBA *must* be supported for AGP v3 */
597 *bridge_agpstat |= AGPSTAT_SBA;
601 * Check for invalid speeds. This can happen when applications
602 * written before the AGP 3.0 standard pass AGP2.x modes to AGP3 hardware
604 if (*requested_mode & AGPSTAT_MODE_3_0) {
606 * Caller hasn't a clue what it is doing. Bridge is in 3.0 mode,
607 * have been passed a 3.0 mode, but with 2.x speed bits set.
608 * AGP2.x 4x -> AGP3.0 4x.
610 if (*requested_mode & AGPSTAT2_4X) {
611 printk(KERN_INFO PFX "%s passes broken AGP3 flags (%x). Fixed.\n",
612 current->comm, *requested_mode);
613 *requested_mode &= ~AGPSTAT2_4X;
614 *requested_mode |= AGPSTAT3_4X;
618 * The caller doesn't know what they are doing. We are in 3.0 mode,
619 * but have been passed an AGP 2.x mode.
620 * Convert AGP 1x,2x,4x -> AGP 3.0 4x.
622 printk(KERN_INFO PFX "%s passes broken AGP2 flags (%x) in AGP3 mode. Fixed.\n",
623 current->comm, *requested_mode);
624 *requested_mode &= ~(AGPSTAT2_4X | AGPSTAT2_2X | AGPSTAT2_1X);
625 *requested_mode |= AGPSTAT3_4X;
628 if (*requested_mode & AGPSTAT3_8X) {
629 if (!(*bridge_agpstat & AGPSTAT3_8X)) {
630 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
631 *bridge_agpstat |= AGPSTAT3_4X;
632 printk(KERN_INFO PFX "%s requested AGPx8 but bridge not capable.\n", current->comm);
635 if (!(*vga_agpstat & AGPSTAT3_8X)) {
636 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
637 *bridge_agpstat |= AGPSTAT3_4X;
638 printk(KERN_INFO PFX "%s requested AGPx8 but graphic card not capable.\n", current->comm);
641 /* All set, bridge & device can do AGP x8*/
642 *bridge_agpstat &= ~(AGPSTAT3_4X | AGPSTAT3_RSVD);
645 } else if (*requested_mode & AGPSTAT3_4X) {
646 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
647 *bridge_agpstat |= AGPSTAT3_4X;
653 * If we didn't specify an AGP mode, we see if both
654 * the graphics card, and the bridge can do x8, and use if so.
655 * If not, we fall back to x4 mode.
657 if ((*bridge_agpstat & AGPSTAT3_8X) && (*vga_agpstat & AGPSTAT3_8X)) {
658 printk(KERN_INFO PFX "No AGP mode specified. Setting to highest mode "
659 "supported by bridge & card (x8).\n");
660 *bridge_agpstat &= ~(AGPSTAT3_4X | AGPSTAT3_RSVD);
661 *vga_agpstat &= ~(AGPSTAT3_4X | AGPSTAT3_RSVD);
663 printk(KERN_INFO PFX "Fell back to AGPx4 mode because");
664 if (!(*bridge_agpstat & AGPSTAT3_8X)) {
665 printk(KERN_INFO PFX "bridge couldn't do x8. bridge_agpstat:%x (orig=%x)\n",
666 *bridge_agpstat, origbridge);
667 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
668 *bridge_agpstat |= AGPSTAT3_4X;
670 if (!(*vga_agpstat & AGPSTAT3_8X)) {
671 printk(KERN_INFO PFX "graphics card couldn't do x8. vga_agpstat:%x (orig=%x)\n",
672 *vga_agpstat, origvga);
673 *vga_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
674 *vga_agpstat |= AGPSTAT3_4X;
680 /* Apply any errata. */
681 if (agp_bridge->flags & AGP_ERRATA_FASTWRITES)
682 *bridge_agpstat &= ~AGPSTAT_FW;
684 if (agp_bridge->flags & AGP_ERRATA_SBA)
685 *bridge_agpstat &= ~AGPSTAT_SBA;
687 if (agp_bridge->flags & AGP_ERRATA_1X) {
688 *bridge_agpstat &= ~(AGPSTAT2_2X | AGPSTAT2_4X);
689 *bridge_agpstat |= AGPSTAT2_1X;
695 * agp_collect_device_status - determine correct agp_cmd from various agp_stat's
696 * @bridge: an agp_bridge_data struct allocated for the AGP host bridge.
697 * @requested_mode: requested agp_stat from userspace (Typically from X)
698 * @bridge_agpstat: current agp_stat from AGP bridge.
700 * This function will hunt for an AGP graphics card, and try to match
701 * the requested mode to the capabilities of both the bridge and the card.
703 u32 agp_collect_device_status(struct agp_bridge_data *bridge, u32 requested_mode, u32 bridge_agpstat)
705 struct pci_dev *device = NULL;
710 device = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, device);
712 printk(KERN_INFO PFX "Couldn't find an AGP VGA controller.\n");
715 cap_ptr = pci_find_capability(device, PCI_CAP_ID_AGP);
721 * Ok, here we have a AGP device. Disable impossible
722 * settings, and adjust the readqueue to the minimum.
724 pci_read_config_dword(device, cap_ptr+PCI_AGP_STATUS, &vga_agpstat);
726 /* adjust RQ depth */
727 bridge_agpstat = ((bridge_agpstat & ~AGPSTAT_RQ_DEPTH) |
728 min_t(u32, (requested_mode & AGPSTAT_RQ_DEPTH),
729 min_t(u32, (bridge_agpstat & AGPSTAT_RQ_DEPTH), (vga_agpstat & AGPSTAT_RQ_DEPTH))));
731 /* disable FW if it's not supported */
732 if (!((bridge_agpstat & AGPSTAT_FW) &&
733 (vga_agpstat & AGPSTAT_FW) &&
734 (requested_mode & AGPSTAT_FW)))
735 bridge_agpstat &= ~AGPSTAT_FW;
737 /* Check to see if we are operating in 3.0 mode */
738 if (agp_bridge->mode & AGPSTAT_MODE_3_0)
739 agp_v3_parse_one(&requested_mode, &bridge_agpstat, &vga_agpstat);
741 agp_v2_parse_one(&requested_mode, &bridge_agpstat, &vga_agpstat);
744 return bridge_agpstat;
746 EXPORT_SYMBOL(agp_collect_device_status);
749 void agp_device_command(u32 bridge_agpstat, int agp_v3)
751 struct pci_dev *device = NULL;
754 mode = bridge_agpstat & 0x7;
758 for_each_pci_dev(device) {
759 u8 agp = pci_find_capability(device, PCI_CAP_ID_AGP);
763 printk(KERN_INFO PFX "Putting AGP V%d device at %s into %dx mode\n",
764 agp_v3 ? 3 : 2, pci_name(device), mode);
765 pci_write_config_dword(device, agp + PCI_AGP_COMMAND, bridge_agpstat);
768 EXPORT_SYMBOL(agp_device_command);
771 void get_agp_version(struct agp_bridge_data *bridge)
775 /* Exit early if already set by errata workarounds. */
776 if (bridge->major_version != 0)
779 pci_read_config_dword(bridge->dev, bridge->capndx, &ncapid);
780 bridge->major_version = (ncapid >> AGP_MAJOR_VERSION_SHIFT) & 0xf;
781 bridge->minor_version = (ncapid >> AGP_MINOR_VERSION_SHIFT) & 0xf;
783 EXPORT_SYMBOL(get_agp_version);
786 void agp_generic_enable(struct agp_bridge_data *bridge, u32 requested_mode)
788 u32 bridge_agpstat, temp;
790 get_agp_version(agp_bridge);
792 printk(KERN_INFO PFX "Found an AGP %d.%d compliant device at %s.\n",
793 agp_bridge->major_version,
794 agp_bridge->minor_version,
795 pci_name(agp_bridge->dev));
797 pci_read_config_dword(agp_bridge->dev,
798 agp_bridge->capndx + PCI_AGP_STATUS, &bridge_agpstat);
800 bridge_agpstat = agp_collect_device_status(agp_bridge, requested_mode, bridge_agpstat);
801 if (bridge_agpstat == 0)
802 /* Something bad happened. FIXME: Return error code? */
805 bridge_agpstat |= AGPSTAT_AGP_ENABLE;
807 /* Do AGP version specific frobbing. */
808 if (bridge->major_version >= 3) {
809 if (bridge->mode & AGPSTAT_MODE_3_0) {
810 /* If we have 3.5, we can do the isoch stuff. */
811 if (bridge->minor_version >= 5)
812 agp_3_5_enable(bridge);
813 agp_device_command(bridge_agpstat, TRUE);
816 /* Disable calibration cycle in RX91<1> when not in AGP3.0 mode of operation.*/
817 bridge_agpstat &= ~(7<<10) ;
818 pci_read_config_dword(bridge->dev,
819 bridge->capndx+AGPCTRL, &temp);
821 pci_write_config_dword(bridge->dev,
822 bridge->capndx+AGPCTRL, temp);
824 printk(KERN_INFO PFX "Device is in legacy mode,"
825 " falling back to 2.x\n");
830 agp_device_command(bridge_agpstat, FALSE);
832 EXPORT_SYMBOL(agp_generic_enable);
835 int agp_generic_create_gatt_table(struct agp_bridge_data *bridge)
846 /* The generic routines can't handle 2 level gatt's */
847 if (bridge->driver->size_type == LVL2_APER_SIZE)
851 i = bridge->aperture_size_idx;
852 temp = bridge->current_size;
853 size = page_order = num_entries = 0;
855 if (bridge->driver->size_type != FIXED_APER_SIZE) {
857 switch (bridge->driver->size_type) {
859 size = A_SIZE_8(temp)->size;
861 A_SIZE_8(temp)->page_order;
863 A_SIZE_8(temp)->num_entries;
866 size = A_SIZE_16(temp)->size;
867 page_order = A_SIZE_16(temp)->page_order;
868 num_entries = A_SIZE_16(temp)->num_entries;
871 size = A_SIZE_32(temp)->size;
872 page_order = A_SIZE_32(temp)->page_order;
873 num_entries = A_SIZE_32(temp)->num_entries;
875 /* This case will never really happen. */
876 case FIXED_APER_SIZE:
879 size = page_order = num_entries = 0;
883 table = alloc_gatt_pages(page_order);
887 switch (bridge->driver->size_type) {
889 bridge->current_size = A_IDX8(bridge);
892 bridge->current_size = A_IDX16(bridge);
895 bridge->current_size = A_IDX32(bridge);
897 /* These cases will never really happen. */
898 case FIXED_APER_SIZE:
903 temp = bridge->current_size;
905 bridge->aperture_size_idx = i;
907 } while (!table && (i < bridge->driver->num_aperture_sizes));
909 size = ((struct aper_size_info_fixed *) temp)->size;
910 page_order = ((struct aper_size_info_fixed *) temp)->page_order;
911 num_entries = ((struct aper_size_info_fixed *) temp)->num_entries;
912 table = alloc_gatt_pages(page_order);
918 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1);
920 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++)
921 SetPageReserved(page);
923 bridge->gatt_table_real = (u32 *) table;
924 agp_gatt_table = (void *)table;
926 bridge->driver->cache_flush();
927 bridge->gatt_table = ioremap_nocache(virt_to_gart(table),
928 (PAGE_SIZE * (1 << page_order)));
929 bridge->driver->cache_flush();
931 if (bridge->gatt_table == NULL) {
932 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++)
933 ClearPageReserved(page);
935 free_gatt_pages(table, page_order);
939 bridge->gatt_bus_addr = virt_to_gart(bridge->gatt_table_real);
941 /* AK: bogus, should encode addresses > 4GB */
942 for (i = 0; i < num_entries; i++) {
943 writel(bridge->scratch_page, bridge->gatt_table+i);
944 readl(bridge->gatt_table+i); /* PCI Posting. */
949 EXPORT_SYMBOL(agp_generic_create_gatt_table);
951 int agp_generic_free_gatt_table(struct agp_bridge_data *bridge)
954 char *table, *table_end;
958 temp = bridge->current_size;
960 switch (bridge->driver->size_type) {
962 page_order = A_SIZE_8(temp)->page_order;
965 page_order = A_SIZE_16(temp)->page_order;
968 page_order = A_SIZE_32(temp)->page_order;
970 case FIXED_APER_SIZE:
971 page_order = A_SIZE_FIX(temp)->page_order;
974 /* The generic routines can't deal with 2 level gatt's */
982 /* Do not worry about freeing memory, because if this is
983 * called, then all agp memory is deallocated and removed
986 iounmap(bridge->gatt_table);
987 table = (char *) bridge->gatt_table_real;
988 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1);
990 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++)
991 ClearPageReserved(page);
993 free_gatt_pages(bridge->gatt_table_real, page_order);
995 agp_gatt_table = NULL;
996 bridge->gatt_table = NULL;
997 bridge->gatt_table_real = NULL;
998 bridge->gatt_bus_addr = 0;
1002 EXPORT_SYMBOL(agp_generic_free_gatt_table);
1005 int agp_generic_insert_memory(struct agp_memory * mem, off_t pg_start, int type)
1011 struct agp_bridge_data *bridge;
1014 bridge = mem->bridge;
1018 if (mem->page_count == 0)
1021 temp = bridge->current_size;
1023 switch (bridge->driver->size_type) {
1025 num_entries = A_SIZE_8(temp)->num_entries;
1028 num_entries = A_SIZE_16(temp)->num_entries;
1031 num_entries = A_SIZE_32(temp)->num_entries;
1033 case FIXED_APER_SIZE:
1034 num_entries = A_SIZE_FIX(temp)->num_entries;
1036 case LVL2_APER_SIZE:
1037 /* The generic routines can't deal with 2 level gatt's */
1045 num_entries -= agp_memory_reserved/PAGE_SIZE;
1046 if (num_entries < 0) num_entries = 0;
1048 if (type != mem->type)
1051 mask_type = bridge->driver->agp_type_to_mask_type(bridge, type);
1052 if (mask_type != 0) {
1053 /* The generic routines know nothing of memory types */
1057 /* AK: could wrap */
1058 if ((pg_start + mem->page_count) > num_entries)
1063 while (j < (pg_start + mem->page_count)) {
1064 if (!PGE_EMPTY(bridge, readl(bridge->gatt_table+j)))
1069 if (mem->is_flushed == FALSE) {
1070 bridge->driver->cache_flush();
1071 mem->is_flushed = TRUE;
1074 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
1075 writel(bridge->driver->mask_memory(bridge, mem->memory[i], mask_type),
1076 bridge->gatt_table+j);
1078 readl(bridge->gatt_table+j-1); /* PCI Posting. */
1080 bridge->driver->tlb_flush(mem);
1083 EXPORT_SYMBOL(agp_generic_insert_memory);
1086 int agp_generic_remove_memory(struct agp_memory *mem, off_t pg_start, int type)
1089 struct agp_bridge_data *bridge;
1092 bridge = mem->bridge;
1096 if (mem->page_count == 0)
1099 if (type != mem->type)
1102 mask_type = bridge->driver->agp_type_to_mask_type(bridge, type);
1103 if (mask_type != 0) {
1104 /* The generic routines know nothing of memory types */
1108 /* AK: bogus, should encode addresses > 4GB */
1109 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
1110 writel(bridge->scratch_page, bridge->gatt_table+i);
1112 readl(bridge->gatt_table+i-1); /* PCI Posting. */
1114 bridge->driver->tlb_flush(mem);
1117 EXPORT_SYMBOL(agp_generic_remove_memory);
1119 struct agp_memory *agp_generic_alloc_by_type(size_t page_count, int type)
1123 EXPORT_SYMBOL(agp_generic_alloc_by_type);
1125 void agp_generic_free_by_type(struct agp_memory *curr)
1127 agp_free_page_array(curr);
1128 agp_free_key(curr->key);
1131 EXPORT_SYMBOL(agp_generic_free_by_type);
1133 struct agp_memory *agp_generic_alloc_user(size_t page_count, int type)
1135 struct agp_memory *new;
1139 pages = (page_count + ENTRIES_PER_PAGE - 1) / ENTRIES_PER_PAGE;
1140 new = agp_create_user_memory(page_count);
1144 for (i = 0; i < page_count; i++)
1146 new->page_count = 0;
1148 new->num_scratch_pages = pages;
1152 EXPORT_SYMBOL(agp_generic_alloc_user);
1155 * Basic Page Allocation Routines -
1156 * These routines handle page allocation and by default they reserve the allocated
1157 * memory. They also handle incrementing the current_memory_agp value, Which is checked
1158 * against a maximum value.
1161 void *agp_generic_alloc_page(struct agp_bridge_data *bridge)
1165 page = alloc_page(GFP_KERNEL | GFP_DMA32);
1169 map_page_into_agp(page);
1172 SetPageLocked(page);
1173 atomic_inc(&agp_bridge->current_memory_agp);
1174 return page_address(page);
1176 EXPORT_SYMBOL(agp_generic_alloc_page);
1179 void agp_generic_destroy_page(void *addr)
1186 page = virt_to_page(addr);
1187 unmap_page_from_agp(page);
1190 free_page((unsigned long)addr);
1191 atomic_dec(&agp_bridge->current_memory_agp);
1193 EXPORT_SYMBOL(agp_generic_destroy_page);
1195 /* End Basic Page Allocation Routines */
1199 * agp_enable - initialise the agp point-to-point connection.
1201 * @mode: agp mode register value to configure with.
1203 void agp_enable(struct agp_bridge_data *bridge, u32 mode)
1207 bridge->driver->agp_enable(bridge, mode);
1209 EXPORT_SYMBOL(agp_enable);
1211 /* When we remove the global variable agp_bridge from all drivers
1212 * then agp_alloc_bridge and agp_generic_find_bridge need to be updated
1215 struct agp_bridge_data *agp_generic_find_bridge(struct pci_dev *pdev)
1217 if (list_empty(&agp_bridges))
1223 static void ipi_handler(void *null)
1228 void global_cache_flush(void)
1230 if (on_each_cpu(ipi_handler, NULL, 1, 1) != 0)
1231 panic(PFX "timed out waiting for the other CPUs!\n");
1233 EXPORT_SYMBOL(global_cache_flush);
1235 unsigned long agp_generic_mask_memory(struct agp_bridge_data *bridge,
1236 unsigned long addr, int type)
1238 /* memory type is ignored in the generic routine */
1239 if (bridge->driver->masks)
1240 return addr | bridge->driver->masks[0].mask;
1244 EXPORT_SYMBOL(agp_generic_mask_memory);
1246 int agp_generic_type_to_mask_type(struct agp_bridge_data *bridge,
1249 if (type >= AGP_USER_TYPES)
1253 EXPORT_SYMBOL(agp_generic_type_to_mask_type);
1256 * These functions are implemented according to the AGPv3 spec,
1257 * which covers implementation details that had previously been
1261 int agp3_generic_fetch_size(void)
1265 struct aper_size_info_16 *values;
1267 pci_read_config_word(agp_bridge->dev, agp_bridge->capndx+AGPAPSIZE, &temp_size);
1268 values = A_SIZE_16(agp_bridge->driver->aperture_sizes);
1270 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
1271 if (temp_size == values[i].size_value) {
1272 agp_bridge->previous_size =
1273 agp_bridge->current_size = (void *) (values + i);
1275 agp_bridge->aperture_size_idx = i;
1276 return values[i].size;
1281 EXPORT_SYMBOL(agp3_generic_fetch_size);
1283 void agp3_generic_tlbflush(struct agp_memory *mem)
1286 pci_read_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, &ctrl);
1287 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, ctrl & ~AGPCTRL_GTLBEN);
1288 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, ctrl);
1290 EXPORT_SYMBOL(agp3_generic_tlbflush);
1292 int agp3_generic_configure(void)
1295 struct aper_size_info_16 *current_size;
1297 current_size = A_SIZE_16(agp_bridge->current_size);
1299 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1300 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1302 /* set aperture size */
1303 pci_write_config_word(agp_bridge->dev, agp_bridge->capndx+AGPAPSIZE, current_size->size_value);
1304 /* set gart pointer */
1305 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPGARTLO, agp_bridge->gatt_bus_addr);
1306 /* enable aperture and GTLB */
1307 pci_read_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, &temp);
1308 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, temp | AGPCTRL_APERENB | AGPCTRL_GTLBEN);
1311 EXPORT_SYMBOL(agp3_generic_configure);
1313 void agp3_generic_cleanup(void)
1316 pci_read_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, &ctrl);
1317 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, ctrl & ~AGPCTRL_APERENB);
1319 EXPORT_SYMBOL(agp3_generic_cleanup);
1321 const struct aper_size_info_16 agp3_generic_sizes[AGP_GENERIC_SIZES_ENTRIES] =
1323 {4096, 1048576, 10,0x000},
1324 {2048, 524288, 9, 0x800},
1325 {1024, 262144, 8, 0xc00},
1326 { 512, 131072, 7, 0xe00},
1327 { 256, 65536, 6, 0xf00},
1328 { 128, 32768, 5, 0xf20},
1329 { 64, 16384, 4, 0xf30},
1330 { 32, 8192, 3, 0xf38},
1331 { 16, 4096, 2, 0xf3c},
1332 { 8, 2048, 1, 0xf3e},
1333 { 4, 1024, 0, 0xf3f}
1335 EXPORT_SYMBOL(agp3_generic_sizes);