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>
41 #include <linux/slab.h>
43 #include <asm/cacheflush.h>
44 #include <asm/pgtable.h>
47 __u32
*agp_gatt_table
;
48 int agp_memory_reserved
;
51 * Needed by the Nforce GART driver for the time being. Would be
52 * nice to do this some other way instead of needing this export.
54 EXPORT_SYMBOL_GPL(agp_memory_reserved
);
57 * Generic routines for handling agp_memory structures -
58 * They use the basic page allocation routines to do the brunt of the work.
61 void agp_free_key(int key
)
67 clear_bit(key
, agp_bridge
->key_list
);
69 EXPORT_SYMBOL(agp_free_key
);
72 static int agp_get_key(void)
76 bit
= find_first_zero_bit(agp_bridge
->key_list
, MAXKEY
);
78 set_bit(bit
, agp_bridge
->key_list
);
84 void agp_flush_chipset(struct agp_bridge_data
*bridge
)
86 if (bridge
->driver
->chipset_flush
)
87 bridge
->driver
->chipset_flush(bridge
);
89 EXPORT_SYMBOL(agp_flush_chipset
);
92 * Use kmalloc if possible for the page list. Otherwise fall back to
93 * vmalloc. This speeds things up and also saves memory for small AGP
97 void agp_alloc_page_array(size_t size
, struct agp_memory
*mem
)
100 mem
->vmalloc_flag
= false;
102 if (size
<= 2*PAGE_SIZE
)
103 mem
->pages
= kmalloc(size
, GFP_KERNEL
| __GFP_NORETRY
);
104 if (mem
->pages
== NULL
) {
105 mem
->pages
= vmalloc(size
);
106 mem
->vmalloc_flag
= true;
109 EXPORT_SYMBOL(agp_alloc_page_array
);
111 void agp_free_page_array(struct agp_memory
*mem
)
113 if (mem
->vmalloc_flag
) {
119 EXPORT_SYMBOL(agp_free_page_array
);
122 static struct agp_memory
*agp_create_user_memory(unsigned long num_agp_pages
)
124 struct agp_memory
*new;
125 unsigned long alloc_size
= num_agp_pages
*sizeof(struct page
*);
127 new = kzalloc(sizeof(struct agp_memory
), GFP_KERNEL
);
131 new->key
= agp_get_key();
138 agp_alloc_page_array(alloc_size
, new);
140 if (new->pages
== NULL
) {
141 agp_free_key(new->key
);
145 new->num_scratch_pages
= 0;
149 struct agp_memory
*agp_create_memory(int scratch_pages
)
151 struct agp_memory
*new;
153 new = kzalloc(sizeof(struct agp_memory
), GFP_KERNEL
);
157 new->key
= agp_get_key();
164 agp_alloc_page_array(PAGE_SIZE
* scratch_pages
, new);
166 if (new->pages
== NULL
) {
167 agp_free_key(new->key
);
171 new->num_scratch_pages
= scratch_pages
;
172 new->type
= AGP_NORMAL_MEMORY
;
175 EXPORT_SYMBOL(agp_create_memory
);
178 * agp_free_memory - free memory associated with an agp_memory pointer.
180 * @curr: agp_memory pointer to be freed.
182 * It is the only function that can be called when the backend is not owned
183 * by the caller. (So it can free memory on client death.)
185 void agp_free_memory(struct agp_memory
*curr
)
193 agp_unbind_memory(curr
);
195 if (curr
->type
>= AGP_USER_TYPES
) {
196 agp_generic_free_by_type(curr
);
200 if (curr
->type
!= 0) {
201 curr
->bridge
->driver
->free_by_type(curr
);
204 if (curr
->page_count
!= 0) {
205 if (curr
->bridge
->driver
->agp_destroy_pages
) {
206 curr
->bridge
->driver
->agp_destroy_pages(curr
);
209 for (i
= 0; i
< curr
->page_count
; i
++) {
210 curr
->bridge
->driver
->agp_destroy_page(
212 AGP_PAGE_DESTROY_UNMAP
);
214 for (i
= 0; i
< curr
->page_count
; i
++) {
215 curr
->bridge
->driver
->agp_destroy_page(
217 AGP_PAGE_DESTROY_FREE
);
221 agp_free_key(curr
->key
);
222 agp_free_page_array(curr
);
225 EXPORT_SYMBOL(agp_free_memory
);
227 #define ENTRIES_PER_PAGE (PAGE_SIZE / sizeof(unsigned long))
230 * agp_allocate_memory - allocate a group of pages of a certain type.
232 * @page_count: size_t argument of the number of pages
233 * @type: u32 argument of the type of memory to be allocated.
235 * Every agp bridge device will allow you to allocate AGP_NORMAL_MEMORY which
236 * maps to physical ram. Any other type is device dependent.
238 * It returns NULL whenever memory is unavailable.
240 struct agp_memory
*agp_allocate_memory(struct agp_bridge_data
*bridge
,
241 size_t page_count
, u32 type
)
244 struct agp_memory
*new;
250 if ((atomic_read(&bridge
->current_memory_agp
) + page_count
) > bridge
->max_memory_agp
)
253 if (type
>= AGP_USER_TYPES
) {
254 new = agp_generic_alloc_user(page_count
, type
);
256 new->bridge
= bridge
;
261 new = bridge
->driver
->alloc_by_type(page_count
, type
);
263 new->bridge
= bridge
;
267 scratch_pages
= (page_count
+ ENTRIES_PER_PAGE
- 1) / ENTRIES_PER_PAGE
;
269 new = agp_create_memory(scratch_pages
);
274 if (bridge
->driver
->agp_alloc_pages
) {
275 if (bridge
->driver
->agp_alloc_pages(bridge
, new, page_count
)) {
276 agp_free_memory(new);
279 new->bridge
= bridge
;
283 for (i
= 0; i
< page_count
; i
++) {
284 struct page
*page
= bridge
->driver
->agp_alloc_page(bridge
);
287 agp_free_memory(new);
290 new->pages
[i
] = page
;
293 new->bridge
= bridge
;
297 EXPORT_SYMBOL(agp_allocate_memory
);
300 /* End - Generic routines for handling agp_memory structures */
303 static int agp_return_size(void)
308 temp
= agp_bridge
->current_size
;
310 switch (agp_bridge
->driver
->size_type
) {
312 current_size
= A_SIZE_8(temp
)->size
;
315 current_size
= A_SIZE_16(temp
)->size
;
318 current_size
= A_SIZE_32(temp
)->size
;
321 current_size
= A_SIZE_LVL2(temp
)->size
;
323 case FIXED_APER_SIZE
:
324 current_size
= A_SIZE_FIX(temp
)->size
;
331 current_size
-= (agp_memory_reserved
/ (1024*1024));
338 int agp_num_entries(void)
343 temp
= agp_bridge
->current_size
;
345 switch (agp_bridge
->driver
->size_type
) {
347 num_entries
= A_SIZE_8(temp
)->num_entries
;
350 num_entries
= A_SIZE_16(temp
)->num_entries
;
353 num_entries
= A_SIZE_32(temp
)->num_entries
;
356 num_entries
= A_SIZE_LVL2(temp
)->num_entries
;
358 case FIXED_APER_SIZE
:
359 num_entries
= A_SIZE_FIX(temp
)->num_entries
;
366 num_entries
-= agp_memory_reserved
>>PAGE_SHIFT
;
371 EXPORT_SYMBOL_GPL(agp_num_entries
);
375 * agp_copy_info - copy bridge state information
377 * @info: agp_kern_info pointer. The caller should insure that this pointer is valid.
379 * This function copies information about the agp bridge device and the state of
380 * the agp backend into an agp_kern_info pointer.
382 int agp_copy_info(struct agp_bridge_data
*bridge
, struct agp_kern_info
*info
)
384 memset(info
, 0, sizeof(struct agp_kern_info
));
386 info
->chipset
= NOT_SUPPORTED
;
390 info
->version
.major
= bridge
->version
->major
;
391 info
->version
.minor
= bridge
->version
->minor
;
392 info
->chipset
= SUPPORTED
;
393 info
->device
= bridge
->dev
;
394 if (bridge
->mode
& AGPSTAT_MODE_3_0
)
395 info
->mode
= bridge
->mode
& ~AGP3_RESERVED_MASK
;
397 info
->mode
= bridge
->mode
& ~AGP2_RESERVED_MASK
;
398 info
->aper_base
= bridge
->gart_bus_addr
;
399 info
->aper_size
= agp_return_size();
400 info
->max_memory
= bridge
->max_memory_agp
;
401 info
->current_memory
= atomic_read(&bridge
->current_memory_agp
);
402 info
->cant_use_aperture
= bridge
->driver
->cant_use_aperture
;
403 info
->vm_ops
= bridge
->vm_ops
;
404 info
->page_mask
= ~0UL;
407 EXPORT_SYMBOL(agp_copy_info
);
409 /* End - Routine to copy over information structure */
412 * Routines for handling swapping of agp_memory into the GATT -
413 * These routines take agp_memory and insert them into the GATT.
414 * They call device specific routines to actually write to the GATT.
418 * agp_bind_memory - Bind an agp_memory structure into the GATT.
420 * @curr: agp_memory pointer
421 * @pg_start: an offset into the graphics aperture translation table
423 * It returns -EINVAL if the pointer == NULL.
424 * It returns -EBUSY if the area of the table requested is already in use.
426 int agp_bind_memory(struct agp_memory
*curr
, off_t pg_start
)
433 if (curr
->is_bound
) {
434 printk(KERN_INFO PFX
"memory %p is already bound!\n", curr
);
437 if (!curr
->is_flushed
) {
438 curr
->bridge
->driver
->cache_flush();
439 curr
->is_flushed
= true;
442 if (curr
->bridge
->driver
->agp_map_memory
) {
443 ret_val
= curr
->bridge
->driver
->agp_map_memory(curr
);
447 ret_val
= curr
->bridge
->driver
->insert_memory(curr
, pg_start
, curr
->type
);
452 curr
->is_bound
= true;
453 curr
->pg_start
= pg_start
;
454 spin_lock(&agp_bridge
->mapped_lock
);
455 list_add(&curr
->mapped_list
, &agp_bridge
->mapped_list
);
456 spin_unlock(&agp_bridge
->mapped_lock
);
460 EXPORT_SYMBOL(agp_bind_memory
);
464 * agp_unbind_memory - Removes an agp_memory structure from the GATT
466 * @curr: agp_memory pointer to be removed from the GATT.
468 * It returns -EINVAL if this piece of agp_memory is not currently bound to
469 * the graphics aperture translation table or if the agp_memory pointer == NULL
471 int agp_unbind_memory(struct agp_memory
*curr
)
478 if (!curr
->is_bound
) {
479 printk(KERN_INFO PFX
"memory %p was not bound!\n", curr
);
483 ret_val
= curr
->bridge
->driver
->remove_memory(curr
, curr
->pg_start
, curr
->type
);
488 if (curr
->bridge
->driver
->agp_unmap_memory
)
489 curr
->bridge
->driver
->agp_unmap_memory(curr
);
491 curr
->is_bound
= false;
493 spin_lock(&curr
->bridge
->mapped_lock
);
494 list_del(&curr
->mapped_list
);
495 spin_unlock(&curr
->bridge
->mapped_lock
);
498 EXPORT_SYMBOL(agp_unbind_memory
);
501 * agp_rebind_emmory - Rewrite the entire GATT, useful on resume
503 int agp_rebind_memory(void)
505 struct agp_memory
*curr
;
508 spin_lock(&agp_bridge
->mapped_lock
);
509 list_for_each_entry(curr
, &agp_bridge
->mapped_list
, mapped_list
) {
510 ret_val
= curr
->bridge
->driver
->insert_memory(curr
,
516 spin_unlock(&agp_bridge
->mapped_lock
);
519 EXPORT_SYMBOL(agp_rebind_memory
);
521 /* End - Routines for handling swapping of agp_memory into the GATT */
524 /* Generic Agp routines - Start */
525 static void agp_v2_parse_one(u32
*requested_mode
, u32
*bridge_agpstat
, u32
*vga_agpstat
)
529 if (*requested_mode
& AGP2_RESERVED_MASK
) {
530 printk(KERN_INFO PFX
"reserved bits set (%x) in mode 0x%x. Fixed.\n",
531 *requested_mode
& AGP2_RESERVED_MASK
, *requested_mode
);
532 *requested_mode
&= ~AGP2_RESERVED_MASK
;
536 * Some dumb bridges are programmed to disobey the AGP2 spec.
537 * This is likely a BIOS misprogramming rather than poweron default, or
538 * it would be a lot more common.
539 * https://bugs.freedesktop.org/show_bug.cgi?id=8816
540 * AGPv2 spec 6.1.9 states:
541 * The RATE field indicates the data transfer rates supported by this
542 * device. A.G.P. devices must report all that apply.
543 * Fix them up as best we can.
545 switch (*bridge_agpstat
& 7) {
547 *bridge_agpstat
|= (AGPSTAT2_2X
| AGPSTAT2_1X
);
548 printk(KERN_INFO PFX
"BIOS bug. AGP bridge claims to only support x4 rate"
549 "Fixing up support for x2 & x1\n");
552 *bridge_agpstat
|= AGPSTAT2_1X
;
553 printk(KERN_INFO PFX
"BIOS bug. AGP bridge claims to only support x2 rate"
554 "Fixing up support for x1\n");
560 /* Check the speed bits make sense. Only one should be set. */
561 tmp
= *requested_mode
& 7;
564 printk(KERN_INFO PFX
"%s tried to set rate=x0. Setting to x1 mode.\n", current
->comm
);
565 *requested_mode
|= AGPSTAT2_1X
;
571 *requested_mode
&= ~(AGPSTAT2_1X
); /* rate=2 */
578 *requested_mode
&= ~(AGPSTAT2_1X
|AGPSTAT2_2X
); /* rate=4*/
582 /* disable SBA if it's not supported */
583 if (!((*bridge_agpstat
& AGPSTAT_SBA
) && (*vga_agpstat
& AGPSTAT_SBA
) && (*requested_mode
& AGPSTAT_SBA
)))
584 *bridge_agpstat
&= ~AGPSTAT_SBA
;
587 if (!((*bridge_agpstat
& AGPSTAT2_4X
) && (*vga_agpstat
& AGPSTAT2_4X
) && (*requested_mode
& AGPSTAT2_4X
)))
588 *bridge_agpstat
&= ~AGPSTAT2_4X
;
590 if (!((*bridge_agpstat
& AGPSTAT2_2X
) && (*vga_agpstat
& AGPSTAT2_2X
) && (*requested_mode
& AGPSTAT2_2X
)))
591 *bridge_agpstat
&= ~AGPSTAT2_2X
;
593 if (!((*bridge_agpstat
& AGPSTAT2_1X
) && (*vga_agpstat
& AGPSTAT2_1X
) && (*requested_mode
& AGPSTAT2_1X
)))
594 *bridge_agpstat
&= ~AGPSTAT2_1X
;
596 /* Now we know what mode it should be, clear out the unwanted bits. */
597 if (*bridge_agpstat
& AGPSTAT2_4X
)
598 *bridge_agpstat
&= ~(AGPSTAT2_1X
| AGPSTAT2_2X
); /* 4X */
600 if (*bridge_agpstat
& AGPSTAT2_2X
)
601 *bridge_agpstat
&= ~(AGPSTAT2_1X
| AGPSTAT2_4X
); /* 2X */
603 if (*bridge_agpstat
& AGPSTAT2_1X
)
604 *bridge_agpstat
&= ~(AGPSTAT2_2X
| AGPSTAT2_4X
); /* 1X */
606 /* Apply any errata. */
607 if (agp_bridge
->flags
& AGP_ERRATA_FASTWRITES
)
608 *bridge_agpstat
&= ~AGPSTAT_FW
;
610 if (agp_bridge
->flags
& AGP_ERRATA_SBA
)
611 *bridge_agpstat
&= ~AGPSTAT_SBA
;
613 if (agp_bridge
->flags
& AGP_ERRATA_1X
) {
614 *bridge_agpstat
&= ~(AGPSTAT2_2X
| AGPSTAT2_4X
);
615 *bridge_agpstat
|= AGPSTAT2_1X
;
618 /* If we've dropped down to 1X, disable fast writes. */
619 if (*bridge_agpstat
& AGPSTAT2_1X
)
620 *bridge_agpstat
&= ~AGPSTAT_FW
;
624 * requested_mode = Mode requested by (typically) X.
625 * bridge_agpstat = PCI_AGP_STATUS from agp bridge.
626 * vga_agpstat = PCI_AGP_STATUS from graphic card.
628 static void agp_v3_parse_one(u32
*requested_mode
, u32
*bridge_agpstat
, u32
*vga_agpstat
)
630 u32 origbridge
=*bridge_agpstat
, origvga
=*vga_agpstat
;
633 if (*requested_mode
& AGP3_RESERVED_MASK
) {
634 printk(KERN_INFO PFX
"reserved bits set (%x) in mode 0x%x. Fixed.\n",
635 *requested_mode
& AGP3_RESERVED_MASK
, *requested_mode
);
636 *requested_mode
&= ~AGP3_RESERVED_MASK
;
639 /* Check the speed bits make sense. */
640 tmp
= *requested_mode
& 7;
642 printk(KERN_INFO PFX
"%s tried to set rate=x0. Setting to AGP3 x4 mode.\n", current
->comm
);
643 *requested_mode
|= AGPSTAT3_4X
;
646 printk(KERN_INFO PFX
"%s tried to set rate=x%d. Setting to AGP3 x8 mode.\n", current
->comm
, tmp
* 4);
647 *requested_mode
= (*requested_mode
& ~7) | AGPSTAT3_8X
;
650 /* ARQSZ - Set the value to the maximum one.
651 * Don't allow the mode register to override values. */
652 *bridge_agpstat
= ((*bridge_agpstat
& ~AGPSTAT_ARQSZ
) |
653 max_t(u32
,(*bridge_agpstat
& AGPSTAT_ARQSZ
),(*vga_agpstat
& AGPSTAT_ARQSZ
)));
655 /* Calibration cycle.
656 * Don't allow the mode register to override values. */
657 *bridge_agpstat
= ((*bridge_agpstat
& ~AGPSTAT_CAL_MASK
) |
658 min_t(u32
,(*bridge_agpstat
& AGPSTAT_CAL_MASK
),(*vga_agpstat
& AGPSTAT_CAL_MASK
)));
660 /* SBA *must* be supported for AGP v3 */
661 *bridge_agpstat
|= AGPSTAT_SBA
;
665 * Check for invalid speeds. This can happen when applications
666 * written before the AGP 3.0 standard pass AGP2.x modes to AGP3 hardware
668 if (*requested_mode
& AGPSTAT_MODE_3_0
) {
670 * Caller hasn't a clue what it is doing. Bridge is in 3.0 mode,
671 * have been passed a 3.0 mode, but with 2.x speed bits set.
672 * AGP2.x 4x -> AGP3.0 4x.
674 if (*requested_mode
& AGPSTAT2_4X
) {
675 printk(KERN_INFO PFX
"%s passes broken AGP3 flags (%x). Fixed.\n",
676 current
->comm
, *requested_mode
);
677 *requested_mode
&= ~AGPSTAT2_4X
;
678 *requested_mode
|= AGPSTAT3_4X
;
682 * The caller doesn't know what they are doing. We are in 3.0 mode,
683 * but have been passed an AGP 2.x mode.
684 * Convert AGP 1x,2x,4x -> AGP 3.0 4x.
686 printk(KERN_INFO PFX
"%s passes broken AGP2 flags (%x) in AGP3 mode. Fixed.\n",
687 current
->comm
, *requested_mode
);
688 *requested_mode
&= ~(AGPSTAT2_4X
| AGPSTAT2_2X
| AGPSTAT2_1X
);
689 *requested_mode
|= AGPSTAT3_4X
;
692 if (*requested_mode
& AGPSTAT3_8X
) {
693 if (!(*bridge_agpstat
& AGPSTAT3_8X
)) {
694 *bridge_agpstat
&= ~(AGPSTAT3_8X
| AGPSTAT3_RSVD
);
695 *bridge_agpstat
|= AGPSTAT3_4X
;
696 printk(KERN_INFO PFX
"%s requested AGPx8 but bridge not capable.\n", current
->comm
);
699 if (!(*vga_agpstat
& AGPSTAT3_8X
)) {
700 *bridge_agpstat
&= ~(AGPSTAT3_8X
| AGPSTAT3_RSVD
);
701 *bridge_agpstat
|= AGPSTAT3_4X
;
702 printk(KERN_INFO PFX
"%s requested AGPx8 but graphic card not capable.\n", current
->comm
);
705 /* All set, bridge & device can do AGP x8*/
706 *bridge_agpstat
&= ~(AGPSTAT3_4X
| AGPSTAT3_RSVD
);
709 } else if (*requested_mode
& AGPSTAT3_4X
) {
710 *bridge_agpstat
&= ~(AGPSTAT3_8X
| AGPSTAT3_RSVD
);
711 *bridge_agpstat
|= AGPSTAT3_4X
;
717 * If we didn't specify an AGP mode, we see if both
718 * the graphics card, and the bridge can do x8, and use if so.
719 * If not, we fall back to x4 mode.
721 if ((*bridge_agpstat
& AGPSTAT3_8X
) && (*vga_agpstat
& AGPSTAT3_8X
)) {
722 printk(KERN_INFO PFX
"No AGP mode specified. Setting to highest mode "
723 "supported by bridge & card (x8).\n");
724 *bridge_agpstat
&= ~(AGPSTAT3_4X
| AGPSTAT3_RSVD
);
725 *vga_agpstat
&= ~(AGPSTAT3_4X
| AGPSTAT3_RSVD
);
727 printk(KERN_INFO PFX
"Fell back to AGPx4 mode because");
728 if (!(*bridge_agpstat
& AGPSTAT3_8X
)) {
729 printk(KERN_INFO PFX
"bridge couldn't do x8. bridge_agpstat:%x (orig=%x)\n",
730 *bridge_agpstat
, origbridge
);
731 *bridge_agpstat
&= ~(AGPSTAT3_8X
| AGPSTAT3_RSVD
);
732 *bridge_agpstat
|= AGPSTAT3_4X
;
734 if (!(*vga_agpstat
& AGPSTAT3_8X
)) {
735 printk(KERN_INFO PFX
"graphics card couldn't do x8. vga_agpstat:%x (orig=%x)\n",
736 *vga_agpstat
, origvga
);
737 *vga_agpstat
&= ~(AGPSTAT3_8X
| AGPSTAT3_RSVD
);
738 *vga_agpstat
|= AGPSTAT3_4X
;
744 /* Apply any errata. */
745 if (agp_bridge
->flags
& AGP_ERRATA_FASTWRITES
)
746 *bridge_agpstat
&= ~AGPSTAT_FW
;
748 if (agp_bridge
->flags
& AGP_ERRATA_SBA
)
749 *bridge_agpstat
&= ~AGPSTAT_SBA
;
751 if (agp_bridge
->flags
& AGP_ERRATA_1X
) {
752 *bridge_agpstat
&= ~(AGPSTAT2_2X
| AGPSTAT2_4X
);
753 *bridge_agpstat
|= AGPSTAT2_1X
;
759 * agp_collect_device_status - determine correct agp_cmd from various agp_stat's
760 * @bridge: an agp_bridge_data struct allocated for the AGP host bridge.
761 * @requested_mode: requested agp_stat from userspace (Typically from X)
762 * @bridge_agpstat: current agp_stat from AGP bridge.
764 * This function will hunt for an AGP graphics card, and try to match
765 * the requested mode to the capabilities of both the bridge and the card.
767 u32
agp_collect_device_status(struct agp_bridge_data
*bridge
, u32 requested_mode
, u32 bridge_agpstat
)
769 struct pci_dev
*device
= NULL
;
774 device
= pci_get_class(PCI_CLASS_DISPLAY_VGA
<< 8, device
);
776 printk(KERN_INFO PFX
"Couldn't find an AGP VGA controller.\n");
779 cap_ptr
= pci_find_capability(device
, PCI_CAP_ID_AGP
);
785 * Ok, here we have a AGP device. Disable impossible
786 * settings, and adjust the readqueue to the minimum.
788 pci_read_config_dword(device
, cap_ptr
+PCI_AGP_STATUS
, &vga_agpstat
);
790 /* adjust RQ depth */
791 bridge_agpstat
= ((bridge_agpstat
& ~AGPSTAT_RQ_DEPTH
) |
792 min_t(u32
, (requested_mode
& AGPSTAT_RQ_DEPTH
),
793 min_t(u32
, (bridge_agpstat
& AGPSTAT_RQ_DEPTH
), (vga_agpstat
& AGPSTAT_RQ_DEPTH
))));
795 /* disable FW if it's not supported */
796 if (!((bridge_agpstat
& AGPSTAT_FW
) &&
797 (vga_agpstat
& AGPSTAT_FW
) &&
798 (requested_mode
& AGPSTAT_FW
)))
799 bridge_agpstat
&= ~AGPSTAT_FW
;
801 /* Check to see if we are operating in 3.0 mode */
802 if (agp_bridge
->mode
& AGPSTAT_MODE_3_0
)
803 agp_v3_parse_one(&requested_mode
, &bridge_agpstat
, &vga_agpstat
);
805 agp_v2_parse_one(&requested_mode
, &bridge_agpstat
, &vga_agpstat
);
808 return bridge_agpstat
;
810 EXPORT_SYMBOL(agp_collect_device_status
);
813 void agp_device_command(u32 bridge_agpstat
, bool agp_v3
)
815 struct pci_dev
*device
= NULL
;
818 mode
= bridge_agpstat
& 0x7;
822 for_each_pci_dev(device
) {
823 u8 agp
= pci_find_capability(device
, PCI_CAP_ID_AGP
);
827 dev_info(&device
->dev
, "putting AGP V%d device into %dx mode\n",
828 agp_v3
? 3 : 2, mode
);
829 pci_write_config_dword(device
, agp
+ PCI_AGP_COMMAND
, bridge_agpstat
);
832 EXPORT_SYMBOL(agp_device_command
);
835 void get_agp_version(struct agp_bridge_data
*bridge
)
839 /* Exit early if already set by errata workarounds. */
840 if (bridge
->major_version
!= 0)
843 pci_read_config_dword(bridge
->dev
, bridge
->capndx
, &ncapid
);
844 bridge
->major_version
= (ncapid
>> AGP_MAJOR_VERSION_SHIFT
) & 0xf;
845 bridge
->minor_version
= (ncapid
>> AGP_MINOR_VERSION_SHIFT
) & 0xf;
847 EXPORT_SYMBOL(get_agp_version
);
850 void agp_generic_enable(struct agp_bridge_data
*bridge
, u32 requested_mode
)
852 u32 bridge_agpstat
, temp
;
854 get_agp_version(agp_bridge
);
856 dev_info(&agp_bridge
->dev
->dev
, "AGP %d.%d bridge\n",
857 agp_bridge
->major_version
, agp_bridge
->minor_version
);
859 pci_read_config_dword(agp_bridge
->dev
,
860 agp_bridge
->capndx
+ PCI_AGP_STATUS
, &bridge_agpstat
);
862 bridge_agpstat
= agp_collect_device_status(agp_bridge
, requested_mode
, bridge_agpstat
);
863 if (bridge_agpstat
== 0)
864 /* Something bad happened. FIXME: Return error code? */
867 bridge_agpstat
|= AGPSTAT_AGP_ENABLE
;
869 /* Do AGP version specific frobbing. */
870 if (bridge
->major_version
>= 3) {
871 if (bridge
->mode
& AGPSTAT_MODE_3_0
) {
872 /* If we have 3.5, we can do the isoch stuff. */
873 if (bridge
->minor_version
>= 5)
874 agp_3_5_enable(bridge
);
875 agp_device_command(bridge_agpstat
, true);
878 /* Disable calibration cycle in RX91<1> when not in AGP3.0 mode of operation.*/
879 bridge_agpstat
&= ~(7<<10) ;
880 pci_read_config_dword(bridge
->dev
,
881 bridge
->capndx
+AGPCTRL
, &temp
);
883 pci_write_config_dword(bridge
->dev
,
884 bridge
->capndx
+AGPCTRL
, temp
);
886 dev_info(&bridge
->dev
->dev
, "bridge is in legacy mode, falling back to 2.x\n");
891 agp_device_command(bridge_agpstat
, false);
893 EXPORT_SYMBOL(agp_generic_enable
);
896 int agp_generic_create_gatt_table(struct agp_bridge_data
*bridge
)
907 /* The generic routines can't handle 2 level gatt's */
908 if (bridge
->driver
->size_type
== LVL2_APER_SIZE
)
912 i
= bridge
->aperture_size_idx
;
913 temp
= bridge
->current_size
;
914 size
= page_order
= num_entries
= 0;
916 if (bridge
->driver
->size_type
!= FIXED_APER_SIZE
) {
918 switch (bridge
->driver
->size_type
) {
920 size
= A_SIZE_8(temp
)->size
;
922 A_SIZE_8(temp
)->page_order
;
924 A_SIZE_8(temp
)->num_entries
;
927 size
= A_SIZE_16(temp
)->size
;
928 page_order
= A_SIZE_16(temp
)->page_order
;
929 num_entries
= A_SIZE_16(temp
)->num_entries
;
932 size
= A_SIZE_32(temp
)->size
;
933 page_order
= A_SIZE_32(temp
)->page_order
;
934 num_entries
= A_SIZE_32(temp
)->num_entries
;
936 /* This case will never really happen. */
937 case FIXED_APER_SIZE
:
940 size
= page_order
= num_entries
= 0;
944 table
= alloc_gatt_pages(page_order
);
948 switch (bridge
->driver
->size_type
) {
950 bridge
->current_size
= A_IDX8(bridge
);
953 bridge
->current_size
= A_IDX16(bridge
);
956 bridge
->current_size
= A_IDX32(bridge
);
958 /* These cases will never really happen. */
959 case FIXED_APER_SIZE
:
964 temp
= bridge
->current_size
;
966 bridge
->aperture_size_idx
= i
;
968 } while (!table
&& (i
< bridge
->driver
->num_aperture_sizes
));
970 size
= ((struct aper_size_info_fixed
*) temp
)->size
;
971 page_order
= ((struct aper_size_info_fixed
*) temp
)->page_order
;
972 num_entries
= ((struct aper_size_info_fixed
*) temp
)->num_entries
;
973 table
= alloc_gatt_pages(page_order
);
979 table_end
= table
+ ((PAGE_SIZE
* (1 << page_order
)) - 1);
981 for (page
= virt_to_page(table
); page
<= virt_to_page(table_end
); page
++)
982 SetPageReserved(page
);
984 bridge
->gatt_table_real
= (u32
*) table
;
985 agp_gatt_table
= (void *)table
;
987 bridge
->driver
->cache_flush();
989 set_memory_uc((unsigned long)table
, 1 << page_order
);
990 bridge
->gatt_table
= (void *)table
;
992 bridge
->gatt_table
= ioremap_nocache(virt_to_phys(table
),
993 (PAGE_SIZE
* (1 << page_order
)));
994 bridge
->driver
->cache_flush();
997 if (bridge
->gatt_table
== NULL
) {
998 for (page
= virt_to_page(table
); page
<= virt_to_page(table_end
); page
++)
999 ClearPageReserved(page
);
1001 free_gatt_pages(table
, page_order
);
1005 bridge
->gatt_bus_addr
= virt_to_phys(bridge
->gatt_table_real
);
1007 /* AK: bogus, should encode addresses > 4GB */
1008 for (i
= 0; i
< num_entries
; i
++) {
1009 writel(bridge
->scratch_page
, bridge
->gatt_table
+i
);
1010 readl(bridge
->gatt_table
+i
); /* PCI Posting. */
1015 EXPORT_SYMBOL(agp_generic_create_gatt_table
);
1017 int agp_generic_free_gatt_table(struct agp_bridge_data
*bridge
)
1020 char *table
, *table_end
;
1024 temp
= bridge
->current_size
;
1026 switch (bridge
->driver
->size_type
) {
1028 page_order
= A_SIZE_8(temp
)->page_order
;
1031 page_order
= A_SIZE_16(temp
)->page_order
;
1034 page_order
= A_SIZE_32(temp
)->page_order
;
1036 case FIXED_APER_SIZE
:
1037 page_order
= A_SIZE_FIX(temp
)->page_order
;
1039 case LVL2_APER_SIZE
:
1040 /* The generic routines can't deal with 2 level gatt's */
1048 /* Do not worry about freeing memory, because if this is
1049 * called, then all agp memory is deallocated and removed
1050 * from the table. */
1053 set_memory_wb((unsigned long)bridge
->gatt_table
, 1 << page_order
);
1055 iounmap(bridge
->gatt_table
);
1057 table
= (char *) bridge
->gatt_table_real
;
1058 table_end
= table
+ ((PAGE_SIZE
* (1 << page_order
)) - 1);
1060 for (page
= virt_to_page(table
); page
<= virt_to_page(table_end
); page
++)
1061 ClearPageReserved(page
);
1063 free_gatt_pages(bridge
->gatt_table_real
, page_order
);
1065 agp_gatt_table
= NULL
;
1066 bridge
->gatt_table
= NULL
;
1067 bridge
->gatt_table_real
= NULL
;
1068 bridge
->gatt_bus_addr
= 0;
1072 EXPORT_SYMBOL(agp_generic_free_gatt_table
);
1075 int agp_generic_insert_memory(struct agp_memory
* mem
, off_t pg_start
, int type
)
1081 struct agp_bridge_data
*bridge
;
1084 bridge
= mem
->bridge
;
1088 if (mem
->page_count
== 0)
1091 temp
= bridge
->current_size
;
1093 switch (bridge
->driver
->size_type
) {
1095 num_entries
= A_SIZE_8(temp
)->num_entries
;
1098 num_entries
= A_SIZE_16(temp
)->num_entries
;
1101 num_entries
= A_SIZE_32(temp
)->num_entries
;
1103 case FIXED_APER_SIZE
:
1104 num_entries
= A_SIZE_FIX(temp
)->num_entries
;
1106 case LVL2_APER_SIZE
:
1107 /* The generic routines can't deal with 2 level gatt's */
1115 num_entries
-= agp_memory_reserved
/PAGE_SIZE
;
1116 if (num_entries
< 0) num_entries
= 0;
1118 if (type
!= mem
->type
)
1121 mask_type
= bridge
->driver
->agp_type_to_mask_type(bridge
, type
);
1122 if (mask_type
!= 0) {
1123 /* The generic routines know nothing of memory types */
1127 /* AK: could wrap */
1128 if ((pg_start
+ mem
->page_count
) > num_entries
)
1133 while (j
< (pg_start
+ mem
->page_count
)) {
1134 if (!PGE_EMPTY(bridge
, readl(bridge
->gatt_table
+j
)))
1139 if (!mem
->is_flushed
) {
1140 bridge
->driver
->cache_flush();
1141 mem
->is_flushed
= true;
1144 for (i
= 0, j
= pg_start
; i
< mem
->page_count
; i
++, j
++) {
1145 writel(bridge
->driver
->mask_memory(bridge
,
1146 page_to_phys(mem
->pages
[i
]),
1148 bridge
->gatt_table
+j
);
1150 readl(bridge
->gatt_table
+j
-1); /* PCI Posting. */
1152 bridge
->driver
->tlb_flush(mem
);
1155 EXPORT_SYMBOL(agp_generic_insert_memory
);
1158 int agp_generic_remove_memory(struct agp_memory
*mem
, off_t pg_start
, int type
)
1161 struct agp_bridge_data
*bridge
;
1164 bridge
= mem
->bridge
;
1168 if (mem
->page_count
== 0)
1171 if (type
!= mem
->type
)
1174 mask_type
= bridge
->driver
->agp_type_to_mask_type(bridge
, type
);
1175 if (mask_type
!= 0) {
1176 /* The generic routines know nothing of memory types */
1180 /* AK: bogus, should encode addresses > 4GB */
1181 for (i
= pg_start
; i
< (mem
->page_count
+ pg_start
); i
++) {
1182 writel(bridge
->scratch_page
, bridge
->gatt_table
+i
);
1184 readl(bridge
->gatt_table
+i
-1); /* PCI Posting. */
1186 bridge
->driver
->tlb_flush(mem
);
1189 EXPORT_SYMBOL(agp_generic_remove_memory
);
1191 struct agp_memory
*agp_generic_alloc_by_type(size_t page_count
, int type
)
1195 EXPORT_SYMBOL(agp_generic_alloc_by_type
);
1197 void agp_generic_free_by_type(struct agp_memory
*curr
)
1199 agp_free_page_array(curr
);
1200 agp_free_key(curr
->key
);
1203 EXPORT_SYMBOL(agp_generic_free_by_type
);
1205 struct agp_memory
*agp_generic_alloc_user(size_t page_count
, int type
)
1207 struct agp_memory
*new;
1211 pages
= (page_count
+ ENTRIES_PER_PAGE
- 1) / ENTRIES_PER_PAGE
;
1212 new = agp_create_user_memory(page_count
);
1216 for (i
= 0; i
< page_count
; i
++)
1218 new->page_count
= 0;
1220 new->num_scratch_pages
= pages
;
1224 EXPORT_SYMBOL(agp_generic_alloc_user
);
1227 * Basic Page Allocation Routines -
1228 * These routines handle page allocation and by default they reserve the allocated
1229 * memory. They also handle incrementing the current_memory_agp value, Which is checked
1230 * against a maximum value.
1233 int agp_generic_alloc_pages(struct agp_bridge_data
*bridge
, struct agp_memory
*mem
, size_t num_pages
)
1236 int i
, ret
= -ENOMEM
;
1238 for (i
= 0; i
< num_pages
; i
++) {
1239 page
= alloc_page(GFP_KERNEL
| GFP_DMA32
| __GFP_ZERO
);
1240 /* agp_free_memory() needs gart address */
1245 map_page_into_agp(page
);
1248 atomic_inc(&agp_bridge
->current_memory_agp
);
1250 mem
->pages
[i
] = page
;
1255 set_pages_array_uc(mem
->pages
, num_pages
);
1261 EXPORT_SYMBOL(agp_generic_alloc_pages
);
1263 struct page
*agp_generic_alloc_page(struct agp_bridge_data
*bridge
)
1267 page
= alloc_page(GFP_KERNEL
| GFP_DMA32
| __GFP_ZERO
);
1271 map_page_into_agp(page
);
1274 atomic_inc(&agp_bridge
->current_memory_agp
);
1277 EXPORT_SYMBOL(agp_generic_alloc_page
);
1279 void agp_generic_destroy_pages(struct agp_memory
*mem
)
1288 set_pages_array_wb(mem
->pages
, mem
->page_count
);
1291 for (i
= 0; i
< mem
->page_count
; i
++) {
1292 page
= mem
->pages
[i
];
1295 unmap_page_from_agp(page
);
1299 atomic_dec(&agp_bridge
->current_memory_agp
);
1300 mem
->pages
[i
] = NULL
;
1303 EXPORT_SYMBOL(agp_generic_destroy_pages
);
1305 void agp_generic_destroy_page(struct page
*page
, int flags
)
1310 if (flags
& AGP_PAGE_DESTROY_UNMAP
)
1311 unmap_page_from_agp(page
);
1313 if (flags
& AGP_PAGE_DESTROY_FREE
) {
1316 atomic_dec(&agp_bridge
->current_memory_agp
);
1319 EXPORT_SYMBOL(agp_generic_destroy_page
);
1321 /* End Basic Page Allocation Routines */
1325 * agp_enable - initialise the agp point-to-point connection.
1327 * @mode: agp mode register value to configure with.
1329 void agp_enable(struct agp_bridge_data
*bridge
, u32 mode
)
1333 bridge
->driver
->agp_enable(bridge
, mode
);
1335 EXPORT_SYMBOL(agp_enable
);
1337 /* When we remove the global variable agp_bridge from all drivers
1338 * then agp_alloc_bridge and agp_generic_find_bridge need to be updated
1341 struct agp_bridge_data
*agp_generic_find_bridge(struct pci_dev
*pdev
)
1343 if (list_empty(&agp_bridges
))
1349 static void ipi_handler(void *null
)
1354 void global_cache_flush(void)
1356 if (on_each_cpu(ipi_handler
, NULL
, 1) != 0)
1357 panic(PFX
"timed out waiting for the other CPUs!\n");
1359 EXPORT_SYMBOL(global_cache_flush
);
1361 unsigned long agp_generic_mask_memory(struct agp_bridge_data
*bridge
,
1362 dma_addr_t addr
, int type
)
1364 /* memory type is ignored in the generic routine */
1365 if (bridge
->driver
->masks
)
1366 return addr
| bridge
->driver
->masks
[0].mask
;
1370 EXPORT_SYMBOL(agp_generic_mask_memory
);
1372 int agp_generic_type_to_mask_type(struct agp_bridge_data
*bridge
,
1375 if (type
>= AGP_USER_TYPES
)
1379 EXPORT_SYMBOL(agp_generic_type_to_mask_type
);
1382 * These functions are implemented according to the AGPv3 spec,
1383 * which covers implementation details that had previously been
1387 int agp3_generic_fetch_size(void)
1391 struct aper_size_info_16
*values
;
1393 pci_read_config_word(agp_bridge
->dev
, agp_bridge
->capndx
+AGPAPSIZE
, &temp_size
);
1394 values
= A_SIZE_16(agp_bridge
->driver
->aperture_sizes
);
1396 for (i
= 0; i
< agp_bridge
->driver
->num_aperture_sizes
; i
++) {
1397 if (temp_size
== values
[i
].size_value
) {
1398 agp_bridge
->previous_size
=
1399 agp_bridge
->current_size
= (void *) (values
+ i
);
1401 agp_bridge
->aperture_size_idx
= i
;
1402 return values
[i
].size
;
1407 EXPORT_SYMBOL(agp3_generic_fetch_size
);
1409 void agp3_generic_tlbflush(struct agp_memory
*mem
)
1412 pci_read_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPCTRL
, &ctrl
);
1413 pci_write_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPCTRL
, ctrl
& ~AGPCTRL_GTLBEN
);
1414 pci_write_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPCTRL
, ctrl
);
1416 EXPORT_SYMBOL(agp3_generic_tlbflush
);
1418 int agp3_generic_configure(void)
1421 struct aper_size_info_16
*current_size
;
1423 current_size
= A_SIZE_16(agp_bridge
->current_size
);
1425 pci_read_config_dword(agp_bridge
->dev
, AGP_APBASE
, &temp
);
1426 agp_bridge
->gart_bus_addr
= (temp
& PCI_BASE_ADDRESS_MEM_MASK
);
1428 /* set aperture size */
1429 pci_write_config_word(agp_bridge
->dev
, agp_bridge
->capndx
+AGPAPSIZE
, current_size
->size_value
);
1430 /* set gart pointer */
1431 pci_write_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPGARTLO
, agp_bridge
->gatt_bus_addr
);
1432 /* enable aperture and GTLB */
1433 pci_read_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPCTRL
, &temp
);
1434 pci_write_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPCTRL
, temp
| AGPCTRL_APERENB
| AGPCTRL_GTLBEN
);
1437 EXPORT_SYMBOL(agp3_generic_configure
);
1439 void agp3_generic_cleanup(void)
1442 pci_read_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPCTRL
, &ctrl
);
1443 pci_write_config_dword(agp_bridge
->dev
, agp_bridge
->capndx
+AGPCTRL
, ctrl
& ~AGPCTRL_APERENB
);
1445 EXPORT_SYMBOL(agp3_generic_cleanup
);
1447 const struct aper_size_info_16 agp3_generic_sizes
[AGP_GENERIC_SIZES_ENTRIES
] =
1449 {4096, 1048576, 10,0x000},
1450 {2048, 524288, 9, 0x800},
1451 {1024, 262144, 8, 0xc00},
1452 { 512, 131072, 7, 0xe00},
1453 { 256, 65536, 6, 0xf00},
1454 { 128, 32768, 5, 0xf20},
1455 { 64, 16384, 4, 0xf30},
1456 { 32, 8192, 3, 0xf38},
1457 { 16, 4096, 2, 0xf3c},
1458 { 8, 2048, 1, 0xf3e},
1459 { 4, 1024, 0, 0xf3f}
1461 EXPORT_SYMBOL(agp3_generic_sizes
);