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>
41 #include <linux/sched.h>
42 #include <linux/smp_lock.h>
43 #include <asm/uaccess.h>
44 #include <asm/pgtable.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
)
56 curr
= agp_fe
.current_controller
->pool
;
58 while (curr
!= NULL
) {
64 DBG("key=%d -> mem=%p", key
, 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 */
76 if (agp_find_mem_by_key(temp
->key
) != NULL
) {
86 /* This is the first item on the list */
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.
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
;
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
))) {
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
;
172 seg
= kzalloc((sizeof(struct agp_segment_priv
) * region
->seg_count
), GFP_KERNEL
);
174 kfree(region
->seg_list
);
175 region
->seg_list
= NULL
;
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
) {
194 agp_add_seg_to_client(client
, ret_seg
, region
->seg_count
);
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
;
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
)
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
;
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
;
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
);
286 agp_insert_into_pool(memory
);
290 /* Routines for managing the list of controllers -
291 * These routines manage the current controller, and the list of
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
)
304 controller
= controller
->next
;
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
)
318 controller
->pid
= id
;
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
;
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
;
345 struct agp_file_private
*priv
;
348 agp_remove_seg_from_client(temp
);
349 priv
= agp_find_private(temp
->pid
);
352 clear_bit(AGP_FF_IS_VALID
, &priv
->access_flags
);
353 clear_bit(AGP_FF_IS_CLIENT
, &priv
->access_flags
);
355 client
= client
->next
;
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
;
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
;
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
);
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
);
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
);
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
)
464 client
= controller
->clients
;
466 while (client
!= NULL
) {
467 if (client
->pid
== id
)
469 client
= client
->next
;
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
)
484 controller
= controller
->next
;
490 struct agp_client
*agp_find_client_by_pid(pid_t id
)
492 struct agp_client
*temp
;
494 if (agp_fe
.current_controller
== NULL
)
497 temp
= agp_find_client_in_controller(agp_fe
.current_controller
, id
);
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
)
523 new_client
->pid
= id
;
524 agp_insert_client(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
)
539 client
= agp_find_client_in_controller(controller
, id
);
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
;
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
);
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)
580 if (!(test_bit(AGP_FF_IS_VALID
, &priv
->access_flags
)))
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
)
594 client
= agp_find_client_by_pid(current
->pid
);
599 if (!agp_find_seg_in_client(client
, offset
, size
, vma
->vm_page_prot
))
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
)) {
610 mutex_unlock(&(agp_fe
.agp_mutex
));
614 if (test_bit(AGP_FF_IS_CONTROLLER
, &priv
->access_flags
)) {
615 if (size
!= current_size
)
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
)) {
626 mutex_unlock(&(agp_fe
.agp_mutex
));
631 mutex_unlock(&(agp_fe
.agp_mutex
));
635 mutex_unlock(&(agp_fe
.agp_mutex
));
639 mutex_unlock(&(agp_fe
.agp_mutex
));
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
);
664 if (test_bit(AGP_FF_IS_CLIENT
, &priv
->access_flags
))
665 agp_remove_client(priv
->my_pid
);
667 agp_remove_file_private(priv
);
669 file
->private_data
= NULL
;
670 mutex_unlock(&(agp_fe
.agp_mutex
));
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
)
683 mutex_lock(&(agp_fe
.agp_mutex
));
685 priv
= kzalloc(sizeof(struct agp_file_private
), GFP_KERNEL
);
687 mutex_unlock(&(agp_fe
.agp_mutex
));
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
));
714 static ssize_t
agp_read(struct file
*file
, char __user
*buf
,
715 size_t count
, loff_t
* ppos
)
720 static ssize_t
agp_write(struct file
*file
, const char __user
*buf
,
721 size_t count
, loff_t
* ppos
)
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
)))
749 int agpioc_acquire_wrap(struct agp_file_private
*priv
)
751 struct agp_controller
*controller
;
755 if (!(test_bit(AGP_FF_ALLOW_CONTROLLER
, &priv
->access_flags
)))
758 if (agp_fe
.current_controller
!= NULL
)
764 if (atomic_read(&agp_bridge
->agp_in_use
))
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
);
776 controller
= agp_create_controller(priv
->my_pid
);
778 if (controller
== NULL
) {
779 agp_fe
.backend_acquired
= false;
780 agp_backend_release(agp_bridge
);
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
);
792 int agpioc_release_wrap(struct agp_file_private
*priv
)
795 agp_controller_release_current(agp_fe
.current_controller
, priv
);
799 int agpioc_setup_wrap(struct agp_file_private
*priv
, void __user
*arg
)
801 struct agp_setup mode
;
804 if (copy_from_user(&mode
, arg
, sizeof(struct agp_setup
)))
807 agp_enable(agp_bridge
, mode
.agp_mode
);
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
;
818 if (copy_from_user(&reserve
, arg
, sizeof(struct agp_region
)))
821 if ((unsigned) reserve
.seg_count
>= ~0U/sizeof(struct agp_segment
))
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 */
838 return agp_remove_client(reserve
.pid
);
840 struct agp_segment
*segment
;
842 if (reserve
.seg_count
>= 16384)
845 segment
= kmalloc((sizeof(struct agp_segment
) * reserve
.seg_count
),
851 if (copy_from_user(segment
, (void __user
*) reserve
.seg_list
,
852 sizeof(struct agp_segment
) * reserve
.seg_count
)) {
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
) {
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 */
879 int agpioc_protect_wrap(struct agp_file_private
*priv
)
882 /* This function is not currently implemented */
886 static int agpioc_allocate_wrap(struct agp_file_private
*priv
, void __user
*arg
)
888 struct agp_memory
*memory
;
889 struct agp_allocate alloc
;
892 if (copy_from_user(&alloc
, arg
, sizeof(struct agp_allocate
)))
895 if (alloc
.type
>= AGP_USER_TYPES
)
898 memory
= agp_allocate_memory_wrap(alloc
.pg_count
, alloc
.type
);
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
);
913 int agpioc_deallocate_wrap(struct agp_file_private
*priv
, int arg
)
915 struct agp_memory
*memory
;
918 memory
= agp_find_mem_by_key(arg
);
923 agp_free_memory_wrap(memory
);
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
;
933 if (copy_from_user(&bind_info
, arg
, sizeof(struct agp_bind
)))
936 memory
= agp_find_mem_by_key(bind_info
.key
);
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
;
950 if (copy_from_user(&unbind
, arg
, sizeof(struct agp_unbind
)))
953 memory
= agp_find_mem_by_key(unbind
.key
);
958 return agp_unbind_memory(memory
);
961 int agpioc_chipset_flush_wrap(struct agp_file_private
*priv
)
964 agp_flush_chipset(agp_bridge
);
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
)) {
982 if ((agp_fe
.backend_acquired
!= true) &&
983 (cmd
!= AGPIOC_ACQUIRE
)) {
987 if (cmd
!= AGPIOC_ACQUIRE
) {
988 if (!(test_bit(AGP_FF_IS_CONTROLLER
, &curr_priv
->access_flags
))) {
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
) {
1003 ret_val
= agpioc_info_wrap(curr_priv
, (void __user
*) arg
);
1006 case AGPIOC_ACQUIRE
:
1007 ret_val
= agpioc_acquire_wrap(curr_priv
);
1010 case AGPIOC_RELEASE
:
1011 ret_val
= agpioc_release_wrap(curr_priv
);
1015 ret_val
= agpioc_setup_wrap(curr_priv
, (void __user
*) arg
);
1018 case AGPIOC_RESERVE
:
1019 ret_val
= agpioc_reserve_wrap(curr_priv
, (void __user
*) arg
);
1022 case AGPIOC_PROTECT
:
1023 ret_val
= agpioc_protect_wrap(curr_priv
);
1026 case AGPIOC_ALLOCATE
:
1027 ret_val
= agpioc_allocate_wrap(curr_priv
, (void __user
*) arg
);
1030 case AGPIOC_DEALLOCATE
:
1031 ret_val
= agpioc_deallocate_wrap(curr_priv
, (int) arg
);
1035 ret_val
= agpioc_bind_wrap(curr_priv
, (void __user
*) arg
);
1039 ret_val
= agpioc_unbind_wrap(curr_priv
, (void __user
*) arg
);
1042 case AGPIOC_CHIPSET_FLUSH
:
1043 ret_val
= agpioc_chipset_flush_wrap(curr_priv
);
1048 DBG("ioctl returns %d\n", ret_val
);
1049 mutex_unlock(&(agp_fe
.agp_mutex
));
1053 static const struct file_operations agp_fops
=
1055 .owner
= THIS_MODULE
,
1056 .llseek
= no_llseek
,
1059 .unlocked_ioctl
= agp_ioctl
,
1060 #ifdef CONFIG_COMPAT
1061 .compat_ioctl
= compat_agp_ioctl
,
1065 .release
= agp_release
,
1068 static struct miscdevice agp_miscdev
=
1070 .minor
= AGPGART_MINOR
,
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
);
1087 void agp_frontend_cleanup(void)
1089 misc_deregister(&agp_miscdev
);