]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/scsi/aacraid/commsup.c
aacraid: Fix for aac_command_thread hang
[mirror_ubuntu-zesty-kernel.git] / drivers / scsi / aacraid / commsup.c
CommitLineData
1da177e4
LT
1/*
2 * Adaptec AAC series RAID controller driver
fa195afe 3 * (c) Copyright 2001 Red Hat Inc.
1da177e4
LT
4 *
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
7 *
e8b12f0f
MR
8 * Copyright (c) 2000-2010 Adaptec, Inc.
9 * 2010 PMC-Sierra, Inc. (aacraid@pmc-sierra.com)
1da177e4
LT
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 * Module Name:
26 * commsup.c
27 *
28 * Abstract: Contain all routines that are required for FSA host/adapter
7c00ffa3 29 * communication.
1da177e4
LT
30 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/init.h>
35#include <linux/types.h>
36#include <linux/sched.h>
37#include <linux/pci.h>
38#include <linux/spinlock.h>
39#include <linux/slab.h>
40#include <linux/completion.h>
41#include <linux/blkdev.h>
164006da 42#include <linux/delay.h>
fe27381d 43#include <linux/kthread.h>
6a3670c4 44#include <linux/interrupt.h>
6188e10d 45#include <linux/semaphore.h>
8c867b25 46#include <scsi/scsi.h>
7c00ffa3 47#include <scsi/scsi_host.h>
131256cf 48#include <scsi/scsi_device.h>
8c867b25 49#include <scsi/scsi_cmnd.h>
1da177e4
LT
50
51#include "aacraid.h"
52
53/**
54 * fib_map_alloc - allocate the fib objects
55 * @dev: Adapter to allocate for
56 *
57 * Allocate and map the shared PCI space for the FIB blocks used to
58 * talk to the Adaptec firmware.
59 */
8ce3eca4 60
1da177e4
LT
61static int fib_map_alloc(struct aac_dev *dev)
62{
7c00ffa3
MH
63 dprintk((KERN_INFO
64 "allocate hardware fibs pci_alloc_consistent(%p, %d * (%d + %d), %p)\n",
65 dev->pdev, dev->max_fib_size, dev->scsi_host_ptr->can_queue,
66 AAC_NUM_MGT_FIB, &dev->hw_fib_pa));
e8b12f0f
MR
67 dev->hw_fib_va = pci_alloc_consistent(dev->pdev,
68 (dev->max_fib_size + sizeof(struct aac_fib_xporthdr))
69 * (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB) + (ALIGN32 - 1),
70 &dev->hw_fib_pa);
71 if (dev->hw_fib_va == NULL)
1da177e4
LT
72 return -ENOMEM;
73 return 0;
74}
75
76/**
bfb35aa8 77 * aac_fib_map_free - free the fib objects
1da177e4
LT
78 * @dev: Adapter to free
79 *
80 * Free the PCI mappings and the memory allocated for FIB blocks
81 * on this adapter.
82 */
83
bfb35aa8 84void aac_fib_map_free(struct aac_dev *dev)
1da177e4 85{
f88fa79a
RAR
86 if (dev->hw_fib_va && dev->max_fib_size) {
87 pci_free_consistent(dev->pdev,
88 (dev->max_fib_size *
89 (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB)),
90 dev->hw_fib_va, dev->hw_fib_pa);
91 }
9ad5204d
SM
92 dev->hw_fib_va = NULL;
93 dev->hw_fib_pa = 0;
1da177e4
LT
94}
95
3f4ce057
RAR
96void aac_fib_vector_assign(struct aac_dev *dev)
97{
98 u32 i = 0;
99 u32 vector = 1;
100 struct fib *fibptr = NULL;
101
102 for (i = 0, fibptr = &dev->fibs[i];
103 i < (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB);
104 i++, fibptr++) {
105 if ((dev->max_msix == 1) ||
106 (i > ((dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB - 1)
107 - dev->vector_cap))) {
108 fibptr->vector_no = 0;
109 } else {
110 fibptr->vector_no = vector;
111 vector++;
112 if (vector == dev->max_msix)
113 vector = 1;
114 }
115 }
116}
117
1da177e4 118/**
bfb35aa8 119 * aac_fib_setup - setup the fibs
1da177e4
LT
120 * @dev: Adapter to set up
121 *
b595076a 122 * Allocate the PCI space for the fibs, map it and then initialise the
1da177e4
LT
123 * fib area, the unmapped fib data and also the free list
124 */
125
bfb35aa8 126int aac_fib_setup(struct aac_dev * dev)
1da177e4
LT
127{
128 struct fib *fibptr;
a8166a52 129 struct hw_fib *hw_fib;
1da177e4
LT
130 dma_addr_t hw_fib_pa;
131 int i;
7c00ffa3
MH
132
133 while (((i = fib_map_alloc(dev)) == -ENOMEM)
134 && (dev->scsi_host_ptr->can_queue > (64 - AAC_NUM_MGT_FIB))) {
135 dev->init->MaxIoCommands = cpu_to_le32((dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB) >> 1);
136 dev->scsi_host_ptr->can_queue = le32_to_cpu(dev->init->MaxIoCommands) - AAC_NUM_MGT_FIB;
137 }
138 if (i<0)
1da177e4 139 return -ENOMEM;
8ce3eca4 140
e8b12f0f
MR
141 /* 32 byte alignment for PMC */
142 hw_fib_pa = (dev->hw_fib_pa + (ALIGN32 - 1)) & ~(ALIGN32 - 1);
143 dev->hw_fib_va = (struct hw_fib *)((unsigned char *)dev->hw_fib_va +
144 (hw_fib_pa - dev->hw_fib_pa));
145 dev->hw_fib_pa = hw_fib_pa;
146 memset(dev->hw_fib_va, 0,
147 (dev->max_fib_size + sizeof(struct aac_fib_xporthdr)) *
148 (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB));
149
150 /* add Xport header */
151 dev->hw_fib_va = (struct hw_fib *)((unsigned char *)dev->hw_fib_va +
152 sizeof(struct aac_fib_xporthdr));
153 dev->hw_fib_pa += sizeof(struct aac_fib_xporthdr);
154
a8166a52 155 hw_fib = dev->hw_fib_va;
1da177e4 156 hw_fib_pa = dev->hw_fib_pa;
1da177e4
LT
157 /*
158 * Initialise the fibs
159 */
8ce3eca4
SM
160 for (i = 0, fibptr = &dev->fibs[i];
161 i < (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB);
162 i++, fibptr++)
1da177e4 163 {
85d22bbf 164 fibptr->flags = 0;
6bf3b630 165 fibptr->size = sizeof(struct fib);
1da177e4 166 fibptr->dev = dev;
a8166a52
MH
167 fibptr->hw_fib_va = hw_fib;
168 fibptr->data = (void *) fibptr->hw_fib_va->data;
1da177e4 169 fibptr->next = fibptr+1; /* Forward chain the fibs */
6de76cfc 170 sema_init(&fibptr->event_wait, 0);
1da177e4 171 spin_lock_init(&fibptr->event_lock);
a8166a52
MH
172 hw_fib->header.XferState = cpu_to_le32(0xffffffff);
173 hw_fib->header.SenderSize = cpu_to_le16(dev->max_fib_size);
1da177e4 174 fibptr->hw_fib_pa = hw_fib_pa;
e8b12f0f
MR
175 hw_fib = (struct hw_fib *)((unsigned char *)hw_fib +
176 dev->max_fib_size + sizeof(struct aac_fib_xporthdr));
177 hw_fib_pa = hw_fib_pa +
178 dev->max_fib_size + sizeof(struct aac_fib_xporthdr);
1da177e4 179 }
3f4ce057
RAR
180
181 /*
182 *Assign vector numbers to fibs
183 */
184 aac_fib_vector_assign(dev);
185
1da177e4
LT
186 /*
187 * Add the fib chain to the free list
188 */
7c00ffa3 189 dev->fibs[dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB - 1].next = NULL;
1da177e4 190 /*
6bf3b630
RAR
191 * Set 8 fibs aside for management tools
192 */
193 dev->free_fib = &dev->fibs[dev->scsi_host_ptr->can_queue];
1da177e4
LT
194 return 0;
195}
196
6bf3b630
RAR
197/**
198 * aac_fib_alloc_tag-allocate a fib using tags
199 * @dev: Adapter to allocate the fib for
200 *
201 * Allocate a fib from the adapter fib pool using tags
202 * from the blk layer.
203 */
204
205struct fib *aac_fib_alloc_tag(struct aac_dev *dev, struct scsi_cmnd *scmd)
206{
207 struct fib *fibptr;
208
209 fibptr = &dev->fibs[scmd->request->tag];
210 /*
211 * Null out fields that depend on being zero at the start of
212 * each I/O
213 */
214 fibptr->hw_fib_va->header.XferState = 0;
215 fibptr->type = FSAFS_NTC_FIB_CONTEXT;
216 fibptr->callback_data = NULL;
217 fibptr->callback = NULL;
218
219 return fibptr;
220}
221
1da177e4 222/**
bfb35aa8 223 * aac_fib_alloc - allocate a fib
1da177e4
LT
224 * @dev: Adapter to allocate the fib for
225 *
226 * Allocate a fib from the adapter fib pool. If the pool is empty we
7c00ffa3 227 * return NULL.
1da177e4 228 */
8ce3eca4 229
bfb35aa8 230struct fib *aac_fib_alloc(struct aac_dev *dev)
1da177e4
LT
231{
232 struct fib * fibptr;
233 unsigned long flags;
234 spin_lock_irqsave(&dev->fib_lock, flags);
8ce3eca4 235 fibptr = dev->free_fib;
7c00ffa3
MH
236 if(!fibptr){
237 spin_unlock_irqrestore(&dev->fib_lock, flags);
238 return fibptr;
239 }
1da177e4
LT
240 dev->free_fib = fibptr->next;
241 spin_unlock_irqrestore(&dev->fib_lock, flags);
242 /*
243 * Set the proper node type code and node byte size
244 */
245 fibptr->type = FSAFS_NTC_FIB_CONTEXT;
246 fibptr->size = sizeof(struct fib);
247 /*
248 * Null out fields that depend on being zero at the start of
249 * each I/O
250 */
a8166a52 251 fibptr->hw_fib_va->header.XferState = 0;
b6ef70f3 252 fibptr->flags = 0;
1da177e4
LT
253 fibptr->callback = NULL;
254 fibptr->callback_data = NULL;
255
256 return fibptr;
257}
258
259/**
bfb35aa8 260 * aac_fib_free - free a fib
1da177e4
LT
261 * @fibptr: fib to free up
262 *
263 * Frees up a fib and places it on the appropriate queue
1da177e4 264 */
8ce3eca4 265
bfb35aa8 266void aac_fib_free(struct fib *fibptr)
1da177e4 267{
ef616233 268 unsigned long flags;
cacb6dc3 269
ef616233 270 if (fibptr->done == 2)
cacb6dc3 271 return;
1da177e4
LT
272
273 spin_lock_irqsave(&fibptr->dev->fib_lock, flags);
03d44337 274 if (unlikely(fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT))
1da177e4 275 aac_config.fib_timeouts++;
03d44337
MH
276 if (fibptr->hw_fib_va->header.XferState != 0) {
277 printk(KERN_WARNING "aac_fib_free, XferState != 0, fibptr = 0x%p, XferState = 0x%x\n",
278 (void*)fibptr,
279 le32_to_cpu(fibptr->hw_fib_va->header.XferState));
280 }
281 fibptr->next = fibptr->dev->free_fib;
282 fibptr->dev->free_fib = fibptr;
1da177e4
LT
283 spin_unlock_irqrestore(&fibptr->dev->fib_lock, flags);
284}
285
286/**
bfb35aa8 287 * aac_fib_init - initialise a fib
1da177e4 288 * @fibptr: The fib to initialize
8ce3eca4 289 *
1da177e4
LT
290 * Set up the generic fib fields ready for use
291 */
8ce3eca4 292
bfb35aa8 293void aac_fib_init(struct fib *fibptr)
1da177e4 294{
a8166a52 295 struct hw_fib *hw_fib = fibptr->hw_fib_va;
1da177e4 296
85d22bbf 297 memset(&hw_fib->header, 0, sizeof(struct aac_fibhdr));
1da177e4 298 hw_fib->header.StructType = FIB_MAGIC;
7c00ffa3
MH
299 hw_fib->header.Size = cpu_to_le16(fibptr->dev->max_fib_size);
300 hw_fib->header.XferState = cpu_to_le32(HostOwned | FibInitialized | FibEmpty | FastResponseCapable);
85d22bbf 301 hw_fib->header.u.ReceiverFibAddress = cpu_to_le32(fibptr->hw_fib_pa);
7c00ffa3 302 hw_fib->header.SenderSize = cpu_to_le16(fibptr->dev->max_fib_size);
1da177e4
LT
303}
304
305/**
306 * fib_deallocate - deallocate a fib
307 * @fibptr: fib to deallocate
308 *
309 * Will deallocate and return to the free pool the FIB pointed to by the
310 * caller.
311 */
8ce3eca4 312
4833869e 313static void fib_dealloc(struct fib * fibptr)
1da177e4 314{
a8166a52 315 struct hw_fib *hw_fib = fibptr->hw_fib_va;
8ce3eca4 316 hw_fib->header.XferState = 0;
1da177e4
LT
317}
318
319/*
320 * Commuication primitives define and support the queuing method we use to
321 * support host to adapter commuication. All queue accesses happen through
322 * these routines and are the only routines which have a knowledge of the
323 * how these queues are implemented.
324 */
8ce3eca4 325
1da177e4
LT
326/**
327 * aac_get_entry - get a queue entry
328 * @dev: Adapter
329 * @qid: Queue Number
330 * @entry: Entry return
331 * @index: Index return
332 * @nonotify: notification control
333 *
334 * With a priority the routine returns a queue entry if the queue has free entries. If the queue
335 * is full(no free entries) than no entry is returned and the function returns 0 otherwise 1 is
336 * returned.
337 */
8ce3eca4 338
1da177e4
LT
339static int aac_get_entry (struct aac_dev * dev, u32 qid, struct aac_entry **entry, u32 * index, unsigned long *nonotify)
340{
341 struct aac_queue * q;
bed30de4 342 unsigned long idx;
1da177e4
LT
343
344 /*
345 * All of the queues wrap when they reach the end, so we check
346 * to see if they have reached the end and if they have we just
347 * set the index back to zero. This is a wrap. You could or off
348 * the high bits in all updates but this is a bit faster I think.
349 */
350
351 q = &dev->queues->queue[qid];
bed30de4
MH
352
353 idx = *index = le32_to_cpu(*(q->headers.producer));
354 /* Interrupt Moderation, only interrupt for first two entries */
355 if (idx != le32_to_cpu(*(q->headers.consumer))) {
356 if (--idx == 0) {
1640a2c3 357 if (qid == AdapNormCmdQueue)
bed30de4 358 idx = ADAP_NORM_CMD_ENTRIES;
1640a2c3 359 else
bed30de4
MH
360 idx = ADAP_NORM_RESP_ENTRIES;
361 }
362 if (idx != le32_to_cpu(*(q->headers.consumer)))
8ce3eca4 363 *nonotify = 1;
bed30de4 364 }
1da177e4 365
1640a2c3 366 if (qid == AdapNormCmdQueue) {
8ce3eca4 367 if (*index >= ADAP_NORM_CMD_ENTRIES)
1da177e4 368 *index = 0; /* Wrap to front of the Producer Queue. */
1640a2c3 369 } else {
8ce3eca4 370 if (*index >= ADAP_NORM_RESP_ENTRIES)
1da177e4
LT
371 *index = 0; /* Wrap to front of the Producer Queue. */
372 }
1da177e4 373
8ce3eca4
SM
374 /* Queue is full */
375 if ((*index + 1) == le32_to_cpu(*(q->headers.consumer))) {
7c00ffa3 376 printk(KERN_WARNING "Queue %d full, %u outstanding.\n",
ef616233 377 qid, atomic_read(&q->numpending));
1da177e4
LT
378 return 0;
379 } else {
8ce3eca4 380 *entry = q->base + *index;
1da177e4
LT
381 return 1;
382 }
8ce3eca4 383}
1da177e4
LT
384
385/**
386 * aac_queue_get - get the next free QE
387 * @dev: Adapter
388 * @index: Returned index
389 * @priority: Priority of fib
390 * @fib: Fib to associate with the queue entry
391 * @wait: Wait if queue full
392 * @fibptr: Driver fib object to go with fib
393 * @nonotify: Don't notify the adapter
394 *
395 * Gets the next free QE off the requested priorty adapter command
396 * queue and associates the Fib with the QE. The QE represented by
397 * index is ready to insert on the queue when this routine returns
398 * success.
399 */
400
28713324 401int aac_queue_get(struct aac_dev * dev, u32 * index, u32 qid, struct hw_fib * hw_fib, int wait, struct fib * fibptr, unsigned long *nonotify)
1da177e4
LT
402{
403 struct aac_entry * entry = NULL;
404 int map = 0;
8ce3eca4 405
1640a2c3 406 if (qid == AdapNormCmdQueue) {
1da177e4 407 /* if no entries wait for some if caller wants to */
8ce3eca4 408 while (!aac_get_entry(dev, qid, &entry, index, nonotify)) {
1da177e4
LT
409 printk(KERN_ERR "GetEntries failed\n");
410 }
8ce3eca4
SM
411 /*
412 * Setup queue entry with a command, status and fib mapped
413 */
414 entry->size = cpu_to_le32(le16_to_cpu(hw_fib->header.Size));
415 map = 1;
1640a2c3 416 } else {
8ce3eca4 417 while (!aac_get_entry(dev, qid, &entry, index, nonotify)) {
1da177e4
LT
418 /* if no entries wait for some if caller wants to */
419 }
8ce3eca4
SM
420 /*
421 * Setup queue entry with command, status and fib mapped
422 */
423 entry->size = cpu_to_le32(le16_to_cpu(hw_fib->header.Size));
424 entry->addr = hw_fib->header.SenderFibAddress;
425 /* Restore adapters pointer to the FIB */
85d22bbf 426 hw_fib->header.u.ReceiverFibAddress = hw_fib->header.SenderFibAddress; /* Let the adapter now where to find its data */
8ce3eca4 427 map = 0;
1da177e4
LT
428 }
429 /*
430 * If MapFib is true than we need to map the Fib and put pointers
431 * in the queue entry.
432 */
433 if (map)
434 entry->addr = cpu_to_le32(fibptr->hw_fib_pa);
435 return 0;
436}
437
1da177e4 438/*
8ce3eca4
SM
439 * Define the highest level of host to adapter communication routines.
440 * These routines will support host to adapter FS commuication. These
1da177e4
LT
441 * routines have no knowledge of the commuication method used. This level
442 * sends and receives FIBs. This level has no knowledge of how these FIBs
443 * get passed back and forth.
444 */
445
446/**
bfb35aa8 447 * aac_fib_send - send a fib to the adapter
1da177e4
LT
448 * @command: Command to send
449 * @fibptr: The fib
450 * @size: Size of fib data area
451 * @priority: Priority of Fib
452 * @wait: Async/sync select
453 * @reply: True if a reply is wanted
454 * @callback: Called with reply
455 * @callback_data: Passed to callback
456 *
457 * Sends the requested FIB to the adapter and optionally will wait for a
458 * response FIB. If the caller does not wish to wait for a response than
459 * an event to wait on must be supplied. This event will be set when a
460 * response FIB is received from the adapter.
461 */
8ce3eca4 462
bfb35aa8
MH
463int aac_fib_send(u16 command, struct fib *fibptr, unsigned long size,
464 int priority, int wait, int reply, fib_callback callback,
465 void *callback_data)
1da177e4 466{
1da177e4 467 struct aac_dev * dev = fibptr->dev;
a8166a52 468 struct hw_fib * hw_fib = fibptr->hw_fib_va;
1da177e4 469 unsigned long flags = 0;
cacb6dc3 470 unsigned long mflags = 0;
11604612 471 unsigned long sflags = 0;
cacb6dc3 472
1640a2c3 473
1da177e4
LT
474 if (!(hw_fib->header.XferState & cpu_to_le32(HostOwned)))
475 return -EBUSY;
476 /*
25985edc 477 * There are 5 cases with the wait and response requested flags.
1da177e4
LT
478 * The only invalid cases are if the caller requests to wait and
479 * does not request a response and if the caller does not want a
480 * response and the Fib is not allocated from pool. If a response
481 * is not requesed the Fib will just be deallocaed by the DPC
482 * routine when the response comes back from the adapter. No
8ce3eca4 483 * further processing will be done besides deleting the Fib. We
1da177e4
LT
484 * will have a debug mode where the adapter can notify the host
485 * it had a problem and the host can log that fact.
486 */
b6ef70f3 487 fibptr->flags = 0;
1da177e4
LT
488 if (wait && !reply) {
489 return -EINVAL;
490 } else if (!wait && reply) {
491 hw_fib->header.XferState |= cpu_to_le32(Async | ResponseExpected);
492 FIB_COUNTER_INCREMENT(aac_config.AsyncSent);
493 } else if (!wait && !reply) {
494 hw_fib->header.XferState |= cpu_to_le32(NoResponseExpected);
495 FIB_COUNTER_INCREMENT(aac_config.NoResponseSent);
496 } else if (wait && reply) {
497 hw_fib->header.XferState |= cpu_to_le32(ResponseExpected);
498 FIB_COUNTER_INCREMENT(aac_config.NormalSent);
8ce3eca4 499 }
1da177e4
LT
500 /*
501 * Map the fib into 32bits by using the fib number
502 */
503
8e0c5ebd 504 hw_fib->header.SenderFibAddress = cpu_to_le32(((u32)(fibptr - dev->fibs)) << 2);
85d22bbf 505 hw_fib->header.Handle = (u32)(fibptr - dev->fibs) + 1;
1da177e4
LT
506 /*
507 * Set FIB state to indicate where it came from and if we want a
508 * response from the adapter. Also load the command from the
509 * caller.
510 *
511 * Map the hw fib pointer as a 32bit value
512 */
513 hw_fib->header.Command = cpu_to_le16(command);
514 hw_fib->header.XferState |= cpu_to_le32(SentFromHost);
1da177e4
LT
515 /*
516 * Set the size of the Fib we want to send to the adapter
517 */
518 hw_fib->header.Size = cpu_to_le16(sizeof(struct aac_fibhdr) + size);
519 if (le16_to_cpu(hw_fib->header.Size) > le16_to_cpu(hw_fib->header.SenderSize)) {
520 return -EMSGSIZE;
8ce3eca4 521 }
1da177e4
LT
522 /*
523 * Get a queue entry connect the FIB to it and send an notify
524 * the adapter a command is ready.
525 */
1640a2c3 526 hw_fib->header.XferState |= cpu_to_le32(NormalPriority);
1da177e4 527
1da177e4
LT
528 /*
529 * Fill in the Callback and CallbackContext if we are not
530 * going to wait.
531 */
532 if (!wait) {
533 fibptr->callback = callback;
534 fibptr->callback_data = callback_data;
b6ef70f3 535 fibptr->flags = FIB_CONTEXT_FLAG;
1da177e4 536 }
1da177e4
LT
537
538 fibptr->done = 0;
1da177e4 539
1640a2c3
MH
540 FIB_COUNTER_INCREMENT(aac_config.FibsSent);
541
1640a2c3 542 dprintk((KERN_DEBUG "Fib contents:.\n"));
8e0c5ebd
MH
543 dprintk((KERN_DEBUG " Command = %d.\n", le32_to_cpu(hw_fib->header.Command)));
544 dprintk((KERN_DEBUG " SubCommand = %d.\n", le32_to_cpu(((struct aac_query_mount *)fib_data(fibptr))->command)));
545 dprintk((KERN_DEBUG " XferState = %x.\n", le32_to_cpu(hw_fib->header.XferState)));
a8166a52 546 dprintk((KERN_DEBUG " hw_fib va being sent=%p\n",fibptr->hw_fib_va));
1640a2c3
MH
547 dprintk((KERN_DEBUG " hw_fib pa being sent=%lx\n",(ulong)fibptr->hw_fib_pa));
548 dprintk((KERN_DEBUG " fib being sent=%p\n",fibptr));
549
c8f7b073 550 if (!dev->queues)
65101355 551 return -EBUSY;
1640a2c3 552
cacb6dc3
PNRCEH
553 if (wait) {
554
555 spin_lock_irqsave(&dev->manage_lock, mflags);
556 if (dev->management_fib_count >= AAC_NUM_MGT_FIB) {
557 printk(KERN_INFO "No management Fibs Available:%d\n",
558 dev->management_fib_count);
559 spin_unlock_irqrestore(&dev->manage_lock, mflags);
560 return -EBUSY;
561 }
562 dev->management_fib_count++;
563 spin_unlock_irqrestore(&dev->manage_lock, mflags);
1640a2c3 564 spin_lock_irqsave(&fibptr->event_lock, flags);
cacb6dc3
PNRCEH
565 }
566
11604612
MR
567 if (dev->sync_mode) {
568 if (wait)
569 spin_unlock_irqrestore(&fibptr->event_lock, flags);
570 spin_lock_irqsave(&dev->sync_lock, sflags);
571 if (dev->sync_fib) {
572 list_add_tail(&fibptr->fiblink, &dev->sync_fib_list);
573 spin_unlock_irqrestore(&dev->sync_lock, sflags);
574 } else {
575 dev->sync_fib = fibptr;
576 spin_unlock_irqrestore(&dev->sync_lock, sflags);
577 aac_adapter_sync_cmd(dev, SEND_SYNCHRONOUS_FIB,
578 (u32)fibptr->hw_fib_pa, 0, 0, 0, 0, 0,
579 NULL, NULL, NULL, NULL, NULL);
580 }
581 if (wait) {
582 fibptr->flags |= FIB_CONTEXT_FLAG_WAIT;
583 if (down_interruptible(&fibptr->event_wait)) {
584 fibptr->flags &= ~FIB_CONTEXT_FLAG_WAIT;
585 return -EFAULT;
586 }
587 return 0;
588 }
589 return -EINPROGRESS;
590 }
591
cacb6dc3
PNRCEH
592 if (aac_adapter_deliver(fibptr) != 0) {
593 printk(KERN_ERR "aac_fib_send: returned -EBUSY\n");
594 if (wait) {
595 spin_unlock_irqrestore(&fibptr->event_lock, flags);
596 spin_lock_irqsave(&dev->manage_lock, mflags);
597 dev->management_fib_count--;
598 spin_unlock_irqrestore(&dev->manage_lock, mflags);
599 }
600 return -EBUSY;
601 }
602
8e0c5ebd 603
1da177e4 604 /*
8ce3eca4 605 * If the caller wanted us to wait for response wait now.
1da177e4 606 */
8ce3eca4 607
1da177e4
LT
608 if (wait) {
609 spin_unlock_irqrestore(&fibptr->event_lock, flags);
9203344c
MH
610 /* Only set for first known interruptable command */
611 if (wait < 0) {
612 /*
613 * *VERY* Dangerous to time out a command, the
614 * assumption is made that we have no hope of
615 * functioning because an interrupt routing or other
616 * hardware failure has occurred.
617 */
30002f1c 618 unsigned long timeout = jiffies + (180 * HZ); /* 3 minutes */
9203344c 619 while (down_trylock(&fibptr->event_wait)) {
33524b70 620 int blink;
30002f1c 621 if (time_is_before_eq_jiffies(timeout)) {
28713324 622 struct aac_queue * q = &dev->queues->queue[AdapNormCmdQueue];
ef616233 623 atomic_dec(&q->numpending);
9203344c 624 if (wait == -1) {
bfb35aa8 625 printk(KERN_ERR "aacraid: aac_fib_send: first asynchronous command timed out.\n"
9203344c
MH
626 "Usually a result of a PCI interrupt routing problem;\n"
627 "update mother board BIOS or consider utilizing one of\n"
628 "the SAFE mode kernel options (acpi, apic etc)\n");
629 }
630 return -ETIMEDOUT;
631 }
33524b70
MH
632 if ((blink = aac_adapter_check_health(dev)) > 0) {
633 if (wait == -1) {
634 printk(KERN_ERR "aacraid: aac_fib_send: adapter blinkLED 0x%x.\n"
635 "Usually a result of a serious unrecoverable hardware problem\n",
636 blink);
637 }
638 return -EFAULT;
639 }
07beca2b
RAR
640 /*
641 * Allow other processes / CPUS to use core
642 */
643 schedule();
9203344c 644 }
0462590e 645 } else if (down_interruptible(&fibptr->event_wait)) {
cacb6dc3
PNRCEH
646 /* Do nothing ... satisfy
647 * down_interruptible must_check */
e6990c64 648 }
cacb6dc3 649
33bb3b29 650 spin_lock_irqsave(&fibptr->event_lock, flags);
cacb6dc3 651 if (fibptr->done == 0) {
33bb3b29 652 fibptr->done = 2; /* Tell interrupt we aborted */
c8f7b073 653 spin_unlock_irqrestore(&fibptr->event_lock, flags);
cacb6dc3 654 return -ERESTARTSYS;
c8f7b073 655 }
33bb3b29 656 spin_unlock_irqrestore(&fibptr->event_lock, flags);
125e1874 657 BUG_ON(fibptr->done == 0);
8ce3eca4 658
912d4e88 659 if(unlikely(fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT))
1da177e4 660 return -ETIMEDOUT;
912d4e88 661 return 0;
1da177e4
LT
662 }
663 /*
664 * If the user does not want a response than return success otherwise
665 * return pending
666 */
667 if (reply)
668 return -EINPROGRESS;
669 else
670 return 0;
671}
672
8ce3eca4 673/**
1da177e4
LT
674 * aac_consumer_get - get the top of the queue
675 * @dev: Adapter
676 * @q: Queue
677 * @entry: Return entry
678 *
679 * Will return a pointer to the entry on the top of the queue requested that
8ce3eca4
SM
680 * we are a consumer of, and return the address of the queue entry. It does
681 * not change the state of the queue.
1da177e4
LT
682 */
683
684int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry)
685{
686 u32 index;
687 int status;
688 if (le32_to_cpu(*q->headers.producer) == le32_to_cpu(*q->headers.consumer)) {
689 status = 0;
690 } else {
691 /*
692 * The consumer index must be wrapped if we have reached
693 * the end of the queue, else we just use the entry
694 * pointed to by the header index
695 */
8ce3eca4
SM
696 if (le32_to_cpu(*q->headers.consumer) >= q->entries)
697 index = 0;
1da177e4 698 else
8ce3eca4 699 index = le32_to_cpu(*q->headers.consumer);
1da177e4
LT
700 *entry = q->base + index;
701 status = 1;
702 }
703 return(status);
704}
705
706/**
707 * aac_consumer_free - free consumer entry
708 * @dev: Adapter
709 * @q: Queue
710 * @qid: Queue ident
711 *
712 * Frees up the current top of the queue we are a consumer of. If the
713 * queue was full notify the producer that the queue is no longer full.
714 */
715
716void aac_consumer_free(struct aac_dev * dev, struct aac_queue *q, u32 qid)
717{
718 int wasfull = 0;
719 u32 notify;
720
721 if ((le32_to_cpu(*q->headers.producer)+1) == le32_to_cpu(*q->headers.consumer))
722 wasfull = 1;
8ce3eca4 723
1da177e4
LT
724 if (le32_to_cpu(*q->headers.consumer) >= q->entries)
725 *q->headers.consumer = cpu_to_le32(1);
726 else
36b8dd1b 727 le32_add_cpu(q->headers.consumer, 1);
8ce3eca4 728
1da177e4
LT
729 if (wasfull) {
730 switch (qid) {
731
732 case HostNormCmdQueue:
733 notify = HostNormCmdNotFull;
734 break;
1da177e4
LT
735 case HostNormRespQueue:
736 notify = HostNormRespNotFull;
737 break;
1da177e4
LT
738 default:
739 BUG();
740 return;
741 }
742 aac_adapter_notify(dev, notify);
743 }
8ce3eca4 744}
1da177e4
LT
745
746/**
bfb35aa8 747 * aac_fib_adapter_complete - complete adapter issued fib
1da177e4
LT
748 * @fibptr: fib to complete
749 * @size: size of fib
750 *
751 * Will do all necessary work to complete a FIB that was sent from
752 * the adapter.
753 */
754
bfb35aa8 755int aac_fib_adapter_complete(struct fib *fibptr, unsigned short size)
1da177e4 756{
a8166a52 757 struct hw_fib * hw_fib = fibptr->hw_fib_va;
1da177e4 758 struct aac_dev * dev = fibptr->dev;
1640a2c3 759 struct aac_queue * q;
1da177e4 760 unsigned long nointr = 0;
1640a2c3
MH
761 unsigned long qflags;
762
85d22bbf
MR
763 if (dev->comm_interface == AAC_COMM_MESSAGE_TYPE1 ||
764 dev->comm_interface == AAC_COMM_MESSAGE_TYPE2) {
e8b12f0f
MR
765 kfree(hw_fib);
766 return 0;
767 }
768
1640a2c3 769 if (hw_fib->header.XferState == 0) {
28713324 770 if (dev->comm_interface == AAC_COMM_MESSAGE)
e8b12f0f 771 kfree(hw_fib);
8ce3eca4 772 return 0;
1640a2c3 773 }
1da177e4
LT
774 /*
775 * If we plan to do anything check the structure type first.
8ce3eca4 776 */
85d22bbf
MR
777 if (hw_fib->header.StructType != FIB_MAGIC &&
778 hw_fib->header.StructType != FIB_MAGIC2 &&
779 hw_fib->header.StructType != FIB_MAGIC2_64) {
28713324 780 if (dev->comm_interface == AAC_COMM_MESSAGE)
e8b12f0f 781 kfree(hw_fib);
8ce3eca4 782 return -EINVAL;
1da177e4
LT
783 }
784 /*
785 * This block handles the case where the adapter had sent us a
786 * command and we have finished processing the command. We
8ce3eca4
SM
787 * call completeFib when we are done processing the command
788 * and want to send a response back to the adapter. This will
1da177e4
LT
789 * send the completed cdb to the adapter.
790 */
791 if (hw_fib->header.XferState & cpu_to_le32(SentFromAdapter)) {
28713324 792 if (dev->comm_interface == AAC_COMM_MESSAGE) {
8e0c5ebd
MH
793 kfree (hw_fib);
794 } else {
8ce3eca4
SM
795 u32 index;
796 hw_fib->header.XferState |= cpu_to_le32(HostProcessed);
8e0c5ebd
MH
797 if (size) {
798 size += sizeof(struct aac_fibhdr);
8ce3eca4 799 if (size > le16_to_cpu(hw_fib->header.SenderSize))
8e0c5ebd
MH
800 return -EMSGSIZE;
801 hw_fib->header.Size = cpu_to_le16(size);
802 }
803 q = &dev->queues->queue[AdapNormRespQueue];
804 spin_lock_irqsave(q->lock, qflags);
805 aac_queue_get(dev, &index, AdapNormRespQueue, hw_fib, 1, NULL, &nointr);
806 *(q->headers.producer) = cpu_to_le32(index + 1);
807 spin_unlock_irqrestore(q->lock, qflags);
808 if (!(nointr & (int)aac_config.irq_mod))
809 aac_adapter_notify(dev, AdapNormRespQueue);
1da177e4 810 }
8ce3eca4
SM
811 } else {
812 printk(KERN_WARNING "aac_fib_adapter_complete: "
813 "Unknown xferstate detected.\n");
814 BUG();
1da177e4 815 }
1da177e4
LT
816 return 0;
817}
818
819/**
bfb35aa8 820 * aac_fib_complete - fib completion handler
1da177e4
LT
821 * @fib: FIB to complete
822 *
823 * Will do all necessary work to complete a FIB.
824 */
8ce3eca4 825
bfb35aa8 826int aac_fib_complete(struct fib *fibptr)
1da177e4 827{
a8166a52 828 struct hw_fib * hw_fib = fibptr->hw_fib_va;
1da177e4
LT
829
830 /*
831 * Check for a fib which has already been completed
832 */
833
834 if (hw_fib->header.XferState == 0)
8ce3eca4 835 return 0;
1da177e4
LT
836 /*
837 * If we plan to do anything check the structure type first.
8ce3eca4 838 */
1da177e4 839
85d22bbf
MR
840 if (hw_fib->header.StructType != FIB_MAGIC &&
841 hw_fib->header.StructType != FIB_MAGIC2 &&
842 hw_fib->header.StructType != FIB_MAGIC2_64)
8ce3eca4 843 return -EINVAL;
1da177e4 844 /*
8ce3eca4 845 * This block completes a cdb which orginated on the host and we
1da177e4
LT
846 * just need to deallocate the cdb or reinit it. At this point the
847 * command is complete that we had sent to the adapter and this
848 * cdb could be reused.
849 */
cacb6dc3 850
1da177e4
LT
851 if((hw_fib->header.XferState & cpu_to_le32(SentFromHost)) &&
852 (hw_fib->header.XferState & cpu_to_le32(AdapterProcessed)))
853 {
854 fib_dealloc(fibptr);
855 }
856 else if(hw_fib->header.XferState & cpu_to_le32(SentFromHost))
857 {
858 /*
859 * This handles the case when the host has aborted the I/O
860 * to the adapter because the adapter is not responding
861 */
862 fib_dealloc(fibptr);
863 } else if(hw_fib->header.XferState & cpu_to_le32(HostOwned)) {
864 fib_dealloc(fibptr);
865 } else {
866 BUG();
8ce3eca4 867 }
1da177e4
LT
868 return 0;
869}
870
871/**
872 * aac_printf - handle printf from firmware
873 * @dev: Adapter
874 * @val: Message info
875 *
876 * Print a message passed to us by the controller firmware on the
877 * Adaptec board
878 */
879
880void aac_printf(struct aac_dev *dev, u32 val)
881{
1da177e4 882 char *cp = dev->printfbuf;
7c00ffa3
MH
883 if (dev->printf_enabled)
884 {
885 int length = val & 0xffff;
886 int level = (val >> 16) & 0xffff;
8ce3eca4 887
7c00ffa3
MH
888 /*
889 * The size of the printfbuf is set in port.c
890 * There is no variable or define for it
891 */
892 if (length > 255)
893 length = 255;
894 if (cp[length] != 0)
895 cp[length] = 0;
896 if (level == LOG_AAC_HIGH_ERROR)
1241f359 897 printk(KERN_WARNING "%s:%s", dev->name, cp);
7c00ffa3 898 else
1241f359 899 printk(KERN_INFO "%s:%s", dev->name, cp);
7c00ffa3 900 }
8ce3eca4 901 memset(cp, 0, 256);
1da177e4
LT
902}
903
131256cf
MH
904
905/**
906 * aac_handle_aif - Handle a message from the firmware
907 * @dev: Which adapter this fib is from
908 * @fibptr: Pointer to fibptr from adapter
909 *
910 * This routine handles a driver notify fib from the adapter and
911 * dispatches it to the appropriate routine for handling.
912 */
913
495c0217 914#define AIF_SNIFF_TIMEOUT (500*HZ)
131256cf
MH
915static void aac_handle_aif(struct aac_dev * dev, struct fib * fibptr)
916{
a8166a52 917 struct hw_fib * hw_fib = fibptr->hw_fib_va;
131256cf 918 struct aac_aifcmd * aifcmd = (struct aac_aifcmd *)hw_fib->data;
0995ad38 919 u32 channel, id, lun, container;
131256cf
MH
920 struct scsi_device *device;
921 enum {
922 NOTHING,
923 DELETE,
924 ADD,
925 CHANGE
0995ad38 926 } device_config_needed = NOTHING;
131256cf
MH
927
928 /* Sniff for container changes */
929
c8f7b073 930 if (!dev || !dev->fsa_dev)
131256cf 931 return;
0995ad38 932 container = channel = id = lun = (u32)-1;
131256cf
MH
933
934 /*
935 * We have set this up to try and minimize the number of
936 * re-configures that take place. As a result of this when
937 * certain AIF's come in we will set a flag waiting for another
938 * type of AIF before setting the re-config flag.
939 */
940 switch (le32_to_cpu(aifcmd->command)) {
941 case AifCmdDriverNotify:
f3307f72 942 switch (le32_to_cpu(((__le32 *)aifcmd->data)[0])) {
dab04b01
MR
943 case AifRawDeviceRemove:
944 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]);
945 if ((container >> 28)) {
946 container = (u32)-1;
947 break;
948 }
949 channel = (container >> 24) & 0xF;
950 if (channel >= dev->maximum_num_channels) {
951 container = (u32)-1;
952 break;
953 }
954 id = container & 0xFFFF;
955 if (id >= dev->maximum_num_physicals) {
956 container = (u32)-1;
957 break;
958 }
959 lun = (container >> 16) & 0xFF;
960 container = (u32)-1;
961 channel = aac_phys_to_logical(channel);
962 device_config_needed =
963 (((__le32 *)aifcmd->data)[0] ==
964 cpu_to_le32(AifRawDeviceRemove)) ? DELETE : ADD;
965
966 if (device_config_needed == ADD) {
967 device = scsi_device_lookup(
968 dev->scsi_host_ptr,
969 channel, id, lun);
970 if (device) {
971 scsi_remove_device(device);
972 scsi_device_put(device);
973 }
974 }
975 break;
131256cf
MH
976 /*
977 * Morph or Expand complete
978 */
979 case AifDenMorphComplete:
980 case AifDenVolumeExtendComplete:
f3307f72 981 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]);
131256cf
MH
982 if (container >= dev->maximum_num_containers)
983 break;
984
985 /*
f64a181d 986 * Find the scsi_device associated with the SCSI
131256cf
MH
987 * address. Make sure we have the right array, and if
988 * so set the flag to initiate a new re-config once we
989 * see an AifEnConfigChange AIF come through.
990 */
991
992 if ((dev != NULL) && (dev->scsi_host_ptr != NULL)) {
8ce3eca4
SM
993 device = scsi_device_lookup(dev->scsi_host_ptr,
994 CONTAINER_TO_CHANNEL(container),
995 CONTAINER_TO_ID(container),
131256cf
MH
996 CONTAINER_TO_LUN(container));
997 if (device) {
998 dev->fsa_dev[container].config_needed = CHANGE;
999 dev->fsa_dev[container].config_waiting_on = AifEnConfigChange;
31876f32 1000 dev->fsa_dev[container].config_waiting_stamp = jiffies;
131256cf
MH
1001 scsi_device_put(device);
1002 }
1003 }
1004 }
1005
1006 /*
1007 * If we are waiting on something and this happens to be
1008 * that thing then set the re-configure flag.
1009 */
1010 if (container != (u32)-1) {
1011 if (container >= dev->maximum_num_containers)
1012 break;
31876f32 1013 if ((dev->fsa_dev[container].config_waiting_on ==
f3307f72 1014 le32_to_cpu(*(__le32 *)aifcmd->data)) &&
31876f32 1015 time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT))
131256cf
MH
1016 dev->fsa_dev[container].config_waiting_on = 0;
1017 } else for (container = 0;
1018 container < dev->maximum_num_containers; ++container) {
31876f32 1019 if ((dev->fsa_dev[container].config_waiting_on ==
f3307f72 1020 le32_to_cpu(*(__le32 *)aifcmd->data)) &&
31876f32 1021 time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT))
131256cf
MH
1022 dev->fsa_dev[container].config_waiting_on = 0;
1023 }
1024 break;
1025
1026 case AifCmdEventNotify:
f3307f72 1027 switch (le32_to_cpu(((__le32 *)aifcmd->data)[0])) {
95e852e1
SM
1028 case AifEnBatteryEvent:
1029 dev->cache_protected =
1030 (((__le32 *)aifcmd->data)[1] == cpu_to_le32(3));
1031 break;
131256cf
MH
1032 /*
1033 * Add an Array.
1034 */
1035 case AifEnAddContainer:
f3307f72 1036 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]);
131256cf
MH
1037 if (container >= dev->maximum_num_containers)
1038 break;
1039 dev->fsa_dev[container].config_needed = ADD;
1040 dev->fsa_dev[container].config_waiting_on =
1041 AifEnConfigChange;
31876f32 1042 dev->fsa_dev[container].config_waiting_stamp = jiffies;
131256cf
MH
1043 break;
1044
1045 /*
1046 * Delete an Array.
1047 */
1048 case AifEnDeleteContainer:
f3307f72 1049 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]);
131256cf
MH
1050 if (container >= dev->maximum_num_containers)
1051 break;
1052 dev->fsa_dev[container].config_needed = DELETE;
1053 dev->fsa_dev[container].config_waiting_on =
1054 AifEnConfigChange;
31876f32 1055 dev->fsa_dev[container].config_waiting_stamp = jiffies;
131256cf
MH
1056 break;
1057
1058 /*
1059 * Container change detected. If we currently are not
1060 * waiting on something else, setup to wait on a Config Change.
1061 */
1062 case AifEnContainerChange:
f3307f72 1063 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]);
131256cf
MH
1064 if (container >= dev->maximum_num_containers)
1065 break;
31876f32
MH
1066 if (dev->fsa_dev[container].config_waiting_on &&
1067 time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT))
131256cf
MH
1068 break;
1069 dev->fsa_dev[container].config_needed = CHANGE;
1070 dev->fsa_dev[container].config_waiting_on =
1071 AifEnConfigChange;
31876f32 1072 dev->fsa_dev[container].config_waiting_stamp = jiffies;
131256cf
MH
1073 break;
1074
1075 case AifEnConfigChange:
1076 break;
1077
cb1042f2
SM
1078 case AifEnAddJBOD:
1079 case AifEnDeleteJBOD:
1080 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]);
a4576b5d
MS
1081 if ((container >> 28)) {
1082 container = (u32)-1;
cb1042f2 1083 break;
a4576b5d 1084 }
cb1042f2 1085 channel = (container >> 24) & 0xF;
a4576b5d
MS
1086 if (channel >= dev->maximum_num_channels) {
1087 container = (u32)-1;
cb1042f2 1088 break;
a4576b5d 1089 }
cb1042f2 1090 id = container & 0xFFFF;
a4576b5d
MS
1091 if (id >= dev->maximum_num_physicals) {
1092 container = (u32)-1;
cb1042f2 1093 break;
a4576b5d 1094 }
cb1042f2 1095 lun = (container >> 16) & 0xFF;
a4576b5d 1096 container = (u32)-1;
cb1042f2
SM
1097 channel = aac_phys_to_logical(channel);
1098 device_config_needed =
1099 (((__le32 *)aifcmd->data)[0] ==
1100 cpu_to_le32(AifEnAddJBOD)) ? ADD : DELETE;
5ca05594
RM
1101 if (device_config_needed == ADD) {
1102 device = scsi_device_lookup(dev->scsi_host_ptr,
1103 channel,
1104 id,
1105 lun);
1106 if (device) {
1107 scsi_remove_device(device);
1108 scsi_device_put(device);
1109 }
1110 }
cb1042f2
SM
1111 break;
1112
0995ad38 1113 case AifEnEnclosureManagement:
cb1042f2
SM
1114 /*
1115 * If in JBOD mode, automatic exposure of new
1116 * physical target to be suppressed until configured.
1117 */
1118 if (dev->jbod)
1119 break;
0995ad38
SM
1120 switch (le32_to_cpu(((__le32 *)aifcmd->data)[3])) {
1121 case EM_DRIVE_INSERTION:
1122 case EM_DRIVE_REMOVAL:
46154a02
MR
1123 case EM_SES_DRIVE_INSERTION:
1124 case EM_SES_DRIVE_REMOVAL:
0995ad38
SM
1125 container = le32_to_cpu(
1126 ((__le32 *)aifcmd->data)[2]);
a4576b5d
MS
1127 if ((container >> 28)) {
1128 container = (u32)-1;
0995ad38 1129 break;
a4576b5d 1130 }
0995ad38 1131 channel = (container >> 24) & 0xF;
a4576b5d
MS
1132 if (channel >= dev->maximum_num_channels) {
1133 container = (u32)-1;
0995ad38 1134 break;
a4576b5d 1135 }
0995ad38
SM
1136 id = container & 0xFFFF;
1137 lun = (container >> 16) & 0xFF;
a4576b5d 1138 container = (u32)-1;
0995ad38
SM
1139 if (id >= dev->maximum_num_physicals) {
1140 /* legacy dev_t ? */
1141 if ((0x2000 <= id) || lun || channel ||
1142 ((channel = (id >> 7) & 0x3F) >=
1143 dev->maximum_num_channels))
1144 break;
1145 lun = (id >> 4) & 7;
1146 id &= 0xF;
1147 }
1148 channel = aac_phys_to_logical(channel);
1149 device_config_needed =
46154a02
MR
1150 ((((__le32 *)aifcmd->data)[3]
1151 == cpu_to_le32(EM_DRIVE_INSERTION)) ||
1152 (((__le32 *)aifcmd->data)[3]
1153 == cpu_to_le32(EM_SES_DRIVE_INSERTION))) ?
0995ad38
SM
1154 ADD : DELETE;
1155 break;
1156 }
1157 break;
131256cf
MH
1158 }
1159
1160 /*
1161 * If we are waiting on something and this happens to be
1162 * that thing then set the re-configure flag.
1163 */
1164 if (container != (u32)-1) {
1165 if (container >= dev->maximum_num_containers)
1166 break;
31876f32 1167 if ((dev->fsa_dev[container].config_waiting_on ==
f3307f72 1168 le32_to_cpu(*(__le32 *)aifcmd->data)) &&
31876f32 1169 time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT))
131256cf
MH
1170 dev->fsa_dev[container].config_waiting_on = 0;
1171 } else for (container = 0;
1172 container < dev->maximum_num_containers; ++container) {
31876f32 1173 if ((dev->fsa_dev[container].config_waiting_on ==
f3307f72 1174 le32_to_cpu(*(__le32 *)aifcmd->data)) &&
31876f32 1175 time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT))
131256cf
MH
1176 dev->fsa_dev[container].config_waiting_on = 0;
1177 }
1178 break;
1179
1180 case AifCmdJobProgress:
1181 /*
1182 * These are job progress AIF's. When a Clear is being
1183 * done on a container it is initially created then hidden from
1184 * the OS. When the clear completes we don't get a config
1185 * change so we monitor the job status complete on a clear then
1186 * wait for a container change.
1187 */
1188
f3307f72
CH
1189 if (((__le32 *)aifcmd->data)[1] == cpu_to_le32(AifJobCtrZero) &&
1190 (((__le32 *)aifcmd->data)[6] == ((__le32 *)aifcmd->data)[5] ||
1191 ((__le32 *)aifcmd->data)[4] == cpu_to_le32(AifJobStsSuccess))) {
131256cf
MH
1192 for (container = 0;
1193 container < dev->maximum_num_containers;
1194 ++container) {
1195 /*
1196 * Stomp on all config sequencing for all
1197 * containers?
1198 */
1199 dev->fsa_dev[container].config_waiting_on =
1200 AifEnContainerChange;
1201 dev->fsa_dev[container].config_needed = ADD;
31876f32
MH
1202 dev->fsa_dev[container].config_waiting_stamp =
1203 jiffies;
131256cf
MH
1204 }
1205 }
f3307f72
CH
1206 if (((__le32 *)aifcmd->data)[1] == cpu_to_le32(AifJobCtrZero) &&
1207 ((__le32 *)aifcmd->data)[6] == 0 &&
1208 ((__le32 *)aifcmd->data)[4] == cpu_to_le32(AifJobStsRunning)) {
131256cf
MH
1209 for (container = 0;
1210 container < dev->maximum_num_containers;
1211 ++container) {
1212 /*
1213 * Stomp on all config sequencing for all
1214 * containers?
1215 */
1216 dev->fsa_dev[container].config_waiting_on =
1217 AifEnContainerChange;
1218 dev->fsa_dev[container].config_needed = DELETE;
31876f32
MH
1219 dev->fsa_dev[container].config_waiting_stamp =
1220 jiffies;
131256cf
MH
1221 }
1222 }
1223 break;
1224 }
1225
a4576b5d
MS
1226 container = 0;
1227retry_next:
0995ad38 1228 if (device_config_needed == NOTHING)
a4576b5d 1229 for (; container < dev->maximum_num_containers; ++container) {
31876f32
MH
1230 if ((dev->fsa_dev[container].config_waiting_on == 0) &&
1231 (dev->fsa_dev[container].config_needed != NOTHING) &&
1232 time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT)) {
131256cf
MH
1233 device_config_needed =
1234 dev->fsa_dev[container].config_needed;
1235 dev->fsa_dev[container].config_needed = NOTHING;
0995ad38
SM
1236 channel = CONTAINER_TO_CHANNEL(container);
1237 id = CONTAINER_TO_ID(container);
1238 lun = CONTAINER_TO_LUN(container);
131256cf
MH
1239 break;
1240 }
1241 }
1242 if (device_config_needed == NOTHING)
1243 return;
1244
1245 /*
1246 * If we decided that a re-configuration needs to be done,
1247 * schedule it here on the way out the door, please close the door
1248 * behind you.
1249 */
1250
131256cf 1251 /*
f64a181d 1252 * Find the scsi_device associated with the SCSI address,
131256cf
MH
1253 * and mark it as changed, invalidating the cache. This deals
1254 * with changes to existing device IDs.
1255 */
1256
1257 if (!dev || !dev->scsi_host_ptr)
1258 return;
1259 /*
bfb35aa8 1260 * force reload of disk info via aac_probe_container
131256cf 1261 */
0995ad38
SM
1262 if ((channel == CONTAINER_CHANNEL) &&
1263 (device_config_needed != NOTHING)) {
1264 if (dev->fsa_dev[container].valid == 1)
1265 dev->fsa_dev[container].valid = 2;
bfb35aa8 1266 aac_probe_container(dev, container);
0995ad38
SM
1267 }
1268 device = scsi_device_lookup(dev->scsi_host_ptr, channel, id, lun);
131256cf
MH
1269 if (device) {
1270 switch (device_config_needed) {
1271 case DELETE:
9cccde93
RM
1272#if (defined(AAC_DEBUG_INSTRUMENT_AIF_DELETE))
1273 scsi_remove_device(device);
1274#else
0995ad38
SM
1275 if (scsi_device_online(device)) {
1276 scsi_device_set_state(device, SDEV_OFFLINE);
1277 sdev_printk(KERN_INFO, device,
1278 "Device offlined - %s\n",
1279 (channel == CONTAINER_CHANNEL) ?
1280 "array deleted" :
1281 "enclosure services event");
1282 }
9cccde93 1283#endif
0995ad38
SM
1284 break;
1285 case ADD:
1286 if (!scsi_device_online(device)) {
1287 sdev_printk(KERN_INFO, device,
1288 "Device online - %s\n",
1289 (channel == CONTAINER_CHANNEL) ?
1290 "array created" :
1291 "enclosure services event");
1292 scsi_device_set_state(device, SDEV_RUNNING);
1293 }
1294 /* FALLTHRU */
131256cf 1295 case CHANGE:
0995ad38
SM
1296 if ((channel == CONTAINER_CHANNEL)
1297 && (!dev->fsa_dev[container].valid)) {
9cccde93
RM
1298#if (defined(AAC_DEBUG_INSTRUMENT_AIF_DELETE))
1299 scsi_remove_device(device);
1300#else
0995ad38
SM
1301 if (!scsi_device_online(device))
1302 break;
1303 scsi_device_set_state(device, SDEV_OFFLINE);
1304 sdev_printk(KERN_INFO, device,
1305 "Device offlined - %s\n",
1306 "array failed");
9cccde93 1307#endif
0995ad38
SM
1308 break;
1309 }
131256cf
MH
1310 scsi_rescan_device(&device->sdev_gendev);
1311
1312 default:
1313 break;
1314 }
1315 scsi_device_put(device);
0995ad38 1316 device_config_needed = NOTHING;
131256cf 1317 }
0995ad38
SM
1318 if (device_config_needed == ADD)
1319 scsi_add_device(dev->scsi_host_ptr, channel, id, lun);
a4576b5d
MS
1320 if (channel == CONTAINER_CHANNEL) {
1321 container++;
1322 device_config_needed = NOTHING;
1323 goto retry_next;
1324 }
131256cf
MH
1325}
1326
29c97684 1327static int _aac_reset_adapter(struct aac_dev *aac, int forced)
8c867b25
MH
1328{
1329 int index, quirks;
8b1462e0 1330 int retval;
8c867b25
MH
1331 struct Scsi_Host *host;
1332 struct scsi_device *dev;
1333 struct scsi_cmnd *command;
1334 struct scsi_cmnd *command_list;
29c97684 1335 int jafo = 0;
8c867b25
MH
1336
1337 /*
1338 * Assumptions:
29c97684
SM
1339 * - host is locked, unless called by the aacraid thread.
1340 * (a matter of convenience, due to legacy issues surrounding
1341 * eh_host_adapter_reset).
8c867b25
MH
1342 * - in_reset is asserted, so no new i/o is getting to the
1343 * card.
29c97684
SM
1344 * - The card is dead, or will be very shortly ;-/ so no new
1345 * commands are completing in the interrupt service.
8c867b25
MH
1346 */
1347 host = aac->scsi_host_ptr;
1348 scsi_block_requests(host);
1349 aac_adapter_disable_int(aac);
29c97684
SM
1350 if (aac->thread->pid != current->pid) {
1351 spin_unlock_irq(host->host_lock);
1352 kthread_stop(aac->thread);
1353 jafo = 1;
1354 }
8c867b25
MH
1355
1356 /*
1357 * If a positive health, means in a known DEAD PANIC
1358 * state and the adapter could be reset to `try again'.
1359 */
29c97684 1360 retval = aac_adapter_restart(aac, forced ? 0 : aac_adapter_check_health(aac));
8c867b25
MH
1361
1362 if (retval)
1363 goto out;
8c867b25 1364
d18b448f
MH
1365 /*
1366 * Loop through the fibs, close the synchronous FIBS
1367 */
33bb3b29 1368 for (retval = 1, index = 0; index < (aac->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB); index++) {
d18b448f 1369 struct fib *fib = &aac->fibs[index];
a8166a52
MH
1370 if (!(fib->hw_fib_va->header.XferState & cpu_to_le32(NoResponseExpected | Async)) &&
1371 (fib->hw_fib_va->header.XferState & cpu_to_le32(ResponseExpected))) {
d18b448f
MH
1372 unsigned long flagv;
1373 spin_lock_irqsave(&fib->event_lock, flagv);
1374 up(&fib->event_wait);
1375 spin_unlock_irqrestore(&fib->event_lock, flagv);
1376 schedule();
33bb3b29 1377 retval = 0;
d18b448f
MH
1378 }
1379 }
33bb3b29
MH
1380 /* Give some extra time for ioctls to complete. */
1381 if (retval == 0)
1382 ssleep(2);
8c867b25
MH
1383 index = aac->cardtype;
1384
1385 /*
1386 * Re-initialize the adapter, first free resources, then carefully
1387 * apply the initialization sequence to come back again. Only risk
1388 * is a change in Firmware dropping cache, it is assumed the caller
1389 * will ensure that i/o is queisced and the card is flushed in that
1390 * case.
1391 */
1392 aac_fib_map_free(aac);
8c867b25
MH
1393 pci_free_consistent(aac->pdev, aac->comm_size, aac->comm_addr, aac->comm_phys);
1394 aac->comm_addr = NULL;
1395 aac->comm_phys = 0;
1396 kfree(aac->queues);
1397 aac->queues = NULL;
8b1462e0 1398 aac_free_irq(aac);
8c867b25
MH
1399 kfree(aac->fsa_dev);
1400 aac->fsa_dev = NULL;
94cf6ba1
SM
1401 quirks = aac_get_driver_ident(index)->quirks;
1402 if (quirks & AAC_QUIRK_31BIT) {
929a22a5
YH
1403 if (((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(31)))) ||
1404 ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_BIT_MASK(31)))))
8c867b25
MH
1405 goto out;
1406 } else {
284901a9
YH
1407 if (((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(32)))) ||
1408 ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_BIT_MASK(32)))))
8c867b25
MH
1409 goto out;
1410 }
1411 if ((retval = (*(aac_get_driver_ident(index)->init))(aac)))
1412 goto out;
94cf6ba1 1413 if (quirks & AAC_QUIRK_31BIT)
284901a9 1414 if ((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(32))))
8c867b25 1415 goto out;
29c97684 1416 if (jafo) {
f170168b
KC
1417 aac->thread = kthread_run(aac_command_thread, aac, "%s",
1418 aac->name);
29c97684
SM
1419 if (IS_ERR(aac->thread)) {
1420 retval = PTR_ERR(aac->thread);
1421 goto out;
1422 }
8c867b25
MH
1423 }
1424 (void)aac_get_adapter_info(aac);
8c867b25 1425 if ((quirks & AAC_QUIRK_34SG) && (host->sg_tablesize > 34)) {
8ce3eca4
SM
1426 host->sg_tablesize = 34;
1427 host->max_sectors = (host->sg_tablesize * 8) + 112;
1428 }
1429 if ((quirks & AAC_QUIRK_17SG) && (host->sg_tablesize > 17)) {
1430 host->sg_tablesize = 17;
1431 host->max_sectors = (host->sg_tablesize * 8) + 112;
1432 }
8c867b25
MH
1433 aac_get_config_status(aac, 1);
1434 aac_get_containers(aac);
1435 /*
1436 * This is where the assumption that the Adapter is quiesced
1437 * is important.
1438 */
1439 command_list = NULL;
1440 __shost_for_each_device(dev, host) {
1441 unsigned long flags;
1442 spin_lock_irqsave(&dev->list_lock, flags);
1443 list_for_each_entry(command, &dev->cmd_list, list)
1444 if (command->SCp.phase == AAC_OWNER_FIRMWARE) {
1445 command->SCp.buffer = (struct scatterlist *)command_list;
1446 command_list = command;
1447 }
1448 spin_unlock_irqrestore(&dev->list_lock, flags);
1449 }
1450 while ((command = command_list)) {
1451 command_list = (struct scsi_cmnd *)command->SCp.buffer;
1452 command->SCp.buffer = NULL;
1453 command->result = DID_OK << 16
1454 | COMMAND_COMPLETE << 8
1455 | SAM_STAT_TASK_SET_FULL;
1456 command->SCp.phase = AAC_OWNER_ERROR_HANDLER;
1457 command->scsi_done(command);
1458 }
1459 retval = 0;
1460
1461out:
1462 aac->in_reset = 0;
1463 scsi_unblock_requests(host);
29c97684
SM
1464 if (jafo) {
1465 spin_lock_irq(host->host_lock);
1466 }
1467 return retval;
1468}
1469
1470int aac_reset_adapter(struct aac_dev * aac, int forced)
1471{
1472 unsigned long flagv = 0;
1473 int retval;
1474 struct Scsi_Host * host;
1475
1476 if (spin_trylock_irqsave(&aac->fib_lock, flagv) == 0)
1477 return -EBUSY;
1478
1479 if (aac->in_reset) {
1480 spin_unlock_irqrestore(&aac->fib_lock, flagv);
1481 return -EBUSY;
1482 }
1483 aac->in_reset = 1;
1484 spin_unlock_irqrestore(&aac->fib_lock, flagv);
1485
1486 /*
1487 * Wait for all commands to complete to this specific
1488 * target (block maximum 60 seconds). Although not necessary,
1489 * it does make us a good storage citizen.
1490 */
1491 host = aac->scsi_host_ptr;
1492 scsi_block_requests(host);
1493 if (forced < 2) for (retval = 60; retval; --retval) {
1494 struct scsi_device * dev;
1495 struct scsi_cmnd * command;
1496 int active = 0;
1497
1498 __shost_for_each_device(dev, host) {
1499 spin_lock_irqsave(&dev->list_lock, flagv);
1500 list_for_each_entry(command, &dev->cmd_list, list) {
1501 if (command->SCp.phase == AAC_OWNER_FIRMWARE) {
1502 active++;
1503 break;
1504 }
1505 }
1506 spin_unlock_irqrestore(&dev->list_lock, flagv);
1507 if (active)
1508 break;
1509
1510 }
1511 /*
1512 * We can exit If all the commands are complete
1513 */
1514 if (active == 0)
1515 break;
1516 ssleep(1);
1517 }
1518
1519 /* Quiesce build, flush cache, write through mode */
f858317d
SM
1520 if (forced < 2)
1521 aac_send_shutdown(aac);
29c97684 1522 spin_lock_irqsave(host->host_lock, flagv);
f858317d 1523 retval = _aac_reset_adapter(aac, forced ? forced : ((aac_check_reset != 0) && (aac_check_reset != 1)));
29c97684
SM
1524 spin_unlock_irqrestore(host->host_lock, flagv);
1525
f858317d 1526 if ((forced < 2) && (retval == -ENODEV)) {
29c97684
SM
1527 /* Unwind aac_send_shutdown() IOP_RESET unsupported/disabled */
1528 struct fib * fibctx = aac_fib_alloc(aac);
1529 if (fibctx) {
1530 struct aac_pause *cmd;
1531 int status;
1532
1533 aac_fib_init(fibctx);
1534
1535 cmd = (struct aac_pause *) fib_data(fibctx);
1536
1537 cmd->command = cpu_to_le32(VM_ContainerConfig);
1538 cmd->type = cpu_to_le32(CT_PAUSE_IO);
1539 cmd->timeout = cpu_to_le32(1);
1540 cmd->min = cpu_to_le32(1);
1541 cmd->noRescan = cpu_to_le32(1);
1542 cmd->count = cpu_to_le32(0);
1543
1544 status = aac_fib_send(ContainerCommand,
1545 fibctx,
1546 sizeof(struct aac_pause),
1547 FsaNormal,
1548 -2 /* Timeout silently */, 1,
1549 NULL, NULL);
1550
1551 if (status >= 0)
1552 aac_fib_complete(fibctx);
cacb6dc3
PNRCEH
1553 /* FIB should be freed only after getting
1554 * the response from the F/W */
1555 if (status != -ERESTARTSYS)
1556 aac_fib_free(fibctx);
29c97684
SM
1557 }
1558 }
1559
8c867b25
MH
1560 return retval;
1561}
1562
1563int aac_check_health(struct aac_dev * aac)
1564{
1565 int BlinkLED;
1566 unsigned long time_now, flagv = 0;
1567 struct list_head * entry;
1568 struct Scsi_Host * host;
1569
1570 /* Extending the scope of fib_lock slightly to protect aac->in_reset */
1571 if (spin_trylock_irqsave(&aac->fib_lock, flagv) == 0)
1572 return 0;
1573
1574 if (aac->in_reset || !(BlinkLED = aac_adapter_check_health(aac))) {
1575 spin_unlock_irqrestore(&aac->fib_lock, flagv);
1576 return 0; /* OK */
1577 }
1578
1579 aac->in_reset = 1;
1580
1581 /* Fake up an AIF:
1582 * aac_aifcmd.command = AifCmdEventNotify = 1
1583 * aac_aifcmd.seqnum = 0xFFFFFFFF
1584 * aac_aifcmd.data[0] = AifEnExpEvent = 23
1585 * aac_aifcmd.data[1] = AifExeFirmwarePanic = 3
1586 * aac.aifcmd.data[2] = AifHighPriority = 3
1587 * aac.aifcmd.data[3] = BlinkLED
1588 */
1589
1590 time_now = jiffies/HZ;
1591 entry = aac->fib_list.next;
1592
1593 /*
1594 * For each Context that is on the
1595 * fibctxList, make a copy of the
1596 * fib, and then set the event to wake up the
1597 * thread that is waiting for it.
1598 */
1599 while (entry != &aac->fib_list) {
1600 /*
1601 * Extract the fibctx
1602 */
1603 struct aac_fib_context *fibctx = list_entry(entry, struct aac_fib_context, next);
1604 struct hw_fib * hw_fib;
1605 struct fib * fib;
1606 /*
1607 * Check if the queue is getting
1608 * backlogged
1609 */
1610 if (fibctx->count > 20) {
1611 /*
1612 * It's *not* jiffies folks,
1613 * but jiffies / HZ, so do not
1614 * panic ...
1615 */
1616 u32 time_last = fibctx->jiffies;
1617 /*
1618 * Has it been > 2 minutes
1619 * since the last read off
1620 * the queue?
1621 */
1622 if ((time_now - time_last) > aif_timeout) {
1623 entry = entry->next;
1624 aac_close_fib_context(aac, fibctx);
1625 continue;
1626 }
1627 }
1628 /*
1629 * Warning: no sleep allowed while
1630 * holding spinlock
1631 */
4dbc22d7
SM
1632 hw_fib = kzalloc(sizeof(struct hw_fib), GFP_ATOMIC);
1633 fib = kzalloc(sizeof(struct fib), GFP_ATOMIC);
8c867b25
MH
1634 if (fib && hw_fib) {
1635 struct aac_aifcmd * aif;
1636
a8166a52 1637 fib->hw_fib_va = hw_fib;
8c867b25
MH
1638 fib->dev = aac;
1639 aac_fib_init(fib);
1640 fib->type = FSAFS_NTC_FIB_CONTEXT;
1641 fib->size = sizeof (struct fib);
1642 fib->data = hw_fib->data;
1643 aif = (struct aac_aifcmd *)hw_fib->data;
1644 aif->command = cpu_to_le32(AifCmdEventNotify);
a3940da5
SM
1645 aif->seqnum = cpu_to_le32(0xFFFFFFFF);
1646 ((__le32 *)aif->data)[0] = cpu_to_le32(AifEnExpEvent);
1647 ((__le32 *)aif->data)[1] = cpu_to_le32(AifExeFirmwarePanic);
1648 ((__le32 *)aif->data)[2] = cpu_to_le32(AifHighPriority);
1649 ((__le32 *)aif->data)[3] = cpu_to_le32(BlinkLED);
8c867b25
MH
1650
1651 /*
1652 * Put the FIB onto the
1653 * fibctx's fibs
1654 */
1655 list_add_tail(&fib->fiblink, &fibctx->fib_list);
1656 fibctx->count++;
1657 /*
1658 * Set the event to wake up the
1659 * thread that will waiting.
1660 */
1661 up(&fibctx->wait_sem);
1662 } else {
1663 printk(KERN_WARNING "aifd: didn't allocate NewFib.\n");
1664 kfree(fib);
1665 kfree(hw_fib);
1666 }
1667 entry = entry->next;
1668 }
1669
1670 spin_unlock_irqrestore(&aac->fib_lock, flagv);
1671
1672 if (BlinkLED < 0) {
1673 printk(KERN_ERR "%s: Host adapter dead %d\n", aac->name, BlinkLED);
1674 goto out;
1675 }
1676
1677 printk(KERN_ERR "%s: Host adapter BLINK LED 0x%x\n", aac->name, BlinkLED);
1678
2f7ecc55 1679 if (!aac_check_reset || ((aac_check_reset == 1) &&
a3940da5
SM
1680 (aac->supplement_adapter_info.SupportedOptions2 &
1681 AAC_OPTION_IGNORE_RESET)))
29c97684 1682 goto out;
8c867b25 1683 host = aac->scsi_host_ptr;
29c97684
SM
1684 if (aac->thread->pid != current->pid)
1685 spin_lock_irqsave(host->host_lock, flagv);
f858317d 1686 BlinkLED = _aac_reset_adapter(aac, aac_check_reset != 1);
29c97684
SM
1687 if (aac->thread->pid != current->pid)
1688 spin_unlock_irqrestore(host->host_lock, flagv);
8c867b25
MH
1689 return BlinkLED;
1690
1691out:
1692 aac->in_reset = 0;
1693 return BlinkLED;
1694}
1695
1696
1da177e4
LT
1697/**
1698 * aac_command_thread - command processing thread
1699 * @dev: Adapter to monitor
1700 *
1701 * Waits on the commandready event in it's queue. When the event gets set
1702 * it will pull FIBs off it's queue. It will continue to pull FIBs off
1703 * until the queue is empty. When the queue is empty it will wait for
1704 * more FIBs.
1705 */
8ce3eca4 1706
fe27381d 1707int aac_command_thread(void *data)
1da177e4 1708{
fe27381d 1709 struct aac_dev *dev = data;
1da177e4
LT
1710 struct hw_fib *hw_fib, *hw_newfib;
1711 struct fib *fib, *newfib;
1da177e4
LT
1712 struct aac_fib_context *fibctx;
1713 unsigned long flags;
1714 DECLARE_WAITQUEUE(wait, current);
29c97684
SM
1715 unsigned long next_jiffies = jiffies + HZ;
1716 unsigned long next_check_jiffies = next_jiffies;
1717 long difference = HZ;
1da177e4
LT
1718
1719 /*
1720 * We can only have one thread per adapter for AIF's.
1721 */
1722 if (dev->aif_thread)
1723 return -EINVAL;
fe27381d 1724
1da177e4
LT
1725 /*
1726 * Let the DPC know it has a place to send the AIF's to.
1727 */
1728 dev->aif_thread = 1;
2f130980 1729 add_wait_queue(&dev->queues->queue[HostNormCmdQueue].cmdready, &wait);
1da177e4 1730 set_current_state(TASK_INTERRUPTIBLE);
2f130980 1731 dprintk ((KERN_INFO "aac_command_thread start\n"));
8ce3eca4 1732 while (1) {
2f130980
MH
1733 spin_lock_irqsave(dev->queues->queue[HostNormCmdQueue].lock, flags);
1734 while(!list_empty(&(dev->queues->queue[HostNormCmdQueue].cmdq))) {
1da177e4
LT
1735 struct list_head *entry;
1736 struct aac_aifcmd * aifcmd;
1737
1738 set_current_state(TASK_RUNNING);
8ce3eca4 1739
2f130980 1740 entry = dev->queues->queue[HostNormCmdQueue].cmdq.next;
1da177e4 1741 list_del(entry);
8ce3eca4 1742
2f130980 1743 spin_unlock_irqrestore(dev->queues->queue[HostNormCmdQueue].lock, flags);
1da177e4
LT
1744 fib = list_entry(entry, struct fib, fiblink);
1745 /*
8ce3eca4
SM
1746 * We will process the FIB here or pass it to a
1747 * worker thread that is TBD. We Really can't
1da177e4
LT
1748 * do anything at this point since we don't have
1749 * anything defined for this thread to do.
1750 */
a8166a52 1751 hw_fib = fib->hw_fib_va;
1da177e4
LT
1752 memset(fib, 0, sizeof(struct fib));
1753 fib->type = FSAFS_NTC_FIB_CONTEXT;
8ce3eca4 1754 fib->size = sizeof(struct fib);
a8166a52 1755 fib->hw_fib_va = hw_fib;
1da177e4
LT
1756 fib->data = hw_fib->data;
1757 fib->dev = dev;
1758 /*
1759 * We only handle AifRequest fibs from the adapter.
1760 */
1761 aifcmd = (struct aac_aifcmd *) hw_fib->data;
1762 if (aifcmd->command == cpu_to_le32(AifCmdDriverNotify)) {
1763 /* Handle Driver Notify Events */
131256cf 1764 aac_handle_aif(dev, fib);
56b58712 1765 *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK);
bfb35aa8 1766 aac_fib_adapter_complete(fib, (u16)sizeof(u32));
1da177e4 1767 } else {
1da177e4
LT
1768 /* The u32 here is important and intended. We are using
1769 32bit wrapping time to fit the adapter field */
8ce3eca4 1770
1da177e4
LT
1771 u32 time_now, time_last;
1772 unsigned long flagv;
2f130980
MH
1773 unsigned num;
1774 struct hw_fib ** hw_fib_pool, ** hw_fib_p;
1775 struct fib ** fib_pool, ** fib_p;
8ce3eca4 1776
131256cf 1777 /* Sniff events */
8ce3eca4 1778 if ((aifcmd->command ==
131256cf 1779 cpu_to_le32(AifCmdEventNotify)) ||
8ce3eca4 1780 (aifcmd->command ==
131256cf
MH
1781 cpu_to_le32(AifCmdJobProgress))) {
1782 aac_handle_aif(dev, fib);
1783 }
29c97684 1784
1da177e4
LT
1785 time_now = jiffies/HZ;
1786
2f130980
MH
1787 /*
1788 * Warning: no sleep allowed while
1789 * holding spinlock. We take the estimate
1790 * and pre-allocate a set of fibs outside the
1791 * lock.
1792 */
1793 num = le32_to_cpu(dev->init->AdapterFibsSize)
1794 / sizeof(struct hw_fib); /* some extra */
1795 spin_lock_irqsave(&dev->fib_lock, flagv);
1796 entry = dev->fib_list.next;
1797 while (entry != &dev->fib_list) {
1798 entry = entry->next;
1799 ++num;
1800 }
1801 spin_unlock_irqrestore(&dev->fib_lock, flagv);
1802 hw_fib_pool = NULL;
1803 fib_pool = NULL;
1804 if (num
1805 && ((hw_fib_pool = kmalloc(sizeof(struct hw_fib *) * num, GFP_KERNEL)))
1806 && ((fib_pool = kmalloc(sizeof(struct fib *) * num, GFP_KERNEL)))) {
1807 hw_fib_p = hw_fib_pool;
1808 fib_p = fib_pool;
1809 while (hw_fib_p < &hw_fib_pool[num]) {
1810 if (!(*(hw_fib_p++) = kmalloc(sizeof(struct hw_fib), GFP_KERNEL))) {
1811 --hw_fib_p;
1812 break;
1813 }
1814 if (!(*(fib_p++) = kmalloc(sizeof(struct fib), GFP_KERNEL))) {
1815 kfree(*(--hw_fib_p));
1816 break;
1817 }
1818 }
1819 if ((num = hw_fib_p - hw_fib_pool) == 0) {
1820 kfree(fib_pool);
1821 fib_pool = NULL;
1822 kfree(hw_fib_pool);
1823 hw_fib_pool = NULL;
1824 }
c9475cb0 1825 } else {
2f130980
MH
1826 kfree(hw_fib_pool);
1827 hw_fib_pool = NULL;
1828 }
1da177e4
LT
1829 spin_lock_irqsave(&dev->fib_lock, flagv);
1830 entry = dev->fib_list.next;
1831 /*
8ce3eca4 1832 * For each Context that is on the
1da177e4
LT
1833 * fibctxList, make a copy of the
1834 * fib, and then set the event to wake up the
1835 * thread that is waiting for it.
1836 */
2f130980
MH
1837 hw_fib_p = hw_fib_pool;
1838 fib_p = fib_pool;
1da177e4
LT
1839 while (entry != &dev->fib_list) {
1840 /*
1841 * Extract the fibctx
1842 */
1843 fibctx = list_entry(entry, struct aac_fib_context, next);
1844 /*
1845 * Check if the queue is getting
1846 * backlogged
1847 */
1848 if (fibctx->count > 20)
1849 {
1850 /*
1851 * It's *not* jiffies folks,
1852 * but jiffies / HZ so do not
1853 * panic ...
1854 */
1855 time_last = fibctx->jiffies;
1856 /*
8ce3eca4 1857 * Has it been > 2 minutes
1da177e4
LT
1858 * since the last read off
1859 * the queue?
1860 */
404d9a90 1861 if ((time_now - time_last) > aif_timeout) {
1da177e4
LT
1862 entry = entry->next;
1863 aac_close_fib_context(dev, fibctx);
1864 continue;
1865 }
1866 }
1867 /*
1868 * Warning: no sleep allowed while
1869 * holding spinlock
1870 */
2f130980
MH
1871 if (hw_fib_p < &hw_fib_pool[num]) {
1872 hw_newfib = *hw_fib_p;
1873 *(hw_fib_p++) = NULL;
1874 newfib = *fib_p;
1875 *(fib_p++) = NULL;
1da177e4
LT
1876 /*
1877 * Make the copy of the FIB
1878 */
1879 memcpy(hw_newfib, hw_fib, sizeof(struct hw_fib));
1880 memcpy(newfib, fib, sizeof(struct fib));
a8166a52 1881 newfib->hw_fib_va = hw_newfib;
1da177e4
LT
1882 /*
1883 * Put the FIB onto the
1884 * fibctx's fibs
1885 */
1886 list_add_tail(&newfib->fiblink, &fibctx->fib_list);
1887 fibctx->count++;
8ce3eca4 1888 /*
1da177e4 1889 * Set the event to wake up the
2f130980 1890 * thread that is waiting.
1da177e4
LT
1891 */
1892 up(&fibctx->wait_sem);
1893 } else {
1894 printk(KERN_WARNING "aifd: didn't allocate NewFib.\n");
1da177e4
LT
1895 }
1896 entry = entry->next;
1897 }
1898 /*
1899 * Set the status of this FIB
1900 */
56b58712 1901 *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK);
bfb35aa8 1902 aac_fib_adapter_complete(fib, sizeof(u32));
1da177e4 1903 spin_unlock_irqrestore(&dev->fib_lock, flagv);
2f130980
MH
1904 /* Free up the remaining resources */
1905 hw_fib_p = hw_fib_pool;
1906 fib_p = fib_pool;
1907 while (hw_fib_p < &hw_fib_pool[num]) {
c9475cb0
JJ
1908 kfree(*hw_fib_p);
1909 kfree(*fib_p);
2f130980
MH
1910 ++fib_p;
1911 ++hw_fib_p;
1912 }
c9475cb0
JJ
1913 kfree(hw_fib_pool);
1914 kfree(fib_pool);
1da177e4 1915 }
1da177e4 1916 kfree(fib);
2f130980 1917 spin_lock_irqsave(dev->queues->queue[HostNormCmdQueue].lock, flags);
1da177e4
LT
1918 }
1919 /*
1920 * There are no more AIF's
1921 */
2f130980 1922 spin_unlock_irqrestore(dev->queues->queue[HostNormCmdQueue].lock, flags);
29c97684
SM
1923
1924 /*
1925 * Background activity
1926 */
1927 if ((time_before(next_check_jiffies,next_jiffies))
1928 && ((difference = next_check_jiffies - jiffies) <= 0)) {
1929 next_check_jiffies = next_jiffies;
1930 if (aac_check_health(dev) == 0) {
1931 difference = ((long)(unsigned)check_interval)
1932 * HZ;
1933 next_check_jiffies = jiffies + difference;
1934 } else if (!dev->queues)
1935 break;
1936 }
1937 if (!time_before(next_check_jiffies,next_jiffies)
1938 && ((difference = next_jiffies - jiffies) <= 0)) {
1939 struct timeval now;
1940 int ret;
1941
1942 /* Don't even try to talk to adapter if its sick */
1943 ret = aac_check_health(dev);
1944 if (!ret && !dev->queues)
1945 break;
1946 next_check_jiffies = jiffies
1947 + ((long)(unsigned)check_interval)
1948 * HZ;
1949 do_gettimeofday(&now);
1950
1951 /* Synchronize our watches */
1952 if (((1000000 - (1000000 / HZ)) > now.tv_usec)
1953 && (now.tv_usec > (1000000 / HZ)))
1954 difference = (((1000000 - now.tv_usec) * HZ)
1955 + 500000) / 1000000;
1956 else if (ret == 0) {
1957 struct fib *fibptr;
1958
1959 if ((fibptr = aac_fib_alloc(dev))) {
cacb6dc3 1960 int status;
f3307f72 1961 __le32 *info;
29c97684
SM
1962
1963 aac_fib_init(fibptr);
1964
f3307f72 1965 info = (__le32 *) fib_data(fibptr);
29c97684
SM
1966 if (now.tv_usec > 500000)
1967 ++now.tv_sec;
1968
1969 *info = cpu_to_le32(now.tv_sec);
1970
cacb6dc3 1971 status = aac_fib_send(SendHostTime,
29c97684
SM
1972 fibptr,
1973 sizeof(*info),
1974 FsaNormal,
1975 1, 1,
1976 NULL,
1977 NULL);
cacb6dc3
PNRCEH
1978 /* Do not set XferState to zero unless
1979 * receives a response from F/W */
1980 if (status >= 0)
1981 aac_fib_complete(fibptr);
1982 /* FIB should be freed only after
1983 * getting the response from the F/W */
1984 if (status != -ERESTARTSYS)
1985 aac_fib_free(fibptr);
29c97684
SM
1986 }
1987 difference = (long)(unsigned)update_interval*HZ;
1988 } else {
1989 /* retry shortly */
1990 difference = 10 * HZ;
1991 }
1992 next_jiffies = jiffies + difference;
1993 if (time_before(next_check_jiffies,next_jiffies))
1994 difference = next_check_jiffies - jiffies;
1995 }
1996 if (difference <= 0)
1997 difference = 1;
1998 set_current_state(TASK_INTERRUPTIBLE);
fc4bf75e
RAR
1999
2000 if (kthread_should_stop())
2001 break;
2002
29c97684 2003 schedule_timeout(difference);
1da177e4 2004
fe27381d 2005 if (kthread_should_stop())
1da177e4 2006 break;
1da177e4 2007 }
2f130980
MH
2008 if (dev->queues)
2009 remove_wait_queue(&dev->queues->queue[HostNormCmdQueue].cmdready, &wait);
1da177e4 2010 dev->aif_thread = 0;
2f130980 2011 return 0;
1da177e4 2012}
8b1462e0
MR
2013
2014int aac_acquire_irq(struct aac_dev *dev)
2015{
2016 int i;
2017 int j;
2018 int ret = 0;
2019 int cpu;
2020
2021 cpu = cpumask_first(cpu_online_mask);
2022 if (!dev->sync_mode && dev->msi_enabled && dev->max_msix > 1) {
2023 for (i = 0; i < dev->max_msix; i++) {
2024 dev->aac_msix[i].vector_no = i;
2025 dev->aac_msix[i].dev = dev;
2026 if (request_irq(dev->msixentry[i].vector,
2027 dev->a_ops.adapter_intr,
2028 0, "aacraid", &(dev->aac_msix[i]))) {
2029 printk(KERN_ERR "%s%d: Failed to register IRQ for vector %d.\n",
2030 dev->name, dev->id, i);
2031 for (j = 0 ; j < i ; j++)
2032 free_irq(dev->msixentry[j].vector,
2033 &(dev->aac_msix[j]));
2034 pci_disable_msix(dev->pdev);
2035 ret = -1;
2036 }
2037 if (irq_set_affinity_hint(dev->msixentry[i].vector,
2038 get_cpu_mask(cpu))) {
2039 printk(KERN_ERR "%s%d: Failed to set IRQ affinity for cpu %d\n",
2040 dev->name, dev->id, cpu);
2041 }
2042 cpu = cpumask_next(cpu, cpu_online_mask);
2043 }
2044 } else {
2045 dev->aac_msix[0].vector_no = 0;
2046 dev->aac_msix[0].dev = dev;
2047
2048 if (request_irq(dev->pdev->irq, dev->a_ops.adapter_intr,
2049 IRQF_SHARED, "aacraid",
2050 &(dev->aac_msix[0])) < 0) {
2051 if (dev->msi)
2052 pci_disable_msi(dev->pdev);
2053 printk(KERN_ERR "%s%d: Interrupt unavailable.\n",
2054 dev->name, dev->id);
2055 ret = -1;
2056 }
2057 }
2058 return ret;
2059}
2060
2061void aac_free_irq(struct aac_dev *dev)
2062{
2063 int i;
2064 int cpu;
2065
2066 cpu = cpumask_first(cpu_online_mask);
2067 if (dev->pdev->device == PMC_DEVICE_S6 ||
2068 dev->pdev->device == PMC_DEVICE_S7 ||
2069 dev->pdev->device == PMC_DEVICE_S8 ||
2070 dev->pdev->device == PMC_DEVICE_S9) {
2071 if (dev->max_msix > 1) {
2072 for (i = 0; i < dev->max_msix; i++) {
2073 if (irq_set_affinity_hint(
2074 dev->msixentry[i].vector, NULL)) {
2075 printk(KERN_ERR "%s%d: Failed to reset IRQ affinity for cpu %d\n",
2076 dev->name, dev->id, cpu);
2077 }
2078 cpu = cpumask_next(cpu, cpu_online_mask);
2079 free_irq(dev->msixentry[i].vector,
2080 &(dev->aac_msix[i]));
2081 }
2082 } else {
2083 free_irq(dev->pdev->irq, &(dev->aac_msix[0]));
2084 }
2085 } else {
2086 free_irq(dev->pdev->irq, dev);
2087 }
2088 if (dev->msi)
2089 pci_disable_msi(dev->pdev);
2090 else if (dev->max_msix > 1)
2091 pci_disable_msix(dev->pdev);
2092}