1 /* $Id: esp.c,v 1.101 2002/01/15 06:48:55 davem Exp $
2 * esp.c: EnhancedScsiProcessor Sun SCSI driver code.
4 * Copyright (C) 1995, 1998 David S. Miller (davem@caip.rutgers.edu)
9 * 1) Maybe disable parity checking in config register one for SCSI1
10 * targets. (Gilmore says parity error on the SBus can lock up
12 * 2) Add support for DMA2 pipelining.
13 * 3) Add tagged queueing.
16 #include <linux/config.h>
17 #include <linux/kernel.h>
18 #include <linux/delay.h>
19 #include <linux/types.h>
20 #include <linux/string.h>
21 #include <linux/slab.h>
22 #include <linux/blkdev.h>
23 #include <linux/proc_fs.h>
24 #include <linux/stat.h>
25 #include <linux/init.h>
26 #include <linux/spinlock.h>
27 #include <linux/interrupt.h>
28 #include <linux/module.h>
34 #include <asm/system.h>
35 #include <asm/ptrace.h>
36 #include <asm/pgtable.h>
37 #include <asm/oplib.h>
41 #include <asm/machines.h>
42 #include <asm/idprom.h>
45 #include <scsi/scsi.h>
46 #include <scsi/scsi_cmnd.h>
47 #include <scsi/scsi_device.h>
48 #include <scsi/scsi_eh.h>
49 #include <scsi/scsi_host.h>
50 #include <scsi/scsi_tcq.h>
52 #define DRV_VERSION "1.101"
55 /* #define DEBUG_ESP_HME */
56 /* #define DEBUG_ESP_DATA */
57 /* #define DEBUG_ESP_QUEUE */
58 /* #define DEBUG_ESP_DISCONNECT */
59 /* #define DEBUG_ESP_STATUS */
60 /* #define DEBUG_ESP_PHASES */
61 /* #define DEBUG_ESP_WORKBUS */
62 /* #define DEBUG_STATE_MACHINE */
63 /* #define DEBUG_ESP_CMDS */
64 /* #define DEBUG_ESP_IRQS */
65 /* #define DEBUG_SDTR */
66 /* #define DEBUG_ESP_SG */
68 /* Use the following to sprinkle debugging messages in a way which
69 * suits you if combinations of the above become too verbose when
70 * trying to track down a specific problem.
72 /* #define DEBUG_ESP_MISC */
74 #if defined(DEBUG_ESP)
75 #define ESPLOG(foo) printk foo
78 #endif /* (DEBUG_ESP) */
80 #if defined(DEBUG_ESP_HME)
81 #define ESPHME(foo) printk foo
86 #if defined(DEBUG_ESP_DATA)
87 #define ESPDATA(foo) printk foo
92 #if defined(DEBUG_ESP_QUEUE)
93 #define ESPQUEUE(foo) printk foo
98 #if defined(DEBUG_ESP_DISCONNECT)
99 #define ESPDISC(foo) printk foo
104 #if defined(DEBUG_ESP_STATUS)
105 #define ESPSTAT(foo) printk foo
110 #if defined(DEBUG_ESP_PHASES)
111 #define ESPPHASE(foo) printk foo
113 #define ESPPHASE(foo)
116 #if defined(DEBUG_ESP_WORKBUS)
117 #define ESPBUS(foo) printk foo
122 #if defined(DEBUG_ESP_IRQS)
123 #define ESPIRQ(foo) printk foo
128 #if defined(DEBUG_SDTR)
129 #define ESPSDTR(foo) printk foo
134 #if defined(DEBUG_ESP_MISC)
135 #define ESPMISC(foo) printk foo
140 /* Command phase enumeration. */
142 not_issued
= 0x00, /* Still in the issue_SC queue. */
144 /* Various forms of selecting a target. */
145 #define in_slct_mask 0x10
146 in_slct_norm
= 0x10, /* ESP is arbitrating, normal selection */
147 in_slct_stop
= 0x11, /* ESP will select, then stop with IRQ */
148 in_slct_msg
= 0x12, /* select, then send a message */
149 in_slct_tag
= 0x13, /* select and send tagged queue msg */
150 in_slct_sneg
= 0x14, /* select and acquire sync capabilities */
152 /* Any post selection activity. */
153 #define in_phases_mask 0x20
154 in_datain
= 0x20, /* Data is transferring from the bus */
155 in_dataout
= 0x21, /* Data is transferring to the bus */
156 in_data_done
= 0x22, /* Last DMA data operation done (maybe) */
157 in_msgin
= 0x23, /* Eating message from target */
158 in_msgincont
= 0x24, /* Eating more msg bytes from target */
159 in_msgindone
= 0x25, /* Decide what to do with what we got */
160 in_msgout
= 0x26, /* Sending message to target */
161 in_msgoutdone
= 0x27, /* Done sending msg out */
162 in_cmdbegin
= 0x28, /* Sending cmd after abnormal selection */
163 in_cmdend
= 0x29, /* Done sending slow cmd */
164 in_status
= 0x2a, /* Was in status phase, finishing cmd */
165 in_freeing
= 0x2b, /* freeing the bus for cmd cmplt or disc */
166 in_the_dark
= 0x2c, /* Don't know what bus phase we are in */
168 /* Special states, ie. not normal bus transitions... */
169 #define in_spec_mask 0x80
170 in_abortone
= 0x80, /* Aborting one command currently */
171 in_abortall
= 0x81, /* Blowing away all commands we have */
172 in_resetdev
= 0x82, /* SCSI target reset in progress */
173 in_resetbus
= 0x83, /* SCSI bus reset in progress */
174 in_tgterror
= 0x84, /* Target did something stupid */
178 /* Zero has special meaning, see skipahead[12]. */
181 /*1*/ do_phase_determine
,
183 /*3*/ do_reset_complete
,
188 /* The master ring of all esp hosts we are managing in this driver. */
189 static struct esp
*espchain
;
190 static DEFINE_SPINLOCK(espchain_lock
);
191 static int esps_running
= 0;
193 /* Forward declarations. */
194 static irqreturn_t
esp_intr(int irq
, void *dev_id
, struct pt_regs
*pregs
);
196 /* Debugging routines */
197 struct esp_cmdstrings
{
200 } esp_cmd_strings
[] = {
202 { ESP_CMD_NULL
, "ESP_NOP", },
203 { ESP_CMD_FLUSH
, "FIFO_FLUSH", },
204 { ESP_CMD_RC
, "RSTESP", },
205 { ESP_CMD_RS
, "RSTSCSI", },
206 /* Disconnected State Group */
207 { ESP_CMD_RSEL
, "RESLCTSEQ", },
208 { ESP_CMD_SEL
, "SLCTNATN", },
209 { ESP_CMD_SELA
, "SLCTATN", },
210 { ESP_CMD_SELAS
, "SLCTATNSTOP", },
211 { ESP_CMD_ESEL
, "ENSLCTRESEL", },
212 { ESP_CMD_DSEL
, "DISSELRESEL", },
213 { ESP_CMD_SA3
, "SLCTATN3", },
214 { ESP_CMD_RSEL3
, "RESLCTSEQ", },
215 /* Target State Group */
216 { ESP_CMD_SMSG
, "SNDMSG", },
217 { ESP_CMD_SSTAT
, "SNDSTATUS", },
218 { ESP_CMD_SDATA
, "SNDDATA", },
219 { ESP_CMD_DSEQ
, "DISCSEQ", },
220 { ESP_CMD_TSEQ
, "TERMSEQ", },
221 { ESP_CMD_TCCSEQ
, "TRGTCMDCOMPSEQ", },
222 { ESP_CMD_DCNCT
, "DISC", },
223 { ESP_CMD_RMSG
, "RCVMSG", },
224 { ESP_CMD_RCMD
, "RCVCMD", },
225 { ESP_CMD_RDATA
, "RCVDATA", },
226 { ESP_CMD_RCSEQ
, "RCVCMDSEQ", },
227 /* Initiator State Group */
228 { ESP_CMD_TI
, "TRANSINFO", },
229 { ESP_CMD_ICCSEQ
, "INICMDSEQCOMP", },
230 { ESP_CMD_MOK
, "MSGACCEPTED", },
231 { ESP_CMD_TPAD
, "TPAD", },
232 { ESP_CMD_SATN
, "SATN", },
233 { ESP_CMD_RATN
, "RATN", },
235 #define NUM_ESP_COMMANDS ((sizeof(esp_cmd_strings)) / (sizeof(struct esp_cmdstrings)))
237 /* Print textual representation of an ESP command */
238 static inline void esp_print_cmd(u8 espcmd
)
240 u8 dma_bit
= espcmd
& ESP_CMD_DMA
;
244 for (i
= 0; i
< NUM_ESP_COMMANDS
; i
++)
245 if (esp_cmd_strings
[i
].cmdchar
== espcmd
)
247 if (i
== NUM_ESP_COMMANDS
)
248 printk("ESP_Unknown");
250 printk("%s%s", esp_cmd_strings
[i
].text
,
251 ((dma_bit
) ? "+DMA" : ""));
254 /* Print the status register's value */
255 static inline void esp_print_statreg(u8 statreg
)
260 phase
= statreg
& ESP_STAT_PMASK
;
261 printk("%s,", (phase
== ESP_DOP
? "DATA-OUT" :
262 (phase
== ESP_DIP
? "DATA-IN" :
263 (phase
== ESP_CMDP
? "COMMAND" :
264 (phase
== ESP_STATP
? "STATUS" :
265 (phase
== ESP_MOP
? "MSG-OUT" :
266 (phase
== ESP_MIP
? "MSG_IN" :
268 if (statreg
& ESP_STAT_TDONE
)
269 printk("TRANS_DONE,");
270 if (statreg
& ESP_STAT_TCNT
)
271 printk("TCOUNT_ZERO,");
272 if (statreg
& ESP_STAT_PERR
)
274 if (statreg
& ESP_STAT_SPAM
)
276 if (statreg
& ESP_STAT_INTR
)
281 /* Print the interrupt register's value */
282 static inline void esp_print_ireg(u8 intreg
)
285 if (intreg
& ESP_INTR_S
)
286 printk("SLCT_NATN ");
287 if (intreg
& ESP_INTR_SATN
)
289 if (intreg
& ESP_INTR_RSEL
)
291 if (intreg
& ESP_INTR_FDONE
)
293 if (intreg
& ESP_INTR_BSERV
)
295 if (intreg
& ESP_INTR_DC
)
297 if (intreg
& ESP_INTR_IC
)
299 if (intreg
& ESP_INTR_SR
)
300 printk("SCSI_BUS_RESET ");
304 /* Print the sequence step registers contents */
305 static inline void esp_print_seqreg(u8 stepreg
)
307 stepreg
&= ESP_STEP_VBITS
;
309 (stepreg
== ESP_STEP_ASEL
? "SLCT_ARB_CMPLT" :
310 (stepreg
== ESP_STEP_SID
? "1BYTE_MSG_SENT" :
311 (stepreg
== ESP_STEP_NCMD
? "NOT_IN_CMD_PHASE" :
312 (stepreg
== ESP_STEP_PPC
? "CMD_BYTES_LOST" :
313 (stepreg
== ESP_STEP_FINI4
? "CMD_SENT_OK" :
317 static char *phase_string(int phase
)
373 #ifdef DEBUG_STATE_MACHINE
374 static inline void esp_advance_phase(struct scsi_cmnd
*s
, int newphase
)
376 ESPLOG(("<%s>", phase_string(newphase
)));
377 s
->SCp
.sent_command
= s
->SCp
.phase
;
378 s
->SCp
.phase
= newphase
;
381 #define esp_advance_phase(__s, __newphase) \
382 (__s)->SCp.sent_command = (__s)->SCp.phase; \
383 (__s)->SCp.phase = (__newphase);
386 #ifdef DEBUG_ESP_CMDS
387 static inline void esp_cmd(struct esp
*esp
, u8 cmd
)
389 esp
->espcmdlog
[esp
->espcmdent
] = cmd
;
390 esp
->espcmdent
= (esp
->espcmdent
+ 1) & 31;
391 sbus_writeb(cmd
, esp
->eregs
+ ESP_CMD
);
394 #define esp_cmd(__esp, __cmd) \
395 sbus_writeb((__cmd), ((__esp)->eregs) + ESP_CMD)
398 #define ESP_INTSOFF(__dregs) \
399 sbus_writel(sbus_readl((__dregs)+DMA_CSR)&~(DMA_INT_ENAB), (__dregs)+DMA_CSR)
400 #define ESP_INTSON(__dregs) \
401 sbus_writel(sbus_readl((__dregs)+DMA_CSR)|DMA_INT_ENAB, (__dregs)+DMA_CSR)
402 #define ESP_IRQ_P(__dregs) \
403 (sbus_readl((__dregs)+DMA_CSR) & (DMA_HNDL_INTR|DMA_HNDL_ERROR))
405 /* How we use the various Linux SCSI data structures for operation.
409 * We keep track of the synchronous capabilities of a target
410 * in the device member, using sync_min_period and
411 * sync_max_offset. These are the values we directly write
412 * into the ESP registers while running a command. If offset
413 * is zero the ESP will use asynchronous transfers.
414 * If the borken flag is set we assume we shouldn't even bother
415 * trying to negotiate for synchronous transfer as this target
416 * is really stupid. If we notice the target is dropping the
417 * bus, and we have been allowing it to disconnect, we clear
418 * the disconnect flag.
422 /* Manipulation of the ESP command queues. Thanks to the aha152x driver
423 * and its author, Juergen E. Fischer, for the methods used here.
424 * Note that these are per-ESP queues, not global queues like
425 * the aha152x driver uses.
427 static inline void append_SC(struct scsi_cmnd
**SC
, struct scsi_cmnd
*new_SC
)
429 struct scsi_cmnd
*end
;
431 new_SC
->host_scribble
= (unsigned char *) NULL
;
435 for (end
=*SC
;end
->host_scribble
;end
=(struct scsi_cmnd
*)end
->host_scribble
)
437 end
->host_scribble
= (unsigned char *) new_SC
;
441 static inline void prepend_SC(struct scsi_cmnd
**SC
, struct scsi_cmnd
*new_SC
)
443 new_SC
->host_scribble
= (unsigned char *) *SC
;
447 static inline struct scsi_cmnd
*remove_first_SC(struct scsi_cmnd
**SC
)
449 struct scsi_cmnd
*ptr
;
452 *SC
= (struct scsi_cmnd
*) (*SC
)->host_scribble
;
456 static inline struct scsi_cmnd
*remove_SC(struct scsi_cmnd
**SC
, int target
, int lun
)
458 struct scsi_cmnd
*ptr
, *prev
;
460 for (ptr
= *SC
, prev
= NULL
;
461 ptr
&& ((ptr
->device
->id
!= target
) || (ptr
->device
->lun
!= lun
));
462 prev
= ptr
, ptr
= (struct scsi_cmnd
*) ptr
->host_scribble
)
466 prev
->host_scribble
=ptr
->host_scribble
;
468 *SC
=(struct scsi_cmnd
*)ptr
->host_scribble
;
473 /* Resetting various pieces of the ESP scsi driver chipset/buses. */
474 static void esp_reset_dma(struct esp
*esp
)
476 int can_do_burst16
, can_do_burst32
, can_do_burst64
;
480 can_do_burst16
= (esp
->bursts
& DMA_BURST16
) != 0;
481 can_do_burst32
= (esp
->bursts
& DMA_BURST32
) != 0;
484 if (sbus_can_dma_64bit(esp
->sdev
))
486 if (sbus_can_burst64(esp
->sdev
))
487 can_do_burst64
= (esp
->bursts
& DMA_BURST64
) != 0;
489 /* Punt the DVMA into a known state. */
490 if (esp
->dma
->revision
!= dvmahme
) {
491 tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
);
492 sbus_writel(tmp
| DMA_RST_SCSI
, esp
->dregs
+ DMA_CSR
);
493 sbus_writel(tmp
& ~DMA_RST_SCSI
, esp
->dregs
+ DMA_CSR
);
495 switch (esp
->dma
->revision
) {
497 /* This is the HME DVMA gate array. */
499 sbus_writel(DMA_RESET_FAS366
, esp
->dregs
+ DMA_CSR
);
500 sbus_writel(DMA_RST_SCSI
, esp
->dregs
+ DMA_CSR
);
502 esp
->prev_hme_dmacsr
= (DMA_PARITY_OFF
|DMA_2CLKS
|DMA_SCSI_DISAB
|DMA_INT_ENAB
);
503 esp
->prev_hme_dmacsr
&= ~(DMA_ENABLE
|DMA_ST_WRITE
|DMA_BRST_SZ
);
506 esp
->prev_hme_dmacsr
|= DMA_BRST64
;
507 else if (can_do_burst32
)
508 esp
->prev_hme_dmacsr
|= DMA_BRST32
;
511 esp
->prev_hme_dmacsr
|= DMA_SCSI_SBUS64
;
512 sbus_set_sbus64(esp
->sdev
, esp
->bursts
);
515 /* This chip is horrible. */
516 while (sbus_readl(esp
->dregs
+ DMA_CSR
) & DMA_PEND_READ
)
519 sbus_writel(0, esp
->dregs
+ DMA_CSR
);
520 sbus_writel(esp
->prev_hme_dmacsr
, esp
->dregs
+ DMA_CSR
);
522 /* This is necessary to avoid having the SCSI channel
523 * engine lock up on us.
525 sbus_writel(0, esp
->dregs
+ DMA_ADDR
);
529 /* This is the gate array found in the sun4m
530 * NCR SBUS I/O subsystem.
532 if (esp
->erev
!= esp100
) {
533 tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
);
534 sbus_writel(tmp
| DMA_3CLKS
, esp
->dregs
+ DMA_CSR
);
538 tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
);
541 if (can_do_burst32
) {
545 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
548 /* This is the DMA unit found on SCSI/Ether cards. */
549 tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
);
550 tmp
|= DMA_ADD_ENABLE
;
551 tmp
&= ~DMA_BCNT_ENAB
;
552 if (!can_do_burst32
&& can_do_burst16
) {
553 tmp
|= DMA_ESC_BURST
;
555 tmp
&= ~(DMA_ESC_BURST
);
557 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
562 ESP_INTSON(esp
->dregs
);
565 /* Reset the ESP chip, _not_ the SCSI bus. */
566 static void __init
esp_reset_esp(struct esp
*esp
)
568 u8 family_code
, version
;
571 /* Now reset the ESP chip */
572 esp_cmd(esp
, ESP_CMD_RC
);
573 esp_cmd(esp
, ESP_CMD_NULL
| ESP_CMD_DMA
);
574 esp_cmd(esp
, ESP_CMD_NULL
| ESP_CMD_DMA
);
576 /* Reload the configuration registers */
577 sbus_writeb(esp
->cfact
, esp
->eregs
+ ESP_CFACT
);
579 sbus_writeb(esp
->prev_stp
, esp
->eregs
+ ESP_STP
);
581 sbus_writeb(esp
->prev_soff
, esp
->eregs
+ ESP_SOFF
);
582 sbus_writeb(esp
->neg_defp
, esp
->eregs
+ ESP_TIMEO
);
584 /* This is the only point at which it is reliable to read
585 * the ID-code for a fast ESP chip variants.
587 esp
->max_period
= ((35 * esp
->ccycle
) / 1000);
588 if (esp
->erev
== fast
) {
589 version
= sbus_readb(esp
->eregs
+ ESP_UID
);
590 family_code
= (version
& 0xf8) >> 3;
591 if (family_code
== 0x02)
593 else if (family_code
== 0x0a)
594 esp
->erev
= fashme
; /* Version is usually '5'. */
597 ESPMISC(("esp%d: FAST chip is %s (family=%d, version=%d)\n",
599 (esp
->erev
== fas236
) ? "fas236" :
600 ((esp
->erev
== fas100a
) ? "fas100a" :
601 "fasHME"), family_code
, (version
& 7)));
603 esp
->min_period
= ((4 * esp
->ccycle
) / 1000);
605 esp
->min_period
= ((5 * esp
->ccycle
) / 1000);
607 esp
->max_period
= (esp
->max_period
+ 3)>>2;
608 esp
->min_period
= (esp
->min_period
+ 3)>>2;
610 sbus_writeb(esp
->config1
, esp
->eregs
+ ESP_CFG1
);
616 sbus_writeb(esp
->config2
, esp
->eregs
+ ESP_CFG2
);
620 sbus_writeb(esp
->config2
, esp
->eregs
+ ESP_CFG2
);
621 esp
->prev_cfg3
= esp
->config3
[0];
622 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
625 esp
->config2
|= (ESP_CONFIG2_HME32
| ESP_CONFIG2_HMEFENAB
);
628 /* Fast 236 or HME */
629 sbus_writeb(esp
->config2
, esp
->eregs
+ ESP_CFG2
);
630 for (i
= 0; i
< 16; i
++) {
631 if (esp
->erev
== fashme
) {
634 cfg3
= ESP_CONFIG3_FCLOCK
| ESP_CONFIG3_OBPUSH
;
635 if (esp
->scsi_id
>= 8)
636 cfg3
|= ESP_CONFIG3_IDBIT3
;
637 esp
->config3
[i
] |= cfg3
;
639 esp
->config3
[i
] |= ESP_CONFIG3_FCLK
;
642 esp
->prev_cfg3
= esp
->config3
[0];
643 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
644 if (esp
->erev
== fashme
) {
655 sbus_writeb(esp
->config2
, esp
->eregs
+ ESP_CFG2
);
656 for (i
= 0; i
< 16; i
++)
657 esp
->config3
[i
] |= ESP_CONFIG3_FCLOCK
;
658 esp
->prev_cfg3
= esp
->config3
[0];
659 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
663 panic("esp: what could it be... I wonder...");
667 /* Eat any bitrot in the chip */
668 sbus_readb(esp
->eregs
+ ESP_INTRPT
);
672 /* This places the ESP into a known state at boot time. */
673 static void __init
esp_bootup_reset(struct esp
*esp
)
683 /* Reset the SCSI bus, but tell ESP not to generate an irq */
684 tmp
= sbus_readb(esp
->eregs
+ ESP_CFG1
);
685 tmp
|= ESP_CONFIG1_SRRDISAB
;
686 sbus_writeb(tmp
, esp
->eregs
+ ESP_CFG1
);
688 esp_cmd(esp
, ESP_CMD_RS
);
691 sbus_writeb(esp
->config1
, esp
->eregs
+ ESP_CFG1
);
693 /* Eat any bitrot in the chip and we are done... */
694 sbus_readb(esp
->eregs
+ ESP_INTRPT
);
697 static void esp_chain_add(struct esp
*esp
)
699 spin_lock_irq(&espchain_lock
);
701 struct esp
*elink
= espchain
;
709 spin_unlock_irq(&espchain_lock
);
712 static void esp_chain_del(struct esp
*esp
)
714 spin_lock_irq(&espchain_lock
);
715 if (espchain
== esp
) {
716 espchain
= esp
->next
;
718 struct esp
*elink
= espchain
;
719 while (elink
->next
!= esp
)
721 elink
->next
= esp
->next
;
724 spin_unlock_irq(&espchain_lock
);
727 static int __init
esp_find_dvma(struct esp
*esp
, struct sbus_dev
*dma_sdev
)
729 struct sbus_dev
*sdev
= esp
->sdev
;
730 struct sbus_dma
*dma
;
732 if (dma_sdev
!= NULL
) {
734 if (dma
->sdev
== dma_sdev
)
739 /* If allocated already, can't use it. */
743 if (dma
->sdev
== NULL
)
746 /* If bus + slot are the same and it has the
747 * correct OBP name, it's ours.
749 if (sdev
->bus
== dma
->sdev
->bus
&&
750 sdev
->slot
== dma
->sdev
->slot
&&
751 (!strcmp(dma
->sdev
->prom_name
, "dma") ||
752 !strcmp(dma
->sdev
->prom_name
, "espdma")))
757 /* If we don't know how to handle the dvma,
758 * do not use this device.
761 printk("Cannot find dvma for ESP%d's SCSI\n", esp
->esp_id
);
764 if (dma
->allocated
) {
765 printk("esp%d: can't use my espdma\n", esp
->esp_id
);
770 esp
->dregs
= dma
->regs
;
775 static int __init
esp_map_regs(struct esp
*esp
, int hme
)
777 struct sbus_dev
*sdev
= esp
->sdev
;
778 struct resource
*res
;
780 /* On HME, two reg sets exist, first is DVMA,
781 * second is ESP registers.
784 res
= &sdev
->resource
[1];
786 res
= &sdev
->resource
[0];
788 esp
->eregs
= sbus_ioremap(res
, 0, ESP_REG_SIZE
, "ESP Registers");
795 static int __init
esp_map_cmdarea(struct esp
*esp
)
797 struct sbus_dev
*sdev
= esp
->sdev
;
799 esp
->esp_command
= sbus_alloc_consistent(sdev
, 16,
800 &esp
->esp_command_dvma
);
801 if (esp
->esp_command
== NULL
||
802 esp
->esp_command_dvma
== 0)
807 static int __init
esp_register_irq(struct esp
*esp
)
809 esp
->ehost
->irq
= esp
->irq
= esp
->sdev
->irqs
[0];
811 /* We used to try various overly-clever things to
812 * reduce the interrupt processing overhead on
813 * sun4c/sun4m when multiple ESP's shared the
814 * same IRQ. It was too complex and messy to
817 if (request_irq(esp
->ehost
->irq
, esp_intr
,
818 SA_SHIRQ
, "ESP SCSI", esp
)) {
819 printk("esp%d: Cannot acquire irq line\n",
824 printk("esp%d: IRQ %s ", esp
->esp_id
,
825 __irq_itoa(esp
->ehost
->irq
));
830 static void __init
esp_get_scsi_id(struct esp
*esp
)
832 struct sbus_dev
*sdev
= esp
->sdev
;
834 esp
->scsi_id
= prom_getintdefault(esp
->prom_node
,
837 if (esp
->scsi_id
== -1)
838 esp
->scsi_id
= prom_getintdefault(esp
->prom_node
,
841 if (esp
->scsi_id
== -1)
842 esp
->scsi_id
= (sdev
->bus
== NULL
) ? 7 :
843 prom_getintdefault(sdev
->bus
->prom_node
,
846 esp
->ehost
->this_id
= esp
->scsi_id
;
847 esp
->scsi_id_mask
= (1 << esp
->scsi_id
);
851 static void __init
esp_get_clock_params(struct esp
*esp
)
853 struct sbus_dev
*sdev
= esp
->sdev
;
854 int prom_node
= esp
->prom_node
;
859 if (sdev
!= NULL
&& sdev
->bus
!= NULL
)
860 sbus_prom_node
= sdev
->bus
->prom_node
;
864 /* This is getting messy but it has to be done
865 * correctly or else you get weird behavior all
866 * over the place. We are trying to basically
867 * figure out three pieces of information.
869 * a) Clock Conversion Factor
871 * This is a representation of the input
872 * crystal clock frequency going into the
873 * ESP on this machine. Any operation whose
874 * timing is longer than 400ns depends on this
875 * value being correct. For example, you'll
876 * get blips for arbitration/selection during
877 * high load or with multiple targets if this
878 * is not set correctly.
880 * b) Selection Time-Out
882 * The ESP isn't very bright and will arbitrate
883 * for the bus and try to select a target
884 * forever if you let it. This value tells
885 * the ESP when it has taken too long to
886 * negotiate and that it should interrupt
887 * the CPU so we can see what happened.
888 * The value is computed as follows (from
889 * NCR/Symbios chip docs).
891 * (Time Out Period) * (Input Clock)
892 * STO = ----------------------------------
893 * (8192) * (Clock Conversion Factor)
895 * You usually want the time out period to be
896 * around 250ms, I think we'll set it a little
897 * bit higher to account for fully loaded SCSI
898 * bus's and slow devices that don't respond so
899 * quickly to selection attempts. (yeah, I know
900 * this is out of spec. but there is a lot of
901 * buggy pieces of firmware out there so bite me)
903 * c) Imperical constants for synchronous offset
904 * and transfer period register values
906 * This entails the smallest and largest sync
907 * period we could ever handle on this ESP.
910 fmhz
= prom_getintdefault(prom_node
, "clock-frequency", -1);
912 fmhz
= (!sbus_prom_node
) ? 0 :
913 prom_getintdefault(sbus_prom_node
, "clock-frequency", -1);
915 if (fmhz
<= (5000000))
918 ccf
= (((5000000 - 1) + (fmhz
))/(5000000));
920 if (!ccf
|| ccf
> 8) {
921 /* If we can't find anything reasonable,
922 * just assume 20MHZ. This is the clock
923 * frequency of the older sun4c's where I've
924 * been unable to find the clock-frequency
925 * PROM property. All other machines provide
926 * useful values it seems.
932 if (ccf
== (ESP_CCF_F7
+ 1))
933 esp
->cfact
= ESP_CCF_F0
;
934 else if (ccf
== ESP_CCF_NEVER
)
935 esp
->cfact
= ESP_CCF_F2
;
938 esp
->raw_cfact
= ccf
;
941 esp
->ccycle
= ESP_MHZ_TO_CYCLE(fmhz
);
942 esp
->ctick
= ESP_TICK(ccf
, esp
->ccycle
);
943 esp
->neg_defp
= ESP_NEG_DEFP(fmhz
, ccf
);
944 esp
->sync_defp
= SYNC_DEFP_SLOW
;
946 printk("SCSI ID %d Clk %dMHz CCYC=%d CCF=%d TOut %d ",
947 esp
->scsi_id
, (fmhz
/ 1000000),
948 (int)esp
->ccycle
, (int)ccf
, (int) esp
->neg_defp
);
951 static void __init
esp_get_bursts(struct esp
*esp
, struct sbus_dev
*dma
)
953 struct sbus_dev
*sdev
= esp
->sdev
;
956 bursts
= prom_getintdefault(esp
->prom_node
, "burst-sizes", 0xff);
959 u8 tmp
= prom_getintdefault(dma
->prom_node
,
960 "burst-sizes", 0xff);
966 u8 tmp
= prom_getintdefault(sdev
->bus
->prom_node
,
967 "burst-sizes", 0xff);
972 if (bursts
== 0xff ||
973 (bursts
& DMA_BURST16
) == 0 ||
974 (bursts
& DMA_BURST32
) == 0)
975 bursts
= (DMA_BURST32
- 1);
977 esp
->bursts
= bursts
;
980 static void __init
esp_get_revision(struct esp
*esp
)
984 esp
->config1
= (ESP_CONFIG1_PENABLE
| (esp
->scsi_id
& 7));
985 esp
->config2
= (ESP_CONFIG2_SCSI2ENAB
| ESP_CONFIG2_REGPARITY
);
986 sbus_writeb(esp
->config2
, esp
->eregs
+ ESP_CFG2
);
988 tmp
= sbus_readb(esp
->eregs
+ ESP_CFG2
);
989 tmp
&= ~ESP_CONFIG2_MAGIC
;
990 if (tmp
!= (ESP_CONFIG2_SCSI2ENAB
| ESP_CONFIG2_REGPARITY
)) {
991 /* If what we write to cfg2 does not come back, cfg2
992 * is not implemented, therefore this must be a plain
996 printk("NCR53C90(esp100)\n");
999 esp
->prev_cfg3
= esp
->config3
[0] = 5;
1000 sbus_writeb(esp
->config2
, esp
->eregs
+ ESP_CFG2
);
1001 sbus_writeb(0, esp
->eregs
+ ESP_CFG3
);
1002 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
1004 tmp
= sbus_readb(esp
->eregs
+ ESP_CFG3
);
1006 /* The cfg2 register is implemented, however
1007 * cfg3 is not, must be esp100a.
1009 esp
->erev
= esp100a
;
1010 printk("NCR53C90A(esp100a)\n");
1014 for (target
= 0; target
< 16; target
++)
1015 esp
->config3
[target
] = 0;
1017 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
1019 /* All of cfg{1,2,3} implemented, must be one of
1020 * the fas variants, figure out which one.
1022 if (esp
->raw_cfact
> ESP_CCF_F5
) {
1024 esp
->sync_defp
= SYNC_DEFP_FAST
;
1025 printk("NCR53C9XF(espfast)\n");
1028 printk("NCR53C9x(esp236)\n");
1031 sbus_writeb(esp
->config2
, esp
->eregs
+ ESP_CFG2
);
1036 static void __init
esp_init_swstate(struct esp
*esp
)
1040 /* Command queues... */
1041 esp
->current_SC
= NULL
;
1042 esp
->disconnected_SC
= NULL
;
1043 esp
->issue_SC
= NULL
;
1045 /* Target and current command state... */
1046 esp
->targets_present
= 0;
1047 esp
->resetting_bus
= 0;
1050 init_waitqueue_head(&esp
->reset_queue
);
1053 for(i
= 0; i
< 32; i
++)
1054 esp
->espcmdlog
[i
] = 0;
1057 /* MSG phase state... */
1058 for(i
= 0; i
< 16; i
++) {
1059 esp
->cur_msgout
[i
] = 0;
1060 esp
->cur_msgin
[i
] = 0;
1062 esp
->prevmsgout
= esp
->prevmsgin
= 0;
1063 esp
->msgout_len
= esp
->msgin_len
= 0;
1065 /* Clear the one behind caches to hold unmatchable values. */
1066 esp
->prev_soff
= esp
->prev_stp
= esp
->prev_cfg3
= 0xff;
1067 esp
->prev_hme_dmacsr
= 0xffffffff;
1070 static int __init
detect_one_esp(struct scsi_host_template
*tpnt
, struct sbus_dev
*esp_dev
,
1071 struct sbus_dev
*espdma
, struct sbus_bus
*sbus
,
1074 struct Scsi_Host
*esp_host
= scsi_register(tpnt
, sizeof(struct esp
));
1078 printk("ESP: Cannot register SCSI host\n");
1082 esp_host
->max_id
= 16;
1083 esp
= (struct esp
*) esp_host
->hostdata
;
1084 esp
->ehost
= esp_host
;
1085 esp
->sdev
= esp_dev
;
1087 esp
->prom_node
= esp_dev
->prom_node
;
1088 prom_getstring(esp
->prom_node
, "name", esp
->prom_name
,
1089 sizeof(esp
->prom_name
));
1092 if (esp_find_dvma(esp
, espdma
) < 0)
1094 if (esp_map_regs(esp
, hme
) < 0) {
1095 printk("ESP registers unmappable");
1096 goto fail_dvma_release
;
1098 if (esp_map_cmdarea(esp
) < 0) {
1099 printk("ESP DVMA transport area unmappable");
1100 goto fail_unmap_regs
;
1102 if (esp_register_irq(esp
) < 0)
1103 goto fail_unmap_cmdarea
;
1105 esp_get_scsi_id(esp
);
1107 esp
->diff
= prom_getbool(esp
->prom_node
, "differential");
1109 printk("Differential ");
1111 esp_get_clock_params(esp
);
1112 esp_get_bursts(esp
, espdma
);
1113 esp_get_revision(esp
);
1114 esp_init_swstate(esp
);
1116 esp_bootup_reset(esp
);
1121 sbus_free_consistent(esp
->sdev
, 16,
1122 (void *) esp
->esp_command
,
1123 esp
->esp_command_dvma
);
1126 sbus_iounmap(esp
->eregs
, ESP_REG_SIZE
);
1129 esp
->dma
->allocated
= 0;
1133 scsi_unregister(esp_host
);
1137 /* Detecting ESP chips on the machine. This is the simple and easy
1143 #include <asm/sun4paddr.h>
1145 static int __init
esp_detect(struct scsi_host_template
*tpnt
)
1147 static struct sbus_dev esp_dev
;
1148 int esps_in_use
= 0;
1152 if (sun4_esp_physaddr
) {
1153 memset (&esp_dev
, 0, sizeof(esp_dev
));
1154 esp_dev
.reg_addrs
[0].phys_addr
= sun4_esp_physaddr
;
1155 esp_dev
.irqs
[0] = 4;
1156 esp_dev
.resource
[0].start
= sun4_esp_physaddr
;
1157 esp_dev
.resource
[0].end
= sun4_esp_physaddr
+ ESP_REG_SIZE
- 1;
1158 esp_dev
.resource
[0].flags
= IORESOURCE_IO
;
1160 if (!detect_one_esp(tpnt
, &esp_dev
, NULL
, NULL
, 0, 0))
1162 printk("ESP: Total of 1 ESP hosts found, %d actually in use.\n", esps_in_use
);
1163 esps_running
= esps_in_use
;
1168 #else /* !CONFIG_SUN4 */
1170 static int __init
esp_detect(struct scsi_host_template
*tpnt
)
1172 struct sbus_bus
*sbus
;
1173 struct sbus_dev
*esp_dev
, *sbdev_iter
;
1174 int nesps
= 0, esps_in_use
= 0;
1181 panic("No SBUS in esp_detect()");
1184 for_each_sbus(sbus
) {
1185 for_each_sbusdev(sbdev_iter
, sbus
) {
1186 struct sbus_dev
*espdma
= NULL
;
1189 /* Is it an esp sbus device? */
1190 esp_dev
= sbdev_iter
;
1191 if (strcmp(esp_dev
->prom_name
, "esp") &&
1192 strcmp(esp_dev
->prom_name
, "SUNW,esp")) {
1193 if (!strcmp(esp_dev
->prom_name
, "SUNW,fas")) {
1197 if (!esp_dev
->child
||
1198 (strcmp(esp_dev
->prom_name
, "espdma") &&
1199 strcmp(esp_dev
->prom_name
, "dma")))
1200 continue; /* nope... */
1202 esp_dev
= esp_dev
->child
;
1203 if (strcmp(esp_dev
->prom_name
, "esp") &&
1204 strcmp(esp_dev
->prom_name
, "SUNW,esp"))
1205 continue; /* how can this happen? */
1209 if (detect_one_esp(tpnt
, esp_dev
, espdma
, sbus
, nesps
++, hme
) < 0)
1213 } /* for each sbusdev */
1214 } /* for each sbus */
1215 printk("ESP: Total of %d ESP hosts found, %d actually in use.\n", nesps
,
1217 esps_running
= esps_in_use
;
1221 #endif /* !CONFIG_SUN4 */
1225 static int esp_release(struct Scsi_Host
*host
)
1227 struct esp
*esp
= (struct esp
*) host
->hostdata
;
1229 ESP_INTSOFF(esp
->dregs
);
1235 free_irq(esp
->ehost
->irq
, esp
);
1236 sbus_free_consistent(esp
->sdev
, 16,
1237 (void *) esp
->esp_command
, esp
->esp_command_dvma
);
1238 sbus_iounmap(esp
->eregs
, ESP_REG_SIZE
);
1239 esp
->dma
->allocated
= 0;
1245 /* The info function will return whatever useful
1246 * information the developer sees fit. If not provided, then
1247 * the name field will be used instead.
1249 static const char *esp_info(struct Scsi_Host
*host
)
1253 esp
= (struct esp
*) host
->hostdata
;
1254 switch (esp
->erev
) {
1256 return "Sparc ESP100 (NCR53C90)";
1258 return "Sparc ESP100A (NCR53C90A)";
1260 return "Sparc ESP236";
1262 return "Sparc ESP236-FAST";
1264 return "Sparc ESP366-HME";
1266 return "Sparc ESP100A-FAST";
1268 return "Bogon ESP revision";
1272 /* From Wolfgang Stanglmeier's NCR scsi driver. */
1281 static void copy_mem_info(struct info_str
*info
, char *data
, int len
)
1283 if (info
->pos
+ len
> info
->length
)
1284 len
= info
->length
- info
->pos
;
1286 if (info
->pos
+ len
< info
->offset
) {
1290 if (info
->pos
< info
->offset
) {
1291 data
+= (info
->offset
- info
->pos
);
1292 len
-= (info
->offset
- info
->pos
);
1296 memcpy(info
->buffer
+ info
->pos
, data
, len
);
1301 static int copy_info(struct info_str
*info
, char *fmt
, ...)
1307 va_start(args
, fmt
);
1308 len
= vsprintf(buf
, fmt
, args
);
1311 copy_mem_info(info
, buf
, len
);
1315 static int esp_host_info(struct esp
*esp
, char *ptr
, off_t offset
, int len
)
1317 struct scsi_device
*sdev
;
1318 struct info_str info
;
1323 info
.offset
= offset
;
1326 copy_info(&info
, "Sparc ESP Host Adapter:\n");
1327 copy_info(&info
, "\tPROM node\t\t%08x\n", (unsigned int) esp
->prom_node
);
1328 copy_info(&info
, "\tPROM name\t\t%s\n", esp
->prom_name
);
1329 copy_info(&info
, "\tESP Model\t\t");
1330 switch (esp
->erev
) {
1332 copy_info(&info
, "ESP100\n");
1335 copy_info(&info
, "ESP100A\n");
1338 copy_info(&info
, "ESP236\n");
1341 copy_info(&info
, "FAS236\n");
1344 copy_info(&info
, "FAS100A\n");
1347 copy_info(&info
, "FAST\n");
1350 copy_info(&info
, "Happy Meal FAS\n");
1354 copy_info(&info
, "Unknown!\n");
1357 copy_info(&info
, "\tDMA Revision\t\t");
1358 switch (esp
->dma
->revision
) {
1360 copy_info(&info
, "Rev 0\n");
1363 copy_info(&info
, "ESC Rev 1\n");
1366 copy_info(&info
, "Rev 1\n");
1369 copy_info(&info
, "Rev 2\n");
1372 copy_info(&info
, "Rev 3\n");
1375 copy_info(&info
, "Rev 1+\n");
1378 copy_info(&info
, "Rev HME/FAS\n");
1381 copy_info(&info
, "Unknown!\n");
1384 copy_info(&info
, "\tLive Targets\t\t[ ");
1385 for (i
= 0; i
< 15; i
++) {
1386 if (esp
->targets_present
& (1 << i
))
1387 copy_info(&info
, "%d ", i
);
1389 copy_info(&info
, "]\n\n");
1391 /* Now describe the state of each existing target. */
1392 copy_info(&info
, "Target #\tconfig3\t\tSync Capabilities\tDisconnect\tWide\n");
1394 shost_for_each_device(sdev
, esp
->ehost
) {
1395 struct esp_device
*esp_dev
= sdev
->hostdata
;
1398 if (!(esp
->targets_present
& (1 << id
)))
1401 copy_info(&info
, "%d\t\t", id
);
1402 copy_info(&info
, "%08lx\t", esp
->config3
[id
]);
1403 copy_info(&info
, "[%02lx,%02lx]\t\t\t",
1404 esp_dev
->sync_max_offset
,
1405 esp_dev
->sync_min_period
);
1406 copy_info(&info
, "%s\t\t",
1407 esp_dev
->disconnect
? "yes" : "no");
1408 copy_info(&info
, "%s\n",
1409 (esp
->config3
[id
] & ESP_CONFIG3_EWIDE
) ? "yes" : "no");
1411 return info
.pos
> info
.offset
? info
.pos
- info
.offset
: 0;
1414 /* ESP proc filesystem code. */
1415 static int esp_proc_info(struct Scsi_Host
*host
, char *buffer
, char **start
, off_t offset
,
1416 int length
, int inout
)
1421 return -EINVAL
; /* not yet */
1424 if (esp
->ehost
== host
)
1433 return esp_host_info(esp
, buffer
, offset
, length
);
1436 static void esp_get_dmabufs(struct esp
*esp
, struct scsi_cmnd
*sp
)
1438 if (sp
->use_sg
== 0) {
1439 sp
->SCp
.this_residual
= sp
->request_bufflen
;
1440 sp
->SCp
.buffer
= (struct scatterlist
*) sp
->request_buffer
;
1441 sp
->SCp
.buffers_residual
= 0;
1442 if (sp
->request_bufflen
) {
1443 sp
->SCp
.have_data_in
= sbus_map_single(esp
->sdev
, sp
->SCp
.buffer
,
1444 sp
->SCp
.this_residual
,
1445 sp
->sc_data_direction
);
1446 sp
->SCp
.ptr
= (char *) ((unsigned long)sp
->SCp
.have_data_in
);
1451 sp
->SCp
.buffer
= (struct scatterlist
*) sp
->buffer
;
1452 sp
->SCp
.buffers_residual
= sbus_map_sg(esp
->sdev
,
1455 sp
->sc_data_direction
);
1456 sp
->SCp
.this_residual
= sg_dma_len(sp
->SCp
.buffer
);
1457 sp
->SCp
.ptr
= (char *) ((unsigned long)sg_dma_address(sp
->SCp
.buffer
));
1461 static void esp_release_dmabufs(struct esp
*esp
, struct scsi_cmnd
*sp
)
1464 sbus_unmap_sg(esp
->sdev
, sp
->buffer
, sp
->use_sg
,
1465 sp
->sc_data_direction
);
1466 } else if (sp
->request_bufflen
) {
1467 sbus_unmap_single(esp
->sdev
,
1468 sp
->SCp
.have_data_in
,
1469 sp
->request_bufflen
,
1470 sp
->sc_data_direction
);
1474 static void esp_restore_pointers(struct esp
*esp
, struct scsi_cmnd
*sp
)
1476 struct esp_pointers
*ep
= &esp
->data_pointers
[sp
->device
->id
];
1478 sp
->SCp
.ptr
= ep
->saved_ptr
;
1479 sp
->SCp
.buffer
= ep
->saved_buffer
;
1480 sp
->SCp
.this_residual
= ep
->saved_this_residual
;
1481 sp
->SCp
.buffers_residual
= ep
->saved_buffers_residual
;
1484 static void esp_save_pointers(struct esp
*esp
, struct scsi_cmnd
*sp
)
1486 struct esp_pointers
*ep
= &esp
->data_pointers
[sp
->device
->id
];
1488 ep
->saved_ptr
= sp
->SCp
.ptr
;
1489 ep
->saved_buffer
= sp
->SCp
.buffer
;
1490 ep
->saved_this_residual
= sp
->SCp
.this_residual
;
1491 ep
->saved_buffers_residual
= sp
->SCp
.buffers_residual
;
1496 * 1) Never ever panic while something is live on the bus.
1497 * If there is to be any chance of syncing the disks this
1498 * rule is to be obeyed.
1500 * 2) Any target that causes a foul condition will no longer
1501 * have synchronous transfers done to it, no questions
1504 * 3) Keep register accesses to a minimum. Think about some
1505 * day when we have Xbus machines this is running on and
1506 * the ESP chip is on the other end of the machine on a
1507 * different board from the cpu where this is running.
1510 /* Fire off a command. We assume the bus is free and that the only
1511 * case where we could see an interrupt is where we have disconnected
1512 * commands active and they are trying to reselect us.
1514 static inline void esp_check_cmd(struct esp
*esp
, struct scsi_cmnd
*sp
)
1516 switch (sp
->cmd_len
) {
1520 esp
->esp_slowcmd
= 0;
1524 esp
->esp_slowcmd
= 1;
1525 esp
->esp_scmdleft
= sp
->cmd_len
;
1526 esp
->esp_scmdp
= &sp
->cmnd
[0];
1531 static inline void build_sync_nego_msg(struct esp
*esp
, int period
, int offset
)
1533 esp
->cur_msgout
[0] = EXTENDED_MESSAGE
;
1534 esp
->cur_msgout
[1] = 3;
1535 esp
->cur_msgout
[2] = EXTENDED_SDTR
;
1536 esp
->cur_msgout
[3] = period
;
1537 esp
->cur_msgout
[4] = offset
;
1538 esp
->msgout_len
= 5;
1541 /* SIZE is in bits, currently HME only supports 16 bit wide transfers. */
1542 static inline void build_wide_nego_msg(struct esp
*esp
, int size
)
1544 esp
->cur_msgout
[0] = EXTENDED_MESSAGE
;
1545 esp
->cur_msgout
[1] = 2;
1546 esp
->cur_msgout
[2] = EXTENDED_WDTR
;
1549 esp
->cur_msgout
[3] = 2;
1552 esp
->cur_msgout
[3] = 1;
1556 esp
->cur_msgout
[3] = 0;
1560 esp
->msgout_len
= 4;
1563 static void esp_exec_cmd(struct esp
*esp
)
1565 struct scsi_cmnd
*SCptr
;
1566 struct scsi_device
*SDptr
;
1567 struct esp_device
*esp_dev
;
1568 volatile u8
*cmdp
= esp
->esp_command
;
1573 /* Hold off if we have disconnected commands and
1574 * an IRQ is showing...
1576 if (esp
->disconnected_SC
&& ESP_IRQ_P(esp
->dregs
))
1579 /* Grab first member of the issue queue. */
1580 SCptr
= esp
->current_SC
= remove_first_SC(&esp
->issue_SC
);
1582 /* Safe to panic here because current_SC is null. */
1584 panic("esp: esp_exec_cmd and issue queue is NULL");
1586 SDptr
= SCptr
->device
;
1587 esp_dev
= SDptr
->hostdata
;
1588 lun
= SCptr
->device
->lun
;
1589 target
= SCptr
->device
->id
;
1592 esp
->msgout_len
= 0;
1594 /* Send it out whole, or piece by piece? The ESP
1595 * only knows how to automatically send out 6, 10,
1596 * and 12 byte commands. I used to think that the
1597 * Linux SCSI code would never throw anything other
1598 * than that to us, but then again there is the
1599 * SCSI generic driver which can send us anything.
1601 esp_check_cmd(esp
, SCptr
);
1603 /* If arbitration/selection is successful, the ESP will leave
1604 * ATN asserted, causing the target to go into message out
1605 * phase. The ESP will feed the target the identify and then
1606 * the target can only legally go to one of command,
1607 * datain/out, status, or message in phase, or stay in message
1608 * out phase (should we be trying to send a sync negotiation
1609 * message after the identify). It is not allowed to drop
1610 * BSY, but some buggy targets do and we check for this
1611 * condition in the selection complete code. Most of the time
1612 * we'll make the command bytes available to the ESP and it
1613 * will not interrupt us until it finishes command phase, we
1614 * cannot do this for command sizes the ESP does not
1615 * understand and in this case we'll get interrupted right
1616 * when the target goes into command phase.
1618 * It is absolutely _illegal_ in the presence of SCSI-2 devices
1619 * to use the ESP select w/o ATN command. When SCSI-2 devices are
1620 * present on the bus we _must_ always go straight to message out
1621 * phase with an identify message for the target. Being that
1622 * selection attempts in SCSI-1 w/o ATN was an option, doing SCSI-2
1623 * selections should not confuse SCSI-1 we hope.
1626 if (esp_dev
->sync
) {
1627 /* this targets sync is known */
1628 #ifndef __sparc_v9__
1631 if (esp_dev
->disconnect
)
1632 *cmdp
++ = IDENTIFY(1, lun
);
1634 *cmdp
++ = IDENTIFY(0, lun
);
1636 if (esp
->esp_slowcmd
) {
1637 the_esp_command
= (ESP_CMD_SELAS
| ESP_CMD_DMA
);
1638 esp_advance_phase(SCptr
, in_slct_stop
);
1640 the_esp_command
= (ESP_CMD_SELA
| ESP_CMD_DMA
);
1641 esp_advance_phase(SCptr
, in_slct_norm
);
1643 } else if (!(esp
->targets_present
& (1<<target
)) || !(esp_dev
->disconnect
)) {
1644 /* After the bootup SCSI code sends both the
1645 * TEST_UNIT_READY and INQUIRY commands we want
1646 * to at least attempt allowing the device to
1649 ESPMISC(("esp: Selecting device for first time. target=%d "
1650 "lun=%d\n", target
, SCptr
->device
->lun
));
1651 if (!SDptr
->borken
&& !esp_dev
->disconnect
)
1652 esp_dev
->disconnect
= 1;
1654 *cmdp
++ = IDENTIFY(0, lun
);
1655 esp
->prevmsgout
= NOP
;
1656 esp_advance_phase(SCptr
, in_slct_norm
);
1657 the_esp_command
= (ESP_CMD_SELA
| ESP_CMD_DMA
);
1659 /* Take no chances... */
1660 esp_dev
->sync_max_offset
= 0;
1661 esp_dev
->sync_min_period
= 0;
1663 /* Sorry, I have had way too many problems with
1664 * various CDROM devices on ESP. -DaveM
1666 int cdrom_hwbug_wkaround
= 0;
1668 #ifndef __sparc_v9__
1669 /* Never allow disconnects or synchronous transfers on
1670 * SparcStation1 and SparcStation1+. Allowing those
1671 * to be enabled seems to lockup the machine completely.
1673 if ((idprom
->id_machtype
== (SM_SUN4C
| SM_4C_SS1
)) ||
1674 (idprom
->id_machtype
== (SM_SUN4C
| SM_4C_SS1PLUS
))) {
1675 /* But we are nice and allow tapes and removable
1676 * disks (but not CDROMs) to disconnect.
1678 if(SDptr
->type
== TYPE_TAPE
||
1679 (SDptr
->type
!= TYPE_ROM
&& SDptr
->removable
))
1680 esp_dev
->disconnect
= 1;
1682 esp_dev
->disconnect
= 0;
1683 esp_dev
->sync_max_offset
= 0;
1684 esp_dev
->sync_min_period
= 0;
1689 #endif /* !(__sparc_v9__) */
1691 /* We've talked to this guy before,
1692 * but never negotiated. Let's try,
1693 * need to attempt WIDE first, before
1694 * sync nego, as per SCSI 2 standard.
1696 if (esp
->erev
== fashme
&& !esp_dev
->wide
) {
1697 if (!SDptr
->borken
&&
1698 SDptr
->type
!= TYPE_ROM
&&
1699 SDptr
->removable
== 0) {
1700 build_wide_nego_msg(esp
, 16);
1703 goto after_nego_msg_built
;
1706 /* Fall through and try sync. */
1710 if (!SDptr
->borken
) {
1711 if ((SDptr
->type
== TYPE_ROM
)) {
1712 /* Nice try sucker... */
1713 ESPMISC(("esp%d: Disabling sync for buggy "
1714 "CDROM.\n", esp
->esp_id
));
1715 cdrom_hwbug_wkaround
= 1;
1716 build_sync_nego_msg(esp
, 0, 0);
1717 } else if (SDptr
->removable
!= 0) {
1718 ESPMISC(("esp%d: Not negotiating sync/wide but "
1719 "allowing disconnect for removable media.\n",
1721 build_sync_nego_msg(esp
, 0, 0);
1723 build_sync_nego_msg(esp
, esp
->sync_defp
, 15);
1726 build_sync_nego_msg(esp
, 0, 0);
1731 after_nego_msg_built
:
1732 /* A fix for broken SCSI1 targets, when they disconnect
1733 * they lock up the bus and confuse ESP. So disallow
1734 * disconnects for SCSI1 targets for now until we
1735 * find a better fix.
1737 * Addendum: This is funny, I figured out what was going
1738 * on. The blotzed SCSI1 target would disconnect,
1739 * one of the other SCSI2 targets or both would be
1740 * disconnected as well. The SCSI1 target would
1741 * stay disconnected long enough that we start
1742 * up a command on one of the SCSI2 targets. As
1743 * the ESP is arbitrating for the bus the SCSI1
1744 * target begins to arbitrate as well to reselect
1745 * the ESP. The SCSI1 target refuses to drop it's
1746 * ID bit on the data bus even though the ESP is
1747 * at ID 7 and is the obvious winner for any
1748 * arbitration. The ESP is a poor sport and refuses
1749 * to lose arbitration, it will continue indefinitely
1750 * trying to arbitrate for the bus and can only be
1751 * stopped via a chip reset or SCSI bus reset.
1752 * Therefore _no_ disconnects for SCSI1 targets
1753 * thank you very much. ;-)
1755 if(((SDptr
->scsi_level
< 3) &&
1756 (SDptr
->type
!= TYPE_TAPE
) &&
1757 SDptr
->removable
== 0) ||
1758 cdrom_hwbug_wkaround
|| SDptr
->borken
) {
1759 ESPMISC((KERN_INFO
"esp%d: Disabling DISCONNECT for target %d "
1760 "lun %d\n", esp
->esp_id
, SCptr
->device
->id
, SCptr
->device
->lun
));
1761 esp_dev
->disconnect
= 0;
1762 *cmdp
++ = IDENTIFY(0, lun
);
1764 *cmdp
++ = IDENTIFY(1, lun
);
1767 /* ESP fifo is only so big...
1768 * Make this look like a slow command.
1770 esp
->esp_slowcmd
= 1;
1771 esp
->esp_scmdleft
= SCptr
->cmd_len
;
1772 esp
->esp_scmdp
= &SCptr
->cmnd
[0];
1774 the_esp_command
= (ESP_CMD_SELAS
| ESP_CMD_DMA
);
1775 esp_advance_phase(SCptr
, in_slct_msg
);
1778 if (!esp
->esp_slowcmd
)
1779 for (i
= 0; i
< SCptr
->cmd_len
; i
++)
1780 *cmdp
++ = SCptr
->cmnd
[i
];
1783 if (esp
->erev
== fashme
)
1784 sbus_writeb((target
& 0xf) | (ESP_BUSID_RESELID
| ESP_BUSID_CTR32BIT
),
1785 esp
->eregs
+ ESP_BUSID
);
1787 sbus_writeb(target
& 7, esp
->eregs
+ ESP_BUSID
);
1788 if (esp
->prev_soff
!= esp_dev
->sync_max_offset
||
1789 esp
->prev_stp
!= esp_dev
->sync_min_period
||
1790 (esp
->erev
> esp100a
&&
1791 esp
->prev_cfg3
!= esp
->config3
[target
])) {
1792 esp
->prev_soff
= esp_dev
->sync_max_offset
;
1793 esp
->prev_stp
= esp_dev
->sync_min_period
;
1794 sbus_writeb(esp
->prev_soff
, esp
->eregs
+ ESP_SOFF
);
1795 sbus_writeb(esp
->prev_stp
, esp
->eregs
+ ESP_STP
);
1796 if (esp
->erev
> esp100a
) {
1797 esp
->prev_cfg3
= esp
->config3
[target
];
1798 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
1801 i
= (cmdp
- esp
->esp_command
);
1803 if (esp
->erev
== fashme
) {
1804 esp_cmd(esp
, ESP_CMD_FLUSH
); /* Grrr! */
1806 /* Set up the DMA and HME counters */
1807 sbus_writeb(i
, esp
->eregs
+ ESP_TCLOW
);
1808 sbus_writeb(0, esp
->eregs
+ ESP_TCMED
);
1809 sbus_writeb(0, esp
->eregs
+ FAS_RLO
);
1810 sbus_writeb(0, esp
->eregs
+ FAS_RHI
);
1811 esp_cmd(esp
, the_esp_command
);
1813 /* Talk about touchy hardware... */
1814 esp
->prev_hme_dmacsr
= ((esp
->prev_hme_dmacsr
|
1815 (DMA_SCSI_DISAB
| DMA_ENABLE
)) &
1817 sbus_writel(16, esp
->dregs
+ DMA_COUNT
);
1818 sbus_writel(esp
->esp_command_dvma
, esp
->dregs
+ DMA_ADDR
);
1819 sbus_writel(esp
->prev_hme_dmacsr
, esp
->dregs
+ DMA_CSR
);
1823 /* Set up the DMA and ESP counters */
1824 sbus_writeb(i
, esp
->eregs
+ ESP_TCLOW
);
1825 sbus_writeb(0, esp
->eregs
+ ESP_TCMED
);
1826 tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
);
1827 tmp
&= ~DMA_ST_WRITE
;
1829 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
1830 if (esp
->dma
->revision
== dvmaesc1
) {
1831 if (i
) /* Workaround ESC gate array SBUS rerun bug. */
1832 sbus_writel(PAGE_SIZE
, esp
->dregs
+ DMA_COUNT
);
1834 sbus_writel(esp
->esp_command_dvma
, esp
->dregs
+ DMA_ADDR
);
1836 /* Tell ESP to "go". */
1837 esp_cmd(esp
, the_esp_command
);
1841 /* Queue a SCSI command delivered from the mid-level Linux SCSI code. */
1842 static int esp_queue(struct scsi_cmnd
*SCpnt
, void (*done
)(struct scsi_cmnd
*))
1846 /* Set up func ptr and initial driver cmd-phase. */
1847 SCpnt
->scsi_done
= done
;
1848 SCpnt
->SCp
.phase
= not_issued
;
1850 /* We use the scratch area. */
1851 ESPQUEUE(("esp_queue: target=%d lun=%d ", SCpnt
->device
->id
, SCpnt
->device
->lun
));
1852 ESPDISC(("N<%02x,%02x>", SCpnt
->device
->id
, SCpnt
->device
->lun
));
1854 esp
= (struct esp
*) SCpnt
->device
->host
->hostdata
;
1855 esp_get_dmabufs(esp
, SCpnt
);
1856 esp_save_pointers(esp
, SCpnt
); /* FIXME for tag queueing */
1858 SCpnt
->SCp
.Status
= CHECK_CONDITION
;
1859 SCpnt
->SCp
.Message
= 0xff;
1860 SCpnt
->SCp
.sent_command
= 0;
1862 /* Place into our queue. */
1863 if (SCpnt
->cmnd
[0] == REQUEST_SENSE
) {
1864 ESPQUEUE(("RQSENSE\n"));
1865 prepend_SC(&esp
->issue_SC
, SCpnt
);
1868 append_SC(&esp
->issue_SC
, SCpnt
);
1871 /* Run it now if we can. */
1872 if (!esp
->current_SC
&& !esp
->resetting_bus
)
1878 /* Dump driver state. */
1879 static void esp_dump_cmd(struct scsi_cmnd
*SCptr
)
1881 ESPLOG(("[tgt<%02x> lun<%02x> "
1882 "pphase<%s> cphase<%s>]",
1883 SCptr
->device
->id
, SCptr
->device
->lun
,
1884 phase_string(SCptr
->SCp
.sent_command
),
1885 phase_string(SCptr
->SCp
.phase
)));
1888 static void esp_dump_state(struct esp
*esp
)
1890 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
1891 #ifdef DEBUG_ESP_CMDS
1895 ESPLOG(("esp%d: dumping state\n", esp
->esp_id
));
1896 ESPLOG(("esp%d: dma -- cond_reg<%08x> addr<%08x>\n",
1898 sbus_readl(esp
->dregs
+ DMA_CSR
),
1899 sbus_readl(esp
->dregs
+ DMA_ADDR
)));
1900 ESPLOG(("esp%d: SW [sreg<%02x> sstep<%02x> ireg<%02x>]\n",
1901 esp
->esp_id
, esp
->sreg
, esp
->seqreg
, esp
->ireg
));
1902 ESPLOG(("esp%d: HW reread [sreg<%02x> sstep<%02x> ireg<%02x>]\n",
1904 sbus_readb(esp
->eregs
+ ESP_STATUS
),
1905 sbus_readb(esp
->eregs
+ ESP_SSTEP
),
1906 sbus_readb(esp
->eregs
+ ESP_INTRPT
)));
1907 #ifdef DEBUG_ESP_CMDS
1908 printk("esp%d: last ESP cmds [", esp
->esp_id
);
1909 i
= (esp
->espcmdent
- 1) & 31;
1910 printk("<"); esp_print_cmd(esp
->espcmdlog
[i
]); printk(">");
1912 printk("<"); esp_print_cmd(esp
->espcmdlog
[i
]); printk(">");
1914 printk("<"); esp_print_cmd(esp
->espcmdlog
[i
]); printk(">");
1916 printk("<"); esp_print_cmd(esp
->espcmdlog
[i
]); printk(">");
1918 #endif /* (DEBUG_ESP_CMDS) */
1921 ESPLOG(("esp%d: current command ", esp
->esp_id
));
1922 esp_dump_cmd(SCptr
);
1925 SCptr
= esp
->disconnected_SC
;
1926 ESPLOG(("esp%d: disconnected ", esp
->esp_id
));
1928 esp_dump_cmd(SCptr
);
1929 SCptr
= (struct scsi_cmnd
*) SCptr
->host_scribble
;
1934 /* Abort a command. The host_lock is acquired by caller. */
1935 static int esp_abort(struct scsi_cmnd
*SCptr
)
1937 struct esp
*esp
= (struct esp
*) SCptr
->device
->host
->hostdata
;
1940 ESPLOG(("esp%d: Aborting command\n", esp
->esp_id
));
1941 esp_dump_state(esp
);
1943 /* Wheee, if this is the current command on the bus, the
1944 * best we can do is assert ATN and wait for msgout phase.
1945 * This should even fix a hung SCSI bus when we lose state
1946 * in the driver and timeout because the eventual phase change
1947 * will cause the ESP to (eventually) give an interrupt.
1949 if (esp
->current_SC
== SCptr
) {
1950 esp
->cur_msgout
[0] = ABORT
;
1951 esp
->msgout_len
= 1;
1952 esp
->msgout_ctr
= 0;
1953 esp_cmd(esp
, ESP_CMD_SATN
);
1957 /* If it is still in the issue queue then we can safely
1958 * call the completion routine and report abort success.
1960 don
= (sbus_readl(esp
->dregs
+ DMA_CSR
) & DMA_INT_ENAB
);
1962 ESP_INTSOFF(esp
->dregs
);
1964 if (esp
->issue_SC
) {
1965 struct scsi_cmnd
**prev
, *this;
1966 for (prev
= (&esp
->issue_SC
), this = esp
->issue_SC
;
1968 prev
= (struct scsi_cmnd
**) &(this->host_scribble
),
1969 this = (struct scsi_cmnd
*) this->host_scribble
) {
1971 if (this == SCptr
) {
1972 *prev
= (struct scsi_cmnd
*) this->host_scribble
;
1973 this->host_scribble
= NULL
;
1975 esp_release_dmabufs(esp
, this);
1976 this->result
= DID_ABORT
<< 16;
1977 this->scsi_done(this);
1980 ESP_INTSON(esp
->dregs
);
1987 /* Yuck, the command to abort is disconnected, it is not
1988 * worth trying to abort it now if something else is live
1989 * on the bus at this time. So, we let the SCSI code wait
1990 * a little bit and try again later.
1992 if (esp
->current_SC
) {
1994 ESP_INTSON(esp
->dregs
);
1998 /* It's disconnected, we have to reconnect to re-establish
1999 * the nexus and tell the device to abort. However, we really
2000 * cannot 'reconnect' per se. Don't try to be fancy, just
2001 * indicate failure, which causes our caller to reset the whole
2006 ESP_INTSON(esp
->dregs
);
2011 /* We've sent ESP_CMD_RS to the ESP, the interrupt had just
2012 * arrived indicating the end of the SCSI bus reset. Our job
2013 * is to clean out the command queues and begin re-execution
2014 * of SCSI commands once more.
2016 static int esp_finish_reset(struct esp
*esp
)
2018 struct scsi_cmnd
*sp
= esp
->current_SC
;
2020 /* Clean up currently executing command, if any. */
2022 esp
->current_SC
= NULL
;
2024 esp_release_dmabufs(esp
, sp
);
2025 sp
->result
= (DID_RESET
<< 16);
2030 /* Clean up disconnected queue, they have been invalidated
2033 if (esp
->disconnected_SC
) {
2034 while ((sp
= remove_first_SC(&esp
->disconnected_SC
)) != NULL
) {
2035 esp_release_dmabufs(esp
, sp
);
2036 sp
->result
= (DID_RESET
<< 16);
2042 /* SCSI bus reset is complete. */
2043 esp
->resetting_bus
= 0;
2044 wake_up(&esp
->reset_queue
);
2046 /* Ok, now it is safe to get commands going once more. */
2053 static int esp_do_resetbus(struct esp
*esp
)
2055 ESPLOG(("esp%d: Resetting scsi bus\n", esp
->esp_id
));
2056 esp
->resetting_bus
= 1;
2057 esp_cmd(esp
, ESP_CMD_RS
);
2062 /* Reset ESP chip, reset hanging bus, then kill active and
2063 * disconnected commands for targets without soft reset.
2065 * The host_lock is acquired by caller.
2067 static int esp_reset(struct scsi_cmnd
*SCptr
)
2069 struct esp
*esp
= (struct esp
*) SCptr
->device
->host
->hostdata
;
2071 (void) esp_do_resetbus(esp
);
2073 spin_unlock_irq(esp
->ehost
->host_lock
);
2075 wait_event(esp
->reset_queue
, (esp
->resetting_bus
== 0));
2077 spin_lock_irq(esp
->ehost
->host_lock
);
2082 /* Internal ESP done function. */
2083 static void esp_done(struct esp
*esp
, int error
)
2085 struct scsi_cmnd
*done_SC
= esp
->current_SC
;
2087 esp
->current_SC
= NULL
;
2089 esp_release_dmabufs(esp
, done_SC
);
2090 done_SC
->result
= error
;
2092 done_SC
->scsi_done(done_SC
);
2094 /* Bus is free, issue any commands in the queue. */
2095 if (esp
->issue_SC
&& !esp
->current_SC
)
2100 /* Wheee, ESP interrupt engine. */
2102 /* Forward declarations. */
2103 static int esp_do_phase_determine(struct esp
*esp
);
2104 static int esp_do_data_finale(struct esp
*esp
);
2105 static int esp_select_complete(struct esp
*esp
);
2106 static int esp_do_status(struct esp
*esp
);
2107 static int esp_do_msgin(struct esp
*esp
);
2108 static int esp_do_msgindone(struct esp
*esp
);
2109 static int esp_do_msgout(struct esp
*esp
);
2110 static int esp_do_cmdbegin(struct esp
*esp
);
2112 #define sreg_datainp(__sreg) (((__sreg) & ESP_STAT_PMASK) == ESP_DIP)
2113 #define sreg_dataoutp(__sreg) (((__sreg) & ESP_STAT_PMASK) == ESP_DOP)
2115 /* Read any bytes found in the FAS366 fifo, storing them into
2116 * the ESP driver software state structure.
2118 static void hme_fifo_read(struct esp
*esp
)
2121 u8 status
= esp
->sreg
;
2123 /* Cannot safely frob the fifo for these following cases, but
2124 * we must always read the fifo when the reselect interrupt
2127 if (((esp
->ireg
& ESP_INTR_RSEL
) == 0) &&
2128 (sreg_datainp(status
) ||
2129 sreg_dataoutp(status
) ||
2131 esp
->current_SC
->SCp
.phase
== in_data_done
))) {
2132 ESPHME(("<wkaround_skipped>"));
2134 unsigned long fcnt
= sbus_readb(esp
->eregs
+ ESP_FFLAGS
) & ESP_FF_FBYTES
;
2136 /* The HME stores bytes in multiples of 2 in the fifo. */
2137 ESPHME(("hme_fifo[fcnt=%d", (int)fcnt
));
2139 esp
->hme_fifo_workaround_buffer
[count
++] =
2140 sbus_readb(esp
->eregs
+ ESP_FDATA
);
2141 esp
->hme_fifo_workaround_buffer
[count
++] =
2142 sbus_readb(esp
->eregs
+ ESP_FDATA
);
2143 ESPHME(("<%02x,%02x>", esp
->hme_fifo_workaround_buffer
[count
-2], esp
->hme_fifo_workaround_buffer
[count
-1]));
2146 if (sbus_readb(esp
->eregs
+ ESP_STATUS2
) & ESP_STAT2_F1BYTE
) {
2147 ESPHME(("<poke_byte>"));
2148 sbus_writeb(0, esp
->eregs
+ ESP_FDATA
);
2149 esp
->hme_fifo_workaround_buffer
[count
++] =
2150 sbus_readb(esp
->eregs
+ ESP_FDATA
);
2151 ESPHME(("<%02x,0x00>", esp
->hme_fifo_workaround_buffer
[count
-1]));
2152 ESPHME(("CMD_FLUSH"));
2153 esp_cmd(esp
, ESP_CMD_FLUSH
);
2155 ESPHME(("no_xtra_byte"));
2158 ESPHME(("wkarnd_cnt=%d]", (int)count
));
2159 esp
->hme_fifo_workaround_count
= count
;
2162 static inline void hme_fifo_push(struct esp
*esp
, u8
*bytes
, u8 count
)
2164 esp_cmd(esp
, ESP_CMD_FLUSH
);
2167 sbus_writeb(tmp
, esp
->eregs
+ ESP_FDATA
);
2168 sbus_writeb(0, esp
->eregs
+ ESP_FDATA
);
2173 /* We try to avoid some interrupts by jumping ahead and see if the ESP
2174 * has gotten far enough yet. Hence the following.
2176 static inline int skipahead1(struct esp
*esp
, struct scsi_cmnd
*scp
,
2177 int prev_phase
, int new_phase
)
2179 if (scp
->SCp
.sent_command
!= prev_phase
)
2181 if (ESP_IRQ_P(esp
->dregs
)) {
2182 /* Yes, we are able to save an interrupt. */
2183 if (esp
->erev
== fashme
)
2184 esp
->sreg2
= sbus_readb(esp
->eregs
+ ESP_STATUS2
);
2185 esp
->sreg
= (sbus_readb(esp
->eregs
+ ESP_STATUS
) & ~(ESP_STAT_INTR
));
2186 esp
->ireg
= sbus_readb(esp
->eregs
+ ESP_INTRPT
);
2187 if (esp
->erev
== fashme
) {
2188 /* This chip is really losing. */
2190 /* Must latch fifo before reading the interrupt
2191 * register else garbage ends up in the FIFO
2192 * which confuses the driver utterly.
2193 * Happy Meal indeed....
2195 ESPHME(("fifo_workaround]"));
2196 if (!(esp
->sreg2
& ESP_STAT2_FEMPTY
) ||
2197 (esp
->sreg2
& ESP_STAT2_F1BYTE
))
2200 if (!(esp
->ireg
& ESP_INTR_SR
))
2203 return do_reset_complete
;
2205 /* Ho hum, target is taking forever... */
2206 scp
->SCp
.sent_command
= new_phase
; /* so we don't recurse... */
2210 static inline int skipahead2(struct esp
*esp
, struct scsi_cmnd
*scp
,
2211 int prev_phase1
, int prev_phase2
, int new_phase
)
2213 if (scp
->SCp
.sent_command
!= prev_phase1
&&
2214 scp
->SCp
.sent_command
!= prev_phase2
)
2216 if (ESP_IRQ_P(esp
->dregs
)) {
2217 /* Yes, we are able to save an interrupt. */
2218 if (esp
->erev
== fashme
)
2219 esp
->sreg2
= sbus_readb(esp
->eregs
+ ESP_STATUS2
);
2220 esp
->sreg
= (sbus_readb(esp
->eregs
+ ESP_STATUS
) & ~(ESP_STAT_INTR
));
2221 esp
->ireg
= sbus_readb(esp
->eregs
+ ESP_INTRPT
);
2222 if (esp
->erev
== fashme
) {
2223 /* This chip is really losing. */
2226 /* Must latch fifo before reading the interrupt
2227 * register else garbage ends up in the FIFO
2228 * which confuses the driver utterly.
2229 * Happy Meal indeed....
2231 ESPHME(("fifo_workaround]"));
2232 if (!(esp
->sreg2
& ESP_STAT2_FEMPTY
) ||
2233 (esp
->sreg2
& ESP_STAT2_F1BYTE
))
2236 if (!(esp
->ireg
& ESP_INTR_SR
))
2239 return do_reset_complete
;
2241 /* Ho hum, target is taking forever... */
2242 scp
->SCp
.sent_command
= new_phase
; /* so we don't recurse... */
2246 /* Now some dma helpers. */
2247 static void dma_setup(struct esp
*esp
, __u32 addr
, int count
, int write
)
2249 u32 nreg
= sbus_readl(esp
->dregs
+ DMA_CSR
);
2252 nreg
|= DMA_ST_WRITE
;
2254 nreg
&= ~(DMA_ST_WRITE
);
2256 sbus_writel(nreg
, esp
->dregs
+ DMA_CSR
);
2257 if (esp
->dma
->revision
== dvmaesc1
) {
2258 /* This ESC gate array sucks! */
2260 __u32 dest
= src
+ count
;
2262 if (dest
& (PAGE_SIZE
- 1))
2263 count
= PAGE_ALIGN(count
);
2264 sbus_writel(count
, esp
->dregs
+ DMA_COUNT
);
2266 sbus_writel(addr
, esp
->dregs
+ DMA_ADDR
);
2269 static void dma_drain(struct esp
*esp
)
2273 if (esp
->dma
->revision
== dvmahme
)
2275 if ((tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
)) & DMA_FIFO_ISDRAIN
) {
2276 switch (esp
->dma
->revision
) {
2278 tmp
|= DMA_FIFO_STDRAIN
;
2279 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
2283 while (sbus_readl(esp
->dregs
+ DMA_CSR
) & DMA_FIFO_ISDRAIN
)
2289 static void dma_invalidate(struct esp
*esp
)
2293 if (esp
->dma
->revision
== dvmahme
) {
2294 sbus_writel(DMA_RST_SCSI
, esp
->dregs
+ DMA_CSR
);
2296 esp
->prev_hme_dmacsr
= ((esp
->prev_hme_dmacsr
|
2297 (DMA_PARITY_OFF
| DMA_2CLKS
|
2298 DMA_SCSI_DISAB
| DMA_INT_ENAB
)) &
2299 ~(DMA_ST_WRITE
| DMA_ENABLE
));
2301 sbus_writel(0, esp
->dregs
+ DMA_CSR
);
2302 sbus_writel(esp
->prev_hme_dmacsr
, esp
->dregs
+ DMA_CSR
);
2304 /* This is necessary to avoid having the SCSI channel
2305 * engine lock up on us.
2307 sbus_writel(0, esp
->dregs
+ DMA_ADDR
);
2309 while ((tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
)) & DMA_PEND_READ
)
2312 tmp
&= ~(DMA_ENABLE
| DMA_ST_WRITE
| DMA_BCNT_ENAB
);
2313 tmp
|= DMA_FIFO_INV
;
2314 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
2315 tmp
&= ~DMA_FIFO_INV
;
2316 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
2320 static inline void dma_flashclear(struct esp
*esp
)
2323 dma_invalidate(esp
);
2326 static int dma_can_transfer(struct esp
*esp
, struct scsi_cmnd
*sp
)
2328 __u32 base
, end
, sz
;
2330 if (esp
->dma
->revision
== dvmarev3
) {
2331 sz
= sp
->SCp
.this_residual
;
2335 base
= ((__u32
)((unsigned long)sp
->SCp
.ptr
));
2336 base
&= (0x1000000 - 1);
2337 end
= (base
+ sp
->SCp
.this_residual
);
2338 if (end
> 0x1000000)
2345 /* Misc. esp helper macros. */
2346 #define esp_setcount(__eregs, __cnt, __hme) \
2347 sbus_writeb(((__cnt)&0xff), (__eregs) + ESP_TCLOW); \
2348 sbus_writeb((((__cnt)>>8)&0xff), (__eregs) + ESP_TCMED); \
2350 sbus_writeb((((__cnt)>>16)&0xff), (__eregs) + FAS_RLO); \
2351 sbus_writeb(0, (__eregs) + FAS_RHI); \
2354 #define esp_getcount(__eregs, __hme) \
2355 ((sbus_readb((__eregs) + ESP_TCLOW)&0xff) | \
2356 ((sbus_readb((__eregs) + ESP_TCMED)&0xff) << 8) | \
2357 ((__hme) ? sbus_readb((__eregs) + FAS_RLO) << 16 : 0))
2359 #define fcount(__esp) \
2360 (((__esp)->erev == fashme) ? \
2361 (__esp)->hme_fifo_workaround_count : \
2362 sbus_readb(((__esp)->eregs) + ESP_FFLAGS) & ESP_FF_FBYTES)
2364 #define fnzero(__esp) \
2365 (((__esp)->erev == fashme) ? 0 : \
2366 sbus_readb(((__esp)->eregs) + ESP_FFLAGS) & ESP_FF_ONOTZERO)
2368 /* XXX speculative nops unnecessary when continuing amidst a data phase
2369 * XXX even on esp100!!! another case of flooding the bus with I/O reg
2372 #define esp_maybe_nop(__esp) \
2373 if ((__esp)->erev == esp100) \
2374 esp_cmd((__esp), ESP_CMD_NULL)
2376 #define sreg_to_dataphase(__sreg) \
2377 ((((__sreg) & ESP_STAT_PMASK) == ESP_DOP) ? in_dataout : in_datain)
2379 /* The ESP100 when in synchronous data phase, can mistake a long final
2380 * REQ pulse from the target as an extra byte, it places whatever is on
2381 * the data lines into the fifo. For now, we will assume when this
2382 * happens that the target is a bit quirky and we don't want to
2383 * be talking synchronously to it anyways. Regardless, we need to
2384 * tell the ESP to eat the extraneous byte so that we can proceed
2385 * to the next phase.
2387 static int esp100_sync_hwbug(struct esp
*esp
, struct scsi_cmnd
*sp
, int fifocnt
)
2389 /* Do not touch this piece of code. */
2390 if ((!(esp
->erev
== esp100
)) ||
2391 (!(sreg_datainp((esp
->sreg
= sbus_readb(esp
->eregs
+ ESP_STATUS
))) &&
2393 !(sreg_dataoutp(esp
->sreg
) && !fnzero(esp
)))) {
2394 if (sp
->SCp
.phase
== in_dataout
)
2395 esp_cmd(esp
, ESP_CMD_FLUSH
);
2398 /* Async mode for this guy. */
2399 build_sync_nego_msg(esp
, 0, 0);
2401 /* Ack the bogus byte, but set ATN first. */
2402 esp_cmd(esp
, ESP_CMD_SATN
);
2403 esp_cmd(esp
, ESP_CMD_MOK
);
2408 /* This closes the window during a selection with a reselect pending, because
2409 * we use DMA for the selection process the FIFO should hold the correct
2410 * contents if we get reselected during this process. So we just need to
2411 * ack the possible illegal cmd interrupt pending on the esp100.
2413 static inline int esp100_reconnect_hwbug(struct esp
*esp
)
2417 if (esp
->erev
!= esp100
)
2419 tmp
= sbus_readb(esp
->eregs
+ ESP_INTRPT
);
2420 if (tmp
& ESP_INTR_SR
)
2425 /* This verifies the BUSID bits during a reselection so that we know which
2426 * target is talking to us.
2428 static inline int reconnect_target(struct esp
*esp
)
2430 int it
, me
= esp
->scsi_id_mask
, targ
= 0;
2432 if (2 != fcount(esp
))
2434 if (esp
->erev
== fashme
) {
2435 /* HME does not latch it's own BUS ID bits during
2436 * a reselection. Also the target number is given
2437 * as an unsigned char, not as a sole bit number
2438 * like the other ESP's do.
2439 * Happy Meal indeed....
2441 targ
= esp
->hme_fifo_workaround_buffer
[0];
2443 it
= sbus_readb(esp
->eregs
+ ESP_FDATA
);
2455 /* This verifies the identify from the target so that we know which lun is
2456 * being reconnected.
2458 static inline int reconnect_lun(struct esp
*esp
)
2462 if ((esp
->sreg
& ESP_STAT_PMASK
) != ESP_MIP
)
2464 if (esp
->erev
== fashme
)
2465 lun
= esp
->hme_fifo_workaround_buffer
[1];
2467 lun
= sbus_readb(esp
->eregs
+ ESP_FDATA
);
2469 /* Yes, you read this correctly. We report lun of zero
2470 * if we see parity error. ESP reports parity error for
2471 * the lun byte, and this is the only way to hope to recover
2472 * because the target is connected.
2474 if (esp
->sreg
& ESP_STAT_PERR
)
2477 /* Check for illegal bits being set in the lun. */
2478 if ((lun
& 0x40) || !(lun
& 0x80))
2484 /* This puts the driver in a state where it can revitalize a command that
2485 * is being continued due to reselection.
2487 static inline void esp_connect(struct esp
*esp
, struct scsi_cmnd
*sp
)
2489 struct esp_device
*esp_dev
= sp
->device
->hostdata
;
2491 if (esp
->prev_soff
!= esp_dev
->sync_max_offset
||
2492 esp
->prev_stp
!= esp_dev
->sync_min_period
||
2493 (esp
->erev
> esp100a
&&
2494 esp
->prev_cfg3
!= esp
->config3
[sp
->device
->id
])) {
2495 esp
->prev_soff
= esp_dev
->sync_max_offset
;
2496 esp
->prev_stp
= esp_dev
->sync_min_period
;
2497 sbus_writeb(esp
->prev_soff
, esp
->eregs
+ ESP_SOFF
);
2498 sbus_writeb(esp
->prev_stp
, esp
->eregs
+ ESP_STP
);
2499 if (esp
->erev
> esp100a
) {
2500 esp
->prev_cfg3
= esp
->config3
[sp
->device
->id
];
2501 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
2504 esp
->current_SC
= sp
;
2507 /* This will place the current working command back into the issue queue
2508 * if we are to receive a reselection amidst a selection attempt.
2510 static inline void esp_reconnect(struct esp
*esp
, struct scsi_cmnd
*sp
)
2512 if (!esp
->disconnected_SC
)
2513 ESPLOG(("esp%d: Weird, being reselected but disconnected "
2514 "command queue is empty.\n", esp
->esp_id
));
2516 esp
->current_SC
= NULL
;
2517 sp
->SCp
.phase
= not_issued
;
2518 append_SC(&esp
->issue_SC
, sp
);
2521 /* Begin message in phase. */
2522 static int esp_do_msgin(struct esp
*esp
)
2524 /* Must be very careful with the fifo on the HME */
2525 if ((esp
->erev
!= fashme
) ||
2526 !(sbus_readb(esp
->eregs
+ ESP_STATUS2
) & ESP_STAT2_FEMPTY
))
2527 esp_cmd(esp
, ESP_CMD_FLUSH
);
2529 esp_cmd(esp
, ESP_CMD_TI
);
2532 esp_advance_phase(esp
->current_SC
, in_msgindone
);
2536 /* This uses various DMA csr fields and the fifo flags count value to
2537 * determine how many bytes were successfully sent/received by the ESP.
2539 static inline int esp_bytes_sent(struct esp
*esp
, int fifo_count
)
2541 int rval
= sbus_readl(esp
->dregs
+ DMA_ADDR
) - esp
->esp_command_dvma
;
2543 if (esp
->dma
->revision
== dvmarev1
)
2544 rval
-= (4 - ((sbus_readl(esp
->dregs
+ DMA_CSR
) & DMA_READ_AHEAD
)>>11));
2545 return rval
- fifo_count
;
2548 static inline void advance_sg(struct scsi_cmnd
*sp
)
2551 --sp
->SCp
.buffers_residual
;
2552 sp
->SCp
.this_residual
= sg_dma_len(sp
->SCp
.buffer
);
2553 sp
->SCp
.ptr
= (char *)((unsigned long)sg_dma_address(sp
->SCp
.buffer
));
2556 /* Please note that the way I've coded these routines is that I _always_
2557 * check for a disconnect during any and all information transfer
2558 * phases. The SCSI standard states that the target _can_ cause a BUS
2559 * FREE condition by dropping all MSG/CD/IO/BSY signals. Also note
2560 * that during information transfer phases the target controls every
2561 * change in phase, the only thing the initiator can do is "ask" for
2562 * a message out phase by driving ATN true. The target can, and sometimes
2563 * will, completely ignore this request so we cannot assume anything when
2564 * we try to force a message out phase to abort/reset a target. Most of
2565 * the time the target will eventually be nice and go to message out, so
2566 * we may have to hold on to our state about what we want to tell the target
2567 * for some period of time.
2570 /* I think I have things working here correctly. Even partial transfers
2571 * within a buffer or sub-buffer should not upset us at all no matter
2572 * how bad the target and/or ESP fucks things up.
2574 static int esp_do_data(struct esp
*esp
)
2576 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
2577 int thisphase
, hmuch
;
2579 ESPDATA(("esp_do_data: "));
2581 thisphase
= sreg_to_dataphase(esp
->sreg
);
2582 esp_advance_phase(SCptr
, thisphase
);
2583 ESPDATA(("newphase<%s> ", (thisphase
== in_datain
) ? "DATAIN" : "DATAOUT"));
2584 hmuch
= dma_can_transfer(esp
, SCptr
);
2585 if (hmuch
> (64 * 1024) && (esp
->erev
!= fashme
))
2586 hmuch
= (64 * 1024);
2587 ESPDATA(("hmuch<%d> ", hmuch
));
2588 esp
->current_transfer_size
= hmuch
;
2590 if (esp
->erev
== fashme
) {
2591 u32 tmp
= esp
->prev_hme_dmacsr
;
2593 /* Always set the ESP count registers first. */
2594 esp_setcount(esp
->eregs
, hmuch
, 1);
2596 /* Get the DMA csr computed. */
2597 tmp
|= (DMA_SCSI_DISAB
| DMA_ENABLE
);
2598 if (thisphase
== in_datain
)
2599 tmp
|= DMA_ST_WRITE
;
2601 tmp
&= ~(DMA_ST_WRITE
);
2602 esp
->prev_hme_dmacsr
= tmp
;
2604 ESPDATA(("DMA|TI --> do_intr_end\n"));
2605 if (thisphase
== in_datain
) {
2606 sbus_writel(hmuch
, esp
->dregs
+ DMA_COUNT
);
2607 esp_cmd(esp
, ESP_CMD_DMA
| ESP_CMD_TI
);
2609 esp_cmd(esp
, ESP_CMD_DMA
| ESP_CMD_TI
);
2610 sbus_writel(hmuch
, esp
->dregs
+ DMA_COUNT
);
2612 sbus_writel((__u32
)((unsigned long)SCptr
->SCp
.ptr
), esp
->dregs
+DMA_ADDR
);
2613 sbus_writel(esp
->prev_hme_dmacsr
, esp
->dregs
+ DMA_CSR
);
2615 esp_setcount(esp
->eregs
, hmuch
, 0);
2616 dma_setup(esp
, ((__u32
)((unsigned long)SCptr
->SCp
.ptr
)),
2617 hmuch
, (thisphase
== in_datain
));
2618 ESPDATA(("DMA|TI --> do_intr_end\n"));
2619 esp_cmd(esp
, ESP_CMD_DMA
| ESP_CMD_TI
);
2624 /* See how successful the data transfer was. */
2625 static int esp_do_data_finale(struct esp
*esp
)
2627 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
2628 struct esp_device
*esp_dev
= SCptr
->device
->hostdata
;
2629 int bogus_data
= 0, bytes_sent
= 0, fifocnt
, ecount
= 0;
2631 ESPDATA(("esp_do_data_finale: "));
2633 if (SCptr
->SCp
.phase
== in_datain
) {
2634 if (esp
->sreg
& ESP_STAT_PERR
) {
2635 /* Yuck, parity error. The ESP asserts ATN
2636 * so that we can go to message out phase
2637 * immediately and inform the target that
2638 * something bad happened.
2640 ESPLOG(("esp%d: data bad parity detected.\n",
2642 esp
->cur_msgout
[0] = INITIATOR_ERROR
;
2643 esp
->msgout_len
= 1;
2647 dma_invalidate(esp
);
2649 /* This could happen for the above parity error case. */
2650 if (esp
->ireg
!= ESP_INTR_BSERV
) {
2651 /* Please go to msgout phase, please please please... */
2652 ESPLOG(("esp%d: !BSERV after data, probably to msgout\n",
2654 return esp_do_phase_determine(esp
);
2657 /* Check for partial transfers and other horrible events.
2658 * Note, here we read the real fifo flags register even
2659 * on HME broken adapters because we skip the HME fifo
2660 * workaround code in esp_handle() if we are doing data
2661 * phase things. We don't want to fuck directly with
2662 * the fifo like that, especially if doing synchronous
2663 * transfers! Also, will need to double the count on
2664 * HME if we are doing wide transfers, as the HME fifo
2665 * will move and count 16-bit quantities during wide data.
2666 * SMCC _and_ Qlogic can both bite me.
2668 fifocnt
= (sbus_readb(esp
->eregs
+ ESP_FFLAGS
) & ESP_FF_FBYTES
);
2669 if (esp
->erev
!= fashme
)
2670 ecount
= esp_getcount(esp
->eregs
, 0);
2671 bytes_sent
= esp
->current_transfer_size
;
2673 ESPDATA(("trans_sz(%d), ", bytes_sent
));
2674 if (esp
->erev
== fashme
) {
2675 if (!(esp
->sreg
& ESP_STAT_TCNT
)) {
2676 ecount
= esp_getcount(esp
->eregs
, 1);
2677 bytes_sent
-= ecount
;
2680 /* Always subtract any cruft remaining in the FIFO. */
2681 if (esp
->prev_cfg3
& ESP_CONFIG3_EWIDE
)
2683 if (SCptr
->SCp
.phase
== in_dataout
)
2684 bytes_sent
-= fifocnt
;
2686 /* I have an IBM disk which exhibits the following
2687 * behavior during writes to it. It disconnects in
2688 * the middle of a partial transfer, the current sglist
2689 * buffer is 1024 bytes, the disk stops data transfer
2692 * However the FAS366 reports that 32 more bytes were
2693 * transferred than really were. This is precisely
2694 * the size of a fully loaded FIFO in wide scsi mode.
2695 * The FIFO state recorded indicates that it is empty.
2697 * I have no idea if this is a bug in the FAS366 chip
2698 * or a bug in the firmware on this IBM disk. In any
2699 * event the following seems to be a good workaround. -DaveM
2701 if (bytes_sent
!= esp
->current_transfer_size
&&
2702 SCptr
->SCp
.phase
== in_dataout
) {
2703 int mask
= (64 - 1);
2705 if ((esp
->prev_cfg3
& ESP_CONFIG3_EWIDE
) == 0)
2708 if (bytes_sent
& mask
)
2709 bytes_sent
-= (bytes_sent
& mask
);
2712 if (!(esp
->sreg
& ESP_STAT_TCNT
))
2713 bytes_sent
-= ecount
;
2714 if (SCptr
->SCp
.phase
== in_dataout
)
2715 bytes_sent
-= fifocnt
;
2718 ESPDATA(("bytes_sent(%d), ", bytes_sent
));
2720 /* If we were in synchronous mode, check for peculiarities. */
2721 if (esp
->erev
== fashme
) {
2722 if (esp_dev
->sync_max_offset
) {
2723 if (SCptr
->SCp
.phase
== in_dataout
)
2724 esp_cmd(esp
, ESP_CMD_FLUSH
);
2726 esp_cmd(esp
, ESP_CMD_FLUSH
);
2729 if (esp_dev
->sync_max_offset
)
2730 bogus_data
= esp100_sync_hwbug(esp
, SCptr
, fifocnt
);
2732 esp_cmd(esp
, ESP_CMD_FLUSH
);
2735 /* Until we are sure of what has happened, we are certainly
2738 esp_advance_phase(SCptr
, in_the_dark
);
2740 if (bytes_sent
< 0) {
2741 /* I've seen this happen due to lost state in this
2742 * driver. No idea why it happened, but allowing
2743 * this value to be negative caused things to
2744 * lock up. This allows greater chance of recovery.
2745 * In fact every time I've seen this, it has been
2746 * a driver bug without question.
2748 ESPLOG(("esp%d: yieee, bytes_sent < 0!\n", esp
->esp_id
));
2749 ESPLOG(("esp%d: csz=%d fifocount=%d ecount=%d\n",
2751 esp
->current_transfer_size
, fifocnt
, ecount
));
2752 ESPLOG(("esp%d: use_sg=%d ptr=%p this_residual=%d\n",
2754 SCptr
->use_sg
, SCptr
->SCp
.ptr
, SCptr
->SCp
.this_residual
));
2755 ESPLOG(("esp%d: Forcing async for target %d\n", esp
->esp_id
,
2756 SCptr
->device
->id
));
2757 SCptr
->device
->borken
= 1;
2762 /* Update the state of our transfer. */
2763 SCptr
->SCp
.ptr
+= bytes_sent
;
2764 SCptr
->SCp
.this_residual
-= bytes_sent
;
2765 if (SCptr
->SCp
.this_residual
< 0) {
2767 ESPLOG(("esp%d: Data transfer overrun.\n", esp
->esp_id
));
2768 SCptr
->SCp
.this_residual
= 0;
2771 /* Maybe continue. */
2773 ESPDATA(("!bogus_data, "));
2775 /* NO MATTER WHAT, we advance the scatterlist,
2776 * if the target should decide to disconnect
2777 * in between scatter chunks (which is common)
2778 * we could die horribly! I used to have the sg
2779 * advance occur only if we are going back into
2780 * (or are staying in) a data phase, you can
2781 * imagine the hell I went through trying to
2784 if (SCptr
->use_sg
&& !SCptr
->SCp
.this_residual
)
2786 if (sreg_datainp(esp
->sreg
) || sreg_dataoutp(esp
->sreg
)) {
2787 ESPDATA(("to more data\n"));
2788 return esp_do_data(esp
);
2790 ESPDATA(("to new phase\n"));
2791 return esp_do_phase_determine(esp
);
2793 /* Bogus data, just wait for next interrupt. */
2794 ESPLOG(("esp%d: bogus_data during end of data phase\n",
2799 /* We received a non-good status return at the end of
2800 * running a SCSI command. This is used to decide if
2801 * we should clear our synchronous transfer state for
2802 * such a device when that happens.
2804 * The idea is that when spinning up a disk or rewinding
2805 * a tape, we don't want to go into a loop re-negotiating
2806 * synchronous capabilities over and over.
2808 static int esp_should_clear_sync(struct scsi_cmnd
*sp
)
2810 u8 cmd1
= sp
->cmnd
[0];
2811 u8 cmd2
= sp
->data_cmnd
[0];
2813 /* These cases are for spinning up a disk and
2814 * waiting for that spinup to complete.
2816 if (cmd1
== START_STOP
||
2820 if (cmd1
== TEST_UNIT_READY
||
2821 cmd2
== TEST_UNIT_READY
)
2824 /* One more special case for SCSI tape drives,
2825 * this is what is used to probe the device for
2826 * completion of a rewind or tape load operation.
2828 if (sp
->device
->type
== TYPE_TAPE
) {
2829 if (cmd1
== MODE_SENSE
||
2837 /* Either a command is completing or a target is dropping off the bus
2838 * to continue the command in the background so we can do other work.
2840 static int esp_do_freebus(struct esp
*esp
)
2842 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
2843 struct esp_device
*esp_dev
= SCptr
->device
->hostdata
;
2846 rval
= skipahead2(esp
, SCptr
, in_status
, in_msgindone
, in_freeing
);
2849 if (esp
->ireg
!= ESP_INTR_DC
) {
2850 ESPLOG(("esp%d: Target will not disconnect\n", esp
->esp_id
));
2851 return do_reset_bus
; /* target will not drop BSY... */
2853 esp
->msgout_len
= 0;
2854 esp
->prevmsgout
= NOP
;
2855 if (esp
->prevmsgin
== COMMAND_COMPLETE
) {
2856 /* Normal end of nexus. */
2857 if (esp
->disconnected_SC
|| (esp
->erev
== fashme
))
2858 esp_cmd(esp
, ESP_CMD_ESEL
);
2860 if (SCptr
->SCp
.Status
!= GOOD
&&
2861 SCptr
->SCp
.Status
!= CONDITION_GOOD
&&
2862 ((1<<SCptr
->device
->id
) & esp
->targets_present
) &&
2864 esp_dev
->sync_max_offset
) {
2865 /* SCSI standard says that the synchronous capabilities
2866 * should be renegotiated at this point. Most likely
2867 * we are about to request sense from this target
2868 * in which case we want to avoid using sync
2869 * transfers until we are sure of the current target
2872 ESPMISC(("esp: Status <%d> for target %d lun %d\n",
2873 SCptr
->SCp
.Status
, SCptr
->device
->id
, SCptr
->device
->lun
));
2875 /* But don't do this when spinning up a disk at
2876 * boot time while we poll for completion as it
2877 * fills up the console with messages. Also, tapes
2878 * can report not ready many times right after
2879 * loading up a tape.
2881 if (esp_should_clear_sync(SCptr
) != 0)
2884 ESPDISC(("F<%02x,%02x>", SCptr
->device
->id
, SCptr
->device
->lun
));
2885 esp_done(esp
, ((SCptr
->SCp
.Status
& 0xff) |
2886 ((SCptr
->SCp
.Message
& 0xff)<<8) |
2888 } else if (esp
->prevmsgin
== DISCONNECT
) {
2889 /* Normal disconnect. */
2890 esp_cmd(esp
, ESP_CMD_ESEL
);
2891 ESPDISC(("D<%02x,%02x>", SCptr
->device
->id
, SCptr
->device
->lun
));
2892 append_SC(&esp
->disconnected_SC
, SCptr
);
2893 esp
->current_SC
= NULL
;
2897 /* Driver bug, we do not expect a disconnect here
2898 * and should not have advanced the state engine
2901 ESPLOG(("esp%d: last msg not disc and not cmd cmplt.\n",
2903 return do_reset_bus
;
2908 /* When a reselect occurs, and we cannot find the command to
2909 * reconnect to in our queues, we do this.
2911 static int esp_bad_reconnect(struct esp
*esp
)
2913 struct scsi_cmnd
*sp
;
2915 ESPLOG(("esp%d: Eieeee, reconnecting unknown command!\n",
2917 ESPLOG(("QUEUE DUMP\n"));
2919 ESPLOG(("esp%d: issue_SC[", esp
->esp_id
));
2921 ESPLOG(("<%02x,%02x>", sp
->device
->id
, sp
->device
->lun
));
2922 sp
= (struct scsi_cmnd
*) sp
->host_scribble
;
2925 sp
= esp
->current_SC
;
2926 ESPLOG(("esp%d: current_SC[", esp
->esp_id
));
2928 ESPLOG(("<%02x,%02x>", sp
->device
->id
, sp
->device
->lun
));
2932 sp
= esp
->disconnected_SC
;
2933 ESPLOG(("esp%d: disconnected_SC[", esp
->esp_id
));
2935 ESPLOG(("<%02x,%02x>", sp
->device
->id
, sp
->device
->lun
));
2936 sp
= (struct scsi_cmnd
*) sp
->host_scribble
;
2939 return do_reset_bus
;
2942 /* Do the needy when a target tries to reconnect to us. */
2943 static int esp_do_reconnect(struct esp
*esp
)
2946 struct scsi_cmnd
*SCptr
;
2948 /* Check for all bogus conditions first. */
2949 target
= reconnect_target(esp
);
2951 ESPDISC(("bad bus bits\n"));
2952 return do_reset_bus
;
2954 lun
= reconnect_lun(esp
);
2956 ESPDISC(("target=%2x, bad identify msg\n", target
));
2957 return do_reset_bus
;
2960 /* Things look ok... */
2961 ESPDISC(("R<%02x,%02x>", target
, lun
));
2963 /* Must not flush FIFO or DVMA on HME. */
2964 if (esp
->erev
!= fashme
) {
2965 esp_cmd(esp
, ESP_CMD_FLUSH
);
2966 if (esp100_reconnect_hwbug(esp
))
2967 return do_reset_bus
;
2968 esp_cmd(esp
, ESP_CMD_NULL
);
2971 SCptr
= remove_SC(&esp
->disconnected_SC
, (u8
) target
, (u8
) lun
);
2973 return esp_bad_reconnect(esp
);
2975 esp_connect(esp
, SCptr
);
2976 esp_cmd(esp
, ESP_CMD_MOK
);
2978 if (esp
->erev
== fashme
)
2979 sbus_writeb(((SCptr
->device
->id
& 0xf) |
2980 (ESP_BUSID_RESELID
| ESP_BUSID_CTR32BIT
)),
2981 esp
->eregs
+ ESP_BUSID
);
2983 /* Reconnect implies a restore pointers operation. */
2984 esp_restore_pointers(esp
, SCptr
);
2987 esp_advance_phase(SCptr
, in_the_dark
);
2991 /* End of NEXUS (hopefully), pick up status + message byte then leave if
2994 static int esp_do_status(struct esp
*esp
)
2996 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
2999 rval
= skipahead1(esp
, SCptr
, in_the_dark
, in_status
);
3003 ESPSTAT(("esp_do_status: "));
3004 if (intr
!= ESP_INTR_DC
) {
3005 int message_out
= 0; /* for parity problems */
3007 /* Ack the message. */
3008 ESPSTAT(("ack msg, "));
3009 esp_cmd(esp
, ESP_CMD_MOK
);
3011 if (esp
->erev
!= fashme
) {
3012 dma_flashclear(esp
);
3014 /* Wait till the first bits settle. */
3015 while (esp
->esp_command
[0] == 0xff)
3018 esp
->esp_command
[0] = esp
->hme_fifo_workaround_buffer
[0];
3019 esp
->esp_command
[1] = esp
->hme_fifo_workaround_buffer
[1];
3022 ESPSTAT(("got something, "));
3023 /* ESP chimes in with one of
3025 * 1) function done interrupt:
3026 * both status and message in bytes
3029 * 2) bus service interrupt:
3030 * only status byte was acquired
3033 * can't happen, but we test for it
3036 * ALSO: If bad parity was detected on either
3037 * the status _or_ the message byte then
3038 * the ESP has asserted ATN on the bus
3039 * and we must therefore wait for the
3040 * next phase change.
3042 if (intr
& ESP_INTR_FDONE
) {
3043 /* We got it all, hallejulia. */
3044 ESPSTAT(("got both, "));
3045 SCptr
->SCp
.Status
= esp
->esp_command
[0];
3046 SCptr
->SCp
.Message
= esp
->esp_command
[1];
3047 esp
->prevmsgin
= SCptr
->SCp
.Message
;
3048 esp
->cur_msgin
[0] = SCptr
->SCp
.Message
;
3049 if (esp
->sreg
& ESP_STAT_PERR
) {
3050 /* There was bad parity for the
3051 * message byte, the status byte
3054 message_out
= MSG_PARITY_ERROR
;
3056 } else if (intr
== ESP_INTR_BSERV
) {
3057 /* Only got status byte. */
3058 ESPLOG(("esp%d: got status only, ", esp
->esp_id
));
3059 if (!(esp
->sreg
& ESP_STAT_PERR
)) {
3060 SCptr
->SCp
.Status
= esp
->esp_command
[0];
3061 SCptr
->SCp
.Message
= 0xff;
3063 /* The status byte had bad parity.
3064 * we leave the scsi_pointer Status
3065 * field alone as we set it to a default
3066 * of CHECK_CONDITION in esp_queue.
3068 message_out
= INITIATOR_ERROR
;
3071 /* This shouldn't happen ever. */
3072 ESPSTAT(("got bolixed\n"));
3073 esp_advance_phase(SCptr
, in_the_dark
);
3074 return esp_do_phase_determine(esp
);
3078 ESPSTAT(("status=%2x msg=%2x, ", SCptr
->SCp
.Status
,
3079 SCptr
->SCp
.Message
));
3080 if (SCptr
->SCp
.Message
== COMMAND_COMPLETE
) {
3081 ESPSTAT(("and was COMMAND_COMPLETE\n"));
3082 esp_advance_phase(SCptr
, in_freeing
);
3083 return esp_do_freebus(esp
);
3085 ESPLOG(("esp%d: and _not_ COMMAND_COMPLETE\n",
3087 esp
->msgin_len
= esp
->msgin_ctr
= 1;
3088 esp_advance_phase(SCptr
, in_msgindone
);
3089 return esp_do_msgindone(esp
);
3092 /* With luck we'll be able to let the target
3093 * know that bad parity happened, it will know
3094 * which byte caused the problems and send it
3095 * again. For the case where the status byte
3096 * receives bad parity, I do not believe most
3097 * targets recover very well. We'll see.
3099 ESPLOG(("esp%d: bad parity somewhere mout=%2x\n",
3100 esp
->esp_id
, message_out
));
3101 esp
->cur_msgout
[0] = message_out
;
3102 esp
->msgout_len
= esp
->msgout_ctr
= 1;
3103 esp_advance_phase(SCptr
, in_the_dark
);
3104 return esp_do_phase_determine(esp
);
3107 /* If we disconnect now, all hell breaks loose. */
3108 ESPLOG(("esp%d: whoops, disconnect\n", esp
->esp_id
));
3109 esp_advance_phase(SCptr
, in_the_dark
);
3110 return esp_do_phase_determine(esp
);
3114 static int esp_enter_status(struct esp
*esp
)
3116 u8 thecmd
= ESP_CMD_ICCSEQ
;
3118 esp_cmd(esp
, ESP_CMD_FLUSH
);
3119 if (esp
->erev
!= fashme
) {
3122 esp
->esp_command
[0] = esp
->esp_command
[1] = 0xff;
3123 sbus_writeb(2, esp
->eregs
+ ESP_TCLOW
);
3124 sbus_writeb(0, esp
->eregs
+ ESP_TCMED
);
3125 tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
);
3126 tmp
|= (DMA_ST_WRITE
| DMA_ENABLE
);
3127 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
3128 if (esp
->dma
->revision
== dvmaesc1
)
3129 sbus_writel(0x100, esp
->dregs
+ DMA_COUNT
);
3130 sbus_writel(esp
->esp_command_dvma
, esp
->dregs
+ DMA_ADDR
);
3131 thecmd
|= ESP_CMD_DMA
;
3133 esp_cmd(esp
, thecmd
);
3134 esp_advance_phase(esp
->current_SC
, in_status
);
3136 return esp_do_status(esp
);
3139 static int esp_disconnect_amidst_phases(struct esp
*esp
)
3141 struct scsi_cmnd
*sp
= esp
->current_SC
;
3142 struct esp_device
*esp_dev
= sp
->device
->hostdata
;
3144 /* This means real problems if we see this
3145 * here. Unless we were actually trying
3146 * to force the device to abort/reset.
3148 ESPLOG(("esp%d Disconnect amidst phases, ", esp
->esp_id
));
3149 ESPLOG(("pphase<%s> cphase<%s>, ",
3150 phase_string(sp
->SCp
.phase
),
3151 phase_string(sp
->SCp
.sent_command
)));
3153 if (esp
->disconnected_SC
!= NULL
|| (esp
->erev
== fashme
))
3154 esp_cmd(esp
, ESP_CMD_ESEL
);
3156 switch (esp
->cur_msgout
[0]) {
3158 /* We didn't expect this to happen at all. */
3159 ESPLOG(("device is bolixed\n"));
3160 esp_advance_phase(sp
, in_tgterror
);
3161 esp_done(esp
, (DID_ERROR
<< 16));
3164 case BUS_DEVICE_RESET
:
3165 ESPLOG(("device reset successful\n"));
3166 esp_dev
->sync_max_offset
= 0;
3167 esp_dev
->sync_min_period
= 0;
3169 esp_advance_phase(sp
, in_resetdev
);
3170 esp_done(esp
, (DID_RESET
<< 16));
3174 ESPLOG(("device abort successful\n"));
3175 esp_advance_phase(sp
, in_abortone
);
3176 esp_done(esp
, (DID_ABORT
<< 16));
3183 static int esp_enter_msgout(struct esp
*esp
)
3185 esp_advance_phase(esp
->current_SC
, in_msgout
);
3186 return esp_do_msgout(esp
);
3189 static int esp_enter_msgin(struct esp
*esp
)
3191 esp_advance_phase(esp
->current_SC
, in_msgin
);
3192 return esp_do_msgin(esp
);
3195 static int esp_enter_cmd(struct esp
*esp
)
3197 esp_advance_phase(esp
->current_SC
, in_cmdbegin
);
3198 return esp_do_cmdbegin(esp
);
3201 static int esp_enter_badphase(struct esp
*esp
)
3203 ESPLOG(("esp%d: Bizarre bus phase %2x.\n", esp
->esp_id
,
3204 esp
->sreg
& ESP_STAT_PMASK
));
3205 return do_reset_bus
;
3208 typedef int (*espfunc_t
)(struct esp
*);
3210 static espfunc_t phase_vector
[] = {
3211 esp_do_data
, /* ESP_DOP */
3212 esp_do_data
, /* ESP_DIP */
3213 esp_enter_cmd
, /* ESP_CMDP */
3214 esp_enter_status
, /* ESP_STATP */
3215 esp_enter_badphase
, /* ESP_STAT_PMSG */
3216 esp_enter_badphase
, /* ESP_STAT_PMSG | ESP_STAT_PIO */
3217 esp_enter_msgout
, /* ESP_MOP */
3218 esp_enter_msgin
, /* ESP_MIP */
3221 /* The target has control of the bus and we have to see where it has
3224 static int esp_do_phase_determine(struct esp
*esp
)
3226 if ((esp
->ireg
& ESP_INTR_DC
) != 0)
3227 return esp_disconnect_amidst_phases(esp
);
3228 return phase_vector
[esp
->sreg
& ESP_STAT_PMASK
](esp
);
3231 /* First interrupt after exec'ing a cmd comes here. */
3232 static int esp_select_complete(struct esp
*esp
)
3234 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
3235 struct esp_device
*esp_dev
= SCptr
->device
->hostdata
;
3236 int cmd_bytes_sent
, fcnt
;
3238 if (esp
->erev
!= fashme
)
3239 esp
->seqreg
= (sbus_readb(esp
->eregs
+ ESP_SSTEP
) & ESP_STEP_VBITS
);
3241 if (esp
->erev
== fashme
)
3242 fcnt
= esp
->hme_fifo_workaround_count
;
3244 fcnt
= (sbus_readb(esp
->eregs
+ ESP_FFLAGS
) & ESP_FF_FBYTES
);
3246 cmd_bytes_sent
= esp_bytes_sent(esp
, fcnt
);
3247 dma_invalidate(esp
);
3249 /* Let's check to see if a reselect happened
3250 * while we we're trying to select. This must
3253 if (esp
->ireg
== (ESP_INTR_RSEL
| ESP_INTR_FDONE
)) {
3254 esp_reconnect(esp
, SCptr
);
3255 return esp_do_reconnect(esp
);
3258 /* Looks like things worked, we should see a bus service &
3259 * a function complete interrupt at this point. Note we
3260 * are doing a direct comparison because we don't want to
3261 * be fooled into thinking selection was successful if
3262 * ESP_INTR_DC is set, see below.
3264 if (esp
->ireg
== (ESP_INTR_FDONE
| ESP_INTR_BSERV
)) {
3265 /* target speaks... */
3266 esp
->targets_present
|= (1<<SCptr
->device
->id
);
3268 /* What if the target ignores the sdtr? */
3272 /* See how far, if at all, we got in getting
3273 * the information out to the target.
3275 switch (esp
->seqreg
) {
3279 /* Arbitration won, target selected, but
3280 * we are in some phase which is not command
3281 * phase nor is it message out phase.
3283 * XXX We've confused the target, obviously.
3284 * XXX So clear it's state, but we also end
3285 * XXX up clearing everyone elses. That isn't
3286 * XXX so nice. I'd like to just reset this
3287 * XXX target, but if I cannot even get it's
3288 * XXX attention and finish selection to talk
3289 * XXX to it, there is not much more I can do.
3290 * XXX If we have a loaded bus we're going to
3291 * XXX spend the next second or so renegotiating
3292 * XXX for synchronous transfers.
3294 ESPLOG(("esp%d: STEP_ASEL for tgt %d\n",
3295 esp
->esp_id
, SCptr
->device
->id
));
3298 /* Arbitration won, target selected, went
3299 * to message out phase, sent one message
3300 * byte, then we stopped. ATN is asserted
3301 * on the SCSI bus and the target is still
3302 * there hanging on. This is a legal
3303 * sequence step if we gave the ESP a select
3306 * XXX See above, I could set the borken flag
3307 * XXX in the device struct and retry the
3308 * XXX command. But would that help for
3309 * XXX tagged capable targets?
3313 /* Arbitration won, target selected, maybe
3314 * sent the one message byte in message out
3315 * phase, but we did not go to command phase
3316 * in the end. Actually, we could have sent
3317 * only some of the message bytes if we tried
3318 * to send out the entire identify and tag
3319 * message using ESP_CMD_SA3.
3325 /* No, not the powerPC pinhead. Arbitration
3326 * won, all message bytes sent if we went to
3327 * message out phase, went to command phase
3328 * but only part of the command was sent.
3330 * XXX I've seen this, but usually in conjunction
3331 * XXX with a gross error which appears to have
3332 * XXX occurred between the time I told the
3333 * XXX ESP to arbitrate and when I got the
3334 * XXX interrupt. Could I have misloaded the
3335 * XXX command bytes into the fifo? Actually,
3336 * XXX I most likely missed a phase, and therefore
3337 * XXX went into never never land and didn't even
3338 * XXX know it. That was the old driver though.
3339 * XXX What is even more peculiar is that the ESP
3340 * XXX showed the proper function complete and
3341 * XXX bus service bits in the interrupt register.
3344 case ESP_STEP_FINI4
:
3345 case ESP_STEP_FINI5
:
3346 case ESP_STEP_FINI6
:
3347 case ESP_STEP_FINI7
:
3348 /* Account for the identify message */
3349 if (SCptr
->SCp
.phase
== in_slct_norm
)
3350 cmd_bytes_sent
-= 1;
3353 if (esp
->erev
!= fashme
)
3354 esp_cmd(esp
, ESP_CMD_NULL
);
3356 /* Be careful, we could really get fucked during synchronous
3357 * data transfers if we try to flush the fifo now.
3359 if ((esp
->erev
!= fashme
) && /* not a Happy Meal and... */
3360 !fcnt
&& /* Fifo is empty and... */
3361 /* either we are not doing synchronous transfers or... */
3362 (!esp_dev
->sync_max_offset
||
3363 /* We are not going into data in phase. */
3364 ((esp
->sreg
& ESP_STAT_PMASK
) != ESP_DIP
)))
3365 esp_cmd(esp
, ESP_CMD_FLUSH
); /* flush is safe */
3367 /* See how far we got if this is not a slow command. */
3368 if (!esp
->esp_slowcmd
) {
3369 if (cmd_bytes_sent
< 0)
3371 if (cmd_bytes_sent
!= SCptr
->cmd_len
) {
3372 /* Crapola, mark it as a slowcmd
3373 * so that we have some chance of
3374 * keeping the command alive with
3377 * XXX Actually, if we didn't send it all
3378 * XXX this means either we didn't set things
3379 * XXX up properly (driver bug) or the target
3380 * XXX or the ESP detected parity on one of
3381 * XXX the command bytes. This makes much
3382 * XXX more sense, and therefore this code
3383 * XXX should be changed to send out a
3384 * XXX parity error message or if the status
3385 * XXX register shows no parity error then
3386 * XXX just expect the target to bring the
3387 * XXX bus into message in phase so that it
3388 * XXX can send us the parity error message.
3391 esp
->esp_slowcmd
= 1;
3392 esp
->esp_scmdp
= &(SCptr
->cmnd
[cmd_bytes_sent
]);
3393 esp
->esp_scmdleft
= (SCptr
->cmd_len
- cmd_bytes_sent
);
3397 /* Now figure out where we went. */
3398 esp_advance_phase(SCptr
, in_the_dark
);
3399 return esp_do_phase_determine(esp
);
3402 /* Did the target even make it? */
3403 if (esp
->ireg
== ESP_INTR_DC
) {
3404 /* wheee... nobody there or they didn't like
3405 * what we told it to do, clean up.
3408 /* If anyone is off the bus, but working on
3409 * a command in the background for us, tell
3410 * the ESP to listen for them.
3412 if (esp
->disconnected_SC
)
3413 esp_cmd(esp
, ESP_CMD_ESEL
);
3415 if (((1<<SCptr
->device
->id
) & esp
->targets_present
) &&
3417 (esp
->cur_msgout
[0] == EXTENDED_MESSAGE
) &&
3418 (SCptr
->SCp
.phase
== in_slct_msg
||
3419 SCptr
->SCp
.phase
== in_slct_stop
)) {
3422 ESPLOG(("esp%d: Failed synchronous negotiation for target %d "
3423 "lun %d\n", esp
->esp_id
, SCptr
->device
->id
, SCptr
->device
->lun
));
3424 esp_dev
->sync_max_offset
= 0;
3425 esp_dev
->sync_min_period
= 0;
3426 esp_dev
->sync
= 1; /* so we don't negotiate again */
3428 /* Run the command again, this time though we
3429 * won't try to negotiate for synchronous transfers.
3431 * XXX I'd like to do something like send an
3432 * XXX INITIATOR_ERROR or ABORT message to the
3433 * XXX target to tell it, "Sorry I confused you,
3434 * XXX please come back and I will be nicer next
3435 * XXX time". But that requires having the target
3436 * XXX on the bus, and it has dropped BSY on us.
3438 esp
->current_SC
= NULL
;
3439 esp_advance_phase(SCptr
, not_issued
);
3440 prepend_SC(&esp
->issue_SC
, SCptr
);
3445 /* Ok, this is normal, this is what we see during boot
3446 * or whenever when we are scanning the bus for targets.
3447 * But first make sure that is really what is happening.
3449 if (((1<<SCptr
->device
->id
) & esp
->targets_present
)) {
3450 ESPLOG(("esp%d: Warning, live target %d not responding to "
3451 "selection.\n", esp
->esp_id
, SCptr
->device
->id
));
3453 /* This _CAN_ happen. The SCSI standard states that
3454 * the target is to _not_ respond to selection if
3455 * _it_ detects bad parity on the bus for any reason.
3456 * Therefore, we assume that if we've talked successfully
3457 * to this target before, bad parity is the problem.
3459 esp_done(esp
, (DID_PARITY
<< 16));
3461 /* Else, there really isn't anyone there. */
3462 ESPMISC(("esp: selection failure, maybe nobody there?\n"));
3463 ESPMISC(("esp: target %d lun %d\n",
3464 SCptr
->device
->id
, SCptr
->device
->lun
));
3465 esp_done(esp
, (DID_BAD_TARGET
<< 16));
3470 ESPLOG(("esp%d: Selection failure.\n", esp
->esp_id
));
3471 printk("esp%d: Currently -- ", esp
->esp_id
);
3472 esp_print_ireg(esp
->ireg
); printk(" ");
3473 esp_print_statreg(esp
->sreg
); printk(" ");
3474 esp_print_seqreg(esp
->seqreg
); printk("\n");
3475 printk("esp%d: New -- ", esp
->esp_id
);
3476 esp
->sreg
= sbus_readb(esp
->eregs
+ ESP_STATUS
);
3477 esp
->seqreg
= sbus_readb(esp
->eregs
+ ESP_SSTEP
);
3478 esp
->ireg
= sbus_readb(esp
->eregs
+ ESP_INTRPT
);
3479 esp_print_ireg(esp
->ireg
); printk(" ");
3480 esp_print_statreg(esp
->sreg
); printk(" ");
3481 esp_print_seqreg(esp
->seqreg
); printk("\n");
3482 ESPLOG(("esp%d: resetting bus\n", esp
->esp_id
));
3483 return do_reset_bus
; /* ugh... */
3486 /* Continue reading bytes for msgin phase. */
3487 static int esp_do_msgincont(struct esp
*esp
)
3489 if (esp
->ireg
& ESP_INTR_BSERV
) {
3490 /* in the right phase too? */
3491 if ((esp
->sreg
& ESP_STAT_PMASK
) == ESP_MIP
) {
3493 esp_cmd(esp
, ESP_CMD_TI
);
3494 esp_advance_phase(esp
->current_SC
, in_msgindone
);
3498 /* We changed phase but ESP shows bus service,
3499 * in this case it is most likely that we, the
3500 * hacker who has been up for 20hrs straight
3501 * staring at the screen, drowned in coffee
3502 * smelling like retched cigarette ashes
3503 * have miscoded something..... so, try to
3504 * recover as best we can.
3506 ESPLOG(("esp%d: message in mis-carriage.\n", esp
->esp_id
));
3508 esp_advance_phase(esp
->current_SC
, in_the_dark
);
3509 return do_phase_determine
;
3512 static int check_singlebyte_msg(struct esp
*esp
)
3514 esp
->prevmsgin
= esp
->cur_msgin
[0];
3515 if (esp
->cur_msgin
[0] & 0x80) {
3517 ESPLOG(("esp%d: target sends identify amidst phases\n",
3519 esp_advance_phase(esp
->current_SC
, in_the_dark
);
3521 } else if (((esp
->cur_msgin
[0] & 0xf0) == 0x20) ||
3522 (esp
->cur_msgin
[0] == EXTENDED_MESSAGE
)) {
3524 esp_advance_phase(esp
->current_SC
, in_msgincont
);
3527 esp_advance_phase(esp
->current_SC
, in_the_dark
);
3528 switch (esp
->cur_msgin
[0]) {
3530 /* We don't want to hear about it. */
3531 ESPLOG(("esp%d: msg %02x which we don't know about\n", esp
->esp_id
,
3532 esp
->cur_msgin
[0]));
3533 return MESSAGE_REJECT
;
3536 ESPLOG(("esp%d: target %d sends a nop\n", esp
->esp_id
,
3537 esp
->current_SC
->device
->id
));
3540 case RESTORE_POINTERS
:
3541 /* In this case we might also have to backup the
3542 * "slow command" pointer. It is rare to get such
3543 * a save/restore pointer sequence so early in the
3544 * bus transition sequences, but cover it.
3546 if (esp
->esp_slowcmd
) {
3547 esp
->esp_scmdleft
= esp
->current_SC
->cmd_len
;
3548 esp
->esp_scmdp
= &esp
->current_SC
->cmnd
[0];
3550 esp_restore_pointers(esp
, esp
->current_SC
);
3554 esp_save_pointers(esp
, esp
->current_SC
);
3557 case COMMAND_COMPLETE
:
3559 /* Freeing the bus, let it go. */
3560 esp
->current_SC
->SCp
.phase
= in_freeing
;
3563 case MESSAGE_REJECT
:
3564 ESPMISC(("msg reject, "));
3565 if (esp
->prevmsgout
== EXTENDED_MESSAGE
) {
3566 struct esp_device
*esp_dev
= esp
->current_SC
->device
->hostdata
;
3568 /* Doesn't look like this target can
3569 * do synchronous or WIDE transfers.
3571 ESPSDTR(("got reject, was trying nego, clearing sync/WIDE\n"));
3574 esp_dev
->sync_min_period
= 0;
3575 esp_dev
->sync_max_offset
= 0;
3578 ESPMISC(("not sync nego, sending ABORT\n"));
3584 /* Target negotiates for synchronous transfers before we do, this
3585 * is legal although very strange. What is even funnier is that
3586 * the SCSI2 standard specifically recommends against targets doing
3587 * this because so many initiators cannot cope with this occurring.
3589 static int target_with_ants_in_pants(struct esp
*esp
,
3590 struct scsi_cmnd
*SCptr
,
3591 struct esp_device
*esp_dev
)
3593 if (esp_dev
->sync
|| SCptr
->device
->borken
) {
3594 /* sorry, no can do */
3595 ESPSDTR(("forcing to async, "));
3596 build_sync_nego_msg(esp
, 0, 0);
3599 ESPLOG(("esp%d: hoping for msgout\n", esp
->esp_id
));
3600 esp_advance_phase(SCptr
, in_the_dark
);
3601 return EXTENDED_MESSAGE
;
3604 /* Ok, we'll check them out... */
3608 static void sync_report(struct esp
*esp
)
3613 msg3
= esp
->cur_msgin
[3];
3614 msg4
= esp
->cur_msgin
[4];
3616 int hz
= 1000000000 / (msg3
* 4);
3617 int integer
= hz
/ 1000000;
3618 int fraction
= (hz
- (integer
* 1000000)) / 10000;
3619 if ((esp
->erev
== fashme
) &&
3620 (esp
->config3
[esp
->current_SC
->device
->id
] & ESP_CONFIG3_EWIDE
)) {
3624 } else if ((msg3
* 4) < 200) {
3627 type
= "synchronous";
3630 /* Do not transform this back into one big printk
3631 * again, it triggers a bug in our sparc64-gcc272
3632 * sibling call optimization. -DaveM
3634 ESPLOG((KERN_INFO
"esp%d: target %d ",
3635 esp
->esp_id
, esp
->current_SC
->device
->id
));
3636 ESPLOG(("[period %dns offset %d %d.%02dMHz ",
3637 (int) msg3
* 4, (int) msg4
,
3638 integer
, fraction
));
3639 ESPLOG(("%s SCSI%s]\n", type
,
3640 (((msg3
* 4) < 200) ? "-II" : "")));
3642 ESPLOG((KERN_INFO
"esp%d: target %d asynchronous\n",
3643 esp
->esp_id
, esp
->current_SC
->device
->id
));
3647 static int check_multibyte_msg(struct esp
*esp
)
3649 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
3650 struct esp_device
*esp_dev
= SCptr
->device
->hostdata
;
3652 int message_out
= 0;
3654 ESPSDTR(("chk multibyte msg: "));
3655 if (esp
->cur_msgin
[2] == EXTENDED_SDTR
) {
3656 int period
= esp
->cur_msgin
[3];
3657 int offset
= esp
->cur_msgin
[4];
3659 ESPSDTR(("is sync nego response, "));
3663 /* Target negotiates first! */
3664 ESPSDTR(("target jumps the gun, "));
3665 message_out
= EXTENDED_MESSAGE
; /* we must respond */
3666 rval
= target_with_ants_in_pants(esp
, SCptr
, esp_dev
);
3671 ESPSDTR(("examining sdtr, "));
3673 /* Offset cannot be larger than ESP fifo size. */
3675 ESPSDTR(("offset too big %2x, ", offset
));
3677 ESPSDTR(("sending back new offset\n"));
3678 build_sync_nego_msg(esp
, period
, offset
);
3679 return EXTENDED_MESSAGE
;
3682 if (offset
&& period
> esp
->max_period
) {
3683 /* Yeee, async for this slow device. */
3684 ESPSDTR(("period too long %2x, ", period
));
3685 build_sync_nego_msg(esp
, 0, 0);
3686 ESPSDTR(("hoping for msgout\n"));
3687 esp_advance_phase(esp
->current_SC
, in_the_dark
);
3688 return EXTENDED_MESSAGE
;
3689 } else if (offset
&& period
< esp
->min_period
) {
3690 ESPSDTR(("period too short %2x, ", period
));
3691 period
= esp
->min_period
;
3692 if (esp
->erev
> esp236
)
3696 } else if (offset
) {
3699 ESPSDTR(("period is ok, "));
3700 tmp
= esp
->ccycle
/ 1000;
3701 regval
= (((period
<< 2) + tmp
- 1) / tmp
);
3702 if (regval
&& ((esp
->erev
== fas100a
||
3703 esp
->erev
== fas236
||
3704 esp
->erev
== fashme
))) {
3713 esp_dev
->sync_min_period
= (regval
& 0x1f);
3714 esp_dev
->sync_max_offset
= (offset
| esp
->radelay
);
3715 if (esp
->erev
== fas100a
|| esp
->erev
== fas236
|| esp
->erev
== fashme
) {
3716 if ((esp
->erev
== fas100a
) || (esp
->erev
== fashme
))
3717 bit
= ESP_CONFIG3_FAST
;
3719 bit
= ESP_CONFIG3_FSCSI
;
3721 /* On FAS366, if using fast-20 synchronous transfers
3722 * we need to make sure the REQ/ACK assert/deassert
3723 * control bits are clear.
3725 if (esp
->erev
== fashme
)
3726 esp_dev
->sync_max_offset
&= ~esp
->radelay
;
3727 esp
->config3
[SCptr
->device
->id
] |= bit
;
3729 esp
->config3
[SCptr
->device
->id
] &= ~bit
;
3731 esp
->prev_cfg3
= esp
->config3
[SCptr
->device
->id
];
3732 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
3734 esp
->prev_soff
= esp_dev
->sync_max_offset
;
3735 esp
->prev_stp
= esp_dev
->sync_min_period
;
3736 sbus_writeb(esp
->prev_soff
, esp
->eregs
+ ESP_SOFF
);
3737 sbus_writeb(esp
->prev_stp
, esp
->eregs
+ ESP_STP
);
3738 ESPSDTR(("soff=%2x stp=%2x cfg3=%2x\n",
3739 esp_dev
->sync_max_offset
,
3740 esp_dev
->sync_min_period
,
3741 esp
->config3
[SCptr
->device
->id
]));
3744 } else if (esp_dev
->sync_max_offset
) {
3747 /* back to async mode */
3748 ESPSDTR(("unaccaptable sync nego, forcing async\n"));
3749 esp_dev
->sync_max_offset
= 0;
3750 esp_dev
->sync_min_period
= 0;
3753 sbus_writeb(esp
->prev_soff
, esp
->eregs
+ ESP_SOFF
);
3754 sbus_writeb(esp
->prev_stp
, esp
->eregs
+ ESP_STP
);
3755 if (esp
->erev
== fas100a
|| esp
->erev
== fas236
|| esp
->erev
== fashme
) {
3756 if ((esp
->erev
== fas100a
) || (esp
->erev
== fashme
))
3757 bit
= ESP_CONFIG3_FAST
;
3759 bit
= ESP_CONFIG3_FSCSI
;
3760 esp
->config3
[SCptr
->device
->id
] &= ~bit
;
3761 esp
->prev_cfg3
= esp
->config3
[SCptr
->device
->id
];
3762 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
3768 ESPSDTR(("chk multibyte msg: sync is known, "));
3772 ESPLOG(("esp%d: sending sdtr back, hoping for msgout\n",
3774 build_sync_nego_msg(esp
, period
, offset
);
3775 esp_advance_phase(SCptr
, in_the_dark
);
3776 return EXTENDED_MESSAGE
;
3779 ESPSDTR(("returning zero\n"));
3780 esp_advance_phase(SCptr
, in_the_dark
); /* ...or else! */
3782 } else if (esp
->cur_msgin
[2] == EXTENDED_WDTR
) {
3783 int size
= 8 << esp
->cur_msgin
[3];
3786 if (esp
->erev
!= fashme
) {
3787 ESPLOG(("esp%d: AIEEE wide msg received and not HME.\n",
3789 message_out
= MESSAGE_REJECT
;
3790 } else if (size
> 16) {
3791 ESPLOG(("esp%d: AIEEE wide transfer for %d size "
3792 "not supported.\n", esp
->esp_id
, size
));
3793 message_out
= MESSAGE_REJECT
;
3795 /* Things look good; let's see what we got. */
3797 /* Set config 3 register for this target. */
3798 esp
->config3
[SCptr
->device
->id
] |= ESP_CONFIG3_EWIDE
;
3800 /* Just make sure it was one byte sized. */
3802 ESPLOG(("esp%d: Aieee, wide nego of %d size.\n",
3803 esp
->esp_id
, size
));
3804 message_out
= MESSAGE_REJECT
;
3807 /* Pure paranoia. */
3808 esp
->config3
[SCptr
->device
->id
] &= ~(ESP_CONFIG3_EWIDE
);
3810 esp
->prev_cfg3
= esp
->config3
[SCptr
->device
->id
];
3811 sbus_writeb(esp
->prev_cfg3
, esp
->eregs
+ ESP_CFG3
);
3813 /* Regardless, next try for sync transfers. */
3814 build_sync_nego_msg(esp
, esp
->sync_defp
, 15);
3817 message_out
= EXTENDED_MESSAGE
;
3819 } else if (esp
->cur_msgin
[2] == EXTENDED_MODIFY_DATA_POINTER
) {
3820 ESPLOG(("esp%d: rejecting modify data ptr msg\n", esp
->esp_id
));
3821 message_out
= MESSAGE_REJECT
;
3824 esp_advance_phase(SCptr
, in_the_dark
);
3828 static int esp_do_msgindone(struct esp
*esp
)
3830 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
3831 int message_out
= 0, it
= 0, rval
;
3833 rval
= skipahead1(esp
, SCptr
, in_msgin
, in_msgindone
);
3836 if (SCptr
->SCp
.sent_command
!= in_status
) {
3837 if (!(esp
->ireg
& ESP_INTR_DC
)) {
3838 if (esp
->msgin_len
&& (esp
->sreg
& ESP_STAT_PERR
)) {
3839 message_out
= MSG_PARITY_ERROR
;
3840 esp_cmd(esp
, ESP_CMD_FLUSH
);
3841 } else if (esp
->erev
!= fashme
&&
3842 (it
= (sbus_readb(esp
->eregs
+ ESP_FFLAGS
) & ESP_FF_FBYTES
)) != 1) {
3843 /* We certainly dropped the ball somewhere. */
3844 message_out
= INITIATOR_ERROR
;
3845 esp_cmd(esp
, ESP_CMD_FLUSH
);
3846 } else if (!esp
->msgin_len
) {
3847 if (esp
->erev
== fashme
)
3848 it
= esp
->hme_fifo_workaround_buffer
[0];
3850 it
= sbus_readb(esp
->eregs
+ ESP_FDATA
);
3851 esp_advance_phase(SCptr
, in_msgincont
);
3853 /* it is ok and we want it */
3854 if (esp
->erev
== fashme
)
3855 it
= esp
->cur_msgin
[esp
->msgin_ctr
] =
3856 esp
->hme_fifo_workaround_buffer
[0];
3858 it
= esp
->cur_msgin
[esp
->msgin_ctr
] =
3859 sbus_readb(esp
->eregs
+ ESP_FDATA
);
3863 esp_advance_phase(SCptr
, in_the_dark
);
3867 it
= esp
->cur_msgin
[0];
3869 if (!message_out
&& esp
->msgin_len
) {
3870 if (esp
->msgin_ctr
< esp
->msgin_len
) {
3871 esp_advance_phase(SCptr
, in_msgincont
);
3872 } else if (esp
->msgin_len
== 1) {
3873 message_out
= check_singlebyte_msg(esp
);
3874 } else if (esp
->msgin_len
== 2) {
3875 if (esp
->cur_msgin
[0] == EXTENDED_MESSAGE
) {
3876 if ((it
+ 2) >= 15) {
3877 message_out
= MESSAGE_REJECT
;
3879 esp
->msgin_len
= (it
+ 2);
3880 esp_advance_phase(SCptr
, in_msgincont
);
3883 message_out
= MESSAGE_REJECT
; /* foo on you */
3886 message_out
= check_multibyte_msg(esp
);
3889 if (message_out
< 0) {
3890 return -message_out
;
3891 } else if (message_out
) {
3892 if (((message_out
!= 1) &&
3893 ((message_out
< 0x20) || (message_out
& 0x80))))
3894 esp
->msgout_len
= 1;
3895 esp
->cur_msgout
[0] = message_out
;
3896 esp_cmd(esp
, ESP_CMD_SATN
);
3897 esp_advance_phase(SCptr
, in_the_dark
);
3900 esp
->sreg
= sbus_readb(esp
->eregs
+ ESP_STATUS
);
3901 esp
->sreg
&= ~(ESP_STAT_INTR
);
3902 if ((esp
->sreg
& (ESP_STAT_PMSG
|ESP_STAT_PCD
)) == (ESP_STAT_PMSG
|ESP_STAT_PCD
))
3903 esp_cmd(esp
, ESP_CMD_MOK
);
3904 if ((SCptr
->SCp
.sent_command
== in_msgindone
) &&
3905 (SCptr
->SCp
.phase
== in_freeing
))
3906 return esp_do_freebus(esp
);
3910 static int esp_do_cmdbegin(struct esp
*esp
)
3912 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
3914 esp_advance_phase(SCptr
, in_cmdend
);
3915 if (esp
->erev
== fashme
) {
3916 u32 tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
);
3919 for (i
= 0; i
< esp
->esp_scmdleft
; i
++)
3920 esp
->esp_command
[i
] = *esp
->esp_scmdp
++;
3921 esp
->esp_scmdleft
= 0;
3922 esp_cmd(esp
, ESP_CMD_FLUSH
);
3923 esp_setcount(esp
->eregs
, i
, 1);
3924 esp_cmd(esp
, (ESP_CMD_DMA
| ESP_CMD_TI
));
3925 tmp
|= (DMA_SCSI_DISAB
| DMA_ENABLE
);
3926 tmp
&= ~(DMA_ST_WRITE
);
3927 sbus_writel(i
, esp
->dregs
+ DMA_COUNT
);
3928 sbus_writel(esp
->esp_command_dvma
, esp
->dregs
+ DMA_ADDR
);
3929 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
3933 esp_cmd(esp
, ESP_CMD_FLUSH
);
3934 tmp
= *esp
->esp_scmdp
++;
3935 esp
->esp_scmdleft
--;
3936 sbus_writeb(tmp
, esp
->eregs
+ ESP_FDATA
);
3937 esp_cmd(esp
, ESP_CMD_TI
);
3942 static int esp_do_cmddone(struct esp
*esp
)
3944 if (esp
->erev
== fashme
)
3945 dma_invalidate(esp
);
3947 esp_cmd(esp
, ESP_CMD_NULL
);
3949 if (esp
->ireg
& ESP_INTR_BSERV
) {
3950 esp_advance_phase(esp
->current_SC
, in_the_dark
);
3951 return esp_do_phase_determine(esp
);
3954 ESPLOG(("esp%d: in do_cmddone() but didn't get BSERV interrupt.\n",
3956 return do_reset_bus
;
3959 static int esp_do_msgout(struct esp
*esp
)
3961 esp_cmd(esp
, ESP_CMD_FLUSH
);
3962 switch (esp
->msgout_len
) {
3964 if (esp
->erev
== fashme
)
3965 hme_fifo_push(esp
, &esp
->cur_msgout
[0], 1);
3967 sbus_writeb(esp
->cur_msgout
[0], esp
->eregs
+ ESP_FDATA
);
3969 esp_cmd(esp
, ESP_CMD_TI
);
3973 esp
->esp_command
[0] = esp
->cur_msgout
[0];
3974 esp
->esp_command
[1] = esp
->cur_msgout
[1];
3976 if (esp
->erev
== fashme
) {
3977 hme_fifo_push(esp
, &esp
->cur_msgout
[0], 2);
3978 esp_cmd(esp
, ESP_CMD_TI
);
3980 dma_setup(esp
, esp
->esp_command_dvma
, 2, 0);
3981 esp_setcount(esp
->eregs
, 2, 0);
3982 esp_cmd(esp
, ESP_CMD_DMA
| ESP_CMD_TI
);
3987 esp
->esp_command
[0] = esp
->cur_msgout
[0];
3988 esp
->esp_command
[1] = esp
->cur_msgout
[1];
3989 esp
->esp_command
[2] = esp
->cur_msgout
[2];
3990 esp
->esp_command
[3] = esp
->cur_msgout
[3];
3993 if (esp
->erev
== fashme
) {
3994 hme_fifo_push(esp
, &esp
->cur_msgout
[0], 4);
3995 esp_cmd(esp
, ESP_CMD_TI
);
3997 dma_setup(esp
, esp
->esp_command_dvma
, 4, 0);
3998 esp_setcount(esp
->eregs
, 4, 0);
3999 esp_cmd(esp
, ESP_CMD_DMA
| ESP_CMD_TI
);
4004 esp
->esp_command
[0] = esp
->cur_msgout
[0];
4005 esp
->esp_command
[1] = esp
->cur_msgout
[1];
4006 esp
->esp_command
[2] = esp
->cur_msgout
[2];
4007 esp
->esp_command
[3] = esp
->cur_msgout
[3];
4008 esp
->esp_command
[4] = esp
->cur_msgout
[4];
4011 if (esp
->erev
== fashme
) {
4012 hme_fifo_push(esp
, &esp
->cur_msgout
[0], 5);
4013 esp_cmd(esp
, ESP_CMD_TI
);
4015 dma_setup(esp
, esp
->esp_command_dvma
, 5, 0);
4016 esp_setcount(esp
->eregs
, 5, 0);
4017 esp_cmd(esp
, ESP_CMD_DMA
| ESP_CMD_TI
);
4023 ESPMISC(("bogus msgout sending NOP\n"));
4024 esp
->cur_msgout
[0] = NOP
;
4026 if (esp
->erev
== fashme
) {
4027 hme_fifo_push(esp
, &esp
->cur_msgout
[0], 1);
4029 sbus_writeb(esp
->cur_msgout
[0], esp
->eregs
+ ESP_FDATA
);
4032 esp
->msgout_len
= 1;
4033 esp_cmd(esp
, ESP_CMD_TI
);
4037 esp_advance_phase(esp
->current_SC
, in_msgoutdone
);
4041 static int esp_do_msgoutdone(struct esp
*esp
)
4043 if (esp
->msgout_len
> 1) {
4044 /* XXX HME/FAS ATN deassert workaround required,
4045 * XXX no DMA flushing, only possible ESP_CMD_FLUSH
4046 * XXX to kill the fifo.
4048 if (esp
->erev
!= fashme
) {
4051 while ((tmp
= sbus_readl(esp
->dregs
+ DMA_CSR
)) & DMA_PEND_READ
)
4054 sbus_writel(tmp
, esp
->dregs
+ DMA_CSR
);
4055 dma_invalidate(esp
);
4057 esp_cmd(esp
, ESP_CMD_FLUSH
);
4060 if (!(esp
->ireg
& ESP_INTR_DC
)) {
4061 if (esp
->erev
!= fashme
)
4062 esp_cmd(esp
, ESP_CMD_NULL
);
4063 switch (esp
->sreg
& ESP_STAT_PMASK
) {
4065 /* whoops, parity error */
4066 ESPLOG(("esp%d: still in msgout, parity error assumed\n",
4068 if (esp
->msgout_len
> 1)
4069 esp_cmd(esp
, ESP_CMD_SATN
);
4070 esp_advance_phase(esp
->current_SC
, in_msgout
);
4077 /* Happy Meal fifo is touchy... */
4078 if ((esp
->erev
!= fashme
) &&
4080 !(((struct esp_device
*)esp
->current_SC
->device
->hostdata
)->sync_max_offset
))
4081 esp_cmd(esp
, ESP_CMD_FLUSH
);
4086 ESPLOG(("esp%d: disconnect, resetting bus\n", esp
->esp_id
));
4087 return do_reset_bus
;
4090 /* If we sent out a synchronous negotiation message, update
4093 if (esp
->cur_msgout
[2] == EXTENDED_MESSAGE
&&
4094 esp
->cur_msgout
[4] == EXTENDED_SDTR
) {
4095 esp
->snip
= 1; /* anal retentiveness... */
4098 esp
->prevmsgout
= esp
->cur_msgout
[0];
4099 esp
->msgout_len
= 0;
4100 esp_advance_phase(esp
->current_SC
, in_the_dark
);
4101 return esp_do_phase_determine(esp
);
4104 static int esp_bus_unexpected(struct esp
*esp
)
4106 ESPLOG(("esp%d: command in weird state %2x\n",
4107 esp
->esp_id
, esp
->current_SC
->SCp
.phase
));
4108 return do_reset_bus
;
4111 static espfunc_t bus_vector
[] = {
4124 esp_do_phase_determine
,
4130 /* This is the second tier in our dual-level SCSI state machine. */
4131 static int esp_work_bus(struct esp
*esp
)
4133 struct scsi_cmnd
*SCptr
= esp
->current_SC
;
4136 ESPBUS(("esp_work_bus: "));
4138 ESPBUS(("reconnect\n"));
4139 return esp_do_reconnect(esp
);
4141 phase
= SCptr
->SCp
.phase
;
4142 if ((phase
& 0xf0) == in_phases_mask
)
4143 return bus_vector
[(phase
& 0x0f)](esp
);
4144 else if ((phase
& 0xf0) == in_slct_mask
)
4145 return esp_select_complete(esp
);
4147 return esp_bus_unexpected(esp
);
4150 static espfunc_t isvc_vector
[] = {
4152 esp_do_phase_determine
,
4158 /* Main interrupt handler for an esp adapter. */
4159 static void esp_handle(struct esp
*esp
)
4161 struct scsi_cmnd
*SCptr
;
4162 int what_next
= do_intr_end
;
4164 SCptr
= esp
->current_SC
;
4166 /* Check for errors. */
4167 esp
->sreg
= sbus_readb(esp
->eregs
+ ESP_STATUS
);
4168 esp
->sreg
&= (~ESP_STAT_INTR
);
4169 if (esp
->erev
== fashme
) {
4170 esp
->sreg2
= sbus_readb(esp
->eregs
+ ESP_STATUS2
);
4171 esp
->seqreg
= (sbus_readb(esp
->eregs
+ ESP_SSTEP
) & ESP_STEP_VBITS
);
4174 if (esp
->sreg
& (ESP_STAT_SPAM
)) {
4175 /* Gross error, could be due to one of:
4177 * - top of fifo overwritten, could be because
4178 * we tried to do a synchronous transfer with
4179 * an offset greater than ESP fifo size
4181 * - top of command register overwritten
4183 * - DMA setup to go in one direction, SCSI
4184 * bus points in the other, whoops
4186 * - weird phase change during asynchronous
4187 * data phase while we are initiator
4189 ESPLOG(("esp%d: Gross error sreg=%2x\n", esp
->esp_id
, esp
->sreg
));
4191 /* If a command is live on the bus we cannot safely
4192 * reset the bus, so we'll just let the pieces fall
4193 * where they may. Here we are hoping that the
4194 * target will be able to cleanly go away soon
4195 * so we can safely reset things.
4198 ESPLOG(("esp%d: No current cmd during gross error, "
4199 "resetting bus\n", esp
->esp_id
));
4200 what_next
= do_reset_bus
;
4205 if (sbus_readl(esp
->dregs
+ DMA_CSR
) & DMA_HNDL_ERROR
) {
4206 /* A DMA gate array error. Here we must
4207 * be seeing one of two things. Either the
4208 * virtual to physical address translation
4209 * on the SBUS could not occur, else the
4210 * translation it did get pointed to a bogus
4213 ESPLOG(("esp%d: DMA error %08x\n", esp
->esp_id
,
4214 sbus_readl(esp
->dregs
+ DMA_CSR
)));
4216 /* DMA gate array itself must be reset to clear the
4221 what_next
= do_reset_bus
;
4225 esp
->ireg
= sbus_readb(esp
->eregs
+ ESP_INTRPT
); /* Unlatch intr reg */
4227 if (esp
->erev
== fashme
) {
4228 /* This chip is really losing. */
4231 ESPHME(("sreg2=%02x,", esp
->sreg2
));
4232 /* Must latch fifo before reading the interrupt
4233 * register else garbage ends up in the FIFO
4234 * which confuses the driver utterly.
4236 if (!(esp
->sreg2
& ESP_STAT2_FEMPTY
) ||
4237 (esp
->sreg2
& ESP_STAT2_F1BYTE
)) {
4238 ESPHME(("fifo_workaround]"));
4241 ESPHME(("no_fifo_workaround]"));
4245 /* No current cmd is only valid at this point when there are
4246 * commands off the bus or we are trying a reset.
4248 if (!SCptr
&& !esp
->disconnected_SC
&& !(esp
->ireg
& ESP_INTR_SR
)) {
4249 /* Panic is safe, since current_SC is null. */
4250 ESPLOG(("esp%d: no command in esp_handle()\n", esp
->esp_id
));
4251 panic("esp_handle: current_SC == penguin within interrupt!");
4254 if (esp
->ireg
& (ESP_INTR_IC
)) {
4255 /* Illegal command fed to ESP. Outside of obvious
4256 * software bugs that could cause this, there is
4257 * a condition with esp100 where we can confuse the
4258 * ESP into an erroneous illegal command interrupt
4259 * because it does not scrape the FIFO properly
4260 * for reselection. See esp100_reconnect_hwbug()
4261 * to see how we try very hard to avoid this.
4263 ESPLOG(("esp%d: invalid command\n", esp
->esp_id
));
4265 esp_dump_state(esp
);
4267 if (SCptr
!= NULL
) {
4268 /* Devices with very buggy firmware can drop BSY
4269 * during a scatter list interrupt when using sync
4270 * mode transfers. We continue the transfer as
4271 * expected, the target drops the bus, the ESP
4272 * gets confused, and we get a illegal command
4273 * interrupt because the bus is in the disconnected
4274 * state now and ESP_CMD_TI is only allowed when
4275 * a nexus is alive on the bus.
4277 ESPLOG(("esp%d: Forcing async and disabling disconnect for "
4278 "target %d\n", esp
->esp_id
, SCptr
->device
->id
));
4279 SCptr
->device
->borken
= 1; /* foo on you */
4282 what_next
= do_reset_bus
;
4283 } else if (!(esp
->ireg
& ~(ESP_INTR_FDONE
| ESP_INTR_BSERV
| ESP_INTR_DC
))) {
4285 unsigned int phase
= SCptr
->SCp
.phase
;
4287 if (phase
& in_phases_mask
) {
4288 what_next
= esp_work_bus(esp
);
4289 } else if (phase
& in_slct_mask
) {
4290 what_next
= esp_select_complete(esp
);
4292 ESPLOG(("esp%d: interrupt for no good reason...\n",
4294 what_next
= do_intr_end
;
4297 ESPLOG(("esp%d: BSERV or FDONE or DC while SCptr==NULL\n",
4299 what_next
= do_reset_bus
;
4301 } else if (esp
->ireg
& ESP_INTR_SR
) {
4302 ESPLOG(("esp%d: SCSI bus reset interrupt\n", esp
->esp_id
));
4303 what_next
= do_reset_complete
;
4304 } else if (esp
->ireg
& (ESP_INTR_S
| ESP_INTR_SATN
)) {
4305 ESPLOG(("esp%d: AIEEE we have been selected by another initiator!\n",
4307 what_next
= do_reset_bus
;
4308 } else if (esp
->ireg
& ESP_INTR_RSEL
) {
4309 if (SCptr
== NULL
) {
4311 what_next
= esp_do_reconnect(esp
);
4312 } else if (SCptr
->SCp
.phase
& in_slct_mask
) {
4313 /* Only selection code knows how to clean
4316 ESPDISC(("Reselected during selection attempt\n"));
4317 what_next
= esp_select_complete(esp
);
4319 ESPLOG(("esp%d: Reselected while bus is busy\n",
4321 what_next
= do_reset_bus
;
4325 /* This is tier-one in our dual level SCSI state machine. */
4327 while (what_next
!= do_intr_end
) {
4328 if (what_next
>= do_phase_determine
&&
4329 what_next
< do_intr_end
) {
4330 what_next
= isvc_vector
[what_next
](esp
);
4332 /* state is completely lost ;-( */
4333 ESPLOG(("esp%d: interrupt engine loses state, resetting bus\n",
4335 what_next
= do_reset_bus
;
4340 /* Service only the ESP described by dev_id. */
4341 static irqreturn_t
esp_intr(int irq
, void *dev_id
, struct pt_regs
*pregs
)
4343 struct esp
*esp
= dev_id
;
4344 unsigned long flags
;
4346 spin_lock_irqsave(esp
->ehost
->host_lock
, flags
);
4347 if (ESP_IRQ_P(esp
->dregs
)) {
4348 ESP_INTSOFF(esp
->dregs
);
4350 ESPIRQ(("I[%d:%d](", smp_processor_id(), esp
->esp_id
));
4354 ESP_INTSON(esp
->dregs
);
4356 spin_unlock_irqrestore(esp
->ehost
->host_lock
, flags
);
4361 static int esp_slave_alloc(struct scsi_device
*SDptr
)
4363 struct esp_device
*esp_dev
=
4364 kmalloc(sizeof(struct esp_device
), GFP_ATOMIC
);
4368 memset(esp_dev
, 0, sizeof(struct esp_device
));
4369 SDptr
->hostdata
= esp_dev
;
4373 static void esp_slave_destroy(struct scsi_device
*SDptr
)
4375 struct esp
*esp
= (struct esp
*) SDptr
->host
->hostdata
;
4377 esp
->targets_present
&= ~(1 << SDptr
->id
);
4378 kfree(SDptr
->hostdata
);
4379 SDptr
->hostdata
= NULL
;
4382 static struct scsi_host_template driver_template
= {
4384 .proc_info
= esp_proc_info
,
4385 .name
= "Sun ESP 100/100a/200",
4386 .detect
= esp_detect
,
4387 .slave_alloc
= esp_slave_alloc
,
4388 .slave_destroy
= esp_slave_destroy
,
4389 .release
= esp_release
,
4391 .queuecommand
= esp_queue
,
4392 .eh_abort_handler
= esp_abort
,
4393 .eh_bus_reset_handler
= esp_reset
,
4396 .sg_tablesize
= SG_ALL
,
4398 .use_clustering
= ENABLE_CLUSTERING
,
4401 #include "scsi_module.c"
4403 MODULE_DESCRIPTION("EnhancedScsiProcessor Sun SCSI driver");
4404 MODULE_AUTHOR("David S. Miller (davem@redhat.com)");
4405 MODULE_LICENSE("GPL");
4406 MODULE_VERSION(DRV_VERSION
);