blob: 3a8e7cac9ee20447322494674b07a78577c7ef04 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
4 *
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
7 *
8 * Copyright (c) 2000 Adaptec, Inc. (aacraid@adaptec.com)
9 *
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)
13 * any later version.
14 *
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.
19 *
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.
23 *
24 * Module Name:
25 * commctrl.c
26 *
27 * Abstract: Contains all routines for control of the AFA comm layer
28 *
29 */
30
31#include <linux/kernel.h>
32#include <linux/init.h>
33#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#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>
Mark Haverkampc8f7b072006-08-03 08:02:24 -070040#include <linux/delay.h> /* ssleep prototype */
Mark Haverkampdc4adbf2006-03-27 09:44:26 -080041#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/semaphore.h>
43#include <asm/uaccess.h>
44
45#include "aacraid.h"
46
47/**
48 * ioctl_send_fib - send a FIB from userspace
49 * @dev: adapter is being processed
50 * @arg: arguments to the ioctl call
51 *
52 * This routine sends a fib to the adapter on behalf of a user level
53 * program.
54 */
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070055# define AAC_DEBUG_PREAMBLE KERN_INFO
56# define AAC_DEBUG_POSTAMBLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static int ioctl_send_fib(struct aac_dev * dev, void __user *arg)
59{
60 struct hw_fib * kfib;
61 struct fib *fibptr;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070062 struct hw_fib * hw_fib = (struct hw_fib *)0;
63 dma_addr_t hw_fib_pa = (dma_addr_t)0LL;
64 unsigned size;
65 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Mark Haverkamp33bb3b22007-03-15 10:27:21 -070067 if (dev->in_reset) {
68 return -EBUSY;
69 }
Mark Haverkampbfb35aa82006-02-01 09:30:55 -080070 fibptr = aac_fib_alloc(dev);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070071 if(fibptr == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return -ENOMEM;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Mark Haverkampa8166a52007-03-15 10:26:22 -070075 kfib = fibptr->hw_fib_va;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /*
77 * First copy in the header so that we can check the size field.
78 */
79 if (copy_from_user((void *)kfib, arg, sizeof(struct aac_fibhdr))) {
Mark Haverkampbfb35aa82006-02-01 09:30:55 -080080 aac_fib_free(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return -EFAULT;
82 }
83 /*
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.
87 */
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070088 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) {
Mark Haverkamp6e289a92006-01-11 09:28:07 -080092 if (size > 2048) {
93 retval = -EINVAL;
94 goto cleanup;
95 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070096 /* Highjack the hw_fib */
Mark Haverkampa8166a52007-03-15 10:26:22 -070097 hw_fib = fibptr->hw_fib_va;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070098 hw_fib_pa = fibptr->hw_fib_pa;
Mark Haverkampa8166a52007-03-15 10:26:22 -070099 fibptr->hw_fib_va = kfib = pci_alloc_consistent(dev->pdev, size, &fibptr->hw_fib_pa);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700100 memset(((char *)kfib) + dev->max_fib_size, 0, size - dev->max_fib_size);
101 memcpy(kfib, hw_fib, dev->max_fib_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700104 if (copy_from_user(kfib, arg, size)) {
105 retval = -EFAULT;
106 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700109 if (kfib->header.Command == cpu_to_le16(TakeABreakPt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 aac_adapter_interrupt(dev);
111 /*
112 * Since we didn't really send a fib, zero out the state to allow
113 * cleanup code not to assert.
114 */
115 kfib->header.XferState = 0;
116 } else {
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800117 retval = aac_fib_send(le16_to_cpu(kfib->header.Command), fibptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 le16_to_cpu(kfib->header.Size) , FsaNormal,
119 1, 1, NULL, NULL);
120 if (retval) {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700121 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800123 if (aac_fib_complete(fibptr) != 0) {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700124 retval = -EINVAL;
125 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127 }
128 /*
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.)
134 */
135
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700136 retval = 0;
137 if (copy_to_user(arg, (void *)kfib, size))
138 retval = -EFAULT;
139cleanup:
140 if (hw_fib) {
141 pci_free_consistent(dev->pdev, size, kfib, fibptr->hw_fib_pa);
142 fibptr->hw_fib_pa = hw_fib_pa;
Mark Haverkampa8166a52007-03-15 10:26:22 -0700143 fibptr->hw_fib_va = hw_fib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
Mark Haverkampc8f7b072006-08-03 08:02:24 -0700145 if (retval != -EINTR)
146 aac_fib_free(fibptr);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700147 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/**
151 * open_getadapter_fib - Get the next fib
152 *
153 * This routine will get the next Fib, if available, from the AdapterFibContext
154 * passed in from the user.
155 */
156
157static int open_getadapter_fib(struct aac_dev * dev, void __user *arg)
158{
159 struct aac_fib_context * fibctx;
160 int status;
161
162 fibctx = kmalloc(sizeof(struct aac_fib_context), GFP_KERNEL);
163 if (fibctx == NULL) {
164 status = -ENOMEM;
165 } else {
166 unsigned long flags;
167 struct list_head * entry;
168 struct aac_fib_context * context;
169
170 fibctx->type = FSAFS_NTC_GET_ADAPTER_FIB_CONTEXT;
171 fibctx->size = sizeof(struct aac_fib_context);
172 /*
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.
177 */
178 fibctx->unique = (u32)((ulong)fibctx & 0xFFFFFFFF);
179 /*
180 * Initialize the mutex used to wait for the next AIF.
181 */
182 init_MUTEX_LOCKED(&fibctx->wait_sem);
183 fibctx->wait = 0;
184 /*
185 * Initialize the fibs and set the count of fibs on
186 * the list to 0.
187 */
188 fibctx->count = 0;
189 INIT_LIST_HEAD(&fibctx->fib_list);
190 fibctx->jiffies = jiffies/HZ;
191 /*
192 * Now add this context onto the adapter's
193 * AdapterFibContext list.
194 */
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) */
202 fibctx->unique++;
203 entry = dev->fib_list.next;
204 } else {
205 entry = entry->next;
206 }
207 }
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))) {
212 status = -EFAULT;
213 } else {
214 status = 0;
215 }
216 }
217 return status;
218}
219
220/**
221 * next_getadapter_fib - get the next fib
222 * @dev: adapter to use
223 * @arg: ioctl argument
224 *
225 * This routine will get the next Fib, if available, from the AdapterFibContext
226 * passed in from the user.
227 */
228
229static int next_getadapter_fib(struct aac_dev * dev, void __user *arg)
230{
231 struct fib_ioctl f;
232 struct fib *fib;
233 struct aac_fib_context *fibctx;
234 int status;
235 struct list_head * entry;
236 unsigned long flags;
237
238 if(copy_from_user((void *)&f, arg, sizeof(struct fib_ioctl)))
239 return -EFAULT;
240 /*
241 * Verify that the HANDLE passed in was a valid AdapterFibContext
242 *
243 * Search the list of AdapterFibContext addresses on the adapter
244 * to be sure this is a valid address
245 */
246 entry = dev->fib_list.next;
247 fibctx = NULL;
248
249 while (entry != &dev->fib_list) {
250 fibctx = list_entry(entry, struct aac_fib_context, next);
251 /*
252 * Extract the AdapterFibContext from the Input parameters.
253 */
254 if (fibctx->unique == f.fibctx) { /* We found a winner */
255 break;
256 }
257 entry = entry->next;
258 fibctx = NULL;
259 }
260 if (!fibctx) {
261 dprintk ((KERN_INFO "Fib Context not found\n"));
262 return -EINVAL;
263 }
264
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"));
268 return -EINVAL;
269 }
270 status = 0;
271 spin_lock_irqsave(&dev->fib_lock, flags);
272 /*
273 * If there are no fibs to send back, then either wait or return
274 * -EAGAIN
275 */
276return_fib:
277 if (!list_empty(&fibctx->fib_list)) {
278 struct list_head * entry;
279 /*
280 * Pull the next fib from the fibs
281 */
282 entry = fibctx->fib_list.next;
283 list_del(entry);
284
285 fib = list_entry(entry, struct fib, fiblink);
286 fibctx->count--;
287 spin_unlock_irqrestore(&dev->fib_lock, flags);
Mark Haverkampa8166a52007-03-15 10:26:22 -0700288 if (copy_to_user(f.fib, fib->hw_fib_va, sizeof(struct hw_fib))) {
289 kfree(fib->hw_fib_va);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 kfree(fib);
291 return -EFAULT;
292 }
293 /*
294 * Free the space occupied by this copy of the fib.
295 */
Mark Haverkampa8166a52007-03-15 10:26:22 -0700296 kfree(fib->hw_fib_va);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 kfree(fib);
298 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 } else {
300 spin_unlock_irqrestore(&dev->fib_lock, flags);
Mark Haverkampdc4adbf2006-03-27 09:44:26 -0800301 /* If someone killed the AIF aacraid thread, restart it */
302 status = !dev->aif_thread;
Mark Haverkamp8c867b22006-08-03 08:03:30 -0700303 if (status && !dev->in_reset && dev->queues && dev->fsa_dev) {
Mark Haverkampdc4adbf2006-03-27 09:44:26 -0800304 /* Be paranoid, be very paranoid! */
305 kthread_stop(dev->thread);
306 ssleep(1);
307 dev->aif_thread = 0;
308 dev->thread = kthread_run(aac_command_thread, dev, dev->name);
309 ssleep(1);
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (f.wait) {
312 if(down_interruptible(&fibctx->wait_sem) < 0) {
313 status = -EINTR;
314 } else {
315 /* Lock again and retry */
316 spin_lock_irqsave(&dev->fib_lock, flags);
317 goto return_fib;
318 }
319 } else {
320 status = -EAGAIN;
321 }
322 }
Mark Haverkamp12a26d02005-08-03 15:39:25 -0700323 fibctx->jiffies = jiffies/HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return status;
325}
326
327int aac_close_fib_context(struct aac_dev * dev, struct aac_fib_context * fibctx)
328{
329 struct fib *fib;
330
331 /*
332 * First free any FIBs that have not been consumed.
333 */
334 while (!list_empty(&fibctx->fib_list)) {
335 struct list_head * entry;
336 /*
337 * Pull the next fib from the fibs
338 */
339 entry = fibctx->fib_list.next;
340 list_del(entry);
341 fib = list_entry(entry, struct fib, fiblink);
342 fibctx->count--;
343 /*
344 * Free the space occupied by this copy of the fib.
345 */
Mark Haverkampa8166a52007-03-15 10:26:22 -0700346 kfree(fib->hw_fib_va);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 kfree(fib);
348 }
349 /*
350 * Remove the Context from the AdapterFibContext List
351 */
352 list_del(&fibctx->next);
353 /*
354 * Invalidate context
355 */
356 fibctx->type = 0;
357 /*
358 * Free the space occupied by the Context
359 */
360 kfree(fibctx);
361 return 0;
362}
363
364/**
365 * close_getadapter_fib - close down user fib context
366 * @dev: adapter
367 * @arg: ioctl arguments
368 *
369 * This routine will close down the fibctx passed in from the user.
370 */
371
372static int close_getadapter_fib(struct aac_dev * dev, void __user *arg)
373{
374 struct aac_fib_context *fibctx;
375 int status;
376 unsigned long flags;
377 struct list_head * entry;
378
379 /*
380 * Verify that the HANDLE passed in was a valid AdapterFibContext
381 *
382 * Search the list of AdapterFibContext addresses on the adapter
383 * to be sure this is a valid address
384 */
385
386 entry = dev->fib_list.next;
387 fibctx = NULL;
388
389 while(entry != &dev->fib_list) {
390 fibctx = list_entry(entry, struct aac_fib_context, next);
391 /*
392 * Extract the fibctx from the input parameters
393 */
394 if (fibctx->unique == (u32)(unsigned long)arg) {
395 /* We found a winner */
396 break;
397 }
398 entry = entry->next;
399 fibctx = NULL;
400 }
401
402 if (!fibctx)
403 return 0; /* Already gone */
404
405 if((fibctx->type != FSAFS_NTC_GET_ADAPTER_FIB_CONTEXT) ||
406 (fibctx->size != sizeof(struct aac_fib_context)))
407 return -EINVAL;
408 spin_lock_irqsave(&dev->fib_lock, flags);
409 status = aac_close_fib_context(dev, fibctx);
410 spin_unlock_irqrestore(&dev->fib_lock, flags);
411 return status;
412}
413
414/**
415 * check_revision - close down user fib context
416 * @dev: adapter
417 * @arg: ioctl arguments
418 *
419 * This routine returns the driver version.
420 * Under Linux, there have been no version incompatibilities, so this is
421 * simple!
422 */
423
424static int check_revision(struct aac_dev *dev, void __user *arg)
425{
426 struct revision response;
Mark Haverkampc7f47602005-08-03 15:38:55 -0700427 char *driver_version = aac_driver_version;
428 u32 version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Mark Haverkamp9f30a322005-10-24 10:52:02 -0700430 response.compat = 1;
Mark Haverkampc7f47602005-08-03 15:38:55 -0700431 version = (simple_strtol(driver_version,
432 &driver_version, 10) << 24) | 0x00000400;
433 version += simple_strtol(driver_version + 1, &driver_version, 10) << 16;
434 version += simple_strtol(driver_version + 1, NULL, 10);
435 response.version = cpu_to_le32(version);
436# if (defined(AAC_DRIVER_BUILD))
437 response.build = cpu_to_le32(AAC_DRIVER_BUILD);
438# else
439 response.build = cpu_to_le32(9999);
440# endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (copy_to_user(arg, &response, sizeof(response)))
443 return -EFAULT;
444 return 0;
445}
446
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448/**
449 *
450 * aac_send_raw_scb
451 *
452 */
453
Adrian Bunk 48338692005-04-25 19:45:58 -0700454static int aac_send_raw_srb(struct aac_dev* dev, void __user * arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct fib* srbfib;
457 int status;
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700458 struct aac_srb *srbcmd = NULL;
459 struct user_aac_srb *user_srbcmd = NULL;
460 struct user_aac_srb __user *user_srb = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 struct aac_srb_reply __user *user_reply;
462 struct aac_srb_reply* reply;
463 u32 fibsize = 0;
464 u32 flags = 0;
465 s32 rcode = 0;
466 u32 data_dir;
467 void __user *sg_user[32];
468 void *sg_list[32];
469 u32 sg_indx = 0;
470 u32 byte_count = 0;
471 u32 actual_fibsize = 0;
472 int i;
473
474
Mark Haverkamp33bb3b22007-03-15 10:27:21 -0700475 if (dev->in_reset) {
476 dprintk((KERN_DEBUG"aacraid: send raw srb -EBUSY\n"));
477 return -EBUSY;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (!capable(CAP_SYS_ADMIN)){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700480 dprintk((KERN_DEBUG"aacraid: No permission to send raw srb\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -EPERM;
482 }
483 /*
484 * Allocate and initialize a Fib then setup a BlockWrite command
485 */
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800486 if (!(srbfib = aac_fib_alloc(dev))) {
Mark Haverkamp5d497ce2005-06-17 13:38:04 -0700487 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800489 aac_fib_init(srbfib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 srbcmd = (struct aac_srb*) fib_data(srbfib);
492
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700493 memset(sg_list, 0, sizeof(sg_list)); /* cleanup may take issue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if(copy_from_user(&fibsize, &user_srb->count,sizeof(u32))){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700495 dprintk((KERN_DEBUG"aacraid: Could not copy data size from user\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 rcode = -EFAULT;
497 goto cleanup;
498 }
499
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700500 if (fibsize > (dev->max_fib_size - sizeof(struct aac_fibhdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 rcode = -EINVAL;
502 goto cleanup;
503 }
504
Dave Jones4645df12005-07-12 13:58:08 -0700505 user_srbcmd = kmalloc(fibsize, GFP_KERNEL);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700506 if (!user_srbcmd) {
507 dprintk((KERN_DEBUG"aacraid: Could not make a copy of the srb\n"));
508 rcode = -ENOMEM;
509 goto cleanup;
510 }
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700511 if(copy_from_user(user_srbcmd, user_srb,fibsize)){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700512 dprintk((KERN_DEBUG"aacraid: Could not copy srb from user\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 rcode = -EFAULT;
514 goto cleanup;
515 }
516
517 user_reply = arg+fibsize;
518
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700519 flags = user_srbcmd->flags; /* from user in cpu order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 // Fix up srb for endian and force some values
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi); // Force this
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700523 srbcmd->channel = cpu_to_le32(user_srbcmd->channel);
524 srbcmd->id = cpu_to_le32(user_srbcmd->id);
525 srbcmd->lun = cpu_to_le32(user_srbcmd->lun);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700526 srbcmd->timeout = cpu_to_le32(user_srbcmd->timeout);
Mark Haverkamp5d497ce2005-06-17 13:38:04 -0700527 srbcmd->flags = cpu_to_le32(flags);
528 srbcmd->retry_limit = 0; // Obsolete parameter
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700529 srbcmd->cdb_size = cpu_to_le32(user_srbcmd->cdb_size);
Mark Haverkamp5d497ce2005-06-17 13:38:04 -0700530 memcpy(srbcmd->cdb, user_srbcmd->cdb, sizeof(srbcmd->cdb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700532 switch (flags & (SRB_DataIn | SRB_DataOut)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 case SRB_DataOut:
534 data_dir = DMA_TO_DEVICE;
535 break;
536 case (SRB_DataIn | SRB_DataOut):
537 data_dir = DMA_BIDIRECTIONAL;
538 break;
539 case SRB_DataIn:
540 data_dir = DMA_FROM_DEVICE;
541 break;
542 default:
543 data_dir = DMA_NONE;
544 }
Tobias Klauser6391a112006-06-08 22:23:48 -0700545 if (user_srbcmd->sg.count > ARRAY_SIZE(sg_list)) {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700546 dprintk((KERN_DEBUG"aacraid: too many sg entries %d\n",
547 le32_to_cpu(srbcmd->sg.count)));
548 rcode = -EINVAL;
549 goto cleanup;
550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (dev->dac_support == 1) {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700552 struct user_sgmap64* upsg = (struct user_sgmap64*)&user_srbcmd->sg;
Mark Haverkamp84e29302005-07-07 13:40:00 -0700553 struct sgmap64* psg = (struct sgmap64*)&srbcmd->sg;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700554 struct user_sgmap* usg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 byte_count = 0;
556
557 /*
558 * This should also catch if user used the 32 bit sgmap
559 */
560 actual_fibsize = sizeof(struct aac_srb) -
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700561 sizeof(struct sgentry) +
562 ((upsg->count & 0xff) *
563 sizeof(struct sgentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if(actual_fibsize != fibsize){ // User made a mistake - should not continue
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700565 dprintk((KERN_DEBUG"aacraid: Bad Size specified in Raw SRB command\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 rcode = -EINVAL;
567 goto cleanup;
568 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700569 usg = kmalloc(actual_fibsize - sizeof(struct aac_srb)
570 + sizeof(struct sgmap), GFP_KERNEL);
571 if (!usg) {
572 dprintk((KERN_DEBUG"aacraid: Allocation error in Raw SRB command\n"));
573 rcode = -ENOMEM;
574 goto cleanup;
575 }
576 memcpy (usg, upsg, actual_fibsize - sizeof(struct aac_srb)
577 + sizeof(struct sgmap));
578 actual_fibsize = sizeof(struct aac_srb) -
579 sizeof(struct sgentry) + ((usg->count & 0xff) *
580 sizeof(struct sgentry64));
581 if ((data_dir == DMA_NONE) && upsg->count) {
582 kfree (usg);
583 dprintk((KERN_DEBUG"aacraid: SG with no direction specified in Raw SRB command\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 rcode = -EINVAL;
585 goto cleanup;
586 }
587
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700588 for (i = 0; i < usg->count; i++) {
589 u64 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 void* p;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700591 /* Does this really need to be GFP_DMA? */
592 p = kmalloc(usg->sg[i].count,GFP_KERNEL|__GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if(p == 0) {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700594 kfree (usg);
595 dprintk((KERN_DEBUG"aacraid: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
596 usg->sg[i].count,i,usg->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 rcode = -ENOMEM;
598 goto cleanup;
599 }
Mark Haverkampe75d5172005-10-24 10:52:11 -0700600 sg_user[i] = (void __user *)(long)usg->sg[i].addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 sg_list[i] = p; // save so we can clean up later
602 sg_indx = i;
603
604 if( flags & SRB_DataOut ){
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700605 if(copy_from_user(p,sg_user[i],upsg->sg[i].count)){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700606 kfree (usg);
607 dprintk((KERN_DEBUG"aacraid: Could not copy sg data from user\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 rcode = -EFAULT;
609 goto cleanup;
610 }
611 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700612 addr = pci_map_single(dev->pdev, p, usg->sg[i].count, data_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700614 psg->sg[i].addr[0] = cpu_to_le32(addr & 0xffffffff);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700615 psg->sg[i].addr[1] = cpu_to_le32(addr>>32);
616 psg->sg[i].count = cpu_to_le32(usg->sg[i].count);
617 byte_count += usg->sg[i].count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700619 kfree (usg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 srbcmd->count = cpu_to_le32(byte_count);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700622 psg->count = cpu_to_le32(sg_indx+1);
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800623 status = aac_fib_send(ScsiPortCommand64, srbfib, actual_fibsize, FsaNormal, 1, 1,NULL,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 } else {
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700625 struct user_sgmap* upsg = &user_srbcmd->sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct sgmap* psg = &srbcmd->sg;
627 byte_count = 0;
628
Mark Haverkamp5d497ce2005-06-17 13:38:04 -0700629 actual_fibsize = sizeof (struct aac_srb) + (((user_srbcmd->sg.count & 0xff) - 1) * sizeof (struct sgentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if(actual_fibsize != fibsize){ // User made a mistake - should not continue
Mark Haverkampc8f7b072006-08-03 08:02:24 -0700631 dprintk((KERN_DEBUG"aacraid: Bad Size specified in "
632 "Raw SRB command calculated fibsize=%d "
633 "user_srbcmd->sg.count=%d aac_srb=%d sgentry=%d "
634 "issued fibsize=%d\n",
635 actual_fibsize, user_srbcmd->sg.count,
636 sizeof(struct aac_srb), sizeof(struct sgentry),
637 fibsize));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 rcode = -EINVAL;
639 goto cleanup;
640 }
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700641 if ((data_dir == DMA_NONE) && upsg->count) {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700642 dprintk((KERN_DEBUG"aacraid: SG with no direction specified in Raw SRB command\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 rcode = -EINVAL;
644 goto cleanup;
645 }
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700646 for (i = 0; i < upsg->count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 dma_addr_t addr;
648 void* p;
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700649 p = kmalloc(upsg->sg[i].count, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if(p == 0) {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700651 dprintk((KERN_DEBUG"aacraid: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
652 upsg->sg[i].count, i, upsg->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 rcode = -ENOMEM;
654 goto cleanup;
655 }
Mark Haverkampe75d5172005-10-24 10:52:11 -0700656 sg_user[i] = (void __user *)(long)upsg->sg[i].addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 sg_list[i] = p; // save so we can clean up later
658 sg_indx = i;
659
660 if( flags & SRB_DataOut ){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700661 if(copy_from_user(p, sg_user[i],
662 upsg->sg[i].count)) {
663 dprintk((KERN_DEBUG"aacraid: Could not copy sg data from user\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 rcode = -EFAULT;
665 goto cleanup;
666 }
667 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700668 addr = pci_map_single(dev->pdev, p,
669 upsg->sg[i].count, data_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 psg->sg[i].addr = cpu_to_le32(addr);
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700672 psg->sg[i].count = cpu_to_le32(upsg->sg[i].count);
673 byte_count += upsg->sg[i].count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675 srbcmd->count = cpu_to_le32(byte_count);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700676 psg->count = cpu_to_le32(sg_indx+1);
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800677 status = aac_fib_send(ScsiPortCommand, srbfib, actual_fibsize, FsaNormal, 1, 1, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Mark Haverkampc8f7b072006-08-03 08:02:24 -0700679 if (status == -EINTR) {
680 rcode = -EINTR;
681 goto cleanup;
682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 if (status != 0){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700685 dprintk((KERN_DEBUG"aacraid: Could not send raw srb fib to hba\n"));
Mark Haverkamp5d497ce2005-06-17 13:38:04 -0700686 rcode = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 goto cleanup;
688 }
689
690 if( flags & SRB_DataIn ) {
691 for(i = 0 ; i <= sg_indx; i++){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700692 byte_count = le32_to_cpu((dev->dac_support == 1)
693 ? ((struct sgmap64*)&srbcmd->sg)->sg[i].count
694 : srbcmd->sg.sg[i].count);
695 if(copy_to_user(sg_user[i], sg_list[i], byte_count)){
696 dprintk((KERN_DEBUG"aacraid: Could not copy sg data to user\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 rcode = -EFAULT;
698 goto cleanup;
699
700 }
701 }
702 }
703
704 reply = (struct aac_srb_reply *) fib_data(srbfib);
705 if(copy_to_user(user_reply,reply,sizeof(struct aac_srb_reply))){
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700706 dprintk((KERN_DEBUG"aacraid: Could not copy reply to user\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 rcode = -EFAULT;
708 goto cleanup;
709 }
710
711cleanup:
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700712 kfree(user_srbcmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 for(i=0; i <= sg_indx; i++){
714 kfree(sg_list[i]);
715 }
Mark Haverkampc8f7b072006-08-03 08:02:24 -0700716 if (rcode != -EINTR) {
717 aac_fib_complete(srbfib);
718 aac_fib_free(srbfib);
719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 return rcode;
722}
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724struct aac_pci_info {
725 u32 bus;
726 u32 slot;
727};
728
729
Adrian Bunk 48338692005-04-25 19:45:58 -0700730static int aac_get_pci_info(struct aac_dev* dev, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 struct aac_pci_info pci_info;
733
734 pci_info.bus = dev->pdev->bus->number;
735 pci_info.slot = PCI_SLOT(dev->pdev->devfn);
736
737 if (copy_to_user(arg, &pci_info, sizeof(struct aac_pci_info))) {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700738 dprintk((KERN_DEBUG "aacraid: Could not copy pci info\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -EFAULT;
740 }
741 return 0;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700742}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744
745int aac_do_ioctl(struct aac_dev * dev, int cmd, void __user *arg)
746{
747 int status;
748
749 /*
750 * HBA gets first crack
751 */
752
753 status = aac_dev_ioctl(dev, cmd, arg);
754 if(status != -ENOTTY)
755 return status;
756
757 switch (cmd) {
758 case FSACTL_MINIPORT_REV_CHECK:
759 status = check_revision(dev, arg);
760 break;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700761 case FSACTL_SEND_LARGE_FIB:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 case FSACTL_SENDFIB:
763 status = ioctl_send_fib(dev, arg);
764 break;
765 case FSACTL_OPEN_GET_ADAPTER_FIB:
766 status = open_getadapter_fib(dev, arg);
767 break;
768 case FSACTL_GET_NEXT_ADAPTER_FIB:
769 status = next_getadapter_fib(dev, arg);
770 break;
771 case FSACTL_CLOSE_GET_ADAPTER_FIB:
772 status = close_getadapter_fib(dev, arg);
773 break;
774 case FSACTL_SEND_RAW_SRB:
775 status = aac_send_raw_srb(dev,arg);
776 break;
777 case FSACTL_GET_PCI_INFO:
778 status = aac_get_pci_info(dev,arg);
779 break;
780 default:
781 status = -ENOTTY;
782 break;
783 }
784 return status;
785}
786