2 * AGPGART driver backend routines.
3 * Copyright (C) 2004 Silicon Graphics, Inc.
4 * Copyright (C) 2002-2003 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, DAVE JONES, 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/slab.h>
34 #include <linux/pagemap.h>
35 #include <linux/miscdevice.h>
37 #include <linux/agp_backend.h>
38 #include <linux/agpgart.h>
39 #include <linux/vmalloc.h>
43 /* Due to XFree86 brain-damage, we can't go to 1.0 until they
44 * fix some real stupidity. It's only by chance we can bump
45 * past 0.99 at all due to some boolean logic error. */
46 #define AGPGART_VERSION_MAJOR 0
47 #define AGPGART_VERSION_MINOR 103
48 static const struct agp_version agp_current_version
=
50 .major
= AGPGART_VERSION_MAJOR
,
51 .minor
= AGPGART_VERSION_MINOR
,
54 struct agp_bridge_data
*(*agp_find_bridge
)(struct pci_dev
*) =
55 &agp_generic_find_bridge
;
57 struct agp_bridge_data
*agp_bridge
;
58 LIST_HEAD(agp_bridges
);
59 EXPORT_SYMBOL(agp_bridge
);
60 EXPORT_SYMBOL(agp_bridges
);
61 EXPORT_SYMBOL(agp_find_bridge
);
64 * agp_backend_acquire - attempt to acquire an agp backend.
67 struct agp_bridge_data
*agp_backend_acquire(struct pci_dev
*pdev
)
69 struct agp_bridge_data
*bridge
;
71 bridge
= agp_find_bridge(pdev
);
76 if (atomic_read(&bridge
->agp_in_use
))
78 atomic_inc(&bridge
->agp_in_use
);
81 EXPORT_SYMBOL(agp_backend_acquire
);
85 * agp_backend_release - release the lock on the agp backend.
87 * The caller must insure that the graphics aperture translation table
88 * is read for use by another entity.
90 * (Ensure that all memory it bound is unbound.)
92 void agp_backend_release(struct agp_bridge_data
*bridge
)
96 atomic_dec(&bridge
->agp_in_use
);
98 EXPORT_SYMBOL(agp_backend_release
);
101 static const struct { int mem
, agp
; } maxes_table
[] = {
113 static int agp_find_max(void)
115 long memory
, index
, result
;
118 memory
= totalram_pages
>> (20 - PAGE_SHIFT
);
120 memory
= totalram_pages
<< (PAGE_SHIFT
- 20);
124 while ((memory
> maxes_table
[index
].mem
) && (index
< 8))
127 result
= maxes_table
[index
- 1].agp
+
128 ( (memory
- maxes_table
[index
- 1].mem
) *
129 (maxes_table
[index
].agp
- maxes_table
[index
- 1].agp
)) /
130 (maxes_table
[index
].mem
- maxes_table
[index
- 1].mem
);
132 result
= result
<< (20 - PAGE_SHIFT
);
137 static int agp_backend_initialize(struct agp_bridge_data
*bridge
)
139 int size_value
, rc
, got_gatt
=0, got_keylist
=0;
141 bridge
->max_memory_agp
= agp_find_max();
142 bridge
->version
= &agp_current_version
;
144 if (bridge
->driver
->needs_scratch_page
) {
145 struct page
*page
= bridge
->driver
->agp_alloc_page(bridge
);
148 dev_err(&bridge
->dev
->dev
,
149 "can't get memory for scratch page\n");
153 bridge
->scratch_page_page
= page
;
154 if (bridge
->driver
->agp_map_page
) {
155 if (bridge
->driver
->agp_map_page(page
,
156 &bridge
->scratch_page_dma
)) {
157 dev_err(&bridge
->dev
->dev
,
158 "unable to dma-map scratch page\n");
160 goto err_out_nounmap
;
163 bridge
->scratch_page_dma
= page_to_phys(page
);
166 bridge
->scratch_page
= bridge
->driver
->mask_memory(bridge
,
167 bridge
->scratch_page_dma
, 0);
170 size_value
= bridge
->driver
->fetch_size();
171 if (size_value
== 0) {
172 dev_err(&bridge
->dev
->dev
, "can't determine aperture size\n");
176 if (bridge
->driver
->create_gatt_table(bridge
)) {
177 dev_err(&bridge
->dev
->dev
,
178 "can't get memory for graphics translation table\n");
184 bridge
->key_list
= vmalloc(PAGE_SIZE
* 4);
185 if (bridge
->key_list
== NULL
) {
186 dev_err(&bridge
->dev
->dev
,
187 "can't allocate memory for key lists\n");
193 /* FIXME vmalloc'd memory not guaranteed contiguous */
194 memset(bridge
->key_list
, 0, PAGE_SIZE
* 4);
196 if (bridge
->driver
->configure()) {
197 dev_err(&bridge
->dev
->dev
, "error configuring host chipset\n");
201 INIT_LIST_HEAD(&bridge
->mapped_list
);
202 spin_lock_init(&bridge
->mapped_lock
);
207 if (bridge
->driver
->needs_scratch_page
&&
208 bridge
->driver
->agp_unmap_page
) {
209 bridge
->driver
->agp_unmap_page(bridge
->scratch_page_page
,
210 bridge
->scratch_page_dma
);
213 if (bridge
->driver
->needs_scratch_page
) {
214 void *va
= page_address(bridge
->scratch_page_page
);
216 bridge
->driver
->agp_destroy_page(va
, AGP_PAGE_DESTROY_UNMAP
);
217 bridge
->driver
->agp_destroy_page(va
, AGP_PAGE_DESTROY_FREE
);
220 bridge
->driver
->free_gatt_table(bridge
);
222 vfree(bridge
->key_list
);
223 bridge
->key_list
= NULL
;
228 /* cannot be __exit b/c as it could be called from __init code */
229 static void agp_backend_cleanup(struct agp_bridge_data
*bridge
)
231 if (bridge
->driver
->cleanup
)
232 bridge
->driver
->cleanup();
233 if (bridge
->driver
->free_gatt_table
)
234 bridge
->driver
->free_gatt_table(bridge
);
236 vfree(bridge
->key_list
);
237 bridge
->key_list
= NULL
;
239 if (bridge
->driver
->agp_destroy_page
&&
240 bridge
->driver
->needs_scratch_page
) {
241 void *va
= page_address(bridge
->scratch_page_page
);
243 if (bridge
->driver
->agp_unmap_page
)
244 bridge
->driver
->agp_unmap_page(bridge
->scratch_page_page
,
245 bridge
->scratch_page_dma
);
247 bridge
->driver
->agp_destroy_page(va
, AGP_PAGE_DESTROY_UNMAP
);
248 bridge
->driver
->agp_destroy_page(va
, AGP_PAGE_DESTROY_FREE
);
252 /* When we remove the global variable agp_bridge from all drivers
253 * then agp_alloc_bridge and agp_generic_find_bridge need to be updated
256 struct agp_bridge_data
*agp_alloc_bridge(void)
258 struct agp_bridge_data
*bridge
;
260 bridge
= kzalloc(sizeof(*bridge
), GFP_KERNEL
);
264 atomic_set(&bridge
->agp_in_use
, 0);
265 atomic_set(&bridge
->current_memory_agp
, 0);
267 if (list_empty(&agp_bridges
))
272 EXPORT_SYMBOL(agp_alloc_bridge
);
275 void agp_put_bridge(struct agp_bridge_data
*bridge
)
279 if (list_empty(&agp_bridges
))
282 EXPORT_SYMBOL(agp_put_bridge
);
285 int agp_add_bridge(struct agp_bridge_data
*bridge
)
295 printk (KERN_DEBUG PFX
"Erk, registering with no pci_dev!\n");
300 /* Grab reference on the chipset driver. */
301 if (!try_module_get(bridge
->driver
->owner
)) {
302 dev_info(&bridge
->dev
->dev
, "can't lock chipset driver\n");
307 error
= agp_backend_initialize(bridge
);
309 dev_info(&bridge
->dev
->dev
,
310 "agp_backend_initialize() failed\n");
314 if (list_empty(&agp_bridges
)) {
315 error
= agp_frontend_initialize();
317 dev_info(&bridge
->dev
->dev
,
318 "agp_frontend_initialize() failed\n");
322 dev_info(&bridge
->dev
->dev
, "AGP aperture is %dM @ 0x%lx\n",
323 bridge
->driver
->fetch_size(), bridge
->gart_bus_addr
);
327 list_add(&bridge
->list
, &agp_bridges
);
331 agp_backend_cleanup(bridge
);
333 module_put(bridge
->driver
->owner
);
335 agp_put_bridge(bridge
);
338 EXPORT_SYMBOL_GPL(agp_add_bridge
);
341 void agp_remove_bridge(struct agp_bridge_data
*bridge
)
343 agp_backend_cleanup(bridge
);
344 list_del(&bridge
->list
);
345 if (list_empty(&agp_bridges
))
346 agp_frontend_cleanup();
347 module_put(bridge
->driver
->owner
);
349 EXPORT_SYMBOL_GPL(agp_remove_bridge
);
352 int agp_try_unsupported_boot
;
353 EXPORT_SYMBOL(agp_off
);
354 EXPORT_SYMBOL(agp_try_unsupported_boot
);
356 static int __init
agp_init(void)
359 printk(KERN_INFO
"Linux agpgart interface v%d.%d\n",
360 AGPGART_VERSION_MAJOR
, AGPGART_VERSION_MINOR
);
364 static void __exit
agp_exit(void)
369 static __init
int agp_setup(char *s
)
371 if (!strcmp(s
,"off"))
373 if (!strcmp(s
,"try_unsupported"))
374 agp_try_unsupported_boot
= 1;
377 __setup("agp=", agp_setup
);
380 MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
381 MODULE_DESCRIPTION("AGP GART driver");
382 MODULE_LICENSE("GPL and additional rights");
383 MODULE_ALIAS_MISCDEV(AGPGART_MINOR
);
385 module_init(agp_init
);
386 module_exit(agp_exit
);