initial commit with v2.6.9
[linux-2.6.9-moxart.git] / drivers / char / agp / backend.c
blob33e1c707d7c59cbc6da08b3ebf8d759a1b544f09
1 /*
2 * AGPGART driver backend routines.
3 * Copyright (C) 2002-2003 Dave Jones.
4 * Copyright (C) 1999 Jeff Hartmann.
5 * Copyright (C) 1999 Precision Insight, Inc.
6 * Copyright (C) 1999 Xi Graphics, Inc.
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * JEFF HARTMANN, DAVE JONES, OR ANY OTHER CONTRIBUTORS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
24 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 * TODO:
27 * - Allocate more than order 0 pages to avoid too much linear map splitting.
29 #include <linux/module.h>
30 #include <linux/pci.h>
31 #include <linux/init.h>
32 #include <linux/pagemap.h>
33 #include <linux/miscdevice.h>
34 #include <linux/pm.h>
35 #include <linux/agp_backend.h>
36 #include <linux/agpgart.h>
37 #include <linux/vmalloc.h>
38 #include <asm/io.h>
39 #include "agp.h"
41 /* Due to XFree86 brain-damage, we can't go to 1.0 until they
42 * fix some real stupidity. It's only by chance we can bump
43 * past 0.99 at all due to some boolean logic error. */
44 #define AGPGART_VERSION_MAJOR 0
45 #define AGPGART_VERSION_MINOR 100
46 static struct agp_version agp_current_version =
48 .major = AGPGART_VERSION_MAJOR,
49 .minor = AGPGART_VERSION_MINOR,
52 static int agp_count=0;
54 struct agp_bridge_data agp_bridge_dummy = { .type = NOT_SUPPORTED };
55 struct agp_bridge_data *agp_bridge = &agp_bridge_dummy;
56 EXPORT_SYMBOL(agp_bridge);
59 /**
60 * agp_backend_acquire - attempt to acquire the agp backend.
62 * returns -EBUSY if agp is in use,
63 * returns 0 if the caller owns the agp backend
65 int agp_backend_acquire(void)
67 if (agp_bridge->type == NOT_SUPPORTED)
68 return -EINVAL;
69 if (atomic_read(&agp_bridge->agp_in_use))
70 return -EBUSY;
71 atomic_inc(&agp_bridge->agp_in_use);
72 return 0;
74 EXPORT_SYMBOL(agp_backend_acquire);
77 /**
78 * agp_backend_release - release the lock on the agp backend.
80 * The caller must insure that the graphics aperture translation table
81 * is read for use by another entity.
83 * (Ensure that all memory it bound is unbound.)
85 void agp_backend_release(void)
87 if (agp_bridge->type != NOT_SUPPORTED)
88 atomic_dec(&agp_bridge->agp_in_use);
90 EXPORT_SYMBOL(agp_backend_release);
93 struct { int mem, agp; } maxes_table[] = {
94 {0, 0},
95 {32, 4},
96 {64, 28},
97 {128, 96},
98 {256, 204},
99 {512, 440},
100 {1024, 942},
101 {2048, 1920},
102 {4096, 3932}
105 static int agp_find_max(void)
107 long memory, index, result;
109 #if PAGE_SHIFT < 20
110 memory = num_physpages >> (20 - PAGE_SHIFT);
111 #else
112 memory = num_physpages << (PAGE_SHIFT - 20);
113 #endif
114 index = 1;
116 while ((memory > maxes_table[index].mem) && (index < 8))
117 index++;
119 result = maxes_table[index - 1].agp +
120 ( (memory - maxes_table[index - 1].mem) *
121 (maxes_table[index].agp - maxes_table[index - 1].agp)) /
122 (maxes_table[index].mem - maxes_table[index - 1].mem);
124 printk(KERN_INFO PFX "Maximum main memory to use for agp memory: %ldM\n", result);
125 result = result << (20 - PAGE_SHIFT);
126 return result;
130 static int agp_backend_initialize(struct agp_bridge_data *bridge)
132 int size_value, rc, got_gatt=0, got_keylist=0;
134 bridge->max_memory_agp = agp_find_max();
135 bridge->version = &agp_current_version;
137 if (bridge->driver->needs_scratch_page) {
138 void *addr = bridge->driver->agp_alloc_page();
140 if (!addr) {
141 printk(KERN_ERR PFX "unable to get memory for scratch page.\n");
142 return -ENOMEM;
145 bridge->scratch_page_real = virt_to_phys(addr);
146 bridge->scratch_page =
147 bridge->driver->mask_memory(bridge->scratch_page_real, 0);
150 size_value = bridge->driver->fetch_size();
151 if (size_value == 0) {
152 printk(KERN_ERR PFX "unable to determine aperture size.\n");
153 rc = -EINVAL;
154 goto err_out;
156 if (bridge->driver->create_gatt_table()) {
157 printk(KERN_ERR PFX
158 "unable to get memory for graphics translation table.\n");
159 rc = -ENOMEM;
160 goto err_out;
162 got_gatt = 1;
164 bridge->key_list = vmalloc(PAGE_SIZE * 4);
165 if (bridge->key_list == NULL) {
166 printk(KERN_ERR PFX "error allocating memory for key lists.\n");
167 rc = -ENOMEM;
168 goto err_out;
170 got_keylist = 1;
172 /* FIXME vmalloc'd memory not guaranteed contiguous */
173 memset(bridge->key_list, 0, PAGE_SIZE * 4);
175 if (bridge->driver->configure()) {
176 printk(KERN_ERR PFX "error configuring host chipset.\n");
177 rc = -EINVAL;
178 goto err_out;
181 printk(KERN_INFO PFX "AGP aperture is %dM @ 0x%lx\n",
182 size_value, bridge->gart_bus_addr);
184 return 0;
186 err_out:
187 if (bridge->driver->needs_scratch_page)
188 bridge->driver->agp_destroy_page(
189 phys_to_virt(bridge->scratch_page_real));
190 if (got_gatt)
191 bridge->driver->free_gatt_table();
192 if (got_keylist) {
193 vfree(bridge->key_list);
194 bridge->key_list = NULL;
196 return rc;
199 /* cannot be __exit b/c as it could be called from __init code */
200 static void agp_backend_cleanup(struct agp_bridge_data *bridge)
202 if (bridge->driver->cleanup)
203 bridge->driver->cleanup();
204 if (bridge->driver->free_gatt_table)
205 bridge->driver->free_gatt_table();
206 if (bridge->key_list) {
207 vfree(bridge->key_list);
208 bridge->key_list = NULL;
211 if (bridge->driver->agp_destroy_page &&
212 bridge->driver->needs_scratch_page)
213 bridge->driver->agp_destroy_page(
214 phys_to_virt(bridge->scratch_page_real));
217 static const drm_agp_t drm_agp = {
218 &agp_free_memory,
219 &agp_allocate_memory,
220 &agp_bind_memory,
221 &agp_unbind_memory,
222 &agp_enable,
223 &agp_backend_acquire,
224 &agp_backend_release,
225 &agp_copy_info
228 /* XXX Kludge alert: agpgart isn't ready for multiple bridges yet */
229 struct agp_bridge_data *agp_alloc_bridge(void)
231 return agp_bridge;
233 EXPORT_SYMBOL(agp_alloc_bridge);
236 void agp_put_bridge(struct agp_bridge_data *bridge)
239 EXPORT_SYMBOL(agp_put_bridge);
242 int agp_add_bridge(struct agp_bridge_data *bridge)
244 int error;
246 if (agp_off)
247 return -ENODEV;
249 if (!bridge->dev) {
250 printk (KERN_DEBUG PFX "Erk, registering with no pci_dev!\n");
251 return -EINVAL;
254 if (agp_count) {
255 printk (KERN_INFO PFX
256 "Only one agpgart device currently supported.\n");
257 return -ENODEV;
260 /* Grab reference on the chipset driver. */
261 if (!try_module_get(bridge->driver->owner)) {
262 printk (KERN_INFO PFX "Couldn't lock chipset driver.\n");
263 return -EINVAL;
266 bridge->type = SUPPORTED;
268 error = agp_backend_initialize(agp_bridge);
269 if (error) {
270 printk (KERN_INFO PFX "agp_backend_initialize() failed.\n");
271 goto err_out;
274 error = agp_frontend_initialize();
275 if (error) {
276 printk (KERN_INFO PFX "agp_frontend_initialize() failed.\n");
277 goto frontend_err;
280 /* FIXME: What to do with this? */
281 inter_module_register("drm_agp", THIS_MODULE, &drm_agp);
283 agp_count++;
284 return 0;
286 frontend_err:
287 agp_backend_cleanup(agp_bridge);
288 err_out:
289 bridge->type = NOT_SUPPORTED;
290 module_put(bridge->driver->owner);
291 return error;
293 EXPORT_SYMBOL_GPL(agp_add_bridge);
296 void agp_remove_bridge(struct agp_bridge_data *bridge)
298 bridge->type = NOT_SUPPORTED;
299 agp_frontend_cleanup();
300 agp_backend_cleanup(bridge);
301 inter_module_unregister("drm_agp");
302 agp_count--;
303 module_put(bridge->driver->owner);
305 EXPORT_SYMBOL_GPL(agp_remove_bridge);
307 int agp_off;
308 int agp_try_unsupported_boot;
309 EXPORT_SYMBOL(agp_off);
310 EXPORT_SYMBOL(agp_try_unsupported_boot);
312 static int __init agp_init(void)
314 if (!agp_off)
315 printk(KERN_INFO "Linux agpgart interface v%d.%d (c) Dave Jones\n",
316 AGPGART_VERSION_MAJOR, AGPGART_VERSION_MINOR);
317 return 0;
320 void __exit agp_exit(void)
324 #ifndef MODULE
325 static __init int agp_setup(char *s)
327 if (!strcmp(s,"off"))
328 agp_off = 1;
329 if (!strcmp(s,"try_unsupported"))
330 agp_try_unsupported_boot = 1;
331 return 1;
333 __setup("agp=", agp_setup);
334 #endif
336 MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>");
337 MODULE_DESCRIPTION("AGP GART driver");
338 MODULE_LICENSE("GPL and additional rights");
339 MODULE_ALIAS_MISCDEV(AGPGART_MINOR);
341 module_init(agp_init);
342 module_exit(agp_exit);