GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / char / agp / frontend.c
blob43412c03969e14d0d0b92f1323109128bdb22a35
1 /*
2 * AGPGART driver frontend
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, 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.
29 #include <linux/types.h>
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/mman.h>
33 #include <linux/pci.h>
34 #include <linux/init.h>
35 #include <linux/miscdevice.h>
36 #include <linux/agp_backend.h>
37 #include <linux/agpgart.h>
38 #include <linux/slab.h>
39 #include <linux/mm.h>
40 #include <linux/fs.h>
41 #include <linux/sched.h>
42 #include <linux/smp_lock.h>
43 #include <asm/uaccess.h>
44 #include <asm/pgtable.h>
45 #include "agp.h"
47 struct agp_front_data agp_fe;
49 struct agp_memory *agp_find_mem_by_key(int key)
51 struct agp_memory *curr;
53 if (agp_fe.current_controller == NULL)
54 return NULL;
56 curr = agp_fe.current_controller->pool;
58 while (curr != NULL) {
59 if (curr->key == key)
60 break;
61 curr = curr->next;
64 DBG("key=%d -> mem=%p", key, curr);
65 return curr;
68 static void agp_remove_from_pool(struct agp_memory *temp)
70 struct agp_memory *prev;
71 struct agp_memory *next;
73 /* Check to see if this is even in the memory pool */
75 DBG("mem=%p", temp);
76 if (agp_find_mem_by_key(temp->key) != NULL) {
77 next = temp->next;
78 prev = temp->prev;
80 if (prev != NULL) {
81 prev->next = next;
82 if (next != NULL)
83 next->prev = prev;
85 } else {
86 /* This is the first item on the list */
87 if (next != NULL)
88 next->prev = NULL;
90 agp_fe.current_controller->pool = next;
96 * Routines for managing each client's segment list -
97 * These routines handle adding and removing segments
98 * to each auth'ed client.
101 static struct
102 agp_segment_priv *agp_find_seg_in_client(const struct agp_client *client,
103 unsigned long offset,
104 int size, pgprot_t page_prot)
106 struct agp_segment_priv *seg;
107 int num_segments, i;
108 off_t pg_start;
109 size_t pg_count;
111 pg_start = offset / 4096;
112 pg_count = size / 4096;
113 seg = *(client->segments);
114 num_segments = client->num_segments;
116 for (i = 0; i < client->num_segments; i++) {
117 if ((seg[i].pg_start == pg_start) &&
118 (seg[i].pg_count == pg_count) &&
119 (pgprot_val(seg[i].prot) == pgprot_val(page_prot))) {
120 return seg + i;
124 return NULL;
127 static void agp_remove_seg_from_client(struct agp_client *client)
129 DBG("client=%p", client);
131 if (client->segments != NULL) {
132 if (*(client->segments) != NULL) {
133 DBG("Freeing %p from client %p", *(client->segments), client);
134 kfree(*(client->segments));
136 DBG("Freeing %p from client %p", client->segments, client);
137 kfree(client->segments);
138 client->segments = NULL;
142 static void agp_add_seg_to_client(struct agp_client *client,
143 struct agp_segment_priv ** seg, int num_segments)
145 struct agp_segment_priv **prev_seg;
147 prev_seg = client->segments;
149 if (prev_seg != NULL)
150 agp_remove_seg_from_client(client);
152 DBG("Adding seg %p (%d segments) to client %p", seg, num_segments, client);
153 client->num_segments = num_segments;
154 client->segments = seg;
157 static pgprot_t agp_convert_mmap_flags(int prot)
159 unsigned long prot_bits;
161 prot_bits = calc_vm_prot_bits(prot) | VM_SHARED;
162 return vm_get_page_prot(prot_bits);
165 int agp_create_segment(struct agp_client *client, struct agp_region *region)
167 struct agp_segment_priv **ret_seg;
168 struct agp_segment_priv *seg;
169 struct agp_segment *user_seg;
170 size_t i;
172 seg = kzalloc((sizeof(struct agp_segment_priv) * region->seg_count), GFP_KERNEL);
173 if (seg == NULL) {
174 kfree(region->seg_list);
175 region->seg_list = NULL;
176 return -ENOMEM;
178 user_seg = region->seg_list;
180 for (i = 0; i < region->seg_count; i++) {
181 seg[i].pg_start = user_seg[i].pg_start;
182 seg[i].pg_count = user_seg[i].pg_count;
183 seg[i].prot = agp_convert_mmap_flags(user_seg[i].prot);
185 kfree(region->seg_list);
186 region->seg_list = NULL;
188 ret_seg = kmalloc(sizeof(void *), GFP_KERNEL);
189 if (ret_seg == NULL) {
190 kfree(seg);
191 return -ENOMEM;
193 *ret_seg = seg;
194 agp_add_seg_to_client(client, ret_seg, region->seg_count);
195 return 0;
198 /* End - Routines for managing each client's segment list */
200 /* This function must only be called when current_controller != NULL */
201 static void agp_insert_into_pool(struct agp_memory * temp)
203 struct agp_memory *prev;
205 prev = agp_fe.current_controller->pool;
207 if (prev != NULL) {
208 prev->prev = temp;
209 temp->next = prev;
211 agp_fe.current_controller->pool = temp;
215 /* File private list routines */
217 struct agp_file_private *agp_find_private(pid_t pid)
219 struct agp_file_private *curr;
221 curr = agp_fe.file_priv_list;
223 while (curr != NULL) {
224 if (curr->my_pid == pid)
225 return curr;
226 curr = curr->next;
229 return NULL;
232 static void agp_insert_file_private(struct agp_file_private * priv)
234 struct agp_file_private *prev;
236 prev = agp_fe.file_priv_list;
238 if (prev != NULL)
239 prev->prev = priv;
240 priv->next = prev;
241 agp_fe.file_priv_list = priv;
244 static void agp_remove_file_private(struct agp_file_private * priv)
246 struct agp_file_private *next;
247 struct agp_file_private *prev;
249 next = priv->next;
250 prev = priv->prev;
252 if (prev != NULL) {
253 prev->next = next;
255 if (next != NULL)
256 next->prev = prev;
258 } else {
259 if (next != NULL)
260 next->prev = NULL;
262 agp_fe.file_priv_list = next;
266 /* End - File flag list routines */
269 * Wrappers for agp_free_memory & agp_allocate_memory
270 * These make sure that internal lists are kept updated.
272 void agp_free_memory_wrap(struct agp_memory *memory)
274 agp_remove_from_pool(memory);
275 agp_free_memory(memory);
278 struct agp_memory *agp_allocate_memory_wrap(size_t pg_count, u32 type)
280 struct agp_memory *memory;
282 memory = agp_allocate_memory(agp_bridge, pg_count, type);
283 if (memory == NULL)
284 return NULL;
286 agp_insert_into_pool(memory);
287 return memory;
290 /* Routines for managing the list of controllers -
291 * These routines manage the current controller, and the list of
292 * controllers
295 static struct agp_controller *agp_find_controller_by_pid(pid_t id)
297 struct agp_controller *controller;
299 controller = agp_fe.controllers;
301 while (controller != NULL) {
302 if (controller->pid == id)
303 return controller;
304 controller = controller->next;
307 return NULL;
310 static struct agp_controller *agp_create_controller(pid_t id)
312 struct agp_controller *controller;
314 controller = kzalloc(sizeof(struct agp_controller), GFP_KERNEL);
315 if (controller == NULL)
316 return NULL;
318 controller->pid = id;
319 return controller;
322 static int agp_insert_controller(struct agp_controller *controller)
324 struct agp_controller *prev_controller;
326 prev_controller = agp_fe.controllers;
327 controller->next = prev_controller;
329 if (prev_controller != NULL)
330 prev_controller->prev = controller;
332 agp_fe.controllers = controller;
334 return 0;
337 static void agp_remove_all_clients(struct agp_controller *controller)
339 struct agp_client *client;
340 struct agp_client *temp;
342 client = controller->clients;
344 while (client) {
345 struct agp_file_private *priv;
347 temp = client;
348 agp_remove_seg_from_client(temp);
349 priv = agp_find_private(temp->pid);
351 if (priv != NULL) {
352 clear_bit(AGP_FF_IS_VALID, &priv->access_flags);
353 clear_bit(AGP_FF_IS_CLIENT, &priv->access_flags);
355 client = client->next;
356 kfree(temp);
360 static void agp_remove_all_memory(struct agp_controller *controller)
362 struct agp_memory *memory;
363 struct agp_memory *temp;
365 memory = controller->pool;
367 while (memory) {
368 temp = memory;
369 memory = memory->next;
370 agp_free_memory_wrap(temp);
374 static int agp_remove_controller(struct agp_controller *controller)
376 struct agp_controller *prev_controller;
377 struct agp_controller *next_controller;
379 prev_controller = controller->prev;
380 next_controller = controller->next;
382 if (prev_controller != NULL) {
383 prev_controller->next = next_controller;
384 if (next_controller != NULL)
385 next_controller->prev = prev_controller;
387 } else {
388 if (next_controller != NULL)
389 next_controller->prev = NULL;
391 agp_fe.controllers = next_controller;
394 agp_remove_all_memory(controller);
395 agp_remove_all_clients(controller);
397 if (agp_fe.current_controller == controller) {
398 agp_fe.current_controller = NULL;
399 agp_fe.backend_acquired = false;
400 agp_backend_release(agp_bridge);
402 kfree(controller);
403 return 0;
406 static void agp_controller_make_current(struct agp_controller *controller)
408 struct agp_client *clients;
410 clients = controller->clients;
412 while (clients != NULL) {
413 struct agp_file_private *priv;
415 priv = agp_find_private(clients->pid);
417 if (priv != NULL) {
418 set_bit(AGP_FF_IS_VALID, &priv->access_flags);
419 set_bit(AGP_FF_IS_CLIENT, &priv->access_flags);
421 clients = clients->next;
424 agp_fe.current_controller = controller;
427 static void agp_controller_release_current(struct agp_controller *controller,
428 struct agp_file_private *controller_priv)
430 struct agp_client *clients;
432 clear_bit(AGP_FF_IS_VALID, &controller_priv->access_flags);
433 clients = controller->clients;
435 while (clients != NULL) {
436 struct agp_file_private *priv;
438 priv = agp_find_private(clients->pid);
440 if (priv != NULL)
441 clear_bit(AGP_FF_IS_VALID, &priv->access_flags);
443 clients = clients->next;
446 agp_fe.current_controller = NULL;
447 agp_fe.used_by_controller = false;
448 agp_backend_release(agp_bridge);
452 * Routines for managing client lists -
453 * These routines are for managing the list of auth'ed clients.
456 static struct agp_client
457 *agp_find_client_in_controller(struct agp_controller *controller, pid_t id)
459 struct agp_client *client;
461 if (controller == NULL)
462 return NULL;
464 client = controller->clients;
466 while (client != NULL) {
467 if (client->pid == id)
468 return client;
469 client = client->next;
472 return NULL;
475 static struct agp_controller *agp_find_controller_for_client(pid_t id)
477 struct agp_controller *controller;
479 controller = agp_fe.controllers;
481 while (controller != NULL) {
482 if ((agp_find_client_in_controller(controller, id)) != NULL)
483 return controller;
484 controller = controller->next;
487 return NULL;
490 struct agp_client *agp_find_client_by_pid(pid_t id)
492 struct agp_client *temp;
494 if (agp_fe.current_controller == NULL)
495 return NULL;
497 temp = agp_find_client_in_controller(agp_fe.current_controller, id);
498 return temp;
501 static void agp_insert_client(struct agp_client *client)
503 struct agp_client *prev_client;
505 prev_client = agp_fe.current_controller->clients;
506 client->next = prev_client;
508 if (prev_client != NULL)
509 prev_client->prev = client;
511 agp_fe.current_controller->clients = client;
512 agp_fe.current_controller->num_clients++;
515 struct agp_client *agp_create_client(pid_t id)
517 struct agp_client *new_client;
519 new_client = kzalloc(sizeof(struct agp_client), GFP_KERNEL);
520 if (new_client == NULL)
521 return NULL;
523 new_client->pid = id;
524 agp_insert_client(new_client);
525 return new_client;
528 int agp_remove_client(pid_t id)
530 struct agp_client *client;
531 struct agp_client *prev_client;
532 struct agp_client *next_client;
533 struct agp_controller *controller;
535 controller = agp_find_controller_for_client(id);
536 if (controller == NULL)
537 return -EINVAL;
539 client = agp_find_client_in_controller(controller, id);
540 if (client == NULL)
541 return -EINVAL;
543 prev_client = client->prev;
544 next_client = client->next;
546 if (prev_client != NULL) {
547 prev_client->next = next_client;
548 if (next_client != NULL)
549 next_client->prev = prev_client;
551 } else {
552 if (next_client != NULL)
553 next_client->prev = NULL;
554 controller->clients = next_client;
557 controller->num_clients--;
558 agp_remove_seg_from_client(client);
559 kfree(client);
560 return 0;
563 /* End - Routines for managing client lists */
565 /* File Operations */
567 static int agp_mmap(struct file *file, struct vm_area_struct *vma)
569 unsigned int size, current_size;
570 unsigned long offset;
571 struct agp_client *client;
572 struct agp_file_private *priv = file->private_data;
573 struct agp_kern_info kerninfo;
575 mutex_lock(&(agp_fe.agp_mutex));
577 if (agp_fe.backend_acquired != true)
578 goto out_eperm;
580 if (!(test_bit(AGP_FF_IS_VALID, &priv->access_flags)))
581 goto out_eperm;
583 agp_copy_info(agp_bridge, &kerninfo);
584 size = vma->vm_end - vma->vm_start;
585 current_size = kerninfo.aper_size;
586 current_size = current_size * 0x100000;
587 offset = vma->vm_pgoff << PAGE_SHIFT;
588 DBG("%lx:%lx", offset, offset+size);
590 if (test_bit(AGP_FF_IS_CLIENT, &priv->access_flags)) {
591 if ((size + offset) > current_size)
592 goto out_inval;
594 client = agp_find_client_by_pid(current->pid);
596 if (client == NULL)
597 goto out_eperm;
599 if (!agp_find_seg_in_client(client, offset, size, vma->vm_page_prot))
600 goto out_inval;
602 DBG("client vm_ops=%p", kerninfo.vm_ops);
603 if (kerninfo.vm_ops) {
604 vma->vm_ops = kerninfo.vm_ops;
605 } else if (io_remap_pfn_range(vma, vma->vm_start,
606 (kerninfo.aper_base + offset) >> PAGE_SHIFT,
607 size, vma->vm_page_prot)) {
608 goto out_again;
610 mutex_unlock(&(agp_fe.agp_mutex));
611 return 0;
614 if (test_bit(AGP_FF_IS_CONTROLLER, &priv->access_flags)) {
615 if (size != current_size)
616 goto out_inval;
618 DBG("controller vm_ops=%p", kerninfo.vm_ops);
619 if (kerninfo.vm_ops) {
620 vma->vm_ops = kerninfo.vm_ops;
621 } else if (io_remap_pfn_range(vma, vma->vm_start,
622 kerninfo.aper_base >> PAGE_SHIFT,
623 size, vma->vm_page_prot)) {
624 goto out_again;
626 mutex_unlock(&(agp_fe.agp_mutex));
627 return 0;
630 out_eperm:
631 mutex_unlock(&(agp_fe.agp_mutex));
632 return -EPERM;
634 out_inval:
635 mutex_unlock(&(agp_fe.agp_mutex));
636 return -EINVAL;
638 out_again:
639 mutex_unlock(&(agp_fe.agp_mutex));
640 return -EAGAIN;
643 static int agp_release(struct inode *inode, struct file *file)
645 struct agp_file_private *priv = file->private_data;
647 mutex_lock(&(agp_fe.agp_mutex));
649 DBG("priv=%p", priv);
651 if (test_bit(AGP_FF_IS_CONTROLLER, &priv->access_flags)) {
652 struct agp_controller *controller;
654 controller = agp_find_controller_by_pid(priv->my_pid);
656 if (controller != NULL) {
657 if (controller == agp_fe.current_controller)
658 agp_controller_release_current(controller, priv);
659 agp_remove_controller(controller);
660 controller = NULL;
664 if (test_bit(AGP_FF_IS_CLIENT, &priv->access_flags))
665 agp_remove_client(priv->my_pid);
667 agp_remove_file_private(priv);
668 kfree(priv);
669 file->private_data = NULL;
670 mutex_unlock(&(agp_fe.agp_mutex));
671 return 0;
674 static int agp_open(struct inode *inode, struct file *file)
676 int minor = iminor(inode);
677 struct agp_file_private *priv;
678 struct agp_client *client;
680 if (minor != AGPGART_MINOR)
681 return -ENXIO;
683 mutex_lock(&(agp_fe.agp_mutex));
685 priv = kzalloc(sizeof(struct agp_file_private), GFP_KERNEL);
686 if (priv == NULL) {
687 mutex_unlock(&(agp_fe.agp_mutex));
688 return -ENOMEM;
691 set_bit(AGP_FF_ALLOW_CLIENT, &priv->access_flags);
692 priv->my_pid = current->pid;
694 if (capable(CAP_SYS_RAWIO))
695 /* Root priv, can be controller */
696 set_bit(AGP_FF_ALLOW_CONTROLLER, &priv->access_flags);
698 client = agp_find_client_by_pid(current->pid);
700 if (client != NULL) {
701 set_bit(AGP_FF_IS_CLIENT, &priv->access_flags);
702 set_bit(AGP_FF_IS_VALID, &priv->access_flags);
704 file->private_data = (void *) priv;
705 agp_insert_file_private(priv);
706 DBG("private=%p, client=%p", priv, client);
708 mutex_unlock(&(agp_fe.agp_mutex));
710 return 0;
714 static ssize_t agp_read(struct file *file, char __user *buf,
715 size_t count, loff_t * ppos)
717 return -EINVAL;
720 static ssize_t agp_write(struct file *file, const char __user *buf,
721 size_t count, loff_t * ppos)
723 return -EINVAL;
726 static int agpioc_info_wrap(struct agp_file_private *priv, void __user *arg)
728 struct agp_info userinfo;
729 struct agp_kern_info kerninfo;
731 agp_copy_info(agp_bridge, &kerninfo);
733 userinfo.version.major = kerninfo.version.major;
734 userinfo.version.minor = kerninfo.version.minor;
735 userinfo.bridge_id = kerninfo.device->vendor |
736 (kerninfo.device->device << 16);
737 userinfo.agp_mode = kerninfo.mode;
738 userinfo.aper_base = kerninfo.aper_base;
739 userinfo.aper_size = kerninfo.aper_size;
740 userinfo.pg_total = userinfo.pg_system = kerninfo.max_memory;
741 userinfo.pg_used = kerninfo.current_memory;
743 if (copy_to_user(arg, &userinfo, sizeof(struct agp_info)))
744 return -EFAULT;
746 return 0;
749 int agpioc_acquire_wrap(struct agp_file_private *priv)
751 struct agp_controller *controller;
753 DBG("");
755 if (!(test_bit(AGP_FF_ALLOW_CONTROLLER, &priv->access_flags)))
756 return -EPERM;
758 if (agp_fe.current_controller != NULL)
759 return -EBUSY;
761 if (!agp_bridge)
762 return -ENODEV;
764 if (atomic_read(&agp_bridge->agp_in_use))
765 return -EBUSY;
767 atomic_inc(&agp_bridge->agp_in_use);
769 agp_fe.backend_acquired = true;
771 controller = agp_find_controller_by_pid(priv->my_pid);
773 if (controller != NULL) {
774 agp_controller_make_current(controller);
775 } else {
776 controller = agp_create_controller(priv->my_pid);
778 if (controller == NULL) {
779 agp_fe.backend_acquired = false;
780 agp_backend_release(agp_bridge);
781 return -ENOMEM;
783 agp_insert_controller(controller);
784 agp_controller_make_current(controller);
787 set_bit(AGP_FF_IS_CONTROLLER, &priv->access_flags);
788 set_bit(AGP_FF_IS_VALID, &priv->access_flags);
789 return 0;
792 int agpioc_release_wrap(struct agp_file_private *priv)
794 DBG("");
795 agp_controller_release_current(agp_fe.current_controller, priv);
796 return 0;
799 int agpioc_setup_wrap(struct agp_file_private *priv, void __user *arg)
801 struct agp_setup mode;
803 DBG("");
804 if (copy_from_user(&mode, arg, sizeof(struct agp_setup)))
805 return -EFAULT;
807 agp_enable(agp_bridge, mode.agp_mode);
808 return 0;
811 static int agpioc_reserve_wrap(struct agp_file_private *priv, void __user *arg)
813 struct agp_region reserve;
814 struct agp_client *client;
815 struct agp_file_private *client_priv;
817 DBG("");
818 if (copy_from_user(&reserve, arg, sizeof(struct agp_region)))
819 return -EFAULT;
821 if ((unsigned) reserve.seg_count >= ~0U/sizeof(struct agp_segment))
822 return -EFAULT;
824 client = agp_find_client_by_pid(reserve.pid);
826 if (reserve.seg_count == 0) {
827 /* remove a client */
828 client_priv = agp_find_private(reserve.pid);
830 if (client_priv != NULL) {
831 set_bit(AGP_FF_IS_CLIENT, &client_priv->access_flags);
832 set_bit(AGP_FF_IS_VALID, &client_priv->access_flags);
834 if (client == NULL) {
835 /* client is already removed */
836 return 0;
838 return agp_remove_client(reserve.pid);
839 } else {
840 struct agp_segment *segment;
842 if (reserve.seg_count >= 16384)
843 return -EINVAL;
845 segment = kmalloc((sizeof(struct agp_segment) * reserve.seg_count),
846 GFP_KERNEL);
848 if (segment == NULL)
849 return -ENOMEM;
851 if (copy_from_user(segment, (void __user *) reserve.seg_list,
852 sizeof(struct agp_segment) * reserve.seg_count)) {
853 kfree(segment);
854 return -EFAULT;
856 reserve.seg_list = segment;
858 if (client == NULL) {
859 /* Create the client and add the segment */
860 client = agp_create_client(reserve.pid);
862 if (client == NULL) {
863 kfree(segment);
864 return -ENOMEM;
866 client_priv = agp_find_private(reserve.pid);
868 if (client_priv != NULL) {
869 set_bit(AGP_FF_IS_CLIENT, &client_priv->access_flags);
870 set_bit(AGP_FF_IS_VALID, &client_priv->access_flags);
873 return agp_create_segment(client, &reserve);
875 /* Will never really happen */
876 return -EINVAL;
879 int agpioc_protect_wrap(struct agp_file_private *priv)
881 DBG("");
882 /* This function is not currently implemented */
883 return -EINVAL;
886 static int agpioc_allocate_wrap(struct agp_file_private *priv, void __user *arg)
888 struct agp_memory *memory;
889 struct agp_allocate alloc;
891 DBG("");
892 if (copy_from_user(&alloc, arg, sizeof(struct agp_allocate)))
893 return -EFAULT;
895 if (alloc.type >= AGP_USER_TYPES)
896 return -EINVAL;
898 memory = agp_allocate_memory_wrap(alloc.pg_count, alloc.type);
900 if (memory == NULL)
901 return -ENOMEM;
903 alloc.key = memory->key;
904 alloc.physical = memory->physical;
906 if (copy_to_user(arg, &alloc, sizeof(struct agp_allocate))) {
907 agp_free_memory_wrap(memory);
908 return -EFAULT;
910 return 0;
913 int agpioc_deallocate_wrap(struct agp_file_private *priv, int arg)
915 struct agp_memory *memory;
917 DBG("");
918 memory = agp_find_mem_by_key(arg);
920 if (memory == NULL)
921 return -EINVAL;
923 agp_free_memory_wrap(memory);
924 return 0;
927 static int agpioc_bind_wrap(struct agp_file_private *priv, void __user *arg)
929 struct agp_bind bind_info;
930 struct agp_memory *memory;
932 DBG("");
933 if (copy_from_user(&bind_info, arg, sizeof(struct agp_bind)))
934 return -EFAULT;
936 memory = agp_find_mem_by_key(bind_info.key);
938 if (memory == NULL)
939 return -EINVAL;
941 return agp_bind_memory(memory, bind_info.pg_start);
944 static int agpioc_unbind_wrap(struct agp_file_private *priv, void __user *arg)
946 struct agp_memory *memory;
947 struct agp_unbind unbind;
949 DBG("");
950 if (copy_from_user(&unbind, arg, sizeof(struct agp_unbind)))
951 return -EFAULT;
953 memory = agp_find_mem_by_key(unbind.key);
955 if (memory == NULL)
956 return -EINVAL;
958 return agp_unbind_memory(memory);
961 int agpioc_chipset_flush_wrap(struct agp_file_private *priv)
963 DBG("");
964 agp_flush_chipset(agp_bridge);
965 return 0;
968 static long agp_ioctl(struct file *file,
969 unsigned int cmd, unsigned long arg)
971 struct agp_file_private *curr_priv = file->private_data;
972 int ret_val = -ENOTTY;
974 DBG("priv=%p, cmd=%x", curr_priv, cmd);
975 mutex_lock(&(agp_fe.agp_mutex));
977 if ((agp_fe.current_controller == NULL) &&
978 (cmd != AGPIOC_ACQUIRE)) {
979 ret_val = -EINVAL;
980 goto ioctl_out;
982 if ((agp_fe.backend_acquired != true) &&
983 (cmd != AGPIOC_ACQUIRE)) {
984 ret_val = -EBUSY;
985 goto ioctl_out;
987 if (cmd != AGPIOC_ACQUIRE) {
988 if (!(test_bit(AGP_FF_IS_CONTROLLER, &curr_priv->access_flags))) {
989 ret_val = -EPERM;
990 goto ioctl_out;
992 /* Use the original pid of the controller,
993 * in case it's threaded */
995 if (agp_fe.current_controller->pid != curr_priv->my_pid) {
996 ret_val = -EBUSY;
997 goto ioctl_out;
1001 switch (cmd) {
1002 case AGPIOC_INFO:
1003 ret_val = agpioc_info_wrap(curr_priv, (void __user *) arg);
1004 break;
1006 case AGPIOC_ACQUIRE:
1007 ret_val = agpioc_acquire_wrap(curr_priv);
1008 break;
1010 case AGPIOC_RELEASE:
1011 ret_val = agpioc_release_wrap(curr_priv);
1012 break;
1014 case AGPIOC_SETUP:
1015 ret_val = agpioc_setup_wrap(curr_priv, (void __user *) arg);
1016 break;
1018 case AGPIOC_RESERVE:
1019 ret_val = agpioc_reserve_wrap(curr_priv, (void __user *) arg);
1020 break;
1022 case AGPIOC_PROTECT:
1023 ret_val = agpioc_protect_wrap(curr_priv);
1024 break;
1026 case AGPIOC_ALLOCATE:
1027 ret_val = agpioc_allocate_wrap(curr_priv, (void __user *) arg);
1028 break;
1030 case AGPIOC_DEALLOCATE:
1031 ret_val = agpioc_deallocate_wrap(curr_priv, (int) arg);
1032 break;
1034 case AGPIOC_BIND:
1035 ret_val = agpioc_bind_wrap(curr_priv, (void __user *) arg);
1036 break;
1038 case AGPIOC_UNBIND:
1039 ret_val = agpioc_unbind_wrap(curr_priv, (void __user *) arg);
1040 break;
1042 case AGPIOC_CHIPSET_FLUSH:
1043 ret_val = agpioc_chipset_flush_wrap(curr_priv);
1044 break;
1047 ioctl_out:
1048 DBG("ioctl returns %d\n", ret_val);
1049 mutex_unlock(&(agp_fe.agp_mutex));
1050 return ret_val;
1053 static const struct file_operations agp_fops =
1055 .owner = THIS_MODULE,
1056 .llseek = no_llseek,
1057 .read = agp_read,
1058 .write = agp_write,
1059 .unlocked_ioctl = agp_ioctl,
1060 #ifdef CONFIG_COMPAT
1061 .compat_ioctl = compat_agp_ioctl,
1062 #endif
1063 .mmap = agp_mmap,
1064 .open = agp_open,
1065 .release = agp_release,
1068 static struct miscdevice agp_miscdev =
1070 .minor = AGPGART_MINOR,
1071 .name = "agpgart",
1072 .fops = &agp_fops
1075 int agp_frontend_initialize(void)
1077 memset(&agp_fe, 0, sizeof(struct agp_front_data));
1078 mutex_init(&(agp_fe.agp_mutex));
1080 if (misc_register(&agp_miscdev)) {
1081 printk(KERN_ERR PFX "unable to get minor: %d\n", AGPGART_MINOR);
1082 return -EIO;
1084 return 0;
1087 void agp_frontend_cleanup(void)
1089 misc_deregister(&agp_miscdev);