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: Hardware Device Interface for PMC SRC based controllers
32 #include <linux/kernel.h>
33 #include <linux/init.h>
34 #include <linux/types.h>
35 #include <linux/pci.h>
36 #include <linux/spinlock.h>
37 #include <linux/slab.h>
38 #include <linux/blkdev.h>
39 #include <linux/delay.h>
40 #include <linux/version.h>
41 #include <linux/completion.h>
42 #include <linux/time.h>
43 #include <linux/interrupt.h>
44 #include <scsi/scsi_host.h>
48 static irqreturn_t
aac_src_intr_message(int irq
, void *dev_id
)
50 struct aac_dev
*dev
= dev_id
;
51 unsigned long bellbits
, bellbits_shifted
;
52 int our_interrupt
= 0;
56 bellbits
= src_readl(dev
, MUnit
.ODR_R
);
57 if (bellbits
& PmDoorBellResponseSent
) {
58 bellbits
= PmDoorBellResponseSent
;
59 /* handle async. status */
61 index
= dev
->host_rrq_idx
;
62 if (dev
->host_rrq
[index
] == 0) {
63 u32 old_index
= index
;
67 if (index
== dev
->scsi_host_ptr
->can_queue
+
70 if (dev
->host_rrq
[index
] != 0)
72 } while (index
!= old_index
);
73 dev
->host_rrq_idx
= index
;
77 /* remove toggle bit (31) */
78 handle
= (dev
->host_rrq
[index
] & 0x7fffffff);
79 /* check fast response bit (30) */
80 if (handle
& 0x40000000)
86 aac_intr_normal(dev
, handle
-1, 0, isFastResponse
, NULL
);
88 dev
->host_rrq
[index
++] = 0;
89 if (index
== dev
->scsi_host_ptr
->can_queue
+
92 dev
->host_rrq_idx
= index
;
95 bellbits_shifted
= (bellbits
>> SRC_ODR_SHIFT
);
96 if (bellbits_shifted
& DoorBellAifPending
) {
99 aac_intr_normal(dev
, 0, 2, 0, NULL
);
104 src_writel(dev
, MUnit
.ODR_C
, bellbits
);
111 * aac_src_disable_interrupt - Disable interrupts
115 static void aac_src_disable_interrupt(struct aac_dev
*dev
)
117 src_writel(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xffffffff);
121 * aac_src_enable_interrupt_message - Enable interrupts
125 static void aac_src_enable_interrupt_message(struct aac_dev
*dev
)
127 src_writel(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xfffffff8);
131 * src_sync_cmd - send a command and wait
133 * @command: Command to execute
134 * @p1: first parameter
135 * @ret: adapter status
137 * This routine will send a synchronous command to the adapter and wait
138 * for its completion.
141 static int src_sync_cmd(struct aac_dev
*dev
, u32 command
,
142 u32 p1
, u32 p2
, u32 p3
, u32 p4
, u32 p5
, u32 p6
,
143 u32
*status
, u32
* r1
, u32
* r2
, u32
* r3
, u32
* r4
)
149 * Write the command into Mailbox 0
151 writel(command
, &dev
->IndexRegs
->Mailbox
[0]);
153 * Write the parameters into Mailboxes 1 - 6
155 writel(p1
, &dev
->IndexRegs
->Mailbox
[1]);
156 writel(p2
, &dev
->IndexRegs
->Mailbox
[2]);
157 writel(p3
, &dev
->IndexRegs
->Mailbox
[3]);
158 writel(p4
, &dev
->IndexRegs
->Mailbox
[4]);
161 * Clear the synch command doorbell to start on a clean slate.
163 src_writel(dev
, MUnit
.ODR_C
, OUTBOUNDDOORBELL_0
<< SRC_ODR_SHIFT
);
166 * Disable doorbell interrupts
168 src_writel(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xffffffff);
171 * Force the completion of the mask register write before issuing
174 src_readl(dev
, MUnit
.OIMR
);
177 * Signal that there is a new synch command
179 src_writel(dev
, MUnit
.IDR
, INBOUNDDOORBELL_0
<< SRC_IDR_SHIFT
);
185 * Wait up to 30 seconds
187 while (time_before(jiffies
, start
+30*HZ
)) {
188 /* Delay 5 microseconds to let Mon960 get info. */
191 /* Mon960 will set doorbell0 bit
192 * when it has completed the command
194 if ((src_readl(dev
, MUnit
.ODR_R
) >> SRC_ODR_SHIFT
) & OUTBOUNDDOORBELL_0
) {
195 /* Clear the doorbell */
198 OUTBOUNDDOORBELL_0
<< SRC_ODR_SHIFT
);
203 /* Yield the processor in case we are slow */
206 if (unlikely(ok
!= 1)) {
207 /* Restore interrupt mask even though we timed out */
208 aac_adapter_enable_int(dev
);
212 /* Pull the synch status from Mailbox 0 */
214 *status
= readl(&dev
->IndexRegs
->Mailbox
[0]);
216 *r1
= readl(&dev
->IndexRegs
->Mailbox
[1]);
218 *r2
= readl(&dev
->IndexRegs
->Mailbox
[2]);
220 *r3
= readl(&dev
->IndexRegs
->Mailbox
[3]);
222 *r4
= readl(&dev
->IndexRegs
->Mailbox
[4]);
224 /* Clear the synch command doorbell */
225 src_writel(dev
, MUnit
.ODR_C
, OUTBOUNDDOORBELL_0
<< SRC_ODR_SHIFT
);
227 /* Restore interrupt mask */
228 aac_adapter_enable_int(dev
);
234 * aac_src_interrupt_adapter - interrupt adapter
237 * Send an interrupt to the i960 and breakpoint it.
240 static void aac_src_interrupt_adapter(struct aac_dev
*dev
)
242 src_sync_cmd(dev
, BREAKPOINT_REQUEST
,
244 NULL
, NULL
, NULL
, NULL
, NULL
);
248 * aac_src_notify_adapter - send an event to the adapter
250 * @event: Event to send
252 * Notify the i960 that something it probably cares about has
256 static void aac_src_notify_adapter(struct aac_dev
*dev
, u32 event
)
261 src_writel(dev
, MUnit
.ODR_C
,
262 INBOUNDDOORBELL_1
<< SRC_ODR_SHIFT
);
264 case HostNormRespNotFull
:
265 src_writel(dev
, MUnit
.ODR_C
,
266 INBOUNDDOORBELL_4
<< SRC_ODR_SHIFT
);
268 case AdapNormRespQue
:
269 src_writel(dev
, MUnit
.ODR_C
,
270 INBOUNDDOORBELL_2
<< SRC_ODR_SHIFT
);
272 case HostNormCmdNotFull
:
273 src_writel(dev
, MUnit
.ODR_C
,
274 INBOUNDDOORBELL_3
<< SRC_ODR_SHIFT
);
277 src_writel(dev
, MUnit
.ODR_C
,
278 INBOUNDDOORBELL_6
<< SRC_ODR_SHIFT
);
281 src_writel(dev
, MUnit
.ODR_C
,
282 INBOUNDDOORBELL_5
<< SRC_ODR_SHIFT
);
291 * aac_src_start_adapter - activate adapter
294 * Start up processing on an i960 based AAC adapter
297 static void aac_src_start_adapter(struct aac_dev
*dev
)
299 struct aac_init
*init
;
302 init
->HostElapsedSeconds
= cpu_to_le32(get_seconds());
304 /* We can only use a 32 bit address here */
305 src_sync_cmd(dev
, INIT_STRUCT_BASE_ADDRESS
, (u32
)(ulong
)dev
->init_pa
,
306 0, 0, 0, 0, 0, NULL
, NULL
, NULL
, NULL
, NULL
);
310 * aac_src_check_health
311 * @dev: device to check if healthy
313 * Will attempt to determine if the specified adapter is alive and
314 * capable of handling requests, returning 0 if alive.
316 static int aac_src_check_health(struct aac_dev
*dev
)
318 u32 status
= src_readl(dev
, MUnit
.OMR
);
321 * Check to see if the board failed any self tests.
323 if (unlikely(status
& SELF_TEST_FAILED
))
327 * Check to see if the board panic'd.
329 if (unlikely(status
& KERNEL_PANIC
))
330 return (status
>> 16) & 0xFF;
332 * Wait for the adapter to be up and running.
334 if (unlikely(!(status
& KERNEL_UP_AND_RUNNING
)))
343 * aac_src_deliver_message
346 * Will send a fib, returning 0 if successful.
348 static int aac_src_deliver_message(struct fib
*fib
)
350 struct aac_dev
*dev
= fib
->dev
;
351 struct aac_queue
*q
= &dev
->queues
->queue
[AdapNormCmdQueue
];
352 unsigned long qflags
;
355 struct aac_fib_xporthdr
*pFibX
;
357 spin_lock_irqsave(q
->lock
, qflags
);
359 spin_unlock_irqrestore(q
->lock
, qflags
);
361 /* Calculate the amount to the fibsize bits */
362 fibsize
= (sizeof(struct aac_fib_xporthdr
) +
363 fib
->hw_fib_va
->header
.Size
+ 127) / 128 - 1;
364 if (fibsize
> (ALIGN32
- 1))
365 fibsize
= ALIGN32
- 1;
367 /* Fill XPORT header */
368 pFibX
= (struct aac_fib_xporthdr
*)
369 ((unsigned char *)fib
->hw_fib_va
-
370 sizeof(struct aac_fib_xporthdr
));
371 pFibX
->Handle
= fib
->hw_fib_va
->header
.SenderData
+ 1;
372 pFibX
->HostAddress
= fib
->hw_fib_pa
;
373 pFibX
->Size
= fib
->hw_fib_va
->header
.Size
;
374 address
= fib
->hw_fib_pa
- (u64
)sizeof(struct aac_fib_xporthdr
);
376 src_writel(dev
, MUnit
.IQ_H
, (u32
)(address
>> 32));
377 src_writel(dev
, MUnit
.IQ_L
, (u32
)(address
& 0xffffffff) + fibsize
);
383 * @size: mapping resize request
386 static int aac_src_ioremap(struct aac_dev
*dev
, u32 size
)
389 iounmap(dev
->regs
.src
.bar0
);
390 dev
->regs
.src
.bar0
= NULL
;
395 dev
->regs
.src
.bar1
= ioremap(pci_resource_start(dev
->pdev
, 2),
396 AAC_MIN_SRC_BAR1_SIZE
);
398 if (dev
->regs
.src
.bar1
== NULL
)
400 dev
->base
= dev
->regs
.src
.bar0
= ioremap(dev
->scsi_host_ptr
->base
,
402 if (dev
->base
== NULL
) {
403 iounmap(dev
->regs
.src
.bar1
);
404 dev
->regs
.src
.bar1
= NULL
;
407 dev
->IndexRegs
= &((struct src_registers __iomem
*)
408 dev
->base
)->IndexRegs
;
412 static int aac_src_restart_adapter(struct aac_dev
*dev
, int bled
)
418 printk(KERN_ERR
"%s%d: adapter kernel panic'd %x.\n",
419 dev
->name
, dev
->id
, bled
);
420 bled
= aac_adapter_sync_cmd(dev
, IOP_RESET_ALWAYS
,
421 0, 0, 0, 0, 0, 0, &var
, &reset_mask
, NULL
, NULL
, NULL
);
422 if (bled
|| (var
!= 0x00000001))
424 if (dev
->supplement_adapter_info
.SupportedOptions2
&
425 AAC_OPTION_DOORBELL_RESET
) {
426 src_writel(dev
, MUnit
.IDR
, reset_mask
);
427 msleep(5000); /* Delay 5 seconds */
431 if (src_readl(dev
, MUnit
.OMR
) & KERNEL_PANIC
)
434 if (startup_timeout
< 300)
435 startup_timeout
= 300;
441 * aac_src_select_comm - Select communications method
443 * @comm: communications method
445 int aac_src_select_comm(struct aac_dev
*dev
, int comm
)
448 case AAC_COMM_MESSAGE
:
449 dev
->a_ops
.adapter_enable_int
= aac_src_enable_interrupt_message
;
450 dev
->a_ops
.adapter_intr
= aac_src_intr_message
;
451 dev
->a_ops
.adapter_deliver
= aac_src_deliver_message
;
460 * aac_src_init - initialize an Cardinal Frey Bar card
461 * @dev: device to configure
465 int aac_src_init(struct aac_dev
*dev
)
468 unsigned long status
;
470 int instance
= dev
->id
;
471 const char *name
= dev
->name
;
473 dev
->a_ops
.adapter_ioremap
= aac_src_ioremap
;
474 dev
->a_ops
.adapter_comm
= aac_src_select_comm
;
476 dev
->base_size
= AAC_MIN_SRC_BAR0_SIZE
;
477 if (aac_adapter_ioremap(dev
, dev
->base_size
)) {
478 printk(KERN_WARNING
"%s: unable to map adapter.\n", name
);
482 /* Failure to reset here is an option ... */
483 dev
->a_ops
.adapter_sync_cmd
= src_sync_cmd
;
484 dev
->a_ops
.adapter_enable_int
= aac_src_disable_interrupt
;
485 if ((aac_reset_devices
|| reset_devices
) &&
486 !aac_src_restart_adapter(dev
, 0))
489 * Check to see if the board panic'd while booting.
491 status
= src_readl(dev
, MUnit
.OMR
);
492 if (status
& KERNEL_PANIC
) {
493 if (aac_src_restart_adapter(dev
, aac_src_check_health(dev
)))
498 * Check to see if the board failed any self tests.
500 status
= src_readl(dev
, MUnit
.OMR
);
501 if (status
& SELF_TEST_FAILED
) {
502 printk(KERN_ERR
"%s%d: adapter self-test failed.\n",
503 dev
->name
, instance
);
507 * Check to see if the monitor panic'd while booting.
509 if (status
& MONITOR_PANIC
) {
510 printk(KERN_ERR
"%s%d: adapter monitor panic.\n",
511 dev
->name
, instance
);
516 * Wait for the adapter to be up and running. Wait up to 3 minutes
518 while (!((status
= src_readl(dev
, MUnit
.OMR
)) &
519 KERNEL_UP_AND_RUNNING
)) {
521 (status
& (KERNEL_PANIC
|SELF_TEST_FAILED
|MONITOR_PANIC
))) ||
522 time_after(jiffies
, start
+HZ
*startup_timeout
)) {
523 printk(KERN_ERR
"%s%d: adapter kernel failed to start, init status = %lx.\n",
524 dev
->name
, instance
, status
);
528 ((status
& (KERNEL_PANIC
|SELF_TEST_FAILED
|MONITOR_PANIC
)) ||
529 time_after(jiffies
, start
+ HZ
*
530 ((startup_timeout
> 60)
531 ? (startup_timeout
- 60)
532 : (startup_timeout
/ 2))))) {
533 if (likely(!aac_src_restart_adapter(dev
,
534 aac_src_check_health(dev
))))
540 if (restart
&& aac_commit
)
543 * Fill in the common function dispatch table.
545 dev
->a_ops
.adapter_interrupt
= aac_src_interrupt_adapter
;
546 dev
->a_ops
.adapter_disable_int
= aac_src_disable_interrupt
;
547 dev
->a_ops
.adapter_notify
= aac_src_notify_adapter
;
548 dev
->a_ops
.adapter_sync_cmd
= src_sync_cmd
;
549 dev
->a_ops
.adapter_check_health
= aac_src_check_health
;
550 dev
->a_ops
.adapter_restart
= aac_src_restart_adapter
;
553 * First clear out all interrupts. Then enable the one's that we
556 aac_adapter_comm(dev
, AAC_COMM_MESSAGE
);
557 aac_adapter_disable_int(dev
);
558 src_writel(dev
, MUnit
.ODR_C
, 0xffffffff);
559 aac_adapter_enable_int(dev
);
561 if (aac_init_adapter(dev
) == NULL
)
563 if (dev
->comm_interface
!= AAC_COMM_MESSAGE_TYPE1
)
566 dev
->msi
= aac_msi
&& !pci_enable_msi(dev
->pdev
);
568 if (request_irq(dev
->pdev
->irq
, dev
->a_ops
.adapter_intr
,
569 IRQF_SHARED
|IRQF_DISABLED
, "aacraid", dev
) < 0) {
572 pci_disable_msi(dev
->pdev
);
574 printk(KERN_ERR
"%s%d: Interrupt unavailable.\n",
578 dev
->dbg_base
= pci_resource_start(dev
->pdev
, 2);
579 dev
->dbg_base_mapped
= dev
->regs
.src
.bar1
;
580 dev
->dbg_size
= AAC_MIN_SRC_BAR1_SIZE
;
582 aac_adapter_enable_int(dev
);
584 * Tell the adapter that all is configured, and it can
585 * start accepting requests
587 aac_src_start_adapter(dev
);