2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
8 * Copyright (c) 2000 Adaptec, Inc. (aacraid@adaptec.com)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; see the file COPYING. If not, write to
22 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 * Abstract: Hardware miniport for Drawbridge specific hardware functions.
31 #include <linux/kernel.h>
32 #include <linux/init.h>
33 #include <linux/types.h>
34 #include <linux/sched.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/completion.h>
41 #include <linux/time.h>
42 #include <linux/interrupt.h>
43 #include <asm/semaphore.h>
45 #include <scsi/scsi_host.h>
49 static irqreturn_t
aac_rx_intr(int irq
, void *dev_id
, struct pt_regs
*regs
)
51 struct aac_dev
*dev
= dev_id
;
52 unsigned long bellbits
;
54 intstat
= rx_readb(dev
, MUnit
.OISR
);
56 * Read mask and invert because drawbridge is reversed.
57 * This allows us to only service interrupts that have
61 /* Check to see if this is our interrupt. If it isn't just return */
64 bellbits
= rx_readl(dev
, OutboundDoorbellReg
);
65 if (bellbits
& DoorBellPrintfReady
) {
66 aac_printf(dev
, rx_readl(dev
, IndexRegs
.Mailbox
[5]));
67 rx_writel(dev
, MUnit
.ODR
,DoorBellPrintfReady
);
68 rx_writel(dev
, InboundDoorbellReg
,DoorBellPrintfDone
);
70 else if (bellbits
& DoorBellAdapterNormCmdReady
) {
71 rx_writel(dev
, MUnit
.ODR
, DoorBellAdapterNormCmdReady
);
72 aac_command_normal(&dev
->queues
->queue
[HostNormCmdQueue
]);
74 else if (bellbits
& DoorBellAdapterNormRespReady
) {
75 aac_response_normal(&dev
->queues
->queue
[HostNormRespQueue
]);
76 rx_writel(dev
, MUnit
.ODR
,DoorBellAdapterNormRespReady
);
78 else if (bellbits
& DoorBellAdapterNormCmdNotFull
) {
79 rx_writel(dev
, MUnit
.ODR
, DoorBellAdapterNormCmdNotFull
);
81 else if (bellbits
& DoorBellAdapterNormRespNotFull
) {
82 rx_writel(dev
, MUnit
.ODR
, DoorBellAdapterNormCmdNotFull
);
83 rx_writel(dev
, MUnit
.ODR
, DoorBellAdapterNormRespNotFull
);
91 * aac_rx_disable_interrupt - Disable interrupts
95 static void aac_rx_disable_interrupt(struct aac_dev
*dev
)
97 rx_writeb(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xff);
101 * rx_sync_cmd - send a command and wait
103 * @command: Command to execute
104 * @p1: first parameter
105 * @ret: adapter status
107 * This routine will send a synchronous command to the adapter and wait
108 * for its completion.
111 static int rx_sync_cmd(struct aac_dev
*dev
, u32 command
,
112 u32 p1
, u32 p2
, u32 p3
, u32 p4
, u32 p5
, u32 p6
,
113 u32
*status
, u32
* r1
, u32
* r2
, u32
* r3
, u32
* r4
)
118 * Write the command into Mailbox 0
120 rx_writel(dev
, InboundMailbox0
, command
);
122 * Write the parameters into Mailboxes 1 - 6
124 rx_writel(dev
, InboundMailbox1
, p1
);
125 rx_writel(dev
, InboundMailbox2
, p2
);
126 rx_writel(dev
, InboundMailbox3
, p3
);
127 rx_writel(dev
, InboundMailbox4
, p4
);
129 * Clear the synch command doorbell to start on a clean slate.
131 rx_writel(dev
, OutboundDoorbellReg
, OUTBOUNDDOORBELL_0
);
133 * Disable doorbell interrupts
135 rx_writeb(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xff);
137 * Force the completion of the mask register write before issuing
140 rx_readb (dev
, MUnit
.OIMR
);
142 * Signal that there is a new synch command
144 rx_writel(dev
, InboundDoorbellReg
, INBOUNDDOORBELL_0
);
150 * Wait up to 30 seconds
152 while (time_before(jiffies
, start
+30*HZ
))
154 udelay(5); /* Delay 5 microseconds to let Mon960 get info. */
156 * Mon960 will set doorbell0 bit when it has completed the command.
158 if (rx_readl(dev
, OutboundDoorbellReg
) & OUTBOUNDDOORBELL_0
) {
160 * Clear the doorbell.
162 rx_writel(dev
, OutboundDoorbellReg
, OUTBOUNDDOORBELL_0
);
167 * Yield the processor in case we are slow
169 set_current_state(TASK_UNINTERRUPTIBLE
);
174 * Restore interrupt mask even though we timed out
176 rx_writeb(dev
, MUnit
.OIMR
, dev
->OIMR
&= 0xfb);
180 * Pull the synch status from Mailbox 0.
183 *status
= rx_readl(dev
, IndexRegs
.Mailbox
[0]);
185 *r1
= rx_readl(dev
, IndexRegs
.Mailbox
[1]);
187 *r2
= rx_readl(dev
, IndexRegs
.Mailbox
[2]);
189 *r3
= rx_readl(dev
, IndexRegs
.Mailbox
[3]);
191 *r4
= rx_readl(dev
, IndexRegs
.Mailbox
[4]);
193 * Clear the synch command doorbell.
195 rx_writel(dev
, OutboundDoorbellReg
, OUTBOUNDDOORBELL_0
);
197 * Restore interrupt mask
199 rx_writeb(dev
, MUnit
.OIMR
, dev
->OIMR
&= 0xfb);
205 * aac_rx_interrupt_adapter - interrupt adapter
208 * Send an interrupt to the i960 and breakpoint it.
211 static void aac_rx_interrupt_adapter(struct aac_dev
*dev
)
213 rx_sync_cmd(dev
, BREAKPOINT_REQUEST
, 0, 0, 0, 0, 0, 0, NULL
, NULL
, NULL
, NULL
, NULL
);
217 * aac_rx_notify_adapter - send an event to the adapter
219 * @event: Event to send
221 * Notify the i960 that something it probably cares about has
225 static void aac_rx_notify_adapter(struct aac_dev
*dev
, u32 event
)
230 rx_writel(dev
, MUnit
.IDR
,INBOUNDDOORBELL_1
);
232 case HostNormRespNotFull
:
233 rx_writel(dev
, MUnit
.IDR
,INBOUNDDOORBELL_4
);
235 case AdapNormRespQue
:
236 rx_writel(dev
, MUnit
.IDR
,INBOUNDDOORBELL_2
);
238 case HostNormCmdNotFull
:
239 rx_writel(dev
, MUnit
.IDR
,INBOUNDDOORBELL_3
);
242 // rx_sync_cmd(dev, HOST_CRASHING, 0, 0, 0, 0, 0, 0,
243 // NULL, NULL, NULL, NULL, NULL);
246 rx_writel(dev
, MUnit
.IDR
,INBOUNDDOORBELL_6
);
249 rx_writel(dev
, MUnit
.IDR
,INBOUNDDOORBELL_5
);
258 * aac_rx_start_adapter - activate adapter
261 * Start up processing on an i960 based AAC adapter
264 static void aac_rx_start_adapter(struct aac_dev
*dev
)
266 struct aac_init
*init
;
269 init
->HostElapsedSeconds
= cpu_to_le32(get_seconds());
271 * First clear out all interrupts. Then enable the one's that we
274 rx_writeb(dev
, MUnit
.OIMR
, 0xff);
275 rx_writel(dev
, MUnit
.ODR
, 0xffffffff);
276 // rx_writeb(dev, MUnit.OIMR, ~(u8)OUTBOUND_DOORBELL_INTERRUPT_MASK);
277 rx_writeb(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xfb);
279 // We can only use a 32 bit address here
280 rx_sync_cmd(dev
, INIT_STRUCT_BASE_ADDRESS
, (u32
)(ulong
)dev
->init_pa
,
281 0, 0, 0, 0, 0, NULL
, NULL
, NULL
, NULL
, NULL
);
285 * aac_rx_check_health
286 * @dev: device to check if healthy
288 * Will attempt to determine if the specified adapter is alive and
289 * capable of handling requests, returning 0 if alive.
291 static int aac_rx_check_health(struct aac_dev
*dev
)
293 u32 status
= rx_readl(dev
, MUnit
.OMRx
[0]);
296 * Check to see if the board failed any self tests.
298 if (status
& SELF_TEST_FAILED
)
301 * Check to see if the board panic'd.
303 if (status
& KERNEL_PANIC
) {
309 dma_addr_t paddr
, baddr
;
312 if ((status
& 0xFF000000L
) == 0xBC000000L
)
313 return (status
>> 16) & 0xFF;
314 buffer
= pci_alloc_consistent(dev
->pdev
, 512, &baddr
);
318 post
= pci_alloc_consistent(dev
->pdev
,
319 sizeof(struct POSTSTATUS
), &paddr
);
321 pci_free_consistent(dev
->pdev
, 512, buffer
, baddr
);
324 memset(buffer
, 0, 512);
325 post
->Post_Command
= cpu_to_le32(COMMAND_POST_RESULTS
);
326 post
->Post_Address
= cpu_to_le32(baddr
);
327 rx_writel(dev
, MUnit
.IMRx
[0], paddr
);
328 rx_sync_cmd(dev
, COMMAND_POST_RESULTS
, baddr
, 0, 0, 0, 0, 0,
329 NULL
, NULL
, NULL
, NULL
, NULL
);
330 pci_free_consistent(dev
->pdev
, sizeof(struct POSTSTATUS
),
332 if ((buffer
[0] == '0') && (buffer
[1] == 'x')) {
333 ret
= (buffer
[2] <= '9') ? (buffer
[2] - '0') : (buffer
[2] - 'A' + 10);
335 ret
+= (buffer
[3] <= '9') ? (buffer
[3] - '0') : (buffer
[3] - 'A' + 10);
337 pci_free_consistent(dev
->pdev
, 512, buffer
, baddr
);
341 * Wait for the adapter to be up and running.
343 if (!(status
& KERNEL_UP_AND_RUNNING
))
352 * aac_rx_init - initialize an i960 based AAC card
353 * @dev: device to configure
355 * Allocate and set up resources for the i960 based AAC variants. The
356 * device_interface in the commregion will be allocated and linked
357 * to the comm region.
360 int aac_rx_init(struct aac_dev
*dev
)
363 unsigned long status
;
371 * Map in the registers from the adapter.
373 if((dev
->regs
.rx
= ioremap((unsigned long)dev
->scsi_host_ptr
->base
, 8192))==NULL
)
375 printk(KERN_WARNING
"aacraid: unable to map i960.\n" );
379 * Check to see if the board failed any self tests.
381 if (rx_readl(dev
, MUnit
.OMRx
[0]) & SELF_TEST_FAILED
) {
382 printk(KERN_ERR
"%s%d: adapter self-test failed.\n", dev
->name
, instance
);
386 * Check to see if the board panic'd while booting.
388 if (rx_readl(dev
, MUnit
.OMRx
[0]) & KERNEL_PANIC
) {
389 printk(KERN_ERR
"%s%d: adapter kernel panic.\n", dev
->name
, instance
);
393 * Check to see if the monitor panic'd while booting.
395 if (rx_readl(dev
, MUnit
.OMRx
[0]) & MONITOR_PANIC
) {
396 printk(KERN_ERR
"%s%d: adapter monitor panic.\n", dev
->name
, instance
);
401 * Wait for the adapter to be up and running. Wait up to 3 minutes
403 while ((!(rx_readl(dev
, IndexRegs
.Mailbox
[7]) & KERNEL_UP_AND_RUNNING
))
404 || (!(rx_readl(dev
, MUnit
.OMRx
[0]) & KERNEL_UP_AND_RUNNING
)))
406 if(time_after(jiffies
, start
+180*HZ
))
408 status
= rx_readl(dev
, IndexRegs
.Mailbox
[7]);
409 printk(KERN_ERR
"%s%d: adapter kernel failed to start, init status = %lx.\n",
410 dev
->name
, instance
, status
);
413 set_current_state(TASK_UNINTERRUPTIBLE
);
416 if (request_irq(dev
->scsi_host_ptr
->irq
, aac_rx_intr
, SA_SHIRQ
|SA_INTERRUPT
, "aacraid", (void *)dev
)<0)
418 printk(KERN_ERR
"%s%d: Interrupt unavailable.\n", name
, instance
);
422 * Fill in the function dispatch table.
424 dev
->a_ops
.adapter_interrupt
= aac_rx_interrupt_adapter
;
425 dev
->a_ops
.adapter_disable_int
= aac_rx_disable_interrupt
;
426 dev
->a_ops
.adapter_notify
= aac_rx_notify_adapter
;
427 dev
->a_ops
.adapter_sync_cmd
= rx_sync_cmd
;
428 dev
->a_ops
.adapter_check_health
= aac_rx_check_health
;
431 * First clear out all interrupts. Then enable the one's that we
434 rx_writeb(dev
, MUnit
.OIMR
, 0xff);
435 rx_writel(dev
, MUnit
.ODR
, 0xffffffff);
436 rx_writeb(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xfb);
438 if (aac_init_adapter(dev
) == NULL
)
441 * Start any kernel threads needed
443 dev
->thread_pid
= kernel_thread((int (*)(void *))aac_command_thread
, dev
, 0);
444 if(dev
->thread_pid
< 0)
446 printk(KERN_ERR
"aacraid: Unable to create rx thread.\n");
450 * Tell the adapter that all is configured, and it can start
453 aac_rx_start_adapter(dev
);
460 rx_writeb(dev
, MUnit
.OIMR
, dev
->OIMR
= 0xff);
461 free_irq(dev
->scsi_host_ptr
->irq
, (void *)dev
);
464 iounmap(dev
->regs
.rx
);