2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
8 * Copyright (c) 2000-2007 Adaptec, Inc. (aacraid@adaptec.com)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; see the file COPYING. If not, write to
22 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 * Abstract: Contains all routines for control of the AFA comm layer
31 #include <linux/kernel.h>
32 #include <linux/init.h>
33 #include <linux/types.h>
34 #include <linux/pci.h>
35 #include <linux/spinlock.h>
36 #include <linux/slab.h>
37 #include <linux/completion.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/blkdev.h>
40 #include <linux/delay.h> /* ssleep prototype */
41 #include <linux/kthread.h>
42 #include <asm/semaphore.h>
43 #include <asm/uaccess.h>
48 * ioctl_send_fib - send a FIB from userspace
49 * @dev: adapter is being processed
50 * @arg: arguments to the ioctl call
52 * This routine sends a fib to the adapter on behalf of a user level
55 # define AAC_DEBUG_PREAMBLE KERN_INFO
56 # define AAC_DEBUG_POSTAMBLE
58 static int ioctl_send_fib(struct aac_dev
* dev
, void __user
*arg
)
62 struct hw_fib
* hw_fib
= (struct hw_fib
*)0;
63 dma_addr_t hw_fib_pa
= (dma_addr_t
)0LL;
70 fibptr
= aac_fib_alloc(dev
);
75 kfib
= fibptr
->hw_fib_va
;
77 * First copy in the header so that we can check the size field.
79 if (copy_from_user((void *)kfib
, arg
, sizeof(struct aac_fibhdr
))) {
84 * Since we copy based on the fib header size, make sure that we
85 * will not overrun the buffer when we copy the memory. Return
86 * an error if we would.
88 size
= le16_to_cpu(kfib
->header
.Size
) + sizeof(struct aac_fibhdr
);
89 if (size
< le16_to_cpu(kfib
->header
.SenderSize
))
90 size
= le16_to_cpu(kfib
->header
.SenderSize
);
91 if (size
> dev
->max_fib_size
) {
96 /* Highjack the hw_fib */
97 hw_fib
= fibptr
->hw_fib_va
;
98 hw_fib_pa
= fibptr
->hw_fib_pa
;
99 fibptr
->hw_fib_va
= kfib
= pci_alloc_consistent(dev
->pdev
, size
, &fibptr
->hw_fib_pa
);
100 memset(((char *)kfib
) + dev
->max_fib_size
, 0, size
- dev
->max_fib_size
);
101 memcpy(kfib
, hw_fib
, dev
->max_fib_size
);
104 if (copy_from_user(kfib
, arg
, size
)) {
109 if (kfib
->header
.Command
== cpu_to_le16(TakeABreakPt
)) {
110 aac_adapter_interrupt(dev
);
112 * Since we didn't really send a fib, zero out the state to allow
113 * cleanup code not to assert.
115 kfib
->header
.XferState
= 0;
117 retval
= aac_fib_send(le16_to_cpu(kfib
->header
.Command
), fibptr
,
118 le16_to_cpu(kfib
->header
.Size
) , FsaNormal
,
123 if (aac_fib_complete(fibptr
) != 0) {
129 * Make sure that the size returned by the adapter (which includes
130 * the header) is less than or equal to the size of a fib, so we
131 * don't corrupt application data. Then copy that size to the user
132 * buffer. (Don't try to add the header information again, since it
133 * was already included by the adapter.)
137 if (copy_to_user(arg
, (void *)kfib
, size
))
141 pci_free_consistent(dev
->pdev
, size
, kfib
, fibptr
->hw_fib_pa
);
142 fibptr
->hw_fib_pa
= hw_fib_pa
;
143 fibptr
->hw_fib_va
= hw_fib
;
145 if (retval
!= -EINTR
)
146 aac_fib_free(fibptr
);
151 * open_getadapter_fib - Get the next fib
153 * This routine will get the next Fib, if available, from the AdapterFibContext
154 * passed in from the user.
157 static int open_getadapter_fib(struct aac_dev
* dev
, void __user
*arg
)
159 struct aac_fib_context
* fibctx
;
162 fibctx
= kmalloc(sizeof(struct aac_fib_context
), GFP_KERNEL
);
163 if (fibctx
== NULL
) {
167 struct list_head
* entry
;
168 struct aac_fib_context
* context
;
170 fibctx
->type
= FSAFS_NTC_GET_ADAPTER_FIB_CONTEXT
;
171 fibctx
->size
= sizeof(struct aac_fib_context
);
173 * Yes yes, I know this could be an index, but we have a
174 * better guarantee of uniqueness for the locked loop below.
175 * Without the aid of a persistent history, this also helps
176 * reduce the chance that the opaque context would be reused.
178 fibctx
->unique
= (u32
)((ulong
)fibctx
& 0xFFFFFFFF);
180 * Initialize the mutex used to wait for the next AIF.
182 init_MUTEX_LOCKED(&fibctx
->wait_sem
);
185 * Initialize the fibs and set the count of fibs on
189 INIT_LIST_HEAD(&fibctx
->fib_list
);
190 fibctx
->jiffies
= jiffies
/HZ
;
192 * Now add this context onto the adapter's
193 * AdapterFibContext list.
195 spin_lock_irqsave(&dev
->fib_lock
, flags
);
196 /* Ensure that we have a unique identifier */
197 entry
= dev
->fib_list
.next
;
198 while (entry
!= &dev
->fib_list
) {
199 context
= list_entry(entry
, struct aac_fib_context
, next
);
200 if (context
->unique
== fibctx
->unique
) {
201 /* Not unique (32 bits) */
203 entry
= dev
->fib_list
.next
;
208 list_add_tail(&fibctx
->next
, &dev
->fib_list
);
209 spin_unlock_irqrestore(&dev
->fib_lock
, flags
);
210 if (copy_to_user(arg
, &fibctx
->unique
,
211 sizeof(fibctx
->unique
))) {
221 * next_getadapter_fib - get the next fib
222 * @dev: adapter to use
223 * @arg: ioctl argument
225 * This routine will get the next Fib, if available, from the AdapterFibContext
226 * passed in from the user.
229 static int next_getadapter_fib(struct aac_dev
* dev
, void __user
*arg
)
233 struct aac_fib_context
*fibctx
;
235 struct list_head
* entry
;
238 if(copy_from_user((void *)&f
, arg
, sizeof(struct fib_ioctl
)))
241 * Verify that the HANDLE passed in was a valid AdapterFibContext
243 * Search the list of AdapterFibContext addresses on the adapter
244 * to be sure this is a valid address
246 entry
= dev
->fib_list
.next
;
249 while (entry
!= &dev
->fib_list
) {
250 fibctx
= list_entry(entry
, struct aac_fib_context
, next
);
252 * Extract the AdapterFibContext from the Input parameters.
254 if (fibctx
->unique
== f
.fibctx
) { /* We found a winner */
261 dprintk ((KERN_INFO
"Fib Context not found\n"));
265 if((fibctx
->type
!= FSAFS_NTC_GET_ADAPTER_FIB_CONTEXT
) ||
266 (fibctx
->size
!= sizeof(struct aac_fib_context
))) {
267 dprintk ((KERN_INFO
"Fib Context corrupt?\n"));
271 spin_lock_irqsave(&dev
->fib_lock
, flags
);
273 * If there are no fibs to send back, then either wait or return
277 if (!list_empty(&fibctx
->fib_list
)) {
278 struct list_head
* entry
;
280 * Pull the next fib from the fibs
282 entry
= fibctx
->fib_list
.next
;
285 fib
= list_entry(entry
, struct fib
, fiblink
);
287 spin_unlock_irqrestore(&dev
->fib_lock
, flags
);
288 if (copy_to_user(f
.fib
, fib
->hw_fib_va
, sizeof(struct hw_fib
))) {
289 kfree(fib
->hw_fib_va
);
294 * Free the space occupied by this copy of the fib.
296 kfree(fib
->hw_fib_va
);
300 spin_unlock_irqrestore(&dev
->fib_lock
, flags
);
301 /* If someone killed the AIF aacraid thread, restart it */
302 status
= !dev
->aif_thread
;
303 if (status
&& !dev
->in_reset
&& dev
->queues
&& dev
->fsa_dev
) {
304 /* Be paranoid, be very paranoid! */
305 kthread_stop(dev
->thread
);
308 dev
->thread
= kthread_run(aac_command_thread
, dev
, dev
->name
);
312 if(down_interruptible(&fibctx
->wait_sem
) < 0) {
315 /* Lock again and retry */
316 spin_lock_irqsave(&dev
->fib_lock
, flags
);
323 fibctx
->jiffies
= jiffies
/HZ
;
327 int aac_close_fib_context(struct aac_dev
* dev
, struct aac_fib_context
* fibctx
)
332 * First free any FIBs that have not been consumed.
334 while (!list_empty(&fibctx
->fib_list
)) {
335 struct list_head
* entry
;
337 * Pull the next fib from the fibs
339 entry
= fibctx
->fib_list
.next
;
341 fib
= list_entry(entry
, struct fib
, fiblink
);
344 * Free the space occupied by this copy of the fib.
346 kfree(fib
->hw_fib_va
);
350 * Remove the Context from the AdapterFibContext List
352 list_del(&fibctx
->next
);
358 * Free the space occupied by the Context
365 * close_getadapter_fib - close down user fib context
367 * @arg: ioctl arguments
369 * This routine will close down the fibctx passed in from the user.
372 static int close_getadapter_fib(struct aac_dev
* dev
, void __user
*arg
)
374 struct aac_fib_context
*fibctx
;
377 struct list_head
* entry
;
380 * Verify that the HANDLE passed in was a valid AdapterFibContext
382 * Search the list of AdapterFibContext addresses on the adapter
383 * to be sure this is a valid address
386 entry
= dev
->fib_list
.next
;
389 while(entry
!= &dev
->fib_list
) {
390 fibctx
= list_entry(entry
, struct aac_fib_context
, next
);
392 * Extract the fibctx from the input parameters
394 if (fibctx
->unique
== (u32
)(uintptr_t)arg
) /* We found a winner */
401 return 0; /* Already gone */
403 if((fibctx
->type
!= FSAFS_NTC_GET_ADAPTER_FIB_CONTEXT
) ||
404 (fibctx
->size
!= sizeof(struct aac_fib_context
)))
406 spin_lock_irqsave(&dev
->fib_lock
, flags
);
407 status
= aac_close_fib_context(dev
, fibctx
);
408 spin_unlock_irqrestore(&dev
->fib_lock
, flags
);
413 * check_revision - close down user fib context
415 * @arg: ioctl arguments
417 * This routine returns the driver version.
418 * Under Linux, there have been no version incompatibilities, so this is
422 static int check_revision(struct aac_dev
*dev
, void __user
*arg
)
424 struct revision response
;
425 char *driver_version
= aac_driver_version
;
429 version
= (simple_strtol(driver_version
,
430 &driver_version
, 10) << 24) | 0x00000400;
431 version
+= simple_strtol(driver_version
+ 1, &driver_version
, 10) << 16;
432 version
+= simple_strtol(driver_version
+ 1, NULL
, 10);
433 response
.version
= cpu_to_le32(version
);
434 # if (defined(AAC_DRIVER_BUILD))
435 response
.build
= cpu_to_le32(AAC_DRIVER_BUILD
);
437 response
.build
= cpu_to_le32(9999);
440 if (copy_to_user(arg
, &response
, sizeof(response
)))
452 static int aac_send_raw_srb(struct aac_dev
* dev
, void __user
* arg
)
456 struct aac_srb
*srbcmd
= NULL
;
457 struct user_aac_srb
*user_srbcmd
= NULL
;
458 struct user_aac_srb __user
*user_srb
= arg
;
459 struct aac_srb_reply __user
*user_reply
;
460 struct aac_srb_reply
* reply
;
465 void __user
*sg_user
[32];
469 u32 actual_fibsize64
, actual_fibsize
= 0;
474 dprintk((KERN_DEBUG
"aacraid: send raw srb -EBUSY\n"));
477 if (!capable(CAP_SYS_ADMIN
)){
478 dprintk((KERN_DEBUG
"aacraid: No permission to send raw srb\n"));
482 * Allocate and initialize a Fib then setup a SRB command
484 if (!(srbfib
= aac_fib_alloc(dev
))) {
487 aac_fib_init(srbfib
);
489 srbcmd
= (struct aac_srb
*) fib_data(srbfib
);
491 memset(sg_list
, 0, sizeof(sg_list
)); /* cleanup may take issue */
492 if(copy_from_user(&fibsize
, &user_srb
->count
,sizeof(u32
))){
493 dprintk((KERN_DEBUG
"aacraid: Could not copy data size from user\n"));
498 if (fibsize
> (dev
->max_fib_size
- sizeof(struct aac_fibhdr
))) {
503 user_srbcmd
= kmalloc(fibsize
, GFP_KERNEL
);
505 dprintk((KERN_DEBUG
"aacraid: Could not make a copy of the srb\n"));
509 if(copy_from_user(user_srbcmd
, user_srb
,fibsize
)){
510 dprintk((KERN_DEBUG
"aacraid: Could not copy srb from user\n"));
515 user_reply
= arg
+fibsize
;
517 flags
= user_srbcmd
->flags
; /* from user in cpu order */
518 // Fix up srb for endian and force some values
520 srbcmd
->function
= cpu_to_le32(SRBF_ExecuteScsi
); // Force this
521 srbcmd
->channel
= cpu_to_le32(user_srbcmd
->channel
);
522 srbcmd
->id
= cpu_to_le32(user_srbcmd
->id
);
523 srbcmd
->lun
= cpu_to_le32(user_srbcmd
->lun
);
524 srbcmd
->timeout
= cpu_to_le32(user_srbcmd
->timeout
);
525 srbcmd
->flags
= cpu_to_le32(flags
);
526 srbcmd
->retry_limit
= 0; // Obsolete parameter
527 srbcmd
->cdb_size
= cpu_to_le32(user_srbcmd
->cdb_size
);
528 memcpy(srbcmd
->cdb
, user_srbcmd
->cdb
, sizeof(srbcmd
->cdb
));
530 switch (flags
& (SRB_DataIn
| SRB_DataOut
)) {
532 data_dir
= DMA_TO_DEVICE
;
534 case (SRB_DataIn
| SRB_DataOut
):
535 data_dir
= DMA_BIDIRECTIONAL
;
538 data_dir
= DMA_FROM_DEVICE
;
543 if (user_srbcmd
->sg
.count
> ARRAY_SIZE(sg_list
)) {
544 dprintk((KERN_DEBUG
"aacraid: too many sg entries %d\n",
545 le32_to_cpu(srbcmd
->sg
.count
)));
549 actual_fibsize
= sizeof(struct aac_srb
) - sizeof(struct sgentry
) +
550 ((user_srbcmd
->sg
.count
& 0xff) * sizeof(struct sgentry
));
551 actual_fibsize64
= actual_fibsize
+ (user_srbcmd
->sg
.count
& 0xff) *
552 (sizeof(struct sgentry64
) - sizeof(struct sgentry
));
553 /* User made a mistake - should not continue */
554 if ((actual_fibsize
!= fibsize
) && (actual_fibsize64
!= fibsize
)) {
555 dprintk((KERN_DEBUG
"aacraid: Bad Size specified in "
556 "Raw SRB command calculated fibsize=%lu;%lu "
557 "user_srbcmd->sg.count=%d aac_srb=%lu sgentry=%lu;%lu "
558 "issued fibsize=%d\n",
559 actual_fibsize
, actual_fibsize64
, user_srbcmd
->sg
.count
,
560 sizeof(struct aac_srb
), sizeof(struct sgentry
),
561 sizeof(struct sgentry64
), fibsize
));
565 if ((data_dir
== DMA_NONE
) && user_srbcmd
->sg
.count
) {
566 dprintk((KERN_DEBUG
"aacraid: SG with no direction specified in Raw SRB command\n"));
571 if (dev
->adapter_info
.options
& AAC_OPT_SGMAP_HOST64
) {
572 struct user_sgmap64
* upsg
= (struct user_sgmap64
*)&user_srbcmd
->sg
;
573 struct sgmap64
* psg
= (struct sgmap64
*)&srbcmd
->sg
;
576 * This should also catch if user used the 32 bit sgmap
578 if (actual_fibsize64
== fibsize
) {
579 actual_fibsize
= actual_fibsize64
;
580 for (i
= 0; i
< upsg
->count
; i
++) {
583 /* Does this really need to be GFP_DMA? */
584 p
= kmalloc(upsg
->sg
[i
].count
,GFP_KERNEL
|__GFP_DMA
);
586 dprintk((KERN_DEBUG
"aacraid: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
587 upsg
->sg
[i
].count
,i
,upsg
->count
));
591 addr
= (u64
)upsg
->sg
[i
].addr
[0];
592 addr
+= ((u64
)upsg
->sg
[i
].addr
[1]) << 32;
593 sg_user
[i
] = (void __user
*)(uintptr_t)addr
;
594 sg_list
[i
] = p
; // save so we can clean up later
597 if( flags
& SRB_DataOut
){
598 if(copy_from_user(p
,sg_user
[i
],upsg
->sg
[i
].count
)){
599 dprintk((KERN_DEBUG
"aacraid: Could not copy sg data from user\n"));
604 addr
= pci_map_single(dev
->pdev
, p
, upsg
->sg
[i
].count
, data_dir
);
606 psg
->sg
[i
].addr
[0] = cpu_to_le32(addr
& 0xffffffff);
607 psg
->sg
[i
].addr
[1] = cpu_to_le32(addr
>>32);
608 byte_count
+= upsg
->sg
[i
].count
;
609 psg
->sg
[i
].count
= cpu_to_le32(upsg
->sg
[i
].count
);
612 struct user_sgmap
* usg
;
613 usg
= kmalloc(actual_fibsize
- sizeof(struct aac_srb
)
614 + sizeof(struct sgmap
), GFP_KERNEL
);
616 dprintk((KERN_DEBUG
"aacraid: Allocation error in Raw SRB command\n"));
620 memcpy (usg
, upsg
, actual_fibsize
- sizeof(struct aac_srb
)
621 + sizeof(struct sgmap
));
622 actual_fibsize
= actual_fibsize64
;
624 for (i
= 0; i
< usg
->count
; i
++) {
627 /* Does this really need to be GFP_DMA? */
628 p
= kmalloc(usg
->sg
[i
].count
,GFP_KERNEL
|__GFP_DMA
);
631 dprintk((KERN_DEBUG
"aacraid: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
632 usg
->sg
[i
].count
,i
,usg
->count
));
636 sg_user
[i
] = (void __user
*)(uintptr_t)usg
->sg
[i
].addr
;
637 sg_list
[i
] = p
; // save so we can clean up later
640 if( flags
& SRB_DataOut
){
641 if(copy_from_user(p
,sg_user
[i
],upsg
->sg
[i
].count
)){
643 dprintk((KERN_DEBUG
"aacraid: Could not copy sg data from user\n"));
648 addr
= pci_map_single(dev
->pdev
, p
, usg
->sg
[i
].count
, data_dir
);
650 psg
->sg
[i
].addr
[0] = cpu_to_le32(addr
& 0xffffffff);
651 psg
->sg
[i
].addr
[1] = cpu_to_le32(addr
>>32);
652 byte_count
+= usg
->sg
[i
].count
;
653 psg
->sg
[i
].count
= cpu_to_le32(usg
->sg
[i
].count
);
657 srbcmd
->count
= cpu_to_le32(byte_count
);
658 psg
->count
= cpu_to_le32(sg_indx
+1);
659 status
= aac_fib_send(ScsiPortCommand64
, srbfib
, actual_fibsize
, FsaNormal
, 1, 1,NULL
,NULL
);
661 struct user_sgmap
* upsg
= &user_srbcmd
->sg
;
662 struct sgmap
* psg
= &srbcmd
->sg
;
664 if (actual_fibsize64
== fibsize
) {
665 struct user_sgmap64
* usg
= (struct user_sgmap64
*)upsg
;
666 for (i
= 0; i
< upsg
->count
; i
++) {
669 /* Does this really need to be GFP_DMA? */
670 p
= kmalloc(usg
->sg
[i
].count
,GFP_KERNEL
|__GFP_DMA
);
672 dprintk((KERN_DEBUG
"aacraid: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
673 usg
->sg
[i
].count
,i
,usg
->count
));
677 addr
= (u64
)usg
->sg
[i
].addr
[0];
678 addr
+= ((u64
)usg
->sg
[i
].addr
[1]) << 32;
679 sg_user
[i
] = (void __user
*)addr
;
680 sg_list
[i
] = p
; // save so we can clean up later
683 if( flags
& SRB_DataOut
){
684 if(copy_from_user(p
,sg_user
[i
],usg
->sg
[i
].count
)){
685 dprintk((KERN_DEBUG
"aacraid: Could not copy sg data from user\n"));
690 addr
= pci_map_single(dev
->pdev
, p
, usg
->sg
[i
].count
, data_dir
);
692 psg
->sg
[i
].addr
= cpu_to_le32(addr
& 0xffffffff);
693 byte_count
+= usg
->sg
[i
].count
;
694 psg
->sg
[i
].count
= cpu_to_le32(usg
->sg
[i
].count
);
697 for (i
= 0; i
< upsg
->count
; i
++) {
700 p
= kmalloc(upsg
->sg
[i
].count
, GFP_KERNEL
);
702 dprintk((KERN_DEBUG
"aacraid: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
703 upsg
->sg
[i
].count
, i
, upsg
->count
));
707 sg_user
[i
] = (void __user
*)(uintptr_t)upsg
->sg
[i
].addr
;
708 sg_list
[i
] = p
; // save so we can clean up later
711 if( flags
& SRB_DataOut
){
712 if(copy_from_user(p
, sg_user
[i
],
713 upsg
->sg
[i
].count
)) {
714 dprintk((KERN_DEBUG
"aacraid: Could not copy sg data from user\n"));
719 addr
= pci_map_single(dev
->pdev
, p
,
720 upsg
->sg
[i
].count
, data_dir
);
722 psg
->sg
[i
].addr
= cpu_to_le32(addr
);
723 byte_count
+= upsg
->sg
[i
].count
;
724 psg
->sg
[i
].count
= cpu_to_le32(upsg
->sg
[i
].count
);
727 srbcmd
->count
= cpu_to_le32(byte_count
);
728 psg
->count
= cpu_to_le32(sg_indx
+1);
729 status
= aac_fib_send(ScsiPortCommand
, srbfib
, actual_fibsize
, FsaNormal
, 1, 1, NULL
, NULL
);
731 if (status
== -EINTR
) {
737 dprintk((KERN_DEBUG
"aacraid: Could not send raw srb fib to hba\n"));
742 if( flags
& SRB_DataIn
) {
743 for(i
= 0 ; i
<= sg_indx
; i
++){
744 byte_count
= le32_to_cpu(
745 (dev
->adapter_info
.options
& AAC_OPT_SGMAP_HOST64
)
746 ? ((struct sgmap64
*)&srbcmd
->sg
)->sg
[i
].count
747 : srbcmd
->sg
.sg
[i
].count
);
748 if(copy_to_user(sg_user
[i
], sg_list
[i
], byte_count
)){
749 dprintk((KERN_DEBUG
"aacraid: Could not copy sg data to user\n"));
757 reply
= (struct aac_srb_reply
*) fib_data(srbfib
);
758 if(copy_to_user(user_reply
,reply
,sizeof(struct aac_srb_reply
))){
759 dprintk((KERN_DEBUG
"aacraid: Could not copy reply to user\n"));
766 for(i
=0; i
<= sg_indx
; i
++){
769 if (rcode
!= -EINTR
) {
770 aac_fib_complete(srbfib
);
771 aac_fib_free(srbfib
);
777 struct aac_pci_info
{
783 static int aac_get_pci_info(struct aac_dev
* dev
, void __user
*arg
)
785 struct aac_pci_info pci_info
;
787 pci_info
.bus
= dev
->pdev
->bus
->number
;
788 pci_info
.slot
= PCI_SLOT(dev
->pdev
->devfn
);
790 if (copy_to_user(arg
, &pci_info
, sizeof(struct aac_pci_info
))) {
791 dprintk((KERN_DEBUG
"aacraid: Could not copy pci info\n"));
798 int aac_do_ioctl(struct aac_dev
* dev
, int cmd
, void __user
*arg
)
803 * HBA gets first crack
806 status
= aac_dev_ioctl(dev
, cmd
, arg
);
807 if(status
!= -ENOTTY
)
811 case FSACTL_MINIPORT_REV_CHECK
:
812 status
= check_revision(dev
, arg
);
814 case FSACTL_SEND_LARGE_FIB
:
816 status
= ioctl_send_fib(dev
, arg
);
818 case FSACTL_OPEN_GET_ADAPTER_FIB
:
819 status
= open_getadapter_fib(dev
, arg
);
821 case FSACTL_GET_NEXT_ADAPTER_FIB
:
822 status
= next_getadapter_fib(dev
, arg
);
824 case FSACTL_CLOSE_GET_ADAPTER_FIB
:
825 status
= close_getadapter_fib(dev
, arg
);
827 case FSACTL_SEND_RAW_SRB
:
828 status
= aac_send_raw_srb(dev
,arg
);
830 case FSACTL_GET_PCI_INFO
:
831 status
= aac_get_pci_info(dev
,arg
);