2 * linux/drivers/acorn/scsi/fas216.c
4 * Copyright (C) 1997-2003 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Based on information in qlogicfas.c by Tom Zerucha, Michael Griffith, and
11 * other sources, including:
12 * the AMD Am53CF94 data sheet
13 * the AMD Am53C94 data sheet
15 * This is a generic driver. To use it, have a look at cumana_2.c. You
16 * should define your own structure that overlays FAS216_Info, eg:
17 * struct my_host_data {
19 * ... my host specific data ...
23 * 30-08-1997 RMK Created
24 * 14-09-1997 RMK Started disconnect support
25 * 08-02-1998 RMK Corrected real DMA support
26 * 15-02-1998 RMK Started sync xfer support
27 * 06-04-1998 RMK Tightened conditions for printing incomplete
29 * 02-05-1998 RMK Added extra checks in fas216_reset
30 * 24-05-1998 RMK Fixed synchronous transfers with period >= 200ns
31 * 27-06-1998 RMK Changed asm/delay.h to linux/delay.h
32 * 26-08-1998 RMK Improved message support wrt MESSAGE_REJECT
33 * 02-04-2000 RMK Converted to use the new error handling, and
34 * automatically request sense data upon check
35 * condition status from targets.
37 #include <linux/module.h>
38 #include <linux/blkdev.h>
39 #include <linux/kernel.h>
40 #include <linux/string.h>
41 #include <linux/ioport.h>
42 #include <linux/proc_fs.h>
43 #include <linux/delay.h>
44 #include <linux/bitops.h>
45 #include <linux/init.h>
46 #include <linux/interrupt.h>
51 #include <asm/ecard.h>
54 #include <scsi/scsi_dbg.h>
55 #include <scsi/scsi_host.h>
59 /* NOTE: SCSI2 Synchronous transfers *require* DMA according to
60 * the data sheet. This restriction is crazy, especially when
61 * you only want to send 16 bytes! What were the guys who
62 * designed this chip on at that time? Did they read the SCSI2
63 * spec at all? The following sections are taken from the SCSI2
64 * standard (s2r10) concerning this:
66 * > IMPLEMENTORS NOTES:
67 * > (1) Re-negotiation at every selection is not recommended, since a
68 * > significant performance impact is likely.
70 * > The implied synchronous agreement shall remain in effect until a BUS DEVICE
71 * > RESET message is received, until a hard reset condition occurs, or until one
72 * > of the two SCSI devices elects to modify the agreement. The default data
73 * > transfer mode is asynchronous data transfer mode. The default data transfer
74 * > mode is entered at power on, after a BUS DEVICE RESET message, or after a hard
77 * In total, this means that once you have elected to use synchronous
78 * transfers, you must always use DMA.
80 * I was thinking that this was a good chip until I found this restriction ;(
88 #undef CHECK_STRUCTURE
90 #define LOG_CONNECT (1 << 0)
91 #define LOG_BUSSERVICE (1 << 1)
92 #define LOG_FUNCTIONDONE (1 << 2)
93 #define LOG_MESSAGES (1 << 3)
94 #define LOG_BUFFER (1 << 4)
95 #define LOG_ERROR (1 << 8)
97 static int level_mask
= LOG_ERROR
;
99 module_param(level_mask
, int, 0644);
102 static int __init
fas216_log_setup(char *str
)
108 while ((s
= strsep(&str
, ",")) != NULL
) {
111 if (strcmp(s
, "all") == 0)
115 if (strncmp(s
, "bus", 3) == 0)
116 level_mask
|= LOG_BUSSERVICE
;
117 if (strncmp(s
, "buf", 3) == 0)
118 level_mask
|= LOG_BUFFER
;
121 level_mask
|= LOG_CONNECT
;
124 level_mask
|= LOG_ERROR
;
127 level_mask
|= LOG_MESSAGES
;
130 if (strcmp(s
, "none") == 0)
134 level_mask
|= LOG_FUNCTIONDONE
;
141 __setup("fas216_logging=", fas216_log_setup
);
144 static inline unsigned char fas216_readb(FAS216_Info
*info
, unsigned int reg
)
146 unsigned int off
= reg
<< info
->scsi
.io_shift
;
147 return readb(info
->scsi
.io_base
+ off
);
150 static inline void fas216_writeb(FAS216_Info
*info
, unsigned int reg
, unsigned int val
)
152 unsigned int off
= reg
<< info
->scsi
.io_shift
;
153 writeb(val
, info
->scsi
.io_base
+ off
);
156 static void fas216_dumpstate(FAS216_Info
*info
)
158 unsigned char is
, stat
, inst
;
160 is
= fas216_readb(info
, REG_IS
);
161 stat
= fas216_readb(info
, REG_STAT
);
162 inst
= fas216_readb(info
, REG_INST
);
164 printk("FAS216: CTCL=%02X CTCM=%02X CMD=%02X STAT=%02X"
165 " INST=%02X IS=%02X CFIS=%02X",
166 fas216_readb(info
, REG_CTCL
),
167 fas216_readb(info
, REG_CTCM
),
168 fas216_readb(info
, REG_CMD
), stat
, inst
, is
,
169 fas216_readb(info
, REG_CFIS
));
170 printk(" CNTL1=%02X CNTL2=%02X CNTL3=%02X CTCH=%02X\n",
171 fas216_readb(info
, REG_CNTL1
),
172 fas216_readb(info
, REG_CNTL2
),
173 fas216_readb(info
, REG_CNTL3
),
174 fas216_readb(info
, REG_CTCH
));
177 static void print_SCp(struct scsi_pointer
*SCp
, const char *prefix
, const char *suffix
)
179 printk("%sptr %p this_residual 0x%x buffer %p buffers_residual 0x%x%s",
180 prefix
, SCp
->ptr
, SCp
->this_residual
, SCp
->buffer
,
181 SCp
->buffers_residual
, suffix
);
184 #ifdef CHECK_STRUCTURE
185 static void fas216_dumpinfo(FAS216_Info
*info
)
193 printk("FAS216_Info=\n");
194 printk(" { magic_start=%lX host=%p SCpnt=%p origSCpnt=%p\n",
195 info
->magic_start
, info
->host
, info
->SCpnt
,
197 printk(" scsi={ io_shift=%X irq=%X cfg={ %X %X %X %X }\n",
198 info
->scsi
.io_shift
, info
->scsi
.irq
,
199 info
->scsi
.cfg
[0], info
->scsi
.cfg
[1], info
->scsi
.cfg
[2],
201 printk(" type=%p phase=%X\n",
202 info
->scsi
.type
, info
->scsi
.phase
);
203 print_SCp(&info
->scsi
.SCp
, " SCp={ ", " }\n");
204 printk(" msgs async_stp=%X disconnectable=%d aborting=%d }\n",
205 info
->scsi
.async_stp
,
206 info
->scsi
.disconnectable
, info
->scsi
.aborting
);
207 printk(" stats={ queues=%X removes=%X fins=%X reads=%X writes=%X miscs=%X\n"
208 " disconnects=%X aborts=%X bus_resets=%X host_resets=%X}\n",
209 info
->stats
.queues
, info
->stats
.removes
, info
->stats
.fins
,
210 info
->stats
.reads
, info
->stats
.writes
, info
->stats
.miscs
,
211 info
->stats
.disconnects
, info
->stats
.aborts
, info
->stats
.bus_resets
,
212 info
->stats
.host_resets
);
213 printk(" ifcfg={ clockrate=%X select_timeout=%X asyncperiod=%X sync_max_depth=%X }\n",
214 info
->ifcfg
.clockrate
, info
->ifcfg
.select_timeout
,
215 info
->ifcfg
.asyncperiod
, info
->ifcfg
.sync_max_depth
);
216 for (i
= 0; i
< 8; i
++) {
217 printk(" busyluns[%d]=%08lx dev[%d]={ disconnect_ok=%d stp=%X sof=%X sync_state=%X }\n",
218 i
, info
->busyluns
[i
], i
,
219 info
->device
[i
].disconnect_ok
, info
->device
[i
].stp
,
220 info
->device
[i
].sof
, info
->device
[i
].sync_state
);
222 printk(" dma={ transfer_type=%X setup=%p pseudo=%p stop=%p }\n",
223 info
->dma
.transfer_type
, info
->dma
.setup
,
224 info
->dma
.pseudo
, info
->dma
.stop
);
225 printk(" internal_done=%X magic_end=%lX }\n",
226 info
->internal_done
, info
->magic_end
);
229 static void __fas216_checkmagic(FAS216_Info
*info
, const char *func
)
232 if (info
->magic_start
!= MAGIC
) {
233 printk(KERN_CRIT
"FAS216 Error: magic at start corrupted\n");
236 if (info
->magic_end
!= MAGIC
) {
237 printk(KERN_CRIT
"FAS216 Error: magic at end corrupted\n");
241 fas216_dumpinfo(info
);
242 panic("scsi memory space corrupted in %s", func
);
245 #define fas216_checkmagic(info) __fas216_checkmagic((info), __func__)
247 #define fas216_checkmagic(info)
250 static const char *fas216_bus_phase(int stat
)
252 static const char *phases
[] = {
253 "DATA OUT", "DATA IN",
255 "MISC OUT", "MISC IN",
256 "MESG OUT", "MESG IN"
259 return phases
[stat
& STAT_BUSMASK
];
262 static const char *fas216_drv_phase(FAS216_Info
*info
)
264 static const char *phases
[] = {
265 [PHASE_IDLE
] = "idle",
266 [PHASE_SELECTION
] = "selection",
267 [PHASE_COMMAND
] = "command",
268 [PHASE_DATAOUT
] = "data out",
269 [PHASE_DATAIN
] = "data in",
270 [PHASE_MSGIN
] = "message in",
271 [PHASE_MSGIN_DISCONNECT
]= "disconnect",
272 [PHASE_MSGOUT_EXPECT
] = "expect message out",
273 [PHASE_MSGOUT
] = "message out",
274 [PHASE_STATUS
] = "status",
275 [PHASE_DONE
] = "done",
278 if (info
->scsi
.phase
< ARRAY_SIZE(phases
) &&
279 phases
[info
->scsi
.phase
])
280 return phases
[info
->scsi
.phase
];
284 static char fas216_target(FAS216_Info
*info
)
287 return '0' + info
->SCpnt
->device
->id
;
293 fas216_do_log(FAS216_Info
*info
, char target
, char *fmt
, va_list ap
)
295 static char buf
[1024];
297 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
298 printk("scsi%d.%c: %s", info
->host
->host_no
, target
, buf
);
301 static void fas216_log_command(FAS216_Info
*info
, int level
,
302 struct scsi_cmnd
*SCpnt
, char *fmt
, ...)
306 if (level
!= 0 && !(level
& level_mask
))
310 fas216_do_log(info
, '0' + SCpnt
->device
->id
, fmt
, args
);
313 scsi_print_command(SCpnt
);
317 fas216_log_target(FAS216_Info
*info
, int level
, int target
, char *fmt
, ...)
321 if (level
!= 0 && !(level
& level_mask
))
330 fas216_do_log(info
, target
, fmt
, args
);
336 static void fas216_log(FAS216_Info
*info
, int level
, char *fmt
, ...)
340 if (level
!= 0 && !(level
& level_mask
))
344 fas216_do_log(info
, fas216_target(info
), fmt
, args
);
352 static struct { int stat
, ssr
, isr
, ph
; } ph_list
[PH_SIZE
];
355 static void add_debug_list(int stat
, int ssr
, int isr
, int ph
)
357 ph_list
[ph_ptr
].stat
= stat
;
358 ph_list
[ph_ptr
].ssr
= ssr
;
359 ph_list
[ph_ptr
].isr
= isr
;
360 ph_list
[ph_ptr
].ph
= ph
;
362 ph_ptr
= (ph_ptr
+ 1) & (PH_SIZE
-1);
365 static struct { int command
; void *from
; } cmd_list
[8];
368 static void fas216_cmd(FAS216_Info
*info
, unsigned int command
)
370 cmd_list
[cmd_ptr
].command
= command
;
371 cmd_list
[cmd_ptr
].from
= __builtin_return_address(0);
373 cmd_ptr
= (cmd_ptr
+ 1) & 7;
375 fas216_writeb(info
, REG_CMD
, command
);
378 static void print_debug_list(void)
384 printk(KERN_ERR
"SCSI IRQ trail\n");
386 printk(" %02x:%02x:%02x:%1x",
387 ph_list
[i
].stat
, ph_list
[i
].ssr
,
388 ph_list
[i
].isr
, ph_list
[i
].ph
);
389 i
= (i
+ 1) & (PH_SIZE
- 1);
390 if (((i
^ ph_ptr
) & 7) == 0)
392 } while (i
!= ph_ptr
);
393 if ((i
^ ph_ptr
) & 7)
397 printk(KERN_ERR
"FAS216 commands: ");
399 printk("%02x:%p ", cmd_list
[i
].command
, cmd_list
[i
].from
);
401 } while (i
!= cmd_ptr
);
405 static void fas216_done(FAS216_Info
*info
, unsigned int result
);
408 * fas216_get_last_msg - retrive last message from the list
409 * @info: interface to search
410 * @pos: current fifo position
412 * Retrieve a last message from the list, using position in fifo.
414 static inline unsigned short
415 fas216_get_last_msg(FAS216_Info
*info
, int pos
)
417 unsigned short packed_msg
= NOP
;
421 while ((msg
= msgqueue_getmsg(&info
->scsi
.msgs
, msgnr
++)) != NULL
) {
422 if (pos
>= msg
->fifo
)
427 if (msg
->msg
[0] == EXTENDED_MESSAGE
)
428 packed_msg
= EXTENDED_MESSAGE
| msg
->msg
[2] << 8;
430 packed_msg
= msg
->msg
[0];
433 fas216_log(info
, LOG_MESSAGES
,
434 "Message: %04x found at position %02x\n", packed_msg
, pos
);
440 * fas216_syncperiod - calculate STP register value
441 * @info: state structure for interface connected to device
442 * @ns: period in ns (between subsequent bytes)
444 * Calculate value to be loaded into the STP register for a given period
445 * in ns. Returns a value suitable for REG_STP.
447 static int fas216_syncperiod(FAS216_Info
*info
, int ns
)
449 int value
= (info
->ifcfg
.clockrate
* ns
) / 1000;
451 fas216_checkmagic(info
);
462 * fas216_set_sync - setup FAS216 chip for specified transfer period.
463 * @info: state structure for interface connected to device
466 * Correctly setup FAS216 chip for specified transfer period.
467 * Notes : we need to switch the chip out of FASTSCSI mode if we have
468 * a transfer period >= 200ns - otherwise the chip will violate
471 static void fas216_set_sync(FAS216_Info
*info
, int target
)
475 fas216_writeb(info
, REG_SOF
, info
->device
[target
].sof
);
476 fas216_writeb(info
, REG_STP
, info
->device
[target
].stp
);
478 cntl3
= info
->scsi
.cfg
[2];
479 if (info
->device
[target
].period
>= (200 / 4))
480 cntl3
= cntl3
& ~CNTL3_FASTSCSI
;
482 fas216_writeb(info
, REG_CNTL3
, cntl3
);
485 /* Synchronous transfer support
487 * Note: The SCSI II r10 spec says (5.6.12):
489 * (2) Due to historical problems with early host adapters that could
490 * not accept an SDTR message, some targets may not initiate synchronous
491 * negotiation after a power cycle as required by this standard. Host
492 * adapters that support synchronous mode may avoid the ensuing failure
493 * modes when the target is independently power cycled by initiating a
494 * synchronous negotiation on each REQUEST SENSE and INQUIRY command.
495 * This approach increases the SCSI bus overhead and is not recommended
496 * for new implementations. The correct method is to respond to an
497 * SDTR message with a MESSAGE REJECT message if the either the
498 * initiator or target devices does not support synchronous transfers
499 * or does not want to negotiate for synchronous transfers at the time.
500 * Using the correct method assures compatibility with wide data
501 * transfers and future enhancements.
503 * We will always initiate a synchronous transfer negotiation request on
504 * every INQUIRY or REQUEST SENSE message, unless the target itself has
505 * at some point performed a synchronous transfer negotiation request, or
506 * we have synchronous transfers disabled for this device.
510 * fas216_handlesync - Handle a synchronous transfer message
511 * @info: state structure for interface
512 * @msg: message from target
514 * Handle a synchronous transfer message from the target
516 static void fas216_handlesync(FAS216_Info
*info
, char *msg
)
518 struct fas216_device
*dev
= &info
->device
[info
->SCpnt
->device
->id
];
519 enum { sync
, async
, none
, reject
} res
= none
;
524 /* Synchronous transfer request failed.
527 * SCSI devices that are capable of synchronous
528 * data transfers shall not respond to an SDTR
529 * message with a MESSAGE REJECT message.
531 * Hence, if we get this condition, we disable
532 * negotiation for this device.
534 if (dev
->sync_state
== neg_inprogress
) {
535 dev
->sync_state
= neg_invalid
;
540 case EXTENDED_MESSAGE
:
541 switch (dev
->sync_state
) {
542 /* We don't accept synchronous transfer requests.
543 * Respond with a MESSAGE_REJECT to prevent a
544 * synchronous transfer agreement from being reached.
550 /* We were not negotiating a synchronous transfer,
551 * but the device sent us a negotiation request.
552 * Honour the request by sending back a SDTR
553 * message containing our capability, limited by
554 * the targets capability.
557 fas216_cmd(info
, CMD_SETATN
);
558 if (msg
[4] > info
->ifcfg
.sync_max_depth
)
559 msg
[4] = info
->ifcfg
.sync_max_depth
;
560 if (msg
[3] < 1000 / info
->ifcfg
.clockrate
)
561 msg
[3] = 1000 / info
->ifcfg
.clockrate
;
563 msgqueue_flush(&info
->scsi
.msgs
);
564 msgqueue_addmsg(&info
->scsi
.msgs
, 5,
565 EXTENDED_MESSAGE
, 3, EXTENDED_SDTR
,
567 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
569 /* This is wrong. The agreement is not in effect
570 * until this message is accepted by the device
572 dev
->sync_state
= neg_targcomplete
;
576 /* We initiated the synchronous transfer negotiation,
577 * and have successfully received a response from the
578 * target. The synchronous transfer agreement has been
579 * reached. Note: if the values returned are out of our
580 * bounds, we must reject the message.
584 if (msg
[4] <= info
->ifcfg
.sync_max_depth
&&
585 msg
[3] >= 1000 / info
->ifcfg
.clockrate
) {
586 dev
->sync_state
= neg_complete
;
598 dev
->period
= msg
[3];
600 dev
->stp
= fas216_syncperiod(info
, msg
[3] * 4);
601 fas216_set_sync(info
, info
->SCpnt
->device
->id
);
605 fas216_cmd(info
, CMD_SETATN
);
606 msgqueue_flush(&info
->scsi
.msgs
);
607 msgqueue_addmsg(&info
->scsi
.msgs
, 1, MESSAGE_REJECT
);
608 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
611 dev
->period
= info
->ifcfg
.asyncperiod
/ 4;
613 dev
->stp
= info
->scsi
.async_stp
;
614 fas216_set_sync(info
, info
->SCpnt
->device
->id
);
623 * fas216_updateptrs - update data pointers after transfer suspended/paused
624 * @info: interface's local pointer to update
625 * @bytes_transferred: number of bytes transferred
627 * Update data pointers after transfer suspended/paused
629 static void fas216_updateptrs(FAS216_Info
*info
, int bytes_transferred
)
631 struct scsi_pointer
*SCp
= &info
->scsi
.SCp
;
633 fas216_checkmagic(info
);
635 BUG_ON(bytes_transferred
< 0);
637 SCp
->phase
-= bytes_transferred
;
639 while (bytes_transferred
!= 0) {
640 if (SCp
->this_residual
> bytes_transferred
)
643 * We have used up this buffer. Move on to the
646 bytes_transferred
-= SCp
->this_residual
;
647 if (!next_SCp(SCp
) && bytes_transferred
) {
648 printk(KERN_WARNING
"scsi%d.%c: out of buffers\n",
649 info
->host
->host_no
, '0' + info
->SCpnt
->device
->id
);
654 SCp
->this_residual
-= bytes_transferred
;
655 if (SCp
->this_residual
)
656 SCp
->ptr
+= bytes_transferred
;
662 * fas216_pio - transfer data off of/on to card using programmed IO
663 * @info: interface to transfer data to/from
664 * @direction: direction to transfer data (DMA_OUT/DMA_IN)
666 * Transfer data off of/on to card using programmed IO.
667 * Notes: this is incredibly slow.
669 static void fas216_pio(FAS216_Info
*info
, fasdmadir_t direction
)
671 struct scsi_pointer
*SCp
= &info
->scsi
.SCp
;
673 fas216_checkmagic(info
);
675 if (direction
== DMA_OUT
)
676 fas216_writeb(info
, REG_FF
, get_next_SCp_byte(SCp
));
678 put_next_SCp_byte(SCp
, fas216_readb(info
, REG_FF
));
680 if (SCp
->this_residual
== 0)
684 static void fas216_set_stc(FAS216_Info
*info
, unsigned int length
)
686 fas216_writeb(info
, REG_STCL
, length
);
687 fas216_writeb(info
, REG_STCM
, length
>> 8);
688 fas216_writeb(info
, REG_STCH
, length
>> 16);
691 static unsigned int fas216_get_ctc(FAS216_Info
*info
)
693 return fas216_readb(info
, REG_CTCL
) +
694 (fas216_readb(info
, REG_CTCM
) << 8) +
695 (fas216_readb(info
, REG_CTCH
) << 16);
699 * fas216_cleanuptransfer - clean up after a transfer has completed.
700 * @info: interface to clean up
702 * Update the data pointers according to the number of bytes transferred
705 static void fas216_cleanuptransfer(FAS216_Info
*info
)
707 unsigned long total
, residual
, fifo
;
708 fasdmatype_t dmatype
= info
->dma
.transfer_type
;
710 info
->dma
.transfer_type
= fasdma_none
;
713 * PIO transfers do not need to be cleaned up.
715 if (dmatype
== fasdma_pio
|| dmatype
== fasdma_none
)
718 if (dmatype
== fasdma_real_all
)
719 total
= info
->scsi
.SCp
.phase
;
721 total
= info
->scsi
.SCp
.this_residual
;
723 residual
= fas216_get_ctc(info
);
725 fifo
= fas216_readb(info
, REG_CFIS
) & CFIS_CF
;
727 fas216_log(info
, LOG_BUFFER
, "cleaning up from previous "
728 "transfer: length 0x%06x, residual 0x%x, fifo %d",
729 total
, residual
, fifo
);
732 * If we were performing Data-Out, the transfer counter
733 * counts down each time a byte is transferred by the
734 * host to the FIFO. This means we must include the
735 * bytes left in the FIFO from the transfer counter.
737 if (info
->scsi
.phase
== PHASE_DATAOUT
)
740 fas216_updateptrs(info
, total
- residual
);
744 * fas216_transfer - Perform a DMA/PIO transfer off of/on to card
745 * @info: interface from which device disconnected from
747 * Start a DMA/PIO transfer off of/on to card
749 static void fas216_transfer(FAS216_Info
*info
)
751 fasdmadir_t direction
;
752 fasdmatype_t dmatype
;
754 fas216_log(info
, LOG_BUFFER
,
755 "starttransfer: buffer %p length 0x%06x reqlen 0x%06x",
756 info
->scsi
.SCp
.ptr
, info
->scsi
.SCp
.this_residual
,
757 info
->scsi
.SCp
.phase
);
759 if (!info
->scsi
.SCp
.ptr
) {
760 fas216_log(info
, LOG_ERROR
, "null buffer passed to "
761 "fas216_starttransfer");
762 print_SCp(&info
->scsi
.SCp
, "SCp: ", "\n");
763 print_SCp(&info
->SCpnt
->SCp
, "Cmnd SCp: ", "\n");
768 * If we have a synchronous transfer agreement in effect, we must
769 * use DMA mode. If we are using asynchronous transfers, we may
770 * use DMA mode or PIO mode.
772 if (info
->device
[info
->SCpnt
->device
->id
].sof
)
773 dmatype
= fasdma_real_all
;
775 dmatype
= fasdma_pio
;
777 if (info
->scsi
.phase
== PHASE_DATAOUT
)
783 dmatype
= info
->dma
.setup(info
->host
, &info
->scsi
.SCp
,
785 info
->dma
.transfer_type
= dmatype
;
787 if (dmatype
== fasdma_real_all
)
788 fas216_set_stc(info
, info
->scsi
.SCp
.phase
);
790 fas216_set_stc(info
, info
->scsi
.SCp
.this_residual
);
794 fas216_log(info
, LOG_BUFFER
, "PIO transfer");
795 fas216_writeb(info
, REG_SOF
, 0);
796 fas216_writeb(info
, REG_STP
, info
->scsi
.async_stp
);
797 fas216_cmd(info
, CMD_TRANSFERINFO
);
798 fas216_pio(info
, direction
);
802 fas216_log(info
, LOG_BUFFER
, "pseudo transfer");
803 fas216_cmd(info
, CMD_TRANSFERINFO
| CMD_WITHDMA
);
804 info
->dma
.pseudo(info
->host
, &info
->scsi
.SCp
,
805 direction
, info
->SCpnt
->transfersize
);
808 case fasdma_real_block
:
809 fas216_log(info
, LOG_BUFFER
, "block dma transfer");
810 fas216_cmd(info
, CMD_TRANSFERINFO
| CMD_WITHDMA
);
813 case fasdma_real_all
:
814 fas216_log(info
, LOG_BUFFER
, "total dma transfer");
815 fas216_cmd(info
, CMD_TRANSFERINFO
| CMD_WITHDMA
);
819 fas216_log(info
, LOG_BUFFER
| LOG_ERROR
,
820 "invalid FAS216 DMA type");
826 * fas216_stoptransfer - Stop a DMA transfer onto / off of the card
827 * @info: interface from which device disconnected from
829 * Called when we switch away from DATA IN or DATA OUT phases.
831 static void fas216_stoptransfer(FAS216_Info
*info
)
833 fas216_checkmagic(info
);
835 if (info
->dma
.transfer_type
== fasdma_real_all
||
836 info
->dma
.transfer_type
== fasdma_real_block
)
837 info
->dma
.stop(info
->host
, &info
->scsi
.SCp
);
839 fas216_cleanuptransfer(info
);
841 if (info
->scsi
.phase
== PHASE_DATAIN
) {
845 * If we were performing Data-In, then the FIFO counter
846 * contains the number of bytes not transferred via DMA
847 * from the on-board FIFO. Read them manually.
849 fifo
= fas216_readb(info
, REG_CFIS
) & CFIS_CF
;
850 while (fifo
&& info
->scsi
.SCp
.ptr
) {
851 *info
->scsi
.SCp
.ptr
= fas216_readb(info
, REG_FF
);
852 fas216_updateptrs(info
, 1);
857 * After a Data-Out phase, there may be unsent
858 * bytes left in the FIFO. Flush them out.
860 fas216_cmd(info
, CMD_FLUSHFIFO
);
864 static void fas216_aborttransfer(FAS216_Info
*info
)
866 fas216_checkmagic(info
);
868 if (info
->dma
.transfer_type
== fasdma_real_all
||
869 info
->dma
.transfer_type
== fasdma_real_block
)
870 info
->dma
.stop(info
->host
, &info
->scsi
.SCp
);
872 info
->dma
.transfer_type
= fasdma_none
;
873 fas216_cmd(info
, CMD_FLUSHFIFO
);
876 static void fas216_kick(FAS216_Info
*info
);
879 * fas216_disconnected_intr - handle device disconnection
880 * @info: interface from which device disconnected from
882 * Handle device disconnection
884 static void fas216_disconnect_intr(FAS216_Info
*info
)
888 fas216_checkmagic(info
);
890 fas216_log(info
, LOG_CONNECT
, "disconnect phase=%02x",
893 msgqueue_flush(&info
->scsi
.msgs
);
895 switch (info
->scsi
.phase
) {
896 case PHASE_SELECTION
: /* while selecting - no target */
898 fas216_done(info
, DID_NO_CONNECT
);
901 case PHASE_MSGIN_DISCONNECT
: /* message in - disconnecting */
902 info
->scsi
.disconnectable
= 1;
903 info
->scsi
.phase
= PHASE_IDLE
;
904 info
->stats
.disconnects
+= 1;
905 spin_lock_irqsave(&info
->host_lock
, flags
);
906 if (info
->scsi
.phase
== PHASE_IDLE
)
908 spin_unlock_irqrestore(&info
->host_lock
, flags
);
911 case PHASE_DONE
: /* at end of command - complete */
912 fas216_done(info
, DID_OK
);
915 case PHASE_MSGOUT
: /* message out - possible ABORT message */
916 if (fas216_get_last_msg(info
, info
->scsi
.msgin_fifo
) == ABORT
) {
917 info
->scsi
.aborting
= 0;
918 fas216_done(info
, DID_ABORT
);
923 printk(KERN_ERR
"scsi%d.%c: unexpected disconnect in phase %s\n",
924 info
->host
->host_no
, fas216_target(info
), fas216_drv_phase(info
));
926 fas216_stoptransfer(info
);
927 fas216_done(info
, DID_ERROR
);
933 * fas216_reselected_intr - start reconnection of a device
934 * @info: interface which was reselected
936 * Start reconnection of a device
939 fas216_reselected_intr(FAS216_Info
*info
)
941 unsigned int cfis
, i
;
942 unsigned char msg
[4];
943 unsigned char target
, lun
, tag
;
945 fas216_checkmagic(info
);
947 WARN_ON(info
->scsi
.phase
== PHASE_SELECTION
||
948 info
->scsi
.phase
== PHASE_SELSTEPS
);
950 cfis
= fas216_readb(info
, REG_CFIS
);
952 fas216_log(info
, LOG_CONNECT
, "reconnect phase=%02x cfis=%02x",
953 info
->scsi
.phase
, cfis
);
957 if (cfis
< 2 || cfis
> 4) {
958 printk(KERN_ERR
"scsi%d.H: incorrect number of bytes after reselect\n",
959 info
->host
->host_no
);
963 for (i
= 0; i
< cfis
; i
++)
964 msg
[i
] = fas216_readb(info
, REG_FF
);
966 if (!(msg
[0] & (1 << info
->host
->this_id
)) ||
968 goto initiator_error
;
970 target
= msg
[0] & ~(1 << info
->host
->this_id
);
971 target
= ffs(target
) - 1;
976 if (msg
[2] != SIMPLE_QUEUE_TAG
)
977 goto initiator_error
;
982 /* set up for synchronous transfers */
983 fas216_writeb(info
, REG_SDID
, target
);
984 fas216_set_sync(info
, target
);
985 msgqueue_flush(&info
->scsi
.msgs
);
987 fas216_log(info
, LOG_CONNECT
, "Reconnected: target %1x lun %1x tag %02x",
990 if (info
->scsi
.disconnectable
&& info
->SCpnt
) {
991 info
->scsi
.disconnectable
= 0;
992 if (info
->SCpnt
->device
->id
== target
&&
993 info
->SCpnt
->device
->lun
== lun
&&
994 info
->SCpnt
->tag
== tag
) {
995 fas216_log(info
, LOG_CONNECT
, "reconnected previously executing command");
997 queue_add_cmd_tail(&info
->queues
.disconnected
, info
->SCpnt
);
998 fas216_log(info
, LOG_CONNECT
, "had to move command to disconnected queue");
1003 info
->SCpnt
= queue_remove_tgtluntag(&info
->queues
.disconnected
,
1005 fas216_log(info
, LOG_CONNECT
, "had to get command");
1010 * Restore data pointer from SAVED data pointer
1012 info
->scsi
.SCp
= info
->SCpnt
->SCp
;
1014 fas216_log(info
, LOG_CONNECT
, "data pointers: [%p, %X]",
1015 info
->scsi
.SCp
.ptr
, info
->scsi
.SCp
.this_residual
);
1016 info
->scsi
.phase
= PHASE_MSGIN
;
1019 * Our command structure not found - abort the
1020 * command on the target. Since we have no
1021 * record of this command, we can't send
1022 * an INITIATOR DETECTED ERROR message.
1024 fas216_cmd(info
, CMD_SETATN
);
1028 msgqueue_addmsg(&info
->scsi
.msgs
, 2, ABORT_TAG
, tag
);
1031 msgqueue_addmsg(&info
->scsi
.msgs
, 1, ABORT
);
1032 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
1033 info
->scsi
.aborting
= 1;
1036 fas216_cmd(info
, CMD_MSGACCEPTED
);
1040 printk(KERN_ERR
"scsi%d.H: error during reselection: bytes",
1041 info
->host
->host_no
);
1042 for (i
= 0; i
< cfis
; i
++)
1043 printk(" %02x", msg
[i
]);
1046 fas216_cmd(info
, CMD_SETATN
);
1047 msgqueue_flush(&info
->scsi
.msgs
);
1048 msgqueue_addmsg(&info
->scsi
.msgs
, 1, INITIATOR_ERROR
);
1049 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
1050 fas216_cmd(info
, CMD_MSGACCEPTED
);
1053 static void fas216_parse_message(FAS216_Info
*info
, unsigned char *message
, int msglen
)
1057 switch (message
[0]) {
1058 case COMMAND_COMPLETE
:
1062 printk(KERN_ERR
"scsi%d.%c: command complete with no "
1063 "status in MESSAGE_IN?\n",
1064 info
->host
->host_no
, fas216_target(info
));
1072 * Save current data pointer to SAVED data pointer
1073 * SCSI II standard says that we must not acknowledge
1074 * this until we have really saved pointers.
1075 * NOTE: we DO NOT save the command nor status pointers
1076 * as required by the SCSI II standard. These always
1077 * point to the start of their respective areas.
1079 info
->SCpnt
->SCp
= info
->scsi
.SCp
;
1080 info
->SCpnt
->SCp
.sent_command
= 0;
1081 fas216_log(info
, LOG_CONNECT
| LOG_MESSAGES
| LOG_BUFFER
,
1082 "save data pointers: [%p, %X]",
1083 info
->scsi
.SCp
.ptr
, info
->scsi
.SCp
.this_residual
);
1086 case RESTORE_POINTERS
:
1091 * Restore current data pointer from SAVED data pointer
1093 info
->scsi
.SCp
= info
->SCpnt
->SCp
;
1094 fas216_log(info
, LOG_CONNECT
| LOG_MESSAGES
| LOG_BUFFER
,
1095 "restore data pointers: [%p, 0x%x]",
1096 info
->scsi
.SCp
.ptr
, info
->scsi
.SCp
.this_residual
);
1103 info
->scsi
.phase
= PHASE_MSGIN_DISCONNECT
;
1106 case MESSAGE_REJECT
:
1110 switch (fas216_get_last_msg(info
, info
->scsi
.msgin_fifo
)) {
1111 case EXTENDED_MESSAGE
| EXTENDED_SDTR
<< 8:
1112 fas216_handlesync(info
, message
);
1116 fas216_log(info
, 0, "reject, last message 0x%04x",
1117 fas216_get_last_msg(info
, info
->scsi
.msgin_fifo
));
1124 case EXTENDED_MESSAGE
:
1128 switch (message
[2]) {
1129 case EXTENDED_SDTR
: /* Sync transfer negotiation request/reply */
1130 fas216_handlesync(info
, message
);
1144 fas216_log(info
, 0, "unrecognised message, rejecting");
1145 printk("scsi%d.%c: message was", info
->host
->host_no
, fas216_target(info
));
1146 for (i
= 0; i
< msglen
; i
++)
1147 printk("%s%02X", i
& 31 ? " " : "\n ", message
[i
]);
1151 * Something strange seems to be happening here -
1152 * I can't use SETATN since the chip gives me an
1153 * invalid command interrupt when I do. Weird.
1155 fas216_cmd(info
, CMD_NOP
);
1156 fas216_dumpstate(info
);
1157 fas216_cmd(info
, CMD_SETATN
);
1158 msgqueue_flush(&info
->scsi
.msgs
);
1159 msgqueue_addmsg(&info
->scsi
.msgs
, 1, MESSAGE_REJECT
);
1160 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
1161 fas216_dumpstate(info
);
1164 static int fas216_wait_cmd(FAS216_Info
*info
, int cmd
)
1169 fas216_cmd(info
, cmd
);
1171 for (tout
= 1000; tout
; tout
-= 1) {
1172 stat
= fas216_readb(info
, REG_STAT
);
1173 if (stat
& (STAT_INT
|STAT_PARITYERROR
))
1181 static int fas216_get_msg_byte(FAS216_Info
*info
)
1183 unsigned int stat
= fas216_wait_cmd(info
, CMD_MSGACCEPTED
);
1185 if ((stat
& STAT_INT
) == 0)
1188 if ((stat
& STAT_BUSMASK
) != STAT_MESGIN
)
1189 goto unexpected_phase_change
;
1191 fas216_readb(info
, REG_INST
);
1193 stat
= fas216_wait_cmd(info
, CMD_TRANSFERINFO
);
1195 if ((stat
& STAT_INT
) == 0)
1198 if (stat
& STAT_PARITYERROR
)
1201 if ((stat
& STAT_BUSMASK
) != STAT_MESGIN
)
1202 goto unexpected_phase_change
;
1204 fas216_readb(info
, REG_INST
);
1206 return fas216_readb(info
, REG_FF
);
1209 fas216_log(info
, LOG_ERROR
, "timed out waiting for message byte");
1212 unexpected_phase_change
:
1213 fas216_log(info
, LOG_ERROR
, "unexpected phase change: status = %02x", stat
);
1217 fas216_log(info
, LOG_ERROR
, "parity error during message in phase");
1222 * fas216_message - handle a function done interrupt from FAS216 chip
1223 * @info: interface which caused function done interrupt
1225 * Handle a function done interrupt from FAS216 chip
1227 static void fas216_message(FAS216_Info
*info
)
1229 unsigned char *message
= info
->scsi
.message
;
1230 unsigned int msglen
= 1;
1233 fas216_checkmagic(info
);
1235 message
[0] = fas216_readb(info
, REG_FF
);
1237 if (message
[0] == EXTENDED_MESSAGE
) {
1238 msgbyte
= fas216_get_msg_byte(info
);
1241 message
[1] = msgbyte
;
1243 for (msglen
= 2; msglen
< message
[1] + 2; msglen
++) {
1244 msgbyte
= fas216_get_msg_byte(info
);
1247 message
[msglen
] = msgbyte
;
1257 #ifdef DEBUG_MESSAGES
1261 printk("scsi%d.%c: message in: ",
1262 info
->host
->host_no
, fas216_target(info
));
1263 for (i
= 0; i
< msglen
; i
++)
1264 printk("%02X ", message
[i
]);
1269 fas216_parse_message(info
, message
, msglen
);
1270 fas216_cmd(info
, CMD_MSGACCEPTED
);
1274 fas216_cmd(info
, CMD_SETATN
);
1275 msgqueue_flush(&info
->scsi
.msgs
);
1276 msgqueue_addmsg(&info
->scsi
.msgs
, 1, MSG_PARITY_ERROR
);
1277 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
1278 fas216_cmd(info
, CMD_MSGACCEPTED
);
1283 * fas216_send_command - send command after all message bytes have been sent
1284 * @info: interface which caused bus service
1286 * Send a command to a target after all message bytes have been sent
1288 static void fas216_send_command(FAS216_Info
*info
)
1292 fas216_checkmagic(info
);
1294 fas216_cmd(info
, CMD_NOP
|CMD_WITHDMA
);
1295 fas216_cmd(info
, CMD_FLUSHFIFO
);
1298 for (i
= info
->scsi
.SCp
.sent_command
; i
< info
->SCpnt
->cmd_len
; i
++)
1299 fas216_writeb(info
, REG_FF
, info
->SCpnt
->cmnd
[i
]);
1301 fas216_cmd(info
, CMD_TRANSFERINFO
);
1303 info
->scsi
.phase
= PHASE_COMMAND
;
1307 * fas216_send_messageout - handle bus service to send a message
1308 * @info: interface which caused bus service
1310 * Handle bus service to send a message.
1311 * Note: We do not allow the device to change the data direction!
1313 static void fas216_send_messageout(FAS216_Info
*info
, int start
)
1315 unsigned int tot_msglen
= msgqueue_msglength(&info
->scsi
.msgs
);
1317 fas216_checkmagic(info
);
1319 fas216_cmd(info
, CMD_FLUSHFIFO
);
1322 struct message
*msg
;
1325 while ((msg
= msgqueue_getmsg(&info
->scsi
.msgs
, msgnr
++)) != NULL
) {
1328 for (i
= start
; i
< msg
->length
; i
++)
1329 fas216_writeb(info
, REG_FF
, msg
->msg
[i
]);
1331 msg
->fifo
= tot_msglen
- (fas216_readb(info
, REG_CFIS
) & CFIS_CF
);
1335 fas216_writeb(info
, REG_FF
, NOP
);
1337 fas216_cmd(info
, CMD_TRANSFERINFO
);
1339 info
->scsi
.phase
= PHASE_MSGOUT
;
1343 * fas216_busservice_intr - handle bus service interrupt from FAS216 chip
1344 * @info: interface which caused bus service interrupt
1345 * @stat: Status register contents
1346 * @is: SCSI Status register contents
1348 * Handle a bus service interrupt from FAS216 chip
1350 static void fas216_busservice_intr(FAS216_Info
*info
, unsigned int stat
, unsigned int is
)
1352 fas216_checkmagic(info
);
1354 fas216_log(info
, LOG_BUSSERVICE
,
1355 "bus service: stat=%02x is=%02x phase=%02x",
1356 stat
, is
, info
->scsi
.phase
);
1358 switch (info
->scsi
.phase
) {
1359 case PHASE_SELECTION
:
1360 if ((is
& IS_BITS
) != IS_MSGBYTESENT
)
1364 case PHASE_SELSTEPS
:
1365 switch (is
& IS_BITS
) {
1367 case IS_MSGBYTESENT
:
1372 if ((stat
& STAT_BUSMASK
) == STAT_MESGIN
)
1384 fas216_cmd(info
, CMD_NOP
);
1386 #define STATE(st,ph) ((ph) << 3 | (st))
1387 /* This table describes the legal SCSI state transitions,
1388 * as described by the SCSI II spec.
1390 switch (STATE(stat
& STAT_BUSMASK
, info
->scsi
.phase
)) {
1391 case STATE(STAT_DATAIN
, PHASE_SELSTEPS
):/* Sel w/ steps -> Data In */
1392 case STATE(STAT_DATAIN
, PHASE_MSGOUT
): /* Message Out -> Data In */
1393 case STATE(STAT_DATAIN
, PHASE_COMMAND
): /* Command -> Data In */
1394 case STATE(STAT_DATAIN
, PHASE_MSGIN
): /* Message In -> Data In */
1395 info
->scsi
.phase
= PHASE_DATAIN
;
1396 fas216_transfer(info
);
1399 case STATE(STAT_DATAIN
, PHASE_DATAIN
): /* Data In -> Data In */
1400 case STATE(STAT_DATAOUT
, PHASE_DATAOUT
):/* Data Out -> Data Out */
1401 fas216_cleanuptransfer(info
);
1402 fas216_transfer(info
);
1405 case STATE(STAT_DATAOUT
, PHASE_SELSTEPS
):/* Sel w/ steps-> Data Out */
1406 case STATE(STAT_DATAOUT
, PHASE_MSGOUT
): /* Message Out -> Data Out */
1407 case STATE(STAT_DATAOUT
, PHASE_COMMAND
):/* Command -> Data Out */
1408 case STATE(STAT_DATAOUT
, PHASE_MSGIN
): /* Message In -> Data Out */
1409 fas216_cmd(info
, CMD_FLUSHFIFO
);
1410 info
->scsi
.phase
= PHASE_DATAOUT
;
1411 fas216_transfer(info
);
1414 case STATE(STAT_STATUS
, PHASE_DATAOUT
): /* Data Out -> Status */
1415 case STATE(STAT_STATUS
, PHASE_DATAIN
): /* Data In -> Status */
1416 fas216_stoptransfer(info
);
1417 case STATE(STAT_STATUS
, PHASE_SELSTEPS
):/* Sel w/ steps -> Status */
1418 case STATE(STAT_STATUS
, PHASE_MSGOUT
): /* Message Out -> Status */
1419 case STATE(STAT_STATUS
, PHASE_COMMAND
): /* Command -> Status */
1420 case STATE(STAT_STATUS
, PHASE_MSGIN
): /* Message In -> Status */
1421 fas216_cmd(info
, CMD_INITCMDCOMPLETE
);
1422 info
->scsi
.phase
= PHASE_STATUS
;
1425 case STATE(STAT_MESGIN
, PHASE_DATAOUT
): /* Data Out -> Message In */
1426 case STATE(STAT_MESGIN
, PHASE_DATAIN
): /* Data In -> Message In */
1427 fas216_stoptransfer(info
);
1428 case STATE(STAT_MESGIN
, PHASE_COMMAND
): /* Command -> Message In */
1429 case STATE(STAT_MESGIN
, PHASE_SELSTEPS
):/* Sel w/ steps -> Message In */
1430 case STATE(STAT_MESGIN
, PHASE_MSGOUT
): /* Message Out -> Message In */
1431 info
->scsi
.msgin_fifo
= fas216_readb(info
, REG_CFIS
) & CFIS_CF
;
1432 fas216_cmd(info
, CMD_FLUSHFIFO
);
1433 fas216_cmd(info
, CMD_TRANSFERINFO
);
1434 info
->scsi
.phase
= PHASE_MSGIN
;
1437 case STATE(STAT_MESGIN
, PHASE_MSGIN
):
1438 info
->scsi
.msgin_fifo
= fas216_readb(info
, REG_CFIS
) & CFIS_CF
;
1439 fas216_cmd(info
, CMD_TRANSFERINFO
);
1442 case STATE(STAT_COMMAND
, PHASE_MSGOUT
): /* Message Out -> Command */
1443 case STATE(STAT_COMMAND
, PHASE_MSGIN
): /* Message In -> Command */
1444 fas216_send_command(info
);
1445 info
->scsi
.phase
= PHASE_COMMAND
;
1450 * Selection -> Message Out
1452 case STATE(STAT_MESGOUT
, PHASE_SELECTION
):
1453 fas216_send_messageout(info
, 1);
1457 * Message Out -> Message Out
1459 case STATE(STAT_MESGOUT
, PHASE_SELSTEPS
):
1460 case STATE(STAT_MESGOUT
, PHASE_MSGOUT
):
1462 * If we get another message out phase, this usually
1463 * means some parity error occurred. Resend complete
1464 * set of messages. If we have more than one byte to
1465 * send, we need to assert ATN again.
1467 if (info
->device
[info
->SCpnt
->device
->id
].parity_check
) {
1469 * We were testing... good, the device
1470 * supports parity checking.
1472 info
->device
[info
->SCpnt
->device
->id
].parity_check
= 0;
1473 info
->device
[info
->SCpnt
->device
->id
].parity_enabled
= 1;
1474 fas216_writeb(info
, REG_CNTL1
, info
->scsi
.cfg
[0]);
1477 if (msgqueue_msglength(&info
->scsi
.msgs
) > 1)
1478 fas216_cmd(info
, CMD_SETATN
);
1482 * Any -> Message Out
1484 case STATE(STAT_MESGOUT
, PHASE_MSGOUT_EXPECT
):
1485 fas216_send_messageout(info
, 0);
1488 /* Error recovery rules.
1489 * These either attempt to abort or retry the operation.
1490 * TODO: we need more of these
1492 case STATE(STAT_COMMAND
, PHASE_COMMAND
):/* Command -> Command */
1493 /* error - we've sent out all the command bytes
1495 * NOTE: we need SAVE DATA POINTERS/RESTORE DATA POINTERS
1496 * to include the command bytes sent for this to work
1499 printk(KERN_ERR
"scsi%d.%c: "
1500 "target trying to receive more command bytes\n",
1501 info
->host
->host_no
, fas216_target(info
));
1502 fas216_cmd(info
, CMD_SETATN
);
1503 fas216_set_stc(info
, 15);
1504 fas216_cmd(info
, CMD_PADBYTES
| CMD_WITHDMA
);
1505 msgqueue_flush(&info
->scsi
.msgs
);
1506 msgqueue_addmsg(&info
->scsi
.msgs
, 1, INITIATOR_ERROR
);
1507 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
1511 if (info
->scsi
.phase
== PHASE_MSGIN_DISCONNECT
) {
1512 printk(KERN_ERR
"scsi%d.%c: disconnect message received, but bus service %s?\n",
1513 info
->host
->host_no
, fas216_target(info
),
1514 fas216_bus_phase(stat
));
1515 msgqueue_flush(&info
->scsi
.msgs
);
1516 fas216_cmd(info
, CMD_SETATN
);
1517 msgqueue_addmsg(&info
->scsi
.msgs
, 1, INITIATOR_ERROR
);
1518 info
->scsi
.phase
= PHASE_MSGOUT_EXPECT
;
1519 info
->scsi
.aborting
= 1;
1520 fas216_cmd(info
, CMD_TRANSFERINFO
);
1523 printk(KERN_ERR
"scsi%d.%c: bus phase %s after %s?\n",
1524 info
->host
->host_no
, fas216_target(info
),
1525 fas216_bus_phase(stat
),
1526 fas216_drv_phase(info
));
1531 fas216_log(info
, 0, "bus service at step %d?", is
& IS_BITS
);
1532 fas216_dumpstate(info
);
1535 fas216_done(info
, DID_ERROR
);
1539 * fas216_funcdone_intr - handle a function done interrupt from FAS216 chip
1540 * @info: interface which caused function done interrupt
1541 * @stat: Status register contents
1542 * @is: SCSI Status register contents
1544 * Handle a function done interrupt from FAS216 chip
1546 static void fas216_funcdone_intr(FAS216_Info
*info
, unsigned int stat
, unsigned int is
)
1548 unsigned int fifo_len
= fas216_readb(info
, REG_CFIS
) & CFIS_CF
;
1550 fas216_checkmagic(info
);
1552 fas216_log(info
, LOG_FUNCTIONDONE
,
1553 "function done: stat=%02x is=%02x phase=%02x",
1554 stat
, is
, info
->scsi
.phase
);
1556 switch (info
->scsi
.phase
) {
1557 case PHASE_STATUS
: /* status phase - read status and msg */
1558 if (fifo_len
!= 2) {
1559 fas216_log(info
, 0, "odd number of bytes in FIFO: %d", fifo_len
);
1562 * Read status then message byte.
1564 info
->scsi
.SCp
.Status
= fas216_readb(info
, REG_FF
);
1565 info
->scsi
.SCp
.Message
= fas216_readb(info
, REG_FF
);
1566 info
->scsi
.phase
= PHASE_DONE
;
1567 fas216_cmd(info
, CMD_MSGACCEPTED
);
1571 case PHASE_SELECTION
:
1572 case PHASE_SELSTEPS
:
1575 case PHASE_MSGIN
: /* message in phase */
1576 if ((stat
& STAT_BUSMASK
) == STAT_MESGIN
) {
1577 info
->scsi
.msgin_fifo
= fifo_len
;
1578 fas216_message(info
);
1583 fas216_log(info
, 0, "internal phase %s for function done?"
1584 " What do I do with this?",
1585 fas216_target(info
), fas216_drv_phase(info
));
1589 static void fas216_bus_reset(FAS216_Info
*info
)
1594 msgqueue_flush(&info
->scsi
.msgs
);
1596 sync_state
= neg_invalid
;
1599 if (info
->ifcfg
.capabilities
& (FASCAP_DMA
|FASCAP_PSEUDODMA
))
1600 sync_state
= neg_wait
;
1603 info
->scsi
.phase
= PHASE_IDLE
;
1604 info
->SCpnt
= NULL
; /* bug! */
1605 memset(&info
->scsi
.SCp
, 0, sizeof(info
->scsi
.SCp
));
1607 for (i
= 0; i
< 8; i
++) {
1608 info
->device
[i
].disconnect_ok
= info
->ifcfg
.disconnect_ok
;
1609 info
->device
[i
].sync_state
= sync_state
;
1610 info
->device
[i
].period
= info
->ifcfg
.asyncperiod
/ 4;
1611 info
->device
[i
].stp
= info
->scsi
.async_stp
;
1612 info
->device
[i
].sof
= 0;
1613 info
->device
[i
].wide_xfer
= 0;
1616 info
->rst_bus_status
= 1;
1617 wake_up(&info
->eh_wait
);
1621 * fas216_intr - handle interrupts to progress a command
1622 * @info: interface to service
1624 * Handle interrupts from the interface to progress a command
1626 irqreturn_t
fas216_intr(FAS216_Info
*info
)
1628 unsigned char inst
, is
, stat
;
1629 int handled
= IRQ_NONE
;
1631 fas216_checkmagic(info
);
1633 stat
= fas216_readb(info
, REG_STAT
);
1634 is
= fas216_readb(info
, REG_IS
);
1635 inst
= fas216_readb(info
, REG_INST
);
1637 add_debug_list(stat
, is
, inst
, info
->scsi
.phase
);
1639 if (stat
& STAT_INT
) {
1640 if (inst
& INST_BUSRESET
) {
1641 fas216_log(info
, 0, "bus reset detected");
1642 fas216_bus_reset(info
);
1643 scsi_report_bus_reset(info
->host
, 0);
1644 } else if (inst
& INST_ILLEGALCMD
) {
1645 fas216_log(info
, LOG_ERROR
, "illegal command given\n");
1646 fas216_dumpstate(info
);
1648 } else if (inst
& INST_DISCONNECT
)
1649 fas216_disconnect_intr(info
);
1650 else if (inst
& INST_RESELECTED
) /* reselected */
1651 fas216_reselected_intr(info
);
1652 else if (inst
& INST_BUSSERVICE
) /* bus service request */
1653 fas216_busservice_intr(info
, stat
, is
);
1654 else if (inst
& INST_FUNCDONE
) /* function done */
1655 fas216_funcdone_intr(info
, stat
, is
);
1657 fas216_log(info
, 0, "unknown interrupt received:"
1658 " phase %s inst %02X is %02X stat %02X",
1659 fas216_drv_phase(info
), inst
, is
, stat
);
1660 handled
= IRQ_HANDLED
;
1665 static void __fas216_start_command(FAS216_Info
*info
, struct scsi_cmnd
*SCpnt
)
1669 /* following what the ESP driver says */
1670 fas216_set_stc(info
, 0);
1671 fas216_cmd(info
, CMD_NOP
| CMD_WITHDMA
);
1674 fas216_cmd(info
, CMD_FLUSHFIFO
);
1676 /* load bus-id and timeout */
1677 fas216_writeb(info
, REG_SDID
, BUSID(SCpnt
->device
->id
));
1678 fas216_writeb(info
, REG_STIM
, info
->ifcfg
.select_timeout
);
1680 /* synchronous transfers */
1681 fas216_set_sync(info
, SCpnt
->device
->id
);
1683 tot_msglen
= msgqueue_msglength(&info
->scsi
.msgs
);
1685 #ifdef DEBUG_MESSAGES
1687 struct message
*msg
;
1690 printk("scsi%d.%c: message out: ",
1691 info
->host
->host_no
, '0' + SCpnt
->device
->id
);
1692 while ((msg
= msgqueue_getmsg(&info
->scsi
.msgs
, msgnr
++)) != NULL
) {
1694 for (i
= 0; i
< msg
->length
; i
++)
1695 printk("%02x ", msg
->msg
[i
]);
1702 if (tot_msglen
== 1 || tot_msglen
== 3) {
1704 * We have an easy message length to send...
1706 struct message
*msg
;
1709 info
->scsi
.phase
= PHASE_SELSTEPS
;
1711 /* load message bytes */
1712 while ((msg
= msgqueue_getmsg(&info
->scsi
.msgs
, msgnr
++)) != NULL
) {
1713 for (i
= 0; i
< msg
->length
; i
++)
1714 fas216_writeb(info
, REG_FF
, msg
->msg
[i
]);
1715 msg
->fifo
= tot_msglen
- (fas216_readb(info
, REG_CFIS
) & CFIS_CF
);
1719 for (i
= 0; i
< SCpnt
->cmd_len
; i
++)
1720 fas216_writeb(info
, REG_FF
, SCpnt
->cmnd
[i
]);
1722 if (tot_msglen
== 1)
1723 fas216_cmd(info
, CMD_SELECTATN
);
1725 fas216_cmd(info
, CMD_SELECTATN3
);
1728 * We have an unusual number of message bytes to send.
1729 * Load first byte into fifo, and issue SELECT with ATN and
1732 struct message
*msg
= msgqueue_getmsg(&info
->scsi
.msgs
, 0);
1734 fas216_writeb(info
, REG_FF
, msg
->msg
[0]);
1737 fas216_cmd(info
, CMD_SELECTATNSTOP
);
1742 * Decide whether we need to perform a parity test on this device.
1743 * Can also be used to force parity error conditions during initial
1744 * information transfer phase (message out) for test purposes.
1746 static int parity_test(FAS216_Info
*info
, int target
)
1750 info
->device
[target
].parity_check
= 0;
1754 return info
->device
[target
].parity_check
;
1757 static void fas216_start_command(FAS216_Info
*info
, struct scsi_cmnd
*SCpnt
)
1764 info
->scsi
.phase
= PHASE_SELECTION
;
1765 info
->scsi
.SCp
= SCpnt
->SCp
;
1766 info
->SCpnt
= SCpnt
;
1767 info
->dma
.transfer_type
= fasdma_none
;
1769 if (parity_test(info
, SCpnt
->device
->id
))
1770 fas216_writeb(info
, REG_CNTL1
, info
->scsi
.cfg
[0] | CNTL1_PTE
);
1772 fas216_writeb(info
, REG_CNTL1
, info
->scsi
.cfg
[0]);
1775 * Don't allow request sense commands to disconnect.
1777 disconnect_ok
= SCpnt
->cmnd
[0] != REQUEST_SENSE
&&
1778 info
->device
[SCpnt
->device
->id
].disconnect_ok
;
1781 * build outgoing message bytes
1783 msgqueue_flush(&info
->scsi
.msgs
);
1784 msgqueue_addmsg(&info
->scsi
.msgs
, 1, IDENTIFY(disconnect_ok
, SCpnt
->device
->lun
));
1787 * add tag message if required
1790 msgqueue_addmsg(&info
->scsi
.msgs
, 2, SIMPLE_QUEUE_TAG
, SCpnt
->tag
);
1794 if ((info
->device
[SCpnt
->device
->id
].sync_state
== neg_wait
||
1795 info
->device
[SCpnt
->device
->id
].sync_state
== neg_complete
) &&
1796 (SCpnt
->cmnd
[0] == REQUEST_SENSE
||
1797 SCpnt
->cmnd
[0] == INQUIRY
)) {
1798 info
->device
[SCpnt
->device
->id
].sync_state
= neg_inprogress
;
1799 msgqueue_addmsg(&info
->scsi
.msgs
, 5,
1800 EXTENDED_MESSAGE
, 3, EXTENDED_SDTR
,
1801 1000 / info
->ifcfg
.clockrate
,
1802 info
->ifcfg
.sync_max_depth
);
1808 __fas216_start_command(info
, SCpnt
);
1811 static void fas216_allocate_tag(FAS216_Info
*info
, struct scsi_cmnd
*SCpnt
)
1815 * tagged queuing - allocate a new tag to this command
1817 if (SCpnt
->device
->simple_tags
&& SCpnt
->cmnd
[0] != REQUEST_SENSE
&&
1818 SCpnt
->cmnd
[0] != INQUIRY
) {
1819 SCpnt
->device
->current_tag
+= 1;
1820 if (SCpnt
->device
->current_tag
== 0)
1821 SCpnt
->device
->current_tag
= 1;
1822 SCpnt
->tag
= SCpnt
->device
->current_tag
;
1825 set_bit(SCpnt
->device
->id
* 8 +
1826 (u8
)(SCpnt
->device
->lun
& 0x7), info
->busyluns
);
1828 info
->stats
.removes
+= 1;
1829 switch (SCpnt
->cmnd
[0]) {
1833 info
->stats
.writes
+= 1;
1838 info
->stats
.reads
+= 1;
1841 info
->stats
.miscs
+= 1;
1846 static void fas216_do_bus_device_reset(FAS216_Info
*info
,
1847 struct scsi_cmnd
*SCpnt
)
1849 struct message
*msg
;
1854 info
->scsi
.phase
= PHASE_SELECTION
;
1855 info
->scsi
.SCp
= SCpnt
->SCp
;
1856 info
->SCpnt
= SCpnt
;
1857 info
->dma
.transfer_type
= fasdma_none
;
1859 fas216_log(info
, LOG_ERROR
, "sending bus device reset");
1861 msgqueue_flush(&info
->scsi
.msgs
);
1862 msgqueue_addmsg(&info
->scsi
.msgs
, 1, BUS_DEVICE_RESET
);
1864 /* following what the ESP driver says */
1865 fas216_set_stc(info
, 0);
1866 fas216_cmd(info
, CMD_NOP
| CMD_WITHDMA
);
1869 fas216_cmd(info
, CMD_FLUSHFIFO
);
1871 /* load bus-id and timeout */
1872 fas216_writeb(info
, REG_SDID
, BUSID(SCpnt
->device
->id
));
1873 fas216_writeb(info
, REG_STIM
, info
->ifcfg
.select_timeout
);
1875 /* synchronous transfers */
1876 fas216_set_sync(info
, SCpnt
->device
->id
);
1878 msg
= msgqueue_getmsg(&info
->scsi
.msgs
, 0);
1880 fas216_writeb(info
, REG_FF
, BUS_DEVICE_RESET
);
1883 fas216_cmd(info
, CMD_SELECTATNSTOP
);
1887 * fas216_kick - kick a command to the interface
1888 * @info: our host interface to kick
1890 * Kick a command to the interface, interface should be idle.
1891 * Notes: Interrupts are always disabled!
1893 static void fas216_kick(FAS216_Info
*info
)
1895 struct scsi_cmnd
*SCpnt
= NULL
;
1896 #define TYPE_OTHER 0
1897 #define TYPE_RESET 1
1898 #define TYPE_QUEUE 2
1899 int where_from
= TYPE_OTHER
;
1901 fas216_checkmagic(info
);
1904 * Obtain the next command to process.
1907 if (info
->rstSCpnt
) {
1908 SCpnt
= info
->rstSCpnt
;
1909 /* don't remove it */
1910 where_from
= TYPE_RESET
;
1914 if (info
->reqSCpnt
) {
1915 SCpnt
= info
->reqSCpnt
;
1916 info
->reqSCpnt
= NULL
;
1920 if (info
->origSCpnt
) {
1921 SCpnt
= info
->origSCpnt
;
1922 info
->origSCpnt
= NULL
;
1926 /* retrieve next command */
1928 SCpnt
= queue_remove_exclude(&info
->queues
.issue
,
1930 where_from
= TYPE_QUEUE
;
1937 * no command pending, so enable reselection.
1939 fas216_cmd(info
, CMD_ENABLESEL
);
1944 * We're going to start a command, so disable reselection
1946 fas216_cmd(info
, CMD_DISABLESEL
);
1948 if (info
->scsi
.disconnectable
&& info
->SCpnt
) {
1949 fas216_log(info
, LOG_CONNECT
,
1950 "moved command for %d to disconnected queue",
1951 info
->SCpnt
->device
->id
);
1952 queue_add_cmd_tail(&info
->queues
.disconnected
, info
->SCpnt
);
1953 info
->scsi
.disconnectable
= 0;
1957 fas216_log_command(info
, LOG_CONNECT
| LOG_MESSAGES
, SCpnt
,
1960 switch (where_from
) {
1962 fas216_allocate_tag(info
, SCpnt
);
1964 fas216_start_command(info
, SCpnt
);
1967 fas216_do_bus_device_reset(info
, SCpnt
);
1971 fas216_log(info
, LOG_CONNECT
, "select: data pointers [%p, %X]",
1972 info
->scsi
.SCp
.ptr
, info
->scsi
.SCp
.this_residual
);
1975 * should now get either DISCONNECT or
1976 * (FUNCTION DONE with BUS SERVICE) interrupt
1981 * Clean up from issuing a BUS DEVICE RESET message to a device.
1983 static void fas216_devicereset_done(FAS216_Info
*info
, struct scsi_cmnd
*SCpnt
,
1984 unsigned int result
)
1986 fas216_log(info
, LOG_ERROR
, "fas216 device reset complete");
1988 info
->rstSCpnt
= NULL
;
1989 info
->rst_dev_status
= 1;
1990 wake_up(&info
->eh_wait
);
1994 * fas216_rq_sns_done - Finish processing automatic request sense command
1995 * @info: interface that completed
1996 * @SCpnt: command that completed
1997 * @result: driver byte of result
1999 * Finish processing automatic request sense command
2001 static void fas216_rq_sns_done(FAS216_Info
*info
, struct scsi_cmnd
*SCpnt
,
2002 unsigned int result
)
2004 fas216_log_target(info
, LOG_CONNECT
, SCpnt
->device
->id
,
2005 "request sense complete, result=0x%04x%02x%02x",
2006 result
, SCpnt
->SCp
.Message
, SCpnt
->SCp
.Status
);
2008 if (result
!= DID_OK
|| SCpnt
->SCp
.Status
!= GOOD
)
2010 * Something went wrong. Make sure that we don't
2011 * have valid data in the sense buffer that could
2012 * confuse the higher levels.
2014 memset(SCpnt
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
2015 //printk("scsi%d.%c: sense buffer: ", info->host->host_no, '0' + SCpnt->device->id);
2016 //{ int i; for (i = 0; i < 32; i++) printk("%02x ", SCpnt->sense_buffer[i]); printk("\n"); }
2018 * Note that we don't set SCpnt->result, since that should
2019 * reflect the status of the command that we were asked by
2020 * the upper layers to process. This would have been set
2021 * correctly by fas216_std_done.
2023 scsi_eh_restore_cmnd(SCpnt
, &info
->ses
);
2024 SCpnt
->scsi_done(SCpnt
);
2028 * fas216_std_done - finish processing of standard command
2029 * @info: interface that completed
2030 * @SCpnt: command that completed
2031 * @result: driver byte of result
2033 * Finish processing of standard command
2036 fas216_std_done(FAS216_Info
*info
, struct scsi_cmnd
*SCpnt
, unsigned int result
)
2038 info
->stats
.fins
+= 1;
2040 SCpnt
->result
= result
<< 16 | info
->scsi
.SCp
.Message
<< 8 |
2041 info
->scsi
.SCp
.Status
;
2043 fas216_log_command(info
, LOG_CONNECT
, SCpnt
,
2044 "command complete, result=0x%08x", SCpnt
->result
);
2047 * If the driver detected an error, we're all done.
2049 if (host_byte(SCpnt
->result
) != DID_OK
||
2050 msg_byte(SCpnt
->result
) != COMMAND_COMPLETE
)
2054 * If the command returned CHECK_CONDITION or COMMAND_TERMINATED
2055 * status, request the sense information.
2057 if (status_byte(SCpnt
->result
) == CHECK_CONDITION
||
2058 status_byte(SCpnt
->result
) == COMMAND_TERMINATED
)
2062 * If the command did not complete with GOOD status,
2063 * we are all done here.
2065 if (status_byte(SCpnt
->result
) != GOOD
)
2069 * We have successfully completed a command. Make sure that
2070 * we do not have any buffers left to transfer. The world
2071 * is not perfect, and we seem to occasionally hit this.
2072 * It can be indicative of a buggy driver, target or the upper
2073 * levels of the SCSI code.
2075 if (info
->scsi
.SCp
.ptr
) {
2076 switch (SCpnt
->cmnd
[0]) {
2083 scmd_printk(KERN_ERR
, SCpnt
,
2084 "incomplete data transfer detected: res=%08X ptr=%p len=%X\n",
2085 SCpnt
->result
, info
->scsi
.SCp
.ptr
,
2086 info
->scsi
.SCp
.this_residual
);
2087 scsi_print_command(SCpnt
);
2088 set_host_byte(SCpnt
, DID_ERROR
);
2094 if (SCpnt
->scsi_done
) {
2095 SCpnt
->scsi_done(SCpnt
);
2099 panic("scsi%d.H: null scsi_done function in fas216_done",
2100 info
->host
->host_no
);
2104 if (SCpnt
->cmnd
[0] == REQUEST_SENSE
)
2107 scsi_eh_prep_cmnd(SCpnt
, &info
->ses
, NULL
, 0, ~0);
2108 fas216_log_target(info
, LOG_CONNECT
, SCpnt
->device
->id
,
2109 "requesting sense");
2111 SCpnt
->SCp
.Message
= 0;
2112 SCpnt
->SCp
.Status
= 0;
2114 SCpnt
->host_scribble
= (void *)fas216_rq_sns_done
;
2117 * Place this command into the high priority "request
2118 * sense" slot. This will be the very next command
2119 * executed, unless a target connects to us.
2122 printk(KERN_WARNING
"scsi%d.%c: losing request command\n",
2123 info
->host
->host_no
, '0' + SCpnt
->device
->id
);
2124 info
->reqSCpnt
= SCpnt
;
2128 * fas216_done - complete processing for current command
2129 * @info: interface that completed
2130 * @result: driver byte of result
2132 * Complete processing for current command
2134 static void fas216_done(FAS216_Info
*info
, unsigned int result
)
2136 void (*fn
)(FAS216_Info
*, struct scsi_cmnd
*, unsigned int);
2137 struct scsi_cmnd
*SCpnt
;
2138 unsigned long flags
;
2140 fas216_checkmagic(info
);
2145 SCpnt
= info
->SCpnt
;
2147 info
->scsi
.phase
= PHASE_IDLE
;
2149 if (info
->scsi
.aborting
) {
2150 fas216_log(info
, 0, "uncaught abort - returning DID_ABORT");
2152 info
->scsi
.aborting
= 0;
2156 * Sanity check the completion - if we have zero bytes left
2157 * to transfer, we should not have a valid pointer.
2159 if (info
->scsi
.SCp
.ptr
&& info
->scsi
.SCp
.this_residual
== 0) {
2160 scmd_printk(KERN_INFO
, SCpnt
,
2161 "zero bytes left to transfer, but buffer pointer still valid: ptr=%p len=%08x\n",
2162 info
->scsi
.SCp
.ptr
, info
->scsi
.SCp
.this_residual
);
2163 info
->scsi
.SCp
.ptr
= NULL
;
2164 scsi_print_command(SCpnt
);
2168 * Clear down this command as completed. If we need to request
2169 * the sense information, fas216_kick will re-assert the busy
2172 info
->device
[SCpnt
->device
->id
].parity_check
= 0;
2173 clear_bit(SCpnt
->device
->id
* 8 +
2174 (u8
)(SCpnt
->device
->lun
& 0x7), info
->busyluns
);
2176 fn
= (void (*)(FAS216_Info
*, struct scsi_cmnd
*, unsigned int))SCpnt
->host_scribble
;
2177 fn(info
, SCpnt
, result
);
2179 if (info
->scsi
.irq
) {
2180 spin_lock_irqsave(&info
->host_lock
, flags
);
2181 if (info
->scsi
.phase
== PHASE_IDLE
)
2183 spin_unlock_irqrestore(&info
->host_lock
, flags
);
2188 panic("scsi%d.H: null command in fas216_done",
2189 info
->host
->host_no
);
2193 * fas216_queue_command - queue a command for adapter to process.
2194 * @SCpnt: Command to queue
2195 * @done: done function to call once command is complete
2197 * Queue a command for adapter to process.
2198 * Returns: 0 on success, else error.
2199 * Notes: io_request_lock is held, interrupts are disabled.
2201 static int fas216_queue_command_lck(struct scsi_cmnd
*SCpnt
,
2202 void (*done
)(struct scsi_cmnd
*))
2204 FAS216_Info
*info
= (FAS216_Info
*)SCpnt
->device
->host
->hostdata
;
2207 fas216_checkmagic(info
);
2209 fas216_log_command(info
, LOG_CONNECT
, SCpnt
,
2210 "received command (%p)", SCpnt
);
2212 SCpnt
->scsi_done
= done
;
2213 SCpnt
->host_scribble
= (void *)fas216_std_done
;
2218 info
->stats
.queues
+= 1;
2221 spin_lock(&info
->host_lock
);
2224 * Add command into execute queue and let it complete under
2225 * whatever scheme we're using.
2227 result
= !queue_add_cmd_ordered(&info
->queues
.issue
, SCpnt
);
2230 * If we successfully added the command,
2231 * kick the interface to get it moving.
2233 if (result
== 0 && info
->scsi
.phase
== PHASE_IDLE
)
2235 spin_unlock(&info
->host_lock
);
2237 fas216_log_target(info
, LOG_CONNECT
, -1, "queue %s",
2238 result
? "failure" : "success");
2243 DEF_SCSI_QCMD(fas216_queue_command
)
2246 * fas216_internal_done - trigger restart of a waiting thread in fas216_noqueue_command
2247 * @SCpnt: Command to wake
2249 * Trigger restart of a waiting thread in fas216_command
2251 static void fas216_internal_done(struct scsi_cmnd
*SCpnt
)
2253 FAS216_Info
*info
= (FAS216_Info
*)SCpnt
->device
->host
->hostdata
;
2255 fas216_checkmagic(info
);
2257 info
->internal_done
= 1;
2261 * fas216_noqueue_command - process a command for the adapter.
2262 * @SCpnt: Command to queue
2264 * Queue a command for adapter to process.
2265 * Returns: scsi result code.
2266 * Notes: io_request_lock is held, interrupts are disabled.
2268 static int fas216_noqueue_command_lck(struct scsi_cmnd
*SCpnt
,
2269 void (*done
)(struct scsi_cmnd
*))
2271 FAS216_Info
*info
= (FAS216_Info
*)SCpnt
->device
->host
->hostdata
;
2273 fas216_checkmagic(info
);
2276 * We should only be using this if we don't have an interrupt.
2277 * Provide some "incentive" to use the queueing code.
2279 BUG_ON(info
->scsi
.irq
);
2281 info
->internal_done
= 0;
2282 fas216_queue_command_lck(SCpnt
, fas216_internal_done
);
2285 * This wastes time, since we can't return until the command is
2286 * complete. We can't sleep either since we may get re-entered!
2287 * However, we must re-enable interrupts, or else we'll be
2290 spin_unlock_irq(info
->host
->host_lock
);
2292 while (!info
->internal_done
) {
2294 * If we don't have an IRQ, then we must poll the card for
2295 * it's interrupt, and use that to call this driver's
2296 * interrupt routine. That way, we keep the command
2297 * progressing. Maybe we can add some intelligence here
2298 * and go to sleep if we know that the device is going
2299 * to be some time (eg, disconnected).
2301 if (fas216_readb(info
, REG_STAT
) & STAT_INT
) {
2302 spin_lock_irq(info
->host
->host_lock
);
2304 spin_unlock_irq(info
->host
->host_lock
);
2308 spin_lock_irq(info
->host
->host_lock
);
2315 DEF_SCSI_QCMD(fas216_noqueue_command
)
2318 * Error handler timeout function. Indicate that we timed out,
2319 * and wake up any error handler process so it can continue.
2321 static void fas216_eh_timer(unsigned long data
)
2323 FAS216_Info
*info
= (FAS216_Info
*)data
;
2325 fas216_log(info
, LOG_ERROR
, "error handling timed out\n");
2327 del_timer(&info
->eh_timer
);
2329 if (info
->rst_bus_status
== 0)
2330 info
->rst_bus_status
= -1;
2331 if (info
->rst_dev_status
== 0)
2332 info
->rst_dev_status
= -1;
2334 wake_up(&info
->eh_wait
);
2338 res_failed
, /* not found */
2339 res_success
, /* command on issue queue */
2340 res_hw_abort
/* command on disconnected dev */
2344 * fas216_do_abort - decide how to abort a command
2345 * @SCpnt: command to abort
2347 * Decide how to abort a command.
2348 * Returns: abort status
2350 static enum res_find
fas216_find_command(FAS216_Info
*info
,
2351 struct scsi_cmnd
*SCpnt
)
2353 enum res_find res
= res_failed
;
2355 if (queue_remove_cmd(&info
->queues
.issue
, SCpnt
)) {
2357 * The command was on the issue queue, and has not been
2358 * issued yet. We can remove the command from the queue,
2359 * and acknowledge the abort. Neither the device nor the
2360 * interface know about the command.
2362 printk("on issue queue ");
2365 } else if (queue_remove_cmd(&info
->queues
.disconnected
, SCpnt
)) {
2367 * The command was on the disconnected queue. We must
2368 * reconnect with the device if possible, and send it
2371 printk("on disconnected queue ");
2374 } else if (info
->SCpnt
== SCpnt
) {
2375 printk("executing ");
2377 switch (info
->scsi
.phase
) {
2379 * If the interface is idle, and the command is 'disconnectable',
2380 * then it is the same as on the disconnected queue.
2383 if (info
->scsi
.disconnectable
) {
2384 info
->scsi
.disconnectable
= 0;
2393 } else if (info
->origSCpnt
== SCpnt
) {
2395 * The command will be executed next, but a command
2396 * is currently using the interface. This is similar to
2397 * being on the issue queue, except the busylun bit has
2400 info
->origSCpnt
= NULL
;
2401 clear_bit(SCpnt
->device
->id
* 8 +
2402 (u8
)(SCpnt
->device
->lun
& 0x7), info
->busyluns
);
2403 printk("waiting for execution ");
2412 * fas216_eh_abort - abort this command
2413 * @SCpnt: command to abort
2415 * Abort this command.
2416 * Returns: FAILED if unable to abort
2417 * Notes: io_request_lock is taken, and irqs are disabled
2419 int fas216_eh_abort(struct scsi_cmnd
*SCpnt
)
2421 FAS216_Info
*info
= (FAS216_Info
*)SCpnt
->device
->host
->hostdata
;
2422 int result
= FAILED
;
2424 fas216_checkmagic(info
);
2426 info
->stats
.aborts
+= 1;
2428 scmd_printk(KERN_WARNING
, SCpnt
, "abort command\n");
2431 fas216_dumpstate(info
);
2433 switch (fas216_find_command(info
, SCpnt
)) {
2435 * We found the command, and cleared it out. Either
2436 * the command is still known to be executing on the
2437 * target, or the busylun bit is not set.
2440 scmd_printk(KERN_WARNING
, SCpnt
, "abort %p success\n", SCpnt
);
2445 * We need to reconnect to the target and send it an
2446 * ABORT or ABORT_TAG message. We can only do this
2447 * if the bus is free.
2452 * We are unable to abort the command for some reason.
2456 scmd_printk(KERN_WARNING
, SCpnt
, "abort %p failed\n", SCpnt
);
2464 * fas216_eh_device_reset - Reset the device associated with this command
2465 * @SCpnt: command specifing device to reset
2467 * Reset the device associated with this command.
2468 * Returns: FAILED if unable to reset.
2469 * Notes: We won't be re-entered, so we'll only have one device
2470 * reset on the go at one time.
2472 int fas216_eh_device_reset(struct scsi_cmnd
*SCpnt
)
2474 FAS216_Info
*info
= (FAS216_Info
*)SCpnt
->device
->host
->hostdata
;
2475 unsigned long flags
;
2476 int i
, res
= FAILED
, target
= SCpnt
->device
->id
;
2478 fas216_log(info
, LOG_ERROR
, "device reset for target %d", target
);
2480 spin_lock_irqsave(&info
->host_lock
, flags
);
2484 * If we are currently connected to a device, and
2485 * it is the device we want to reset, there is
2486 * nothing we can do here. Chances are it is stuck,
2487 * and we need a bus reset.
2489 if (info
->SCpnt
&& !info
->scsi
.disconnectable
&&
2490 info
->SCpnt
->device
->id
== SCpnt
->device
->id
)
2494 * We're going to be resetting this device. Remove
2495 * all pending commands from the driver. By doing
2496 * so, we guarantee that we won't touch the command
2497 * structures except to process the reset request.
2499 queue_remove_all_target(&info
->queues
.issue
, target
);
2500 queue_remove_all_target(&info
->queues
.disconnected
, target
);
2501 if (info
->origSCpnt
&& info
->origSCpnt
->device
->id
== target
)
2502 info
->origSCpnt
= NULL
;
2503 if (info
->reqSCpnt
&& info
->reqSCpnt
->device
->id
== target
)
2504 info
->reqSCpnt
= NULL
;
2505 for (i
= 0; i
< 8; i
++)
2506 clear_bit(target
* 8 + i
, info
->busyluns
);
2509 * Hijack this SCSI command structure to send
2510 * a bus device reset message to this device.
2512 SCpnt
->host_scribble
= (void *)fas216_devicereset_done
;
2514 info
->rst_dev_status
= 0;
2515 info
->rstSCpnt
= SCpnt
;
2517 if (info
->scsi
.phase
== PHASE_IDLE
)
2520 mod_timer(&info
->eh_timer
, jiffies
+ 30 * HZ
);
2521 spin_unlock_irqrestore(&info
->host_lock
, flags
);
2524 * Wait up to 30 seconds for the reset to complete.
2526 wait_event(info
->eh_wait
, info
->rst_dev_status
);
2528 del_timer_sync(&info
->eh_timer
);
2529 spin_lock_irqsave(&info
->host_lock
, flags
);
2530 info
->rstSCpnt
= NULL
;
2532 if (info
->rst_dev_status
== 1)
2536 SCpnt
->host_scribble
= NULL
;
2537 spin_unlock_irqrestore(&info
->host_lock
, flags
);
2539 fas216_log(info
, LOG_ERROR
, "device reset complete: %s\n",
2540 res
== SUCCESS
? "success" : "failed");
2546 * fas216_eh_bus_reset - Reset the bus associated with the command
2547 * @SCpnt: command specifing bus to reset
2549 * Reset the bus associated with the command.
2550 * Returns: FAILED if unable to reset.
2551 * Notes: Further commands are blocked.
2553 int fas216_eh_bus_reset(struct scsi_cmnd
*SCpnt
)
2555 FAS216_Info
*info
= (FAS216_Info
*)SCpnt
->device
->host
->hostdata
;
2556 unsigned long flags
;
2557 struct scsi_device
*SDpnt
;
2559 fas216_checkmagic(info
);
2560 fas216_log(info
, LOG_ERROR
, "resetting bus");
2562 info
->stats
.bus_resets
+= 1;
2564 spin_lock_irqsave(&info
->host_lock
, flags
);
2567 * Stop all activity on this interface.
2569 fas216_aborttransfer(info
);
2570 fas216_writeb(info
, REG_CNTL3
, info
->scsi
.cfg
[2]);
2573 * Clear any pending interrupts.
2575 while (fas216_readb(info
, REG_STAT
) & STAT_INT
)
2576 fas216_readb(info
, REG_INST
);
2578 info
->rst_bus_status
= 0;
2581 * For each attached hard-reset device, clear out
2582 * all command structures. Leave the running
2585 shost_for_each_device(SDpnt
, info
->host
) {
2588 if (SDpnt
->soft_reset
)
2591 queue_remove_all_target(&info
->queues
.issue
, SDpnt
->id
);
2592 queue_remove_all_target(&info
->queues
.disconnected
, SDpnt
->id
);
2593 if (info
->origSCpnt
&& info
->origSCpnt
->device
->id
== SDpnt
->id
)
2594 info
->origSCpnt
= NULL
;
2595 if (info
->reqSCpnt
&& info
->reqSCpnt
->device
->id
== SDpnt
->id
)
2596 info
->reqSCpnt
= NULL
;
2599 for (i
= 0; i
< 8; i
++)
2600 clear_bit(SDpnt
->id
* 8 + i
, info
->busyluns
);
2603 info
->scsi
.phase
= PHASE_IDLE
;
2606 * Reset the SCSI bus. Device cleanup happens in
2607 * the interrupt handler.
2609 fas216_cmd(info
, CMD_RESETSCSI
);
2611 mod_timer(&info
->eh_timer
, jiffies
+ HZ
);
2612 spin_unlock_irqrestore(&info
->host_lock
, flags
);
2615 * Wait one second for the interrupt.
2617 wait_event(info
->eh_wait
, info
->rst_bus_status
);
2618 del_timer_sync(&info
->eh_timer
);
2620 fas216_log(info
, LOG_ERROR
, "bus reset complete: %s\n",
2621 info
->rst_bus_status
== 1 ? "success" : "failed");
2623 return info
->rst_bus_status
== 1 ? SUCCESS
: FAILED
;
2627 * fas216_init_chip - Initialise FAS216 state after reset
2628 * @info: state structure for interface
2630 * Initialise FAS216 state after reset
2632 static void fas216_init_chip(FAS216_Info
*info
)
2634 unsigned int clock
= ((info
->ifcfg
.clockrate
- 1) / 5 + 1) & 7;
2635 fas216_writeb(info
, REG_CLKF
, clock
);
2636 fas216_writeb(info
, REG_CNTL1
, info
->scsi
.cfg
[0]);
2637 fas216_writeb(info
, REG_CNTL2
, info
->scsi
.cfg
[1]);
2638 fas216_writeb(info
, REG_CNTL3
, info
->scsi
.cfg
[2]);
2639 fas216_writeb(info
, REG_STIM
, info
->ifcfg
.select_timeout
);
2640 fas216_writeb(info
, REG_SOF
, 0);
2641 fas216_writeb(info
, REG_STP
, info
->scsi
.async_stp
);
2642 fas216_writeb(info
, REG_CNTL1
, info
->scsi
.cfg
[0]);
2646 * fas216_eh_host_reset - Reset the host associated with this command
2647 * @SCpnt: command specifing host to reset
2649 * Reset the host associated with this command.
2650 * Returns: FAILED if unable to reset.
2651 * Notes: io_request_lock is taken, and irqs are disabled
2653 int fas216_eh_host_reset(struct scsi_cmnd
*SCpnt
)
2655 FAS216_Info
*info
= (FAS216_Info
*)SCpnt
->device
->host
->hostdata
;
2657 spin_lock_irq(info
->host
->host_lock
);
2659 fas216_checkmagic(info
);
2661 fas216_log(info
, LOG_ERROR
, "resetting host");
2664 * Reset the SCSI chip.
2666 fas216_cmd(info
, CMD_RESETCHIP
);
2670 * We need to release the host_lock and enable
2671 * IRQs if we sleep, but we must relock and disable
2672 * IRQs after the sleep.
2674 spin_unlock_irq(info
->host
->host_lock
);
2675 msleep(50 * 1000/100);
2676 spin_lock_irq(info
->host
->host_lock
);
2679 * Release the SCSI reset.
2681 fas216_cmd(info
, CMD_NOP
);
2683 fas216_init_chip(info
);
2685 spin_unlock_irq(info
->host
->host_lock
);
2689 #define TYPE_UNKNOWN 0
2690 #define TYPE_NCR53C90 1
2691 #define TYPE_NCR53C90A 2
2692 #define TYPE_NCR53C9x 3
2693 #define TYPE_Am53CF94 4
2694 #define TYPE_EmFAS216 5
2695 #define TYPE_QLFAS216 6
2697 static char *chip_types
[] = {
2707 static int fas216_detect_type(FAS216_Info
*info
)
2714 fas216_writeb(info
, REG_CMD
, CMD_RESETCHIP
);
2716 fas216_writeb(info
, REG_CMD
, CMD_NOP
);
2719 * Check to see if control reg 2 is present.
2721 fas216_writeb(info
, REG_CNTL3
, 0);
2722 fas216_writeb(info
, REG_CNTL2
, CNTL2_S2FE
);
2725 * If we are unable to read back control reg 2
2726 * correctly, it is not present, and we have a
2729 if ((fas216_readb(info
, REG_CNTL2
) & (~0xe0)) != CNTL2_S2FE
)
2730 return TYPE_NCR53C90
;
2733 * Now, check control register 3
2735 fas216_writeb(info
, REG_CNTL2
, 0);
2736 fas216_writeb(info
, REG_CNTL3
, 0);
2737 fas216_writeb(info
, REG_CNTL3
, 5);
2740 * If we are unable to read the register back
2741 * correctly, we have a NCR53C90A
2743 if (fas216_readb(info
, REG_CNTL3
) != 5)
2744 return TYPE_NCR53C90A
;
2747 * Now read the ID from the chip.
2749 fas216_writeb(info
, REG_CNTL3
, 0);
2751 fas216_writeb(info
, REG_CNTL3
, CNTL3_ADIDCHK
);
2752 fas216_writeb(info
, REG_CNTL3
, 0);
2754 fas216_writeb(info
, REG_CMD
, CMD_RESETCHIP
);
2756 fas216_writeb(info
, REG_CMD
, CMD_WITHDMA
| CMD_NOP
);
2758 fas216_writeb(info
, REG_CNTL2
, CNTL2_ENF
);
2759 fas216_writeb(info
, REG_CMD
, CMD_RESETCHIP
);
2761 fas216_writeb(info
, REG_CMD
, CMD_NOP
);
2763 rev
= fas216_readb(info
, REG_ID
);
2770 return TYPE_Am53CF94
;
2776 return TYPE_EmFAS216
;
2778 return TYPE_QLFAS216
;
2785 printk("family %x rev %x\n", family
, rev
);
2786 return TYPE_NCR53C9x
;
2790 * fas216_reset_state - Initialise driver internal state
2791 * @info: state to initialise
2793 * Initialise driver internal state
2795 static void fas216_reset_state(FAS216_Info
*info
)
2799 fas216_checkmagic(info
);
2801 fas216_bus_reset(info
);
2804 * Clear out all stale info in our state structure
2806 memset(info
->busyluns
, 0, sizeof(info
->busyluns
));
2807 info
->scsi
.disconnectable
= 0;
2808 info
->scsi
.aborting
= 0;
2810 for (i
= 0; i
< 8; i
++) {
2811 info
->device
[i
].parity_enabled
= 0;
2812 info
->device
[i
].parity_check
= 1;
2816 * Drain all commands on disconnected queue
2818 while (queue_remove(&info
->queues
.disconnected
) != NULL
);
2821 * Remove executing commands.
2824 info
->reqSCpnt
= NULL
;
2825 info
->rstSCpnt
= NULL
;
2826 info
->origSCpnt
= NULL
;
2830 * fas216_init - initialise FAS/NCR/AMD SCSI structures.
2831 * @host: a driver-specific filled-out structure
2833 * Initialise FAS/NCR/AMD SCSI structures.
2834 * Returns: 0 on success
2836 int fas216_init(struct Scsi_Host
*host
)
2838 FAS216_Info
*info
= (FAS216_Info
*)host
->hostdata
;
2840 info
->magic_start
= MAGIC
;
2841 info
->magic_end
= MAGIC
;
2843 info
->scsi
.cfg
[0] = host
->this_id
| CNTL1_PERE
;
2844 info
->scsi
.cfg
[1] = CNTL2_ENF
| CNTL2_S2FE
;
2845 info
->scsi
.cfg
[2] = info
->ifcfg
.cntl3
|
2846 CNTL3_ADIDCHK
| CNTL3_QTAG
| CNTL3_G2CB
| CNTL3_LBTM
;
2847 info
->scsi
.async_stp
= fas216_syncperiod(info
, info
->ifcfg
.asyncperiod
);
2849 info
->rst_dev_status
= -1;
2850 info
->rst_bus_status
= -1;
2851 init_waitqueue_head(&info
->eh_wait
);
2852 init_timer(&info
->eh_timer
);
2853 info
->eh_timer
.data
= (unsigned long)info
;
2854 info
->eh_timer
.function
= fas216_eh_timer
;
2856 spin_lock_init(&info
->host_lock
);
2858 memset(&info
->stats
, 0, sizeof(info
->stats
));
2860 msgqueue_initialise(&info
->scsi
.msgs
);
2862 if (!queue_initialise(&info
->queues
.issue
))
2865 if (!queue_initialise(&info
->queues
.disconnected
)) {
2866 queue_free(&info
->queues
.issue
);
2874 * fas216_add - initialise FAS/NCR/AMD SCSI ic.
2875 * @host: a driver-specific filled-out structure
2876 * @dev: parent device
2878 * Initialise FAS/NCR/AMD SCSI ic.
2879 * Returns: 0 on success
2881 int fas216_add(struct Scsi_Host
*host
, struct device
*dev
)
2883 FAS216_Info
*info
= (FAS216_Info
*)host
->hostdata
;
2886 if (info
->ifcfg
.clockrate
<= 10 || info
->ifcfg
.clockrate
> 40) {
2887 printk(KERN_CRIT
"fas216: invalid clock rate %u MHz\n",
2888 info
->ifcfg
.clockrate
);
2892 fas216_reset_state(info
);
2893 type
= fas216_detect_type(info
);
2894 info
->scsi
.type
= chip_types
[type
];
2899 * Initialise the chip correctly.
2901 fas216_init_chip(info
);
2904 * Reset the SCSI bus. We don't want to see
2905 * the resulting reset interrupt, so mask it
2908 fas216_writeb(info
, REG_CNTL1
, info
->scsi
.cfg
[0] | CNTL1_DISR
);
2909 fas216_writeb(info
, REG_CMD
, CMD_RESETSCSI
);
2912 * scsi standard says wait 250ms
2914 spin_unlock_irq(info
->host
->host_lock
);
2915 msleep(100*1000/100);
2916 spin_lock_irq(info
->host
->host_lock
);
2918 fas216_writeb(info
, REG_CNTL1
, info
->scsi
.cfg
[0]);
2919 fas216_readb(info
, REG_INST
);
2921 fas216_checkmagic(info
);
2923 ret
= scsi_add_host(host
, dev
);
2925 fas216_writeb(info
, REG_CMD
, CMD_RESETCHIP
);
2927 scsi_scan_host(host
);
2932 void fas216_remove(struct Scsi_Host
*host
)
2934 FAS216_Info
*info
= (FAS216_Info
*)host
->hostdata
;
2936 fas216_checkmagic(info
);
2937 scsi_remove_host(host
);
2939 fas216_writeb(info
, REG_CMD
, CMD_RESETCHIP
);
2940 scsi_host_put(host
);
2944 * fas216_release - release all resources for FAS/NCR/AMD SCSI ic.
2945 * @host: a driver-specific filled-out structure
2947 * release all resources and put everything to bed for FAS/NCR/AMD SCSI ic.
2949 void fas216_release(struct Scsi_Host
*host
)
2951 FAS216_Info
*info
= (FAS216_Info
*)host
->hostdata
;
2953 queue_free(&info
->queues
.disconnected
);
2954 queue_free(&info
->queues
.issue
);
2957 void fas216_print_host(FAS216_Info
*info
, struct seq_file
*m
)
2965 info
->scsi
.type
, info
->scsi
.io_base
,
2966 info
->scsi
.irq
, info
->scsi
.dma
);
2969 void fas216_print_stats(FAS216_Info
*info
, struct seq_file
*m
)
2972 "Command Statistics:\n"
2979 " Disconnects: %u\n"
2981 " Bus resets : %u\n"
2982 " Host resets: %u\n",
2983 info
->stats
.queues
, info
->stats
.removes
,
2984 info
->stats
.fins
, info
->stats
.reads
,
2985 info
->stats
.writes
, info
->stats
.miscs
,
2986 info
->stats
.disconnects
, info
->stats
.aborts
,
2987 info
->stats
.bus_resets
, info
->stats
.host_resets
);
2990 void fas216_print_devices(FAS216_Info
*info
, struct seq_file
*m
)
2992 struct fas216_device
*dev
;
2993 struct scsi_device
*scd
;
2995 seq_puts(m
, "Device/Lun TaggedQ Parity Sync\n");
2997 shost_for_each_device(scd
, info
->host
) {
2998 dev
= &info
->device
[scd
->id
];
2999 seq_printf(m
, " %d/%llu ", scd
->id
, scd
->lun
);
3000 if (scd
->tagged_supported
)
3001 seq_printf(m
, "%3sabled(%3d) ",
3002 scd
->simple_tags
? "en" : "dis",
3005 seq_puts(m
, "unsupported ");
3007 seq_printf(m
, "%3sabled ", dev
->parity_enabled
? "en" : "dis");
3010 seq_printf(m
, "offset %d, %d ns\n",
3011 dev
->sof
, dev
->period
* 4);
3013 seq_puts(m
, "async\n");
3017 EXPORT_SYMBOL(fas216_init
);
3018 EXPORT_SYMBOL(fas216_add
);
3019 EXPORT_SYMBOL(fas216_queue_command
);
3020 EXPORT_SYMBOL(fas216_noqueue_command
);
3021 EXPORT_SYMBOL(fas216_intr
);
3022 EXPORT_SYMBOL(fas216_remove
);
3023 EXPORT_SYMBOL(fas216_release
);
3024 EXPORT_SYMBOL(fas216_eh_abort
);
3025 EXPORT_SYMBOL(fas216_eh_device_reset
);
3026 EXPORT_SYMBOL(fas216_eh_bus_reset
);
3027 EXPORT_SYMBOL(fas216_eh_host_reset
);
3028 EXPORT_SYMBOL(fas216_print_host
);
3029 EXPORT_SYMBOL(fas216_print_stats
);
3030 EXPORT_SYMBOL(fas216_print_devices
);
3032 MODULE_AUTHOR("Russell King");
3033 MODULE_DESCRIPTION("Generic FAS216/NCR53C9x driver core");
3034 MODULE_LICENSE("GPL");