1 /******************************************************************************
2 ** Device driver for the PCI-SCSI NCR538XX controller family.
4 ** Copyright (C) 1994 Wolfgang Stanglmeier
6 ** This program is free software; you can redistribute it and/or modify
7 ** it under the terms of the GNU General Public License as published by
8 ** the Free Software Foundation; either version 2 of the License, or
9 ** (at your option) any later version.
11 ** This program is distributed in the hope that it will be useful,
12 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ** GNU General Public License for more details.
16 ** You should have received a copy of the GNU General Public License
17 ** along with this program; if not, write to the Free Software
18 ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 **-----------------------------------------------------------------------------
22 ** This driver has been ported to Linux from the FreeBSD NCR53C8XX driver
23 ** and is currently maintained by
25 ** Gerard Roudier <groudier@free.fr>
27 ** Being given that this driver originates from the FreeBSD version, and
28 ** in order to keep synergy on both, any suggested enhancements and corrections
29 ** received on Linux are automatically a potential candidate for the FreeBSD
32 ** The original driver has been written for 386bsd and FreeBSD by
33 ** Wolfgang Stanglmeier <wolf@cologne.de>
34 ** Stefan Esser <se@mi.Uni-Koeln.de>
36 ** And has been ported to NetBSD by
37 ** Charles M. Hannum <mycroft@gnu.ai.mit.edu>
39 **-----------------------------------------------------------------------------
43 ** December 10 1995 by Gerard Roudier:
44 ** Initial port to Linux.
46 ** June 23 1996 by Gerard Roudier:
47 ** Support for 64 bits architectures (Alpha).
49 ** November 30 1996 by Gerard Roudier:
50 ** Support for Fast-20 scsi.
51 ** Support for large DMA fifo and 128 dwords bursting.
53 ** February 27 1997 by Gerard Roudier:
54 ** Support for Fast-40 scsi.
55 ** Support for on-Board RAM.
57 ** May 3 1997 by Gerard Roudier:
58 ** Full support for scsi scripts instructions pre-fetching.
60 ** May 19 1997 by Richard Waltham <dormouse@farsrobt.demon.co.uk>:
61 ** Support for NvRAM detection and reading.
63 ** August 18 1997 by Cort <cort@cs.nmt.edu>:
64 ** Support for Power/PC (Big Endian).
66 ** June 20 1998 by Gerard Roudier
67 ** Support for up to 64 tags per lun.
68 ** O(1) everywhere (C and SCRIPTS) for normal cases.
69 ** Low PCI traffic for command handling when on-chip RAM is present.
70 ** Aggressive SCSI SCRIPTS optimizations.
72 *******************************************************************************
76 ** Supported SCSI-II features:
77 ** Synchronous negotiation
78 ** Wide negotiation (depends on the NCR Chip)
79 ** Enable disconnection
80 ** Tagged command queuing
84 ** Supported NCR/SYMBIOS chips:
85 ** 53C720 (Wide, Fast SCSI-2, intfly problems)
88 /* Name and version of the driver */
89 #define SCSI_NCR_DRIVER_NAME "ncr53c8xx-3.4.3g"
91 #define SCSI_NCR_DEBUG_FLAGS (0)
93 /*==========================================================
97 **==========================================================
100 #include <linux/blkdev.h>
101 #include <linux/delay.h>
102 #include <linux/dma-mapping.h>
103 #include <linux/errno.h>
104 #include <linux/init.h>
105 #include <linux/interrupt.h>
106 #include <linux/ioport.h>
107 #include <linux/mm.h>
108 #include <linux/module.h>
109 #include <linux/sched.h>
110 #include <linux/signal.h>
111 #include <linux/spinlock.h>
112 #include <linux/stat.h>
113 #include <linux/string.h>
114 #include <linux/time.h>
115 #include <linux/timer.h>
116 #include <linux/types.h>
120 #include <asm/system.h>
122 #include <scsi/scsi.h>
123 #include <scsi/scsi_cmnd.h>
124 #include <scsi/scsi_device.h>
125 #include <scsi/scsi_tcq.h>
126 #include <scsi/scsi_transport.h>
127 #include <scsi/scsi_transport_spi.h>
129 #include "ncr53c8xx.h"
131 #define NAME53C "ncr53c"
132 #define NAME53C8XX "ncr53c8xx"
134 #include "sym53c8xx_comm.h"
137 /*==========================================================
139 ** The CCB done queue uses an array of CCB virtual
140 ** addresses. Empty entries are flagged using the bogus
141 ** virtual address 0xffffffff.
143 ** Since PCI ensures that only aligned DWORDs are accessed
144 ** atomically, 64 bit little-endian architecture requires
145 ** to test the high order DWORD of the entry to determine
146 ** if it is empty or valid.
148 ** BTW, I will make things differently as soon as I will
149 ** have a better idea, but this is simple and should work.
151 **==========================================================
154 #define SCSI_NCR_CCB_DONE_SUPPORT
155 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
158 #define CCB_DONE_EMPTY 0xffffffffUL
160 /* All 32 bit architectures */
161 #if BITS_PER_LONG == 32
162 #define CCB_DONE_VALID(cp) (((u_long) cp) != CCB_DONE_EMPTY)
164 /* All > 32 bit (64 bit) architectures regardless endian-ness */
166 #define CCB_DONE_VALID(cp) \
167 ((((u_long) cp) & 0xffffffff00000000ul) && \
168 (((u_long) cp) & 0xfffffffful) != CCB_DONE_EMPTY)
171 #endif /* SCSI_NCR_CCB_DONE_SUPPORT */
173 /*==========================================================
175 ** Configuration and Debugging
177 **==========================================================
181 ** SCSI address of this device.
182 ** The boot routines should have set it.
186 #ifndef SCSI_NCR_MYADDR
187 #define SCSI_NCR_MYADDR (7)
191 ** The maximum number of tags per logic unit.
192 ** Used only for disk devices that support tags.
195 #ifndef SCSI_NCR_MAX_TAGS
196 #define SCSI_NCR_MAX_TAGS (8)
200 ** TAGS are actually limited to 64 tags/lun.
201 ** We need to deal with power of 2, for alignment constraints.
203 #if SCSI_NCR_MAX_TAGS > 64
204 #define MAX_TAGS (64)
206 #define MAX_TAGS SCSI_NCR_MAX_TAGS
212 ** Choose appropriate type for tag bitmap.
215 typedef u64 tagmap_t
;
217 typedef u32 tagmap_t
;
221 ** Number of targets supported by the driver.
222 ** n permits target numbers 0..n-1.
223 ** Default is 16, meaning targets #0..#15.
227 #ifdef SCSI_NCR_MAX_TARGET
228 #define MAX_TARGET (SCSI_NCR_MAX_TARGET)
230 #define MAX_TARGET (16)
234 ** Number of logic units supported by the driver.
235 ** n enables logic unit numbers 0..n-1.
236 ** The common SCSI devices require only
237 ** one lun, so take 1 as the default.
240 #ifdef SCSI_NCR_MAX_LUN
241 #define MAX_LUN SCSI_NCR_MAX_LUN
247 ** Asynchronous pre-scaler (ns). Shall be 40
250 #ifndef SCSI_NCR_MIN_ASYNC
251 #define SCSI_NCR_MIN_ASYNC (40)
255 ** The maximum number of jobs scheduled for starting.
256 ** There should be one slot per target, and one slot
257 ** for each tag of each target in use.
258 ** The calculation below is actually quite silly ...
261 #ifdef SCSI_NCR_CAN_QUEUE
262 #define MAX_START (SCSI_NCR_CAN_QUEUE + 4)
264 #define MAX_START (MAX_TARGET + 7 * MAX_TAGS)
268 ** We limit the max number of pending IO to 250.
269 ** since we donnot want to allocate more than 1
270 ** PAGE for 'scripth'.
274 #define MAX_START 250
278 ** The maximum number of segments a transfer is split into.
279 ** We support up to 127 segments for both read and write.
280 ** The data scripts are broken into 2 sub-scripts.
281 ** 80 (MAX_SCATTERL) segments are moved from a sub-script
282 ** in on-chip RAM. This makes data transfers shorter than
283 ** 80k (assuming 1k fs) as fast as possible.
286 #define MAX_SCATTER (SCSI_NCR_MAX_SCATTER)
288 #if (MAX_SCATTER > 80)
289 #define MAX_SCATTERL 80
290 #define MAX_SCATTERH (MAX_SCATTER - MAX_SCATTERL)
292 #define MAX_SCATTERL (MAX_SCATTER-1)
293 #define MAX_SCATTERH 1
300 #define NCR_SNOOP_TIMEOUT (1000000)
306 #define ScsiResult(host_code, scsi_code) (((host_code) << 16) + ((scsi_code) & 0x7f))
308 #define initverbose (driver_setup.verbose)
309 #define bootverbose (np->verbose)
311 /*==========================================================
313 ** Command control block states.
315 **==========================================================
320 #define HS_NEGOTIATE (2) /* sync/wide data transfer*/
321 #define HS_DISCONNECT (3) /* Disconnected by target */
323 #define HS_DONEMASK (0x80)
324 #define HS_COMPLETE (4|HS_DONEMASK)
325 #define HS_SEL_TIMEOUT (5|HS_DONEMASK) /* Selection timeout */
326 #define HS_RESET (6|HS_DONEMASK) /* SCSI reset */
327 #define HS_ABORTED (7|HS_DONEMASK) /* Transfer aborted */
328 #define HS_TIMEOUT (8|HS_DONEMASK) /* Software timeout */
329 #define HS_FAIL (9|HS_DONEMASK) /* SCSI or PCI bus errors */
330 #define HS_UNEXPECTED (10|HS_DONEMASK)/* Unexpected disconnect */
333 ** Invalid host status values used by the SCRIPTS processor
334 ** when the nexus is not fully identified.
335 ** Shall never appear in a CCB.
338 #define HS_INVALMASK (0x40)
339 #define HS_SELECTING (0|HS_INVALMASK)
340 #define HS_IN_RESELECT (1|HS_INVALMASK)
341 #define HS_STARTING (2|HS_INVALMASK)
344 ** Flags set by the SCRIPT processor for commands
345 ** that have been skipped.
347 #define HS_SKIPMASK (0x20)
349 /*==========================================================
351 ** Software Interrupt Codes
353 **==========================================================
356 #define SIR_BAD_STATUS (1)
357 #define SIR_XXXXXXXXXX (2)
358 #define SIR_NEGO_SYNC (3)
359 #define SIR_NEGO_WIDE (4)
360 #define SIR_NEGO_FAILED (5)
361 #define SIR_NEGO_PROTO (6)
362 #define SIR_REJECT_RECEIVED (7)
363 #define SIR_REJECT_SENT (8)
364 #define SIR_IGN_RESIDUE (9)
365 #define SIR_MISSING_SAVE (10)
366 #define SIR_RESEL_NO_MSG_IN (11)
367 #define SIR_RESEL_NO_IDENTIFY (12)
368 #define SIR_RESEL_BAD_LUN (13)
369 #define SIR_RESEL_BAD_TARGET (14)
370 #define SIR_RESEL_BAD_I_T_L (15)
371 #define SIR_RESEL_BAD_I_T_L_Q (16)
372 #define SIR_DONE_OVERFLOW (17)
373 #define SIR_INTFLY (18)
376 /*==========================================================
378 ** Extended error codes.
379 ** xerr_status field of struct ccb.
381 **==========================================================
385 #define XE_EXTRA_DATA (1) /* unexpected data phase */
386 #define XE_BAD_PHASE (2) /* illegal phase (4/5) */
388 /*==========================================================
390 ** Negotiation status.
391 ** nego_status field of struct ccb.
393 **==========================================================
396 #define NS_NOCHANGE (0)
401 /*==========================================================
405 **==========================================================
408 #define CCB_MAGIC (0xf2691ad2)
410 /*==========================================================
412 ** Declaration of structs.
414 **==========================================================
417 static struct scsi_transport_template
*ncr53c8xx_transport_template
= NULL
;
437 #define UC_SETSYNC 10
438 #define UC_SETTAGS 11
439 #define UC_SETDEBUG 12
440 #define UC_SETORDER 13
441 #define UC_SETWIDE 14
442 #define UC_SETFLAG 15
443 #define UC_SETVERBOSE 17
445 #define UF_TRACE (0x01)
446 #define UF_NODISC (0x02)
447 #define UF_NOSCAN (0x04)
449 /*========================================================================
451 ** Declaration of structs: target control block
453 **========================================================================
456 /*----------------------------------------------------------------
457 ** During reselection the ncr jumps to this point with SFBR
458 ** set to the encoded target number with bit 7 set.
459 ** if it's not this target, jump to the next.
461 ** JUMP IF (SFBR != #target#), @(next tcb)
462 **----------------------------------------------------------------
464 struct link jump_tcb
;
466 /*----------------------------------------------------------------
467 ** Load the actual values for the sxfer and the scntl3
468 ** register (sync/wide mode).
470 ** SCR_COPY (1), @(sval field of this tcb), @(sxfer register)
471 ** SCR_COPY (1), @(wval field of this tcb), @(scntl3 register)
472 **----------------------------------------------------------------
476 /*----------------------------------------------------------------
477 ** Get the IDENTIFY message and load the LUN to SFBR.
480 **----------------------------------------------------------------
482 struct link call_lun
;
484 /*----------------------------------------------------------------
485 ** Now look for the right lun.
488 ** SCR_JUMP ^ IFTRUE(MASK(i, 3)), @(first lcb mod. i)
490 ** Recent chips will prefetch the 4 JUMPS using only 1 burst.
491 ** It is kind of hashcoding.
492 **----------------------------------------------------------------
494 struct link jump_lcb
[4]; /* JUMPs for reselection */
495 struct lcb
* lp
[MAX_LUN
]; /* The lcb's of this tcb */
497 /*----------------------------------------------------------------
498 ** Pointer to the ccb used for negotiation.
499 ** Prevent from starting a negotiation for all queued commands
500 ** when tagged command queuing is enabled.
501 **----------------------------------------------------------------
503 struct ccb
* nego_cp
;
505 /*----------------------------------------------------------------
507 **----------------------------------------------------------------
512 /*----------------------------------------------------------------
513 ** negotiation of wide and synch transfer and device quirks.
514 **----------------------------------------------------------------
516 #ifdef SCSI_NCR_BIG_ENDIAN
519 /*3*/ u_char minsync
;
521 /*1*/ u_char widedone
;
523 /*3*/ u_char maxoffs
;
525 /*0*/ u_char minsync
;
528 /*0*/ u_char maxoffs
;
530 /*2*/ u_char widedone
;
534 /* User settable limits and options. */
539 struct scsi_target
*starget
;
542 /*========================================================================
544 ** Declaration of structs: lun control block
546 **========================================================================
549 /*----------------------------------------------------------------
550 ** During reselection the ncr jumps to this point
551 ** with SFBR set to the "Identify" message.
552 ** if it's not this lun, jump to the next.
554 ** JUMP IF (SFBR != #lun#), @(next lcb of this target)
556 ** It is this lun. Load TEMP with the nexus jumps table
557 ** address and jump to RESEL_TAG (or RESEL_NOTAG).
559 ** SCR_COPY (4), p_jump_ccb, TEMP,
560 ** SCR_JUMP, <RESEL_TAG>
561 **----------------------------------------------------------------
563 struct link jump_lcb
;
564 ncrcmd load_jump_ccb
[3];
565 struct link jump_tag
;
566 ncrcmd p_jump_ccb
; /* Jump table bus address */
568 /*----------------------------------------------------------------
569 ** Jump table used by the script processor to directly jump
570 ** to the CCB corresponding to the reselected nexus.
571 ** Address is allocated on 256 bytes boundary in order to
572 ** allow 8 bit calculation of the tag jump entry for up to
574 **----------------------------------------------------------------
576 u32 jump_ccb_0
; /* Default table if no tags */
577 u32
*jump_ccb
; /* Virtual address */
579 /*----------------------------------------------------------------
580 ** CCB queue management.
581 **----------------------------------------------------------------
583 struct list_head free_ccbq
; /* Queue of available CCBs */
584 struct list_head busy_ccbq
; /* Queue of busy CCBs */
585 struct list_head wait_ccbq
; /* Queue of waiting for IO CCBs */
586 struct list_head skip_ccbq
; /* Queue of skipped CCBs */
587 u_char actccbs
; /* Number of allocated CCBs */
588 u_char busyccbs
; /* CCBs busy for this lun */
589 u_char queuedccbs
; /* CCBs queued to the controller*/
590 u_char queuedepth
; /* Queue depth for this lun */
591 u_char scdev_depth
; /* SCSI device queue depth */
592 u_char maxnxs
; /* Max possible nexuses */
594 /*----------------------------------------------------------------
595 ** Control of tagged command queuing.
596 ** Tags allocation is performed using a circular buffer.
597 ** This avoids using a loop for tag allocation.
598 **----------------------------------------------------------------
600 u_char ia_tag
; /* Allocation index */
601 u_char if_tag
; /* Freeing index */
602 u_char cb_tags
[MAX_TAGS
]; /* Circular tags buffer */
603 u_char usetags
; /* Command queuing is active */
604 u_char maxtags
; /* Max nr of tags asked by user */
605 u_char numtags
; /* Current number of tags */
607 /*----------------------------------------------------------------
608 ** QUEUE FULL control and ORDERED tag control.
609 **----------------------------------------------------------------
611 /*----------------------------------------------------------------
612 ** QUEUE FULL and ORDERED tag control.
613 **----------------------------------------------------------------
615 u16 num_good
; /* Nr of GOOD since QUEUE FULL */
616 tagmap_t tags_umap
; /* Used tags bitmap */
617 tagmap_t tags_smap
; /* Tags in use at 'tag_stime' */
618 u_long tags_stime
; /* Last time we set smap=umap */
619 struct ccb
* held_ccb
; /* CCB held for QUEUE FULL */
622 /*========================================================================
624 ** Declaration of structs: the launch script.
626 **========================================================================
628 ** It is part of the CCB and is called by the scripts processor to
629 ** start or restart the data structure (nexus).
630 ** This 6 DWORDs mini script makes use of prefetching.
632 **------------------------------------------------------------------------
635 /*----------------------------------------------------------------
636 ** SCR_COPY(4), @(p_phys), @(dsa register)
637 ** SCR_JUMP, @(scheduler_point)
638 **----------------------------------------------------------------
640 ncrcmd setup_dsa
[3]; /* Copy 'phys' address to dsa */
641 struct link schedule
; /* Jump to scheduler point */
642 ncrcmd p_phys
; /* 'phys' header bus address */
645 /*========================================================================
647 ** Declaration of structs: global HEADER.
649 **========================================================================
651 ** This substructure is copied from the ccb to a global address after
652 ** selection (or reselection) and copied back before disconnect.
654 ** These fields are accessible to the script processor.
656 **------------------------------------------------------------------------
660 /*----------------------------------------------------------------
661 ** Saved data pointer.
662 ** Points to the position in the script responsible for the
663 ** actual transfer transfer of data.
664 ** It's written after reception of a SAVE_DATA_POINTER message.
665 ** The goalpointer points after the last transfer command.
666 **----------------------------------------------------------------
672 /*----------------------------------------------------------------
673 ** Alternate data pointer.
674 ** They are copied back to savep/lastp/goalp by the SCRIPTS
675 ** when the direction is unknown and the device claims data out.
676 **----------------------------------------------------------------
681 /*----------------------------------------------------------------
682 ** The virtual address of the ccb containing this header.
683 **----------------------------------------------------------------
687 /*----------------------------------------------------------------
689 **----------------------------------------------------------------
691 u_char scr_st
[4]; /* script status */
692 u_char status
[4]; /* host status. must be the */
693 /* last DWORD of the header. */
697 ** The status bytes are used by the host and the script processor.
699 ** The byte corresponding to the host_status must be stored in the
700 ** last DWORD of the CCB header since it is used for command
701 ** completion (ncr_wakeup()). Doing so, we are sure that the header
702 ** has been entirely copied back to the CCB when the host_status is
703 ** seen complete by the CPU.
705 ** The last four bytes (status[4]) are copied to the scratchb register
706 ** (declared as scr0..scr3 in ncr_reg.h) just after the select/reselect,
707 ** and copied back just after disconnecting.
708 ** Inside the script the XX_REG are used.
710 ** The first four bytes (scr_st[4]) are used inside the script by
712 ** Because source and destination must have the same alignment
713 ** in a DWORD, the fields HAVE to be at the choosen offsets.
714 ** xerr_st 0 (0x34) scratcha
715 ** sync_st 1 (0x05) sxfer
716 ** wide_st 3 (0x03) scntl3
720 ** Last four bytes (script)
724 #define HS_PRT nc_scr1
726 #define SS_PRT nc_scr2
730 ** Last four bytes (host)
732 #ifdef SCSI_NCR_BIG_ENDIAN
733 #define actualquirks phys.header.status[3]
734 #define host_status phys.header.status[2]
735 #define scsi_status phys.header.status[1]
736 #define parity_status phys.header.status[0]
738 #define actualquirks phys.header.status[0]
739 #define host_status phys.header.status[1]
740 #define scsi_status phys.header.status[2]
741 #define parity_status phys.header.status[3]
745 ** First four bytes (script)
747 #define xerr_st header.scr_st[0]
748 #define sync_st header.scr_st[1]
749 #define nego_st header.scr_st[2]
750 #define wide_st header.scr_st[3]
753 ** First four bytes (host)
755 #define xerr_status phys.xerr_st
756 #define nego_status phys.nego_st
759 #define sync_status phys.sync_st
760 #define wide_status phys.wide_st
763 /*==========================================================
765 ** Declaration of structs: Data structure block
767 **==========================================================
769 ** During execution of a ccb by the script processor,
770 ** the DSA (data structure address) register points
771 ** to this substructure of the ccb.
772 ** This substructure contains the header with
773 ** the script-processor-changable data and
774 ** data blocks for the indirect move commands.
776 **----------------------------------------------------------
788 ** Table data for Script
791 struct scr_tblsel select
;
792 struct scr_tblmove smsg
;
793 struct scr_tblmove cmd
;
794 struct scr_tblmove sense
;
795 struct scr_tblmove data
[MAX_SCATTER
];
799 /*========================================================================
801 ** Declaration of structs: Command control block.
803 **========================================================================
806 /*----------------------------------------------------------------
807 ** This is the data structure which is pointed by the DSA
808 ** register when it is executed by the script processor.
809 ** It must be the first entry because it contains the header
810 ** as first entry that must be cache line aligned.
811 **----------------------------------------------------------------
815 /*----------------------------------------------------------------
816 ** Mini-script used at CCB execution start-up.
817 ** Load the DSA with the data structure address (phys) and
818 ** jump to SELECT. Jump to CANCEL if CCB is to be canceled.
819 **----------------------------------------------------------------
823 /*----------------------------------------------------------------
824 ** Mini-script used at CCB relection to restart the nexus.
825 ** Load the DSA with the data structure address (phys) and
826 ** jump to RESEL_DSA. Jump to ABORT if CCB is to be aborted.
827 **----------------------------------------------------------------
829 struct launch restart
;
831 /*----------------------------------------------------------------
832 ** If a data transfer phase is terminated too early
833 ** (after reception of a message (i.e. DISCONNECT)),
834 ** we have to prepare a mini script to transfer
835 ** the rest of the data.
836 **----------------------------------------------------------------
840 /*----------------------------------------------------------------
841 ** The general SCSI driver provides a
842 ** pointer to a control block.
843 **----------------------------------------------------------------
845 struct scsi_cmnd
*cmd
; /* SCSI command */
846 u_char cdb_buf
[16]; /* Copy of CDB */
847 u_char sense_buf
[64];
848 int data_len
; /* Total data length */
850 /*----------------------------------------------------------------
852 ** We prepare a message to be sent after selection.
853 ** We may use a second one if the command is rescheduled
854 ** due to GETCC or QFULL.
855 ** Contents are IDENTIFY and SIMPLE_TAG.
856 ** While negotiating sync or wide transfer,
857 ** a SDTR or WDTR message is appended.
858 **----------------------------------------------------------------
860 u_char scsi_smsg
[8];
861 u_char scsi_smsg2
[8];
863 /*----------------------------------------------------------------
865 **----------------------------------------------------------------
867 u_long p_ccb
; /* BUS address of this CCB */
868 u_char sensecmd
[6]; /* Sense command */
869 u_char tag
; /* Tag for this transfer */
870 /* 255 means no tag */
875 struct ccb
* link_ccb
; /* Host adapter CCB chain */
876 struct list_head link_ccbq
; /* Link to unit CCB queue */
877 u32 startp
; /* Initial data pointer */
878 u_long magic
; /* Free / busy CCB flag */
881 #define CCB_PHYS(cp,lbl) (cp->p_ccb + offsetof(struct ccb, lbl))
884 /*========================================================================
886 ** Declaration of structs: NCR device descriptor
888 **========================================================================
891 /*----------------------------------------------------------------
892 ** The global header.
893 ** It is accessible to both the host and the script processor.
894 ** Must be cache line size aligned (32 for x86) in order to
895 ** allow cache line bursting when it is copied to/from CCB.
896 **----------------------------------------------------------------
900 /*----------------------------------------------------------------
901 ** CCBs management queues.
902 **----------------------------------------------------------------
904 struct scsi_cmnd
*waiting_list
; /* Commands waiting for a CCB */
905 /* when lcb is not allocated. */
906 struct scsi_cmnd
*done_list
; /* Commands waiting for done() */
907 /* callback to be invoked. */
908 spinlock_t smp_lock
; /* Lock for SMP threading */
910 /*----------------------------------------------------------------
911 ** Chip and controller indentification.
912 **----------------------------------------------------------------
914 int unit
; /* Unit number */
915 char inst_name
[16]; /* ncb instance name */
917 /*----------------------------------------------------------------
918 ** Initial value of some IO register bits.
919 ** These values are assumed to have been set by BIOS, and may
920 ** be used for probing adapter implementation differences.
921 **----------------------------------------------------------------
923 u_char sv_scntl0
, sv_scntl3
, sv_dmode
, sv_dcntl
, sv_ctest0
, sv_ctest3
,
924 sv_ctest4
, sv_ctest5
, sv_gpcntl
, sv_stest2
, sv_stest4
;
926 /*----------------------------------------------------------------
927 ** Actual initial value of IO register bits used by the
928 ** driver. They are loaded at initialisation according to
929 ** features that are to be enabled.
930 **----------------------------------------------------------------
932 u_char rv_scntl0
, rv_scntl3
, rv_dmode
, rv_dcntl
, rv_ctest0
, rv_ctest3
,
933 rv_ctest4
, rv_ctest5
, rv_stest2
;
935 /*----------------------------------------------------------------
936 ** Targets management.
937 ** During reselection the ncr jumps to jump_tcb.
938 ** The SFBR register is loaded with the encoded target id.
940 ** SCR_JUMP ^ IFTRUE(MASK(i, 3)), @(next tcb mod. i)
942 ** Recent chips will prefetch the 4 JUMPS using only 1 burst.
943 ** It is kind of hashcoding.
944 **----------------------------------------------------------------
946 struct link jump_tcb
[4]; /* JUMPs for reselection */
947 struct tcb target
[MAX_TARGET
]; /* Target data */
949 /*----------------------------------------------------------------
950 ** Virtual and physical bus addresses of the chip.
951 **----------------------------------------------------------------
953 void __iomem
*vaddr
; /* Virtual and bus address of */
954 unsigned long paddr
; /* chip's IO registers. */
955 unsigned long paddr2
; /* On-chip RAM bus address. */
956 volatile /* Pointer to volatile for */
957 struct ncr_reg __iomem
*reg
; /* memory mapped IO. */
959 /*----------------------------------------------------------------
960 ** SCRIPTS virtual and physical bus addresses.
961 ** 'script' is loaded in the on-chip RAM if present.
962 ** 'scripth' stays in main memory.
963 **----------------------------------------------------------------
965 struct script
*script0
; /* Copies of script and scripth */
966 struct scripth
*scripth0
; /* relocated for this ncb. */
967 struct scripth
*scripth
; /* Actual scripth virt. address */
968 u_long p_script
; /* Actual script and scripth */
969 u_long p_scripth
; /* bus addresses. */
971 /*----------------------------------------------------------------
972 ** General controller parameters and configuration.
973 **----------------------------------------------------------------
976 u_char revision_id
; /* PCI device revision id */
977 u32 irq
; /* IRQ level */
978 u32 features
; /* Chip features map */
979 u_char myaddr
; /* SCSI id of the adapter */
980 u_char maxburst
; /* log base 2 of dwords burst */
981 u_char maxwide
; /* Maximum transfer width */
982 u_char minsync
; /* Minimum sync period factor */
983 u_char maxsync
; /* Maximum sync period factor */
984 u_char maxoffs
; /* Max scsi offset */
985 u_char multiplier
; /* Clock multiplier (1,2,4) */
986 u_char clock_divn
; /* Number of clock divisors */
987 u_long clock_khz
; /* SCSI clock frequency in KHz */
989 /*----------------------------------------------------------------
990 ** Start queue management.
991 ** It is filled up by the host processor and accessed by the
992 ** SCRIPTS processor in order to start SCSI commands.
993 **----------------------------------------------------------------
995 u16 squeueput
; /* Next free slot of the queue */
996 u16 actccbs
; /* Number of allocated CCBs */
997 u16 queuedccbs
; /* Number of CCBs in start queue*/
998 u16 queuedepth
; /* Start queue depth */
1000 /*----------------------------------------------------------------
1002 **----------------------------------------------------------------
1004 struct timer_list timer
; /* Timer handler link header */
1006 u_long settle_time
; /* Resetting the SCSI BUS */
1008 /*----------------------------------------------------------------
1009 ** Debugging and profiling.
1010 **----------------------------------------------------------------
1012 struct ncr_reg regdump
; /* Register dump */
1013 u_long regtime
; /* Time it has been done */
1015 /*----------------------------------------------------------------
1016 ** Miscellaneous buffers accessed by the scripts-processor.
1017 ** They shall be DWORD aligned, because they may be read or
1018 ** written with a SCR_COPY script command.
1019 **----------------------------------------------------------------
1021 u_char msgout
[8]; /* Buffer for MESSAGE OUT */
1022 u_char msgin
[8]; /* Buffer for MESSAGE IN */
1023 u32 lastmsg
; /* Last SCSI message sent */
1024 u_char scratch
; /* Scratch for SCSI receive */
1026 /*----------------------------------------------------------------
1027 ** Miscellaneous configuration and status parameters.
1028 **----------------------------------------------------------------
1030 u_char disc
; /* Diconnection allowed */
1031 u_char scsi_mode
; /* Current SCSI BUS mode */
1032 u_char order
; /* Tag order to use */
1033 u_char verbose
; /* Verbosity for this controller*/
1034 int ncr_cache
; /* Used for cache test at init. */
1035 u_long p_ncb
; /* BUS address of this NCB */
1037 /*----------------------------------------------------------------
1038 ** Command completion handling.
1039 **----------------------------------------------------------------
1041 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
1042 struct ccb
*(ccb_done
[MAX_DONE
]);
1045 /*----------------------------------------------------------------
1046 ** Fields that should be removed or changed.
1047 **----------------------------------------------------------------
1049 struct ccb
*ccb
; /* Global CCB */
1050 struct usrcmd user
; /* Command from user */
1051 volatile u_char release_stage
; /* Synchronisation stage on release */
1054 #define NCB_SCRIPT_PHYS(np,lbl) (np->p_script + offsetof (struct script, lbl))
1055 #define NCB_SCRIPTH_PHYS(np,lbl) (np->p_scripth + offsetof (struct scripth,lbl))
1057 /*==========================================================
1060 ** Script for NCR-Processor.
1062 ** Use ncr_script_fill() to create the variable parts.
1063 ** Use ncr_script_copy_and_bind() to make a copy and
1064 ** bind to physical addresses.
1067 **==========================================================
1069 ** We have to know the offsets of all labels before
1070 ** we reach them (for forward jumps).
1071 ** Therefore we declare a struct here.
1072 ** If you make changes inside the script,
1073 ** DONT FORGET TO CHANGE THE LENGTHS HERE!
1075 **----------------------------------------------------------
1079 ** For HP Zalon/53c720 systems, the Zalon interface
1080 ** between CPU and 53c720 does prefetches, which causes
1081 ** problems with self modifying scripts. The problem
1082 ** is overcome by calling a dummy subroutine after each
1083 ** modification, to force a refetch of the script on
1084 ** return from the subroutine.
1087 #ifdef CONFIG_NCR53C8XX_PREFETCH
1088 #define PREFETCH_FLUSH_CNT 2
1089 #define PREFETCH_FLUSH SCR_CALL, PADDRH (wait_dma),
1091 #define PREFETCH_FLUSH_CNT 0
1092 #define PREFETCH_FLUSH
1096 ** Script fragments which are loaded into the on-chip RAM
1097 ** of 825A, 875 and 895 chips.
1101 ncrcmd startpos
[ 1];
1103 ncrcmd select2
[ 9 + PREFETCH_FLUSH_CNT
];
1104 ncrcmd loadpos
[ 4];
1105 ncrcmd send_ident
[ 9];
1106 ncrcmd prepare
[ 6];
1107 ncrcmd prepare2
[ 7];
1108 ncrcmd command
[ 6];
1109 ncrcmd dispatch
[ 32];
1111 ncrcmd no_data
[ 17];
1114 ncrcmd msg_in2
[ 16];
1115 ncrcmd msg_bad
[ 4];
1117 ncrcmd cleanup
[ 6];
1118 ncrcmd complete
[ 9];
1119 ncrcmd cleanup_ok
[ 8 + PREFETCH_FLUSH_CNT
];
1120 ncrcmd cleanup0
[ 1];
1121 #ifndef SCSI_NCR_CCB_DONE_SUPPORT
1122 ncrcmd signal
[ 12];
1125 ncrcmd done_pos
[ 1];
1126 ncrcmd done_plug
[ 2];
1127 ncrcmd done_end
[ 7];
1129 ncrcmd save_dp
[ 7];
1130 ncrcmd restore_dp
[ 5];
1131 ncrcmd disconnect
[ 10];
1132 ncrcmd msg_out
[ 9];
1133 ncrcmd msg_out_done
[ 7];
1135 ncrcmd reselect
[ 8];
1136 ncrcmd reselected
[ 8];
1137 ncrcmd resel_dsa
[ 6 + PREFETCH_FLUSH_CNT
];
1138 ncrcmd loadpos1
[ 4];
1139 ncrcmd resel_lun
[ 6];
1140 ncrcmd resel_tag
[ 6];
1141 ncrcmd jump_to_nexus
[ 4 + PREFETCH_FLUSH_CNT
];
1142 ncrcmd nexus_indirect
[ 4];
1143 ncrcmd resel_notag
[ 4];
1144 ncrcmd data_in
[MAX_SCATTERL
* 4];
1145 ncrcmd data_in2
[ 4];
1146 ncrcmd data_out
[MAX_SCATTERL
* 4];
1147 ncrcmd data_out2
[ 4];
1151 ** Script fragments which stay in main memory for all chips.
1154 ncrcmd tryloop
[MAX_START
*2];
1155 ncrcmd tryloop2
[ 2];
1156 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
1157 ncrcmd done_queue
[MAX_DONE
*5];
1158 ncrcmd done_queue2
[ 2];
1160 ncrcmd select_no_atn
[ 8];
1162 ncrcmd skip
[ 9 + PREFETCH_FLUSH_CNT
];
1164 ncrcmd par_err_data_in
[ 6];
1165 ncrcmd par_err_other
[ 4];
1166 ncrcmd msg_reject
[ 8];
1167 ncrcmd msg_ign_residue
[ 24];
1168 ncrcmd msg_extended
[ 10];
1169 ncrcmd msg_ext_2
[ 10];
1170 ncrcmd msg_wdtr
[ 14];
1171 ncrcmd send_wdtr
[ 7];
1172 ncrcmd msg_ext_3
[ 10];
1173 ncrcmd msg_sdtr
[ 14];
1174 ncrcmd send_sdtr
[ 7];
1175 ncrcmd nego_bad_phase
[ 4];
1176 ncrcmd msg_out_abort
[ 10];
1177 ncrcmd hdata_in
[MAX_SCATTERH
* 4];
1178 ncrcmd hdata_in2
[ 2];
1179 ncrcmd hdata_out
[MAX_SCATTERH
* 4];
1180 ncrcmd hdata_out2
[ 2];
1182 ncrcmd aborttag
[ 4];
1184 ncrcmd abort_resel
[ 20];
1185 ncrcmd resend_ident
[ 4];
1186 ncrcmd clratn_go_on
[ 3];
1187 ncrcmd nxtdsp_go_on
[ 1];
1188 ncrcmd sdata_in
[ 8];
1189 ncrcmd data_io
[ 18];
1190 ncrcmd bad_identify
[ 12];
1191 ncrcmd bad_i_t_l
[ 4];
1192 ncrcmd bad_i_t_l_q
[ 4];
1193 ncrcmd bad_target
[ 8];
1194 ncrcmd bad_status
[ 8];
1195 ncrcmd start_ram
[ 4 + PREFETCH_FLUSH_CNT
];
1196 ncrcmd start_ram0
[ 4];
1197 ncrcmd sto_restart
[ 5];
1198 ncrcmd wait_dma
[ 2];
1199 ncrcmd snooptest
[ 9];
1200 ncrcmd snoopend
[ 2];
1203 /*==========================================================
1206 ** Function headers.
1209 **==========================================================
1212 static void ncr_alloc_ccb (struct ncb
*np
, u_char tn
, u_char ln
);
1213 static void ncr_complete (struct ncb
*np
, struct ccb
*cp
);
1214 static void ncr_exception (struct ncb
*np
);
1215 static void ncr_free_ccb (struct ncb
*np
, struct ccb
*cp
);
1216 static void ncr_init_ccb (struct ncb
*np
, struct ccb
*cp
);
1217 static void ncr_init_tcb (struct ncb
*np
, u_char tn
);
1218 static struct lcb
* ncr_alloc_lcb (struct ncb
*np
, u_char tn
, u_char ln
);
1219 static struct lcb
* ncr_setup_lcb (struct ncb
*np
, struct scsi_device
*sdev
);
1220 static void ncr_getclock (struct ncb
*np
, int mult
);
1221 static void ncr_selectclock (struct ncb
*np
, u_char scntl3
);
1222 static struct ccb
*ncr_get_ccb (struct ncb
*np
, struct scsi_cmnd
*cmd
);
1223 static void ncr_chip_reset (struct ncb
*np
, int delay
);
1224 static void ncr_init (struct ncb
*np
, int reset
, char * msg
, u_long code
);
1225 static int ncr_int_sbmc (struct ncb
*np
);
1226 static int ncr_int_par (struct ncb
*np
);
1227 static void ncr_int_ma (struct ncb
*np
);
1228 static void ncr_int_sir (struct ncb
*np
);
1229 static void ncr_int_sto (struct ncb
*np
);
1230 static void ncr_negotiate (struct ncb
* np
, struct tcb
* tp
);
1231 static int ncr_prepare_nego(struct ncb
*np
, struct ccb
*cp
, u_char
*msgptr
);
1233 static void ncr_script_copy_and_bind
1234 (struct ncb
*np
, ncrcmd
*src
, ncrcmd
*dst
, int len
);
1235 static void ncr_script_fill (struct script
* scr
, struct scripth
* scripth
);
1236 static int ncr_scatter (struct ncb
*np
, struct ccb
*cp
, struct scsi_cmnd
*cmd
);
1237 static void ncr_getsync (struct ncb
*np
, u_char sfac
, u_char
*fakp
, u_char
*scntl3p
);
1238 static void ncr_setsync (struct ncb
*np
, struct ccb
*cp
, u_char scntl3
, u_char sxfer
);
1239 static void ncr_setup_tags (struct ncb
*np
, struct scsi_device
*sdev
);
1240 static void ncr_setwide (struct ncb
*np
, struct ccb
*cp
, u_char wide
, u_char ack
);
1241 static int ncr_snooptest (struct ncb
*np
);
1242 static void ncr_timeout (struct ncb
*np
);
1243 static void ncr_wakeup (struct ncb
*np
, u_long code
);
1244 static void ncr_wakeup_done (struct ncb
*np
);
1245 static void ncr_start_next_ccb (struct ncb
*np
, struct lcb
* lp
, int maxn
);
1246 static void ncr_put_start_queue(struct ncb
*np
, struct ccb
*cp
);
1248 static void insert_into_waiting_list(struct ncb
*np
, struct scsi_cmnd
*cmd
);
1249 static struct scsi_cmnd
*retrieve_from_waiting_list(int to_remove
, struct ncb
*np
, struct scsi_cmnd
*cmd
);
1250 static void process_waiting_list(struct ncb
*np
, int sts
);
1252 #define remove_from_waiting_list(np, cmd) \
1253 retrieve_from_waiting_list(1, (np), (cmd))
1254 #define requeue_waiting_list(np) process_waiting_list((np), DID_OK)
1255 #define reset_waiting_list(np) process_waiting_list((np), DID_RESET)
1257 static inline char *ncr_name (struct ncb
*np
)
1259 return np
->inst_name
;
1263 /*==========================================================
1266 ** Scripts for NCR-Processor.
1268 ** Use ncr_script_bind for binding to physical addresses.
1271 **==========================================================
1273 ** NADDR generates a reference to a field of the controller data.
1274 ** PADDR generates a reference to another part of the script.
1275 ** RADDR generates a reference to a script processor register.
1276 ** FADDR generates a reference to a script processor register
1279 **----------------------------------------------------------
1282 #define RELOC_SOFTC 0x40000000
1283 #define RELOC_LABEL 0x50000000
1284 #define RELOC_REGISTER 0x60000000
1286 #define RELOC_KVAR 0x70000000
1288 #define RELOC_LABELH 0x80000000
1289 #define RELOC_MASK 0xf0000000
1291 #define NADDR(label) (RELOC_SOFTC | offsetof(struct ncb, label))
1292 #define PADDR(label) (RELOC_LABEL | offsetof(struct script, label))
1293 #define PADDRH(label) (RELOC_LABELH | offsetof(struct scripth, label))
1294 #define RADDR(label) (RELOC_REGISTER | REG(label))
1295 #define FADDR(label,ofs)(RELOC_REGISTER | ((REG(label))+(ofs)))
1297 #define KVAR(which) (RELOC_KVAR | (which))
1301 #define SCRIPT_KVAR_JIFFIES (0)
1302 #define SCRIPT_KVAR_FIRST SCRIPT_KVAR_JIFFIES
1303 #define SCRIPT_KVAR_LAST SCRIPT_KVAR_JIFFIES
1305 * Kernel variables referenced in the scripts.
1306 * THESE MUST ALL BE ALIGNED TO A 4-BYTE BOUNDARY.
1308 static void *script_kvars
[] __initdata
=
1309 { (void *)&jiffies
};
1312 static struct script script0 __initdata
= {
1313 /*--------------------------< START >-----------------------*/ {
1315 ** This NOP will be patched with LED ON
1316 ** SCR_REG_REG (gpreg, SCR_AND, 0xfe)
1323 SCR_FROM_REG (ctest2
),
1326 ** Then jump to a certain point in tryloop.
1327 ** Due to the lack of indirect addressing the code
1328 ** is self modifying here.
1331 }/*-------------------------< STARTPOS >--------------------*/,{
1334 }/*-------------------------< SELECT >----------------------*/,{
1336 ** DSA contains the address of a scheduled
1339 ** SCRATCHA contains the address of the script,
1340 ** which starts the next entry.
1342 ** Set Initiator mode.
1344 ** (Target mode is left as an exercise for the reader)
1349 SCR_LOAD_REG (HS_REG
, HS_SELECTING
),
1353 ** And try to select this target.
1355 SCR_SEL_TBL_ATN
^ offsetof (struct dsb
, select
),
1358 }/*-------------------------< SELECT2 >----------------------*/,{
1360 ** Now there are 4 possibilities:
1362 ** (1) The ncr loses arbitration.
1363 ** This is ok, because it will try again,
1364 ** when the bus becomes idle.
1365 ** (But beware of the timeout function!)
1367 ** (2) The ncr is reselected.
1368 ** Then the script processor takes the jump
1369 ** to the RESELECT label.
1371 ** (3) The ncr wins arbitration.
1372 ** Then it will execute SCRIPTS instruction until
1373 ** the next instruction that checks SCSI phase.
1374 ** Then will stop and wait for selection to be
1375 ** complete or selection time-out to occur.
1376 ** As a result the SCRIPTS instructions until
1377 ** LOADPOS + 2 should be executed in parallel with
1378 ** the SCSI core performing selection.
1382 ** The M_REJECT problem seems to be due to a selection
1384 ** Wait immediately for the selection to complete.
1385 ** (2.5x behaves so)
1387 SCR_JUMPR
^ IFFALSE (WHEN (SCR_MSG_OUT
)),
1391 ** Next time use the next slot.
1397 ** The ncr doesn't have an indirect load
1398 ** or store command. So we have to
1399 ** copy part of the control block to a
1400 ** fixed place, where we can access it.
1402 ** We patch the address part of a
1403 ** COPY command with the DSA-register.
1409 ** Flush script prefetch if required
1413 ** then we do the actual copy.
1415 SCR_COPY (sizeof (struct head
)),
1417 ** continued after the next label ...
1419 }/*-------------------------< LOADPOS >---------------------*/,{
1423 ** Wait for the next phase or the selection
1424 ** to complete or time-out.
1426 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_OUT
)),
1429 }/*-------------------------< SEND_IDENT >----------------------*/,{
1431 ** Selection complete.
1432 ** Send the IDENTIFY and SIMPLE_TAG messages
1433 ** (and the M_X_SYNC_REQ message)
1435 SCR_MOVE_TBL
^ SCR_MSG_OUT
,
1436 offsetof (struct dsb
, smsg
),
1437 SCR_JUMP
^ IFTRUE (WHEN (SCR_MSG_OUT
)),
1438 PADDRH (resend_ident
),
1439 SCR_LOAD_REG (scratcha
, 0x80),
1444 }/*-------------------------< PREPARE >----------------------*/,{
1446 ** load the savep (saved pointer) into
1447 ** the TEMP register (actual pointer)
1450 NADDR (header
.savep
),
1453 ** Initialize the status registers
1456 NADDR (header
.status
),
1458 }/*-------------------------< PREPARE2 >---------------------*/,{
1460 ** Initialize the msgout buffer with a NOOP message.
1462 SCR_LOAD_REG (scratcha
, M_NOOP
),
1473 ** Anticipate the COMMAND phase.
1474 ** This is the normal case for initial selection.
1476 SCR_JUMP
^ IFFALSE (WHEN (SCR_COMMAND
)),
1479 }/*-------------------------< COMMAND >--------------------*/,{
1481 ** ... and send the command
1483 SCR_MOVE_TBL
^ SCR_COMMAND
,
1484 offsetof (struct dsb
, cmd
),
1486 ** If status is still HS_NEGOTIATE, negotiation failed.
1487 ** We check this here, since we want to do that
1490 SCR_FROM_REG (HS_REG
),
1492 SCR_INT
^ IFTRUE (DATA (HS_NEGOTIATE
)),
1495 }/*-----------------------< DISPATCH >----------------------*/,{
1497 ** MSG_IN is the only phase that shall be
1498 ** entered at least once for each (re)selection.
1499 ** So we test it first.
1501 SCR_JUMP
^ IFTRUE (WHEN (SCR_MSG_IN
)),
1504 SCR_RETURN
^ IFTRUE (IF (SCR_DATA_OUT
)),
1507 ** DEL 397 - 53C875 Rev 3 - Part Number 609-0392410 - ITEM 4.
1508 ** Possible data corruption during Memory Write and Invalidate.
1509 ** This work-around resets the addressing logic prior to the
1510 ** start of the first MOVE of a DATA IN phase.
1511 ** (See Documentation/scsi/ncr53c8xx.txt for more information)
1513 SCR_JUMPR
^ IFFALSE (IF (SCR_DATA_IN
)),
1520 SCR_JUMP
^ IFTRUE (IF (SCR_STATUS
)),
1522 SCR_JUMP
^ IFTRUE (IF (SCR_COMMAND
)),
1524 SCR_JUMP
^ IFTRUE (IF (SCR_MSG_OUT
)),
1527 ** Discard one illegal phase byte, if required.
1529 SCR_LOAD_REG (scratcha
, XE_BAD_PHASE
),
1534 SCR_JUMPR
^ IFFALSE (IF (SCR_ILG_OUT
)),
1536 SCR_MOVE_ABS (1) ^ SCR_ILG_OUT
,
1538 SCR_JUMPR
^ IFFALSE (IF (SCR_ILG_IN
)),
1540 SCR_MOVE_ABS (1) ^ SCR_ILG_IN
,
1545 }/*-------------------------< CLRACK >----------------------*/,{
1547 ** Terminate possible pending message phase.
1554 }/*-------------------------< NO_DATA >--------------------*/,{
1556 ** The target wants to tranfer too much data
1557 ** or in the wrong direction.
1558 ** Remember that in extended error.
1560 SCR_LOAD_REG (scratcha
, XE_EXTRA_DATA
),
1566 ** Discard one data byte, if required.
1568 SCR_JUMPR
^ IFFALSE (WHEN (SCR_DATA_OUT
)),
1570 SCR_MOVE_ABS (1) ^ SCR_DATA_OUT
,
1572 SCR_JUMPR
^ IFFALSE (IF (SCR_DATA_IN
)),
1574 SCR_MOVE_ABS (1) ^ SCR_DATA_IN
,
1577 ** .. and repeat as required.
1584 }/*-------------------------< STATUS >--------------------*/,{
1588 SCR_MOVE_ABS (1) ^ SCR_STATUS
,
1591 ** save status to scsi_status.
1592 ** mark as complete.
1594 SCR_TO_REG (SS_REG
),
1596 SCR_LOAD_REG (HS_REG
, HS_COMPLETE
),
1600 }/*-------------------------< MSG_IN >--------------------*/,{
1602 ** Get the first byte of the message
1603 ** and save it to SCRATCHA.
1605 ** The script processor doesn't negate the
1606 ** ACK signal after this transfer.
1608 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
1610 }/*-------------------------< MSG_IN2 >--------------------*/,{
1612 ** Handle this message.
1614 SCR_JUMP
^ IFTRUE (DATA (M_COMPLETE
)),
1616 SCR_JUMP
^ IFTRUE (DATA (M_DISCONNECT
)),
1618 SCR_JUMP
^ IFTRUE (DATA (M_SAVE_DP
)),
1620 SCR_JUMP
^ IFTRUE (DATA (M_RESTORE_DP
)),
1622 SCR_JUMP
^ IFTRUE (DATA (M_EXTENDED
)),
1623 PADDRH (msg_extended
),
1624 SCR_JUMP
^ IFTRUE (DATA (M_NOOP
)),
1626 SCR_JUMP
^ IFTRUE (DATA (M_REJECT
)),
1627 PADDRH (msg_reject
),
1628 SCR_JUMP
^ IFTRUE (DATA (M_IGN_RESIDUE
)),
1629 PADDRH (msg_ign_residue
),
1631 ** Rest of the messages left as
1634 ** Unimplemented messages:
1635 ** fall through to MSG_BAD.
1637 }/*-------------------------< MSG_BAD >------------------*/,{
1639 ** unimplemented message - reject it.
1643 SCR_LOAD_REG (scratcha
, M_REJECT
),
1645 }/*-------------------------< SETMSG >----------------------*/,{
1653 }/*-------------------------< CLEANUP >-------------------*/,{
1655 ** dsa: Pointer to ccb
1656 ** or xxxxxxFF (no ccb)
1658 ** HS_REG: Host-Status (<>0!)
1662 SCR_JUMP
^ IFTRUE (DATA (0xff)),
1666 ** complete the cleanup.
1671 }/*-------------------------< COMPLETE >-----------------*/,{
1673 ** Complete message.
1675 ** Copy TEMP register to LASTP in header.
1679 NADDR (header
.lastp
),
1681 ** When we terminate the cycle by clearing ACK,
1682 ** the target may disconnect immediately.
1684 ** We don't want to be told of an
1685 ** "unexpected disconnect",
1686 ** so we disable this feature.
1688 SCR_REG_REG (scntl2
, SCR_AND
, 0x7f),
1691 ** Terminate cycle ...
1693 SCR_CLR (SCR_ACK
|SCR_ATN
),
1696 ** ... and wait for the disconnect.
1700 }/*-------------------------< CLEANUP_OK >----------------*/,{
1702 ** Save host status to header.
1706 NADDR (header
.status
),
1708 ** and copy back the header to the ccb.
1714 ** Flush script prefetch if required
1717 SCR_COPY (sizeof (struct head
)),
1719 }/*-------------------------< CLEANUP0 >--------------------*/,{
1721 }/*-------------------------< SIGNAL >----------------------*/,{
1723 ** if job not completed ...
1725 SCR_FROM_REG (HS_REG
),
1728 ** ... start the next command.
1730 SCR_JUMP
^ IFTRUE (MASK (0, (HS_DONEMASK
|HS_SKIPMASK
))),
1733 ** If command resulted in not GOOD status,
1734 ** call the C code if needed.
1736 SCR_FROM_REG (SS_REG
),
1738 SCR_CALL
^ IFFALSE (DATA (S_GOOD
)),
1739 PADDRH (bad_status
),
1741 #ifndef SCSI_NCR_CCB_DONE_SUPPORT
1744 ** ... signal completion to the host
1749 ** Auf zu neuen Schandtaten!
1754 #else /* defined SCSI_NCR_CCB_DONE_SUPPORT */
1757 ** ... signal completion to the host
1760 }/*------------------------< DONE_POS >---------------------*/,{
1761 PADDRH (done_queue
),
1762 }/*------------------------< DONE_PLUG >--------------------*/,{
1765 }/*------------------------< DONE_END >---------------------*/,{
1774 #endif /* SCSI_NCR_CCB_DONE_SUPPORT */
1776 }/*-------------------------< SAVE_DP >------------------*/,{
1779 ** Copy TEMP register to SAVEP in header.
1783 NADDR (header
.savep
),
1788 }/*-------------------------< RESTORE_DP >---------------*/,{
1790 ** RESTORE_DP message:
1791 ** Copy SAVEP in header to TEMP register.
1794 NADDR (header
.savep
),
1799 }/*-------------------------< DISCONNECT >---------------*/,{
1801 ** DISCONNECTing ...
1803 ** disable the "unexpected disconnect" feature,
1804 ** and remove the ACK signal.
1806 SCR_REG_REG (scntl2
, SCR_AND
, 0x7f),
1808 SCR_CLR (SCR_ACK
|SCR_ATN
),
1811 ** Wait for the disconnect.
1816 ** Status is: DISCONNECTED.
1818 SCR_LOAD_REG (HS_REG
, HS_DISCONNECT
),
1823 }/*-------------------------< MSG_OUT >-------------------*/,{
1825 ** The target requests a message.
1827 SCR_MOVE_ABS (1) ^ SCR_MSG_OUT
,
1833 ** If it was no ABORT message ...
1835 SCR_JUMP
^ IFTRUE (DATA (M_ABORT
)),
1836 PADDRH (msg_out_abort
),
1838 ** ... wait for the next phase
1839 ** if it's a message out, send it again, ...
1841 SCR_JUMP
^ IFTRUE (WHEN (SCR_MSG_OUT
)),
1843 }/*-------------------------< MSG_OUT_DONE >--------------*/,{
1845 ** ... else clear the message ...
1847 SCR_LOAD_REG (scratcha
, M_NOOP
),
1853 ** ... and process the next phase
1857 }/*-------------------------< IDLE >------------------------*/,{
1860 ** Wait for reselect.
1861 ** This NOP will be patched with LED OFF
1862 ** SCR_REG_REG (gpreg, SCR_OR, 0x01)
1866 }/*-------------------------< RESELECT >--------------------*/,{
1868 ** make the DSA invalid.
1870 SCR_LOAD_REG (dsa
, 0xff),
1874 SCR_LOAD_REG (HS_REG
, HS_IN_RESELECT
),
1877 ** Sleep waiting for a reselection.
1878 ** If SIGP is set, special treatment.
1880 ** Zu allem bereit ..
1884 }/*-------------------------< RESELECTED >------------------*/,{
1886 ** This NOP will be patched with LED ON
1887 ** SCR_REG_REG (gpreg, SCR_AND, 0xfe)
1892 ** ... zu nichts zu gebrauchen ?
1894 ** load the target id into the SFBR
1895 ** and jump to the control block.
1897 ** Look at the declarations of
1902 ** to understand what's going on.
1904 SCR_REG_SFBR (ssid
, SCR_AND
, 0x8F),
1911 }/*-------------------------< RESEL_DSA >-------------------*/,{
1913 ** Ack the IDENTIFY or TAG previously received.
1918 ** The ncr doesn't have an indirect load
1919 ** or store command. So we have to
1920 ** copy part of the control block to a
1921 ** fixed place, where we can access it.
1923 ** We patch the address part of a
1924 ** COPY command with the DSA-register.
1930 ** Flush script prefetch if required
1934 ** then we do the actual copy.
1936 SCR_COPY (sizeof (struct head
)),
1938 ** continued after the next label ...
1941 }/*-------------------------< LOADPOS1 >-------------------*/,{
1945 ** The DSA contains the data structure address.
1950 }/*-------------------------< RESEL_LUN >-------------------*/,{
1952 ** come back to this point
1953 ** to get an IDENTIFY message
1954 ** Wait for a msg_in phase.
1956 SCR_INT
^ IFFALSE (WHEN (SCR_MSG_IN
)),
1957 SIR_RESEL_NO_MSG_IN
,
1960 ** Read the data directly from the BUS DATA lines.
1961 ** This helps to support very old SCSI devices that
1962 ** may reselect without sending an IDENTIFY.
1964 SCR_FROM_REG (sbdl
),
1967 ** It should be an Identify message.
1971 }/*-------------------------< RESEL_TAG >-------------------*/,{
1973 ** Read IDENTIFY + SIMPLE + TAG using a single MOVE.
1974 ** Agressive optimization, is'nt it?
1975 ** No need to test the SIMPLE TAG message, since the
1976 ** driver only supports conformant devices for tags. ;-)
1978 SCR_MOVE_ABS (3) ^ SCR_MSG_IN
,
1981 ** Read the TAG from the SIDL.
1982 ** Still an aggressive optimization. ;-)
1983 ** Compute the CCB indirect jump address which
1984 ** is (#TAG*2 & 0xfc) due to tag numbering using
1985 ** 1,3,5..MAXTAGS*2+1 actual values.
1987 SCR_REG_SFBR (sidl
, SCR_SHL
, 0),
1989 SCR_SFBR_REG (temp
, SCR_AND
, 0xfc),
1991 }/*-------------------------< JUMP_TO_NEXUS >-------------------*/,{
1994 PADDR (nexus_indirect
),
1996 ** Flush script prefetch if required
2000 }/*-------------------------< NEXUS_INDIRECT >-------------------*/,{
2005 }/*-------------------------< RESEL_NOTAG >-------------------*/,{
2008 ** Read an throw away the IDENTIFY.
2010 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2013 PADDR (jump_to_nexus
),
2014 }/*-------------------------< DATA_IN >--------------------*/,{
2016 ** Because the size depends on the
2017 ** #define MAX_SCATTERL parameter,
2018 ** it is filled in at runtime.
2020 ** ##===========< i=0; i<MAX_SCATTERL >=========
2021 ** || SCR_CALL ^ IFFALSE (WHEN (SCR_DATA_IN)),
2022 ** || PADDR (dispatch),
2023 ** || SCR_MOVE_TBL ^ SCR_DATA_IN,
2024 ** || offsetof (struct dsb, data[ i]),
2025 ** ##==========================================
2027 **---------------------------------------------------------
2030 }/*-------------------------< DATA_IN2 >-------------------*/,{
2035 }/*-------------------------< DATA_OUT >--------------------*/,{
2037 ** Because the size depends on the
2038 ** #define MAX_SCATTERL parameter,
2039 ** it is filled in at runtime.
2041 ** ##===========< i=0; i<MAX_SCATTERL >=========
2042 ** || SCR_CALL ^ IFFALSE (WHEN (SCR_DATA_OUT)),
2043 ** || PADDR (dispatch),
2044 ** || SCR_MOVE_TBL ^ SCR_DATA_OUT,
2045 ** || offsetof (struct dsb, data[ i]),
2046 ** ##==========================================
2048 **---------------------------------------------------------
2051 }/*-------------------------< DATA_OUT2 >-------------------*/,{
2056 }/*--------------------------------------------------------*/
2059 static struct scripth scripth0 __initdata
= {
2060 /*-------------------------< TRYLOOP >---------------------*/{
2062 ** Start the next entry.
2063 ** Called addresses point to the launch script in the CCB.
2064 ** They are patched by the main processor.
2066 ** Because the size depends on the
2067 ** #define MAX_START parameter, it is filled
2070 **-----------------------------------------------------------
2072 ** ##===========< I=0; i<MAX_START >===========
2075 ** ##==========================================
2077 **-----------------------------------------------------------
2080 }/*------------------------< TRYLOOP2 >---------------------*/,{
2084 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
2086 }/*------------------------< DONE_QUEUE >-------------------*/,{
2088 ** Copy the CCB address to the next done entry.
2089 ** Because the size depends on the
2090 ** #define MAX_DONE parameter, it is filled
2093 **-----------------------------------------------------------
2095 ** ##===========< I=0; i<MAX_DONE >===========
2096 ** || SCR_COPY (sizeof(struct ccb *),
2097 ** || NADDR (header.cp),
2098 ** || NADDR (ccb_done[i]),
2100 ** || PADDR (done_end),
2101 ** ##==========================================
2103 **-----------------------------------------------------------
2106 }/*------------------------< DONE_QUEUE2 >------------------*/,{
2108 PADDRH (done_queue
),
2110 #endif /* SCSI_NCR_CCB_DONE_SUPPORT */
2111 }/*------------------------< SELECT_NO_ATN >-----------------*/,{
2113 ** Set Initiator mode.
2114 ** And try to select this target without ATN.
2119 SCR_LOAD_REG (HS_REG
, HS_SELECTING
),
2121 SCR_SEL_TBL
^ offsetof (struct dsb
, select
),
2126 }/*-------------------------< CANCEL >------------------------*/,{
2128 SCR_LOAD_REG (scratcha
, HS_ABORTED
),
2132 }/*-------------------------< SKIP >------------------------*/,{
2133 SCR_LOAD_REG (scratcha
, 0),
2136 ** This entry has been canceled.
2137 ** Next time use the next slot.
2143 ** The ncr doesn't have an indirect load
2144 ** or store command. So we have to
2145 ** copy part of the control block to a
2146 ** fixed place, where we can access it.
2148 ** We patch the address part of a
2149 ** COPY command with the DSA-register.
2155 ** Flush script prefetch if required
2159 ** then we do the actual copy.
2161 SCR_COPY (sizeof (struct head
)),
2163 ** continued after the next label ...
2165 }/*-------------------------< SKIP2 >---------------------*/,{
2169 ** Initialize the status registers
2172 NADDR (header
.status
),
2175 ** Force host status.
2177 SCR_FROM_REG (scratcha
),
2179 SCR_JUMPR
^ IFFALSE (MASK (0, HS_DONEMASK
)),
2181 SCR_REG_REG (HS_REG
, SCR_OR
, HS_SKIPMASK
),
2185 SCR_TO_REG (HS_REG
),
2187 SCR_LOAD_REG (SS_REG
, S_GOOD
),
2192 },/*-------------------------< PAR_ERR_DATA_IN >---------------*/{
2194 ** Ignore all data in byte, until next phase
2196 SCR_JUMP
^ IFFALSE (WHEN (SCR_DATA_IN
)),
2197 PADDRH (par_err_other
),
2198 SCR_MOVE_ABS (1) ^ SCR_DATA_IN
,
2202 },/*-------------------------< PAR_ERR_OTHER >------------------*/{
2206 SCR_REG_REG (PS_REG
, SCR_ADD
, 0x01),
2209 ** jump to dispatcher.
2213 }/*-------------------------< MSG_REJECT >---------------*/,{
2215 ** If a negotiation was in progress,
2216 ** negotiation failed.
2217 ** Otherwise, let the C code print
2220 SCR_FROM_REG (HS_REG
),
2222 SCR_INT
^ IFFALSE (DATA (HS_NEGOTIATE
)),
2223 SIR_REJECT_RECEIVED
,
2224 SCR_INT
^ IFTRUE (DATA (HS_NEGOTIATE
)),
2229 }/*-------------------------< MSG_IGN_RESIDUE >----------*/,{
2235 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_IN
)),
2238 ** get residue size.
2240 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2243 ** Size is 0 .. ignore message.
2245 SCR_JUMP
^ IFTRUE (DATA (0)),
2248 ** Size is not 1 .. have to interrupt.
2250 SCR_JUMPR
^ IFFALSE (DATA (1)),
2253 ** Check for residue byte in swide register
2255 SCR_FROM_REG (scntl2
),
2257 SCR_JUMPR
^ IFFALSE (MASK (WSR
, WSR
)),
2260 ** There IS data in the swide register.
2263 SCR_REG_REG (scntl2
, SCR_OR
, WSR
),
2268 ** Load again the size to the sfbr register.
2270 SCR_FROM_REG (scratcha
),
2277 }/*-------------------------< MSG_EXTENDED >-------------*/,{
2283 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_IN
)),
2288 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2292 SCR_JUMP
^ IFTRUE (DATA (3)),
2294 SCR_JUMP
^ IFFALSE (DATA (2)),
2296 }/*-------------------------< MSG_EXT_2 >----------------*/,{
2299 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_IN
)),
2302 ** get extended message code.
2304 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2306 SCR_JUMP
^ IFTRUE (DATA (M_X_WIDE_REQ
)),
2309 ** unknown extended message
2313 }/*-------------------------< MSG_WDTR >-----------------*/,{
2316 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_IN
)),
2319 ** get data bus width
2321 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2324 ** let the host do the real work.
2329 ** let the target fetch our answer.
2335 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_OUT
)),
2336 PADDRH (nego_bad_phase
),
2338 }/*-------------------------< SEND_WDTR >----------------*/,{
2340 ** Send the M_X_WIDE_REQ
2342 SCR_MOVE_ABS (4) ^ SCR_MSG_OUT
,
2348 PADDR (msg_out_done
),
2350 }/*-------------------------< MSG_EXT_3 >----------------*/,{
2353 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_IN
)),
2356 ** get extended message code.
2358 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2360 SCR_JUMP
^ IFTRUE (DATA (M_X_SYNC_REQ
)),
2363 ** unknown extended message
2368 }/*-------------------------< MSG_SDTR >-----------------*/,{
2371 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_IN
)),
2374 ** get period and offset
2376 SCR_MOVE_ABS (2) ^ SCR_MSG_IN
,
2379 ** let the host do the real work.
2384 ** let the target fetch our answer.
2390 SCR_JUMP
^ IFFALSE (WHEN (SCR_MSG_OUT
)),
2391 PADDRH (nego_bad_phase
),
2393 }/*-------------------------< SEND_SDTR >-------------*/,{
2395 ** Send the M_X_SYNC_REQ
2397 SCR_MOVE_ABS (5) ^ SCR_MSG_OUT
,
2403 PADDR (msg_out_done
),
2405 }/*-------------------------< NEGO_BAD_PHASE >------------*/,{
2411 }/*-------------------------< MSG_OUT_ABORT >-------------*/,{
2413 ** After ABORT message,
2415 ** expect an immediate disconnect, ...
2417 SCR_REG_REG (scntl2
, SCR_AND
, 0x7f),
2419 SCR_CLR (SCR_ACK
|SCR_ATN
),
2424 ** ... and set the status to "ABORTED"
2426 SCR_LOAD_REG (HS_REG
, HS_ABORTED
),
2431 }/*-------------------------< HDATA_IN >-------------------*/,{
2433 ** Because the size depends on the
2434 ** #define MAX_SCATTERH parameter,
2435 ** it is filled in at runtime.
2437 ** ##==< i=MAX_SCATTERL; i<MAX_SCATTERL+MAX_SCATTERH >==
2438 ** || SCR_CALL ^ IFFALSE (WHEN (SCR_DATA_IN)),
2439 ** || PADDR (dispatch),
2440 ** || SCR_MOVE_TBL ^ SCR_DATA_IN,
2441 ** || offsetof (struct dsb, data[ i]),
2442 ** ##===================================================
2444 **---------------------------------------------------------
2447 }/*-------------------------< HDATA_IN2 >------------------*/,{
2451 }/*-------------------------< HDATA_OUT >-------------------*/,{
2453 ** Because the size depends on the
2454 ** #define MAX_SCATTERH parameter,
2455 ** it is filled in at runtime.
2457 ** ##==< i=MAX_SCATTERL; i<MAX_SCATTERL+MAX_SCATTERH >==
2458 ** || SCR_CALL ^ IFFALSE (WHEN (SCR_DATA_OUT)),
2459 ** || PADDR (dispatch),
2460 ** || SCR_MOVE_TBL ^ SCR_DATA_OUT,
2461 ** || offsetof (struct dsb, data[ i]),
2462 ** ##===================================================
2464 **---------------------------------------------------------
2467 }/*-------------------------< HDATA_OUT2 >------------------*/,{
2471 }/*-------------------------< RESET >----------------------*/,{
2473 ** Send a M_RESET message if bad IDENTIFY
2474 ** received on reselection.
2476 SCR_LOAD_REG (scratcha
, M_ABORT_TAG
),
2479 PADDRH (abort_resel
),
2480 }/*-------------------------< ABORTTAG >-------------------*/,{
2482 ** Abort a wrong tag received on reselection.
2484 SCR_LOAD_REG (scratcha
, M_ABORT_TAG
),
2487 PADDRH (abort_resel
),
2488 }/*-------------------------< ABORT >----------------------*/,{
2490 ** Abort a reselection when no active CCB.
2492 SCR_LOAD_REG (scratcha
, M_ABORT
),
2494 }/*-------------------------< ABORT_RESEL >----------------*/,{
2504 ** we expect an immediate disconnect
2506 SCR_REG_REG (scntl2
, SCR_AND
, 0x7f),
2508 SCR_MOVE_ABS (1) ^ SCR_MSG_OUT
,
2513 SCR_CLR (SCR_ACK
|SCR_ATN
),
2519 }/*-------------------------< RESEND_IDENT >-------------------*/,{
2521 ** The target stays in MSG OUT phase after having acked
2522 ** Identify [+ Tag [+ Extended message ]]. Targets shall
2523 ** behave this way on parity error.
2524 ** We must send it again all the messages.
2526 SCR_SET (SCR_ATN
), /* Shall be asserted 2 deskew delays before the */
2527 0, /* 1rst ACK = 90 ns. Hope the NCR is'nt too fast */
2530 }/*-------------------------< CLRATN_GO_ON >-------------------*/,{
2534 }/*-------------------------< NXTDSP_GO_ON >-------------------*/,{
2536 }/*-------------------------< SDATA_IN >-------------------*/,{
2537 SCR_CALL
^ IFFALSE (WHEN (SCR_DATA_IN
)),
2539 SCR_MOVE_TBL
^ SCR_DATA_IN
,
2540 offsetof (struct dsb
, sense
),
2545 }/*-------------------------< DATA_IO >--------------------*/,{
2547 ** We jump here if the data direction was unknown at the
2548 ** time we had to queue the command to the scripts processor.
2549 ** Pointers had been set as follow in this situation:
2550 ** savep --> DATA_IO
2551 ** lastp --> start pointer when DATA_IN
2552 ** goalp --> goal pointer when DATA_IN
2553 ** wlastp --> start pointer when DATA_OUT
2554 ** wgoalp --> goal pointer when DATA_OUT
2555 ** This script sets savep/lastp/goalp according to the
2556 ** direction chosen by the target.
2558 SCR_JUMPR
^ IFTRUE (WHEN (SCR_DATA_OUT
)),
2561 ** Direction is DATA IN.
2562 ** Warning: we jump here, even when phase is DATA OUT.
2565 NADDR (header
.lastp
),
2566 NADDR (header
.savep
),
2569 ** Jump to the SCRIPTS according to actual direction.
2572 NADDR (header
.savep
),
2577 ** Direction is DATA OUT.
2580 NADDR (header
.wlastp
),
2581 NADDR (header
.lastp
),
2583 NADDR (header
.wgoalp
),
2584 NADDR (header
.goalp
),
2587 }/*-------------------------< BAD_IDENTIFY >---------------*/,{
2589 ** If message phase but not an IDENTIFY,
2590 ** get some help from the C code.
2591 ** Old SCSI device may behave so.
2593 SCR_JUMPR
^ IFTRUE (MASK (0x80, 0x80)),
2596 SIR_RESEL_NO_IDENTIFY
,
2600 ** Message is an IDENTIFY, but lun is unknown.
2601 ** Read the message, since we got it directly
2602 ** from the SCSI BUS data lines.
2603 ** Signal problem to C code for logging the event.
2604 ** Send a M_ABORT to clear all pending tasks.
2608 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2612 }/*-------------------------< BAD_I_T_L >------------------*/,{
2614 ** We donnot have a task for that I_T_L.
2615 ** Signal problem to C code for logging the event.
2616 ** Send a M_ABORT message.
2619 SIR_RESEL_BAD_I_T_L
,
2622 }/*-------------------------< BAD_I_T_L_Q >----------------*/,{
2624 ** We donnot have a task that matches the tag.
2625 ** Signal problem to C code for logging the event.
2626 ** Send a M_ABORTTAG message.
2629 SIR_RESEL_BAD_I_T_L_Q
,
2632 }/*-------------------------< BAD_TARGET >-----------------*/,{
2634 ** We donnot know the target that reselected us.
2635 ** Grab the first message if any (IDENTIFY).
2636 ** Signal problem to C code for logging the event.
2640 SIR_RESEL_BAD_TARGET
,
2641 SCR_JUMPR
^ IFFALSE (WHEN (SCR_MSG_IN
)),
2643 SCR_MOVE_ABS (1) ^ SCR_MSG_IN
,
2647 }/*-------------------------< BAD_STATUS >-----------------*/,{
2649 ** If command resulted in either QUEUE FULL,
2650 ** CHECK CONDITION or COMMAND TERMINATED,
2653 SCR_INT
^ IFTRUE (DATA (S_QUEUE_FULL
)),
2655 SCR_INT
^ IFTRUE (DATA (S_CHECK_COND
)),
2657 SCR_INT
^ IFTRUE (DATA (S_TERMINATED
)),
2661 }/*-------------------------< START_RAM >-------------------*/,{
2663 ** Load the script into on-chip RAM,
2664 ** and jump to start point.
2668 PADDRH (start_ram0
),
2670 ** Flush script prefetch if required
2673 SCR_COPY (sizeof (struct script
)),
2674 }/*-------------------------< START_RAM0 >--------------------*/,{
2679 }/*-------------------------< STO_RESTART >-------------------*/,{
2682 ** Repair start queue (e.g. next time use the next slot)
2683 ** and jump to start point.
2690 }/*-------------------------< WAIT_DMA >-------------------*/,{
2692 ** For HP Zalon/53c720 systems, the Zalon interface
2693 ** between CPU and 53c720 does prefetches, which causes
2694 ** problems with self modifying scripts. The problem
2695 ** is overcome by calling a dummy subroutine after each
2696 ** modification, to force a refetch of the script on
2697 ** return from the subroutine.
2701 }/*-------------------------< SNOOPTEST >-------------------*/,{
2703 ** Read the variable.
2709 ** Write the variable.
2715 ** Read back the variable.
2720 }/*-------------------------< SNOOPEND >-------------------*/,{
2726 }/*--------------------------------------------------------*/
2729 /*==========================================================
2732 ** Fill in #define dependent parts of the script
2735 **==========================================================
2738 void __init
ncr_script_fill (struct script
* scr
, struct scripth
* scrh
)
2744 for (i
=0; i
<MAX_START
; i
++) {
2749 BUG_ON((u_long
)p
!= (u_long
)&scrh
->tryloop
+ sizeof (scrh
->tryloop
));
2751 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
2753 p
= scrh
->done_queue
;
2754 for (i
= 0; i
<MAX_DONE
; i
++) {
2755 *p
++ =SCR_COPY (sizeof(struct ccb
*));
2756 *p
++ =NADDR (header
.cp
);
2757 *p
++ =NADDR (ccb_done
[i
]);
2759 *p
++ =PADDR (done_end
);
2762 BUG_ON((u_long
)p
!= (u_long
)&scrh
->done_queue
+sizeof(scrh
->done_queue
));
2764 #endif /* SCSI_NCR_CCB_DONE_SUPPORT */
2767 for (i
=0; i
<MAX_SCATTERH
; i
++) {
2768 *p
++ =SCR_CALL
^ IFFALSE (WHEN (SCR_DATA_IN
));
2769 *p
++ =PADDR (dispatch
);
2770 *p
++ =SCR_MOVE_TBL
^ SCR_DATA_IN
;
2771 *p
++ =offsetof (struct dsb
, data
[i
]);
2774 BUG_ON((u_long
)p
!= (u_long
)&scrh
->hdata_in
+ sizeof (scrh
->hdata_in
));
2777 for (i
=MAX_SCATTERH
; i
<MAX_SCATTERH
+MAX_SCATTERL
; i
++) {
2778 *p
++ =SCR_CALL
^ IFFALSE (WHEN (SCR_DATA_IN
));
2779 *p
++ =PADDR (dispatch
);
2780 *p
++ =SCR_MOVE_TBL
^ SCR_DATA_IN
;
2781 *p
++ =offsetof (struct dsb
, data
[i
]);
2784 BUG_ON((u_long
)p
!= (u_long
)&scr
->data_in
+ sizeof (scr
->data_in
));
2786 p
= scrh
->hdata_out
;
2787 for (i
=0; i
<MAX_SCATTERH
; i
++) {
2788 *p
++ =SCR_CALL
^ IFFALSE (WHEN (SCR_DATA_OUT
));
2789 *p
++ =PADDR (dispatch
);
2790 *p
++ =SCR_MOVE_TBL
^ SCR_DATA_OUT
;
2791 *p
++ =offsetof (struct dsb
, data
[i
]);
2794 BUG_ON((u_long
)p
!= (u_long
)&scrh
->hdata_out
+ sizeof (scrh
->hdata_out
));
2797 for (i
=MAX_SCATTERH
; i
<MAX_SCATTERH
+MAX_SCATTERL
; i
++) {
2798 *p
++ =SCR_CALL
^ IFFALSE (WHEN (SCR_DATA_OUT
));
2799 *p
++ =PADDR (dispatch
);
2800 *p
++ =SCR_MOVE_TBL
^ SCR_DATA_OUT
;
2801 *p
++ =offsetof (struct dsb
, data
[i
]);
2804 BUG_ON((u_long
) p
!= (u_long
)&scr
->data_out
+ sizeof (scr
->data_out
));
2807 /*==========================================================
2810 ** Copy and rebind a script.
2813 **==========================================================
2817 ncr_script_copy_and_bind (struct ncb
*np
, ncrcmd
*src
, ncrcmd
*dst
, int len
)
2819 ncrcmd opcode
, new, old
, tmp1
, tmp2
;
2820 ncrcmd
*start
, *end
;
2830 *dst
++ = cpu_to_scr(opcode
);
2833 ** If we forget to change the length
2834 ** in struct script, a field will be
2835 ** padded with 0. This is an illegal
2840 printk (KERN_ERR
"%s: ERROR0 IN SCRIPT at %d.\n",
2841 ncr_name(np
), (int) (src
-start
-1));
2845 if (DEBUG_FLAGS
& DEBUG_SCRIPT
)
2846 printk (KERN_DEBUG
"%p: <%x>\n",
2847 (src
-1), (unsigned)opcode
);
2850 ** We don't have to decode ALL commands
2852 switch (opcode
>> 28) {
2856 ** COPY has TWO arguments.
2861 if ((tmp1
& RELOC_MASK
) == RELOC_KVAR
)
2866 if ((tmp2
& RELOC_MASK
) == RELOC_KVAR
)
2869 if ((tmp1
^ tmp2
) & 3) {
2870 printk (KERN_ERR
"%s: ERROR1 IN SCRIPT at %d.\n",
2871 ncr_name(np
), (int) (src
-start
-1));
2875 ** If PREFETCH feature not enabled, remove
2876 ** the NO FLUSH bit if present.
2878 if ((opcode
& SCR_NO_FLUSH
) && !(np
->features
& FE_PFEN
)) {
2879 dst
[-1] = cpu_to_scr(opcode
& ~SCR_NO_FLUSH
);
2886 ** MOVE (absolute address)
2894 ** don't relocate if relative :-)
2896 if (opcode
& 0x00800000)
2918 switch (old
& RELOC_MASK
) {
2919 case RELOC_REGISTER
:
2920 new = (old
& ~RELOC_MASK
) + np
->paddr
;
2923 new = (old
& ~RELOC_MASK
) + np
->p_script
;
2926 new = (old
& ~RELOC_MASK
) + np
->p_scripth
;
2929 new = (old
& ~RELOC_MASK
) + np
->p_ncb
;
2933 if (((old
& ~RELOC_MASK
) <
2934 SCRIPT_KVAR_FIRST
) ||
2935 ((old
& ~RELOC_MASK
) >
2937 panic("ncr KVAR out of range");
2938 new = vtophys(script_kvars
[old
&
2943 /* Don't relocate a 0 address. */
2950 panic("ncr_script_copy_and_bind: weird relocation %x\n", old
);
2954 *dst
++ = cpu_to_scr(new);
2957 *dst
++ = cpu_to_scr(*src
++);
2963 ** Linux host data structure
2970 #define PRINT_ADDR(cmd, arg...) dev_info(&cmd->device->sdev_gendev , ## arg)
2972 static void ncr_print_msg(struct ccb
*cp
, char *label
, u_char
*msg
)
2975 PRINT_ADDR(cp
->cmd
, "%s: ", label
);
2978 if (*msg
== M_EXTENDED
) {
2979 for (i
= 1; i
< 8; i
++) {
2982 printk ("-%x",msg
[i
]);
2984 } else if ((*msg
& 0xf0) == 0x20) {
2985 printk ("-%x",msg
[1]);
2991 /*==========================================================
2993 ** NCR chip clock divisor table.
2994 ** Divisors are multiplied by 10,000,000 in order to make
2995 ** calculations more simple.
2997 **==========================================================
3001 static u_long div_10M
[] =
3002 {2*_5M
, 3*_5M
, 4*_5M
, 6*_5M
, 8*_5M
, 12*_5M
, 16*_5M
};
3005 /*===============================================================
3007 ** Prepare io register values used by ncr_init() according
3008 ** to selected and supported features.
3010 ** NCR chips allow burst lengths of 2, 4, 8, 16, 32, 64, 128
3011 ** transfers. 32,64,128 are only supported by 875 and 895 chips.
3012 ** We use log base 2 (burst length) as internal code, with
3013 ** value 0 meaning "burst disabled".
3015 **===============================================================
3019 * Burst length from burst code.
3021 #define burst_length(bc) (!(bc))? 0 : 1 << (bc)
3024 * Burst code from io register bits. Burst enable is ctest0 for c720
3026 #define burst_code(dmode, ctest0) \
3027 (ctest0) & 0x80 ? 0 : (((dmode) & 0xc0) >> 6) + 1
3030 * Set initial io register bits from burst code.
3032 static inline void ncr_init_burst(struct ncb
*np
, u_char bc
)
3034 u_char
*be
= &np
->rv_ctest0
;
3036 np
->rv_dmode
&= ~(0x3 << 6);
3037 np
->rv_ctest5
&= ~0x4;
3043 np
->rv_dmode
|= ((bc
& 0x3) << 6);
3044 np
->rv_ctest5
|= (bc
& 0x4);
3048 static void __init
ncr_prepare_setting(struct ncb
*np
)
3055 ** Save assumed BIOS setting
3058 np
->sv_scntl0
= INB(nc_scntl0
) & 0x0a;
3059 np
->sv_scntl3
= INB(nc_scntl3
) & 0x07;
3060 np
->sv_dmode
= INB(nc_dmode
) & 0xce;
3061 np
->sv_dcntl
= INB(nc_dcntl
) & 0xa8;
3062 np
->sv_ctest0
= INB(nc_ctest0
) & 0x84;
3063 np
->sv_ctest3
= INB(nc_ctest3
) & 0x01;
3064 np
->sv_ctest4
= INB(nc_ctest4
) & 0x80;
3065 np
->sv_ctest5
= INB(nc_ctest5
) & 0x24;
3066 np
->sv_gpcntl
= INB(nc_gpcntl
);
3067 np
->sv_stest2
= INB(nc_stest2
) & 0x20;
3068 np
->sv_stest4
= INB(nc_stest4
);
3074 np
->maxwide
= (np
->features
& FE_WIDE
)? 1 : 0;
3077 * Guess the frequency of the chip's clock.
3079 if (np
->features
& FE_ULTRA
)
3080 np
->clock_khz
= 80000;
3082 np
->clock_khz
= 40000;
3085 * Get the clock multiplier factor.
3087 if (np
->features
& FE_QUAD
)
3089 else if (np
->features
& FE_DBLR
)
3095 * Measure SCSI clock frequency for chips
3096 * it may vary from assumed one.
3098 if (np
->features
& FE_VARCLK
)
3099 ncr_getclock(np
, np
->multiplier
);
3102 * Divisor to be used for async (timer pre-scaler).
3104 i
= np
->clock_divn
- 1;
3106 if (10ul * SCSI_NCR_MIN_ASYNC
* np
->clock_khz
> div_10M
[i
]) {
3111 np
->rv_scntl3
= i
+1;
3114 * Minimum synchronous period factor supported by the chip.
3115 * Btw, 'period' is in tenths of nanoseconds.
3118 period
= (4 * div_10M
[0] + np
->clock_khz
- 1) / np
->clock_khz
;
3119 if (period
<= 250) np
->minsync
= 10;
3120 else if (period
<= 303) np
->minsync
= 11;
3121 else if (period
<= 500) np
->minsync
= 12;
3122 else np
->minsync
= (period
+ 40 - 1) / 40;
3125 * Check against chip SCSI standard support (SCSI-2,ULTRA,ULTRA2).
3128 if (np
->minsync
< 25 && !(np
->features
& FE_ULTRA
))
3132 * Maximum synchronous period factor supported by the chip.
3135 period
= (11 * div_10M
[np
->clock_divn
- 1]) / (4 * np
->clock_khz
);
3136 np
->maxsync
= period
> 2540 ? 254 : period
/ 10;
3139 ** Prepare initial value of other IO registers
3141 #if defined SCSI_NCR_TRUST_BIOS_SETTING
3142 np
->rv_scntl0
= np
->sv_scntl0
;
3143 np
->rv_dmode
= np
->sv_dmode
;
3144 np
->rv_dcntl
= np
->sv_dcntl
;
3145 np
->rv_ctest0
= np
->sv_ctest0
;
3146 np
->rv_ctest3
= np
->sv_ctest3
;
3147 np
->rv_ctest4
= np
->sv_ctest4
;
3148 np
->rv_ctest5
= np
->sv_ctest5
;
3149 burst_max
= burst_code(np
->sv_dmode
, np
->sv_ctest0
);
3153 ** Select burst length (dwords)
3155 burst_max
= driver_setup
.burst_max
;
3156 if (burst_max
== 255)
3157 burst_max
= burst_code(np
->sv_dmode
, np
->sv_ctest0
);
3160 if (burst_max
> np
->maxburst
)
3161 burst_max
= np
->maxburst
;
3164 ** Select all supported special features
3166 if (np
->features
& FE_ERL
)
3167 np
->rv_dmode
|= ERL
; /* Enable Read Line */
3168 if (np
->features
& FE_BOF
)
3169 np
->rv_dmode
|= BOF
; /* Burst Opcode Fetch */
3170 if (np
->features
& FE_ERMP
)
3171 np
->rv_dmode
|= ERMP
; /* Enable Read Multiple */
3172 if (np
->features
& FE_PFEN
)
3173 np
->rv_dcntl
|= PFEN
; /* Prefetch Enable */
3174 if (np
->features
& FE_CLSE
)
3175 np
->rv_dcntl
|= CLSE
; /* Cache Line Size Enable */
3176 if (np
->features
& FE_WRIE
)
3177 np
->rv_ctest3
|= WRIE
; /* Write and Invalidate */
3178 if (np
->features
& FE_DFS
)
3179 np
->rv_ctest5
|= DFS
; /* Dma Fifo Size */
3180 if (np
->features
& FE_MUX
)
3181 np
->rv_ctest4
|= MUX
; /* Host bus multiplex mode */
3182 if (np
->features
& FE_EA
)
3183 np
->rv_dcntl
|= EA
; /* Enable ACK */
3184 if (np
->features
& FE_EHP
)
3185 np
->rv_ctest0
|= EHP
; /* Even host parity */
3188 ** Select some other
3190 if (driver_setup
.master_parity
)
3191 np
->rv_ctest4
|= MPEE
; /* Master parity checking */
3192 if (driver_setup
.scsi_parity
)
3193 np
->rv_scntl0
|= 0x0a; /* full arb., ena parity, par->ATN */
3196 ** Get SCSI addr of host adapter (set by bios?).
3198 if (np
->myaddr
== 255) {
3199 np
->myaddr
= INB(nc_scid
) & 0x07;
3201 np
->myaddr
= SCSI_NCR_MYADDR
;
3204 #endif /* SCSI_NCR_TRUST_BIOS_SETTING */
3207 * Prepare initial io register bits for burst length
3209 ncr_init_burst(np
, burst_max
);
3212 ** Set SCSI BUS mode.
3214 ** - ULTRA2 chips (895/895A/896) report the current
3215 ** BUS mode through the STEST4 IO register.
3216 ** - For previous generation chips (825/825A/875),
3217 ** user has to tell us how to check against HVD,
3218 ** since a 100% safe algorithm is not possible.
3220 np
->scsi_mode
= SMODE_SE
;
3221 if (np
->features
& FE_DIFF
) {
3222 switch(driver_setup
.diff_support
) {
3223 case 4: /* Trust previous settings if present, then GPIO3 */
3224 if (np
->sv_scntl3
) {
3225 if (np
->sv_stest2
& 0x20)
3226 np
->scsi_mode
= SMODE_HVD
;
3229 case 3: /* SYMBIOS controllers report HVD through GPIO3 */
3230 if (INB(nc_gpreg
) & 0x08)
3232 case 2: /* Set HVD unconditionally */
3233 np
->scsi_mode
= SMODE_HVD
;
3234 case 1: /* Trust previous settings for HVD */
3235 if (np
->sv_stest2
& 0x20)
3236 np
->scsi_mode
= SMODE_HVD
;
3238 default:/* Don't care about HVD */
3242 if (np
->scsi_mode
== SMODE_HVD
)
3243 np
->rv_stest2
|= 0x20;
3246 ** Set LED support from SCRIPTS.
3247 ** Ignore this feature for boards known to use a
3248 ** specific GPIO wiring and for the 895A or 896
3249 ** that drive the LED directly.
3250 ** Also probe initial setting of GPIO0 as output.
3252 if ((driver_setup
.led_pin
) &&
3253 !(np
->features
& FE_LEDC
) && !(np
->sv_gpcntl
& 0x01))
3254 np
->features
|= FE_LED0
;
3259 switch(driver_setup
.irqm
& 3) {
3261 np
->rv_dcntl
|= IRQM
;
3264 np
->rv_dcntl
|= (np
->sv_dcntl
& IRQM
);
3271 ** Configure targets according to driver setup.
3272 ** Allow to override sync, wide and NOSCAN from
3273 ** boot command line.
3275 for (i
= 0 ; i
< MAX_TARGET
; i
++) {
3276 struct tcb
*tp
= &np
->target
[i
];
3278 tp
->usrsync
= driver_setup
.default_sync
;
3279 tp
->usrwide
= driver_setup
.max_wide
;
3280 tp
->usrtags
= MAX_TAGS
;
3281 tp
->period
= 0xffff;
3282 if (!driver_setup
.disconnection
)
3283 np
->target
[i
].usrflag
= UF_NODISC
;
3287 ** Announce all that stuff to user.
3290 printk(KERN_INFO
"%s: ID %d, Fast-%d%s%s\n", ncr_name(np
),
3292 np
->minsync
< 12 ? 40 : (np
->minsync
< 25 ? 20 : 10),
3293 (np
->rv_scntl0
& 0xa) ? ", Parity Checking" : ", NO Parity",
3294 (np
->rv_stest2
& 0x20) ? ", Differential" : "");
3296 if (bootverbose
> 1) {
3297 printk (KERN_INFO
"%s: initial SCNTL3/DMODE/DCNTL/CTEST3/4/5 = "
3298 "(hex) %02x/%02x/%02x/%02x/%02x/%02x\n",
3299 ncr_name(np
), np
->sv_scntl3
, np
->sv_dmode
, np
->sv_dcntl
,
3300 np
->sv_ctest3
, np
->sv_ctest4
, np
->sv_ctest5
);
3302 printk (KERN_INFO
"%s: final SCNTL3/DMODE/DCNTL/CTEST3/4/5 = "
3303 "(hex) %02x/%02x/%02x/%02x/%02x/%02x\n",
3304 ncr_name(np
), np
->rv_scntl3
, np
->rv_dmode
, np
->rv_dcntl
,
3305 np
->rv_ctest3
, np
->rv_ctest4
, np
->rv_ctest5
);
3308 if (bootverbose
&& np
->paddr2
)
3309 printk (KERN_INFO
"%s: on-chip RAM at 0x%lx\n",
3310 ncr_name(np
), np
->paddr2
);
3313 /*==========================================================
3316 ** Done SCSI commands list management.
3318 ** We donnot enter the scsi_done() callback immediately
3319 ** after a command has been seen as completed but we
3320 ** insert it into a list which is flushed outside any kind
3321 ** of driver critical section.
3322 ** This allows to do minimal stuff under interrupt and
3323 ** inside critical sections and to also avoid locking up
3324 ** on recursive calls to driver entry points under SMP.
3325 ** In fact, the only kernel point which is entered by the
3326 ** driver with a driver lock set is kmalloc(GFP_ATOMIC)
3327 ** that shall not reenter the driver under any circumstances,
3330 **==========================================================
3332 static inline void ncr_queue_done_cmd(struct ncb
*np
, struct scsi_cmnd
*cmd
)
3334 unmap_scsi_data(np
, cmd
);
3335 cmd
->host_scribble
= (char *) np
->done_list
;
3336 np
->done_list
= cmd
;
3339 static inline void ncr_flush_done_cmds(struct scsi_cmnd
*lcmd
)
3341 struct scsi_cmnd
*cmd
;
3345 lcmd
= (struct scsi_cmnd
*) cmd
->host_scribble
;
3346 cmd
->scsi_done(cmd
);
3350 /*==========================================================
3353 ** Prepare the next negotiation message if needed.
3355 ** Fill in the part of message buffer that contains the
3356 ** negotiation and the nego_status field of the CCB.
3357 ** Returns the size of the message in bytes.
3360 **==========================================================
3364 static int ncr_prepare_nego(struct ncb
*np
, struct ccb
*cp
, u_char
*msgptr
)
3366 struct tcb
*tp
= &np
->target
[cp
->target
];
3369 struct scsi_target
*starget
= tp
->starget
;
3371 /* negotiate wide transfers ? */
3372 if (!tp
->widedone
) {
3373 if (spi_support_wide(starget
)) {
3379 /* negotiate synchronous transfers? */
3380 if (!nego
&& !tp
->period
) {
3381 if (spi_support_sync(starget
)) {
3385 dev_info(&starget
->dev
, "target did not report SYNC.\n");
3391 msgptr
[msglen
++] = M_EXTENDED
;
3392 msgptr
[msglen
++] = 3;
3393 msgptr
[msglen
++] = M_X_SYNC_REQ
;
3394 msgptr
[msglen
++] = tp
->maxoffs
? tp
->minsync
: 0;
3395 msgptr
[msglen
++] = tp
->maxoffs
;
3398 msgptr
[msglen
++] = M_EXTENDED
;
3399 msgptr
[msglen
++] = 2;
3400 msgptr
[msglen
++] = M_X_WIDE_REQ
;
3401 msgptr
[msglen
++] = tp
->usrwide
;
3405 cp
->nego_status
= nego
;
3409 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
3410 ncr_print_msg(cp
, nego
== NS_WIDE
?
3411 "wide msgout":"sync_msgout", msgptr
);
3420 /*==========================================================
3423 ** Start execution of a SCSI command.
3424 ** This is called from the generic SCSI driver.
3427 **==========================================================
3429 static int ncr_queue_command (struct ncb
*np
, struct scsi_cmnd
*cmd
)
3431 struct scsi_device
*sdev
= cmd
->device
;
3432 struct tcb
*tp
= &np
->target
[sdev
->id
];
3433 struct lcb
*lp
= tp
->lp
[sdev
->lun
];
3437 u_char idmsg
, *msgptr
;
3442 /*---------------------------------------------
3444 ** Some shortcuts ...
3446 **---------------------------------------------
3448 if ((sdev
->id
== np
->myaddr
) ||
3449 (sdev
->id
>= MAX_TARGET
) ||
3450 (sdev
->lun
>= MAX_LUN
)) {
3451 return(DID_BAD_TARGET
);
3454 /*---------------------------------------------
3456 ** Complete the 1st TEST UNIT READY command
3457 ** with error condition if the device is
3458 ** flagged NOSCAN, in order to speed up
3461 **---------------------------------------------
3463 if ((cmd
->cmnd
[0] == 0 || cmd
->cmnd
[0] == 0x12) &&
3464 (tp
->usrflag
& UF_NOSCAN
)) {
3465 tp
->usrflag
&= ~UF_NOSCAN
;
3466 return DID_BAD_TARGET
;
3469 if (DEBUG_FLAGS
& DEBUG_TINY
) {
3470 PRINT_ADDR(cmd
, "CMD=%x ", cmd
->cmnd
[0]);
3473 /*---------------------------------------------------
3475 ** Assign a ccb / bind cmd.
3476 ** If resetting, shorten settle_time if necessary
3477 ** in order to avoid spurious timeouts.
3478 ** If resetting or no free ccb,
3479 ** insert cmd into the waiting list.
3481 **----------------------------------------------------
3483 if (np
->settle_time
&& cmd
->timeout_per_command
>= HZ
) {
3484 u_long tlimit
= ktime_get(cmd
->timeout_per_command
- HZ
);
3485 if (ktime_dif(np
->settle_time
, tlimit
) > 0)
3486 np
->settle_time
= tlimit
;
3489 if (np
->settle_time
|| !(cp
=ncr_get_ccb (np
, cmd
))) {
3490 insert_into_waiting_list(np
, cmd
);
3495 /*----------------------------------------------------
3497 ** Build the identify / tag / sdtr message
3499 **----------------------------------------------------
3502 idmsg
= M_IDENTIFY
| sdev
->lun
;
3504 if (cp
->tag
!= NO_TAG
||
3505 (cp
!= np
->ccb
&& np
->disc
&& !(tp
->usrflag
& UF_NODISC
)))
3508 msgptr
= cp
->scsi_smsg
;
3510 msgptr
[msglen
++] = idmsg
;
3512 if (cp
->tag
!= NO_TAG
) {
3513 char order
= np
->order
;
3516 ** Force ordered tag if necessary to avoid timeouts
3517 ** and to preserve interactivity.
3519 if (lp
&& ktime_exp(lp
->tags_stime
)) {
3520 if (lp
->tags_smap
) {
3521 order
= M_ORDERED_TAG
;
3522 if ((DEBUG_FLAGS
& DEBUG_TAGS
)||bootverbose
>2){
3524 "ordered tag forced.\n");
3527 lp
->tags_stime
= ktime_get(3*HZ
);
3528 lp
->tags_smap
= lp
->tags_umap
;
3533 ** Ordered write ops, unordered read ops.
3535 switch (cmd
->cmnd
[0]) {
3536 case 0x08: /* READ_SMALL (6) */
3537 case 0x28: /* READ_BIG (10) */
3538 case 0xa8: /* READ_HUGE (12) */
3539 order
= M_SIMPLE_TAG
;
3542 order
= M_ORDERED_TAG
;
3545 msgptr
[msglen
++] = order
;
3547 ** Actual tags are numbered 1,3,5,..2*MAXTAGS+1,
3548 ** since we may have to deal with devices that have
3549 ** problems with #TAG 0 or too great #TAG numbers.
3551 msgptr
[msglen
++] = (cp
->tag
<< 1) + 1;
3554 /*----------------------------------------------------
3556 ** Build the data descriptors
3558 **----------------------------------------------------
3561 direction
= cmd
->sc_data_direction
;
3562 if (direction
!= DMA_NONE
) {
3563 segments
= ncr_scatter(np
, cp
, cp
->cmd
);
3565 ncr_free_ccb(np
, cp
);
3574 /*---------------------------------------------------
3576 ** negotiation required?
3578 ** (nego_status is filled by ncr_prepare_nego())
3580 **---------------------------------------------------
3583 cp
->nego_status
= 0;
3585 if ((!tp
->widedone
|| !tp
->period
) && !tp
->nego_cp
&& lp
) {
3586 msglen
+= ncr_prepare_nego (np
, cp
, msgptr
+ msglen
);
3589 /*----------------------------------------------------
3591 ** Determine xfer direction.
3593 **----------------------------------------------------
3596 direction
= DMA_NONE
;
3599 ** If data direction is BIDIRECTIONAL, speculate FROM_DEVICE
3600 ** but prepare alternate pointers for TO_DEVICE in case
3601 ** of our speculation will be just wrong.
3602 ** SCRIPTS will swap values if needed.
3605 case DMA_BIDIRECTIONAL
:
3607 goalp
= NCB_SCRIPT_PHYS (np
, data_out2
) + 8;
3608 if (segments
<= MAX_SCATTERL
)
3609 lastp
= goalp
- 8 - (segments
* 16);
3611 lastp
= NCB_SCRIPTH_PHYS (np
, hdata_out2
);
3612 lastp
-= (segments
- MAX_SCATTERL
) * 16;
3614 if (direction
!= DMA_BIDIRECTIONAL
)
3616 cp
->phys
.header
.wgoalp
= cpu_to_scr(goalp
);
3617 cp
->phys
.header
.wlastp
= cpu_to_scr(lastp
);
3619 case DMA_FROM_DEVICE
:
3620 goalp
= NCB_SCRIPT_PHYS (np
, data_in2
) + 8;
3621 if (segments
<= MAX_SCATTERL
)
3622 lastp
= goalp
- 8 - (segments
* 16);
3624 lastp
= NCB_SCRIPTH_PHYS (np
, hdata_in2
);
3625 lastp
-= (segments
- MAX_SCATTERL
) * 16;
3630 lastp
= goalp
= NCB_SCRIPT_PHYS (np
, no_data
);
3635 ** Set all pointers values needed by SCRIPTS.
3636 ** If direction is unknown, start at data_io.
3638 cp
->phys
.header
.lastp
= cpu_to_scr(lastp
);
3639 cp
->phys
.header
.goalp
= cpu_to_scr(goalp
);
3641 if (direction
== DMA_BIDIRECTIONAL
)
3642 cp
->phys
.header
.savep
=
3643 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, data_io
));
3645 cp
->phys
.header
.savep
= cpu_to_scr(lastp
);
3648 ** Save the initial data pointer in order to be able
3649 ** to redo the command.
3651 cp
->startp
= cp
->phys
.header
.savep
;
3653 /*----------------------------------------------------
3657 **----------------------------------------------------
3660 ** physical -> virtual backlink
3661 ** Generic SCSI command
3667 cp
->start
.schedule
.l_paddr
= cpu_to_scr(NCB_SCRIPT_PHYS (np
, select
));
3668 cp
->restart
.schedule
.l_paddr
= cpu_to_scr(NCB_SCRIPT_PHYS (np
, resel_dsa
));
3672 cp
->phys
.select
.sel_id
= sdev
->id
;
3673 cp
->phys
.select
.sel_scntl3
= tp
->wval
;
3674 cp
->phys
.select
.sel_sxfer
= tp
->sval
;
3678 cp
->phys
.smsg
.addr
= cpu_to_scr(CCB_PHYS (cp
, scsi_smsg
));
3679 cp
->phys
.smsg
.size
= cpu_to_scr(msglen
);
3684 memcpy(cp
->cdb_buf
, cmd
->cmnd
, min_t(int, cmd
->cmd_len
, sizeof(cp
->cdb_buf
)));
3685 cp
->phys
.cmd
.addr
= cpu_to_scr(CCB_PHYS (cp
, cdb_buf
[0]));
3686 cp
->phys
.cmd
.size
= cpu_to_scr(cmd
->cmd_len
);
3691 cp
->actualquirks
= 0;
3692 cp
->host_status
= cp
->nego_status
? HS_NEGOTIATE
: HS_BUSY
;
3693 cp
->scsi_status
= S_ILLEGAL
;
3694 cp
->parity_status
= 0;
3696 cp
->xerr_status
= XE_OK
;
3698 cp
->sync_status
= tp
->sval
;
3699 cp
->wide_status
= tp
->wval
;
3702 /*----------------------------------------------------
3704 ** Critical region: start this job.
3706 **----------------------------------------------------
3709 /* activate this job. */
3710 cp
->magic
= CCB_MAGIC
;
3713 ** insert next CCBs into start queue.
3714 ** 2 max at a time is enough to flush the CCB wait queue.
3718 ncr_start_next_ccb(np
, lp
, 2);
3720 ncr_put_start_queue(np
, cp
);
3722 /* Command is successfully queued. */
3728 /*==========================================================
3731 ** Insert a CCB into the start queue and wake up the
3732 ** SCRIPTS processor.
3735 **==========================================================
3738 static void ncr_start_next_ccb(struct ncb
*np
, struct lcb
*lp
, int maxn
)
3740 struct list_head
*qp
;
3746 while (maxn
-- && lp
->queuedccbs
< lp
->queuedepth
) {
3747 qp
= ncr_list_pop(&lp
->wait_ccbq
);
3751 cp
= list_entry(qp
, struct ccb
, link_ccbq
);
3752 list_add_tail(qp
, &lp
->busy_ccbq
);
3753 lp
->jump_ccb
[cp
->tag
== NO_TAG
? 0 : cp
->tag
] =
3754 cpu_to_scr(CCB_PHYS (cp
, restart
));
3755 ncr_put_start_queue(np
, cp
);
3759 static void ncr_put_start_queue(struct ncb
*np
, struct ccb
*cp
)
3764 ** insert into start queue.
3766 if (!np
->squeueput
) np
->squeueput
= 1;
3767 qidx
= np
->squeueput
+ 2;
3768 if (qidx
>= MAX_START
+ MAX_START
) qidx
= 1;
3770 np
->scripth
->tryloop
[qidx
] = cpu_to_scr(NCB_SCRIPT_PHYS (np
, idle
));
3772 np
->scripth
->tryloop
[np
->squeueput
] = cpu_to_scr(CCB_PHYS (cp
, start
));
3774 np
->squeueput
= qidx
;
3778 if (DEBUG_FLAGS
& DEBUG_QUEUE
)
3779 printk ("%s: queuepos=%d.\n", ncr_name (np
), np
->squeueput
);
3782 ** Script processor may be waiting for reselect.
3786 OUTB (nc_istat
, SIGP
);
3790 static int ncr_reset_scsi_bus(struct ncb
*np
, int enab_int
, int settle_delay
)
3795 np
->settle_time
= ktime_get(settle_delay
* HZ
);
3797 if (bootverbose
> 1)
3798 printk("%s: resetting, "
3799 "command processing suspended for %d seconds\n",
3800 ncr_name(np
), settle_delay
);
3802 ncr_chip_reset(np
, 100);
3803 udelay(2000); /* The 895 needs time for the bus mode to settle */
3805 OUTW (nc_sien
, RST
);
3807 ** Enable Tolerant, reset IRQD if present and
3808 ** properly set IRQ mode, prior to resetting the bus.
3810 OUTB (nc_stest3
, TE
);
3811 OUTB (nc_scntl1
, CRST
);
3814 if (!driver_setup
.bus_check
)
3817 ** Check for no terminators or SCSI bus shorts to ground.
3818 ** Read SCSI data bus, data parity bits and control signals.
3819 ** We are expecting RESET to be TRUE and other signals to be
3823 term
= INB(nc_sstat0
);
3824 term
= ((term
& 2) << 7) + ((term
& 1) << 17); /* rst sdp0 */
3825 term
|= ((INB(nc_sstat2
) & 0x01) << 26) | /* sdp1 */
3826 ((INW(nc_sbdl
) & 0xff) << 9) | /* d7-0 */
3827 ((INW(nc_sbdl
) & 0xff00) << 10) | /* d15-8 */
3828 INB(nc_sbcl
); /* req ack bsy sel atn msg cd io */
3830 if (!(np
->features
& FE_WIDE
))
3833 if (term
!= (2<<7)) {
3834 printk("%s: suspicious SCSI data while resetting the BUS.\n",
3836 printk("%s: %sdp0,d7-0,rst,req,ack,bsy,sel,atn,msg,c/d,i/o = "
3837 "0x%lx, expecting 0x%lx\n",
3839 (np
->features
& FE_WIDE
) ? "dp1,d15-8," : "",
3840 (u_long
)term
, (u_long
)(2<<7));
3841 if (driver_setup
.bus_check
== 1)
3845 OUTB (nc_scntl1
, 0);
3850 * Start reset process.
3851 * If reset in progress do nothing.
3852 * The interrupt handler will reinitialize the chip.
3853 * The timeout handler will wait for settle_time before
3854 * clearing it and so resuming command processing.
3856 static void ncr_start_reset(struct ncb
*np
)
3858 if (!np
->settle_time
) {
3859 ncr_reset_scsi_bus(np
, 1, driver_setup
.settle_delay
);
3863 /*==========================================================
3866 ** Reset the SCSI BUS.
3867 ** This is called from the generic SCSI driver.
3870 **==========================================================
3872 static int ncr_reset_bus (struct ncb
*np
, struct scsi_cmnd
*cmd
, int sync_reset
)
3874 /* struct scsi_device *device = cmd->device; */
3879 * Return immediately if reset is in progress.
3881 if (np
->settle_time
) {
3885 * Start the reset process.
3886 * The script processor is then assumed to be stopped.
3887 * Commands will now be queued in the waiting list until a settle
3888 * delay of 2 seconds will be completed.
3890 ncr_start_reset(np
);
3892 * First, look in the wakeup list
3894 for (found
=0, cp
=np
->ccb
; cp
; cp
=cp
->link_ccb
) {
3896 ** look for the ccb of this command.
3898 if (cp
->host_status
== HS_IDLE
) continue;
3899 if (cp
->cmd
== cmd
) {
3905 * Then, look in the waiting list
3907 if (!found
&& retrieve_from_waiting_list(0, np
, cmd
))
3910 * Wake-up all awaiting commands with DID_RESET.
3912 reset_waiting_list(np
);
3914 * Wake-up all pending commands with HS_RESET -> DID_RESET.
3916 ncr_wakeup(np
, HS_RESET
);
3918 * If the involved command was not in a driver queue, and the
3919 * scsi driver told us reset is synchronous, and the command is not
3920 * currently in the waiting list, complete it with DID_RESET status,
3921 * in order to keep it alive.
3923 if (!found
&& sync_reset
&& !retrieve_from_waiting_list(0, np
, cmd
)) {
3924 cmd
->result
= ScsiResult(DID_RESET
, 0);
3925 ncr_queue_done_cmd(np
, cmd
);
3931 #if 0 /* unused and broken.. */
3932 /*==========================================================
3935 ** Abort an SCSI command.
3936 ** This is called from the generic SCSI driver.
3939 **==========================================================
3941 static int ncr_abort_command (struct ncb
*np
, struct scsi_cmnd
*cmd
)
3943 /* struct scsi_device *device = cmd->device; */
3949 * First, look for the scsi command in the waiting list
3951 if (remove_from_waiting_list(np
, cmd
)) {
3952 cmd
->result
= ScsiResult(DID_ABORT
, 0);
3953 ncr_queue_done_cmd(np
, cmd
);
3954 return SCSI_ABORT_SUCCESS
;
3958 * Then, look in the wakeup list
3960 for (found
=0, cp
=np
->ccb
; cp
; cp
=cp
->link_ccb
) {
3962 ** look for the ccb of this command.
3964 if (cp
->host_status
== HS_IDLE
) continue;
3965 if (cp
->cmd
== cmd
) {
3972 return SCSI_ABORT_NOT_RUNNING
;
3975 if (np
->settle_time
) {
3976 return SCSI_ABORT_SNOOZE
;
3980 ** If the CCB is active, patch schedule jumps for the
3981 ** script to abort the command.
3984 switch(cp
->host_status
) {
3987 printk ("%s: abort ccb=%p (cancel)\n", ncr_name (np
), cp
);
3988 cp
->start
.schedule
.l_paddr
=
3989 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, cancel
));
3990 retv
= SCSI_ABORT_PENDING
;
3993 cp
->restart
.schedule
.l_paddr
=
3994 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, abort
));
3995 retv
= SCSI_ABORT_PENDING
;
3998 retv
= SCSI_ABORT_NOT_RUNNING
;
4004 ** If there are no requests, the script
4005 ** processor will sleep on SEL_WAIT_RESEL.
4006 ** Let's wake it up, since it may have to work.
4008 OUTB (nc_istat
, SIGP
);
4014 static void ncr_detach(struct ncb
*np
)
4023 /* Local copy so we don't access np after freeing it! */
4024 strlcpy(inst_name
, ncr_name(np
), sizeof(inst_name
));
4026 printk("%s: releasing host resources\n", ncr_name(np
));
4029 ** Stop the ncr_timeout process
4030 ** Set release_stage to 1 and wait that ncr_timeout() set it to 2.
4033 #ifdef DEBUG_NCR53C8XX
4034 printk("%s: stopping the timer\n", ncr_name(np
));
4036 np
->release_stage
= 1;
4037 for (i
= 50 ; i
&& np
->release_stage
!= 2 ; i
--)
4039 if (np
->release_stage
!= 2)
4040 printk("%s: the timer seems to be already stopped\n", ncr_name(np
));
4041 else np
->release_stage
= 2;
4044 ** Disable chip interrupts
4047 #ifdef DEBUG_NCR53C8XX
4048 printk("%s: disabling chip interrupts\n", ncr_name(np
));
4055 ** Restore bios setting for automatic clock detection.
4058 printk("%s: resetting chip\n", ncr_name(np
));
4059 ncr_chip_reset(np
, 100);
4061 OUTB(nc_dmode
, np
->sv_dmode
);
4062 OUTB(nc_dcntl
, np
->sv_dcntl
);
4063 OUTB(nc_ctest0
, np
->sv_ctest0
);
4064 OUTB(nc_ctest3
, np
->sv_ctest3
);
4065 OUTB(nc_ctest4
, np
->sv_ctest4
);
4066 OUTB(nc_ctest5
, np
->sv_ctest5
);
4067 OUTB(nc_gpcntl
, np
->sv_gpcntl
);
4068 OUTB(nc_stest2
, np
->sv_stest2
);
4070 ncr_selectclock(np
, np
->sv_scntl3
);
4073 ** Free allocated ccb(s)
4076 while ((cp
=np
->ccb
->link_ccb
) != NULL
) {
4077 np
->ccb
->link_ccb
= cp
->link_ccb
;
4078 if (cp
->host_status
) {
4079 printk("%s: shall free an active ccb (host_status=%d)\n",
4080 ncr_name(np
), cp
->host_status
);
4082 #ifdef DEBUG_NCR53C8XX
4083 printk("%s: freeing ccb (%lx)\n", ncr_name(np
), (u_long
) cp
);
4085 m_free_dma(cp
, sizeof(*cp
), "CCB");
4088 /* Free allocated tp(s) */
4090 for (target
= 0; target
< MAX_TARGET
; target
++) {
4091 tp
=&np
->target
[target
];
4092 for (lun
= 0 ; lun
< MAX_LUN
; lun
++) {
4095 #ifdef DEBUG_NCR53C8XX
4096 printk("%s: freeing lp (%lx)\n", ncr_name(np
), (u_long
) lp
);
4098 if (lp
->jump_ccb
!= &lp
->jump_ccb_0
)
4099 m_free_dma(lp
->jump_ccb
,256,"JUMP_CCB");
4100 m_free_dma(lp
, sizeof(*lp
), "LCB");
4106 m_free_dma(np
->scripth0
, sizeof(struct scripth
), "SCRIPTH");
4108 m_free_dma(np
->script0
, sizeof(struct script
), "SCRIPT");
4110 m_free_dma(np
->ccb
, sizeof(struct ccb
), "CCB");
4111 m_free_dma(np
, sizeof(struct ncb
), "NCB");
4113 printk("%s: host resources successfully released\n", inst_name
);
4116 /*==========================================================
4119 ** Complete execution of a SCSI command.
4120 ** Signal completion to the generic SCSI driver.
4123 **==========================================================
4126 void ncr_complete (struct ncb
*np
, struct ccb
*cp
)
4128 struct scsi_cmnd
*cmd
;
4136 if (!cp
|| cp
->magic
!= CCB_MAGIC
|| !cp
->cmd
)
4140 ** Print minimal debug information.
4143 if (DEBUG_FLAGS
& DEBUG_TINY
)
4144 printk ("CCB=%lx STAT=%x/%x\n", (unsigned long)cp
,
4145 cp
->host_status
,cp
->scsi_status
);
4148 ** Get command, target and lun pointers.
4153 tp
= &np
->target
[cmd
->device
->id
];
4154 lp
= tp
->lp
[cmd
->device
->lun
];
4157 ** We donnot queue more than 1 ccb per target
4158 ** with negotiation at any time. If this ccb was
4159 ** used for negotiation, clear this info in the tcb.
4162 if (cp
== tp
->nego_cp
)
4166 ** If auto-sense performed, change scsi status.
4168 if (cp
->auto_sense
) {
4169 cp
->scsi_status
= cp
->auto_sense
;
4173 ** If we were recovering from queue full or performing
4174 ** auto-sense, requeue skipped CCBs to the wait queue.
4177 if (lp
&& lp
->held_ccb
) {
4178 if (cp
== lp
->held_ccb
) {
4179 list_splice_init(&lp
->skip_ccbq
, &lp
->wait_ccbq
);
4180 lp
->held_ccb
= NULL
;
4185 ** Check for parity errors.
4188 if (cp
->parity_status
> 1) {
4189 PRINT_ADDR(cmd
, "%d parity error(s).\n",cp
->parity_status
);
4193 ** Check for extended errors.
4196 if (cp
->xerr_status
!= XE_OK
) {
4197 switch (cp
->xerr_status
) {
4199 PRINT_ADDR(cmd
, "extraneous data discarded.\n");
4202 PRINT_ADDR(cmd
, "invalid scsi phase (4/5).\n");
4205 PRINT_ADDR(cmd
, "extended error %d.\n",
4209 if (cp
->host_status
==HS_COMPLETE
)
4210 cp
->host_status
= HS_FAIL
;
4214 ** Print out any error for debugging purpose.
4216 if (DEBUG_FLAGS
& (DEBUG_RESULT
|DEBUG_TINY
)) {
4217 if (cp
->host_status
!=HS_COMPLETE
|| cp
->scsi_status
!=S_GOOD
) {
4218 PRINT_ADDR(cmd
, "ERROR: cmd=%x host_status=%x "
4219 "scsi_status=%x\n", cmd
->cmnd
[0],
4220 cp
->host_status
, cp
->scsi_status
);
4225 ** Check the status.
4227 if ( (cp
->host_status
== HS_COMPLETE
)
4228 && (cp
->scsi_status
== S_GOOD
||
4229 cp
->scsi_status
== S_COND_MET
)) {
4231 * All went well (GOOD status).
4232 * CONDITION MET status is returned on
4233 * `Pre-Fetch' or `Search data' success.
4235 cmd
->result
= ScsiResult(DID_OK
, cp
->scsi_status
);
4239 ** Could dig out the correct value for resid,
4240 ** but it would be quite complicated.
4242 /* if (cp->phys.header.lastp != cp->phys.header.goalp) */
4245 ** Allocate the lcb if not yet.
4248 ncr_alloc_lcb (np
, cmd
->device
->id
, cmd
->device
->lun
);
4250 tp
->bytes
+= cp
->data_len
;
4254 ** If tags was reduced due to queue full,
4255 ** increase tags if 1000 good status received.
4257 if (lp
&& lp
->usetags
&& lp
->numtags
< lp
->maxtags
) {
4259 if (lp
->num_good
>= 1000) {
4262 ncr_setup_tags (np
, cmd
->device
);
4265 } else if ((cp
->host_status
== HS_COMPLETE
)
4266 && (cp
->scsi_status
== S_CHECK_COND
)) {
4268 ** Check condition code
4270 cmd
->result
= ScsiResult(DID_OK
, S_CHECK_COND
);
4273 ** Copy back sense data to caller's buffer.
4275 memcpy(cmd
->sense_buffer
, cp
->sense_buf
,
4276 min(sizeof(cmd
->sense_buffer
), sizeof(cp
->sense_buf
)));
4278 if (DEBUG_FLAGS
& (DEBUG_RESULT
|DEBUG_TINY
)) {
4279 u_char
* p
= (u_char
*) & cmd
->sense_buffer
;
4281 PRINT_ADDR(cmd
, "sense data:");
4282 for (i
=0; i
<14; i
++) printk (" %x", *p
++);
4285 } else if ((cp
->host_status
== HS_COMPLETE
)
4286 && (cp
->scsi_status
== S_CONFLICT
)) {
4288 ** Reservation Conflict condition code
4290 cmd
->result
= ScsiResult(DID_OK
, S_CONFLICT
);
4292 } else if ((cp
->host_status
== HS_COMPLETE
)
4293 && (cp
->scsi_status
== S_BUSY
||
4294 cp
->scsi_status
== S_QUEUE_FULL
)) {
4299 cmd
->result
= ScsiResult(DID_OK
, cp
->scsi_status
);
4301 } else if ((cp
->host_status
== HS_SEL_TIMEOUT
)
4302 || (cp
->host_status
== HS_TIMEOUT
)) {
4307 cmd
->result
= ScsiResult(DID_TIME_OUT
, cp
->scsi_status
);
4309 } else if (cp
->host_status
== HS_RESET
) {
4314 cmd
->result
= ScsiResult(DID_RESET
, cp
->scsi_status
);
4316 } else if (cp
->host_status
== HS_ABORTED
) {
4321 cmd
->result
= ScsiResult(DID_ABORT
, cp
->scsi_status
);
4326 ** Other protocol messes
4328 PRINT_ADDR(cmd
, "COMMAND FAILED (%x %x) @%p.\n",
4329 cp
->host_status
, cp
->scsi_status
, cp
);
4331 cmd
->result
= ScsiResult(DID_ERROR
, cp
->scsi_status
);
4338 if (tp
->usrflag
& UF_TRACE
) {
4341 PRINT_ADDR(cmd
, " CMD:");
4342 p
= (u_char
*) &cmd
->cmnd
[0];
4343 for (i
=0; i
<cmd
->cmd_len
; i
++) printk (" %x", *p
++);
4345 if (cp
->host_status
==HS_COMPLETE
) {
4346 switch (cp
->scsi_status
) {
4352 p
= (u_char
*) &cmd
->sense_buffer
;
4353 for (i
=0; i
<14; i
++)
4354 printk (" %x", *p
++);
4357 printk (" STAT: %x\n", cp
->scsi_status
);
4360 } else printk (" HOSTERROR: %x", cp
->host_status
);
4367 ncr_free_ccb (np
, cp
);
4370 ** requeue awaiting scsi commands for this lun.
4372 if (lp
&& lp
->queuedccbs
< lp
->queuedepth
&&
4373 !list_empty(&lp
->wait_ccbq
))
4374 ncr_start_next_ccb(np
, lp
, 2);
4377 ** requeue awaiting scsi commands for this controller.
4379 if (np
->waiting_list
)
4380 requeue_waiting_list(np
);
4383 ** signal completion to generic driver.
4385 ncr_queue_done_cmd(np
, cmd
);
4388 /*==========================================================
4391 ** Signal all (or one) control block done.
4394 **==========================================================
4398 ** This CCB has been skipped by the NCR.
4399 ** Queue it in the correponding unit queue.
4401 static void ncr_ccb_skipped(struct ncb
*np
, struct ccb
*cp
)
4403 struct tcb
*tp
= &np
->target
[cp
->target
];
4404 struct lcb
*lp
= tp
->lp
[cp
->lun
];
4406 if (lp
&& cp
!= np
->ccb
) {
4407 cp
->host_status
&= ~HS_SKIPMASK
;
4408 cp
->start
.schedule
.l_paddr
=
4409 cpu_to_scr(NCB_SCRIPT_PHYS (np
, select
));
4410 list_del(&cp
->link_ccbq
);
4411 list_add_tail(&cp
->link_ccbq
, &lp
->skip_ccbq
);
4423 ** The NCR has completed CCBs.
4424 ** Look at the DONE QUEUE if enabled, otherwise scan all CCBs
4426 void ncr_wakeup_done (struct ncb
*np
)
4429 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
4432 i
= np
->ccb_done_ic
;
4438 cp
= np
->ccb_done
[j
];
4439 if (!CCB_DONE_VALID(cp
))
4442 np
->ccb_done
[j
] = (struct ccb
*)CCB_DONE_EMPTY
;
4443 np
->scripth
->done_queue
[5*j
+ 4] =
4444 cpu_to_scr(NCB_SCRIPT_PHYS (np
, done_plug
));
4446 np
->scripth
->done_queue
[5*i
+ 4] =
4447 cpu_to_scr(NCB_SCRIPT_PHYS (np
, done_end
));
4449 if (cp
->host_status
& HS_DONEMASK
)
4450 ncr_complete (np
, cp
);
4451 else if (cp
->host_status
& HS_SKIPMASK
)
4452 ncr_ccb_skipped (np
, cp
);
4456 np
->ccb_done_ic
= i
;
4460 if (cp
->host_status
& HS_DONEMASK
)
4461 ncr_complete (np
, cp
);
4462 else if (cp
->host_status
& HS_SKIPMASK
)
4463 ncr_ccb_skipped (np
, cp
);
4470 ** Complete all active CCBs.
4472 void ncr_wakeup (struct ncb
*np
, u_long code
)
4474 struct ccb
*cp
= np
->ccb
;
4477 if (cp
->host_status
!= HS_IDLE
) {
4478 cp
->host_status
= code
;
4479 ncr_complete (np
, cp
);
4489 /* Some initialisation must be done immediately following reset, for 53c720,
4490 * at least. EA (dcntl bit 5) isn't set here as it is set once only in
4491 * the _detect function.
4493 static void ncr_chip_reset(struct ncb
*np
, int delay
)
4495 OUTB (nc_istat
, SRST
);
4497 OUTB (nc_istat
, 0 );
4499 if (np
->features
& FE_EHP
)
4500 OUTB (nc_ctest0
, EHP
);
4501 if (np
->features
& FE_MUX
)
4502 OUTB (nc_ctest4
, MUX
);
4506 /*==========================================================
4512 **==========================================================
4515 void ncr_init (struct ncb
*np
, int reset
, char * msg
, u_long code
)
4520 ** Reset chip if asked, otherwise just clear fifos.
4524 OUTB (nc_istat
, SRST
);
4528 OUTB (nc_stest3
, TE
|CSF
);
4529 OUTONB (nc_ctest3
, CLF
);
4536 if (msg
) printk (KERN_INFO
"%s: restart (%s).\n", ncr_name (np
), msg
);
4539 ** Clear Start Queue
4541 np
->queuedepth
= MAX_START
- 1; /* 1 entry needed as end marker */
4542 for (i
= 1; i
< MAX_START
+ MAX_START
; i
+= 2)
4543 np
->scripth0
->tryloop
[i
] =
4544 cpu_to_scr(NCB_SCRIPT_PHYS (np
, idle
));
4547 ** Start at first entry.
4550 np
->script0
->startpos
[0] = cpu_to_scr(NCB_SCRIPTH_PHYS (np
, tryloop
));
4552 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
4556 for (i
= 0; i
< MAX_DONE
; i
++) {
4557 np
->ccb_done
[i
] = (struct ccb
*)CCB_DONE_EMPTY
;
4558 np
->scripth0
->done_queue
[5*i
+ 4] =
4559 cpu_to_scr(NCB_SCRIPT_PHYS (np
, done_end
));
4564 ** Start at first entry.
4566 np
->script0
->done_pos
[0] = cpu_to_scr(NCB_SCRIPTH_PHYS (np
,done_queue
));
4567 np
->ccb_done_ic
= MAX_DONE
-1;
4568 np
->scripth0
->done_queue
[5*(MAX_DONE
-1) + 4] =
4569 cpu_to_scr(NCB_SCRIPT_PHYS (np
, done_plug
));
4572 ** Wakeup all pending jobs.
4574 ncr_wakeup (np
, code
);
4581 ** Remove reset; big delay because the 895 needs time for the
4582 ** bus mode to settle
4584 ncr_chip_reset(np
, 2000);
4586 OUTB (nc_scntl0
, np
->rv_scntl0
| 0xc0);
4587 /* full arb., ena parity, par->ATN */
4588 OUTB (nc_scntl1
, 0x00); /* odd parity, and remove CRST!! */
4590 ncr_selectclock(np
, np
->rv_scntl3
); /* Select SCSI clock */
4592 OUTB (nc_scid
, RRE
|np
->myaddr
); /* Adapter SCSI address */
4593 OUTW (nc_respid
, 1ul<<np
->myaddr
); /* Id to respond to */
4594 OUTB (nc_istat
, SIGP
); /* Signal Process */
4595 OUTB (nc_dmode
, np
->rv_dmode
); /* Burst length, dma mode */
4596 OUTB (nc_ctest5
, np
->rv_ctest5
); /* Large fifo + large burst */
4598 OUTB (nc_dcntl
, NOCOM
|np
->rv_dcntl
); /* Protect SFBR */
4599 OUTB (nc_ctest0
, np
->rv_ctest0
); /* 720: CDIS and EHP */
4600 OUTB (nc_ctest3
, np
->rv_ctest3
); /* Write and invalidate */
4601 OUTB (nc_ctest4
, np
->rv_ctest4
); /* Master parity checking */
4603 OUTB (nc_stest2
, EXT
|np
->rv_stest2
); /* Extended Sreq/Sack filtering */
4604 OUTB (nc_stest3
, TE
); /* TolerANT enable */
4605 OUTB (nc_stime0
, 0x0c ); /* HTH disabled STO 0.25 sec */
4608 ** Disable disconnects.
4614 ** Enable GPIO0 pin for writing if LED support.
4617 if (np
->features
& FE_LED0
) {
4618 OUTOFFB (nc_gpcntl
, 0x01);
4625 OUTW (nc_sien
, STO
|HTH
|MA
|SGE
|UDC
|RST
|PAR
);
4626 OUTB (nc_dien
, MDPE
|BF
|ABRT
|SSI
|SIR
|IID
);
4629 ** Fill in target structure.
4630 ** Reinitialize usrsync.
4631 ** Reinitialize usrwide.
4632 ** Prepare sync negotiation according to actual SCSI bus mode.
4635 for (i
=0;i
<MAX_TARGET
;i
++) {
4636 struct tcb
*tp
= &np
->target
[i
];
4639 tp
->wval
= np
->rv_scntl3
;
4641 if (tp
->usrsync
!= 255) {
4642 if (tp
->usrsync
<= np
->maxsync
) {
4643 if (tp
->usrsync
< np
->minsync
) {
4644 tp
->usrsync
= np
->minsync
;
4651 if (tp
->usrwide
> np
->maxwide
)
4652 tp
->usrwide
= np
->maxwide
;
4657 ** Start script processor.
4661 printk ("%s: Downloading SCSI SCRIPTS.\n",
4663 OUTL (nc_scratcha
, vtobus(np
->script0
));
4664 OUTL_DSP (NCB_SCRIPTH_PHYS (np
, start_ram
));
4667 OUTL_DSP (NCB_SCRIPT_PHYS (np
, start
));
4670 /*==========================================================
4672 ** Prepare the negotiation values for wide and
4673 ** synchronous transfers.
4675 **==========================================================
4678 static void ncr_negotiate (struct ncb
* np
, struct tcb
* tp
)
4681 ** minsync unit is 4ns !
4684 u_long minsync
= tp
->usrsync
;
4687 ** SCSI bus mode limit
4690 if (np
->scsi_mode
&& np
->scsi_mode
== SMODE_SE
) {
4691 if (minsync
< 12) minsync
= 12;
4698 if (minsync
< np
->minsync
)
4699 minsync
= np
->minsync
;
4705 if (minsync
> np
->maxsync
)
4708 if (tp
->maxoffs
> np
->maxoffs
)
4709 tp
->maxoffs
= np
->maxoffs
;
4711 tp
->minsync
= minsync
;
4712 tp
->maxoffs
= (minsync
<255 ? tp
->maxoffs
: 0);
4715 ** period=0: has to negotiate sync transfer
4721 ** widedone=0: has to negotiate wide transfer
4726 /*==========================================================
4728 ** Get clock factor and sync divisor for a given
4729 ** synchronous factor period.
4730 ** Returns the clock factor (in sxfer) and scntl3
4731 ** synchronous divisor field.
4733 **==========================================================
4736 static void ncr_getsync(struct ncb
*np
, u_char sfac
, u_char
*fakp
, u_char
*scntl3p
)
4738 u_long clk
= np
->clock_khz
; /* SCSI clock frequency in kHz */
4739 int div
= np
->clock_divn
; /* Number of divisors supported */
4740 u_long fak
; /* Sync factor in sxfer */
4741 u_long per
; /* Period in tenths of ns */
4742 u_long kpc
; /* (per * clk) */
4745 ** Compute the synchronous period in tenths of nano-seconds
4747 if (sfac
<= 10) per
= 250;
4748 else if (sfac
== 11) per
= 303;
4749 else if (sfac
== 12) per
= 500;
4750 else per
= 40 * sfac
;
4753 ** Look for the greatest clock divisor that allows an
4754 ** input speed faster than the period.
4758 if (kpc
>= (div_10M
[div
] << 2)) break;
4761 ** Calculate the lowest clock factor that allows an output
4762 ** speed not faster than the period.
4764 fak
= (kpc
- 1) / div_10M
[div
] + 1;
4766 #if 0 /* This optimization does not seem very useful */
4768 per
= (fak
* div_10M
[div
]) / clk
;
4771 ** Why not to try the immediate lower divisor and to choose
4772 ** the one that allows the fastest output speed ?
4773 ** We don't want input speed too much greater than output speed.
4775 if (div
>= 1 && fak
< 8) {
4777 fak2
= (kpc
- 1) / div_10M
[div
-1] + 1;
4778 per2
= (fak2
* div_10M
[div
-1]) / clk
;
4779 if (per2
< per
&& fak2
<= 8) {
4787 if (fak
< 4) fak
= 4; /* Should never happen, too bad ... */
4790 ** Compute and return sync parameters for the ncr
4793 *scntl3p
= ((div
+1) << 4) + (sfac
< 25 ? 0x80 : 0);
4797 /*==========================================================
4799 ** Set actual values, sync status and patch all ccbs of
4800 ** a target according to new sync/wide agreement.
4802 **==========================================================
4805 static void ncr_set_sync_wide_status (struct ncb
*np
, u_char target
)
4808 struct tcb
*tp
= &np
->target
[target
];
4811 ** set actual value and sync_status
4813 OUTB (nc_sxfer
, tp
->sval
);
4814 np
->sync_st
= tp
->sval
;
4815 OUTB (nc_scntl3
, tp
->wval
);
4816 np
->wide_st
= tp
->wval
;
4819 ** patch ALL ccbs of this target.
4821 for (cp
= np
->ccb
; cp
; cp
= cp
->link_ccb
) {
4822 if (!cp
->cmd
) continue;
4823 if (cp
->cmd
->device
->id
!= target
) continue;
4825 cp
->sync_status
= tp
->sval
;
4826 cp
->wide_status
= tp
->wval
;
4828 cp
->phys
.select
.sel_scntl3
= tp
->wval
;
4829 cp
->phys
.select
.sel_sxfer
= tp
->sval
;
4833 /*==========================================================
4835 ** Switch sync mode for current job and it's target
4837 **==========================================================
4840 static void ncr_setsync (struct ncb
*np
, struct ccb
*cp
, u_char scntl3
, u_char sxfer
)
4842 struct scsi_cmnd
*cmd
= cp
->cmd
;
4844 u_char target
= INB (nc_sdid
) & 0x0f;
4847 BUG_ON(target
!= (cmd
->device
->id
& 0xf));
4849 tp
= &np
->target
[target
];
4851 if (!scntl3
|| !(sxfer
& 0x1f))
4852 scntl3
= np
->rv_scntl3
;
4853 scntl3
= (scntl3
& 0xf0) | (tp
->wval
& EWS
) | (np
->rv_scntl3
& 0x07);
4856 ** Deduce the value of controller sync period from scntl3.
4857 ** period is in tenths of nano-seconds.
4860 idiv
= ((scntl3
>> 4) & 0x7);
4861 if ((sxfer
& 0x1f) && idiv
)
4862 tp
->period
= (((sxfer
>>5)+4)*div_10M
[idiv
-1])/np
->clock_khz
;
4864 tp
->period
= 0xffff;
4866 /* Stop there if sync parameters are unchanged */
4867 if (tp
->sval
== sxfer
&& tp
->wval
== scntl3
)
4872 if (sxfer
& 0x01f) {
4873 /* Disable extended Sreq/Sack filtering */
4874 if (tp
->period
<= 2000)
4875 OUTOFFB(nc_stest2
, EXT
);
4878 spi_display_xfer_agreement(tp
->starget
);
4881 ** set actual value and sync_status
4882 ** patch ALL ccbs of this target.
4884 ncr_set_sync_wide_status(np
, target
);
4887 /*==========================================================
4889 ** Switch wide mode for current job and it's target
4890 ** SCSI specs say: a SCSI device that accepts a WDTR
4891 ** message shall reset the synchronous agreement to
4892 ** asynchronous mode.
4894 **==========================================================
4897 static void ncr_setwide (struct ncb
*np
, struct ccb
*cp
, u_char wide
, u_char ack
)
4899 struct scsi_cmnd
*cmd
= cp
->cmd
;
4900 u16 target
= INB (nc_sdid
) & 0x0f;
4905 BUG_ON(target
!= (cmd
->device
->id
& 0xf));
4907 tp
= &np
->target
[target
];
4908 tp
->widedone
= wide
+1;
4909 scntl3
= (tp
->wval
& (~EWS
)) | (wide
? EWS
: 0);
4911 sxfer
= ack
? 0 : tp
->sval
;
4914 ** Stop there if sync/wide parameters are unchanged
4916 if (tp
->sval
== sxfer
&& tp
->wval
== scntl3
) return;
4921 ** Bells and whistles ;-)
4923 if (bootverbose
>= 2) {
4924 dev_info(&cmd
->device
->sdev_target
->dev
, "WIDE SCSI %sabled.\n",
4925 (scntl3
& EWS
) ? "en" : "dis");
4929 ** set actual value and sync_status
4930 ** patch ALL ccbs of this target.
4932 ncr_set_sync_wide_status(np
, target
);
4935 /*==========================================================
4937 ** Switch tagged mode for a target.
4939 **==========================================================
4942 static void ncr_setup_tags (struct ncb
*np
, struct scsi_device
*sdev
)
4944 unsigned char tn
= sdev
->id
, ln
= sdev
->lun
;
4945 struct tcb
*tp
= &np
->target
[tn
];
4946 struct lcb
*lp
= tp
->lp
[ln
];
4947 u_char reqtags
, maxdepth
;
4952 if ((!tp
) || (!lp
) || !sdev
)
4956 ** If SCSI device queue depth is not yet set, leave here.
4958 if (!lp
->scdev_depth
)
4962 ** Donnot allow more tags than the SCSI driver can queue
4964 ** Donnot allow more tags than we can handle.
4966 maxdepth
= lp
->scdev_depth
;
4967 if (maxdepth
> lp
->maxnxs
) maxdepth
= lp
->maxnxs
;
4968 if (lp
->maxtags
> maxdepth
) lp
->maxtags
= maxdepth
;
4969 if (lp
->numtags
> maxdepth
) lp
->numtags
= maxdepth
;
4972 ** only devices conformant to ANSI Version >= 2
4973 ** only devices capable of tagged commands
4974 ** only if enabled by user ..
4976 if (sdev
->tagged_supported
&& lp
->numtags
> 1) {
4977 reqtags
= lp
->numtags
;
4983 ** Update max number of tags
4985 lp
->numtags
= reqtags
;
4986 if (lp
->numtags
> lp
->maxtags
)
4987 lp
->maxtags
= lp
->numtags
;
4990 ** If we want to switch tag mode, we must wait
4991 ** for no CCB to be active.
4993 if (reqtags
> 1 && lp
->usetags
) { /* Stay in tagged mode */
4994 if (lp
->queuedepth
== reqtags
) /* Already announced */
4996 lp
->queuedepth
= reqtags
;
4998 else if (reqtags
<= 1 && !lp
->usetags
) { /* Stay in untagged mode */
4999 lp
->queuedepth
= reqtags
;
5002 else { /* Want to switch tag mode */
5003 if (lp
->busyccbs
) /* If not yet safe, return */
5005 lp
->queuedepth
= reqtags
;
5006 lp
->usetags
= reqtags
> 1 ? 1 : 0;
5010 ** Patch the lun mini-script, according to tag mode.
5012 lp
->jump_tag
.l_paddr
= lp
->usetags
?
5013 cpu_to_scr(NCB_SCRIPT_PHYS(np
, resel_tag
)) :
5014 cpu_to_scr(NCB_SCRIPT_PHYS(np
, resel_notag
));
5017 ** Announce change to user.
5021 dev_info(&sdev
->sdev_gendev
,
5022 "tagged command queue depth set to %d\n",
5025 dev_info(&sdev
->sdev_gendev
,
5026 "tagged command queueing disabled\n");
5031 /*==========================================================
5034 ** ncr timeout handler.
5037 **==========================================================
5039 ** Misused to keep the driver running when
5040 ** interrupts are not configured correctly.
5042 **----------------------------------------------------------
5045 static void ncr_timeout (struct ncb
*np
)
5047 u_long thistime
= ktime_get(0);
5050 ** If release process in progress, let's go
5051 ** Set the release stage from 1 to 2 to synchronize
5052 ** with the release process.
5055 if (np
->release_stage
) {
5056 if (np
->release_stage
== 1) np
->release_stage
= 2;
5060 np
->timer
.expires
= ktime_get(SCSI_NCR_TIMER_INTERVAL
);
5061 add_timer(&np
->timer
);
5064 ** If we are resetting the ncr, wait for settle_time before
5065 ** clearing it. Then command processing will be resumed.
5067 if (np
->settle_time
) {
5068 if (np
->settle_time
<= thistime
) {
5069 if (bootverbose
> 1)
5070 printk("%s: command processing resumed\n", ncr_name(np
));
5071 np
->settle_time
= 0;
5073 requeue_waiting_list(np
);
5079 ** Since the generic scsi driver only allows us 0.5 second
5080 ** to perform abort of a command, we must look at ccbs about
5081 ** every 0.25 second.
5083 if (np
->lasttime
+ 4*HZ
< thistime
) {
5085 ** block ncr interrupts
5087 np
->lasttime
= thistime
;
5090 #ifdef SCSI_NCR_BROKEN_INTR
5091 if (INB(nc_istat
) & (INTF
|SIP
|DIP
)) {
5094 ** Process pending interrupts.
5096 if (DEBUG_FLAGS
& DEBUG_TINY
) printk ("{");
5098 if (DEBUG_FLAGS
& DEBUG_TINY
) printk ("}");
5100 #endif /* SCSI_NCR_BROKEN_INTR */
5103 /*==========================================================
5105 ** log message for real hard errors
5107 ** "ncr0 targ 0?: ERROR (ds:si) (so-si-sd) (sxfer/scntl3) @ name (dsp:dbc)."
5108 ** " reg: r0 r1 r2 r3 r4 r5 r6 ..... rf."
5110 ** exception register:
5115 ** so: control lines as driver by NCR.
5116 ** si: control lines as seen by NCR.
5117 ** sd: scsi data lines as seen by NCR.
5120 ** sxfer: (see the manual)
5121 ** scntl3: (see the manual)
5123 ** current script command:
5124 ** dsp: script address (relative to start of script).
5125 ** dbc: first word of script command.
5127 ** First 16 register of the chip:
5130 **==========================================================
5133 static void ncr_log_hard_error(struct ncb
*np
, u16 sist
, u_char dstat
)
5139 u_char
*script_base
;
5144 if (dsp
> np
->p_script
&& dsp
<= np
->p_script
+ sizeof(struct script
)) {
5145 script_ofs
= dsp
- np
->p_script
;
5146 script_size
= sizeof(struct script
);
5147 script_base
= (u_char
*) np
->script0
;
5148 script_name
= "script";
5150 else if (np
->p_scripth
< dsp
&&
5151 dsp
<= np
->p_scripth
+ sizeof(struct scripth
)) {
5152 script_ofs
= dsp
- np
->p_scripth
;
5153 script_size
= sizeof(struct scripth
);
5154 script_base
= (u_char
*) np
->scripth0
;
5155 script_name
= "scripth";
5160 script_name
= "mem";
5163 printk ("%s:%d: ERROR (%x:%x) (%x-%x-%x) (%x/%x) @ (%s %x:%08x).\n",
5164 ncr_name (np
), (unsigned)INB (nc_sdid
)&0x0f, dstat
, sist
,
5165 (unsigned)INB (nc_socl
), (unsigned)INB (nc_sbcl
), (unsigned)INB (nc_sbdl
),
5166 (unsigned)INB (nc_sxfer
),(unsigned)INB (nc_scntl3
), script_name
, script_ofs
,
5167 (unsigned)INL (nc_dbc
));
5169 if (((script_ofs
& 3) == 0) &&
5170 (unsigned)script_ofs
< script_size
) {
5171 printk ("%s: script cmd = %08x\n", ncr_name(np
),
5172 scr_to_cpu((int) *(ncrcmd
*)(script_base
+ script_ofs
)));
5175 printk ("%s: regdump:", ncr_name(np
));
5177 printk (" %02x", (unsigned)INB_OFF(i
));
5181 /*============================================================
5183 ** ncr chip exception handler.
5185 **============================================================
5187 ** In normal cases, interrupt conditions occur one at a
5188 ** time. The ncr is able to stack in some extra registers
5189 ** other interrupts that will occurs after the first one.
5190 ** But severall interrupts may occur at the same time.
5192 ** We probably should only try to deal with the normal
5193 ** case, but it seems that multiple interrupts occur in
5194 ** some cases that are not abnormal at all.
5196 ** The most frequent interrupt condition is Phase Mismatch.
5197 ** We should want to service this interrupt quickly.
5198 ** A SCSI parity error may be delivered at the same time.
5199 ** The SIR interrupt is not very frequent in this driver,
5200 ** since the INTFLY is likely used for command completion
5202 ** The Selection Timeout interrupt may be triggered with
5204 ** The SBMC interrupt (SCSI Bus Mode Change) may probably
5205 ** occur at any time.
5207 ** This handler try to deal as cleverly as possible with all
5210 **============================================================
5213 void ncr_exception (struct ncb
*np
)
5215 u_char istat
, dstat
;
5220 ** interrupt on the fly ?
5221 ** Since the global header may be copied back to a CCB
5222 ** using a posted PCI memory write, the last operation on
5223 ** the istat register is a READ in order to flush posted
5224 ** PCI write commands.
5226 istat
= INB (nc_istat
);
5228 OUTB (nc_istat
, (istat
& SIGP
) | INTF
);
5229 istat
= INB (nc_istat
);
5230 if (DEBUG_FLAGS
& DEBUG_TINY
) printk ("F ");
5231 ncr_wakeup_done (np
);
5234 if (!(istat
& (SIP
|DIP
)))
5238 OUTB (nc_istat
, CABRT
);
5241 ** Steinbach's Guideline for Systems Programming:
5242 ** Never test for an error condition you don't know how to handle.
5245 sist
= (istat
& SIP
) ? INW (nc_sist
) : 0;
5246 dstat
= (istat
& DIP
) ? INB (nc_dstat
) : 0;
5248 if (DEBUG_FLAGS
& DEBUG_TINY
)
5249 printk ("<%d|%x:%x|%x:%x>",
5252 (unsigned)INL(nc_dsp
),
5253 (unsigned)INL(nc_dbc
));
5255 /*========================================================
5256 ** First, interrupts we want to service cleanly.
5258 ** Phase mismatch is the most frequent interrupt, and
5259 ** so we have to service it as quickly and as cleanly
5261 ** Programmed interrupts are rarely used in this driver,
5262 ** but we must handle them cleanly anyway.
5263 ** We try to deal with PAR and SBMC combined with
5264 ** some other interrupt(s).
5265 **=========================================================
5268 if (!(sist
& (STO
|GEN
|HTH
|SGE
|UDC
|RST
)) &&
5269 !(dstat
& (MDPE
|BF
|ABRT
|IID
))) {
5270 if ((sist
& SBMC
) && ncr_int_sbmc (np
))
5272 if ((sist
& PAR
) && ncr_int_par (np
))
5283 ** DEL 397 - 53C875 Rev 3 - Part Number 609-0392410 - ITEM 2.
5285 if (!(sist
& (SBMC
|PAR
)) && !(dstat
& SSI
)) {
5286 printk( "%s: unknown interrupt(s) ignored, "
5287 "ISTAT=%x DSTAT=%x SIST=%x\n",
5288 ncr_name(np
), istat
, dstat
, sist
);
5295 /*========================================================
5296 ** Now, interrupts that need some fixing up.
5297 ** Order and multiple interrupts is so less important.
5299 ** If SRST has been asserted, we just reset the chip.
5301 ** Selection is intirely handled by the chip. If the
5302 ** chip says STO, we trust it. Seems some other
5303 ** interrupts may occur at the same time (UDC, IID), so
5304 ** we ignore them. In any case we do enough fix-up
5305 ** in the service routine.
5306 ** We just exclude some fatal dma errors.
5307 **=========================================================
5311 ncr_init (np
, 1, bootverbose
? "scsi reset" : NULL
, HS_RESET
);
5316 !(dstat
& (MDPE
|BF
|ABRT
))) {
5318 ** DEL 397 - 53C875 Rev 3 - Part Number 609-0392410 - ITEM 1.
5320 OUTONB (nc_ctest3
, CLF
);
5326 /*=========================================================
5327 ** Now, interrupts we are not able to recover cleanly.
5328 ** (At least for the moment).
5330 ** Do the register dump.
5331 ** Log message for real hard errors.
5333 ** For MDPE, BF, ABORT, IID, SGE and HTH we reset the
5334 ** BUS and the chip.
5335 ** We are more soft for UDC.
5336 **=========================================================
5339 if (ktime_exp(np
->regtime
)) {
5340 np
->regtime
= ktime_get(10*HZ
);
5341 for (i
= 0; i
<sizeof(np
->regdump
); i
++)
5342 ((char*)&np
->regdump
)[i
] = INB_OFF(i
);
5343 np
->regdump
.nc_dstat
= dstat
;
5344 np
->regdump
.nc_sist
= sist
;
5347 ncr_log_hard_error(np
, sist
, dstat
);
5349 printk ("%s: have to clear fifos.\n", ncr_name (np
));
5350 OUTB (nc_stest3
, TE
|CSF
);
5351 OUTONB (nc_ctest3
, CLF
);
5353 if ((sist
& (SGE
)) ||
5354 (dstat
& (MDPE
|BF
|ABRT
|IID
))) {
5355 ncr_start_reset(np
);
5360 printk ("%s: handshake timeout\n", ncr_name(np
));
5361 ncr_start_reset(np
);
5366 printk ("%s: unexpected disconnect\n", ncr_name(np
));
5367 OUTB (HS_PRT
, HS_UNEXPECTED
);
5368 OUTL_DSP (NCB_SCRIPT_PHYS (np
, cleanup
));
5372 /*=========================================================
5373 ** We just miss the cause of the interrupt. :(
5374 ** Print a message. The timeout will do the real work.
5375 **=========================================================
5377 printk ("%s: unknown interrupt\n", ncr_name(np
));
5380 /*==========================================================
5382 ** ncr chip exception handler for selection timeout
5384 **==========================================================
5386 ** There seems to be a bug in the 53c810.
5387 ** Although a STO-Interrupt is pending,
5388 ** it continues executing script commands.
5389 ** But it will fail and interrupt (IID) on
5390 ** the next instruction where it's looking
5391 ** for a valid phase.
5393 **----------------------------------------------------------
5396 void ncr_int_sto (struct ncb
*np
)
5400 if (DEBUG_FLAGS
& DEBUG_TINY
) printk ("T");
5403 ** look for ccb and set the status.
5408 while (cp
&& (CCB_PHYS (cp
, phys
) != dsa
))
5412 cp
-> host_status
= HS_SEL_TIMEOUT
;
5413 ncr_complete (np
, cp
);
5417 ** repair start queue and jump to start point.
5420 OUTL_DSP (NCB_SCRIPTH_PHYS (np
, sto_restart
));
5424 /*==========================================================
5426 ** ncr chip exception handler for SCSI bus mode change
5428 **==========================================================
5430 ** spi2-r12 11.2.3 says a transceiver mode change must
5431 ** generate a reset event and a device that detects a reset
5432 ** event shall initiate a hard reset. It says also that a
5433 ** device that detects a mode change shall set data transfer
5434 ** mode to eight bit asynchronous, etc...
5435 ** So, just resetting should be enough.
5438 **----------------------------------------------------------
5441 static int ncr_int_sbmc (struct ncb
*np
)
5443 u_char scsi_mode
= INB (nc_stest4
) & SMODE
;
5445 if (scsi_mode
!= np
->scsi_mode
) {
5446 printk("%s: SCSI bus mode change from %x to %x.\n",
5447 ncr_name(np
), np
->scsi_mode
, scsi_mode
);
5449 np
->scsi_mode
= scsi_mode
;
5453 ** Suspend command processing for 1 second and
5454 ** reinitialize all except the chip.
5456 np
->settle_time
= ktime_get(1*HZ
);
5457 ncr_init (np
, 0, bootverbose
? "scsi mode change" : NULL
, HS_RESET
);
5463 /*==========================================================
5465 ** ncr chip exception handler for SCSI parity error.
5467 **==========================================================
5470 **----------------------------------------------------------
5473 static int ncr_int_par (struct ncb
*np
)
5475 u_char hsts
= INB (HS_PRT
);
5476 u32 dbc
= INL (nc_dbc
);
5477 u_char sstat1
= INB (nc_sstat1
);
5482 printk("%s: SCSI parity error detected: SCR1=%d DBC=%x SSTAT1=%x\n",
5483 ncr_name(np
), hsts
, dbc
, sstat1
);
5486 * Ignore the interrupt if the NCR is not connected
5487 * to the SCSI bus, since the right work should have
5488 * been done on unexpected disconnection handling.
5490 if (!(INB (nc_scntl1
) & ISCON
))
5494 * If the nexus is not clearly identified, reset the bus.
5495 * We will try to do better later.
5497 if (hsts
& HS_INVALMASK
)
5501 * If the SCSI parity error occurs in MSG IN phase, prepare a
5502 * MSG PARITY message. Otherwise, prepare a INITIATOR DETECTED
5503 * ERROR message and let the device decide to retry the command
5504 * or to terminate with check condition. If we were in MSG IN
5505 * phase waiting for the response of a negotiation, we will
5506 * get SIR_NEGO_FAILED at dispatch.
5508 if (!(dbc
& 0xc0000000))
5509 phase
= (dbc
>> 24) & 7;
5517 * If the NCR stopped on a MOVE ^ DATA_IN, we jump to a
5518 * script that will ignore all data in bytes until phase
5519 * change, since we are not sure the chip will wait the phase
5520 * change prior to delivering the interrupt.
5523 jmp
= NCB_SCRIPTH_PHYS (np
, par_err_data_in
);
5525 jmp
= NCB_SCRIPTH_PHYS (np
, par_err_other
);
5527 OUTONB (nc_ctest3
, CLF
); /* clear dma fifo */
5528 OUTB (nc_stest3
, TE
|CSF
); /* clear scsi fifo */
5530 np
->msgout
[0] = msg
;
5535 ncr_start_reset(np
);
5539 /*==========================================================
5542 ** ncr chip exception handler for phase errors.
5545 **==========================================================
5547 ** We have to construct a new transfer descriptor,
5548 ** to transfer the rest of the current block.
5550 **----------------------------------------------------------
5553 static void ncr_int_ma (struct ncb
*np
)
5570 sbcl
= INB (nc_sbcl
);
5573 rest
= dbc
& 0xffffff;
5576 ** Take into account dma fifo and various buffers and latches,
5577 ** only if the interrupted phase is an OUTPUT phase.
5580 if ((cmd
& 1) == 0) {
5581 u_char ctest5
, ss0
, ss2
;
5584 ctest5
= (np
->rv_ctest5
& DFS
) ? INB (nc_ctest5
) : 0;
5586 delta
=(((ctest5
<< 8) | (INB (nc_dfifo
) & 0xff)) - rest
) & 0x3ff;
5588 delta
=(INB (nc_dfifo
) - rest
) & 0x7f;
5591 ** The data in the dma fifo has not been transferred to
5592 ** the target -> add the amount to the rest
5593 ** and clear the data.
5594 ** Check the sstat2 register in case of wide transfer.
5598 ss0
= INB (nc_sstat0
);
5599 if (ss0
& OLF
) rest
++;
5600 if (ss0
& ORF
) rest
++;
5601 if (INB(nc_scntl3
) & EWS
) {
5602 ss2
= INB (nc_sstat2
);
5603 if (ss2
& OLF1
) rest
++;
5604 if (ss2
& ORF1
) rest
++;
5607 if (DEBUG_FLAGS
& (DEBUG_TINY
|DEBUG_PHASE
))
5608 printk ("P%x%x RL=%d D=%d SS0=%x ", cmd
&7, sbcl
&7,
5609 (unsigned) rest
, (unsigned) delta
, ss0
);
5612 if (DEBUG_FLAGS
& (DEBUG_TINY
|DEBUG_PHASE
))
5613 printk ("P%x%x RL=%d ", cmd
&7, sbcl
&7, rest
);
5619 OUTONB (nc_ctest3
, CLF
); /* clear dma fifo */
5620 OUTB (nc_stest3
, TE
|CSF
); /* clear scsi fifo */
5623 ** locate matching cp.
5624 ** if the interrupted phase is DATA IN or DATA OUT,
5625 ** trust the global header.
5630 if (CCB_PHYS(cp
, phys
) != dsa
)
5634 while (cp
&& (CCB_PHYS (cp
, phys
) != dsa
))
5639 ** try to find the interrupted script command,
5640 ** and the address at which to continue.
5644 if (dsp
> np
->p_script
&&
5645 dsp
<= np
->p_script
+ sizeof(struct script
)) {
5646 vdsp
= (u32
*)((char*)np
->script0
+ (dsp
-np
->p_script
-8));
5649 else if (dsp
> np
->p_scripth
&&
5650 dsp
<= np
->p_scripth
+ sizeof(struct scripth
)) {
5651 vdsp
= (u32
*)((char*)np
->scripth0
+ (dsp
-np
->p_scripth
-8));
5655 if (dsp
== CCB_PHYS (cp
, patch
[2])) {
5656 vdsp
= &cp
->patch
[0];
5657 nxtdsp
= scr_to_cpu(vdsp
[3]);
5659 else if (dsp
== CCB_PHYS (cp
, patch
[6])) {
5660 vdsp
= &cp
->patch
[4];
5661 nxtdsp
= scr_to_cpu(vdsp
[3]);
5666 ** log the information
5669 if (DEBUG_FLAGS
& DEBUG_PHASE
) {
5670 printk ("\nCP=%p CP2=%p DSP=%x NXT=%x VDSP=%p CMD=%x ",
5673 (unsigned)nxtdsp
, vdsp
, cmd
);
5677 ** cp=0 means that the DSA does not point to a valid control
5678 ** block. This should not happen since we donnot use multi-byte
5679 ** move while we are being reselected ot after command complete.
5680 ** We are not able to recover from such a phase error.
5683 printk ("%s: SCSI phase error fixup: "
5684 "CCB already dequeued (0x%08lx)\n",
5685 ncr_name (np
), (u_long
) np
->header
.cp
);
5690 ** get old startaddress and old length.
5693 oadr
= scr_to_cpu(vdsp
[1]);
5695 if (cmd
& 0x10) { /* Table indirect */
5696 tblp
= (u32
*) ((char*) &cp
->phys
+ oadr
);
5697 olen
= scr_to_cpu(tblp
[0]);
5698 oadr
= scr_to_cpu(tblp
[1]);
5701 olen
= scr_to_cpu(vdsp
[0]) & 0xffffff;
5704 if (DEBUG_FLAGS
& DEBUG_PHASE
) {
5705 printk ("OCMD=%x\nTBLP=%p OLEN=%x OADR=%x\n",
5706 (unsigned) (scr_to_cpu(vdsp
[0]) >> 24),
5713 ** check cmd against assumed interrupted script command.
5716 if (cmd
!= (scr_to_cpu(vdsp
[0]) >> 24)) {
5717 PRINT_ADDR(cp
->cmd
, "internal error: cmd=%02x != %02x=(vdsp[0] "
5718 ">> 24)\n", cmd
, scr_to_cpu(vdsp
[0]) >> 24);
5724 ** cp != np->header.cp means that the header of the CCB
5725 ** currently being processed has not yet been copied to
5726 ** the global header area. That may happen if the device did
5727 ** not accept all our messages after having been selected.
5729 if (cp
!= np
->header
.cp
) {
5730 printk ("%s: SCSI phase error fixup: "
5731 "CCB address mismatch (0x%08lx != 0x%08lx)\n",
5732 ncr_name (np
), (u_long
) cp
, (u_long
) np
->header
.cp
);
5736 ** if old phase not dataphase, leave here.
5740 PRINT_ADDR(cp
->cmd
, "phase change %x-%x %d@%08x resid=%d.\n",
5741 cmd
&7, sbcl
&7, (unsigned)olen
,
5742 (unsigned)oadr
, (unsigned)rest
);
5743 goto unexpected_phase
;
5747 ** choose the correct patch area.
5748 ** if savep points to one, choose the other.
5752 newtmp
= CCB_PHYS (cp
, patch
);
5753 if (newtmp
== scr_to_cpu(cp
->phys
.header
.savep
)) {
5754 newcmd
= &cp
->patch
[4];
5755 newtmp
= CCB_PHYS (cp
, patch
[4]);
5759 ** fillin the commands
5762 newcmd
[0] = cpu_to_scr(((cmd
& 0x0f) << 24) | rest
);
5763 newcmd
[1] = cpu_to_scr(oadr
+ olen
- rest
);
5764 newcmd
[2] = cpu_to_scr(SCR_JUMP
);
5765 newcmd
[3] = cpu_to_scr(nxtdsp
);
5767 if (DEBUG_FLAGS
& DEBUG_PHASE
) {
5768 PRINT_ADDR(cp
->cmd
, "newcmd[%d] %x %x %x %x.\n",
5769 (int) (newcmd
- cp
->patch
),
5770 (unsigned)scr_to_cpu(newcmd
[0]),
5771 (unsigned)scr_to_cpu(newcmd
[1]),
5772 (unsigned)scr_to_cpu(newcmd
[2]),
5773 (unsigned)scr_to_cpu(newcmd
[3]));
5776 ** fake the return address (to the patch).
5777 ** and restart script processor at dispatcher.
5779 OUTL (nc_temp
, newtmp
);
5780 OUTL_DSP (NCB_SCRIPT_PHYS (np
, dispatch
));
5784 ** Unexpected phase changes that occurs when the current phase
5785 ** is not a DATA IN or DATA OUT phase are due to error conditions.
5786 ** Such event may only happen when the SCRIPTS is using a
5787 ** multibyte SCSI MOVE.
5789 ** Phase change Some possible cause
5791 ** COMMAND --> MSG IN SCSI parity error detected by target.
5792 ** COMMAND --> STATUS Bad command or refused by target.
5793 ** MSG OUT --> MSG IN Message rejected by target.
5794 ** MSG OUT --> COMMAND Bogus target that discards extended
5795 ** negotiation messages.
5797 ** The code below does not care of the new phase and so
5798 ** trusts the target. Why to annoy it ?
5799 ** If the interrupted phase is COMMAND phase, we restart at
5801 ** If a target does not get all the messages after selection,
5802 ** the code assumes blindly that the target discards extended
5803 ** messages and clears the negotiation status.
5804 ** If the target does not want all our response to negotiation,
5805 ** we force a SIR_NEGO_PROTO interrupt (it is a hack that avoids
5806 ** bloat for such a should_not_happen situation).
5807 ** In all other situation, we reset the BUS.
5808 ** Are these assumptions reasonnable ? (Wait and see ...)
5815 case 2: /* COMMAND phase */
5816 nxtdsp
= NCB_SCRIPT_PHYS (np
, dispatch
);
5819 case 3: /* STATUS phase */
5820 nxtdsp
= NCB_SCRIPT_PHYS (np
, dispatch
);
5823 case 6: /* MSG OUT phase */
5824 np
->scripth
->nxtdsp_go_on
[0] = cpu_to_scr(dsp
+ 8);
5825 if (dsp
== NCB_SCRIPT_PHYS (np
, send_ident
)) {
5826 cp
->host_status
= HS_BUSY
;
5827 nxtdsp
= NCB_SCRIPTH_PHYS (np
, clratn_go_on
);
5829 else if (dsp
== NCB_SCRIPTH_PHYS (np
, send_wdtr
) ||
5830 dsp
== NCB_SCRIPTH_PHYS (np
, send_sdtr
)) {
5831 nxtdsp
= NCB_SCRIPTH_PHYS (np
, nego_bad_phase
);
5835 case 7: /* MSG IN phase */
5836 nxtdsp
= NCB_SCRIPT_PHYS (np
, clrack
);
5847 ncr_start_reset(np
);
5851 static void ncr_sir_to_redo(struct ncb
*np
, int num
, struct ccb
*cp
)
5853 struct scsi_cmnd
*cmd
= cp
->cmd
;
5854 struct tcb
*tp
= &np
->target
[cmd
->device
->id
];
5855 struct lcb
*lp
= tp
->lp
[cmd
->device
->lun
];
5856 struct list_head
*qp
;
5861 u_char s_status
= INB (SS_PRT
);
5864 ** Let the SCRIPTS processor skip all not yet started CCBs,
5865 ** and count disconnected CCBs. Since the busy queue is in
5866 ** the same order as the chip start queue, disconnected CCBs
5867 ** are before cp and busy ones after.
5870 qp
= lp
->busy_ccbq
.prev
;
5871 while (qp
!= &lp
->busy_ccbq
) {
5872 cp2
= list_entry(qp
, struct ccb
, link_ccbq
);
5877 cp2
->start
.schedule
.l_paddr
=
5878 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, skip
));
5880 lp
->held_ccb
= cp
; /* Requeue when this one completes */
5881 disc_cnt
= lp
->queuedccbs
- busy_cnt
;
5885 default: /* Just for safety, should never happen */
5888 ** Decrease number of tags to the number of
5889 ** disconnected commands.
5893 if (bootverbose
>= 1) {
5894 PRINT_ADDR(cmd
, "QUEUE FULL! %d busy, %d disconnected "
5895 "CCBs\n", busy_cnt
, disc_cnt
);
5897 if (disc_cnt
< lp
->numtags
) {
5898 lp
->numtags
= disc_cnt
> 2 ? disc_cnt
: 2;
5900 ncr_setup_tags (np
, cmd
->device
);
5903 ** Requeue the command to the start queue.
5904 ** If any disconnected commands,
5906 ** Jump to reselect.
5908 cp
->phys
.header
.savep
= cp
->startp
;
5909 cp
->host_status
= HS_BUSY
;
5910 cp
->scsi_status
= S_ILLEGAL
;
5912 ncr_put_start_queue(np
, cp
);
5914 INB (nc_ctest2
); /* Clear SIGP */
5915 OUTL_DSP (NCB_SCRIPT_PHYS (np
, reselect
));
5920 ** If we were requesting sense, give up.
5926 ** Device returned CHECK CONDITION status.
5927 ** Prepare all needed data strutures for getting
5932 cp
->scsi_smsg2
[0] = IDENTIFY(0, cmd
->device
->lun
);
5933 cp
->phys
.smsg
.addr
= cpu_to_scr(CCB_PHYS (cp
, scsi_smsg2
));
5934 cp
->phys
.smsg
.size
= cpu_to_scr(1);
5939 cp
->phys
.cmd
.addr
= cpu_to_scr(CCB_PHYS (cp
, sensecmd
));
5940 cp
->phys
.cmd
.size
= cpu_to_scr(6);
5943 ** patch requested size into sense command
5945 cp
->sensecmd
[0] = 0x03;
5946 cp
->sensecmd
[1] = cmd
->device
->lun
<< 5;
5947 cp
->sensecmd
[4] = sizeof(cp
->sense_buf
);
5952 memset(cp
->sense_buf
, 0, sizeof(cp
->sense_buf
));
5953 cp
->phys
.sense
.addr
= cpu_to_scr(CCB_PHYS(cp
,sense_buf
[0]));
5954 cp
->phys
.sense
.size
= cpu_to_scr(sizeof(cp
->sense_buf
));
5957 ** requeue the command.
5959 startp
= cpu_to_scr(NCB_SCRIPTH_PHYS (np
, sdata_in
));
5961 cp
->phys
.header
.savep
= startp
;
5962 cp
->phys
.header
.goalp
= startp
+ 24;
5963 cp
->phys
.header
.lastp
= startp
;
5964 cp
->phys
.header
.wgoalp
= startp
+ 24;
5965 cp
->phys
.header
.wlastp
= startp
;
5967 cp
->host_status
= HS_BUSY
;
5968 cp
->scsi_status
= S_ILLEGAL
;
5969 cp
->auto_sense
= s_status
;
5971 cp
->start
.schedule
.l_paddr
=
5972 cpu_to_scr(NCB_SCRIPT_PHYS (np
, select
));
5975 ** Select without ATN for quirky devices.
5977 if (cmd
->device
->select_no_atn
)
5978 cp
->start
.schedule
.l_paddr
=
5979 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, select_no_atn
));
5981 ncr_put_start_queue(np
, cp
);
5983 OUTL_DSP (NCB_SCRIPT_PHYS (np
, start
));
5993 /*==========================================================
5996 ** ncr chip exception handler for programmed interrupts.
5999 **==========================================================
6002 void ncr_int_sir (struct ncb
*np
)
6005 u_char chg
, ofs
, per
, fak
, wide
;
6006 u_char num
= INB (nc_dsps
);
6007 struct ccb
*cp
=NULL
;
6008 u_long dsa
= INL (nc_dsa
);
6009 u_char target
= INB (nc_sdid
) & 0x0f;
6010 struct tcb
*tp
= &np
->target
[target
];
6011 struct scsi_target
*starget
= tp
->starget
;
6013 if (DEBUG_FLAGS
& DEBUG_TINY
) printk ("I#%d", num
);
6018 ** This is used for HP Zalon/53c720 where INTFLY
6019 ** operation is currently broken.
6021 ncr_wakeup_done(np
);
6022 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
6023 OUTL(nc_dsp
, NCB_SCRIPT_PHYS (np
, done_end
) + 8);
6025 OUTL(nc_dsp
, NCB_SCRIPT_PHYS (np
, start
));
6028 case SIR_RESEL_NO_MSG_IN
:
6029 case SIR_RESEL_NO_IDENTIFY
:
6031 ** If devices reselecting without sending an IDENTIFY
6032 ** message still exist, this should help.
6033 ** We just assume lun=0, 1 CCB, no tag.
6036 OUTL_DSP (scr_to_cpu(tp
->lp
[0]->jump_ccb
[0]));
6039 case SIR_RESEL_BAD_TARGET
: /* Will send a TARGET RESET message */
6040 case SIR_RESEL_BAD_LUN
: /* Will send a TARGET RESET message */
6041 case SIR_RESEL_BAD_I_T_L_Q
: /* Will send an ABORT TAG message */
6042 case SIR_RESEL_BAD_I_T_L
: /* Will send an ABORT message */
6043 printk ("%s:%d: SIR %d, "
6044 "incorrect nexus identification on reselection\n",
6045 ncr_name (np
), target
, num
);
6047 case SIR_DONE_OVERFLOW
:
6048 printk ("%s:%d: SIR %d, "
6049 "CCB done queue overflow\n",
6050 ncr_name (np
), target
, num
);
6052 case SIR_BAD_STATUS
:
6054 if (!cp
|| CCB_PHYS (cp
, phys
) != dsa
)
6056 ncr_sir_to_redo(np
, num
, cp
);
6063 while (cp
&& (CCB_PHYS (cp
, phys
) != dsa
))
6067 BUG_ON(cp
!= np
->header
.cp
);
6069 if (!cp
|| cp
!= np
->header
.cp
)
6074 /*-----------------------------------------------------------------------------
6076 ** Was Sie schon immer ueber transfermode negotiation wissen wollten ...
6078 ** We try to negotiate sync and wide transfer only after
6079 ** a successful inquire command. We look at byte 7 of the
6080 ** inquire data to determine the capabilities of the target.
6082 ** When we try to negotiate, we append the negotiation message
6083 ** to the identify and (maybe) simple tag message.
6084 ** The host status field is set to HS_NEGOTIATE to mark this
6087 ** If the target doesn't answer this message immidiately
6088 ** (as required by the standard), the SIR_NEGO_FAIL interrupt
6089 ** will be raised eventually.
6090 ** The handler removes the HS_NEGOTIATE status, and sets the
6091 ** negotiated value to the default (async / nowide).
6093 ** If we receive a matching answer immediately, we check it
6094 ** for validity, and set the values.
6096 ** If we receive a Reject message immediately, we assume the
6097 ** negotiation has failed, and fall back to standard values.
6099 ** If we receive a negotiation message while not in HS_NEGOTIATE
6100 ** state, it's a target initiated negotiation. We prepare a
6101 ** (hopefully) valid answer, set our parameters, and send back
6102 ** this answer to the target.
6104 ** If the target doesn't fetch the answer (no message out phase),
6105 ** we assume the negotiation has failed, and fall back to default
6108 ** When we set the values, we adjust them in all ccbs belonging
6109 ** to this target, in the controller's register, and in the "phys"
6110 ** field of the controller's struct ncb.
6112 ** Possible cases: hs sir msg_in value send goto
6113 ** We try to negotiate:
6114 ** -> target doesn't msgin NEG FAIL noop defa. - dispatch
6115 ** -> target rejected our msg NEG FAIL reject defa. - dispatch
6116 ** -> target answered (ok) NEG SYNC sdtr set - clrack
6117 ** -> target answered (!ok) NEG SYNC sdtr defa. REJ--->msg_bad
6118 ** -> target answered (ok) NEG WIDE wdtr set - clrack
6119 ** -> target answered (!ok) NEG WIDE wdtr defa. REJ--->msg_bad
6120 ** -> any other msgin NEG FAIL noop defa. - dispatch
6122 ** Target tries to negotiate:
6123 ** -> incoming message --- SYNC sdtr set SDTR -
6124 ** -> incoming message --- WIDE wdtr set WDTR -
6125 ** We sent our answer:
6126 ** -> target doesn't msgout --- PROTO ? defa. - dispatch
6128 **-----------------------------------------------------------------------------
6131 case SIR_NEGO_FAILED
:
6132 /*-------------------------------------------------------
6134 ** Negotiation failed.
6135 ** Target doesn't send an answer message,
6136 ** or target rejected our message.
6138 ** Remove negotiation request.
6140 **-------------------------------------------------------
6142 OUTB (HS_PRT
, HS_BUSY
);
6146 case SIR_NEGO_PROTO
:
6147 /*-------------------------------------------------------
6149 ** Negotiation failed.
6150 ** Target doesn't fetch the answer message.
6152 **-------------------------------------------------------
6155 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
6156 PRINT_ADDR(cp
->cmd
, "negotiation failed sir=%x "
6157 "status=%x.\n", num
, cp
->nego_status
);
6161 ** any error in negotiation:
6162 ** fall back to default mode.
6164 switch (cp
->nego_status
) {
6167 spi_period(starget
) = 0;
6168 spi_offset(starget
) = 0;
6169 ncr_setsync (np
, cp
, 0, 0xe0);
6173 spi_width(starget
) = 0;
6174 ncr_setwide (np
, cp
, 0, 0);
6178 np
->msgin
[0] = M_NOOP
;
6179 np
->msgout
[0] = M_NOOP
;
6180 cp
->nego_status
= 0;
6184 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
6185 ncr_print_msg(cp
, "sync msgin", np
->msgin
);
6191 if (ofs
==0) per
=255;
6194 ** if target sends SDTR message,
6195 ** it CAN transfer synch.
6199 spi_support_sync(starget
) = 1;
6202 ** check values against driver limits.
6205 if (per
< np
->minsync
)
6206 {chg
= 1; per
= np
->minsync
;}
6207 if (per
< tp
->minsync
)
6208 {chg
= 1; per
= tp
->minsync
;}
6209 if (ofs
> tp
->maxoffs
)
6210 {chg
= 1; ofs
= tp
->maxoffs
;}
6213 ** Check against controller limits.
6218 ncr_getsync(np
, per
, &fak
, &scntl3
);
6231 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
6232 PRINT_ADDR(cp
->cmd
, "sync: per=%d scntl3=0x%x ofs=%d "
6233 "fak=%d chg=%d.\n", per
, scntl3
, ofs
, fak
, chg
);
6236 if (INB (HS_PRT
) == HS_NEGOTIATE
) {
6237 OUTB (HS_PRT
, HS_BUSY
);
6238 switch (cp
->nego_status
) {
6241 /* This was an answer message */
6243 /* Answer wasn't acceptable. */
6244 spi_period(starget
) = 0;
6245 spi_offset(starget
) = 0;
6246 ncr_setsync(np
, cp
, 0, 0xe0);
6247 OUTL_DSP(NCB_SCRIPT_PHYS (np
, msg_bad
));
6250 spi_period(starget
) = per
;
6251 spi_offset(starget
) = ofs
;
6252 ncr_setsync(np
, cp
, scntl3
, (fak
<<5)|ofs
);
6253 OUTL_DSP(NCB_SCRIPT_PHYS (np
, clrack
));
6258 spi_width(starget
) = 0;
6259 ncr_setwide(np
, cp
, 0, 0);
6265 ** It was a request. Set value and
6266 ** prepare an answer message
6269 spi_period(starget
) = per
;
6270 spi_offset(starget
) = ofs
;
6271 ncr_setsync(np
, cp
, scntl3
, (fak
<<5)|ofs
);
6273 np
->msgout
[0] = M_EXTENDED
;
6275 np
->msgout
[2] = M_X_SYNC_REQ
;
6276 np
->msgout
[3] = per
;
6277 np
->msgout
[4] = ofs
;
6279 cp
->nego_status
= NS_SYNC
;
6281 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
6282 ncr_print_msg(cp
, "sync msgout", np
->msgout
);
6286 OUTL_DSP (NCB_SCRIPT_PHYS (np
, msg_bad
));
6289 np
->msgin
[0] = M_NOOP
;
6295 ** Wide request message received.
6297 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
6298 ncr_print_msg(cp
, "wide msgin", np
->msgin
);
6302 ** get requested values.
6306 wide
= np
->msgin
[3];
6309 ** if target sends WDTR message,
6310 ** it CAN transfer wide.
6313 if (wide
&& starget
)
6314 spi_support_wide(starget
) = 1;
6317 ** check values against driver limits.
6320 if (wide
> tp
->usrwide
)
6321 {chg
= 1; wide
= tp
->usrwide
;}
6323 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
6324 PRINT_ADDR(cp
->cmd
, "wide: wide=%d chg=%d.\n", wide
,
6328 if (INB (HS_PRT
) == HS_NEGOTIATE
) {
6329 OUTB (HS_PRT
, HS_BUSY
);
6330 switch (cp
->nego_status
) {
6334 ** This was an answer message
6337 /* Answer wasn't acceptable. */
6338 spi_width(starget
) = 0;
6339 ncr_setwide(np
, cp
, 0, 1);
6340 OUTL_DSP (NCB_SCRIPT_PHYS (np
, msg_bad
));
6343 spi_width(starget
) = wide
;
6344 ncr_setwide(np
, cp
, wide
, 1);
6345 OUTL_DSP (NCB_SCRIPT_PHYS (np
, clrack
));
6350 spi_period(starget
) = 0;
6351 spi_offset(starget
) = 0;
6352 ncr_setsync(np
, cp
, 0, 0xe0);
6358 ** It was a request, set value and
6359 ** prepare an answer message
6362 spi_width(starget
) = wide
;
6363 ncr_setwide(np
, cp
, wide
, 1);
6365 np
->msgout
[0] = M_EXTENDED
;
6367 np
->msgout
[2] = M_X_WIDE_REQ
;
6368 np
->msgout
[3] = wide
;
6370 np
->msgin
[0] = M_NOOP
;
6372 cp
->nego_status
= NS_WIDE
;
6374 if (DEBUG_FLAGS
& DEBUG_NEGO
) {
6375 ncr_print_msg(cp
, "wide msgout", np
->msgin
);
6379 /*--------------------------------------------------------------------
6381 ** Processing of special messages
6383 **--------------------------------------------------------------------
6386 case SIR_REJECT_RECEIVED
:
6387 /*-----------------------------------------------
6389 ** We received a M_REJECT message.
6391 **-----------------------------------------------
6394 PRINT_ADDR(cp
->cmd
, "M_REJECT received (%x:%x).\n",
6395 (unsigned)scr_to_cpu(np
->lastmsg
), np
->msgout
[0]);
6398 case SIR_REJECT_SENT
:
6399 /*-----------------------------------------------
6401 ** We received an unknown message
6403 **-----------------------------------------------
6406 ncr_print_msg(cp
, "M_REJECT sent for", np
->msgin
);
6409 /*--------------------------------------------------------------------
6411 ** Processing of special messages
6413 **--------------------------------------------------------------------
6416 case SIR_IGN_RESIDUE
:
6417 /*-----------------------------------------------
6419 ** We received an IGNORE RESIDUE message,
6420 ** which couldn't be handled by the script.
6422 **-----------------------------------------------
6425 PRINT_ADDR(cp
->cmd
, "M_IGN_RESIDUE received, but not yet "
6429 case SIR_MISSING_SAVE
:
6430 /*-----------------------------------------------
6432 ** We received an DISCONNECT message,
6433 ** but the datapointer wasn't saved before.
6435 **-----------------------------------------------
6438 PRINT_ADDR(cp
->cmd
, "M_DISCONNECT received, but datapointer "
6439 "not saved: data=%x save=%x goal=%x.\n",
6440 (unsigned) INL (nc_temp
),
6441 (unsigned) scr_to_cpu(np
->header
.savep
),
6442 (unsigned) scr_to_cpu(np
->header
.goalp
));
6451 /*==========================================================
6454 ** Acquire a control block
6457 **==========================================================
6460 static struct ccb
*ncr_get_ccb(struct ncb
*np
, struct scsi_cmnd
*cmd
)
6462 u_char tn
= cmd
->device
->id
;
6463 u_char ln
= cmd
->device
->lun
;
6464 struct tcb
*tp
= &np
->target
[tn
];
6465 struct lcb
*lp
= tp
->lp
[ln
];
6466 u_char tag
= NO_TAG
;
6467 struct ccb
*cp
= NULL
;
6470 ** Lun structure available ?
6473 struct list_head
*qp
;
6475 ** Keep from using more tags than we can handle.
6477 if (lp
->usetags
&& lp
->busyccbs
>= lp
->maxnxs
)
6481 ** Allocate a new CCB if needed.
6483 if (list_empty(&lp
->free_ccbq
))
6484 ncr_alloc_ccb(np
, tn
, ln
);
6487 ** Look for free CCB
6489 qp
= ncr_list_pop(&lp
->free_ccbq
);
6491 cp
= list_entry(qp
, struct ccb
, link_ccbq
);
6493 PRINT_ADDR(cmd
, "ccb free list corrupted "
6497 list_add_tail(qp
, &lp
->wait_ccbq
);
6503 ** If a CCB is available,
6504 ** Get a tag for this nexus if required.
6508 tag
= lp
->cb_tags
[lp
->ia_tag
];
6510 else if (lp
->actccbs
> 0)
6515 ** if nothing available, take the default.
6521 ** Wait until available.
6525 if (flags
& SCSI_NOSLEEP
) break;
6526 if (tsleep ((caddr_t
)cp
, PRIBIO
|PCATCH
, "ncr", 0))
6537 ** Move to next available tag if tag used.
6540 if (tag
!= NO_TAG
) {
6542 if (lp
->ia_tag
== MAX_TAGS
)
6544 lp
->tags_umap
|= (((tagmap_t
) 1) << tag
);
6549 ** Remember all informations needed to free this CCB.
6555 if (DEBUG_FLAGS
& DEBUG_TAGS
) {
6556 PRINT_ADDR(cmd
, "ccb @%p using tag %d.\n", cp
, tag
);
6562 /*==========================================================
6565 ** Release one control block
6568 **==========================================================
6571 static void ncr_free_ccb (struct ncb
*np
, struct ccb
*cp
)
6573 struct tcb
*tp
= &np
->target
[cp
->target
];
6574 struct lcb
*lp
= tp
->lp
[cp
->lun
];
6576 if (DEBUG_FLAGS
& DEBUG_TAGS
) {
6577 PRINT_ADDR(cp
->cmd
, "ccb @%p freeing tag %d.\n", cp
, cp
->tag
);
6581 ** If lun control block available,
6582 ** decrement active commands and increment credit,
6583 ** free the tag if any and remove the JUMP for reselect.
6586 if (cp
->tag
!= NO_TAG
) {
6587 lp
->cb_tags
[lp
->if_tag
++] = cp
->tag
;
6588 if (lp
->if_tag
== MAX_TAGS
)
6590 lp
->tags_umap
&= ~(((tagmap_t
) 1) << cp
->tag
);
6591 lp
->tags_smap
&= lp
->tags_umap
;
6592 lp
->jump_ccb
[cp
->tag
] =
6593 cpu_to_scr(NCB_SCRIPTH_PHYS(np
, bad_i_t_l_q
));
6596 cpu_to_scr(NCB_SCRIPTH_PHYS(np
, bad_i_t_l
));
6601 ** Make this CCB available.
6606 list_move(&cp
->link_ccbq
, &lp
->free_ccbq
);
6612 cp
-> host_status
= HS_IDLE
;
6621 wakeup ((caddr_t
) cp
);
6626 #define ncr_reg_bus_addr(r) (np->paddr + offsetof (struct ncr_reg, r))
6628 /*------------------------------------------------------------------------
6629 ** Initialize the fixed part of a CCB structure.
6630 **------------------------------------------------------------------------
6631 **------------------------------------------------------------------------
6633 static void ncr_init_ccb(struct ncb
*np
, struct ccb
*cp
)
6635 ncrcmd copy_4
= np
->features
& FE_PFEN
? SCR_COPY(4) : SCR_COPY_F(4);
6638 ** Remember virtual and bus address of this ccb.
6640 cp
->p_ccb
= vtobus(cp
);
6641 cp
->phys
.header
.cp
= cp
;
6644 ** This allows list_del to work for the default ccb.
6646 INIT_LIST_HEAD(&cp
->link_ccbq
);
6649 ** Initialyze the start and restart launch script.
6651 ** COPY(4) @(...p_phys), @(dsa)
6652 ** JUMP @(sched_point)
6654 cp
->start
.setup_dsa
[0] = cpu_to_scr(copy_4
);
6655 cp
->start
.setup_dsa
[1] = cpu_to_scr(CCB_PHYS(cp
, start
.p_phys
));
6656 cp
->start
.setup_dsa
[2] = cpu_to_scr(ncr_reg_bus_addr(nc_dsa
));
6657 cp
->start
.schedule
.l_cmd
= cpu_to_scr(SCR_JUMP
);
6658 cp
->start
.p_phys
= cpu_to_scr(CCB_PHYS(cp
, phys
));
6660 memcpy(&cp
->restart
, &cp
->start
, sizeof(cp
->restart
));
6662 cp
->start
.schedule
.l_paddr
= cpu_to_scr(NCB_SCRIPT_PHYS (np
, idle
));
6663 cp
->restart
.schedule
.l_paddr
= cpu_to_scr(NCB_SCRIPTH_PHYS (np
, abort
));
6667 /*------------------------------------------------------------------------
6668 ** Allocate a CCB and initialize its fixed part.
6669 **------------------------------------------------------------------------
6670 **------------------------------------------------------------------------
6672 static void ncr_alloc_ccb(struct ncb
*np
, u_char tn
, u_char ln
)
6674 struct tcb
*tp
= &np
->target
[tn
];
6675 struct lcb
*lp
= tp
->lp
[ln
];
6676 struct ccb
*cp
= NULL
;
6679 ** Allocate memory for this CCB.
6681 cp
= m_calloc_dma(sizeof(struct ccb
), "CCB");
6686 ** Count it and initialyze it.
6690 memset(cp
, 0, sizeof (*cp
));
6691 ncr_init_ccb(np
, cp
);
6694 ** Chain into wakeup list and free ccb queue and take it
6695 ** into account for tagged commands.
6697 cp
->link_ccb
= np
->ccb
->link_ccb
;
6698 np
->ccb
->link_ccb
= cp
;
6700 list_add(&cp
->link_ccbq
, &lp
->free_ccbq
);
6703 /*==========================================================
6706 ** Allocation of resources for Targets/Luns/Tags.
6709 **==========================================================
6713 /*------------------------------------------------------------------------
6714 ** Target control block initialisation.
6715 **------------------------------------------------------------------------
6716 ** This data structure is fully initialized after a SCSI command
6717 ** has been successfully completed for this target.
6718 ** It contains a SCRIPT that is called on target reselection.
6719 **------------------------------------------------------------------------
6721 static void ncr_init_tcb (struct ncb
*np
, u_char tn
)
6723 struct tcb
*tp
= &np
->target
[tn
];
6724 ncrcmd copy_1
= np
->features
& FE_PFEN
? SCR_COPY(1) : SCR_COPY_F(1);
6729 ** Jump to next tcb if SFBR does not match this target.
6730 ** JUMP IF (SFBR != #target#), @(next tcb)
6732 tp
->jump_tcb
.l_cmd
=
6733 cpu_to_scr((SCR_JUMP
^ IFFALSE (DATA (0x80 + tn
))));
6734 tp
->jump_tcb
.l_paddr
= np
->jump_tcb
[th
].l_paddr
;
6737 ** Load the synchronous transfer register.
6738 ** COPY @(tp->sval), @(sxfer)
6740 tp
->getscr
[0] = cpu_to_scr(copy_1
);
6741 tp
->getscr
[1] = cpu_to_scr(vtobus (&tp
->sval
));
6742 #ifdef SCSI_NCR_BIG_ENDIAN
6743 tp
->getscr
[2] = cpu_to_scr(ncr_reg_bus_addr(nc_sxfer
) ^ 3);
6745 tp
->getscr
[2] = cpu_to_scr(ncr_reg_bus_addr(nc_sxfer
));
6749 ** Load the timing register.
6750 ** COPY @(tp->wval), @(scntl3)
6752 tp
->getscr
[3] = cpu_to_scr(copy_1
);
6753 tp
->getscr
[4] = cpu_to_scr(vtobus (&tp
->wval
));
6754 #ifdef SCSI_NCR_BIG_ENDIAN
6755 tp
->getscr
[5] = cpu_to_scr(ncr_reg_bus_addr(nc_scntl3
) ^ 3);
6757 tp
->getscr
[5] = cpu_to_scr(ncr_reg_bus_addr(nc_scntl3
));
6761 ** Get the IDENTIFY message and the lun.
6762 ** CALL @script(resel_lun)
6764 tp
->call_lun
.l_cmd
= cpu_to_scr(SCR_CALL
);
6765 tp
->call_lun
.l_paddr
= cpu_to_scr(NCB_SCRIPT_PHYS (np
, resel_lun
));
6768 ** Look for the lun control block of this nexus.
6770 ** JUMP ^ IFTRUE (MASK (i, 3)), @(next_lcb)
6772 for (i
= 0 ; i
< 4 ; i
++) {
6773 tp
->jump_lcb
[i
].l_cmd
=
6774 cpu_to_scr((SCR_JUMP
^ IFTRUE (MASK (i
, 3))));
6775 tp
->jump_lcb
[i
].l_paddr
=
6776 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, bad_identify
));
6780 ** Link this target control block to the JUMP chain.
6782 np
->jump_tcb
[th
].l_paddr
= cpu_to_scr(vtobus (&tp
->jump_tcb
));
6785 ** These assert's should be moved at driver initialisations.
6787 #ifdef SCSI_NCR_BIG_ENDIAN
6788 BUG_ON(((offsetof(struct ncr_reg
, nc_sxfer
) ^
6789 offsetof(struct tcb
, sval
)) &3) != 3);
6790 BUG_ON(((offsetof(struct ncr_reg
, nc_scntl3
) ^
6791 offsetof(struct tcb
, wval
)) &3) != 3);
6793 BUG_ON(((offsetof(struct ncr_reg
, nc_sxfer
) ^
6794 offsetof(struct tcb
, sval
)) &3) != 0);
6795 BUG_ON(((offsetof(struct ncr_reg
, nc_scntl3
) ^
6796 offsetof(struct tcb
, wval
)) &3) != 0);
6801 /*------------------------------------------------------------------------
6802 ** Lun control block allocation and initialization.
6803 **------------------------------------------------------------------------
6804 ** This data structure is allocated and initialized after a SCSI
6805 ** command has been successfully completed for this target/lun.
6806 **------------------------------------------------------------------------
6808 static struct lcb
*ncr_alloc_lcb (struct ncb
*np
, u_char tn
, u_char ln
)
6810 struct tcb
*tp
= &np
->target
[tn
];
6811 struct lcb
*lp
= tp
->lp
[ln
];
6812 ncrcmd copy_4
= np
->features
& FE_PFEN
? SCR_COPY(4) : SCR_COPY_F(4);
6816 ** Already done, return.
6822 ** Allocate the lcb.
6824 lp
= m_calloc_dma(sizeof(struct lcb
), "LCB");
6827 memset(lp
, 0, sizeof(*lp
));
6831 ** Initialize the target control block if not yet.
6833 if (!tp
->jump_tcb
.l_cmd
)
6834 ncr_init_tcb(np
, tn
);
6837 ** Initialize the CCB queue headers.
6839 INIT_LIST_HEAD(&lp
->free_ccbq
);
6840 INIT_LIST_HEAD(&lp
->busy_ccbq
);
6841 INIT_LIST_HEAD(&lp
->wait_ccbq
);
6842 INIT_LIST_HEAD(&lp
->skip_ccbq
);
6845 ** Set max CCBs to 1 and use the default 1 entry
6846 ** jump table by default.
6849 lp
->jump_ccb
= &lp
->jump_ccb_0
;
6850 lp
->p_jump_ccb
= cpu_to_scr(vtobus(lp
->jump_ccb
));
6853 ** Initilialyze the reselect script:
6855 ** Jump to next lcb if SFBR does not match this lun.
6856 ** Load TEMP with the CCB direct jump table bus address.
6857 ** Get the SIMPLE TAG message and the tag.
6859 ** JUMP IF (SFBR != #lun#), @(next lcb)
6860 ** COPY @(lp->p_jump_ccb), @(temp)
6861 ** JUMP @script(resel_notag)
6863 lp
->jump_lcb
.l_cmd
=
6864 cpu_to_scr((SCR_JUMP
^ IFFALSE (MASK (0x80+ln
, 0xff))));
6865 lp
->jump_lcb
.l_paddr
= tp
->jump_lcb
[lh
].l_paddr
;
6867 lp
->load_jump_ccb
[0] = cpu_to_scr(copy_4
);
6868 lp
->load_jump_ccb
[1] = cpu_to_scr(vtobus (&lp
->p_jump_ccb
));
6869 lp
->load_jump_ccb
[2] = cpu_to_scr(ncr_reg_bus_addr(nc_temp
));
6871 lp
->jump_tag
.l_cmd
= cpu_to_scr(SCR_JUMP
);
6872 lp
->jump_tag
.l_paddr
= cpu_to_scr(NCB_SCRIPT_PHYS (np
, resel_notag
));
6875 ** Link this lun control block to the JUMP chain.
6877 tp
->jump_lcb
[lh
].l_paddr
= cpu_to_scr(vtobus (&lp
->jump_lcb
));
6880 ** Initialize command queuing control.
6890 /*------------------------------------------------------------------------
6891 ** Lun control block setup on INQUIRY data received.
6892 **------------------------------------------------------------------------
6893 ** We only support WIDE, SYNC for targets and CMDQ for logical units.
6894 ** This setup is done on each INQUIRY since we are expecting user
6895 ** will play with CHANGE DEFINITION commands. :-)
6896 **------------------------------------------------------------------------
6898 static struct lcb
*ncr_setup_lcb (struct ncb
*np
, struct scsi_device
*sdev
)
6900 unsigned char tn
= sdev
->id
, ln
= sdev
->lun
;
6901 struct tcb
*tp
= &np
->target
[tn
];
6902 struct lcb
*lp
= tp
->lp
[ln
];
6904 /* If no lcb, try to allocate it. */
6905 if (!lp
&& !(lp
= ncr_alloc_lcb(np
, tn
, ln
)))
6909 ** If unit supports tagged commands, allocate the
6910 ** CCB JUMP table if not yet.
6912 if (sdev
->tagged_supported
&& lp
->jump_ccb
== &lp
->jump_ccb_0
) {
6914 lp
->jump_ccb
= m_calloc_dma(256, "JUMP_CCB");
6915 if (!lp
->jump_ccb
) {
6916 lp
->jump_ccb
= &lp
->jump_ccb_0
;
6919 lp
->p_jump_ccb
= cpu_to_scr(vtobus(lp
->jump_ccb
));
6920 for (i
= 0 ; i
< 64 ; i
++)
6922 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, bad_i_t_l_q
));
6923 for (i
= 0 ; i
< MAX_TAGS
; i
++)
6925 lp
->maxnxs
= MAX_TAGS
;
6926 lp
->tags_stime
= ktime_get(3*HZ
);
6927 ncr_setup_tags (np
, sdev
);
6935 /*==========================================================
6938 ** Build Scatter Gather Block
6941 **==========================================================
6943 ** The transfer area may be scattered among
6944 ** several non adjacent physical pages.
6946 ** We may use MAX_SCATTER blocks.
6948 **----------------------------------------------------------
6952 ** We try to reduce the number of interrupts caused
6953 ** by unexpected phase changes due to disconnects.
6954 ** A typical harddisk may disconnect before ANY block.
6955 ** If we wanted to avoid unexpected phase changes at all
6956 ** we had to use a break point every 512 bytes.
6957 ** Of course the number of scatter/gather blocks is
6959 ** Under Linux, the scatter/gatter blocks are provided by
6960 ** the generic driver. We just have to copy addresses and
6961 ** sizes to the data segment array.
6964 static int ncr_scatter_no_sglist(struct ncb
*np
, struct ccb
*cp
, struct scsi_cmnd
*cmd
)
6966 struct scr_tblmove
*data
= &cp
->phys
.data
[MAX_SCATTER
- 1];
6969 cp
->data_len
= cmd
->request_bufflen
;
6971 if (cmd
->request_bufflen
) {
6972 dma_addr_t baddr
= map_scsi_single_data(np
, cmd
);
6974 ncr_build_sge(np
, data
, baddr
, cmd
->request_bufflen
);
6986 static int ncr_scatter(struct ncb
*np
, struct ccb
*cp
, struct scsi_cmnd
*cmd
)
6989 int use_sg
= (int) cmd
->use_sg
;
6994 segment
= ncr_scatter_no_sglist(np
, cp
, cmd
);
6995 else if ((use_sg
= map_scsi_sg_data(np
, cmd
)) > 0) {
6996 struct scatterlist
*scatter
= (struct scatterlist
*)cmd
->buffer
;
6997 struct scr_tblmove
*data
;
6999 if (use_sg
> MAX_SCATTER
) {
7000 unmap_scsi_data(np
, cmd
);
7004 data
= &cp
->phys
.data
[MAX_SCATTER
- use_sg
];
7006 for (segment
= 0; segment
< use_sg
; segment
++) {
7007 dma_addr_t baddr
= sg_dma_address(&scatter
[segment
]);
7008 unsigned int len
= sg_dma_len(&scatter
[segment
]);
7010 ncr_build_sge(np
, &data
[segment
], baddr
, len
);
7011 cp
->data_len
+= len
;
7020 /*==========================================================
7023 ** Test the bus snoop logic :-(
7025 ** Has to be called with interrupts disabled.
7028 **==========================================================
7031 static int __init
ncr_regtest (struct ncb
* np
)
7033 register volatile u32 data
;
7035 ** ncr registers may NOT be cached.
7036 ** write 0xffffffff to a read only register area,
7037 ** and try to read it back.
7040 OUTL_OFF(offsetof(struct ncr_reg
, nc_dstat
), data
);
7041 data
= INL_OFF(offsetof(struct ncr_reg
, nc_dstat
));
7043 if (data
== 0xffffffff) {
7045 if ((data
& 0xe2f0fffd) != 0x02000080) {
7047 printk ("CACHE TEST FAILED: reg dstat-sstat2 readback %x.\n",
7054 static int __init
ncr_snooptest (struct ncb
* np
)
7056 u32 ncr_rd
, ncr_wr
, ncr_bk
, host_rd
, host_wr
, pc
;
7059 err
|= ncr_regtest (np
);
7065 pc
= NCB_SCRIPTH_PHYS (np
, snooptest
);
7069 ** Set memory and register.
7071 np
->ncr_cache
= cpu_to_scr(host_wr
);
7072 OUTL (nc_temp
, ncr_wr
);
7074 ** Start script (exchange values)
7078 ** Wait 'til done (with timeout)
7080 for (i
=0; i
<NCR_SNOOP_TIMEOUT
; i
++)
7081 if (INB(nc_istat
) & (INTF
|SIP
|DIP
))
7084 ** Save termination position.
7088 ** Read memory and register.
7090 host_rd
= scr_to_cpu(np
->ncr_cache
);
7091 ncr_rd
= INL (nc_scratcha
);
7092 ncr_bk
= INL (nc_temp
);
7096 ncr_chip_reset(np
, 100);
7098 ** check for timeout
7100 if (i
>=NCR_SNOOP_TIMEOUT
) {
7101 printk ("CACHE TEST FAILED: timeout.\n");
7105 ** Check termination position.
7107 if (pc
!= NCB_SCRIPTH_PHYS (np
, snoopend
)+8) {
7108 printk ("CACHE TEST FAILED: script execution failed.\n");
7109 printk ("start=%08lx, pc=%08lx, end=%08lx\n",
7110 (u_long
) NCB_SCRIPTH_PHYS (np
, snooptest
), (u_long
) pc
,
7111 (u_long
) NCB_SCRIPTH_PHYS (np
, snoopend
) +8);
7117 if (host_wr
!= ncr_rd
) {
7118 printk ("CACHE TEST FAILED: host wrote %d, ncr read %d.\n",
7119 (int) host_wr
, (int) ncr_rd
);
7122 if (host_rd
!= ncr_wr
) {
7123 printk ("CACHE TEST FAILED: ncr wrote %d, host read %d.\n",
7124 (int) ncr_wr
, (int) host_rd
);
7127 if (ncr_bk
!= ncr_wr
) {
7128 printk ("CACHE TEST FAILED: ncr wrote %d, read back %d.\n",
7129 (int) ncr_wr
, (int) ncr_bk
);
7135 /*==========================================================
7137 ** Determine the ncr's clock frequency.
7138 ** This is essential for the negotiation
7139 ** of the synchronous transfer rate.
7141 **==========================================================
7143 ** Note: we have to return the correct value.
7144 ** THERE IS NO SAVE DEFAULT VALUE.
7146 ** Most NCR/SYMBIOS boards are delivered with a 40 Mhz clock.
7147 ** 53C860 and 53C875 rev. 1 support fast20 transfers but
7148 ** do not have a clock doubler and so are provided with a
7149 ** 80 MHz clock. All other fast20 boards incorporate a doubler
7150 ** and so should be delivered with a 40 MHz clock.
7151 ** The future fast40 chips (895/895) use a 40 Mhz base clock
7152 ** and provide a clock quadrupler (160 Mhz). The code below
7153 ** tries to deal as cleverly as possible with all this stuff.
7155 **----------------------------------------------------------
7159 * Select NCR SCSI clock frequency
7161 static void ncr_selectclock(struct ncb
*np
, u_char scntl3
)
7163 if (np
->multiplier
< 2) {
7164 OUTB(nc_scntl3
, scntl3
);
7168 if (bootverbose
>= 2)
7169 printk ("%s: enabling clock multiplier\n", ncr_name(np
));
7171 OUTB(nc_stest1
, DBLEN
); /* Enable clock multiplier */
7172 if (np
->multiplier
> 2) { /* Poll bit 5 of stest4 for quadrupler */
7174 while (!(INB(nc_stest4
) & LCKFRQ
) && --i
> 0)
7177 printk("%s: the chip cannot lock the frequency\n", ncr_name(np
));
7178 } else /* Wait 20 micro-seconds for doubler */
7180 OUTB(nc_stest3
, HSC
); /* Halt the scsi clock */
7181 OUTB(nc_scntl3
, scntl3
);
7182 OUTB(nc_stest1
, (DBLEN
|DBLSEL
));/* Select clock multiplier */
7183 OUTB(nc_stest3
, 0x00); /* Restart scsi clock */
7188 * calculate NCR SCSI clock frequency (in KHz)
7190 static unsigned __init
ncrgetfreq (struct ncb
*np
, int gen
)
7196 * Measure GEN timer delay in order
7197 * to calculate SCSI clock frequency
7199 * This code will never execute too
7200 * many loop iterations (if DELAY is
7201 * reasonably correct). It could get
7202 * too low a delay (too high a freq.)
7203 * if the CPU is slow executing the
7204 * loop for some reason (an NMI, for
7205 * example). For this reason we will
7206 * if multiple measurements are to be
7207 * performed trust the higher delay
7208 * (lower frequency returned).
7210 OUTB (nc_stest1
, 0); /* make sure clock doubler is OFF */
7211 OUTW (nc_sien
, 0); /* mask all scsi interrupts */
7212 (void) INW (nc_sist
); /* clear pending scsi interrupt */
7213 OUTB (nc_dien
, 0); /* mask all dma interrupts */
7214 (void) INW (nc_sist
); /* another one, just to be sure :) */
7215 OUTB (nc_scntl3
, 4); /* set pre-scaler to divide by 3 */
7216 OUTB (nc_stime1
, 0); /* disable general purpose timer */
7217 OUTB (nc_stime1
, gen
); /* set to nominal delay of 1<<gen * 125us */
7218 while (!(INW(nc_sist
) & GEN
) && ms
++ < 100000) {
7219 for (count
= 0; count
< 10; count
++)
7220 udelay(100); /* count ms */
7222 OUTB (nc_stime1
, 0); /* disable general purpose timer */
7224 * set prescaler to divide by whatever 0 means
7225 * 0 ought to choose divide by 2, but appears
7226 * to set divide by 3.5 mode in my 53c810 ...
7228 OUTB (nc_scntl3
, 0);
7230 if (bootverbose
>= 2)
7231 printk ("%s: Delay (GEN=%d): %u msec\n", ncr_name(np
), gen
, ms
);
7233 * adjust for prescaler, and convert into KHz
7235 return ms
? ((1 << gen
) * 4340) / ms
: 0;
7239 * Get/probe NCR SCSI clock frequency
7241 static void __init
ncr_getclock (struct ncb
*np
, int mult
)
7243 unsigned char scntl3
= INB(nc_scntl3
);
7244 unsigned char stest1
= INB(nc_stest1
);
7251 ** True with 875 or 895 with clock multiplier selected
7253 if (mult
> 1 && (stest1
& (DBLEN
+DBLSEL
)) == DBLEN
+DBLSEL
) {
7254 if (bootverbose
>= 2)
7255 printk ("%s: clock multiplier found\n", ncr_name(np
));
7256 np
->multiplier
= mult
;
7260 ** If multiplier not found or scntl3 not 7,5,3,
7261 ** reset chip and get frequency from general purpose timer.
7262 ** Otherwise trust scntl3 BIOS setting.
7264 if (np
->multiplier
!= mult
|| (scntl3
& 7) < 3 || !(scntl3
& 1)) {
7267 ncr_chip_reset(np
, 5);
7269 (void) ncrgetfreq (np
, 11); /* throw away first result */
7270 f1
= ncrgetfreq (np
, 11);
7271 f2
= ncrgetfreq (np
, 11);
7274 printk ("%s: NCR clock is %uKHz, %uKHz\n", ncr_name(np
), f1
, f2
);
7276 if (f1
> f2
) f1
= f2
; /* trust lower result */
7278 if (f1
< 45000) f1
= 40000;
7279 else if (f1
< 55000) f1
= 50000;
7282 if (f1
< 80000 && mult
> 1) {
7283 if (bootverbose
>= 2)
7284 printk ("%s: clock multiplier assumed\n", ncr_name(np
));
7285 np
->multiplier
= mult
;
7288 if ((scntl3
& 7) == 3) f1
= 40000;
7289 else if ((scntl3
& 7) == 5) f1
= 80000;
7292 f1
/= np
->multiplier
;
7296 ** Compute controller synchronous parameters.
7298 f1
*= np
->multiplier
;
7302 /*===================== LINUX ENTRY POINTS SECTION ==========================*/
7304 static int ncr53c8xx_slave_alloc(struct scsi_device
*device
)
7306 struct Scsi_Host
*host
= device
->host
;
7307 struct ncb
*np
= ((struct host_data
*) host
->hostdata
)->ncb
;
7308 struct tcb
*tp
= &np
->target
[device
->id
];
7309 tp
->starget
= device
->sdev_target
;
7314 static int ncr53c8xx_slave_configure(struct scsi_device
*device
)
7316 struct Scsi_Host
*host
= device
->host
;
7317 struct ncb
*np
= ((struct host_data
*) host
->hostdata
)->ncb
;
7318 struct tcb
*tp
= &np
->target
[device
->id
];
7319 struct lcb
*lp
= tp
->lp
[device
->lun
];
7320 int numtags
, depth_to_use
;
7322 ncr_setup_lcb(np
, device
);
7325 ** Select queue depth from driver setup.
7326 ** Donnot use more than configured by user.
7328 ** Donnot use more than our maximum.
7330 numtags
= device_queue_depth(np
->unit
, device
->id
, device
->lun
);
7331 if (numtags
> tp
->usrtags
)
7332 numtags
= tp
->usrtags
;
7333 if (!device
->tagged_supported
)
7335 depth_to_use
= numtags
;
7336 if (depth_to_use
< 2)
7338 if (depth_to_use
> MAX_TAGS
)
7339 depth_to_use
= MAX_TAGS
;
7341 scsi_adjust_queue_depth(device
,
7342 (device
->tagged_supported
?
7343 MSG_SIMPLE_TAG
: 0),
7347 ** Since the queue depth is not tunable under Linux,
7348 ** we need to know this value in order not to
7349 ** announce stupid things to user.
7351 ** XXX(hch): As of Linux 2.6 it certainly _is_ tunable..
7352 ** In fact we just tuned it, or did I miss
7353 ** something important? :)
7356 lp
->numtags
= lp
->maxtags
= numtags
;
7357 lp
->scdev_depth
= depth_to_use
;
7359 ncr_setup_tags (np
, device
);
7361 #ifdef DEBUG_NCR53C8XX
7362 printk("ncr53c8xx_select_queue_depth: host=%d, id=%d, lun=%d, depth=%d\n",
7363 np
->unit
, device
->id
, device
->lun
, depth_to_use
);
7366 if (spi_support_sync(device
->sdev_target
) &&
7367 !spi_initial_dv(device
->sdev_target
))
7368 spi_dv_device(device
);
7372 static int ncr53c8xx_queue_command (struct scsi_cmnd
*cmd
, void (* done
)(struct scsi_cmnd
*))
7374 struct ncb
*np
= ((struct host_data
*) cmd
->device
->host
->hostdata
)->ncb
;
7375 unsigned long flags
;
7378 #ifdef DEBUG_NCR53C8XX
7379 printk("ncr53c8xx_queue_command\n");
7382 cmd
->scsi_done
= done
;
7383 cmd
->host_scribble
= NULL
;
7384 cmd
->__data_mapped
= 0;
7385 cmd
->__data_mapping
= 0;
7387 spin_lock_irqsave(&np
->smp_lock
, flags
);
7389 if ((sts
= ncr_queue_command(np
, cmd
)) != DID_OK
) {
7390 cmd
->result
= ScsiResult(sts
, 0);
7391 #ifdef DEBUG_NCR53C8XX
7392 printk("ncr53c8xx : command not queued - result=%d\n", sts
);
7395 #ifdef DEBUG_NCR53C8XX
7397 printk("ncr53c8xx : command successfully queued\n");
7400 spin_unlock_irqrestore(&np
->smp_lock
, flags
);
7402 if (sts
!= DID_OK
) {
7403 unmap_scsi_data(np
, cmd
);
7411 irqreturn_t
ncr53c8xx_intr(int irq
, void *dev_id
, struct pt_regs
* regs
)
7413 unsigned long flags
;
7414 struct Scsi_Host
*shost
= (struct Scsi_Host
*)dev_id
;
7415 struct host_data
*host_data
= (struct host_data
*)shost
->hostdata
;
7416 struct ncb
*np
= host_data
->ncb
;
7417 struct scsi_cmnd
*done_list
;
7419 #ifdef DEBUG_NCR53C8XX
7420 printk("ncr53c8xx : interrupt received\n");
7423 if (DEBUG_FLAGS
& DEBUG_TINY
) printk ("[");
7425 spin_lock_irqsave(&np
->smp_lock
, flags
);
7427 done_list
= np
->done_list
;
7428 np
->done_list
= NULL
;
7429 spin_unlock_irqrestore(&np
->smp_lock
, flags
);
7431 if (DEBUG_FLAGS
& DEBUG_TINY
) printk ("]\n");
7434 ncr_flush_done_cmds(done_list
);
7438 static void ncr53c8xx_timeout(unsigned long npref
)
7440 struct ncb
*np
= (struct ncb
*) npref
;
7441 unsigned long flags
;
7442 struct scsi_cmnd
*done_list
;
7444 spin_lock_irqsave(&np
->smp_lock
, flags
);
7446 done_list
= np
->done_list
;
7447 np
->done_list
= NULL
;
7448 spin_unlock_irqrestore(&np
->smp_lock
, flags
);
7451 ncr_flush_done_cmds(done_list
);
7454 static int ncr53c8xx_bus_reset(struct scsi_cmnd
*cmd
)
7456 struct ncb
*np
= ((struct host_data
*) cmd
->device
->host
->hostdata
)->ncb
;
7458 unsigned long flags
;
7459 struct scsi_cmnd
*done_list
;
7462 * If the mid-level driver told us reset is synchronous, it seems
7463 * that we must call the done() callback for the involved command,
7464 * even if this command was not queued to the low-level driver,
7465 * before returning SUCCESS.
7468 spin_lock_irqsave(&np
->smp_lock
, flags
);
7469 sts
= ncr_reset_bus(np
, cmd
, 1);
7471 done_list
= np
->done_list
;
7472 np
->done_list
= NULL
;
7473 spin_unlock_irqrestore(&np
->smp_lock
, flags
);
7475 ncr_flush_done_cmds(done_list
);
7480 #if 0 /* unused and broken */
7481 static int ncr53c8xx_abort(struct scsi_cmnd
*cmd
)
7483 struct ncb
*np
= ((struct host_data
*) cmd
->device
->host
->hostdata
)->ncb
;
7485 unsigned long flags
;
7486 struct scsi_cmnd
*done_list
;
7488 #if defined SCSI_RESET_SYNCHRONOUS && defined SCSI_RESET_ASYNCHRONOUS
7489 printk("ncr53c8xx_abort: pid=%lu serial_number=%ld\n",
7490 cmd
->pid
, cmd
->serial_number
);
7492 printk("ncr53c8xx_abort: command pid %lu\n", cmd
->pid
);
7495 NCR_LOCK_NCB(np
, flags
);
7497 sts
= ncr_abort_command(np
, cmd
);
7499 done_list
= np
->done_list
;
7500 np
->done_list
= NULL
;
7501 NCR_UNLOCK_NCB(np
, flags
);
7503 ncr_flush_done_cmds(done_list
);
7511 ** Scsi command waiting list management.
7513 ** It may happen that we cannot insert a scsi command into the start queue,
7514 ** in the following circumstances.
7515 ** Too few preallocated ccb(s),
7516 ** maxtags < cmd_per_lun of the Linux host control block,
7518 ** Such scsi commands are inserted into a waiting list.
7519 ** When a scsi command complete, we try to requeue the commands of the
7523 #define next_wcmd host_scribble
7525 static void insert_into_waiting_list(struct ncb
*np
, struct scsi_cmnd
*cmd
)
7527 struct scsi_cmnd
*wcmd
;
7529 #ifdef DEBUG_WAITING_LIST
7530 printk("%s: cmd %lx inserted into waiting list\n", ncr_name(np
), (u_long
) cmd
);
7532 cmd
->next_wcmd
= NULL
;
7533 if (!(wcmd
= np
->waiting_list
)) np
->waiting_list
= cmd
;
7535 while ((wcmd
->next_wcmd
) != 0)
7536 wcmd
= (struct scsi_cmnd
*) wcmd
->next_wcmd
;
7537 wcmd
->next_wcmd
= (char *) cmd
;
7541 static struct scsi_cmnd
*retrieve_from_waiting_list(int to_remove
, struct ncb
*np
, struct scsi_cmnd
*cmd
)
7543 struct scsi_cmnd
**pcmd
= &np
->waiting_list
;
7548 *pcmd
= (struct scsi_cmnd
*) cmd
->next_wcmd
;
7549 cmd
->next_wcmd
= NULL
;
7551 #ifdef DEBUG_WAITING_LIST
7552 printk("%s: cmd %lx retrieved from waiting list\n", ncr_name(np
), (u_long
) cmd
);
7556 pcmd
= (struct scsi_cmnd
**) &(*pcmd
)->next_wcmd
;
7561 static void process_waiting_list(struct ncb
*np
, int sts
)
7563 struct scsi_cmnd
*waiting_list
, *wcmd
;
7565 waiting_list
= np
->waiting_list
;
7566 np
->waiting_list
= NULL
;
7568 #ifdef DEBUG_WAITING_LIST
7569 if (waiting_list
) printk("%s: waiting_list=%lx processing sts=%d\n", ncr_name(np
), (u_long
) waiting_list
, sts
);
7571 while ((wcmd
= waiting_list
) != 0) {
7572 waiting_list
= (struct scsi_cmnd
*) wcmd
->next_wcmd
;
7573 wcmd
->next_wcmd
= NULL
;
7574 if (sts
== DID_OK
) {
7575 #ifdef DEBUG_WAITING_LIST
7576 printk("%s: cmd %lx trying to requeue\n", ncr_name(np
), (u_long
) wcmd
);
7578 sts
= ncr_queue_command(np
, wcmd
);
7580 if (sts
!= DID_OK
) {
7581 #ifdef DEBUG_WAITING_LIST
7582 printk("%s: cmd %lx done forced sts=%d\n", ncr_name(np
), (u_long
) wcmd
, sts
);
7584 wcmd
->result
= ScsiResult(sts
, 0);
7585 ncr_queue_done_cmd(np
, wcmd
);
7592 static ssize_t
show_ncr53c8xx_revision(struct class_device
*dev
, char *buf
)
7594 struct Scsi_Host
*host
= class_to_shost(dev
);
7595 struct host_data
*host_data
= (struct host_data
*)host
->hostdata
;
7597 return snprintf(buf
, 20, "0x%x\n", host_data
->ncb
->revision_id
);
7600 static struct class_device_attribute ncr53c8xx_revision_attr
= {
7601 .attr
= { .name
= "revision", .mode
= S_IRUGO
, },
7602 .show
= show_ncr53c8xx_revision
,
7605 static struct class_device_attribute
*ncr53c8xx_host_attrs
[] = {
7606 &ncr53c8xx_revision_attr
,
7610 /*==========================================================
7612 ** Boot command line.
7614 **==========================================================
7617 char *ncr53c8xx
; /* command line passed by insmod */
7618 module_param(ncr53c8xx
, charp
, 0);
7621 static int __init
ncr53c8xx_setup(char *str
)
7623 return sym53c8xx__setup(str
);
7627 __setup("ncr53c8xx=", ncr53c8xx_setup
);
7632 * Host attach and initialisations.
7634 * Allocate host data and ncb structure.
7635 * Request IO region and remap MMIO region.
7636 * Do chip initialization.
7637 * If all is OK, install interrupt handling and
7638 * start the timer daemon.
7640 struct Scsi_Host
* __init
ncr_attach(struct scsi_host_template
*tpnt
,
7641 int unit
, struct ncr_device
*device
)
7643 struct host_data
*host_data
;
7644 struct ncb
*np
= NULL
;
7645 struct Scsi_Host
*instance
= NULL
;
7650 tpnt
->name
= SCSI_NCR_DRIVER_NAME
;
7651 if (!tpnt
->shost_attrs
)
7652 tpnt
->shost_attrs
= ncr53c8xx_host_attrs
;
7654 tpnt
->queuecommand
= ncr53c8xx_queue_command
;
7655 tpnt
->slave_configure
= ncr53c8xx_slave_configure
;
7656 tpnt
->slave_alloc
= ncr53c8xx_slave_alloc
;
7657 tpnt
->eh_bus_reset_handler
= ncr53c8xx_bus_reset
;
7658 tpnt
->can_queue
= SCSI_NCR_CAN_QUEUE
;
7660 tpnt
->sg_tablesize
= SCSI_NCR_SG_TABLESIZE
;
7661 tpnt
->cmd_per_lun
= SCSI_NCR_CMD_PER_LUN
;
7662 tpnt
->use_clustering
= ENABLE_CLUSTERING
;
7664 if (device
->differential
)
7665 driver_setup
.diff_support
= device
->differential
;
7667 printk(KERN_INFO
"ncr53c720-%d: rev 0x%x irq %d\n",
7668 unit
, device
->chip
.revision_id
, device
->slot
.irq
);
7670 instance
= scsi_host_alloc(tpnt
, sizeof(*host_data
));
7673 host_data
= (struct host_data
*) instance
->hostdata
;
7675 np
= __m_calloc_dma(device
->dev
, sizeof(struct ncb
), "NCB");
7678 spin_lock_init(&np
->smp_lock
);
7679 np
->dev
= device
->dev
;
7680 np
->p_ncb
= vtobus(np
);
7681 host_data
->ncb
= np
;
7683 np
->ccb
= m_calloc_dma(sizeof(struct ccb
), "CCB");
7687 /* Store input information in the host data structure. */
7689 np
->verbose
= driver_setup
.verbose
;
7690 sprintf(np
->inst_name
, "ncr53c720-%d", np
->unit
);
7691 np
->revision_id
= device
->chip
.revision_id
;
7692 np
->features
= device
->chip
.features
;
7693 np
->clock_divn
= device
->chip
.nr_divisor
;
7694 np
->maxoffs
= device
->chip
.offset_max
;
7695 np
->maxburst
= device
->chip
.burst_max
;
7696 np
->myaddr
= device
->host_id
;
7698 /* Allocate SCRIPTS areas. */
7699 np
->script0
= m_calloc_dma(sizeof(struct script
), "SCRIPT");
7702 np
->scripth0
= m_calloc_dma(sizeof(struct scripth
), "SCRIPTH");
7706 init_timer(&np
->timer
);
7707 np
->timer
.data
= (unsigned long) np
;
7708 np
->timer
.function
= ncr53c8xx_timeout
;
7710 /* Try to map the controller chip to virtual and physical memory. */
7712 np
->paddr
= device
->slot
.base
;
7713 np
->paddr2
= (np
->features
& FE_RAM
) ? device
->slot
.base_2
: 0;
7715 if (device
->slot
.base_v
)
7716 np
->vaddr
= device
->slot
.base_v
;
7718 np
->vaddr
= ioremap(device
->slot
.base_c
, 128);
7722 "%s: can't map memory mapped IO region\n",ncr_name(np
));
7725 if (bootverbose
> 1)
7727 "%s: using memory mapped IO at virtual address 0x%lx\n", ncr_name(np
), (u_long
) np
->vaddr
);
7730 /* Make the controller's registers available. Now the INB INW INL
7731 * OUTB OUTW OUTL macros can be used safely.
7734 np
->reg
= (struct ncr_reg __iomem
*)np
->vaddr
;
7736 /* Do chip dependent initialization. */
7737 ncr_prepare_setting(np
);
7739 if (np
->paddr2
&& sizeof(struct script
) > 4096) {
7741 printk(KERN_WARNING
"%s: script too large, NOT using on chip RAM.\n",
7745 instance
->max_channel
= 0;
7746 instance
->this_id
= np
->myaddr
;
7747 instance
->max_id
= np
->maxwide
? 16 : 8;
7748 instance
->max_lun
= SCSI_NCR_MAX_LUN
;
7749 instance
->base
= (unsigned long) np
->reg
;
7750 instance
->irq
= device
->slot
.irq
;
7751 instance
->unique_id
= device
->slot
.base
;
7752 instance
->dma_channel
= 0;
7753 instance
->cmd_per_lun
= MAX_TAGS
;
7754 instance
->can_queue
= (MAX_START
-4);
7755 /* This can happen if you forget to call ncr53c8xx_init from
7756 * your module_init */
7757 BUG_ON(!ncr53c8xx_transport_template
);
7758 instance
->transportt
= ncr53c8xx_transport_template
;
7759 scsi_set_device(instance
, device
->dev
);
7761 /* Patch script to physical addresses */
7762 ncr_script_fill(&script0
, &scripth0
);
7764 np
->scripth
= np
->scripth0
;
7765 np
->p_scripth
= vtobus(np
->scripth
);
7766 np
->p_script
= (np
->paddr2
) ? np
->paddr2
: vtobus(np
->script0
);
7768 ncr_script_copy_and_bind(np
, (ncrcmd
*) &script0
,
7769 (ncrcmd
*) np
->script0
, sizeof(struct script
));
7770 ncr_script_copy_and_bind(np
, (ncrcmd
*) &scripth0
,
7771 (ncrcmd
*) np
->scripth0
, sizeof(struct scripth
));
7772 np
->ccb
->p_ccb
= vtobus (np
->ccb
);
7774 /* Patch the script for LED support. */
7776 if (np
->features
& FE_LED0
) {
7777 np
->script0
->idle
[0] =
7778 cpu_to_scr(SCR_REG_REG(gpreg
, SCR_OR
, 0x01));
7779 np
->script0
->reselected
[0] =
7780 cpu_to_scr(SCR_REG_REG(gpreg
, SCR_AND
, 0xfe));
7781 np
->script0
->start
[0] =
7782 cpu_to_scr(SCR_REG_REG(gpreg
, SCR_AND
, 0xfe));
7786 * Look for the target control block of this nexus.
7788 * JUMP ^ IFTRUE (MASK (i, 3)), @(next_lcb)
7790 for (i
= 0 ; i
< 4 ; i
++) {
7791 np
->jump_tcb
[i
].l_cmd
=
7792 cpu_to_scr((SCR_JUMP
^ IFTRUE (MASK (i
, 3))));
7793 np
->jump_tcb
[i
].l_paddr
=
7794 cpu_to_scr(NCB_SCRIPTH_PHYS (np
, bad_target
));
7797 ncr_chip_reset(np
, 100);
7799 /* Now check the cache handling of the chipset. */
7801 if (ncr_snooptest(np
)) {
7802 printk(KERN_ERR
"CACHE INCORRECTLY CONFIGURED.\n");
7806 /* Install the interrupt handler. */
7807 np
->irq
= device
->slot
.irq
;
7809 /* Initialize the fixed part of the default ccb. */
7810 ncr_init_ccb(np
, np
->ccb
);
7813 * After SCSI devices have been opened, we cannot reset the bus
7814 * safely, so we do it here. Interrupt handler does the real work.
7815 * Process the reset exception if interrupts are not enabled yet.
7816 * Then enable disconnects.
7818 spin_lock_irqsave(&np
->smp_lock
, flags
);
7819 if (ncr_reset_scsi_bus(np
, 0, driver_setup
.settle_delay
) != 0) {
7820 printk(KERN_ERR
"%s: FATAL ERROR: CHECK SCSI BUS - CABLES, TERMINATION, DEVICE POWER etc.!\n", ncr_name(np
));
7822 spin_unlock_irqrestore(&np
->smp_lock
, flags
);
7830 * The middle-level SCSI driver does not wait for devices to settle.
7831 * Wait synchronously if more than 2 seconds.
7833 if (driver_setup
.settle_delay
> 2) {
7834 printk(KERN_INFO
"%s: waiting %d seconds for scsi devices to settle...\n",
7835 ncr_name(np
), driver_setup
.settle_delay
);
7836 mdelay(1000 * driver_setup
.settle_delay
);
7839 /* start the timeout daemon */
7843 /* use SIMPLE TAG messages by default */
7844 #ifdef SCSI_NCR_ALWAYS_SIMPLE_TAG
7845 np
->order
= M_SIMPLE_TAG
;
7848 spin_unlock_irqrestore(&np
->smp_lock
, flags
);
7855 printk(KERN_INFO
"%s: detaching...\n", ncr_name(np
));
7859 m_free_dma(np
->scripth0
, sizeof(struct scripth
), "SCRIPTH");
7861 m_free_dma(np
->script0
, sizeof(struct script
), "SCRIPT");
7863 m_free_dma(np
->ccb
, sizeof(struct ccb
), "CCB");
7864 m_free_dma(np
, sizeof(struct ncb
), "NCB");
7865 host_data
->ncb
= NULL
;
7868 scsi_host_put(instance
);
7874 int ncr53c8xx_release(struct Scsi_Host
*host
)
7876 struct host_data
*host_data
;
7877 #ifdef DEBUG_NCR53C8XX
7878 printk("ncr53c8xx: release\n");
7882 host_data
= (struct host_data
*)host
->hostdata
;
7883 if (host_data
&& host_data
->ncb
)
7884 ncr_detach(host_data
->ncb
);
7888 static void ncr53c8xx_set_period(struct scsi_target
*starget
, int period
)
7890 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
7891 struct ncb
*np
= ((struct host_data
*)shost
->hostdata
)->ncb
;
7892 struct tcb
*tp
= &np
->target
[starget
->id
];
7894 if (period
> np
->maxsync
)
7895 period
= np
->maxsync
;
7896 else if (period
< np
->minsync
)
7897 period
= np
->minsync
;
7899 tp
->usrsync
= period
;
7901 ncr_negotiate(np
, tp
);
7904 static void ncr53c8xx_set_offset(struct scsi_target
*starget
, int offset
)
7906 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
7907 struct ncb
*np
= ((struct host_data
*)shost
->hostdata
)->ncb
;
7908 struct tcb
*tp
= &np
->target
[starget
->id
];
7910 if (offset
> np
->maxoffs
)
7911 offset
= np
->maxoffs
;
7912 else if (offset
< 0)
7915 tp
->maxoffs
= offset
;
7917 ncr_negotiate(np
, tp
);
7920 static void ncr53c8xx_set_width(struct scsi_target
*starget
, int width
)
7922 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
7923 struct ncb
*np
= ((struct host_data
*)shost
->hostdata
)->ncb
;
7924 struct tcb
*tp
= &np
->target
[starget
->id
];
7926 if (width
> np
->maxwide
)
7927 width
= np
->maxwide
;
7931 tp
->usrwide
= width
;
7933 ncr_negotiate(np
, tp
);
7936 static void ncr53c8xx_get_signalling(struct Scsi_Host
*shost
)
7938 struct ncb
*np
= ((struct host_data
*)shost
->hostdata
)->ncb
;
7939 enum spi_signal_type type
;
7941 switch (np
->scsi_mode
) {
7943 type
= SPI_SIGNAL_SE
;
7946 type
= SPI_SIGNAL_HVD
;
7949 type
= SPI_SIGNAL_UNKNOWN
;
7952 spi_signalling(shost
) = type
;
7955 static struct spi_function_template ncr53c8xx_transport_functions
= {
7956 .set_period
= ncr53c8xx_set_period
,
7958 .set_offset
= ncr53c8xx_set_offset
,
7960 .set_width
= ncr53c8xx_set_width
,
7962 .get_signalling
= ncr53c8xx_get_signalling
,
7965 int __init
ncr53c8xx_init(void)
7967 ncr53c8xx_transport_template
= spi_attach_transport(&ncr53c8xx_transport_functions
);
7968 if (!ncr53c8xx_transport_template
)
7973 void ncr53c8xx_exit(void)
7975 spi_release_transport(ncr53c8xx_transport_template
);