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>
40 #include <linux/sched.h>
42 #include <asm/cacheflush.h>
43 #include <asm/pgtable.h>
46 __u32 *agp_gatt_table;
47 int agp_memory_reserved;
50 * Needed by the Nforce GART driver for the time being. Would be
51 * nice to do this some other way instead of needing this export.
53 EXPORT_SYMBOL_GPL(agp_memory_reserved);
56 * Generic routines for handling agp_memory structures -
57 * They use the basic page allocation routines to do the brunt of the work.
60 void agp_free_key(int key)
66 clear_bit(key, agp_bridge->key_list);
68 EXPORT_SYMBOL(agp_free_key);
71 static int agp_get_key(void)
75 bit = find_first_zero_bit(agp_bridge->key_list, MAXKEY);
77 set_bit(bit, agp_bridge->key_list);
83 void agp_flush_chipset(struct agp_bridge_data *bridge)
85 if (bridge->driver->chipset_flush)
86 bridge->driver->chipset_flush(bridge);
88 EXPORT_SYMBOL(agp_flush_chipset);
91 * Use kmalloc if possible for the page list. Otherwise fall back to
92 * vmalloc. This speeds things up and also saves memory for small AGP
96 void agp_alloc_page_array(size_t size, struct agp_memory *mem)
99 mem->vmalloc_flag = false;
101 if (size <= 2*PAGE_SIZE)
102 mem->memory = kmalloc(size, GFP_KERNEL | __GFP_NORETRY);
103 if (mem->memory == NULL) {
104 mem->memory = vmalloc(size);
105 mem->vmalloc_flag = true;
108 EXPORT_SYMBOL(agp_alloc_page_array);
110 void agp_free_page_array(struct agp_memory *mem)
112 if (mem->vmalloc_flag) {
118 EXPORT_SYMBOL(agp_free_page_array);
121 static struct agp_memory *agp_create_user_memory(unsigned long num_agp_pages)
123 struct agp_memory *new;
124 unsigned long alloc_size = num_agp_pages*sizeof(struct page *);
126 new = kzalloc(sizeof(struct agp_memory), GFP_KERNEL);
130 new->key = agp_get_key();
137 agp_alloc_page_array(alloc_size, new);
139 if (new->memory == NULL) {
140 agp_free_key(new->key);
144 new->num_scratch_pages = 0;
148 struct agp_memory *agp_create_memory(int scratch_pages)
150 struct agp_memory *new;
152 new = kzalloc(sizeof(struct agp_memory), GFP_KERNEL);
156 new->key = agp_get_key();
163 agp_alloc_page_array(PAGE_SIZE * scratch_pages, new);
165 if (new->memory == NULL) {
166 agp_free_key(new->key);
170 new->num_scratch_pages = scratch_pages;
171 new->type = AGP_NORMAL_MEMORY;
174 EXPORT_SYMBOL(agp_create_memory);
177 * agp_free_memory - free memory associated with an agp_memory pointer.
179 * @curr: agp_memory pointer to be freed.
181 * It is the only function that can be called when the backend is not owned
182 * by the caller. (So it can free memory on client death.)
184 void agp_free_memory(struct agp_memory *curr)
192 agp_unbind_memory(curr);
194 if (curr->type >= AGP_USER_TYPES) {
195 agp_generic_free_by_type(curr);
199 if (curr->type != 0) {
200 curr->bridge->driver->free_by_type(curr);
203 if (curr->page_count != 0) {
204 for (i = 0; i < curr->page_count; i++) {
205 curr->memory[i] = (unsigned long)gart_to_virt(curr->memory[i]);
206 curr->bridge->driver->agp_destroy_page((void *)curr->memory[i],
207 AGP_PAGE_DESTROY_UNMAP);
209 for (i = 0; i < curr->page_count; i++) {
210 curr->bridge->driver->agp_destroy_page((void *)curr->memory[i],
211 AGP_PAGE_DESTROY_FREE);
214 agp_free_key(curr->key);
215 agp_free_page_array(curr);
218 EXPORT_SYMBOL(agp_free_memory);
220 #define ENTRIES_PER_PAGE (PAGE_SIZE / sizeof(unsigned long))
223 * agp_allocate_memory - allocate a group of pages of a certain type.
225 * @page_count: size_t argument of the number of pages
226 * @type: u32 argument of the type of memory to be allocated.
228 * Every agp bridge device will allow you to allocate AGP_NORMAL_MEMORY which
229 * maps to physical ram. Any other type is device dependent.
231 * It returns NULL whenever memory is unavailable.
233 struct agp_memory *agp_allocate_memory(struct agp_bridge_data *bridge,
234 size_t page_count, u32 type)
237 struct agp_memory *new;
243 if ((atomic_read(&bridge->current_memory_agp) + page_count) > bridge->max_memory_agp)
246 if (type >= AGP_USER_TYPES) {
247 new = agp_generic_alloc_user(page_count, type);
249 new->bridge = bridge;
254 new = bridge->driver->alloc_by_type(page_count, type);
256 new->bridge = bridge;
260 scratch_pages = (page_count + ENTRIES_PER_PAGE - 1) / ENTRIES_PER_PAGE;
262 new = agp_create_memory(scratch_pages);
267 if (bridge->driver->agp_alloc_pages) {
268 if (bridge->driver->agp_alloc_pages(bridge, new, page_count)) {
269 agp_free_memory(new);
272 new->bridge = bridge;
276 for (i = 0; i < page_count; i++) {
277 void *addr = bridge->driver->agp_alloc_page(bridge);
280 agp_free_memory(new);
283 new->memory[i] = virt_to_gart(addr);
286 new->bridge = bridge;
290 EXPORT_SYMBOL(agp_allocate_memory);
293 /* End - Generic routines for handling agp_memory structures */
296 static int agp_return_size(void)
301 temp = agp_bridge->current_size;
303 switch (agp_bridge->driver->size_type) {
305 current_size = A_SIZE_8(temp)->size;
308 current_size = A_SIZE_16(temp)->size;
311 current_size = A_SIZE_32(temp)->size;
314 current_size = A_SIZE_LVL2(temp)->size;
316 case FIXED_APER_SIZE:
317 current_size = A_SIZE_FIX(temp)->size;
324 current_size -= (agp_memory_reserved / (1024*1024));
331 int agp_num_entries(void)
336 temp = agp_bridge->current_size;
338 switch (agp_bridge->driver->size_type) {
340 num_entries = A_SIZE_8(temp)->num_entries;
343 num_entries = A_SIZE_16(temp)->num_entries;
346 num_entries = A_SIZE_32(temp)->num_entries;
349 num_entries = A_SIZE_LVL2(temp)->num_entries;
351 case FIXED_APER_SIZE:
352 num_entries = A_SIZE_FIX(temp)->num_entries;
359 num_entries -= agp_memory_reserved>>PAGE_SHIFT;
364 EXPORT_SYMBOL_GPL(agp_num_entries);
368 * agp_copy_info - copy bridge state information
370 * @info: agp_kern_info pointer. The caller should insure that this pointer is valid.
372 * This function copies information about the agp bridge device and the state of
373 * the agp backend into an agp_kern_info pointer.
375 int agp_copy_info(struct agp_bridge_data *bridge, struct agp_kern_info *info)
377 memset(info, 0, sizeof(struct agp_kern_info));
379 info->chipset = NOT_SUPPORTED;
383 info->version.major = bridge->version->major;
384 info->version.minor = bridge->version->minor;
385 info->chipset = SUPPORTED;
386 info->device = bridge->dev;
387 if (bridge->mode & AGPSTAT_MODE_3_0)
388 info->mode = bridge->mode & ~AGP3_RESERVED_MASK;
390 info->mode = bridge->mode & ~AGP2_RESERVED_MASK;
391 info->aper_base = bridge->gart_bus_addr;
392 info->aper_size = agp_return_size();
393 info->max_memory = bridge->max_memory_agp;
394 info->current_memory = atomic_read(&bridge->current_memory_agp);
395 info->cant_use_aperture = bridge->driver->cant_use_aperture;
396 info->vm_ops = bridge->vm_ops;
397 info->page_mask = ~0UL;
400 EXPORT_SYMBOL(agp_copy_info);
402 /* End - Routine to copy over information structure */
405 * Routines for handling swapping of agp_memory into the GATT -
406 * These routines take agp_memory and insert them into the GATT.
407 * They call device specific routines to actually write to the GATT.
411 * agp_bind_memory - Bind an agp_memory structure into the GATT.
413 * @curr: agp_memory pointer
414 * @pg_start: an offset into the graphics aperture translation table
416 * It returns -EINVAL if the pointer == NULL.
417 * It returns -EBUSY if the area of the table requested is already in use.
419 int agp_bind_memory(struct agp_memory *curr, off_t pg_start)
426 if (curr->is_bound) {
427 printk(KERN_INFO PFX "memory %p is already bound!\n", curr);
430 if (!curr->is_flushed) {
431 curr->bridge->driver->cache_flush();
432 curr->is_flushed = true;
434 ret_val = curr->bridge->driver->insert_memory(curr, pg_start, curr->type);
439 curr->is_bound = true;
440 curr->pg_start = pg_start;
443 EXPORT_SYMBOL(agp_bind_memory);
447 * agp_unbind_memory - Removes an agp_memory structure from the GATT
449 * @curr: agp_memory pointer to be removed from the GATT.
451 * It returns -EINVAL if this piece of agp_memory is not currently bound to
452 * the graphics aperture translation table or if the agp_memory pointer == NULL
454 int agp_unbind_memory(struct agp_memory *curr)
461 if (!curr->is_bound) {
462 printk(KERN_INFO PFX "memory %p was not bound!\n", curr);
466 ret_val = curr->bridge->driver->remove_memory(curr, curr->pg_start, curr->type);
471 curr->is_bound = false;
475 EXPORT_SYMBOL(agp_unbind_memory);
477 /* End - Routines for handling swapping of agp_memory into the GATT */
480 /* Generic Agp routines - Start */
481 static void agp_v2_parse_one(u32 *requested_mode, u32 *bridge_agpstat, u32 *vga_agpstat)
485 if (*requested_mode & AGP2_RESERVED_MASK) {
486 printk(KERN_INFO PFX "reserved bits set (%x) in mode 0x%x. Fixed.\n",
487 *requested_mode & AGP2_RESERVED_MASK, *requested_mode);
488 *requested_mode &= ~AGP2_RESERVED_MASK;
492 * Some dumb bridges are programmed to disobey the AGP2 spec.
493 * This is likely a BIOS misprogramming rather than poweron default, or
494 * it would be a lot more common.
495 * https://bugs.freedesktop.org/show_bug.cgi?id=8816
496 * AGPv2 spec 6.1.9 states:
497 * The RATE field indicates the data transfer rates supported by this
498 * device. A.G.P. devices must report all that apply.
499 * Fix them up as best we can.
501 switch (*bridge_agpstat & 7) {
503 *bridge_agpstat |= (AGPSTAT2_2X | AGPSTAT2_1X);
504 printk(KERN_INFO PFX "BIOS bug. AGP bridge claims to only support x4 rate"
505 "Fixing up support for x2 & x1\n");
508 *bridge_agpstat |= AGPSTAT2_1X;
509 printk(KERN_INFO PFX "BIOS bug. AGP bridge claims to only support x2 rate"
510 "Fixing up support for x1\n");
516 /* Check the speed bits make sense. Only one should be set. */
517 tmp = *requested_mode & 7;
520 printk(KERN_INFO PFX "%s tried to set rate=x0. Setting to x1 mode.\n", current->comm);
521 *requested_mode |= AGPSTAT2_1X;
527 *requested_mode &= ~(AGPSTAT2_1X); /* rate=2 */
534 *requested_mode &= ~(AGPSTAT2_1X|AGPSTAT2_2X); /* rate=4*/
538 /* disable SBA if it's not supported */
539 if (!((*bridge_agpstat & AGPSTAT_SBA) && (*vga_agpstat & AGPSTAT_SBA) && (*requested_mode & AGPSTAT_SBA)))
540 *bridge_agpstat &= ~AGPSTAT_SBA;
543 if (!((*bridge_agpstat & AGPSTAT2_4X) && (*vga_agpstat & AGPSTAT2_4X) && (*requested_mode & AGPSTAT2_4X)))
544 *bridge_agpstat &= ~AGPSTAT2_4X;
546 if (!((*bridge_agpstat & AGPSTAT2_2X) && (*vga_agpstat & AGPSTAT2_2X) && (*requested_mode & AGPSTAT2_2X)))
547 *bridge_agpstat &= ~AGPSTAT2_2X;
549 if (!((*bridge_agpstat & AGPSTAT2_1X) && (*vga_agpstat & AGPSTAT2_1X) && (*requested_mode & AGPSTAT2_1X)))
550 *bridge_agpstat &= ~AGPSTAT2_1X;
552 /* Now we know what mode it should be, clear out the unwanted bits. */
553 if (*bridge_agpstat & AGPSTAT2_4X)
554 *bridge_agpstat &= ~(AGPSTAT2_1X | AGPSTAT2_2X); /* 4X */
556 if (*bridge_agpstat & AGPSTAT2_2X)
557 *bridge_agpstat &= ~(AGPSTAT2_1X | AGPSTAT2_4X); /* 2X */
559 if (*bridge_agpstat & AGPSTAT2_1X)
560 *bridge_agpstat &= ~(AGPSTAT2_2X | AGPSTAT2_4X); /* 1X */
562 /* Apply any errata. */
563 if (agp_bridge->flags & AGP_ERRATA_FASTWRITES)
564 *bridge_agpstat &= ~AGPSTAT_FW;
566 if (agp_bridge->flags & AGP_ERRATA_SBA)
567 *bridge_agpstat &= ~AGPSTAT_SBA;
569 if (agp_bridge->flags & AGP_ERRATA_1X) {
570 *bridge_agpstat &= ~(AGPSTAT2_2X | AGPSTAT2_4X);
571 *bridge_agpstat |= AGPSTAT2_1X;
574 /* If we've dropped down to 1X, disable fast writes. */
575 if (*bridge_agpstat & AGPSTAT2_1X)
576 *bridge_agpstat &= ~AGPSTAT_FW;
580 * requested_mode = Mode requested by (typically) X.
581 * bridge_agpstat = PCI_AGP_STATUS from agp bridge.
582 * vga_agpstat = PCI_AGP_STATUS from graphic card.
584 static void agp_v3_parse_one(u32 *requested_mode, u32 *bridge_agpstat, u32 *vga_agpstat)
586 u32 origbridge=*bridge_agpstat, origvga=*vga_agpstat;
589 if (*requested_mode & AGP3_RESERVED_MASK) {
590 printk(KERN_INFO PFX "reserved bits set (%x) in mode 0x%x. Fixed.\n",
591 *requested_mode & AGP3_RESERVED_MASK, *requested_mode);
592 *requested_mode &= ~AGP3_RESERVED_MASK;
595 /* Check the speed bits make sense. */
596 tmp = *requested_mode & 7;
598 printk(KERN_INFO PFX "%s tried to set rate=x0. Setting to AGP3 x4 mode.\n", current->comm);
599 *requested_mode |= AGPSTAT3_4X;
602 printk(KERN_INFO PFX "%s tried to set rate=x%d. Setting to AGP3 x8 mode.\n", current->comm, tmp * 4);
603 *requested_mode = (*requested_mode & ~7) | AGPSTAT3_8X;
606 /* ARQSZ - Set the value to the maximum one.
607 * Don't allow the mode register to override values. */
608 *bridge_agpstat = ((*bridge_agpstat & ~AGPSTAT_ARQSZ) |
609 max_t(u32,(*bridge_agpstat & AGPSTAT_ARQSZ),(*vga_agpstat & AGPSTAT_ARQSZ)));
611 /* Calibration cycle.
612 * Don't allow the mode register to override values. */
613 *bridge_agpstat = ((*bridge_agpstat & ~AGPSTAT_CAL_MASK) |
614 min_t(u32,(*bridge_agpstat & AGPSTAT_CAL_MASK),(*vga_agpstat & AGPSTAT_CAL_MASK)));
616 /* SBA *must* be supported for AGP v3 */
617 *bridge_agpstat |= AGPSTAT_SBA;
621 * Check for invalid speeds. This can happen when applications
622 * written before the AGP 3.0 standard pass AGP2.x modes to AGP3 hardware
624 if (*requested_mode & AGPSTAT_MODE_3_0) {
626 * Caller hasn't a clue what it is doing. Bridge is in 3.0 mode,
627 * have been passed a 3.0 mode, but with 2.x speed bits set.
628 * AGP2.x 4x -> AGP3.0 4x.
630 if (*requested_mode & AGPSTAT2_4X) {
631 printk(KERN_INFO PFX "%s passes broken AGP3 flags (%x). Fixed.\n",
632 current->comm, *requested_mode);
633 *requested_mode &= ~AGPSTAT2_4X;
634 *requested_mode |= AGPSTAT3_4X;
638 * The caller doesn't know what they are doing. We are in 3.0 mode,
639 * but have been passed an AGP 2.x mode.
640 * Convert AGP 1x,2x,4x -> AGP 3.0 4x.
642 printk(KERN_INFO PFX "%s passes broken AGP2 flags (%x) in AGP3 mode. Fixed.\n",
643 current->comm, *requested_mode);
644 *requested_mode &= ~(AGPSTAT2_4X | AGPSTAT2_2X | AGPSTAT2_1X);
645 *requested_mode |= AGPSTAT3_4X;
648 if (*requested_mode & AGPSTAT3_8X) {
649 if (!(*bridge_agpstat & AGPSTAT3_8X)) {
650 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
651 *bridge_agpstat |= AGPSTAT3_4X;
652 printk(KERN_INFO PFX "%s requested AGPx8 but bridge not capable.\n", current->comm);
655 if (!(*vga_agpstat & AGPSTAT3_8X)) {
656 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
657 *bridge_agpstat |= AGPSTAT3_4X;
658 printk(KERN_INFO PFX "%s requested AGPx8 but graphic card not capable.\n", current->comm);
661 /* All set, bridge & device can do AGP x8*/
662 *bridge_agpstat &= ~(AGPSTAT3_4X | AGPSTAT3_RSVD);
665 } else if (*requested_mode & AGPSTAT3_4X) {
666 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
667 *bridge_agpstat |= AGPSTAT3_4X;
673 * If we didn't specify an AGP mode, we see if both
674 * the graphics card, and the bridge can do x8, and use if so.
675 * If not, we fall back to x4 mode.
677 if ((*bridge_agpstat & AGPSTAT3_8X) && (*vga_agpstat & AGPSTAT3_8X)) {
678 printk(KERN_INFO PFX "No AGP mode specified. Setting to highest mode "
679 "supported by bridge & card (x8).\n");
680 *bridge_agpstat &= ~(AGPSTAT3_4X | AGPSTAT3_RSVD);
681 *vga_agpstat &= ~(AGPSTAT3_4X | AGPSTAT3_RSVD);
683 printk(KERN_INFO PFX "Fell back to AGPx4 mode because");
684 if (!(*bridge_agpstat & AGPSTAT3_8X)) {
685 printk(KERN_INFO PFX "bridge couldn't do x8. bridge_agpstat:%x (orig=%x)\n",
686 *bridge_agpstat, origbridge);
687 *bridge_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
688 *bridge_agpstat |= AGPSTAT3_4X;
690 if (!(*vga_agpstat & AGPSTAT3_8X)) {
691 printk(KERN_INFO PFX "graphics card couldn't do x8. vga_agpstat:%x (orig=%x)\n",
692 *vga_agpstat, origvga);
693 *vga_agpstat &= ~(AGPSTAT3_8X | AGPSTAT3_RSVD);
694 *vga_agpstat |= AGPSTAT3_4X;
700 /* Apply any errata. */
701 if (agp_bridge->flags & AGP_ERRATA_FASTWRITES)
702 *bridge_agpstat &= ~AGPSTAT_FW;
704 if (agp_bridge->flags & AGP_ERRATA_SBA)
705 *bridge_agpstat &= ~AGPSTAT_SBA;
707 if (agp_bridge->flags & AGP_ERRATA_1X) {
708 *bridge_agpstat &= ~(AGPSTAT2_2X | AGPSTAT2_4X);
709 *bridge_agpstat |= AGPSTAT2_1X;
715 * agp_collect_device_status - determine correct agp_cmd from various agp_stat's
716 * @bridge: an agp_bridge_data struct allocated for the AGP host bridge.
717 * @requested_mode: requested agp_stat from userspace (Typically from X)
718 * @bridge_agpstat: current agp_stat from AGP bridge.
720 * This function will hunt for an AGP graphics card, and try to match
721 * the requested mode to the capabilities of both the bridge and the card.
723 u32 agp_collect_device_status(struct agp_bridge_data *bridge, u32 requested_mode, u32 bridge_agpstat)
725 struct pci_dev *device = NULL;
730 device = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, device);
732 printk(KERN_INFO PFX "Couldn't find an AGP VGA controller.\n");
735 cap_ptr = pci_find_capability(device, PCI_CAP_ID_AGP);
741 * Ok, here we have a AGP device. Disable impossible
742 * settings, and adjust the readqueue to the minimum.
744 pci_read_config_dword(device, cap_ptr+PCI_AGP_STATUS, &vga_agpstat);
746 /* adjust RQ depth */
747 bridge_agpstat = ((bridge_agpstat & ~AGPSTAT_RQ_DEPTH) |
748 min_t(u32, (requested_mode & AGPSTAT_RQ_DEPTH),
749 min_t(u32, (bridge_agpstat & AGPSTAT_RQ_DEPTH), (vga_agpstat & AGPSTAT_RQ_DEPTH))));
751 /* disable FW if it's not supported */
752 if (!((bridge_agpstat & AGPSTAT_FW) &&
753 (vga_agpstat & AGPSTAT_FW) &&
754 (requested_mode & AGPSTAT_FW)))
755 bridge_agpstat &= ~AGPSTAT_FW;
757 /* Check to see if we are operating in 3.0 mode */
758 if (agp_bridge->mode & AGPSTAT_MODE_3_0)
759 agp_v3_parse_one(&requested_mode, &bridge_agpstat, &vga_agpstat);
761 agp_v2_parse_one(&requested_mode, &bridge_agpstat, &vga_agpstat);
764 return bridge_agpstat;
766 EXPORT_SYMBOL(agp_collect_device_status);
769 void agp_device_command(u32 bridge_agpstat, bool agp_v3)
771 struct pci_dev *device = NULL;
774 mode = bridge_agpstat & 0x7;
778 for_each_pci_dev(device) {
779 u8 agp = pci_find_capability(device, PCI_CAP_ID_AGP);
783 printk(KERN_INFO PFX "Putting AGP V%d device at %s into %dx mode\n",
784 agp_v3 ? 3 : 2, pci_name(device), mode);
785 pci_write_config_dword(device, agp + PCI_AGP_COMMAND, bridge_agpstat);
788 EXPORT_SYMBOL(agp_device_command);
791 void get_agp_version(struct agp_bridge_data *bridge)
795 /* Exit early if already set by errata workarounds. */
796 if (bridge->major_version != 0)
799 pci_read_config_dword(bridge->dev, bridge->capndx, &ncapid);
800 bridge->major_version = (ncapid >> AGP_MAJOR_VERSION_SHIFT) & 0xf;
801 bridge->minor_version = (ncapid >> AGP_MINOR_VERSION_SHIFT) & 0xf;
803 EXPORT_SYMBOL(get_agp_version);
806 void agp_generic_enable(struct agp_bridge_data *bridge, u32 requested_mode)
808 u32 bridge_agpstat, temp;
810 get_agp_version(agp_bridge);
812 printk(KERN_INFO PFX "Found an AGP %d.%d compliant device at %s.\n",
813 agp_bridge->major_version,
814 agp_bridge->minor_version,
815 pci_name(agp_bridge->dev));
817 pci_read_config_dword(agp_bridge->dev,
818 agp_bridge->capndx + PCI_AGP_STATUS, &bridge_agpstat);
820 bridge_agpstat = agp_collect_device_status(agp_bridge, requested_mode, bridge_agpstat);
821 if (bridge_agpstat == 0)
822 /* Something bad happened. FIXME: Return error code? */
825 bridge_agpstat |= AGPSTAT_AGP_ENABLE;
827 /* Do AGP version specific frobbing. */
828 if (bridge->major_version >= 3) {
829 if (bridge->mode & AGPSTAT_MODE_3_0) {
830 /* If we have 3.5, we can do the isoch stuff. */
831 if (bridge->minor_version >= 5)
832 agp_3_5_enable(bridge);
833 agp_device_command(bridge_agpstat, true);
836 /* Disable calibration cycle in RX91<1> when not in AGP3.0 mode of operation.*/
837 bridge_agpstat &= ~(7<<10) ;
838 pci_read_config_dword(bridge->dev,
839 bridge->capndx+AGPCTRL, &temp);
841 pci_write_config_dword(bridge->dev,
842 bridge->capndx+AGPCTRL, temp);
844 printk(KERN_INFO PFX "Device is in legacy mode,"
845 " falling back to 2.x\n");
850 agp_device_command(bridge_agpstat, false);
852 EXPORT_SYMBOL(agp_generic_enable);
855 int agp_generic_create_gatt_table(struct agp_bridge_data *bridge)
866 /* The generic routines can't handle 2 level gatt's */
867 if (bridge->driver->size_type == LVL2_APER_SIZE)
871 i = bridge->aperture_size_idx;
872 temp = bridge->current_size;
873 size = page_order = num_entries = 0;
875 if (bridge->driver->size_type != FIXED_APER_SIZE) {
877 switch (bridge->driver->size_type) {
879 size = A_SIZE_8(temp)->size;
881 A_SIZE_8(temp)->page_order;
883 A_SIZE_8(temp)->num_entries;
886 size = A_SIZE_16(temp)->size;
887 page_order = A_SIZE_16(temp)->page_order;
888 num_entries = A_SIZE_16(temp)->num_entries;
891 size = A_SIZE_32(temp)->size;
892 page_order = A_SIZE_32(temp)->page_order;
893 num_entries = A_SIZE_32(temp)->num_entries;
895 /* This case will never really happen. */
896 case FIXED_APER_SIZE:
899 size = page_order = num_entries = 0;
903 table = alloc_gatt_pages(page_order);
907 switch (bridge->driver->size_type) {
909 bridge->current_size = A_IDX8(bridge);
912 bridge->current_size = A_IDX16(bridge);
915 bridge->current_size = A_IDX32(bridge);
917 /* These cases will never really happen. */
918 case FIXED_APER_SIZE:
923 temp = bridge->current_size;
925 bridge->aperture_size_idx = i;
927 } while (!table && (i < bridge->driver->num_aperture_sizes));
929 size = ((struct aper_size_info_fixed *) temp)->size;
930 page_order = ((struct aper_size_info_fixed *) temp)->page_order;
931 num_entries = ((struct aper_size_info_fixed *) temp)->num_entries;
932 table = alloc_gatt_pages(page_order);
938 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1);
940 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++)
941 SetPageReserved(page);
943 bridge->gatt_table_real = (u32 *) table;
944 agp_gatt_table = (void *)table;
946 bridge->driver->cache_flush();
948 set_memory_uc((unsigned long)table, 1 << page_order);
949 bridge->gatt_table = (void *)table;
951 bridge->gatt_table = ioremap_nocache(virt_to_gart(table),
952 (PAGE_SIZE * (1 << page_order)));
953 bridge->driver->cache_flush();
956 if (bridge->gatt_table == NULL) {
957 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++)
958 ClearPageReserved(page);
960 free_gatt_pages(table, page_order);
964 bridge->gatt_bus_addr = virt_to_gart(bridge->gatt_table_real);
966 /* AK: bogus, should encode addresses > 4GB */
967 for (i = 0; i < num_entries; i++) {
968 writel(bridge->scratch_page, bridge->gatt_table+i);
969 readl(bridge->gatt_table+i); /* PCI Posting. */
974 EXPORT_SYMBOL(agp_generic_create_gatt_table);
976 int agp_generic_free_gatt_table(struct agp_bridge_data *bridge)
979 char *table, *table_end;
983 temp = bridge->current_size;
985 switch (bridge->driver->size_type) {
987 page_order = A_SIZE_8(temp)->page_order;
990 page_order = A_SIZE_16(temp)->page_order;
993 page_order = A_SIZE_32(temp)->page_order;
995 case FIXED_APER_SIZE:
996 page_order = A_SIZE_FIX(temp)->page_order;
999 /* The generic routines can't deal with 2 level gatt's */
1007 /* Do not worry about freeing memory, because if this is
1008 * called, then all agp memory is deallocated and removed
1009 * from the table. */
1012 set_memory_wb((unsigned long)bridge->gatt_table, 1 << page_order);
1014 iounmap(bridge->gatt_table);
1016 table = (char *) bridge->gatt_table_real;
1017 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1);
1019 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++)
1020 ClearPageReserved(page);
1022 free_gatt_pages(bridge->gatt_table_real, page_order);
1024 agp_gatt_table = NULL;
1025 bridge->gatt_table = NULL;
1026 bridge->gatt_table_real = NULL;
1027 bridge->gatt_bus_addr = 0;
1031 EXPORT_SYMBOL(agp_generic_free_gatt_table);
1034 int agp_generic_insert_memory(struct agp_memory * mem, off_t pg_start, int type)
1040 struct agp_bridge_data *bridge;
1043 bridge = mem->bridge;
1047 if (mem->page_count == 0)
1050 temp = bridge->current_size;
1052 switch (bridge->driver->size_type) {
1054 num_entries = A_SIZE_8(temp)->num_entries;
1057 num_entries = A_SIZE_16(temp)->num_entries;
1060 num_entries = A_SIZE_32(temp)->num_entries;
1062 case FIXED_APER_SIZE:
1063 num_entries = A_SIZE_FIX(temp)->num_entries;
1065 case LVL2_APER_SIZE:
1066 /* The generic routines can't deal with 2 level gatt's */
1074 num_entries -= agp_memory_reserved/PAGE_SIZE;
1075 if (num_entries < 0) num_entries = 0;
1077 if (type != mem->type)
1080 mask_type = bridge->driver->agp_type_to_mask_type(bridge, type);
1081 if (mask_type != 0) {
1082 /* The generic routines know nothing of memory types */
1086 /* AK: could wrap */
1087 if ((pg_start + mem->page_count) > num_entries)
1092 while (j < (pg_start + mem->page_count)) {
1093 if (!PGE_EMPTY(bridge, readl(bridge->gatt_table+j)))
1098 if (!mem->is_flushed) {
1099 bridge->driver->cache_flush();
1100 mem->is_flushed = true;
1103 for (i = 0, j = pg_start; i < mem->page_count; i++, j++) {
1104 writel(bridge->driver->mask_memory(bridge, mem->memory[i], mask_type),
1105 bridge->gatt_table+j);
1107 readl(bridge->gatt_table+j-1); /* PCI Posting. */
1109 bridge->driver->tlb_flush(mem);
1112 EXPORT_SYMBOL(agp_generic_insert_memory);
1115 int agp_generic_remove_memory(struct agp_memory *mem, off_t pg_start, int type)
1118 struct agp_bridge_data *bridge;
1121 bridge = mem->bridge;
1125 if (mem->page_count == 0)
1128 if (type != mem->type)
1131 mask_type = bridge->driver->agp_type_to_mask_type(bridge, type);
1132 if (mask_type != 0) {
1133 /* The generic routines know nothing of memory types */
1137 /* AK: bogus, should encode addresses > 4GB */
1138 for (i = pg_start; i < (mem->page_count + pg_start); i++) {
1139 writel(bridge->scratch_page, bridge->gatt_table+i);
1141 readl(bridge->gatt_table+i-1); /* PCI Posting. */
1143 bridge->driver->tlb_flush(mem);
1146 EXPORT_SYMBOL(agp_generic_remove_memory);
1148 struct agp_memory *agp_generic_alloc_by_type(size_t page_count, int type)
1152 EXPORT_SYMBOL(agp_generic_alloc_by_type);
1154 void agp_generic_free_by_type(struct agp_memory *curr)
1156 agp_free_page_array(curr);
1157 agp_free_key(curr->key);
1160 EXPORT_SYMBOL(agp_generic_free_by_type);
1162 struct agp_memory *agp_generic_alloc_user(size_t page_count, int type)
1164 struct agp_memory *new;
1168 pages = (page_count + ENTRIES_PER_PAGE - 1) / ENTRIES_PER_PAGE;
1169 new = agp_create_user_memory(page_count);
1173 for (i = 0; i < page_count; i++)
1175 new->page_count = 0;
1177 new->num_scratch_pages = pages;
1181 EXPORT_SYMBOL(agp_generic_alloc_user);
1184 * Basic Page Allocation Routines -
1185 * These routines handle page allocation and by default they reserve the allocated
1186 * memory. They also handle incrementing the current_memory_agp value, Which is checked
1187 * against a maximum value.
1190 int agp_generic_alloc_pages(struct agp_bridge_data *bridge, struct agp_memory *mem, size_t num_pages)
1193 int i, ret = -ENOMEM;
1195 for (i = 0; i < num_pages; i++) {
1196 page = alloc_page(GFP_KERNEL | GFP_DMA32);
1197 /* agp_free_memory() needs gart address */
1202 map_page_into_agp(page);
1205 atomic_inc(&agp_bridge->current_memory_agp);
1207 /* set_memory_array_uc() needs virtual address */
1208 mem->memory[i] = (unsigned long)page_address(page);
1213 set_memory_array_uc(mem->memory, num_pages);
1217 for (i = 0; i < mem->page_count; i++)
1218 mem->memory[i] = virt_to_gart((void *)mem->memory[i]);
1221 EXPORT_SYMBOL(agp_generic_alloc_pages);
1223 void *agp_generic_alloc_page(struct agp_bridge_data *bridge)
1227 page = alloc_page(GFP_KERNEL | GFP_DMA32);
1231 map_page_into_agp(page);
1234 atomic_inc(&agp_bridge->current_memory_agp);
1235 return page_address(page);
1237 EXPORT_SYMBOL(agp_generic_alloc_page);
1240 void agp_generic_destroy_page(void *addr, int flags)
1247 page = virt_to_page(addr);
1248 if (flags & AGP_PAGE_DESTROY_UNMAP)
1249 unmap_page_from_agp(page);
1251 if (flags & AGP_PAGE_DESTROY_FREE) {
1253 free_page((unsigned long)addr);
1254 atomic_dec(&agp_bridge->current_memory_agp);
1257 EXPORT_SYMBOL(agp_generic_destroy_page);
1259 /* End Basic Page Allocation Routines */
1263 * agp_enable - initialise the agp point-to-point connection.
1265 * @mode: agp mode register value to configure with.
1267 void agp_enable(struct agp_bridge_data *bridge, u32 mode)
1271 bridge->driver->agp_enable(bridge, mode);
1273 EXPORT_SYMBOL(agp_enable);
1275 /* When we remove the global variable agp_bridge from all drivers
1276 * then agp_alloc_bridge and agp_generic_find_bridge need to be updated
1279 struct agp_bridge_data *agp_generic_find_bridge(struct pci_dev *pdev)
1281 if (list_empty(&agp_bridges))
1287 static void ipi_handler(void *null)
1292 void global_cache_flush(void)
1294 if (on_each_cpu(ipi_handler, NULL, 1) != 0)
1295 panic(PFX "timed out waiting for the other CPUs!\n");
1297 EXPORT_SYMBOL(global_cache_flush);
1299 unsigned long agp_generic_mask_memory(struct agp_bridge_data *bridge,
1300 unsigned long addr, int type)
1302 /* memory type is ignored in the generic routine */
1303 if (bridge->driver->masks)
1304 return addr | bridge->driver->masks[0].mask;
1308 EXPORT_SYMBOL(agp_generic_mask_memory);
1310 int agp_generic_type_to_mask_type(struct agp_bridge_data *bridge,
1313 if (type >= AGP_USER_TYPES)
1317 EXPORT_SYMBOL(agp_generic_type_to_mask_type);
1320 * These functions are implemented according to the AGPv3 spec,
1321 * which covers implementation details that had previously been
1325 int agp3_generic_fetch_size(void)
1329 struct aper_size_info_16 *values;
1331 pci_read_config_word(agp_bridge->dev, agp_bridge->capndx+AGPAPSIZE, &temp_size);
1332 values = A_SIZE_16(agp_bridge->driver->aperture_sizes);
1334 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
1335 if (temp_size == values[i].size_value) {
1336 agp_bridge->previous_size =
1337 agp_bridge->current_size = (void *) (values + i);
1339 agp_bridge->aperture_size_idx = i;
1340 return values[i].size;
1345 EXPORT_SYMBOL(agp3_generic_fetch_size);
1347 void agp3_generic_tlbflush(struct agp_memory *mem)
1350 pci_read_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, &ctrl);
1351 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, ctrl & ~AGPCTRL_GTLBEN);
1352 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, ctrl);
1354 EXPORT_SYMBOL(agp3_generic_tlbflush);
1356 int agp3_generic_configure(void)
1359 struct aper_size_info_16 *current_size;
1361 current_size = A_SIZE_16(agp_bridge->current_size);
1363 pci_read_config_dword(agp_bridge->dev, AGP_APBASE, &temp);
1364 agp_bridge->gart_bus_addr = (temp & PCI_BASE_ADDRESS_MEM_MASK);
1366 /* set aperture size */
1367 pci_write_config_word(agp_bridge->dev, agp_bridge->capndx+AGPAPSIZE, current_size->size_value);
1368 /* set gart pointer */
1369 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPGARTLO, agp_bridge->gatt_bus_addr);
1370 /* enable aperture and GTLB */
1371 pci_read_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, &temp);
1372 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, temp | AGPCTRL_APERENB | AGPCTRL_GTLBEN);
1375 EXPORT_SYMBOL(agp3_generic_configure);
1377 void agp3_generic_cleanup(void)
1380 pci_read_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, &ctrl);
1381 pci_write_config_dword(agp_bridge->dev, agp_bridge->capndx+AGPCTRL, ctrl & ~AGPCTRL_APERENB);
1383 EXPORT_SYMBOL(agp3_generic_cleanup);
1385 const struct aper_size_info_16 agp3_generic_sizes[AGP_GENERIC_SIZES_ENTRIES] =
1387 {4096, 1048576, 10,0x000},
1388 {2048, 524288, 9, 0x800},
1389 {1024, 262144, 8, 0xc00},
1390 { 512, 131072, 7, 0xe00},
1391 { 256, 65536, 6, 0xf00},
1392 { 128, 32768, 5, 0xf20},
1393 { 64, 16384, 4, 0xf30},
1394 { 32, 8192, 3, 0xf38},
1395 { 16, 4096, 2, 0xf3c},
1396 { 8, 2048, 1, 0xf3e},
1397 { 4, 1024, 0, 0xf3f}
1399 EXPORT_SYMBOL(agp3_generic_sizes);