2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc.
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
8 * Copyright (c) 2000-2010 Adaptec, Inc.
9 * 2010 PMC-Sierra, Inc. (aacraid@pmc-sierra.com)
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)
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.
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.
28 * Abstract: All DPC processing routines for the cyclone board occur here.
33 #include <linux/kernel.h>
34 #include <linux/init.h>
35 #include <linux/types.h>
36 #include <linux/spinlock.h>
37 #include <linux/slab.h>
38 #include <linux/completion.h>
39 #include <linux/blkdev.h>
40 #include <linux/semaphore.h>
45 * aac_response_normal - Handle command replies
46 * @q: Queue to read from
48 * This DPC routine will be run when the adapter interrupts us to let us
49 * know there is a response on our normal priority queue. We will pull off
50 * all QE there are and wake up all the waiters before exiting. We will
51 * take a spinlock out on the queue before operating on it.
54 unsigned int aac_response_normal(struct aac_queue
* q
)
56 struct aac_dev
* dev
= q
->dev
;
57 struct aac_entry
*entry
;
58 struct hw_fib
* hwfib
;
61 unsigned long flags
, mflags
;
63 spin_lock_irqsave(q
->lock
, flags
);
65 * Keep pulling response QEs off the response queue and waking
66 * up the waiters until there are no more QEs. We then return
67 * back to the system. If no response was requesed we just
68 * deallocate the Fib here and continue.
70 while(aac_consumer_get(dev
, q
, &entry
))
73 u32 index
= le32_to_cpu(entry
->addr
);
75 fib
= &dev
->fibs
[index
>> 2];
76 hwfib
= fib
->hw_fib_va
;
78 aac_consumer_free(dev
, q
, HostNormRespQueue
);
80 * Remove this fib from the Outstanding I/O queue.
81 * But only if it has not already been timed out.
83 * If the fib has been timed out already, then just
84 * continue. The caller has already been notified that
87 dev
->queues
->queue
[AdapNormCmdQueue
].numpending
--;
89 if (unlikely(fib
->flags
& FIB_CONTEXT_FLAG_TIMED_OUT
)) {
90 spin_unlock_irqrestore(q
->lock
, flags
);
91 aac_fib_complete(fib
);
93 spin_lock_irqsave(q
->lock
, flags
);
96 spin_unlock_irqrestore(q
->lock
, flags
);
102 *(__le32
*)hwfib
->data
= cpu_to_le32(ST_OK
);
103 hwfib
->header
.XferState
|= cpu_to_le32(AdapterProcessed
);
106 FIB_COUNTER_INCREMENT(aac_config
.FibRecved
);
108 if (hwfib
->header
.Command
== cpu_to_le16(NuFileSystem
))
110 __le32
*pstatus
= (__le32
*)hwfib
->data
;
111 if (*pstatus
& cpu_to_le32(0xffff0000))
112 *pstatus
= cpu_to_le32(ST_OK
);
114 if (hwfib
->header
.XferState
& cpu_to_le32(NoResponseExpected
| Async
))
116 if (hwfib
->header
.XferState
& cpu_to_le32(NoResponseExpected
))
117 FIB_COUNTER_INCREMENT(aac_config
.NoResponseRecved
);
119 FIB_COUNTER_INCREMENT(aac_config
.AsyncRecved
);
121 * NOTE: we cannot touch the fib after this
122 * call, because it may have been deallocated.
125 fib
->callback(fib
->callback_data
, fib
);
128 spin_lock_irqsave(&fib
->event_lock
, flagv
);
131 up(&fib
->event_wait
);
133 spin_unlock_irqrestore(&fib
->event_lock
, flagv
);
135 spin_lock_irqsave(&dev
->manage_lock
, mflags
);
136 dev
->management_fib_count
--;
137 spin_unlock_irqrestore(&dev
->manage_lock
, mflags
);
139 FIB_COUNTER_INCREMENT(aac_config
.NormalRecved
);
140 if (fib
->done
== 2) {
141 spin_lock_irqsave(&fib
->event_lock
, flagv
);
143 spin_unlock_irqrestore(&fib
->event_lock
, flagv
);
144 aac_fib_complete(fib
);
149 spin_lock_irqsave(q
->lock
, flags
);
152 if (consumed
> aac_config
.peak_fibs
)
153 aac_config
.peak_fibs
= consumed
;
155 aac_config
.zero_fibs
++;
157 spin_unlock_irqrestore(q
->lock
, flags
);
163 * aac_command_normal - handle commands
164 * @q: queue to process
166 * This DPC routine will be queued when the adapter interrupts us to
167 * let us know there is a command on our normal priority queue. We will
168 * pull off all QE there are and wake up all the waiters before exiting.
169 * We will take a spinlock out on the queue before operating on it.
172 unsigned int aac_command_normal(struct aac_queue
*q
)
174 struct aac_dev
* dev
= q
->dev
;
175 struct aac_entry
*entry
;
178 spin_lock_irqsave(q
->lock
, flags
);
181 * Keep pulling response QEs off the response queue and waking
182 * up the waiters until there are no more QEs. We then return
183 * back to the system.
185 while(aac_consumer_get(dev
, q
, &entry
))
188 struct hw_fib
* hw_fib
;
190 struct fib
*fib
= &fibctx
;
192 index
= le32_to_cpu(entry
->addr
) / sizeof(struct hw_fib
);
193 hw_fib
= &dev
->aif_base_va
[index
];
196 * Allocate a FIB at all costs. For non queued stuff
197 * we can just use the stack so we are happy. We need
198 * a fib object in order to manage the linked lists
201 if((fib
= kmalloc(sizeof(struct fib
), GFP_ATOMIC
)) == NULL
)
204 memset(fib
, 0, sizeof(struct fib
));
205 INIT_LIST_HEAD(&fib
->fiblink
);
206 fib
->type
= FSAFS_NTC_FIB_CONTEXT
;
207 fib
->size
= sizeof(struct fib
);
208 fib
->hw_fib_va
= hw_fib
;
209 fib
->data
= hw_fib
->data
;
213 if (dev
->aif_thread
&& fib
!= &fibctx
) {
214 list_add_tail(&fib
->fiblink
, &q
->cmdq
);
215 aac_consumer_free(dev
, q
, HostNormCmdQueue
);
216 wake_up_interruptible(&q
->cmdready
);
218 aac_consumer_free(dev
, q
, HostNormCmdQueue
);
219 spin_unlock_irqrestore(q
->lock
, flags
);
221 * Set the status of this FIB
223 *(__le32
*)hw_fib
->data
= cpu_to_le32(ST_OK
);
224 aac_fib_adapter_complete(fib
, sizeof(u32
));
225 spin_lock_irqsave(q
->lock
, flags
);
228 spin_unlock_irqrestore(q
->lock
, flags
);
235 * @context: the context set in the fib - here it is scsi cmd
236 * @fibptr: pointer to the fib
238 * Handles the AIFs - new method (SRC)
242 static void aac_aif_callback(void *context
, struct fib
* fibptr
)
246 struct aac_aifcmd
*cmd
;
249 fibctx
= (struct fib
*)context
;
250 BUG_ON(fibptr
== NULL
);
253 if (fibptr
->hw_fib_va
->header
.XferState
&
254 cpu_to_le32(NoMoreAifDataAvailable
)) {
255 aac_fib_complete(fibptr
);
256 aac_fib_free(fibptr
);
260 aac_intr_normal(dev
, 0, 1, 0, fibptr
->hw_fib_va
);
262 aac_fib_init(fibctx
);
263 cmd
= (struct aac_aifcmd
*) fib_data(fibctx
);
264 cmd
->command
= cpu_to_le32(AifReqEvent
);
266 status
= aac_fib_send(AifRequest
,
268 sizeof(struct hw_fib
)-sizeof(struct aac_fibhdr
),
271 (fib_callback
)aac_aif_callback
, fibctx
);
276 * aac_intr_normal - Handle command replies
278 * @index: completion reference
280 * This DPC routine will be run when the adapter interrupts us to let us
281 * know there is a response on our normal priority queue. We will pull off
282 * all QE there are and wake up all the waiters before exiting.
284 unsigned int aac_intr_normal(struct aac_dev
*dev
, u32 index
,
285 int isAif
, int isFastResponse
, struct hw_fib
*aif_fib
)
287 unsigned long mflags
;
288 dprintk((KERN_INFO
"aac_intr_normal(%p,%x)\n", dev
, index
));
289 if (isAif
== 1) { /* AIF - common */
290 struct hw_fib
* hw_fib
;
292 struct aac_queue
*q
= &dev
->queues
->queue
[HostNormCmdQueue
];
296 * Allocate a FIB. For non queued stuff we can just use
297 * the stack so we are happy. We need a fib object in order to
298 * manage the linked lists.
300 if ((!dev
->aif_thread
)
301 || (!(fib
= kzalloc(sizeof(struct fib
),GFP_ATOMIC
))))
303 if (!(hw_fib
= kzalloc(sizeof(struct hw_fib
),GFP_ATOMIC
))) {
307 if (aif_fib
!= NULL
) {
308 memcpy(hw_fib
, aif_fib
, sizeof(struct hw_fib
));
311 (struct hw_fib
*)(((uintptr_t)(dev
->regs
.sa
)) +
312 index
), sizeof(struct hw_fib
));
314 INIT_LIST_HEAD(&fib
->fiblink
);
315 fib
->type
= FSAFS_NTC_FIB_CONTEXT
;
316 fib
->size
= sizeof(struct fib
);
317 fib
->hw_fib_va
= hw_fib
;
318 fib
->data
= hw_fib
->data
;
321 spin_lock_irqsave(q
->lock
, flags
);
322 list_add_tail(&fib
->fiblink
, &q
->cmdq
);
323 wake_up_interruptible(&q
->cmdready
);
324 spin_unlock_irqrestore(q
->lock
, flags
);
326 } else if (isAif
== 2) { /* AIF - new (SRC) */
328 struct aac_aifcmd
*cmd
;
330 fibctx
= aac_fib_alloc(dev
);
333 aac_fib_init(fibctx
);
335 cmd
= (struct aac_aifcmd
*) fib_data(fibctx
);
336 cmd
->command
= cpu_to_le32(AifReqEvent
);
338 return aac_fib_send(AifRequest
,
340 sizeof(struct hw_fib
)-sizeof(struct aac_fibhdr
),
343 (fib_callback
)aac_aif_callback
, fibctx
);
345 struct fib
*fib
= &dev
->fibs
[index
];
346 struct hw_fib
* hwfib
= fib
->hw_fib_va
;
349 * Remove this fib from the Outstanding I/O queue.
350 * But only if it has not already been timed out.
352 * If the fib has been timed out already, then just
353 * continue. The caller has already been notified that
356 dev
->queues
->queue
[AdapNormCmdQueue
].numpending
--;
358 if (unlikely(fib
->flags
& FIB_CONTEXT_FLAG_TIMED_OUT
)) {
359 aac_fib_complete(fib
);
364 if (isFastResponse
) {
368 *(__le32
*)hwfib
->data
= cpu_to_le32(ST_OK
);
369 hwfib
->header
.XferState
|= cpu_to_le32(AdapterProcessed
);
372 FIB_COUNTER_INCREMENT(aac_config
.FibRecved
);
374 if (hwfib
->header
.Command
== cpu_to_le16(NuFileSystem
))
376 __le32
*pstatus
= (__le32
*)hwfib
->data
;
377 if (*pstatus
& cpu_to_le32(0xffff0000))
378 *pstatus
= cpu_to_le32(ST_OK
);
380 if (hwfib
->header
.XferState
& cpu_to_le32(NoResponseExpected
| Async
))
382 if (hwfib
->header
.XferState
& cpu_to_le32(NoResponseExpected
))
383 FIB_COUNTER_INCREMENT(aac_config
.NoResponseRecved
);
385 FIB_COUNTER_INCREMENT(aac_config
.AsyncRecved
);
387 * NOTE: we cannot touch the fib after this
388 * call, because it may have been deallocated.
391 fib
->callback(fib
->callback_data
, fib
);
394 dprintk((KERN_INFO
"event_wait up\n"));
395 spin_lock_irqsave(&fib
->event_lock
, flagv
);
398 up(&fib
->event_wait
);
400 spin_unlock_irqrestore(&fib
->event_lock
, flagv
);
402 spin_lock_irqsave(&dev
->manage_lock
, mflags
);
403 dev
->management_fib_count
--;
404 spin_unlock_irqrestore(&dev
->manage_lock
, mflags
);
406 FIB_COUNTER_INCREMENT(aac_config
.NormalRecved
);
407 if (fib
->done
== 2) {
408 spin_lock_irqsave(&fib
->event_lock
, flagv
);
410 spin_unlock_irqrestore(&fib
->event_lock
, flagv
);
411 aac_fib_complete(fib
);