[SCSI] Use spi_print_msg in ncr53c8xx driver
[safe/jmp/linux-2.6] / drivers / scsi / ncr53c8xx.c
1 /******************************************************************************
2 **  Device driver for the PCI-SCSI NCR538XX controller family.
3 **
4 **  Copyright (C) 1994  Wolfgang Stanglmeier
5 **
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.
10 **
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.
15 **
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.
19 **
20 **-----------------------------------------------------------------------------
21 **
22 **  This driver has been ported to Linux from the FreeBSD NCR53C8XX driver
23 **  and is currently maintained by
24 **
25 **          Gerard Roudier              <groudier@free.fr>
26 **
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 
30 **  version.
31 **
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>
35 **
36 **  And has been ported to NetBSD by
37 **          Charles M. Hannum           <mycroft@gnu.ai.mit.edu>
38 **
39 **-----------------------------------------------------------------------------
40 **
41 **                     Brief history
42 **
43 **  December 10 1995 by Gerard Roudier:
44 **     Initial port to Linux.
45 **
46 **  June 23 1996 by Gerard Roudier:
47 **     Support for 64 bits architectures (Alpha).
48 **
49 **  November 30 1996 by Gerard Roudier:
50 **     Support for Fast-20 scsi.
51 **     Support for large DMA fifo and 128 dwords bursting.
52 **
53 **  February 27 1997 by Gerard Roudier:
54 **     Support for Fast-40 scsi.
55 **     Support for on-Board RAM.
56 **
57 **  May 3 1997 by Gerard Roudier:
58 **     Full support for scsi scripts instructions pre-fetching.
59 **
60 **  May 19 1997 by Richard Waltham <dormouse@farsrobt.demon.co.uk>:
61 **     Support for NvRAM detection and reading.
62 **
63 **  August 18 1997 by Cort <cort@cs.nmt.edu>:
64 **     Support for Power/PC (Big Endian).
65 **
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.
71 **
72 *******************************************************************************
73 */
74
75 /*
76 **      Supported SCSI-II features:
77 **          Synchronous negotiation
78 **          Wide negotiation        (depends on the NCR Chip)
79 **          Enable disconnection
80 **          Tagged command queuing
81 **          Parity checking
82 **          Etc...
83 **
84 **      Supported NCR/SYMBIOS chips:
85 **              53C720          (Wide,   Fast SCSI-2, intfly problems)
86 */
87
88 /* Name and version of the driver */
89 #define SCSI_NCR_DRIVER_NAME    "ncr53c8xx-3.4.3g"
90
91 #define SCSI_NCR_DEBUG_FLAGS    (0)
92
93 /*==========================================================
94 **
95 **      Include files
96 **
97 **==========================================================
98 */
99
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>
117
118 #include <asm/dma.h>
119 #include <asm/io.h>
120 #include <asm/system.h>
121
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>
128
129 #include "ncr53c8xx.h"
130
131 #define NAME53C                 "ncr53c"
132 #define NAME53C8XX              "ncr53c8xx"
133
134 #include "sym53c8xx_comm.h"
135
136
137 /*==========================================================
138 **
139 **      The CCB done queue uses an array of CCB virtual 
140 **      addresses. Empty entries are flagged using the bogus 
141 **      virtual address 0xffffffff.
142 **
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.
147 **
148 **      BTW, I will make things differently as soon as I will 
149 **      have a better idea, but this is simple and should work.
150 **
151 **==========================================================
152 */
153  
154 #define SCSI_NCR_CCB_DONE_SUPPORT
155 #ifdef  SCSI_NCR_CCB_DONE_SUPPORT
156
157 #define MAX_DONE 24
158 #define CCB_DONE_EMPTY 0xffffffffUL
159
160 /* All 32 bit architectures */
161 #if BITS_PER_LONG == 32
162 #define CCB_DONE_VALID(cp)  (((u_long) cp) != CCB_DONE_EMPTY)
163
164 /* All > 32 bit (64 bit) architectures regardless endian-ness */
165 #else
166 #define CCB_DONE_VALID(cp)  \
167         ((((u_long) cp) & 0xffffffff00000000ul) &&      \
168          (((u_long) cp) & 0xfffffffful) != CCB_DONE_EMPTY)
169 #endif
170
171 #endif /* SCSI_NCR_CCB_DONE_SUPPORT */
172
173 /*==========================================================
174 **
175 **      Configuration and Debugging
176 **
177 **==========================================================
178 */
179
180 /*
181 **    SCSI address of this device.
182 **    The boot routines should have set it.
183 **    If not, use this.
184 */
185
186 #ifndef SCSI_NCR_MYADDR
187 #define SCSI_NCR_MYADDR      (7)
188 #endif
189
190 /*
191 **    The maximum number of tags per logic unit.
192 **    Used only for disk devices that support tags.
193 */
194
195 #ifndef SCSI_NCR_MAX_TAGS
196 #define SCSI_NCR_MAX_TAGS    (8)
197 #endif
198
199 /*
200 **    TAGS are actually limited to 64 tags/lun.
201 **    We need to deal with power of 2, for alignment constraints.
202 */
203 #if     SCSI_NCR_MAX_TAGS > 64
204 #define MAX_TAGS (64)
205 #else
206 #define MAX_TAGS SCSI_NCR_MAX_TAGS
207 #endif
208
209 #define NO_TAG  (255)
210
211 /*
212 **      Choose appropriate type for tag bitmap.
213 */
214 #if     MAX_TAGS > 32
215 typedef u64 tagmap_t;
216 #else
217 typedef u32 tagmap_t;
218 #endif
219
220 /*
221 **    Number of targets supported by the driver.
222 **    n permits target numbers 0..n-1.
223 **    Default is 16, meaning targets #0..#15.
224 **    #7 .. is myself.
225 */
226
227 #ifdef SCSI_NCR_MAX_TARGET
228 #define MAX_TARGET  (SCSI_NCR_MAX_TARGET)
229 #else
230 #define MAX_TARGET  (16)
231 #endif
232
233 /*
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.
238 */
239
240 #ifdef SCSI_NCR_MAX_LUN
241 #define MAX_LUN    SCSI_NCR_MAX_LUN
242 #else
243 #define MAX_LUN    (1)
244 #endif
245
246 /*
247 **    Asynchronous pre-scaler (ns). Shall be 40
248 */
249  
250 #ifndef SCSI_NCR_MIN_ASYNC
251 #define SCSI_NCR_MIN_ASYNC (40)
252 #endif
253
254 /*
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 ...
259 */
260
261 #ifdef SCSI_NCR_CAN_QUEUE
262 #define MAX_START   (SCSI_NCR_CAN_QUEUE + 4)
263 #else
264 #define MAX_START   (MAX_TARGET + 7 * MAX_TAGS)
265 #endif
266
267 /*
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'.
271 */
272 #if     MAX_START > 250
273 #undef  MAX_START
274 #define MAX_START 250
275 #endif
276
277 /*
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.
284 */
285
286 #define MAX_SCATTER (SCSI_NCR_MAX_SCATTER)
287
288 #if (MAX_SCATTER > 80)
289 #define MAX_SCATTERL    80
290 #define MAX_SCATTERH    (MAX_SCATTER - MAX_SCATTERL)
291 #else
292 #define MAX_SCATTERL    (MAX_SCATTER-1)
293 #define MAX_SCATTERH    1
294 #endif
295
296 /*
297 **      other
298 */
299
300 #define NCR_SNOOP_TIMEOUT (1000000)
301
302 /*
303 **      Other definitions
304 */
305
306 #define ScsiResult(host_code, scsi_code) (((host_code) << 16) + ((scsi_code) & 0x7f))
307
308 #define initverbose (driver_setup.verbose)
309 #define bootverbose (np->verbose)
310
311 /*==========================================================
312 **
313 **      Command control block states.
314 **
315 **==========================================================
316 */
317
318 #define HS_IDLE         (0)
319 #define HS_BUSY         (1)
320 #define HS_NEGOTIATE    (2)     /* sync/wide data transfer*/
321 #define HS_DISCONNECT   (3)     /* Disconnected by target */
322
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  */
331
332 /*
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.
336 */
337
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)
342
343 /*
344 **      Flags set by the SCRIPT processor for commands 
345 **      that have been skipped.
346 */
347 #define HS_SKIPMASK     (0x20)
348
349 /*==========================================================
350 **
351 **      Software Interrupt Codes
352 **
353 **==========================================================
354 */
355
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)
374 #define SIR_MAX                 (18)
375
376 /*==========================================================
377 **
378 **      Extended error codes.
379 **      xerr_status field of struct ccb.
380 **
381 **==========================================================
382 */
383
384 #define XE_OK           (0)
385 #define XE_EXTRA_DATA   (1)     /* unexpected data phase */
386 #define XE_BAD_PHASE    (2)     /* illegal phase (4/5)   */
387
388 /*==========================================================
389 **
390 **      Negotiation status.
391 **      nego_status field       of struct ccb.
392 **
393 **==========================================================
394 */
395
396 #define NS_NOCHANGE     (0)
397 #define NS_SYNC         (1)
398 #define NS_WIDE         (2)
399 #define NS_PPR          (4)
400
401 /*==========================================================
402 **
403 **      Misc.
404 **
405 **==========================================================
406 */
407
408 #define CCB_MAGIC       (0xf2691ad2)
409
410 /*==========================================================
411 **
412 **      Declaration of structs.
413 **
414 **==========================================================
415 */
416
417 static struct scsi_transport_template *ncr53c8xx_transport_template = NULL;
418
419 struct tcb;
420 struct lcb;
421 struct ccb;
422 struct ncb;
423 struct script;
424
425 struct link {
426         ncrcmd  l_cmd;
427         ncrcmd  l_paddr;
428 };
429
430 struct  usrcmd {
431         u_long  target;
432         u_long  lun;
433         u_long  data;
434         u_long  cmd;
435 };
436
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
444
445 #define UF_TRACE        (0x01)
446 #define UF_NODISC       (0x02)
447 #define UF_NOSCAN       (0x04)
448
449 /*========================================================================
450 **
451 **      Declaration of structs:         target control block
452 **
453 **========================================================================
454 */
455 struct tcb {
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.
460         **
461         **      JUMP  IF (SFBR != #target#), @(next tcb)
462         **----------------------------------------------------------------
463         */
464         struct link   jump_tcb;
465
466         /*----------------------------------------------------------------
467         **      Load the actual values for the sxfer and the scntl3
468         **      register (sync/wide mode).
469         **
470         **      SCR_COPY (1), @(sval field of this tcb), @(sxfer  register)
471         **      SCR_COPY (1), @(wval field of this tcb), @(scntl3 register)
472         **----------------------------------------------------------------
473         */
474         ncrcmd  getscr[6];
475
476         /*----------------------------------------------------------------
477         **      Get the IDENTIFY message and load the LUN to SFBR.
478         **
479         **      CALL, <RESEL_LUN>
480         **----------------------------------------------------------------
481         */
482         struct link   call_lun;
483
484         /*----------------------------------------------------------------
485         **      Now look for the right lun.
486         **
487         **      For i = 0 to 3
488         **              SCR_JUMP ^ IFTRUE(MASK(i, 3)), @(first lcb mod. i)
489         **
490         **      Recent chips will prefetch the 4 JUMPS using only 1 burst.
491         **      It is kind of hashcoding.
492         **----------------------------------------------------------------
493         */
494         struct link     jump_lcb[4];    /* JUMPs for reselection        */
495         struct lcb *    lp[MAX_LUN];    /* The lcb's of this tcb        */
496
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         **----------------------------------------------------------------
502         */
503         struct ccb *   nego_cp;
504
505         /*----------------------------------------------------------------
506         **      statistical data
507         **----------------------------------------------------------------
508         */
509         u_long  transfers;
510         u_long  bytes;
511
512         /*----------------------------------------------------------------
513         **      negotiation of wide and synch transfer and device quirks.
514         **----------------------------------------------------------------
515         */
516 #ifdef SCSI_NCR_BIG_ENDIAN
517 /*0*/   u16     period;
518 /*2*/   u_char  sval;
519 /*3*/   u_char  minsync;
520 /*0*/   u_char  wval;
521 /*1*/   u_char  widedone;
522 /*2*/   u_char  quirks;
523 /*3*/   u_char  maxoffs;
524 #else
525 /*0*/   u_char  minsync;
526 /*1*/   u_char  sval;
527 /*2*/   u16     period;
528 /*0*/   u_char  maxoffs;
529 /*1*/   u_char  quirks;
530 /*2*/   u_char  widedone;
531 /*3*/   u_char  wval;
532 #endif
533
534         /* User settable limits and options.  */
535         u_char  usrsync;
536         u_char  usrwide;
537         u_char  usrtags;
538         u_char  usrflag;
539         struct scsi_target *starget;
540 };
541
542 /*========================================================================
543 **
544 **      Declaration of structs:         lun control block
545 **
546 **========================================================================
547 */
548 struct lcb {
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.
553         **
554         **      JUMP  IF (SFBR != #lun#), @(next lcb of this target)
555         **
556         **      It is this lun. Load TEMP with the nexus jumps table 
557         **      address and jump to RESEL_TAG (or RESEL_NOTAG).
558         **
559         **              SCR_COPY (4), p_jump_ccb, TEMP,
560         **              SCR_JUMP, <RESEL_TAG>
561         **----------------------------------------------------------------
562         */
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       */
567
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 
573         **      64 possible tags.
574         **----------------------------------------------------------------
575         */
576         u32             jump_ccb_0;     /* Default table if no tags     */
577         u32             *jump_ccb;      /* Virtual address              */
578
579         /*----------------------------------------------------------------
580         **      CCB queue management.
581         **----------------------------------------------------------------
582         */
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         */
593
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         **----------------------------------------------------------------
599         */
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       */
606
607         /*----------------------------------------------------------------
608         **      QUEUE FULL control and ORDERED tag control.
609         **----------------------------------------------------------------
610         */
611         /*----------------------------------------------------------------
612         **      QUEUE FULL and ORDERED tag control.
613         **----------------------------------------------------------------
614         */
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      */
620 };
621
622 /*========================================================================
623 **
624 **      Declaration of structs:     the launch script.
625 **
626 **========================================================================
627 **
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.
631 **
632 **------------------------------------------------------------------------
633 */
634 struct launch {
635         /*----------------------------------------------------------------
636         **      SCR_COPY(4),    @(p_phys), @(dsa register)
637         **      SCR_JUMP,       @(scheduler_point)
638         **----------------------------------------------------------------
639         */
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    */
643 };
644
645 /*========================================================================
646 **
647 **      Declaration of structs:     global HEADER.
648 **
649 **========================================================================
650 **
651 **      This substructure is copied from the ccb to a global address after 
652 **      selection (or reselection) and copied back before disconnect.
653 **
654 **      These fields are accessible to the script processor.
655 **
656 **------------------------------------------------------------------------
657 */
658
659 struct head {
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         **----------------------------------------------------------------
667         */
668         u32             savep;
669         u32             lastp;
670         u32             goalp;
671
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         **----------------------------------------------------------------
677         */
678         u32             wlastp;
679         u32             wgoalp;
680
681         /*----------------------------------------------------------------
682         **      The virtual address of the ccb containing this header.
683         **----------------------------------------------------------------
684         */
685         struct ccb *    cp;
686
687         /*----------------------------------------------------------------
688         **      Status fields.
689         **----------------------------------------------------------------
690         */
691         u_char          scr_st[4];      /* script status                */
692         u_char          status[4];      /* host status. must be the     */
693                                         /*  last DWORD of the header.   */
694 };
695
696 /*
697 **      The status bytes are used by the host and the script processor.
698 **
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.
704 **
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.
709 **
710 **      The first four bytes (scr_st[4]) are used inside the script by 
711 **      "COPY" commands.
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
717 */
718
719 /*
720 **      Last four bytes (script)
721 */
722 #define  QU_REG scr0
723 #define  HS_REG scr1
724 #define  HS_PRT nc_scr1
725 #define  SS_REG scr2
726 #define  SS_PRT nc_scr2
727 #define  PS_REG scr3
728
729 /*
730 **      Last four bytes (host)
731 */
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]
737 #else
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]
742 #endif
743
744 /*
745 **      First four bytes (script)
746 */
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]
751
752 /*
753 **      First four bytes (host)
754 */
755 #define  xerr_status   phys.xerr_st
756 #define  nego_status   phys.nego_st
757
758 #if 0
759 #define  sync_status   phys.sync_st
760 #define  wide_status   phys.wide_st
761 #endif
762
763 /*==========================================================
764 **
765 **      Declaration of structs:     Data structure block
766 **
767 **==========================================================
768 **
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.
775 **
776 **----------------------------------------------------------
777 */
778
779 struct dsb {
780
781         /*
782         **      Header.
783         */
784
785         struct head     header;
786
787         /*
788         **      Table data for Script
789         */
790
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];
796 };
797
798
799 /*========================================================================
800 **
801 **      Declaration of structs:     Command control block.
802 **
803 **========================================================================
804 */
805 struct ccb {
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         **----------------------------------------------------------------
812         */
813         struct dsb      phys;
814
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         **----------------------------------------------------------------
820         */
821         struct launch   start;
822
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         **----------------------------------------------------------------
828         */
829         struct launch   restart;
830
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         **----------------------------------------------------------------
837         */
838         ncrcmd          patch[8];
839
840         /*----------------------------------------------------------------
841         **      The general SCSI driver provides a
842         **      pointer to a control block.
843         **----------------------------------------------------------------
844         */
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            */
849
850         /*----------------------------------------------------------------
851         **      Message areas.
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         **----------------------------------------------------------------
859         */
860         u_char          scsi_smsg [8];
861         u_char          scsi_smsg2[8];
862
863         /*----------------------------------------------------------------
864         **      Other fields.
865         **----------------------------------------------------------------
866         */
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            */
871         u_char          target;
872         u_char          lun;
873         u_char          queued;
874         u_char          auto_sense;
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        */
879 };
880
881 #define CCB_PHYS(cp,lbl)        (cp->p_ccb + offsetof(struct ccb, lbl))
882
883
884 /*========================================================================
885 **
886 **      Declaration of structs:     NCR device descriptor
887 **
888 **========================================================================
889 */
890 struct ncb {
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         **----------------------------------------------------------------
897         */
898         struct head     header;
899
900         /*----------------------------------------------------------------
901         **      CCBs management queues.
902         **----------------------------------------------------------------
903         */
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       */
909
910         /*----------------------------------------------------------------
911         **      Chip and controller indentification.
912         **----------------------------------------------------------------
913         */
914         int             unit;           /* Unit number                  */
915         char            inst_name[16];  /* ncb instance name            */
916
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         **----------------------------------------------------------------
922         */
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;
925
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         **----------------------------------------------------------------
931         */
932         u_char  rv_scntl0, rv_scntl3, rv_dmode, rv_dcntl, rv_ctest0, rv_ctest3,
933                 rv_ctest4, rv_ctest5, rv_stest2;
934
935         /*----------------------------------------------------------------
936         **      Targets management.
937         **      During reselection the ncr jumps to jump_tcb.
938         **      The SFBR register is loaded with the encoded target id.
939         **      For i = 0 to 3
940         **              SCR_JUMP ^ IFTRUE(MASK(i, 3)), @(next tcb mod. i)
941         **
942         **      Recent chips will prefetch the 4 JUMPS using only 1 burst.
943         **      It is kind of hashcoding.
944         **----------------------------------------------------------------
945         */
946         struct link     jump_tcb[4];    /* JUMPs for reselection        */
947         struct tcb  target[MAX_TARGET]; /* Target data                  */
948
949         /*----------------------------------------------------------------
950         **      Virtual and physical bus addresses of the chip.
951         **----------------------------------------------------------------
952         */
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.           */
958
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         **----------------------------------------------------------------
964         */
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.              */
970
971         /*----------------------------------------------------------------
972         **      General controller parameters and configuration.
973         **----------------------------------------------------------------
974         */
975         struct device   *dev;
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  */
988
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         **----------------------------------------------------------------
994         */
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            */
999
1000         /*----------------------------------------------------------------
1001         **      Timeout handler.
1002         **----------------------------------------------------------------
1003         */
1004         struct timer_list timer;        /* Timer handler link header    */
1005         u_long          lasttime;
1006         u_long          settle_time;    /* Resetting the SCSI BUS       */
1007
1008         /*----------------------------------------------------------------
1009         **      Debugging and profiling.
1010         **----------------------------------------------------------------
1011         */
1012         struct ncr_reg  regdump;        /* Register dump                */
1013         u_long          regtime;        /* Time it has been done        */
1014
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         **----------------------------------------------------------------
1020         */
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     */
1025
1026         /*----------------------------------------------------------------
1027         **      Miscellaneous configuration and status parameters.
1028         **----------------------------------------------------------------
1029         */
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      */
1036
1037         /*----------------------------------------------------------------
1038         **      Command completion handling.
1039         **----------------------------------------------------------------
1040         */
1041 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
1042         struct ccb      *(ccb_done[MAX_DONE]);
1043         int             ccb_done_ic;
1044 #endif
1045         /*----------------------------------------------------------------
1046         **      Fields that should be removed or changed.
1047         **----------------------------------------------------------------
1048         */
1049         struct ccb      *ccb;           /* Global CCB                   */
1050         struct usrcmd   user;           /* Command from user            */
1051         volatile u_char release_stage;  /* Synchronisation stage on release  */
1052 };
1053
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))
1056
1057 /*==========================================================
1058 **
1059 **
1060 **      Script for NCR-Processor.
1061 **
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.
1065 **
1066 **
1067 **==========================================================
1068 **
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!
1074 **
1075 **----------------------------------------------------------
1076 */
1077
1078 /*
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.
1085 */
1086
1087 #ifdef CONFIG_NCR53C8XX_PREFETCH
1088 #define PREFETCH_FLUSH_CNT      2
1089 #define PREFETCH_FLUSH          SCR_CALL, PADDRH (wait_dma),
1090 #else
1091 #define PREFETCH_FLUSH_CNT      0
1092 #define PREFETCH_FLUSH
1093 #endif
1094
1095 /*
1096 **      Script fragments which are loaded into the on-chip RAM 
1097 **      of 825A, 875 and 895 chips.
1098 */
1099 struct script {
1100         ncrcmd  start           [  5];
1101         ncrcmd  startpos        [  1];
1102         ncrcmd  select          [  6];
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];
1110         ncrcmd  clrack          [  4];
1111         ncrcmd  no_data         [ 17];
1112         ncrcmd  status          [  8];
1113         ncrcmd  msg_in          [  2];
1114         ncrcmd  msg_in2         [ 16];
1115         ncrcmd  msg_bad         [  4];
1116         ncrcmd  setmsg          [  7];
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];
1123 #else
1124         ncrcmd  signal          [  9];
1125         ncrcmd  done_pos        [  1];
1126         ncrcmd  done_plug       [  2];
1127         ncrcmd  done_end        [  7];
1128 #endif
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];
1134         ncrcmd  idle            [  2];
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];
1148 };
1149
1150 /*
1151 **      Script fragments which stay in main memory for all chips.
1152 */
1153 struct scripth {
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];
1159 #endif
1160         ncrcmd  select_no_atn   [  8];
1161         ncrcmd  cancel          [  4];
1162         ncrcmd  skip            [  9 + PREFETCH_FLUSH_CNT];
1163         ncrcmd  skip2           [ 19];
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];
1181         ncrcmd  reset           [  4];
1182         ncrcmd  aborttag        [  4];
1183         ncrcmd  abort           [  2];
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];
1201 };
1202
1203 /*==========================================================
1204 **
1205 **
1206 **      Function headers.
1207 **
1208 **
1209 **==========================================================
1210 */
1211
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);
1232
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);
1247
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);
1251
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)
1256
1257 static inline char *ncr_name (struct ncb *np)
1258 {
1259         return np->inst_name;
1260 }
1261
1262
1263 /*==========================================================
1264 **
1265 **
1266 **      Scripts for NCR-Processor.
1267 **
1268 **      Use ncr_script_bind for binding to physical addresses.
1269 **
1270 **
1271 **==========================================================
1272 **
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
1277 **              with offset.
1278 **
1279 **----------------------------------------------------------
1280 */
1281
1282 #define RELOC_SOFTC     0x40000000
1283 #define RELOC_LABEL     0x50000000
1284 #define RELOC_REGISTER  0x60000000
1285 #if 0
1286 #define RELOC_KVAR      0x70000000
1287 #endif
1288 #define RELOC_LABELH    0x80000000
1289 #define RELOC_MASK      0xf0000000
1290
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)))
1296 #if 0
1297 #define KVAR(which)     (RELOC_KVAR | (which))
1298 #endif
1299
1300 #if 0
1301 #define SCRIPT_KVAR_JIFFIES     (0)
1302 #define SCRIPT_KVAR_FIRST               SCRIPT_KVAR_JIFFIES
1303 #define SCRIPT_KVAR_LAST                SCRIPT_KVAR_JIFFIES
1304 /*
1305  * Kernel variables referenced in the scripts.
1306  * THESE MUST ALL BE ALIGNED TO A 4-BYTE BOUNDARY.
1307  */
1308 static void *script_kvars[] __initdata =
1309         { (void *)&jiffies };
1310 #endif
1311
1312 static  struct script script0 __initdata = {
1313 /*--------------------------< START >-----------------------*/ {
1314         /*
1315         **      This NOP will be patched with LED ON
1316         **      SCR_REG_REG (gpreg, SCR_AND, 0xfe)
1317         */
1318         SCR_NO_OP,
1319                 0,
1320         /*
1321         **      Clear SIGP.
1322         */
1323         SCR_FROM_REG (ctest2),
1324                 0,
1325         /*
1326         **      Then jump to a certain point in tryloop.
1327         **      Due to the lack of indirect addressing the code
1328         **      is self modifying here.
1329         */
1330         SCR_JUMP,
1331 }/*-------------------------< STARTPOS >--------------------*/,{
1332                 PADDRH(tryloop),
1333
1334 }/*-------------------------< SELECT >----------------------*/,{
1335         /*
1336         **      DSA     contains the address of a scheduled
1337         **              data structure.
1338         **
1339         **      SCRATCHA contains the address of the script,
1340         **              which starts the next entry.
1341         **
1342         **      Set Initiator mode.
1343         **
1344         **      (Target mode is left as an exercise for the reader)
1345         */
1346
1347         SCR_CLR (SCR_TRG),
1348                 0,
1349         SCR_LOAD_REG (HS_REG, HS_SELECTING),
1350                 0,
1351
1352         /*
1353         **      And try to select this target.
1354         */
1355         SCR_SEL_TBL_ATN ^ offsetof (struct dsb, select),
1356                 PADDR (reselect),
1357
1358 }/*-------------------------< SELECT2 >----------------------*/,{
1359         /*
1360         **      Now there are 4 possibilities:
1361         **
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!)
1366         **
1367         **      (2) The ncr is reselected.
1368         **      Then the script processor takes the jump
1369         **      to the RESELECT label.
1370         **
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.
1379         */
1380
1381         /*
1382         **      The M_REJECT problem seems to be due to a selection 
1383         **      timing problem.
1384         **      Wait immediately for the selection to complete. 
1385         **      (2.5x behaves so)
1386         */
1387         SCR_JUMPR ^ IFFALSE (WHEN (SCR_MSG_OUT)),
1388                 0,
1389
1390         /*
1391         **      Next time use the next slot.
1392         */
1393         SCR_COPY (4),
1394                 RADDR (temp),
1395                 PADDR (startpos),
1396         /*
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.
1401         **
1402         **      We patch the address part of a
1403         **      COPY command with the DSA-register.
1404         */
1405         SCR_COPY_F (4),
1406                 RADDR (dsa),
1407                 PADDR (loadpos),
1408         /*
1409         **      Flush script prefetch if required
1410         */
1411         PREFETCH_FLUSH
1412         /*
1413         **      then we do the actual copy.
1414         */
1415         SCR_COPY (sizeof (struct head)),
1416         /*
1417         **      continued after the next label ...
1418         */
1419 }/*-------------------------< LOADPOS >---------------------*/,{
1420                 0,
1421                 NADDR (header),
1422         /*
1423         **      Wait for the next phase or the selection
1424         **      to complete or time-out.
1425         */
1426         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_OUT)),
1427                 PADDR (prepare),
1428
1429 }/*-------------------------< SEND_IDENT >----------------------*/,{
1430         /*
1431         **      Selection complete.
1432         **      Send the IDENTIFY and SIMPLE_TAG messages
1433         **      (and the M_X_SYNC_REQ message)
1434         */
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),
1440                 0,
1441         SCR_COPY (1),
1442                 RADDR (scratcha),
1443                 NADDR (lastmsg),
1444 }/*-------------------------< PREPARE >----------------------*/,{
1445         /*
1446         **      load the savep (saved pointer) into
1447         **      the TEMP register (actual pointer)
1448         */
1449         SCR_COPY (4),
1450                 NADDR (header.savep),
1451                 RADDR (temp),
1452         /*
1453         **      Initialize the status registers
1454         */
1455         SCR_COPY (4),
1456                 NADDR (header.status),
1457                 RADDR (scr0),
1458 }/*-------------------------< PREPARE2 >---------------------*/,{
1459         /*
1460         **      Initialize the msgout buffer with a NOOP message.
1461         */
1462         SCR_LOAD_REG (scratcha, M_NOOP),
1463                 0,
1464         SCR_COPY (1),
1465                 RADDR (scratcha),
1466                 NADDR (msgout),
1467 #if 0
1468         SCR_COPY (1),
1469                 RADDR (scratcha),
1470                 NADDR (msgin),
1471 #endif
1472         /*
1473         **      Anticipate the COMMAND phase.
1474         **      This is the normal case for initial selection.
1475         */
1476         SCR_JUMP ^ IFFALSE (WHEN (SCR_COMMAND)),
1477                 PADDR (dispatch),
1478
1479 }/*-------------------------< COMMAND >--------------------*/,{
1480         /*
1481         **      ... and send the command
1482         */
1483         SCR_MOVE_TBL ^ SCR_COMMAND,
1484                 offsetof (struct dsb, cmd),
1485         /*
1486         **      If status is still HS_NEGOTIATE, negotiation failed.
1487         **      We check this here, since we want to do that 
1488         **      only once.
1489         */
1490         SCR_FROM_REG (HS_REG),
1491                 0,
1492         SCR_INT ^ IFTRUE (DATA (HS_NEGOTIATE)),
1493                 SIR_NEGO_FAILED,
1494
1495 }/*-----------------------< DISPATCH >----------------------*/,{
1496         /*
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.
1500         */
1501         SCR_JUMP ^ IFTRUE (WHEN (SCR_MSG_IN)),
1502                 PADDR (msg_in),
1503
1504         SCR_RETURN ^ IFTRUE (IF (SCR_DATA_OUT)),
1505                 0,
1506         /*
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)
1512         */
1513         SCR_JUMPR ^ IFFALSE (IF (SCR_DATA_IN)),
1514                 20,
1515         SCR_COPY (4),
1516                 RADDR (scratcha),
1517                 RADDR (scratcha),
1518         SCR_RETURN,
1519                 0,
1520         SCR_JUMP ^ IFTRUE (IF (SCR_STATUS)),
1521                 PADDR (status),
1522         SCR_JUMP ^ IFTRUE (IF (SCR_COMMAND)),
1523                 PADDR (command),
1524         SCR_JUMP ^ IFTRUE (IF (SCR_MSG_OUT)),
1525                 PADDR (msg_out),
1526         /*
1527         **      Discard one illegal phase byte, if required.
1528         */
1529         SCR_LOAD_REG (scratcha, XE_BAD_PHASE),
1530                 0,
1531         SCR_COPY (1),
1532                 RADDR (scratcha),
1533                 NADDR (xerr_st),
1534         SCR_JUMPR ^ IFFALSE (IF (SCR_ILG_OUT)),
1535                 8,
1536         SCR_MOVE_ABS (1) ^ SCR_ILG_OUT,
1537                 NADDR (scratch),
1538         SCR_JUMPR ^ IFFALSE (IF (SCR_ILG_IN)),
1539                 8,
1540         SCR_MOVE_ABS (1) ^ SCR_ILG_IN,
1541                 NADDR (scratch),
1542         SCR_JUMP,
1543                 PADDR (dispatch),
1544
1545 }/*-------------------------< CLRACK >----------------------*/,{
1546         /*
1547         **      Terminate possible pending message phase.
1548         */
1549         SCR_CLR (SCR_ACK),
1550                 0,
1551         SCR_JUMP,
1552                 PADDR (dispatch),
1553
1554 }/*-------------------------< NO_DATA >--------------------*/,{
1555         /*
1556         **      The target wants to tranfer too much data
1557         **      or in the wrong direction.
1558         **      Remember that in extended error.
1559         */
1560         SCR_LOAD_REG (scratcha, XE_EXTRA_DATA),
1561                 0,
1562         SCR_COPY (1),
1563                 RADDR (scratcha),
1564                 NADDR (xerr_st),
1565         /*
1566         **      Discard one data byte, if required.
1567         */
1568         SCR_JUMPR ^ IFFALSE (WHEN (SCR_DATA_OUT)),
1569                 8,
1570         SCR_MOVE_ABS (1) ^ SCR_DATA_OUT,
1571                 NADDR (scratch),
1572         SCR_JUMPR ^ IFFALSE (IF (SCR_DATA_IN)),
1573                 8,
1574         SCR_MOVE_ABS (1) ^ SCR_DATA_IN,
1575                 NADDR (scratch),
1576         /*
1577         **      .. and repeat as required.
1578         */
1579         SCR_CALL,
1580                 PADDR (dispatch),
1581         SCR_JUMP,
1582                 PADDR (no_data),
1583
1584 }/*-------------------------< STATUS >--------------------*/,{
1585         /*
1586         **      get the status
1587         */
1588         SCR_MOVE_ABS (1) ^ SCR_STATUS,
1589                 NADDR (scratch),
1590         /*
1591         **      save status to scsi_status.
1592         **      mark as complete.
1593         */
1594         SCR_TO_REG (SS_REG),
1595                 0,
1596         SCR_LOAD_REG (HS_REG, HS_COMPLETE),
1597                 0,
1598         SCR_JUMP,
1599                 PADDR (dispatch),
1600 }/*-------------------------< MSG_IN >--------------------*/,{
1601         /*
1602         **      Get the first byte of the message
1603         **      and save it to SCRATCHA.
1604         **
1605         **      The script processor doesn't negate the
1606         **      ACK signal after this transfer.
1607         */
1608         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
1609                 NADDR (msgin[0]),
1610 }/*-------------------------< MSG_IN2 >--------------------*/,{
1611         /*
1612         **      Handle this message.
1613         */
1614         SCR_JUMP ^ IFTRUE (DATA (M_COMPLETE)),
1615                 PADDR (complete),
1616         SCR_JUMP ^ IFTRUE (DATA (M_DISCONNECT)),
1617                 PADDR (disconnect),
1618         SCR_JUMP ^ IFTRUE (DATA (M_SAVE_DP)),
1619                 PADDR (save_dp),
1620         SCR_JUMP ^ IFTRUE (DATA (M_RESTORE_DP)),
1621                 PADDR (restore_dp),
1622         SCR_JUMP ^ IFTRUE (DATA (M_EXTENDED)),
1623                 PADDRH (msg_extended),
1624         SCR_JUMP ^ IFTRUE (DATA (M_NOOP)),
1625                 PADDR (clrack),
1626         SCR_JUMP ^ IFTRUE (DATA (M_REJECT)),
1627                 PADDRH (msg_reject),
1628         SCR_JUMP ^ IFTRUE (DATA (M_IGN_RESIDUE)),
1629                 PADDRH (msg_ign_residue),
1630         /*
1631         **      Rest of the messages left as
1632         **      an exercise ...
1633         **
1634         **      Unimplemented messages:
1635         **      fall through to MSG_BAD.
1636         */
1637 }/*-------------------------< MSG_BAD >------------------*/,{
1638         /*
1639         **      unimplemented message - reject it.
1640         */
1641         SCR_INT,
1642                 SIR_REJECT_SENT,
1643         SCR_LOAD_REG (scratcha, M_REJECT),
1644                 0,
1645 }/*-------------------------< SETMSG >----------------------*/,{
1646         SCR_COPY (1),
1647                 RADDR (scratcha),
1648                 NADDR (msgout),
1649         SCR_SET (SCR_ATN),
1650                 0,
1651         SCR_JUMP,
1652                 PADDR (clrack),
1653 }/*-------------------------< CLEANUP >-------------------*/,{
1654         /*
1655         **      dsa:    Pointer to ccb
1656         **            or xxxxxxFF (no ccb)
1657         **
1658         **      HS_REG:   Host-Status (<>0!)
1659         */
1660         SCR_FROM_REG (dsa),
1661                 0,
1662         SCR_JUMP ^ IFTRUE (DATA (0xff)),
1663                 PADDR (start),
1664         /*
1665         **      dsa is valid.
1666         **      complete the cleanup.
1667         */
1668         SCR_JUMP,
1669                 PADDR (cleanup_ok),
1670
1671 }/*-------------------------< COMPLETE >-----------------*/,{
1672         /*
1673         **      Complete message.
1674         **
1675         **      Copy TEMP register to LASTP in header.
1676         */
1677         SCR_COPY (4),
1678                 RADDR (temp),
1679                 NADDR (header.lastp),
1680         /*
1681         **      When we terminate the cycle by clearing ACK,
1682         **      the target may disconnect immediately.
1683         **
1684         **      We don't want to be told of an
1685         **      "unexpected disconnect",
1686         **      so we disable this feature.
1687         */
1688         SCR_REG_REG (scntl2, SCR_AND, 0x7f),
1689                 0,
1690         /*
1691         **      Terminate cycle ...
1692         */
1693         SCR_CLR (SCR_ACK|SCR_ATN),
1694                 0,
1695         /*
1696         **      ... and wait for the disconnect.
1697         */
1698         SCR_WAIT_DISC,
1699                 0,
1700 }/*-------------------------< CLEANUP_OK >----------------*/,{
1701         /*
1702         **      Save host status to header.
1703         */
1704         SCR_COPY (4),
1705                 RADDR (scr0),
1706                 NADDR (header.status),
1707         /*
1708         **      and copy back the header to the ccb.
1709         */
1710         SCR_COPY_F (4),
1711                 RADDR (dsa),
1712                 PADDR (cleanup0),
1713         /*
1714         **      Flush script prefetch if required
1715         */
1716         PREFETCH_FLUSH
1717         SCR_COPY (sizeof (struct head)),
1718                 NADDR (header),
1719 }/*-------------------------< CLEANUP0 >--------------------*/,{
1720                 0,
1721 }/*-------------------------< SIGNAL >----------------------*/,{
1722         /*
1723         **      if job not completed ...
1724         */
1725         SCR_FROM_REG (HS_REG),
1726                 0,
1727         /*
1728         **      ... start the next command.
1729         */
1730         SCR_JUMP ^ IFTRUE (MASK (0, (HS_DONEMASK|HS_SKIPMASK))),
1731                 PADDR(start),
1732         /*
1733         **      If command resulted in not GOOD status,
1734         **      call the C code if needed.
1735         */
1736         SCR_FROM_REG (SS_REG),
1737                 0,
1738         SCR_CALL ^ IFFALSE (DATA (S_GOOD)),
1739                 PADDRH (bad_status),
1740
1741 #ifndef SCSI_NCR_CCB_DONE_SUPPORT
1742
1743         /*
1744         **      ... signal completion to the host
1745         */
1746         SCR_INT,
1747                 SIR_INTFLY,
1748         /*
1749         **      Auf zu neuen Schandtaten!
1750         */
1751         SCR_JUMP,
1752                 PADDR(start),
1753
1754 #else   /* defined SCSI_NCR_CCB_DONE_SUPPORT */
1755
1756         /*
1757         **      ... signal completion to the host
1758         */
1759         SCR_JUMP,
1760 }/*------------------------< DONE_POS >---------------------*/,{
1761                 PADDRH (done_queue),
1762 }/*------------------------< DONE_PLUG >--------------------*/,{
1763         SCR_INT,
1764                 SIR_DONE_OVERFLOW,
1765 }/*------------------------< DONE_END >---------------------*/,{
1766         SCR_INT,
1767                 SIR_INTFLY,
1768         SCR_COPY (4),
1769                 RADDR (temp),
1770                 PADDR (done_pos),
1771         SCR_JUMP,
1772                 PADDR (start),
1773
1774 #endif  /* SCSI_NCR_CCB_DONE_SUPPORT */
1775
1776 }/*-------------------------< SAVE_DP >------------------*/,{
1777         /*
1778         **      SAVE_DP message:
1779         **      Copy TEMP register to SAVEP in header.
1780         */
1781         SCR_COPY (4),
1782                 RADDR (temp),
1783                 NADDR (header.savep),
1784         SCR_CLR (SCR_ACK),
1785                 0,
1786         SCR_JUMP,
1787                 PADDR (dispatch),
1788 }/*-------------------------< RESTORE_DP >---------------*/,{
1789         /*
1790         **      RESTORE_DP message:
1791         **      Copy SAVEP in header to TEMP register.
1792         */
1793         SCR_COPY (4),
1794                 NADDR (header.savep),
1795                 RADDR (temp),
1796         SCR_JUMP,
1797                 PADDR (clrack),
1798
1799 }/*-------------------------< DISCONNECT >---------------*/,{
1800         /*
1801         **      DISCONNECTing  ...
1802         **
1803         **      disable the "unexpected disconnect" feature,
1804         **      and remove the ACK signal.
1805         */
1806         SCR_REG_REG (scntl2, SCR_AND, 0x7f),
1807                 0,
1808         SCR_CLR (SCR_ACK|SCR_ATN),
1809                 0,
1810         /*
1811         **      Wait for the disconnect.
1812         */
1813         SCR_WAIT_DISC,
1814                 0,
1815         /*
1816         **      Status is: DISCONNECTED.
1817         */
1818         SCR_LOAD_REG (HS_REG, HS_DISCONNECT),
1819                 0,
1820         SCR_JUMP,
1821                 PADDR (cleanup_ok),
1822
1823 }/*-------------------------< MSG_OUT >-------------------*/,{
1824         /*
1825         **      The target requests a message.
1826         */
1827         SCR_MOVE_ABS (1) ^ SCR_MSG_OUT,
1828                 NADDR (msgout),
1829         SCR_COPY (1),
1830                 NADDR (msgout),
1831                 NADDR (lastmsg),
1832         /*
1833         **      If it was no ABORT message ...
1834         */
1835         SCR_JUMP ^ IFTRUE (DATA (M_ABORT)),
1836                 PADDRH (msg_out_abort),
1837         /*
1838         **      ... wait for the next phase
1839         **      if it's a message out, send it again, ...
1840         */
1841         SCR_JUMP ^ IFTRUE (WHEN (SCR_MSG_OUT)),
1842                 PADDR (msg_out),
1843 }/*-------------------------< MSG_OUT_DONE >--------------*/,{
1844         /*
1845         **      ... else clear the message ...
1846         */
1847         SCR_LOAD_REG (scratcha, M_NOOP),
1848                 0,
1849         SCR_COPY (4),
1850                 RADDR (scratcha),
1851                 NADDR (msgout),
1852         /*
1853         **      ... and process the next phase
1854         */
1855         SCR_JUMP,
1856                 PADDR (dispatch),
1857 }/*-------------------------< IDLE >------------------------*/,{
1858         /*
1859         **      Nothing to do?
1860         **      Wait for reselect.
1861         **      This NOP will be patched with LED OFF
1862         **      SCR_REG_REG (gpreg, SCR_OR, 0x01)
1863         */
1864         SCR_NO_OP,
1865                 0,
1866 }/*-------------------------< RESELECT >--------------------*/,{
1867         /*
1868         **      make the DSA invalid.
1869         */
1870         SCR_LOAD_REG (dsa, 0xff),
1871                 0,
1872         SCR_CLR (SCR_TRG),
1873                 0,
1874         SCR_LOAD_REG (HS_REG, HS_IN_RESELECT),
1875                 0,
1876         /*
1877         **      Sleep waiting for a reselection.
1878         **      If SIGP is set, special treatment.
1879         **
1880         **      Zu allem bereit ..
1881         */
1882         SCR_WAIT_RESEL,
1883                 PADDR(start),
1884 }/*-------------------------< RESELECTED >------------------*/,{
1885         /*
1886         **      This NOP will be patched with LED ON
1887         **      SCR_REG_REG (gpreg, SCR_AND, 0xfe)
1888         */
1889         SCR_NO_OP,
1890                 0,
1891         /*
1892         **      ... zu nichts zu gebrauchen ?
1893         **
1894         **      load the target id into the SFBR
1895         **      and jump to the control block.
1896         **
1897         **      Look at the declarations of
1898         **      - struct ncb
1899         **      - struct tcb
1900         **      - struct lcb
1901         **      - struct ccb
1902         **      to understand what's going on.
1903         */
1904         SCR_REG_SFBR (ssid, SCR_AND, 0x8F),
1905                 0,
1906         SCR_TO_REG (sdid),
1907                 0,
1908         SCR_JUMP,
1909                 NADDR (jump_tcb),
1910
1911 }/*-------------------------< RESEL_DSA >-------------------*/,{
1912         /*
1913         **      Ack the IDENTIFY or TAG previously received.
1914         */
1915         SCR_CLR (SCR_ACK),
1916                 0,
1917         /*
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.
1922         **
1923         **      We patch the address part of a
1924         **      COPY command with the DSA-register.
1925         */
1926         SCR_COPY_F (4),
1927                 RADDR (dsa),
1928                 PADDR (loadpos1),
1929         /*
1930         **      Flush script prefetch if required
1931         */
1932         PREFETCH_FLUSH
1933         /*
1934         **      then we do the actual copy.
1935         */
1936         SCR_COPY (sizeof (struct head)),
1937         /*
1938         **      continued after the next label ...
1939         */
1940
1941 }/*-------------------------< LOADPOS1 >-------------------*/,{
1942                 0,
1943                 NADDR (header),
1944         /*
1945         **      The DSA contains the data structure address.
1946         */
1947         SCR_JUMP,
1948                 PADDR (prepare),
1949
1950 }/*-------------------------< RESEL_LUN >-------------------*/,{
1951         /*
1952         **      come back to this point
1953         **      to get an IDENTIFY message
1954         **      Wait for a msg_in phase.
1955         */
1956         SCR_INT ^ IFFALSE (WHEN (SCR_MSG_IN)),
1957                 SIR_RESEL_NO_MSG_IN,
1958         /*
1959         **      message phase.
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.
1963         */
1964         SCR_FROM_REG (sbdl),
1965                 0,
1966         /*
1967         **      It should be an Identify message.
1968         */
1969         SCR_RETURN,
1970                 0,
1971 }/*-------------------------< RESEL_TAG >-------------------*/,{
1972         /*
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. ;-)
1977         */
1978         SCR_MOVE_ABS (3) ^ SCR_MSG_IN,
1979                 NADDR (msgin),
1980         /*
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.
1986         */
1987         SCR_REG_SFBR (sidl, SCR_SHL, 0),
1988                 0,
1989         SCR_SFBR_REG (temp, SCR_AND, 0xfc),
1990                 0,
1991 }/*-------------------------< JUMP_TO_NEXUS >-------------------*/,{
1992         SCR_COPY_F (4),
1993                 RADDR (temp),
1994                 PADDR (nexus_indirect),
1995         /*
1996         **      Flush script prefetch if required
1997         */
1998         PREFETCH_FLUSH
1999         SCR_COPY (4),
2000 }/*-------------------------< NEXUS_INDIRECT >-------------------*/,{
2001                 0,
2002                 RADDR (temp),
2003         SCR_RETURN,
2004                 0,
2005 }/*-------------------------< RESEL_NOTAG >-------------------*/,{
2006         /*
2007         **      No tag expected.
2008         **      Read an throw away the IDENTIFY.
2009         */
2010         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2011                 NADDR (msgin),
2012         SCR_JUMP,
2013                 PADDR (jump_to_nexus),
2014 }/*-------------------------< DATA_IN >--------------------*/,{
2015 /*
2016 **      Because the size depends on the
2017 **      #define MAX_SCATTERL parameter,
2018 **      it is filled in at runtime.
2019 **
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 **  ##==========================================
2026 **
2027 **---------------------------------------------------------
2028 */
2029 0
2030 }/*-------------------------< DATA_IN2 >-------------------*/,{
2031         SCR_CALL,
2032                 PADDR (dispatch),
2033         SCR_JUMP,
2034                 PADDR (no_data),
2035 }/*-------------------------< DATA_OUT >--------------------*/,{
2036 /*
2037 **      Because the size depends on the
2038 **      #define MAX_SCATTERL parameter,
2039 **      it is filled in at runtime.
2040 **
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 **  ##==========================================
2047 **
2048 **---------------------------------------------------------
2049 */
2050 0
2051 }/*-------------------------< DATA_OUT2 >-------------------*/,{
2052         SCR_CALL,
2053                 PADDR (dispatch),
2054         SCR_JUMP,
2055                 PADDR (no_data),
2056 }/*--------------------------------------------------------*/
2057 };
2058
2059 static  struct scripth scripth0 __initdata = {
2060 /*-------------------------< TRYLOOP >---------------------*/{
2061 /*
2062 **      Start the next entry.
2063 **      Called addresses point to the launch script in the CCB.
2064 **      They are patched by the main processor.
2065 **
2066 **      Because the size depends on the
2067 **      #define MAX_START parameter, it is filled
2068 **      in at runtime.
2069 **
2070 **-----------------------------------------------------------
2071 **
2072 **  ##===========< I=0; i<MAX_START >===========
2073 **  ||  SCR_CALL,
2074 **  ||          PADDR (idle),
2075 **  ##==========================================
2076 **
2077 **-----------------------------------------------------------
2078 */
2079 0
2080 }/*------------------------< TRYLOOP2 >---------------------*/,{
2081         SCR_JUMP,
2082                 PADDRH(tryloop),
2083
2084 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
2085
2086 }/*------------------------< DONE_QUEUE >-------------------*/,{
2087 /*
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
2091 **      in at runtime.
2092 **
2093 **-----------------------------------------------------------
2094 **
2095 **  ##===========< I=0; i<MAX_DONE >===========
2096 **  ||  SCR_COPY (sizeof(struct ccb *),
2097 **  ||          NADDR (header.cp),
2098 **  ||          NADDR (ccb_done[i]),
2099 **  ||  SCR_CALL,
2100 **  ||          PADDR (done_end),
2101 **  ##==========================================
2102 **
2103 **-----------------------------------------------------------
2104 */
2105 0
2106 }/*------------------------< DONE_QUEUE2 >------------------*/,{
2107         SCR_JUMP,
2108                 PADDRH (done_queue),
2109
2110 #endif /* SCSI_NCR_CCB_DONE_SUPPORT */
2111 }/*------------------------< SELECT_NO_ATN >-----------------*/,{
2112         /*
2113         **      Set Initiator mode.
2114         **      And try to select this target without ATN.
2115         */
2116
2117         SCR_CLR (SCR_TRG),
2118                 0,
2119         SCR_LOAD_REG (HS_REG, HS_SELECTING),
2120                 0,
2121         SCR_SEL_TBL ^ offsetof (struct dsb, select),
2122                 PADDR (reselect),
2123         SCR_JUMP,
2124                 PADDR (select2),
2125
2126 }/*-------------------------< CANCEL >------------------------*/,{
2127
2128         SCR_LOAD_REG (scratcha, HS_ABORTED),
2129                 0,
2130         SCR_JUMPR,
2131                 8,
2132 }/*-------------------------< SKIP >------------------------*/,{
2133         SCR_LOAD_REG (scratcha, 0),
2134                 0,
2135         /*
2136         **      This entry has been canceled.
2137         **      Next time use the next slot.
2138         */
2139         SCR_COPY (4),
2140                 RADDR (temp),
2141                 PADDR (startpos),
2142         /*
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.
2147         **
2148         **      We patch the address part of a
2149         **      COPY command with the DSA-register.
2150         */
2151         SCR_COPY_F (4),
2152                 RADDR (dsa),
2153                 PADDRH (skip2),
2154         /*
2155         **      Flush script prefetch if required
2156         */
2157         PREFETCH_FLUSH
2158         /*
2159         **      then we do the actual copy.
2160         */
2161         SCR_COPY (sizeof (struct head)),
2162         /*
2163         **      continued after the next label ...
2164         */
2165 }/*-------------------------< SKIP2 >---------------------*/,{
2166                 0,
2167                 NADDR (header),
2168         /*
2169         **      Initialize the status registers
2170         */
2171         SCR_COPY (4),
2172                 NADDR (header.status),
2173                 RADDR (scr0),
2174         /*
2175         **      Force host status.
2176         */
2177         SCR_FROM_REG (scratcha),
2178                 0,
2179         SCR_JUMPR ^ IFFALSE (MASK (0, HS_DONEMASK)),
2180                 16,
2181         SCR_REG_REG (HS_REG, SCR_OR, HS_SKIPMASK),
2182                 0,
2183         SCR_JUMPR,
2184                 8,
2185         SCR_TO_REG (HS_REG),
2186                 0,
2187         SCR_LOAD_REG (SS_REG, S_GOOD),
2188                 0,
2189         SCR_JUMP,
2190                 PADDR (cleanup_ok),
2191
2192 },/*-------------------------< PAR_ERR_DATA_IN >---------------*/{
2193         /*
2194         **      Ignore all data in byte, until next phase
2195         */
2196         SCR_JUMP ^ IFFALSE (WHEN (SCR_DATA_IN)),
2197                 PADDRH (par_err_other),
2198         SCR_MOVE_ABS (1) ^ SCR_DATA_IN,
2199                 NADDR (scratch),
2200         SCR_JUMPR,
2201                 -24,
2202 },/*-------------------------< PAR_ERR_OTHER >------------------*/{
2203         /*
2204         **      count it.
2205         */
2206         SCR_REG_REG (PS_REG, SCR_ADD, 0x01),
2207                 0,
2208         /*
2209         **      jump to dispatcher.
2210         */
2211         SCR_JUMP,
2212                 PADDR (dispatch),
2213 }/*-------------------------< MSG_REJECT >---------------*/,{
2214         /*
2215         **      If a negotiation was in progress,
2216         **      negotiation failed.
2217         **      Otherwise, let the C code print 
2218         **      some message.
2219         */
2220         SCR_FROM_REG (HS_REG),
2221                 0,
2222         SCR_INT ^ IFFALSE (DATA (HS_NEGOTIATE)),
2223                 SIR_REJECT_RECEIVED,
2224         SCR_INT ^ IFTRUE (DATA (HS_NEGOTIATE)),
2225                 SIR_NEGO_FAILED,
2226         SCR_JUMP,
2227                 PADDR (clrack),
2228
2229 }/*-------------------------< MSG_IGN_RESIDUE >----------*/,{
2230         /*
2231         **      Terminate cycle
2232         */
2233         SCR_CLR (SCR_ACK),
2234                 0,
2235         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_IN)),
2236                 PADDR (dispatch),
2237         /*
2238         **      get residue size.
2239         */
2240         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2241                 NADDR (msgin[1]),
2242         /*
2243         **      Size is 0 .. ignore message.
2244         */
2245         SCR_JUMP ^ IFTRUE (DATA (0)),
2246                 PADDR (clrack),
2247         /*
2248         **      Size is not 1 .. have to interrupt.
2249         */
2250         SCR_JUMPR ^ IFFALSE (DATA (1)),
2251                 40,
2252         /*
2253         **      Check for residue byte in swide register
2254         */
2255         SCR_FROM_REG (scntl2),
2256                 0,
2257         SCR_JUMPR ^ IFFALSE (MASK (WSR, WSR)),
2258                 16,
2259         /*
2260         **      There IS data in the swide register.
2261         **      Discard it.
2262         */
2263         SCR_REG_REG (scntl2, SCR_OR, WSR),
2264                 0,
2265         SCR_JUMP,
2266                 PADDR (clrack),
2267         /*
2268         **      Load again the size to the sfbr register.
2269         */
2270         SCR_FROM_REG (scratcha),
2271                 0,
2272         SCR_INT,
2273                 SIR_IGN_RESIDUE,
2274         SCR_JUMP,
2275                 PADDR (clrack),
2276
2277 }/*-------------------------< MSG_EXTENDED >-------------*/,{
2278         /*
2279         **      Terminate cycle
2280         */
2281         SCR_CLR (SCR_ACK),
2282                 0,
2283         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_IN)),
2284                 PADDR (dispatch),
2285         /*
2286         **      get length.
2287         */
2288         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2289                 NADDR (msgin[1]),
2290         /*
2291         */
2292         SCR_JUMP ^ IFTRUE (DATA (3)),
2293                 PADDRH (msg_ext_3),
2294         SCR_JUMP ^ IFFALSE (DATA (2)),
2295                 PADDR (msg_bad),
2296 }/*-------------------------< MSG_EXT_2 >----------------*/,{
2297         SCR_CLR (SCR_ACK),
2298                 0,
2299         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_IN)),
2300                 PADDR (dispatch),
2301         /*
2302         **      get extended message code.
2303         */
2304         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2305                 NADDR (msgin[2]),
2306         SCR_JUMP ^ IFTRUE (DATA (M_X_WIDE_REQ)),
2307                 PADDRH (msg_wdtr),
2308         /*
2309         **      unknown extended message
2310         */
2311         SCR_JUMP,
2312                 PADDR (msg_bad)
2313 }/*-------------------------< MSG_WDTR >-----------------*/,{
2314         SCR_CLR (SCR_ACK),
2315                 0,
2316         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_IN)),
2317                 PADDR (dispatch),
2318         /*
2319         **      get data bus width
2320         */
2321         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2322                 NADDR (msgin[3]),
2323         /*
2324         **      let the host do the real work.
2325         */
2326         SCR_INT,
2327                 SIR_NEGO_WIDE,
2328         /*
2329         **      let the target fetch our answer.
2330         */
2331         SCR_SET (SCR_ATN),
2332                 0,
2333         SCR_CLR (SCR_ACK),
2334                 0,
2335         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_OUT)),
2336                 PADDRH (nego_bad_phase),
2337
2338 }/*-------------------------< SEND_WDTR >----------------*/,{
2339         /*
2340         **      Send the M_X_WIDE_REQ
2341         */
2342         SCR_MOVE_ABS (4) ^ SCR_MSG_OUT,
2343                 NADDR (msgout),
2344         SCR_COPY (1),
2345                 NADDR (msgout),
2346                 NADDR (lastmsg),
2347         SCR_JUMP,
2348                 PADDR (msg_out_done),
2349
2350 }/*-------------------------< MSG_EXT_3 >----------------*/,{
2351         SCR_CLR (SCR_ACK),
2352                 0,
2353         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_IN)),
2354                 PADDR (dispatch),
2355         /*
2356         **      get extended message code.
2357         */
2358         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2359                 NADDR (msgin[2]),
2360         SCR_JUMP ^ IFTRUE (DATA (M_X_SYNC_REQ)),
2361                 PADDRH (msg_sdtr),
2362         /*
2363         **      unknown extended message
2364         */
2365         SCR_JUMP,
2366                 PADDR (msg_bad)
2367
2368 }/*-------------------------< MSG_SDTR >-----------------*/,{
2369         SCR_CLR (SCR_ACK),
2370                 0,
2371         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_IN)),
2372                 PADDR (dispatch),
2373         /*
2374         **      get period and offset
2375         */
2376         SCR_MOVE_ABS (2) ^ SCR_MSG_IN,
2377                 NADDR (msgin[3]),
2378         /*
2379         **      let the host do the real work.
2380         */
2381         SCR_INT,
2382                 SIR_NEGO_SYNC,
2383         /*
2384         **      let the target fetch our answer.
2385         */
2386         SCR_SET (SCR_ATN),
2387                 0,
2388         SCR_CLR (SCR_ACK),
2389                 0,
2390         SCR_JUMP ^ IFFALSE (WHEN (SCR_MSG_OUT)),
2391                 PADDRH (nego_bad_phase),
2392
2393 }/*-------------------------< SEND_SDTR >-------------*/,{
2394         /*
2395         **      Send the M_X_SYNC_REQ
2396         */
2397         SCR_MOVE_ABS (5) ^ SCR_MSG_OUT,
2398                 NADDR (msgout),
2399         SCR_COPY (1),
2400                 NADDR (msgout),
2401                 NADDR (lastmsg),
2402         SCR_JUMP,
2403                 PADDR (msg_out_done),
2404
2405 }/*-------------------------< NEGO_BAD_PHASE >------------*/,{
2406         SCR_INT,
2407                 SIR_NEGO_PROTO,
2408         SCR_JUMP,
2409                 PADDR (dispatch),
2410
2411 }/*-------------------------< MSG_OUT_ABORT >-------------*/,{
2412         /*
2413         **      After ABORT message,
2414         **
2415         **      expect an immediate disconnect, ...
2416         */
2417         SCR_REG_REG (scntl2, SCR_AND, 0x7f),
2418                 0,
2419         SCR_CLR (SCR_ACK|SCR_ATN),
2420                 0,
2421         SCR_WAIT_DISC,
2422                 0,
2423         /*
2424         **      ... and set the status to "ABORTED"
2425         */
2426         SCR_LOAD_REG (HS_REG, HS_ABORTED),
2427                 0,
2428         SCR_JUMP,
2429                 PADDR (cleanup),
2430
2431 }/*-------------------------< HDATA_IN >-------------------*/,{
2432 /*
2433 **      Because the size depends on the
2434 **      #define MAX_SCATTERH parameter,
2435 **      it is filled in at runtime.
2436 **
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 **  ##===================================================
2443 **
2444 **---------------------------------------------------------
2445 */
2446 0
2447 }/*-------------------------< HDATA_IN2 >------------------*/,{
2448         SCR_JUMP,
2449                 PADDR (data_in),
2450
2451 }/*-------------------------< HDATA_OUT >-------------------*/,{
2452 /*
2453 **      Because the size depends on the
2454 **      #define MAX_SCATTERH parameter,
2455 **      it is filled in at runtime.
2456 **
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 **  ##===================================================
2463 **
2464 **---------------------------------------------------------
2465 */
2466 0
2467 }/*-------------------------< HDATA_OUT2 >------------------*/,{
2468         SCR_JUMP,
2469                 PADDR (data_out),
2470
2471 }/*-------------------------< RESET >----------------------*/,{
2472         /*
2473         **      Send a M_RESET message if bad IDENTIFY 
2474         **      received on reselection.
2475         */
2476         SCR_LOAD_REG (scratcha, M_ABORT_TAG),
2477                 0,
2478         SCR_JUMP,
2479                 PADDRH (abort_resel),
2480 }/*-------------------------< ABORTTAG >-------------------*/,{
2481         /*
2482         **      Abort a wrong tag received on reselection.
2483         */
2484         SCR_LOAD_REG (scratcha, M_ABORT_TAG),
2485                 0,
2486         SCR_JUMP,
2487                 PADDRH (abort_resel),
2488 }/*-------------------------< ABORT >----------------------*/,{
2489         /*
2490         **      Abort a reselection when no active CCB.
2491         */
2492         SCR_LOAD_REG (scratcha, M_ABORT),
2493                 0,
2494 }/*-------------------------< ABORT_RESEL >----------------*/,{
2495         SCR_COPY (1),
2496                 RADDR (scratcha),
2497                 NADDR (msgout),
2498         SCR_SET (SCR_ATN),
2499                 0,
2500         SCR_CLR (SCR_ACK),
2501                 0,
2502         /*
2503         **      and send it.
2504         **      we expect an immediate disconnect
2505         */
2506         SCR_REG_REG (scntl2, SCR_AND, 0x7f),
2507                 0,
2508         SCR_MOVE_ABS (1) ^ SCR_MSG_OUT,
2509                 NADDR (msgout),
2510         SCR_COPY (1),
2511                 NADDR (msgout),
2512                 NADDR (lastmsg),
2513         SCR_CLR (SCR_ACK|SCR_ATN),
2514                 0,
2515         SCR_WAIT_DISC,
2516                 0,
2517         SCR_JUMP,
2518                 PADDR (start),
2519 }/*-------------------------< RESEND_IDENT >-------------------*/,{
2520         /*
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.
2525         */
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 */
2528         SCR_JUMP,
2529                 PADDR (send_ident),
2530 }/*-------------------------< CLRATN_GO_ON >-------------------*/,{
2531         SCR_CLR (SCR_ATN),
2532                 0,
2533         SCR_JUMP,
2534 }/*-------------------------< NXTDSP_GO_ON >-------------------*/,{
2535                 0,
2536 }/*-------------------------< SDATA_IN >-------------------*/,{
2537         SCR_CALL ^ IFFALSE (WHEN (SCR_DATA_IN)),
2538                 PADDR (dispatch),
2539         SCR_MOVE_TBL ^ SCR_DATA_IN,
2540                 offsetof (struct dsb, sense),
2541         SCR_CALL,
2542                 PADDR (dispatch),
2543         SCR_JUMP,
2544                 PADDR (no_data),
2545 }/*-------------------------< DATA_IO >--------------------*/,{
2546         /*
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.
2557         */
2558         SCR_JUMPR ^ IFTRUE (WHEN (SCR_DATA_OUT)),
2559                 32,
2560         /*
2561         **      Direction is DATA IN.
2562         **      Warning: we jump here, even when phase is DATA OUT.
2563         */
2564         SCR_COPY (4),
2565                 NADDR (header.lastp),
2566                 NADDR (header.savep),
2567
2568         /*
2569         **      Jump to the SCRIPTS according to actual direction.
2570         */
2571         SCR_COPY (4),
2572                 NADDR (header.savep),
2573                 RADDR (temp),
2574         SCR_RETURN,
2575                 0,
2576         /*
2577         **      Direction is DATA OUT.
2578         */
2579         SCR_COPY (4),
2580                 NADDR (header.wlastp),
2581                 NADDR (header.lastp),
2582         SCR_COPY (4),
2583                 NADDR (header.wgoalp),
2584                 NADDR (header.goalp),
2585         SCR_JUMPR,
2586                 -64,
2587 }/*-------------------------< BAD_IDENTIFY >---------------*/,{
2588         /*
2589         **      If message phase but not an IDENTIFY,
2590         **      get some help from the C code.
2591         **      Old SCSI device may behave so.
2592         */
2593         SCR_JUMPR ^ IFTRUE (MASK (0x80, 0x80)),
2594                 16,
2595         SCR_INT,
2596                 SIR_RESEL_NO_IDENTIFY,
2597         SCR_JUMP,
2598                 PADDRH (reset),
2599         /*
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.
2605         */
2606         SCR_INT,
2607                 SIR_RESEL_BAD_LUN,
2608         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2609                 NADDR (msgin),
2610         SCR_JUMP,
2611                 PADDRH (abort),
2612 }/*-------------------------< BAD_I_T_L >------------------*/,{
2613         /*
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.
2617         */
2618         SCR_INT,
2619                 SIR_RESEL_BAD_I_T_L,
2620         SCR_JUMP,
2621                 PADDRH (abort),
2622 }/*-------------------------< BAD_I_T_L_Q >----------------*/,{
2623         /*
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.
2627         */
2628         SCR_INT,
2629                 SIR_RESEL_BAD_I_T_L_Q,
2630         SCR_JUMP,
2631                 PADDRH (aborttag),
2632 }/*-------------------------< BAD_TARGET >-----------------*/,{
2633         /*
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.
2637         **      M_RESET message.
2638         */
2639         SCR_INT,
2640                 SIR_RESEL_BAD_TARGET,
2641         SCR_JUMPR ^ IFFALSE (WHEN (SCR_MSG_IN)),
2642                 8,
2643         SCR_MOVE_ABS (1) ^ SCR_MSG_IN,
2644                 NADDR (msgin),
2645         SCR_JUMP,
2646                 PADDRH (reset),
2647 }/*-------------------------< BAD_STATUS >-----------------*/,{
2648         /*
2649         **      If command resulted in either QUEUE FULL,
2650         **      CHECK CONDITION or COMMAND TERMINATED,
2651         **      call the C code.
2652         */
2653         SCR_INT ^ IFTRUE (DATA (S_QUEUE_FULL)),
2654                 SIR_BAD_STATUS,
2655         SCR_INT ^ IFTRUE (DATA (S_CHECK_COND)),
2656                 SIR_BAD_STATUS,
2657         SCR_INT ^ IFTRUE (DATA (S_TERMINATED)),
2658                 SIR_BAD_STATUS,
2659         SCR_RETURN,
2660                 0,
2661 }/*-------------------------< START_RAM >-------------------*/,{
2662         /*
2663         **      Load the script into on-chip RAM, 
2664         **      and jump to start point.
2665         */
2666         SCR_COPY_F (4),
2667                 RADDR (scratcha),
2668                 PADDRH (start_ram0),
2669         /*
2670         **      Flush script prefetch if required
2671         */
2672         PREFETCH_FLUSH
2673         SCR_COPY (sizeof (struct script)),
2674 }/*-------------------------< START_RAM0 >--------------------*/,{
2675                 0,
2676                 PADDR (start),
2677         SCR_JUMP,
2678                 PADDR (start),
2679 }/*-------------------------< STO_RESTART >-------------------*/,{
2680         /*
2681         **
2682         **      Repair start queue (e.g. next time use the next slot) 
2683         **      and jump to start point.
2684         */
2685         SCR_COPY (4),
2686                 RADDR (temp),
2687                 PADDR (startpos),
2688         SCR_JUMP,
2689                 PADDR (start),
2690 }/*-------------------------< WAIT_DMA >-------------------*/,{
2691         /*
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.
2698         */
2699         SCR_RETURN,
2700                 0,
2701 }/*-------------------------< SNOOPTEST >-------------------*/,{
2702         /*
2703         **      Read the variable.
2704         */
2705         SCR_COPY (4),
2706                 NADDR(ncr_cache),
2707                 RADDR (scratcha),
2708         /*
2709         **      Write the variable.
2710         */
2711         SCR_COPY (4),
2712                 RADDR (temp),
2713                 NADDR(ncr_cache),
2714         /*
2715         **      Read back the variable.
2716         */
2717         SCR_COPY (4),
2718                 NADDR(ncr_cache),
2719                 RADDR (temp),
2720 }/*-------------------------< SNOOPEND >-------------------*/,{
2721         /*
2722         **      And stop.
2723         */
2724         SCR_INT,
2725                 99,
2726 }/*--------------------------------------------------------*/
2727 };
2728
2729 /*==========================================================
2730 **
2731 **
2732 **      Fill in #define dependent parts of the script
2733 **
2734 **
2735 **==========================================================
2736 */
2737
2738 void __init ncr_script_fill (struct script * scr, struct scripth * scrh)
2739 {
2740         int     i;
2741         ncrcmd  *p;
2742
2743         p = scrh->tryloop;
2744         for (i=0; i<MAX_START; i++) {
2745                 *p++ =SCR_CALL;
2746                 *p++ =PADDR (idle);
2747         }
2748
2749         BUG_ON((u_long)p != (u_long)&scrh->tryloop + sizeof (scrh->tryloop));
2750
2751 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
2752
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]);
2758                 *p++ =SCR_CALL;
2759                 *p++ =PADDR (done_end);
2760         }
2761
2762         BUG_ON((u_long)p != (u_long)&scrh->done_queue+sizeof(scrh->done_queue));
2763
2764 #endif /* SCSI_NCR_CCB_DONE_SUPPORT */
2765
2766         p = scrh->hdata_in;
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]);
2772         }
2773
2774         BUG_ON((u_long)p != (u_long)&scrh->hdata_in + sizeof (scrh->hdata_in));
2775
2776         p = scr->data_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]);
2782         }
2783
2784         BUG_ON((u_long)p != (u_long)&scr->data_in + sizeof (scr->data_in));
2785
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]);
2792         }
2793
2794         BUG_ON((u_long)p != (u_long)&scrh->hdata_out + sizeof (scrh->hdata_out));
2795
2796         p = scr->data_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]);
2802         }
2803
2804         BUG_ON((u_long) p != (u_long)&scr->data_out + sizeof (scr->data_out));
2805 }
2806
2807 /*==========================================================
2808 **
2809 **
2810 **      Copy and rebind a script.
2811 **
2812 **
2813 **==========================================================
2814 */
2815
2816 static void __init 
2817 ncr_script_copy_and_bind (struct ncb *np, ncrcmd *src, ncrcmd *dst, int len)
2818 {
2819         ncrcmd  opcode, new, old, tmp1, tmp2;
2820         ncrcmd  *start, *end;
2821         int relocs;
2822         int opchanged = 0;
2823
2824         start = src;
2825         end = src + len/4;
2826
2827         while (src < end) {
2828
2829                 opcode = *src++;
2830                 *dst++ = cpu_to_scr(opcode);
2831
2832                 /*
2833                 **      If we forget to change the length
2834                 **      in struct script, a field will be
2835                 **      padded with 0. This is an illegal
2836                 **      command.
2837                 */
2838
2839                 if (opcode == 0) {
2840                         printk (KERN_ERR "%s: ERROR0 IN SCRIPT at %d.\n",
2841                                 ncr_name(np), (int) (src-start-1));
2842                         mdelay(1000);
2843                 }
2844
2845                 if (DEBUG_FLAGS & DEBUG_SCRIPT)
2846                         printk (KERN_DEBUG "%p:  <%x>\n",
2847                                 (src-1), (unsigned)opcode);
2848
2849                 /*
2850                 **      We don't have to decode ALL commands
2851                 */
2852                 switch (opcode >> 28) {
2853
2854                 case 0xc:
2855                         /*
2856                         **      COPY has TWO arguments.
2857                         */
2858                         relocs = 2;
2859                         tmp1 = src[0];
2860 #ifdef  RELOC_KVAR
2861                         if ((tmp1 & RELOC_MASK) == RELOC_KVAR)
2862                                 tmp1 = 0;
2863 #endif
2864                         tmp2 = src[1];
2865 #ifdef  RELOC_KVAR
2866                         if ((tmp2 & RELOC_MASK) == RELOC_KVAR)
2867                                 tmp2 = 0;
2868 #endif
2869                         if ((tmp1 ^ tmp2) & 3) {
2870                                 printk (KERN_ERR"%s: ERROR1 IN SCRIPT at %d.\n",
2871                                         ncr_name(np), (int) (src-start-1));
2872                                 mdelay(1000);
2873                         }
2874                         /*
2875                         **      If PREFETCH feature not enabled, remove 
2876                         **      the NO FLUSH bit if present.
2877                         */
2878                         if ((opcode & SCR_NO_FLUSH) && !(np->features & FE_PFEN)) {
2879                                 dst[-1] = cpu_to_scr(opcode & ~SCR_NO_FLUSH);
2880                                 ++opchanged;
2881                         }
2882                         break;
2883
2884                 case 0x0:
2885                         /*
2886                         **      MOVE (absolute address)
2887                         */
2888                         relocs = 1;
2889                         break;
2890
2891                 case 0x8:
2892                         /*
2893                         **      JUMP / CALL
2894                         **      don't relocate if relative :-)
2895                         */
2896                         if (opcode & 0x00800000)
2897                                 relocs = 0;
2898                         else
2899                                 relocs = 1;
2900                         break;
2901
2902                 case 0x4:
2903                 case 0x5:
2904                 case 0x6:
2905                 case 0x7:
2906                         relocs = 1;
2907                         break;
2908
2909                 default:
2910                         relocs = 0;
2911                         break;
2912                 }
2913
2914                 if (relocs) {
2915                         while (relocs--) {
2916                                 old = *src++;
2917
2918                                 switch (old & RELOC_MASK) {
2919                                 case RELOC_REGISTER:
2920                                         new = (old & ~RELOC_MASK) + np->paddr;
2921                                         break;
2922                                 case RELOC_LABEL:
2923                                         new = (old & ~RELOC_MASK) + np->p_script;
2924                                         break;
2925                                 case RELOC_LABELH:
2926                                         new = (old & ~RELOC_MASK) + np->p_scripth;
2927                                         break;
2928                                 case RELOC_SOFTC:
2929                                         new = (old & ~RELOC_MASK) + np->p_ncb;
2930                                         break;
2931 #ifdef  RELOC_KVAR
2932                                 case RELOC_KVAR:
2933                                         if (((old & ~RELOC_MASK) <
2934                                              SCRIPT_KVAR_FIRST) ||
2935                                             ((old & ~RELOC_MASK) >
2936                                              SCRIPT_KVAR_LAST))
2937                                                 panic("ncr KVAR out of range");
2938                                         new = vtophys(script_kvars[old &
2939                                             ~RELOC_MASK]);
2940                                         break;
2941 #endif
2942                                 case 0:
2943                                         /* Don't relocate a 0 address. */
2944                                         if (old == 0) {
2945                                                 new = old;
2946                                                 break;
2947                                         }
2948                                         /* fall through */
2949                                 default:
2950                                         panic("ncr_script_copy_and_bind: weird relocation %x\n", old);
2951                                         break;
2952                                 }
2953
2954                                 *dst++ = cpu_to_scr(new);
2955                         }
2956                 } else
2957                         *dst++ = cpu_to_scr(*src++);
2958
2959         }
2960 }
2961
2962 /*
2963 **      Linux host data structure
2964 */
2965
2966 struct host_data {
2967      struct ncb *ncb;
2968 };
2969
2970 #define PRINT_ADDR(cmd, arg...) dev_info(&cmd->device->sdev_gendev , ## arg)
2971
2972 static void ncr_print_msg(struct ccb *cp, char *label, u_char *msg)
2973 {
2974         PRINT_ADDR(cp->cmd, "%s: ", label);
2975
2976         spi_print_msg(msg);
2977         printk("\n");
2978 }
2979
2980 /*==========================================================
2981 **
2982 **      NCR chip clock divisor table.
2983 **      Divisors are multiplied by 10,000,000 in order to make 
2984 **      calculations more simple.
2985 **
2986 **==========================================================
2987 */
2988
2989 #define _5M 5000000
2990 static u_long div_10M[] =
2991         {2*_5M, 3*_5M, 4*_5M, 6*_5M, 8*_5M, 12*_5M, 16*_5M};
2992
2993
2994 /*===============================================================
2995 **
2996 **      Prepare io register values used by ncr_init() according 
2997 **      to selected and supported features.
2998 **
2999 **      NCR chips allow burst lengths of 2, 4, 8, 16, 32, 64, 128 
3000 **      transfers. 32,64,128 are only supported by 875 and 895 chips.
3001 **      We use log base 2 (burst length) as internal code, with 
3002 **      value 0 meaning "burst disabled".
3003 **
3004 **===============================================================
3005 */
3006
3007 /*
3008  *      Burst length from burst code.
3009  */
3010 #define burst_length(bc) (!(bc))? 0 : 1 << (bc)
3011
3012 /*
3013  *      Burst code from io register bits.  Burst enable is ctest0 for c720
3014  */
3015 #define burst_code(dmode, ctest0) \
3016         (ctest0) & 0x80 ? 0 : (((dmode) & 0xc0) >> 6) + 1
3017
3018 /*
3019  *      Set initial io register bits from burst code.
3020  */
3021 static inline void ncr_init_burst(struct ncb *np, u_char bc)
3022 {
3023         u_char *be = &np->rv_ctest0;
3024         *be             &= ~0x80;
3025         np->rv_dmode    &= ~(0x3 << 6);
3026         np->rv_ctest5   &= ~0x4;
3027
3028         if (!bc) {
3029                 *be             |= 0x80;
3030         } else {
3031                 --bc;
3032                 np->rv_dmode    |= ((bc & 0x3) << 6);
3033                 np->rv_ctest5   |= (bc & 0x4);
3034         }
3035 }
3036
3037 static void __init ncr_prepare_setting(struct ncb *np)
3038 {
3039         u_char  burst_max;
3040         u_long  period;
3041         int i;
3042
3043         /*
3044         **      Save assumed BIOS setting
3045         */
3046
3047         np->sv_scntl0   = INB(nc_scntl0) & 0x0a;
3048         np->sv_scntl3   = INB(nc_scntl3) & 0x07;
3049         np->sv_dmode    = INB(nc_dmode)  & 0xce;
3050         np->sv_dcntl    = INB(nc_dcntl)  & 0xa8;
3051         np->sv_ctest0   = INB(nc_ctest0) & 0x84;
3052         np->sv_ctest3   = INB(nc_ctest3) & 0x01;
3053         np->sv_ctest4   = INB(nc_ctest4) & 0x80;
3054         np->sv_ctest5   = INB(nc_ctest5) & 0x24;
3055         np->sv_gpcntl   = INB(nc_gpcntl);
3056         np->sv_stest2   = INB(nc_stest2) & 0x20;
3057         np->sv_stest4   = INB(nc_stest4);
3058
3059         /*
3060         **      Wide ?
3061         */
3062
3063         np->maxwide     = (np->features & FE_WIDE)? 1 : 0;
3064
3065         /*
3066          *  Guess the frequency of the chip's clock.
3067          */
3068         if (np->features & FE_ULTRA)
3069                 np->clock_khz = 80000;
3070         else
3071                 np->clock_khz = 40000;
3072
3073         /*
3074          *  Get the clock multiplier factor.
3075          */
3076         if      (np->features & FE_QUAD)
3077                 np->multiplier  = 4;
3078         else if (np->features & FE_DBLR)
3079                 np->multiplier  = 2;
3080         else
3081                 np->multiplier  = 1;
3082
3083         /*
3084          *  Measure SCSI clock frequency for chips 
3085          *  it may vary from assumed one.
3086          */
3087         if (np->features & FE_VARCLK)
3088                 ncr_getclock(np, np->multiplier);
3089
3090         /*
3091          * Divisor to be used for async (timer pre-scaler).
3092          */
3093         i = np->clock_divn - 1;
3094         while (--i >= 0) {
3095                 if (10ul * SCSI_NCR_MIN_ASYNC * np->clock_khz > div_10M[i]) {
3096                         ++i;
3097                         break;
3098                 }
3099         }
3100         np->rv_scntl3 = i+1;
3101
3102         /*
3103          * Minimum synchronous period factor supported by the chip.
3104          * Btw, 'period' is in tenths of nanoseconds.
3105          */
3106
3107         period = (4 * div_10M[0] + np->clock_khz - 1) / np->clock_khz;
3108         if      (period <= 250)         np->minsync = 10;
3109         else if (period <= 303)         np->minsync = 11;
3110         else if (period <= 500)         np->minsync = 12;
3111         else                            np->minsync = (period + 40 - 1) / 40;
3112
3113         /*
3114          * Check against chip SCSI standard support (SCSI-2,ULTRA,ULTRA2).
3115          */
3116
3117         if      (np->minsync < 25 && !(np->features & FE_ULTRA))
3118                 np->minsync = 25;
3119
3120         /*
3121          * Maximum synchronous period factor supported by the chip.
3122          */
3123
3124         period = (11 * div_10M[np->clock_divn - 1]) / (4 * np->clock_khz);
3125         np->maxsync = period > 2540 ? 254 : period / 10;
3126
3127         /*
3128         **      Prepare initial value of other IO registers
3129         */
3130 #if defined SCSI_NCR_TRUST_BIOS_SETTING
3131         np->rv_scntl0   = np->sv_scntl0;
3132         np->rv_dmode    = np->sv_dmode;
3133         np->rv_dcntl    = np->sv_dcntl;
3134         np->rv_ctest0   = np->sv_ctest0;
3135         np->rv_ctest3   = np->sv_ctest3;
3136         np->rv_ctest4   = np->sv_ctest4;
3137         np->rv_ctest5   = np->sv_ctest5;
3138         burst_max       = burst_code(np->sv_dmode, np->sv_ctest0);
3139 #else
3140
3141         /*
3142         **      Select burst length (dwords)
3143         */
3144         burst_max       = driver_setup.burst_max;
3145         if (burst_max == 255)
3146                 burst_max = burst_code(np->sv_dmode, np->sv_ctest0);
3147         if (burst_max > 7)
3148                 burst_max = 7;
3149         if (burst_max > np->maxburst)
3150                 burst_max = np->maxburst;
3151
3152         /*
3153         **      Select all supported special features
3154         */
3155         if (np->features & FE_ERL)
3156                 np->rv_dmode    |= ERL;         /* Enable Read Line */
3157         if (np->features & FE_BOF)
3158                 np->rv_dmode    |= BOF;         /* Burst Opcode Fetch */
3159         if (np->features & FE_ERMP)
3160                 np->rv_dmode    |= ERMP;        /* Enable Read Multiple */
3161         if (np->features & FE_PFEN)
3162                 np->rv_dcntl    |= PFEN;        /* Prefetch Enable */
3163         if (np->features & FE_CLSE)
3164                 np->rv_dcntl    |= CLSE;        /* Cache Line Size Enable */
3165         if (np->features & FE_WRIE)
3166                 np->rv_ctest3   |= WRIE;        /* Write and Invalidate */
3167         if (np->features & FE_DFS)
3168                 np->rv_ctest5   |= DFS;         /* Dma Fifo Size */
3169         if (np->features & FE_MUX)
3170                 np->rv_ctest4   |= MUX;         /* Host bus multiplex mode */
3171         if (np->features & FE_EA)
3172                 np->rv_dcntl    |= EA;          /* Enable ACK */
3173         if (np->features & FE_EHP)
3174                 np->rv_ctest0   |= EHP;         /* Even host parity */
3175
3176         /*
3177         **      Select some other
3178         */
3179         if (driver_setup.master_parity)
3180                 np->rv_ctest4   |= MPEE;        /* Master parity checking */
3181         if (driver_setup.scsi_parity)
3182                 np->rv_scntl0   |= 0x0a;        /*  full arb., ena parity, par->ATN  */
3183
3184         /*
3185         **  Get SCSI addr of host adapter (set by bios?).
3186         */
3187         if (np->myaddr == 255) {
3188                 np->myaddr = INB(nc_scid) & 0x07;
3189                 if (!np->myaddr)
3190                         np->myaddr = SCSI_NCR_MYADDR;
3191         }
3192
3193 #endif /* SCSI_NCR_TRUST_BIOS_SETTING */
3194
3195         /*
3196          *      Prepare initial io register bits for burst length
3197          */
3198         ncr_init_burst(np, burst_max);
3199
3200         /*
3201         **      Set SCSI BUS mode.
3202         **
3203         **      - ULTRA2 chips (895/895A/896) report the current 
3204         **        BUS mode through the STEST4 IO register.
3205         **      - For previous generation chips (825/825A/875), 
3206         **        user has to tell us how to check against HVD, 
3207         **        since a 100% safe algorithm is not possible.
3208         */
3209         np->scsi_mode = SMODE_SE;
3210         if (np->features & FE_DIFF) {
3211                 switch(driver_setup.diff_support) {
3212                 case 4: /* Trust previous settings if present, then GPIO3 */
3213                         if (np->sv_scntl3) {
3214                                 if (np->sv_stest2 & 0x20)
3215                                         np->scsi_mode = SMODE_HVD;
3216                                 break;
3217                         }
3218                 case 3: /* SYMBIOS controllers report HVD through GPIO3 */
3219                         if (INB(nc_gpreg) & 0x08)
3220                                 break;
3221                 case 2: /* Set HVD unconditionally */
3222                         np->scsi_mode = SMODE_HVD;
3223                 case 1: /* Trust previous settings for HVD */
3224                         if (np->sv_stest2 & 0x20)
3225                                 np->scsi_mode = SMODE_HVD;
3226                         break;
3227                 default:/* Don't care about HVD */      
3228                         break;
3229                 }
3230         }
3231         if (np->scsi_mode == SMODE_HVD)
3232                 np->rv_stest2 |= 0x20;
3233
3234         /*
3235         **      Set LED support from SCRIPTS.
3236         **      Ignore this feature for boards known to use a 
3237         **      specific GPIO wiring and for the 895A or 896 
3238         **      that drive the LED directly.
3239         **      Also probe initial setting of GPIO0 as output.
3240         */
3241         if ((driver_setup.led_pin) &&
3242             !(np->features & FE_LEDC) && !(np->sv_gpcntl & 0x01))
3243                 np->features |= FE_LED0;
3244
3245         /*
3246         **      Set irq mode.
3247         */
3248         switch(driver_setup.irqm & 3) {
3249         case 2:
3250                 np->rv_dcntl    |= IRQM;
3251                 break;
3252         case 1:
3253                 np->rv_dcntl    |= (np->sv_dcntl & IRQM);
3254                 break;
3255         default:
3256                 break;
3257         }
3258
3259         /*
3260         **      Configure targets according to driver setup.
3261         **      Allow to override sync, wide and NOSCAN from 
3262         **      boot command line.
3263         */
3264         for (i = 0 ; i < MAX_TARGET ; i++) {
3265                 struct tcb *tp = &np->target[i];
3266
3267                 tp->usrsync = driver_setup.default_sync;
3268                 tp->usrwide = driver_setup.max_wide;
3269                 tp->usrtags = MAX_TAGS;
3270                 tp->period = 0xffff;
3271                 if (!driver_setup.disconnection)
3272                         np->target[i].usrflag = UF_NODISC;
3273         }
3274
3275         /*
3276         **      Announce all that stuff to user.
3277         */
3278
3279         printk(KERN_INFO "%s: ID %d, Fast-%d%s%s\n", ncr_name(np),
3280                 np->myaddr,
3281                 np->minsync < 12 ? 40 : (np->minsync < 25 ? 20 : 10),
3282                 (np->rv_scntl0 & 0xa)   ? ", Parity Checking"   : ", NO Parity",
3283                 (np->rv_stest2 & 0x20)  ? ", Differential"      : "");
3284
3285         if (bootverbose > 1) {
3286                 printk (KERN_INFO "%s: initial SCNTL3/DMODE/DCNTL/CTEST3/4/5 = "
3287                         "(hex) %02x/%02x/%02x/%02x/%02x/%02x\n",
3288                         ncr_name(np), np->sv_scntl3, np->sv_dmode, np->sv_dcntl,
3289                         np->sv_ctest3, np->sv_ctest4, np->sv_ctest5);
3290
3291                 printk (KERN_INFO "%s: final   SCNTL3/DMODE/DCNTL/CTEST3/4/5 = "
3292                         "(hex) %02x/%02x/%02x/%02x/%02x/%02x\n",
3293                         ncr_name(np), np->rv_scntl3, np->rv_dmode, np->rv_dcntl,
3294                         np->rv_ctest3, np->rv_ctest4, np->rv_ctest5);
3295         }
3296
3297         if (bootverbose && np->paddr2)
3298                 printk (KERN_INFO "%s: on-chip RAM at 0x%lx\n",
3299                         ncr_name(np), np->paddr2);
3300 }
3301
3302 /*==========================================================
3303 **
3304 **
3305 **      Done SCSI commands list management.
3306 **
3307 **      We donnot enter the scsi_done() callback immediately 
3308 **      after a command has been seen as completed but we 
3309 **      insert it into a list which is flushed outside any kind 
3310 **      of driver critical section.
3311 **      This allows to do minimal stuff under interrupt and 
3312 **      inside critical sections and to also avoid locking up 
3313 **      on recursive calls to driver entry points under SMP.
3314 **      In fact, the only kernel point which is entered by the 
3315 **      driver with a driver lock set is kmalloc(GFP_ATOMIC) 
3316 **      that shall not reenter the driver under any circumstances,
3317 **      AFAIK.
3318 **
3319 **==========================================================
3320 */
3321 static inline void ncr_queue_done_cmd(struct ncb *np, struct scsi_cmnd *cmd)
3322 {
3323         unmap_scsi_data(np, cmd);
3324         cmd->host_scribble = (char *) np->done_list;
3325         np->done_list = cmd;
3326 }
3327
3328 static inline void ncr_flush_done_cmds(struct scsi_cmnd *lcmd)
3329 {
3330         struct scsi_cmnd *cmd;
3331
3332         while (lcmd) {
3333                 cmd = lcmd;
3334                 lcmd = (struct scsi_cmnd *) cmd->host_scribble;
3335                 cmd->scsi_done(cmd);
3336         }
3337 }
3338
3339 /*==========================================================
3340 **
3341 **
3342 **      Prepare the next negotiation message if needed.
3343 **
3344 **      Fill in the part of message buffer that contains the 
3345 **      negotiation and the nego_status field of the CCB.
3346 **      Returns the size of the message in bytes.
3347 **
3348 **
3349 **==========================================================
3350 */
3351
3352
3353 static int ncr_prepare_nego(struct ncb *np, struct ccb *cp, u_char *msgptr)
3354 {
3355         struct tcb *tp = &np->target[cp->target];
3356         int msglen = 0;
3357         int nego = 0;
3358         struct scsi_target *starget = tp->starget;
3359
3360         /* negotiate wide transfers ?  */
3361         if (!tp->widedone) {
3362                 if (spi_support_wide(starget)) {
3363                         nego = NS_WIDE;
3364                 } else
3365                         tp->widedone=1;
3366         }
3367
3368         /* negotiate synchronous transfers?  */
3369         if (!nego && !tp->period) {
3370                 if (spi_support_sync(starget)) {
3371                         nego = NS_SYNC;
3372                 } else {
3373                         tp->period  =0xffff;
3374                         dev_info(&starget->dev, "target did not report SYNC.\n");
3375                 }
3376         }
3377
3378         switch (nego) {
3379         case NS_SYNC:
3380                 msgptr[msglen++] = M_EXTENDED;
3381                 msgptr[msglen++] = 3;
3382                 msgptr[msglen++] = M_X_SYNC_REQ;
3383                 msgptr[msglen++] = tp->maxoffs ? tp->minsync : 0;
3384                 msgptr[msglen++] = tp->maxoffs;
3385                 break;
3386         case NS_WIDE:
3387                 msgptr[msglen++] = M_EXTENDED;
3388                 msgptr[msglen++] = 2;
3389                 msgptr[msglen++] = M_X_WIDE_REQ;
3390                 msgptr[msglen++] = tp->usrwide;
3391                 break;
3392         }
3393
3394         cp->nego_status = nego;
3395
3396         if (nego) {
3397                 tp->nego_cp = cp;
3398                 if (DEBUG_FLAGS & DEBUG_NEGO) {
3399                         ncr_print_msg(cp, nego == NS_WIDE ?
3400                                           "wide msgout":"sync_msgout", msgptr);
3401                 }
3402         }
3403
3404         return msglen;
3405 }
3406
3407
3408
3409 /*==========================================================
3410 **
3411 **
3412 **      Start execution of a SCSI command.
3413 **      This is called from the generic SCSI driver.
3414 **
3415 **
3416 **==========================================================
3417 */
3418 static int ncr_queue_command (struct ncb *np, struct scsi_cmnd *cmd)
3419 {
3420         struct scsi_device *sdev = cmd->device;
3421         struct tcb *tp = &np->target[sdev->id];
3422         struct lcb *lp = tp->lp[sdev->lun];
3423         struct ccb *cp;
3424
3425         int     segments;
3426         u_char  idmsg, *msgptr;
3427         u32     msglen;
3428         int     direction;
3429         u32     lastp, goalp;
3430
3431         /*---------------------------------------------
3432         **
3433         **      Some shortcuts ...
3434         **
3435         **---------------------------------------------
3436         */
3437         if ((sdev->id == np->myaddr       ) ||
3438                 (sdev->id >= MAX_TARGET) ||
3439                 (sdev->lun    >= MAX_LUN   )) {
3440                 return(DID_BAD_TARGET);
3441         }
3442
3443         /*---------------------------------------------
3444         **
3445         **      Complete the 1st TEST UNIT READY command
3446         **      with error condition if the device is 
3447         **      flagged NOSCAN, in order to speed up 
3448         **      the boot.
3449         **
3450         **---------------------------------------------
3451         */
3452         if ((cmd->cmnd[0] == 0 || cmd->cmnd[0] == 0x12) && 
3453             (tp->usrflag & UF_NOSCAN)) {
3454                 tp->usrflag &= ~UF_NOSCAN;
3455                 return DID_BAD_TARGET;
3456         }
3457
3458         if (DEBUG_FLAGS & DEBUG_TINY) {
3459                 PRINT_ADDR(cmd, "CMD=%x ", cmd->cmnd[0]);
3460         }
3461
3462         /*---------------------------------------------------
3463         **
3464         **      Assign a ccb / bind cmd.
3465         **      If resetting, shorten settle_time if necessary
3466         **      in order to avoid spurious timeouts.
3467         **      If resetting or no free ccb,
3468         **      insert cmd into the waiting list.
3469         **
3470         **----------------------------------------------------
3471         */
3472         if (np->settle_time && cmd->timeout_per_command >= HZ) {
3473                 u_long tlimit = jiffies + cmd->timeout_per_command - HZ;
3474                 if (time_after(np->settle_time, tlimit))
3475                         np->settle_time = tlimit;
3476         }
3477
3478         if (np->settle_time || !(cp=ncr_get_ccb (np, cmd))) {
3479                 insert_into_waiting_list(np, cmd);
3480                 return(DID_OK);
3481         }
3482         cp->cmd = cmd;
3483
3484         /*----------------------------------------------------
3485         **
3486         **      Build the identify / tag / sdtr message
3487         **
3488         **----------------------------------------------------
3489         */
3490
3491         idmsg = M_IDENTIFY | sdev->lun;
3492
3493         if (cp ->tag != NO_TAG ||
3494                 (cp != np->ccb && np->disc && !(tp->usrflag & UF_NODISC)))
3495                 idmsg |= 0x40;
3496
3497         msgptr = cp->scsi_smsg;
3498         msglen = 0;
3499         msgptr[msglen++] = idmsg;
3500
3501         if (cp->tag != NO_TAG) {
3502                 char order = np->order;
3503
3504                 /*
3505                 **      Force ordered tag if necessary to avoid timeouts 
3506                 **      and to preserve interactivity.
3507                 */
3508                 if (lp && time_after(jiffies, lp->tags_stime)) {
3509                         if (lp->tags_smap) {
3510                                 order = M_ORDERED_TAG;
3511                                 if ((DEBUG_FLAGS & DEBUG_TAGS)||bootverbose>2){ 
3512                                         PRINT_ADDR(cmd,
3513                                                 "ordered tag forced.\n");
3514                                 }
3515                         }
3516                         lp->tags_stime = jiffies + 3*HZ;
3517                         lp->tags_smap = lp->tags_umap;
3518                 }
3519
3520                 if (order == 0) {
3521                         /*
3522                         **      Ordered write ops, unordered read ops.
3523                         */
3524                         switch (cmd->cmnd[0]) {
3525                         case 0x08:  /* READ_SMALL (6) */
3526                         case 0x28:  /* READ_BIG  (10) */
3527                         case 0xa8:  /* READ_HUGE (12) */
3528                                 order = M_SIMPLE_TAG;
3529                                 break;
3530                         default:
3531                                 order = M_ORDERED_TAG;
3532                         }
3533                 }
3534                 msgptr[msglen++] = order;
3535                 /*
3536                 **      Actual tags are numbered 1,3,5,..2*MAXTAGS+1,
3537                 **      since we may have to deal with devices that have 
3538                 **      problems with #TAG 0 or too great #TAG numbers.
3539                 */
3540                 msgptr[msglen++] = (cp->tag << 1) + 1;
3541         }
3542
3543         /*----------------------------------------------------
3544         **
3545         **      Build the data descriptors
3546         **
3547         **----------------------------------------------------
3548         */
3549
3550         direction = cmd->sc_data_direction;
3551         if (direction != DMA_NONE) {
3552                 segments = ncr_scatter(np, cp, cp->cmd);
3553                 if (segments < 0) {
3554                         ncr_free_ccb(np, cp);
3555                         return(DID_ERROR);
3556                 }
3557         }
3558         else {
3559                 cp->data_len = 0;
3560                 segments = 0;
3561         }
3562
3563         /*---------------------------------------------------
3564         **
3565         **      negotiation required?
3566         **
3567         **      (nego_status is filled by ncr_prepare_nego())
3568         **
3569         **---------------------------------------------------
3570         */
3571
3572         cp->nego_status = 0;
3573
3574         if ((!tp->widedone || !tp->period) && !tp->nego_cp && lp) {
3575                 msglen += ncr_prepare_nego (np, cp, msgptr + msglen);
3576         }
3577
3578         /*----------------------------------------------------
3579         **
3580         **      Determine xfer direction.
3581         **
3582         **----------------------------------------------------
3583         */
3584         if (!cp->data_len)
3585                 direction = DMA_NONE;
3586
3587         /*
3588         **      If data direction is BIDIRECTIONAL, speculate FROM_DEVICE
3589         **      but prepare alternate pointers for TO_DEVICE in case 
3590         **      of our speculation will be just wrong.
3591         **      SCRIPTS will swap values if needed.
3592         */
3593         switch(direction) {
3594         case DMA_BIDIRECTIONAL:
3595         case DMA_TO_DEVICE:
3596                 goalp = NCB_SCRIPT_PHYS (np, data_out2) + 8;
3597                 if (segments <= MAX_SCATTERL)
3598                         lastp = goalp - 8 - (segments * 16);
3599                 else {
3600                         lastp = NCB_SCRIPTH_PHYS (np, hdata_out2);
3601                         lastp -= (segments - MAX_SCATTERL) * 16;
3602                 }
3603                 if (direction != DMA_BIDIRECTIONAL)
3604                         break;
3605                 cp->phys.header.wgoalp  = cpu_to_scr(goalp);
3606                 cp->phys.header.wlastp  = cpu_to_scr(lastp);
3607                 /* fall through */
3608         case DMA_FROM_DEVICE:
3609                 goalp = NCB_SCRIPT_PHYS (np, data_in2) + 8;
3610                 if (segments <= MAX_SCATTERL)
3611                         lastp = goalp - 8 - (segments * 16);
3612                 else {
3613                         lastp = NCB_SCRIPTH_PHYS (np, hdata_in2);
3614                         lastp -= (segments - MAX_SCATTERL) * 16;
3615                 }
3616                 break;
3617         default:
3618         case DMA_NONE:
3619                 lastp = goalp = NCB_SCRIPT_PHYS (np, no_data);
3620                 break;
3621         }
3622
3623         /*
3624         **      Set all pointers values needed by SCRIPTS.
3625         **      If direction is unknown, start at data_io.
3626         */
3627         cp->phys.header.lastp = cpu_to_scr(lastp);
3628         cp->phys.header.goalp = cpu_to_scr(goalp);
3629
3630         if (direction == DMA_BIDIRECTIONAL)
3631                 cp->phys.header.savep = 
3632                         cpu_to_scr(NCB_SCRIPTH_PHYS (np, data_io));
3633         else
3634                 cp->phys.header.savep= cpu_to_scr(lastp);
3635
3636         /*
3637         **      Save the initial data pointer in order to be able 
3638         **      to redo the command.
3639         */
3640         cp->startp = cp->phys.header.savep;
3641
3642         /*----------------------------------------------------
3643         **
3644         **      fill in ccb
3645         **
3646         **----------------------------------------------------
3647         **
3648         **
3649         **      physical -> virtual backlink
3650         **      Generic SCSI command
3651         */
3652
3653         /*
3654         **      Startqueue
3655         */
3656         cp->start.schedule.l_paddr   = cpu_to_scr(NCB_SCRIPT_PHYS (np, select));
3657         cp->restart.schedule.l_paddr = cpu_to_scr(NCB_SCRIPT_PHYS (np, resel_dsa));
3658         /*
3659         **      select
3660         */
3661         cp->phys.select.sel_id          = sdev_id(sdev);
3662         cp->phys.select.sel_scntl3      = tp->wval;
3663         cp->phys.select.sel_sxfer       = tp->sval;
3664         /*
3665         **      message
3666         */
3667         cp->phys.smsg.addr              = cpu_to_scr(CCB_PHYS (cp, scsi_smsg));
3668         cp->phys.smsg.size              = cpu_to_scr(msglen);
3669
3670         /*
3671         **      command
3672         */
3673         memcpy(cp->cdb_buf, cmd->cmnd, min_t(int, cmd->cmd_len, sizeof(cp->cdb_buf)));
3674         cp->phys.cmd.addr               = cpu_to_scr(CCB_PHYS (cp, cdb_buf[0]));
3675         cp->phys.cmd.size               = cpu_to_scr(cmd->cmd_len);
3676
3677         /*
3678         **      status
3679         */
3680         cp->actualquirks                = 0;
3681         cp->host_status                 = cp->nego_status ? HS_NEGOTIATE : HS_BUSY;
3682         cp->scsi_status                 = S_ILLEGAL;
3683         cp->parity_status               = 0;
3684
3685         cp->xerr_status                 = XE_OK;
3686 #if 0
3687         cp->sync_status                 = tp->sval;
3688         cp->wide_status                 = tp->wval;
3689 #endif
3690
3691         /*----------------------------------------------------
3692         **
3693         **      Critical region: start this job.
3694         **
3695         **----------------------------------------------------
3696         */
3697
3698         /* activate this job.  */
3699         cp->magic               = CCB_MAGIC;
3700
3701         /*
3702         **      insert next CCBs into start queue.
3703         **      2 max at a time is enough to flush the CCB wait queue.
3704         */
3705         cp->auto_sense = 0;
3706         if (lp)
3707                 ncr_start_next_ccb(np, lp, 2);
3708         else
3709                 ncr_put_start_queue(np, cp);
3710
3711         /* Command is successfully queued.  */
3712
3713         return DID_OK;
3714 }
3715
3716
3717 /*==========================================================
3718 **
3719 **
3720 **      Insert a CCB into the start queue and wake up the 
3721 **      SCRIPTS processor.
3722 **
3723 **
3724 **==========================================================
3725 */
3726
3727 static void ncr_start_next_ccb(struct ncb *np, struct lcb *lp, int maxn)
3728 {
3729         struct list_head *qp;
3730         struct ccb *cp;
3731
3732         if (lp->held_ccb)
3733                 return;
3734
3735         while (maxn-- && lp->queuedccbs < lp->queuedepth) {
3736                 qp = ncr_list_pop(&lp->wait_ccbq);
3737                 if (!qp)
3738                         break;
3739                 ++lp->queuedccbs;
3740                 cp = list_entry(qp, struct ccb, link_ccbq);
3741                 list_add_tail(qp, &lp->busy_ccbq);
3742                 lp->jump_ccb[cp->tag == NO_TAG ? 0 : cp->tag] =
3743                         cpu_to_scr(CCB_PHYS (cp, restart));
3744                 ncr_put_start_queue(np, cp);
3745         }
3746 }
3747
3748 static void ncr_put_start_queue(struct ncb *np, struct ccb *cp)
3749 {
3750         u16     qidx;
3751
3752         /*
3753         **      insert into start queue.
3754         */
3755         if (!np->squeueput) np->squeueput = 1;
3756         qidx = np->squeueput + 2;
3757         if (qidx >= MAX_START + MAX_START) qidx = 1;
3758
3759         np->scripth->tryloop [qidx] = cpu_to_scr(NCB_SCRIPT_PHYS (np, idle));
3760         MEMORY_BARRIER();
3761         np->scripth->tryloop [np->squeueput] = cpu_to_scr(CCB_PHYS (cp, start));
3762
3763         np->squeueput = qidx;
3764         ++np->queuedccbs;
3765         cp->queued = 1;
3766
3767         if (DEBUG_FLAGS & DEBUG_QUEUE)
3768                 printk ("%s: queuepos=%d.\n", ncr_name (np), np->squeueput);
3769
3770         /*
3771         **      Script processor may be waiting for reselect.
3772         **      Wake it up.
3773         */
3774         MEMORY_BARRIER();
3775         OUTB (nc_istat, SIGP);
3776 }
3777
3778
3779 static int ncr_reset_scsi_bus(struct ncb *np, int enab_int, int settle_delay)
3780 {
3781         u32 term;
3782         int retv = 0;
3783
3784         np->settle_time = jiffies + settle_delay * HZ;
3785
3786         if (bootverbose > 1)
3787                 printk("%s: resetting, "
3788                         "command processing suspended for %d seconds\n",
3789                         ncr_name(np), settle_delay);
3790
3791         ncr_chip_reset(np, 100);
3792         udelay(2000);   /* The 895 needs time for the bus mode to settle */
3793         if (enab_int)
3794                 OUTW (nc_sien, RST);
3795         /*
3796         **      Enable Tolerant, reset IRQD if present and 
3797         **      properly set IRQ mode, prior to resetting the bus.
3798         */
3799         OUTB (nc_stest3, TE);
3800         OUTB (nc_scntl1, CRST);
3801         udelay(200);
3802
3803         if (!driver_setup.bus_check)
3804                 goto out;
3805         /*
3806         **      Check for no terminators or SCSI bus shorts to ground.
3807         **      Read SCSI data bus, data parity bits and control signals.
3808         **      We are expecting RESET to be TRUE and other signals to be 
3809         **      FALSE.
3810         */
3811
3812         term =  INB(nc_sstat0);
3813         term =  ((term & 2) << 7) + ((term & 1) << 17); /* rst sdp0 */
3814         term |= ((INB(nc_sstat2) & 0x01) << 26) |       /* sdp1     */
3815                 ((INW(nc_sbdl) & 0xff)   << 9)  |       /* d7-0     */
3816                 ((INW(nc_sbdl) & 0xff00) << 10) |       /* d15-8    */
3817                 INB(nc_sbcl);   /* req ack bsy sel atn msg cd io    */
3818
3819         if (!(np->features & FE_WIDE))
3820                 term &= 0x3ffff;
3821
3822         if (term != (2<<7)) {
3823                 printk("%s: suspicious SCSI data while resetting the BUS.\n",
3824                         ncr_name(np));
3825                 printk("%s: %sdp0,d7-0,rst,req,ack,bsy,sel,atn,msg,c/d,i/o = "
3826                         "0x%lx, expecting 0x%lx\n",
3827                         ncr_name(np),
3828                         (np->features & FE_WIDE) ? "dp1,d15-8," : "",
3829                         (u_long)term, (u_long)(2<<7));
3830                 if (driver_setup.bus_check == 1)
3831                         retv = 1;
3832         }
3833 out:
3834         OUTB (nc_scntl1, 0);
3835         return retv;
3836 }
3837
3838 /*
3839  * Start reset process.
3840  * If reset in progress do nothing.
3841  * The interrupt handler will reinitialize the chip.
3842  * The timeout handler will wait for settle_time before 
3843  * clearing it and so resuming command processing.
3844  */
3845 static void ncr_start_reset(struct ncb *np)
3846 {
3847         if (!np->settle_time) {
3848                 ncr_reset_scsi_bus(np, 1, driver_setup.settle_delay);
3849         }
3850 }
3851  
3852 /*==========================================================
3853 **
3854 **
3855 **      Reset the SCSI BUS.
3856 **      This is called from the generic SCSI driver.
3857 **
3858 **
3859 **==========================================================
3860 */
3861 static int ncr_reset_bus (struct ncb *np, struct scsi_cmnd *cmd, int sync_reset)
3862 {
3863 /*      struct scsi_device        *device    = cmd->device; */
3864         struct ccb *cp;
3865         int found;
3866
3867 /*
3868  * Return immediately if reset is in progress.
3869  */
3870         if (np->settle_time) {
3871                 return FAILED;
3872         }
3873 /*
3874  * Start the reset process.
3875  * The script processor is then assumed to be stopped.
3876  * Commands will now be queued in the waiting list until a settle 
3877  * delay of 2 seconds will be completed.
3878  */
3879         ncr_start_reset(np);
3880 /*
3881  * First, look in the wakeup list
3882  */
3883         for (found=0, cp=np->ccb; cp; cp=cp->link_ccb) {
3884                 /*
3885                 **      look for the ccb of this command.
3886                 */
3887                 if (cp->host_status == HS_IDLE) continue;
3888                 if (cp->cmd == cmd) {
3889                         found = 1;
3890                         break;
3891                 }
3892         }
3893 /*
3894  * Then, look in the waiting list
3895  */
3896         if (!found && retrieve_from_waiting_list(0, np, cmd))
3897                 found = 1;
3898 /*
3899  * Wake-up all awaiting commands with DID_RESET.
3900  */
3901         reset_waiting_list(np);
3902 /*
3903  * Wake-up all pending commands with HS_RESET -> DID_RESET.
3904  */
3905         ncr_wakeup(np, HS_RESET);
3906 /*
3907  * If the involved command was not in a driver queue, and the 
3908  * scsi driver told us reset is synchronous, and the command is not 
3909  * currently in the waiting list, complete it with DID_RESET status,
3910  * in order to keep it alive.
3911  */
3912         if (!found && sync_reset && !retrieve_from_waiting_list(0, np, cmd)) {
3913                 cmd->result = ScsiResult(DID_RESET, 0);
3914                 ncr_queue_done_cmd(np, cmd);
3915         }
3916
3917         return SUCCESS;
3918 }
3919
3920 #if 0 /* unused and broken.. */
3921 /*==========================================================
3922 **
3923 **
3924 **      Abort an SCSI command.
3925 **      This is called from the generic SCSI driver.
3926 **
3927 **
3928 **==========================================================
3929 */
3930 static int ncr_abort_command (struct ncb *np, struct scsi_cmnd *cmd)
3931 {
3932 /*      struct scsi_device        *device    = cmd->device; */
3933         struct ccb *cp;
3934         int found;
3935         int retv;
3936
3937 /*
3938  * First, look for the scsi command in the waiting list
3939  */
3940         if (remove_from_waiting_list(np, cmd)) {
3941                 cmd->result = ScsiResult(DID_ABORT, 0);
3942                 ncr_queue_done_cmd(np, cmd);
3943                 return SCSI_ABORT_SUCCESS;
3944         }
3945
3946 /*
3947  * Then, look in the wakeup list
3948  */
3949         for (found=0, cp=np->ccb; cp; cp=cp->link_ccb) {
3950                 /*
3951                 **      look for the ccb of this command.
3952                 */
3953                 if (cp->host_status == HS_IDLE) continue;
3954                 if (cp->cmd == cmd) {
3955                         found = 1;
3956                         break;
3957                 }
3958         }
3959
3960         if (!found) {
3961                 return SCSI_ABORT_NOT_RUNNING;
3962         }
3963
3964         if (np->settle_time) {
3965                 return SCSI_ABORT_SNOOZE;
3966         }
3967
3968         /*
3969         **      If the CCB is active, patch schedule jumps for the 
3970         **      script to abort the command.
3971         */
3972
3973         switch(cp->host_status) {
3974         case HS_BUSY:
3975         case HS_NEGOTIATE:
3976                 printk ("%s: abort ccb=%p (cancel)\n", ncr_name (np), cp);
3977                         cp->start.schedule.l_paddr =
3978                                 cpu_to_scr(NCB_SCRIPTH_PHYS (np, cancel));
3979                 retv = SCSI_ABORT_PENDING;
3980                 break;
3981         case HS_DISCONNECT:
3982                 cp->restart.schedule.l_paddr =
3983                                 cpu_to_scr(NCB_SCRIPTH_PHYS (np, abort));
3984                 retv = SCSI_ABORT_PENDING;
3985                 break;
3986         default:
3987                 retv = SCSI_ABORT_NOT_RUNNING;
3988                 break;
3989
3990         }
3991
3992         /*
3993         **      If there are no requests, the script
3994         **      processor will sleep on SEL_WAIT_RESEL.
3995         **      Let's wake it up, since it may have to work.
3996         */
3997         OUTB (nc_istat, SIGP);
3998
3999         return retv;
4000 }
4001 #endif
4002
4003 static void ncr_detach(struct ncb *np)
4004 {
4005         struct ccb *cp;
4006         struct tcb *tp;
4007         struct lcb *lp;
4008         int target, lun;
4009         int i;
4010         char inst_name[16];
4011
4012         /* Local copy so we don't access np after freeing it! */
4013         strlcpy(inst_name, ncr_name(np), sizeof(inst_name));
4014
4015         printk("%s: releasing host resources\n", ncr_name(np));
4016
4017 /*
4018 **      Stop the ncr_timeout process
4019 **      Set release_stage to 1 and wait that ncr_timeout() set it to 2.
4020 */
4021
4022 #ifdef DEBUG_NCR53C8XX
4023         printk("%s: stopping the timer\n", ncr_name(np));
4024 #endif
4025         np->release_stage = 1;
4026         for (i = 50 ; i && np->release_stage != 2 ; i--)
4027                 mdelay(100);
4028         if (np->release_stage != 2)
4029                 printk("%s: the timer seems to be already stopped\n", ncr_name(np));
4030         else np->release_stage = 2;
4031
4032 /*
4033 **      Disable chip interrupts
4034 */
4035
4036 #ifdef DEBUG_NCR53C8XX
4037         printk("%s: disabling chip interrupts\n", ncr_name(np));
4038 #endif
4039         OUTW (nc_sien , 0);
4040         OUTB (nc_dien , 0);
4041
4042         /*
4043         **      Reset NCR chip
4044         **      Restore bios setting for automatic clock detection.
4045         */
4046
4047         printk("%s: resetting chip\n", ncr_name(np));
4048         ncr_chip_reset(np, 100);
4049
4050         OUTB(nc_dmode,  np->sv_dmode);
4051         OUTB(nc_dcntl,  np->sv_dcntl);
4052         OUTB(nc_ctest0, np->sv_ctest0);
4053         OUTB(nc_ctest3, np->sv_ctest3);
4054         OUTB(nc_ctest4, np->sv_ctest4);
4055         OUTB(nc_ctest5, np->sv_ctest5);
4056         OUTB(nc_gpcntl, np->sv_gpcntl);
4057         OUTB(nc_stest2, np->sv_stest2);
4058
4059         ncr_selectclock(np, np->sv_scntl3);
4060
4061         /*
4062         **      Free allocated ccb(s)
4063         */
4064
4065         while ((cp=np->ccb->link_ccb) != NULL) {
4066                 np->ccb->link_ccb = cp->link_ccb;
4067                 if (cp->host_status) {
4068                 printk("%s: shall free an active ccb (host_status=%d)\n",
4069                         ncr_name(np), cp->host_status);
4070                 }
4071 #ifdef DEBUG_NCR53C8XX
4072         printk("%s: freeing ccb (%lx)\n", ncr_name(np), (u_long) cp);
4073 #endif
4074                 m_free_dma(cp, sizeof(*cp), "CCB");
4075         }
4076
4077         /* Free allocated tp(s) */
4078
4079         for (target = 0; target < MAX_TARGET ; target++) {
4080                 tp=&np->target[target];
4081                 for (lun = 0 ; lun < MAX_LUN ; lun++) {
4082                         lp = tp->lp[lun];
4083                         if (lp) {
4084 #ifdef DEBUG_NCR53C8XX
4085         printk("%s: freeing lp (%lx)\n", ncr_name(np), (u_long) lp);
4086 #endif
4087                                 if (lp->jump_ccb != &lp->jump_ccb_0)
4088                                         m_free_dma(lp->jump_ccb,256,"JUMP_CCB");
4089                                 m_free_dma(lp, sizeof(*lp), "LCB");
4090                         }
4091                 }
4092         }
4093
4094         if (np->scripth0)
4095                 m_free_dma(np->scripth0, sizeof(struct scripth), "SCRIPTH");
4096         if (np->script0)
4097                 m_free_dma(np->script0, sizeof(struct script), "SCRIPT");
4098         if (np->ccb)
4099                 m_free_dma(np->ccb, sizeof(struct ccb), "CCB");
4100         m_free_dma(np, sizeof(struct ncb), "NCB");
4101
4102         printk("%s: host resources successfully released\n", inst_name);
4103 }
4104
4105 /*==========================================================
4106 **
4107 **
4108 **      Complete execution of a SCSI command.
4109 **      Signal completion to the generic SCSI driver.
4110 **
4111 **
4112 **==========================================================
4113 */
4114
4115 void ncr_complete (struct ncb *np, struct ccb *cp)
4116 {
4117         struct scsi_cmnd *cmd;
4118         struct tcb *tp;
4119         struct lcb *lp;
4120
4121         /*
4122         **      Sanity check
4123         */
4124
4125         if (!cp || cp->magic != CCB_MAGIC || !cp->cmd)
4126                 return;
4127
4128         /*
4129         **      Print minimal debug information.
4130         */
4131
4132         if (DEBUG_FLAGS & DEBUG_TINY)
4133                 printk ("CCB=%lx STAT=%x/%x\n", (unsigned long)cp,
4134                         cp->host_status,cp->scsi_status);
4135
4136         /*
4137         **      Get command, target and lun pointers.
4138         */
4139
4140         cmd = cp->cmd;
4141         cp->cmd = NULL;
4142         tp = &np->target[cmd->device->id];
4143         lp = tp->lp[cmd->device->lun];
4144
4145         /*
4146         **      We donnot queue more than 1 ccb per target 
4147         **      with negotiation at any time. If this ccb was 
4148         **      used for negotiation, clear this info in the tcb.
4149         */
4150
4151         if (cp == tp->nego_cp)
4152                 tp->nego_cp = NULL;
4153
4154         /*
4155         **      If auto-sense performed, change scsi status.
4156         */
4157         if (cp->auto_sense) {
4158                 cp->scsi_status = cp->auto_sense;
4159         }
4160
4161         /*
4162         **      If we were recovering from queue full or performing 
4163         **      auto-sense, requeue skipped CCBs to the wait queue.
4164         */
4165
4166         if (lp && lp->held_ccb) {
4167                 if (cp == lp->held_ccb) {
4168                         list_splice_init(&lp->skip_ccbq, &lp->wait_ccbq);
4169                         lp->held_ccb = NULL;
4170                 }
4171         }
4172
4173         /*
4174         **      Check for parity errors.
4175         */
4176
4177         if (cp->parity_status > 1) {
4178                 PRINT_ADDR(cmd, "%d parity error(s).\n",cp->parity_status);
4179         }
4180
4181         /*
4182         **      Check for extended errors.
4183         */
4184
4185         if (cp->xerr_status != XE_OK) {
4186                 switch (cp->xerr_status) {
4187                 case XE_EXTRA_DATA:
4188                         PRINT_ADDR(cmd, "extraneous data discarded.\n");
4189                         break;
4190                 case XE_BAD_PHASE:
4191                         PRINT_ADDR(cmd, "invalid scsi phase (4/5).\n");
4192                         break;
4193                 default:
4194                         PRINT_ADDR(cmd, "extended error %d.\n",
4195                                         cp->xerr_status);
4196                         break;
4197                 }
4198                 if (cp->host_status==HS_COMPLETE)
4199                         cp->host_status = HS_FAIL;
4200         }
4201
4202         /*
4203         **      Print out any error for debugging purpose.
4204         */
4205         if (DEBUG_FLAGS & (DEBUG_RESULT|DEBUG_TINY)) {
4206                 if (cp->host_status!=HS_COMPLETE || cp->scsi_status!=S_GOOD) {
4207                         PRINT_ADDR(cmd, "ERROR: cmd=%x host_status=%x "
4208                                         "scsi_status=%x\n", cmd->cmnd[0],
4209                                         cp->host_status, cp->scsi_status);
4210                 }
4211         }
4212
4213         /*
4214         **      Check the status.
4215         */
4216         if (   (cp->host_status == HS_COMPLETE)
4217                 && (cp->scsi_status == S_GOOD ||
4218                     cp->scsi_status == S_COND_MET)) {
4219                 /*
4220                  *      All went well (GOOD status).
4221                  *      CONDITION MET status is returned on 
4222                  *      `Pre-Fetch' or `Search data' success.
4223                  */
4224                 cmd->result = ScsiResult(DID_OK, cp->scsi_status);
4225
4226                 /*
4227                 **      @RESID@
4228                 **      Could dig out the correct value for resid,
4229                 **      but it would be quite complicated.
4230                 */
4231                 /* if (cp->phys.header.lastp != cp->phys.header.goalp) */
4232
4233                 /*
4234                 **      Allocate the lcb if not yet.
4235                 */
4236                 if (!lp)
4237                         ncr_alloc_lcb (np, cmd->device->id, cmd->device->lun);
4238
4239                 tp->bytes     += cp->data_len;
4240                 tp->transfers ++;
4241
4242                 /*
4243                 **      If tags was reduced due to queue full,
4244                 **      increase tags if 1000 good status received.
4245                 */
4246                 if (lp && lp->usetags && lp->numtags < lp->maxtags) {
4247                         ++lp->num_good;
4248                         if (lp->num_good >= 1000) {
4249                                 lp->num_good = 0;
4250                                 ++lp->numtags;
4251                                 ncr_setup_tags (np, cmd->device);
4252                         }
4253                 }
4254         } else if ((cp->host_status == HS_COMPLETE)
4255                 && (cp->scsi_status == S_CHECK_COND)) {
4256                 /*
4257                 **   Check condition code
4258                 */
4259                 cmd->result = ScsiResult(DID_OK, S_CHECK_COND);
4260
4261                 /*
4262                 **      Copy back sense data to caller's buffer.
4263                 */
4264                 memcpy(cmd->sense_buffer, cp->sense_buf,
4265                        min(sizeof(cmd->sense_buffer), sizeof(cp->sense_buf)));
4266
4267                 if (DEBUG_FLAGS & (DEBUG_RESULT|DEBUG_TINY)) {
4268                         u_char * p = (u_char*) & cmd->sense_buffer;
4269                         int i;
4270                         PRINT_ADDR(cmd, "sense data:");
4271                         for (i=0; i<14; i++) printk (" %x", *p++);
4272                         printk (".\n");
4273                 }
4274         } else if ((cp->host_status == HS_COMPLETE)
4275                 && (cp->scsi_status == S_CONFLICT)) {
4276                 /*
4277                 **   Reservation Conflict condition code
4278                 */
4279                 cmd->result = ScsiResult(DID_OK, S_CONFLICT);
4280         
4281         } else if ((cp->host_status == HS_COMPLETE)
4282                 && (cp->scsi_status == S_BUSY ||
4283                     cp->scsi_status == S_QUEUE_FULL)) {
4284
4285                 /*
4286                 **   Target is busy.
4287                 */
4288                 cmd->result = ScsiResult(DID_OK, cp->scsi_status);
4289
4290         } else if ((cp->host_status == HS_SEL_TIMEOUT)
4291                 || (cp->host_status == HS_TIMEOUT)) {
4292
4293                 /*
4294                 **   No response
4295                 */
4296                 cmd->result = ScsiResult(DID_TIME_OUT, cp->scsi_status);
4297
4298         } else if (cp->host_status == HS_RESET) {
4299
4300                 /*
4301                 **   SCSI bus reset
4302                 */
4303                 cmd->result = ScsiResult(DID_RESET, cp->scsi_status);
4304
4305         } else if (cp->host_status == HS_ABORTED) {
4306
4307                 /*
4308                 **   Transfer aborted
4309                 */
4310                 cmd->result = ScsiResult(DID_ABORT, cp->scsi_status);
4311
4312         } else {
4313
4314                 /*
4315                 **  Other protocol messes
4316                 */
4317                 PRINT_ADDR(cmd, "COMMAND FAILED (%x %x) @%p.\n",
4318                         cp->host_status, cp->scsi_status, cp);
4319
4320                 cmd->result = ScsiResult(DID_ERROR, cp->scsi_status);
4321         }
4322
4323         /*
4324         **      trace output
4325         */
4326
4327         if (tp->usrflag & UF_TRACE) {
4328                 u_char * p;
4329                 int i;
4330                 PRINT_ADDR(cmd, " CMD:");
4331                 p = (u_char*) &cmd->cmnd[0];
4332                 for (i=0; i<cmd->cmd_len; i++) printk (" %x", *p++);
4333
4334                 if (cp->host_status==HS_COMPLETE) {
4335                         switch (cp->scsi_status) {
4336                         case S_GOOD:
4337                                 printk ("  GOOD");
4338                                 break;
4339                         case S_CHECK_COND:
4340                                 printk ("  SENSE:");
4341                                 p = (u_char*) &cmd->sense_buffer;
4342                                 for (i=0; i<14; i++)
4343                                         printk (" %x", *p++);
4344                                 break;
4345                         default:
4346                                 printk ("  STAT: %x\n", cp->scsi_status);
4347                                 break;
4348                         }
4349                 } else printk ("  HOSTERROR: %x", cp->host_status);
4350                 printk ("\n");
4351         }
4352
4353         /*
4354         **      Free this ccb
4355         */
4356         ncr_free_ccb (np, cp);
4357
4358         /*
4359         **      requeue awaiting scsi commands for this lun.
4360         */
4361         if (lp && lp->queuedccbs < lp->queuedepth &&
4362             !list_empty(&lp->wait_ccbq))
4363                 ncr_start_next_ccb(np, lp, 2);
4364
4365         /*
4366         **      requeue awaiting scsi commands for this controller.
4367         */
4368         if (np->waiting_list)
4369                 requeue_waiting_list(np);
4370
4371         /*
4372         **      signal completion to generic driver.
4373         */
4374         ncr_queue_done_cmd(np, cmd);
4375 }
4376
4377 /*==========================================================
4378 **
4379 **
4380 **      Signal all (or one) control block done.
4381 **
4382 **
4383 **==========================================================
4384 */
4385
4386 /*
4387 **      This CCB has been skipped by the NCR.
4388 **      Queue it in the correponding unit queue.
4389 */
4390 static void ncr_ccb_skipped(struct ncb *np, struct ccb *cp)
4391 {
4392         struct tcb *tp = &np->target[cp->target];
4393         struct lcb *lp = tp->lp[cp->lun];
4394
4395         if (lp && cp != np->ccb) {
4396                 cp->host_status &= ~HS_SKIPMASK;
4397                 cp->start.schedule.l_paddr = 
4398                         cpu_to_scr(NCB_SCRIPT_PHYS (np, select));
4399                 list_del(&cp->link_ccbq);
4400                 list_add_tail(&cp->link_ccbq, &lp->skip_ccbq);
4401                 if (cp->queued) {
4402                         --lp->queuedccbs;
4403                 }
4404         }
4405         if (cp->queued) {
4406                 --np->queuedccbs;
4407                 cp->queued = 0;
4408         }
4409 }
4410
4411 /*
4412 **      The NCR has completed CCBs.
4413 **      Look at the DONE QUEUE if enabled, otherwise scan all CCBs
4414 */
4415 void ncr_wakeup_done (struct ncb *np)
4416 {
4417         struct ccb *cp;
4418 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
4419         int i, j;
4420
4421         i = np->ccb_done_ic;
4422         while (1) {
4423                 j = i+1;
4424                 if (j >= MAX_DONE)
4425                         j = 0;
4426
4427                 cp = np->ccb_done[j];
4428                 if (!CCB_DONE_VALID(cp))
4429                         break;
4430
4431                 np->ccb_done[j] = (struct ccb *)CCB_DONE_EMPTY;
4432                 np->scripth->done_queue[5*j + 4] =
4433                                 cpu_to_scr(NCB_SCRIPT_PHYS (np, done_plug));
4434                 MEMORY_BARRIER();
4435                 np->scripth->done_queue[5*i + 4] =
4436                                 cpu_to_scr(NCB_SCRIPT_PHYS (np, done_end));
4437
4438                 if (cp->host_status & HS_DONEMASK)
4439                         ncr_complete (np, cp);
4440                 else if (cp->host_status & HS_SKIPMASK)
4441                         ncr_ccb_skipped (np, cp);
4442
4443                 i = j;
4444         }
4445         np->ccb_done_ic = i;
4446 #else
4447         cp = np->ccb;
4448         while (cp) {
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);
4453                 cp = cp->link_ccb;
4454         }
4455 #endif
4456 }
4457
4458 /*
4459 **      Complete all active CCBs.
4460 */
4461 void ncr_wakeup (struct ncb *np, u_long code)
4462 {
4463         struct ccb *cp = np->ccb;
4464
4465         while (cp) {
4466                 if (cp->host_status != HS_IDLE) {
4467                         cp->host_status = code;
4468                         ncr_complete (np, cp);
4469                 }
4470                 cp = cp->link_ccb;
4471         }
4472 }
4473
4474 /*
4475 ** Reset ncr chip.
4476 */
4477
4478 /* Some initialisation must be done immediately following reset, for 53c720,
4479  * at least.  EA (dcntl bit 5) isn't set here as it is set once only in
4480  * the _detect function.
4481  */
4482 static void ncr_chip_reset(struct ncb *np, int delay)
4483 {
4484         OUTB (nc_istat,  SRST);
4485         udelay(delay);
4486         OUTB (nc_istat,  0   );
4487
4488         if (np->features & FE_EHP)
4489                 OUTB (nc_ctest0, EHP);
4490         if (np->features & FE_MUX)
4491                 OUTB (nc_ctest4, MUX);
4492 }
4493
4494
4495 /*==========================================================
4496 **
4497 **
4498 **      Start NCR chip.
4499 **
4500 **
4501 **==========================================================
4502 */
4503
4504 void ncr_init (struct ncb *np, int reset, char * msg, u_long code)
4505 {
4506         int     i;
4507
4508         /*
4509         **      Reset chip if asked, otherwise just clear fifos.
4510         */
4511
4512         if (reset) {
4513                 OUTB (nc_istat,  SRST);
4514                 udelay(100);
4515         }
4516         else {
4517                 OUTB (nc_stest3, TE|CSF);
4518                 OUTONB (nc_ctest3, CLF);
4519         }
4520  
4521         /*
4522         **      Message.
4523         */
4524
4525         if (msg) printk (KERN_INFO "%s: restart (%s).\n", ncr_name (np), msg);
4526
4527         /*
4528         **      Clear Start Queue
4529         */
4530         np->queuedepth = MAX_START - 1; /* 1 entry needed as end marker */
4531         for (i = 1; i < MAX_START + MAX_START; i += 2)
4532                 np->scripth0->tryloop[i] =
4533                                 cpu_to_scr(NCB_SCRIPT_PHYS (np, idle));
4534
4535         /*
4536         **      Start at first entry.
4537         */
4538         np->squeueput = 0;
4539         np->script0->startpos[0] = cpu_to_scr(NCB_SCRIPTH_PHYS (np, tryloop));
4540
4541 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
4542         /*
4543         **      Clear Done Queue
4544         */
4545         for (i = 0; i < MAX_DONE; i++) {
4546                 np->ccb_done[i] = (struct ccb *)CCB_DONE_EMPTY;
4547                 np->scripth0->done_queue[5*i + 4] =
4548                         cpu_to_scr(NCB_SCRIPT_PHYS (np, done_end));
4549         }
4550 #endif
4551
4552         /*
4553         **      Start at first entry.
4554         */
4555         np->script0->done_pos[0] = cpu_to_scr(NCB_SCRIPTH_PHYS (np,done_queue));
4556         np->ccb_done_ic = MAX_DONE-1;
4557         np->scripth0->done_queue[5*(MAX_DONE-1) + 4] =
4558                         cpu_to_scr(NCB_SCRIPT_PHYS (np, done_plug));
4559
4560         /*
4561         **      Wakeup all pending jobs.
4562         */
4563         ncr_wakeup (np, code);
4564
4565         /*
4566         **      Init chip.
4567         */
4568
4569         /*
4570         ** Remove reset; big delay because the 895 needs time for the
4571         ** bus mode to settle
4572         */
4573         ncr_chip_reset(np, 2000);
4574
4575         OUTB (nc_scntl0, np->rv_scntl0 | 0xc0);
4576                                         /*  full arb., ena parity, par->ATN  */
4577         OUTB (nc_scntl1, 0x00);         /*  odd parity, and remove CRST!! */
4578
4579         ncr_selectclock(np, np->rv_scntl3);     /* Select SCSI clock */
4580
4581         OUTB (nc_scid  , RRE|np->myaddr);       /* Adapter SCSI address */
4582         OUTW (nc_respid, 1ul<<np->myaddr);      /* Id to respond to */
4583         OUTB (nc_istat , SIGP   );              /*  Signal Process */
4584         OUTB (nc_dmode , np->rv_dmode);         /* Burst length, dma mode */
4585         OUTB (nc_ctest5, np->rv_ctest5);        /* Large fifo + large burst */
4586
4587         OUTB (nc_dcntl , NOCOM|np->rv_dcntl);   /* Protect SFBR */
4588         OUTB (nc_ctest0, np->rv_ctest0);        /* 720: CDIS and EHP */
4589         OUTB (nc_ctest3, np->rv_ctest3);        /* Write and invalidate */
4590         OUTB (nc_ctest4, np->rv_ctest4);        /* Master parity checking */
4591
4592         OUTB (nc_stest2, EXT|np->rv_stest2);    /* Extended Sreq/Sack filtering */
4593         OUTB (nc_stest3, TE);                   /* TolerANT enable */
4594         OUTB (nc_stime0, 0x0c   );              /* HTH disabled  STO 0.25 sec */
4595
4596         /*
4597         **      Disable disconnects.
4598         */
4599
4600         np->disc = 0;
4601
4602         /*
4603         **    Enable GPIO0 pin for writing if LED support.
4604         */
4605
4606         if (np->features & FE_LED0) {
4607                 OUTOFFB (nc_gpcntl, 0x01);
4608         }
4609
4610         /*
4611         **      enable ints
4612         */
4613
4614         OUTW (nc_sien , STO|HTH|MA|SGE|UDC|RST|PAR);
4615         OUTB (nc_dien , MDPE|BF|ABRT|SSI|SIR|IID);
4616
4617         /*
4618         **      Fill in target structure.
4619         **      Reinitialize usrsync.
4620         **      Reinitialize usrwide.
4621         **      Prepare sync negotiation according to actual SCSI bus mode.
4622         */
4623
4624         for (i=0;i<MAX_TARGET;i++) {
4625                 struct tcb *tp = &np->target[i];
4626
4627                 tp->sval    = 0;
4628                 tp->wval    = np->rv_scntl3;
4629
4630                 if (tp->usrsync != 255) {
4631                         if (tp->usrsync <= np->maxsync) {
4632                                 if (tp->usrsync < np->minsync) {
4633                                         tp->usrsync = np->minsync;
4634                                 }
4635                         }
4636                         else
4637                                 tp->usrsync = 255;
4638                 }
4639
4640                 if (tp->usrwide > np->maxwide)
4641                         tp->usrwide = np->maxwide;
4642
4643         }
4644
4645         /*
4646         **    Start script processor.
4647         */
4648         if (np->paddr2) {
4649                 if (bootverbose)
4650                         printk ("%s: Downloading SCSI SCRIPTS.\n",
4651                                 ncr_name(np));
4652                 OUTL (nc_scratcha, vtobus(np->script0));
4653                 OUTL_DSP (NCB_SCRIPTH_PHYS (np, start_ram));
4654         }
4655         else
4656                 OUTL_DSP (NCB_SCRIPT_PHYS (np, start));
4657 }
4658
4659 /*==========================================================
4660 **
4661 **      Prepare the negotiation values for wide and
4662 **      synchronous transfers.
4663 **
4664 **==========================================================
4665 */
4666
4667 static void ncr_negotiate (struct ncb* np, struct tcb* tp)
4668 {
4669         /*
4670         **      minsync unit is 4ns !
4671         */
4672
4673         u_long minsync = tp->usrsync;
4674
4675         /*
4676         **      SCSI bus mode limit
4677         */
4678
4679         if (np->scsi_mode && np->scsi_mode == SMODE_SE) {
4680                 if (minsync < 12) minsync = 12;
4681         }
4682
4683         /*
4684         **      our limit ..
4685         */
4686
4687         if (minsync < np->minsync)
4688                 minsync = np->minsync;
4689
4690         /*
4691         **      divider limit
4692         */
4693
4694         if (minsync > np->maxsync)
4695                 minsync = 255;
4696
4697         if (tp->maxoffs > np->maxoffs)
4698                 tp->maxoffs = np->maxoffs;
4699
4700         tp->minsync = minsync;
4701         tp->maxoffs = (minsync<255 ? tp->maxoffs : 0);
4702
4703         /*
4704         **      period=0: has to negotiate sync transfer
4705         */
4706
4707         tp->period=0;
4708
4709         /*
4710         **      widedone=0: has to negotiate wide transfer
4711         */
4712         tp->widedone=0;
4713 }
4714
4715 /*==========================================================
4716 **
4717 **      Get clock factor and sync divisor for a given 
4718 **      synchronous factor period.
4719 **      Returns the clock factor (in sxfer) and scntl3 
4720 **      synchronous divisor field.
4721 **
4722 **==========================================================
4723 */
4724
4725 static void ncr_getsync(struct ncb *np, u_char sfac, u_char *fakp, u_char *scntl3p)
4726 {
4727         u_long  clk = np->clock_khz;    /* SCSI clock frequency in kHz  */
4728         int     div = np->clock_divn;   /* Number of divisors supported */
4729         u_long  fak;                    /* Sync factor in sxfer         */
4730         u_long  per;                    /* Period in tenths of ns       */
4731         u_long  kpc;                    /* (per * clk)                  */
4732
4733         /*
4734         **      Compute the synchronous period in tenths of nano-seconds
4735         */
4736         if      (sfac <= 10)    per = 250;
4737         else if (sfac == 11)    per = 303;
4738         else if (sfac == 12)    per = 500;
4739         else                    per = 40 * sfac;
4740
4741         /*
4742         **      Look for the greatest clock divisor that allows an 
4743         **      input speed faster than the period.
4744         */
4745         kpc = per * clk;
4746         while (--div >= 0)
4747                 if (kpc >= (div_10M[div] << 2)) break;
4748
4749         /*
4750         **      Calculate the lowest clock factor that allows an output 
4751         **      speed not faster than the period.
4752         */
4753         fak = (kpc - 1) / div_10M[div] + 1;
4754
4755 #if 0   /* This optimization does not seem very useful */
4756
4757         per = (fak * div_10M[div]) / clk;
4758
4759         /*
4760         **      Why not to try the immediate lower divisor and to choose 
4761         **      the one that allows the fastest output speed ?
4762         **      We don't want input speed too much greater than output speed.
4763         */
4764         if (div >= 1 && fak < 8) {
4765                 u_long fak2, per2;
4766                 fak2 = (kpc - 1) / div_10M[div-1] + 1;
4767                 per2 = (fak2 * div_10M[div-1]) / clk;
4768                 if (per2 < per && fak2 <= 8) {
4769                         fak = fak2;
4770                         per = per2;
4771                         --div;
4772                 }
4773         }
4774 #endif
4775
4776         if (fak < 4) fak = 4;   /* Should never happen, too bad ... */
4777
4778         /*
4779         **      Compute and return sync parameters for the ncr
4780         */
4781         *fakp           = fak - 4;
4782         *scntl3p        = ((div+1) << 4) + (sfac < 25 ? 0x80 : 0);
4783 }
4784
4785
4786 /*==========================================================
4787 **
4788 **      Set actual values, sync status and patch all ccbs of 
4789 **      a target according to new sync/wide agreement.
4790 **
4791 **==========================================================
4792 */
4793
4794 static void ncr_set_sync_wide_status (struct ncb *np, u_char target)
4795 {
4796         struct ccb *cp;
4797         struct tcb *tp = &np->target[target];
4798
4799         /*
4800         **      set actual value and sync_status
4801         */
4802         OUTB (nc_sxfer, tp->sval);
4803         np->sync_st = tp->sval;
4804         OUTB (nc_scntl3, tp->wval);
4805         np->wide_st = tp->wval;
4806
4807         /*
4808         **      patch ALL ccbs of this target.
4809         */
4810         for (cp = np->ccb; cp; cp = cp->link_ccb) {
4811                 if (!cp->cmd) continue;
4812                 if (scmd_id(cp->cmd) != target) continue;
4813 #if 0
4814                 cp->sync_status = tp->sval;
4815                 cp->wide_status = tp->wval;
4816 #endif
4817                 cp->phys.select.sel_scntl3 = tp->wval;
4818                 cp->phys.select.sel_sxfer  = tp->sval;
4819         }
4820 }
4821
4822 /*==========================================================
4823 **
4824 **      Switch sync mode for current job and it's target
4825 **
4826 **==========================================================
4827 */
4828
4829 static void ncr_setsync (struct ncb *np, struct ccb *cp, u_char scntl3, u_char sxfer)
4830 {
4831         struct scsi_cmnd *cmd = cp->cmd;
4832         struct tcb *tp;
4833         u_char target = INB (nc_sdid) & 0x0f;
4834         u_char idiv;
4835
4836         BUG_ON(target != (scmd_id(cmd) & 0xf));
4837
4838         tp = &np->target[target];
4839
4840         if (!scntl3 || !(sxfer & 0x1f))
4841                 scntl3 = np->rv_scntl3;
4842         scntl3 = (scntl3 & 0xf0) | (tp->wval & EWS) | (np->rv_scntl3 & 0x07);
4843
4844         /*
4845         **      Deduce the value of controller sync period from scntl3.
4846         **      period is in tenths of nano-seconds.
4847         */
4848
4849         idiv = ((scntl3 >> 4) & 0x7);
4850         if ((sxfer & 0x1f) && idiv)
4851                 tp->period = (((sxfer>>5)+4)*div_10M[idiv-1])/np->clock_khz;
4852         else
4853                 tp->period = 0xffff;
4854
4855         /* Stop there if sync parameters are unchanged */
4856         if (tp->sval == sxfer && tp->wval == scntl3)
4857                 return;
4858         tp->sval = sxfer;
4859         tp->wval = scntl3;
4860
4861         if (sxfer & 0x01f) {
4862                 /* Disable extended Sreq/Sack filtering */
4863                 if (tp->period <= 2000)
4864                         OUTOFFB(nc_stest2, EXT);
4865         }
4866  
4867         spi_display_xfer_agreement(tp->starget);
4868
4869         /*
4870         **      set actual value and sync_status
4871         **      patch ALL ccbs of this target.
4872         */
4873         ncr_set_sync_wide_status(np, target);
4874 }
4875
4876 /*==========================================================
4877 **
4878 **      Switch wide mode for current job and it's target
4879 **      SCSI specs say: a SCSI device that accepts a WDTR 
4880 **      message shall reset the synchronous agreement to 
4881 **      asynchronous mode.
4882 **
4883 **==========================================================
4884 */
4885
4886 static void ncr_setwide (struct ncb *np, struct ccb *cp, u_char wide, u_char ack)
4887 {
4888         struct scsi_cmnd *cmd = cp->cmd;
4889         u16 target = INB (nc_sdid) & 0x0f;
4890         struct tcb *tp;
4891         u_char  scntl3;
4892         u_char  sxfer;
4893
4894         BUG_ON(target != (scmd_id(cmd) & 0xf));
4895
4896         tp = &np->target[target];
4897         tp->widedone  =  wide+1;
4898         scntl3 = (tp->wval & (~EWS)) | (wide ? EWS : 0);
4899
4900         sxfer = ack ? 0 : tp->sval;
4901
4902         /*
4903         **       Stop there if sync/wide parameters are unchanged
4904         */
4905         if (tp->sval == sxfer && tp->wval == scntl3) return;
4906         tp->sval = sxfer;
4907         tp->wval = scntl3;
4908
4909         /*
4910         **      Bells and whistles   ;-)
4911         */
4912         if (bootverbose >= 2) {
4913                 dev_info(&cmd->device->sdev_target->dev, "WIDE SCSI %sabled.\n",
4914                                 (scntl3 & EWS) ? "en" : "dis");
4915         }
4916
4917         /*
4918         **      set actual value and sync_status
4919         **      patch ALL ccbs of this target.
4920         */
4921         ncr_set_sync_wide_status(np, target);
4922 }
4923
4924 /*==========================================================
4925 **
4926 **      Switch tagged mode for a target.
4927 **
4928 **==========================================================
4929 */
4930
4931 static void ncr_setup_tags (struct ncb *np, struct scsi_device *sdev)
4932 {
4933         unsigned char tn = sdev->id, ln = sdev->lun;
4934         struct tcb *tp = &np->target[tn];
4935         struct lcb *lp = tp->lp[ln];
4936         u_char   reqtags, maxdepth;
4937
4938         /*
4939         **      Just in case ...
4940         */
4941         if ((!tp) || (!lp) || !sdev)
4942                 return;
4943
4944         /*
4945         **      If SCSI device queue depth is not yet set, leave here.
4946         */
4947         if (!lp->scdev_depth)
4948                 return;
4949
4950         /*
4951         **      Donnot allow more tags than the SCSI driver can queue 
4952         **      for this device.
4953         **      Donnot allow more tags than we can handle.
4954         */
4955         maxdepth = lp->scdev_depth;
4956         if (maxdepth > lp->maxnxs)      maxdepth    = lp->maxnxs;
4957         if (lp->maxtags > maxdepth)     lp->maxtags = maxdepth;
4958         if (lp->numtags > maxdepth)     lp->numtags = maxdepth;
4959
4960         /*
4961         **      only devices conformant to ANSI Version >= 2
4962         **      only devices capable of tagged commands
4963         **      only if enabled by user ..
4964         */
4965         if (sdev->tagged_supported && lp->numtags > 1) {
4966                 reqtags = lp->numtags;
4967         } else {
4968                 reqtags = 1;
4969         }
4970
4971         /*
4972         **      Update max number of tags
4973         */
4974         lp->numtags = reqtags;
4975         if (lp->numtags > lp->maxtags)
4976                 lp->maxtags = lp->numtags;
4977
4978         /*
4979         **      If we want to switch tag mode, we must wait 
4980         **      for no CCB to be active.
4981         */
4982         if      (reqtags > 1 && lp->usetags) {   /* Stay in tagged mode    */
4983                 if (lp->queuedepth == reqtags)   /* Already announced      */
4984                         return;
4985                 lp->queuedepth  = reqtags;
4986         }
4987         else if (reqtags <= 1 && !lp->usetags) { /* Stay in untagged mode  */
4988                 lp->queuedepth  = reqtags;
4989                 return;
4990         }
4991         else {                                   /* Want to switch tag mode */
4992                 if (lp->busyccbs)                /* If not yet safe, return */
4993                         return;
4994                 lp->queuedepth  = reqtags;
4995                 lp->usetags     = reqtags > 1 ? 1 : 0;
4996         }
4997
4998         /*
4999         **      Patch the lun mini-script, according to tag mode.
5000         */
5001         lp->jump_tag.l_paddr = lp->usetags?
5002                         cpu_to_scr(NCB_SCRIPT_PHYS(np, resel_tag)) :
5003                         cpu_to_scr(NCB_SCRIPT_PHYS(np, resel_notag));
5004
5005         /*
5006         **      Announce change to user.
5007         */
5008         if (bootverbose) {
5009                 if (lp->usetags) {
5010                         dev_info(&sdev->sdev_gendev,
5011                                 "tagged command queue depth set to %d\n",
5012                                 reqtags);
5013                 } else {
5014                         dev_info(&sdev->sdev_gendev,
5015                                         "tagged command queueing disabled\n");
5016                 }
5017         }
5018 }
5019
5020 /*==========================================================
5021 **
5022 **
5023 **      ncr timeout handler.
5024 **
5025 **
5026 **==========================================================
5027 **
5028 **      Misused to keep the driver running when
5029 **      interrupts are not configured correctly.
5030 **
5031 **----------------------------------------------------------
5032 */
5033
5034 static void ncr_timeout (struct ncb *np)
5035 {
5036         u_long  thistime = jiffies;
5037
5038         /*
5039         **      If release process in progress, let's go
5040         **      Set the release stage from 1 to 2 to synchronize
5041         **      with the release process.
5042         */
5043
5044         if (np->release_stage) {
5045                 if (np->release_stage == 1) np->release_stage = 2;
5046                 return;
5047         }
5048
5049         np->timer.expires = jiffies + SCSI_NCR_TIMER_INTERVAL;
5050         add_timer(&np->timer);
5051
5052         /*
5053         **      If we are resetting the ncr, wait for settle_time before 
5054         **      clearing it. Then command processing will be resumed.
5055         */
5056         if (np->settle_time) {
5057                 if (np->settle_time <= thistime) {
5058                         if (bootverbose > 1)
5059                                 printk("%s: command processing resumed\n", ncr_name(np));
5060                         np->settle_time = 0;
5061                         np->disc        = 1;
5062                         requeue_waiting_list(np);
5063                 }
5064                 return;
5065         }
5066
5067         /*
5068         **      Since the generic scsi driver only allows us 0.5 second 
5069         **      to perform abort of a command, we must look at ccbs about 
5070         **      every 0.25 second.
5071         */
5072         if (np->lasttime + 4*HZ < thistime) {
5073                 /*
5074                 **      block ncr interrupts
5075                 */
5076                 np->lasttime = thistime;
5077         }
5078
5079 #ifdef SCSI_NCR_BROKEN_INTR
5080         if (INB(nc_istat) & (INTF|SIP|DIP)) {
5081
5082                 /*
5083                 **      Process pending interrupts.
5084                 */
5085                 if (DEBUG_FLAGS & DEBUG_TINY) printk ("{");
5086                 ncr_exception (np);
5087                 if (DEBUG_FLAGS & DEBUG_TINY) printk ("}");
5088         }
5089 #endif /* SCSI_NCR_BROKEN_INTR */
5090 }
5091
5092 /*==========================================================
5093 **
5094 **      log message for real hard errors
5095 **
5096 **      "ncr0 targ 0?: ERROR (ds:si) (so-si-sd) (sxfer/scntl3) @ name (dsp:dbc)."
5097 **      "             reg: r0 r1 r2 r3 r4 r5 r6 ..... rf."
5098 **
5099 **      exception register:
5100 **              ds:     dstat
5101 **              si:     sist
5102 **
5103 **      SCSI bus lines:
5104 **              so:     control lines as driver by NCR.
5105 **              si:     control lines as seen by NCR.
5106 **              sd:     scsi data lines as seen by NCR.
5107 **
5108 **      wide/fastmode:
5109 **              sxfer:  (see the manual)
5110 **              scntl3: (see the manual)
5111 **
5112 **      current script command:
5113 **              dsp:    script address (relative to start of script).
5114 **              dbc:    first word of script command.
5115 **
5116 **      First 16 register of the chip:
5117 **              r0..rf
5118 **
5119 **==========================================================
5120 */
5121
5122 static void ncr_log_hard_error(struct ncb *np, u16 sist, u_char dstat)
5123 {
5124         u32     dsp;
5125         int     script_ofs;
5126         int     script_size;
5127         char    *script_name;
5128         u_char  *script_base;
5129         int     i;
5130
5131         dsp     = INL (nc_dsp);
5132
5133         if (dsp > np->p_script && dsp <= np->p_script + sizeof(struct script)) {
5134                 script_ofs      = dsp - np->p_script;
5135                 script_size     = sizeof(struct script);
5136                 script_base     = (u_char *) np->script0;
5137                 script_name     = "script";
5138         }
5139         else if (np->p_scripth < dsp && 
5140                  dsp <= np->p_scripth + sizeof(struct scripth)) {
5141                 script_ofs      = dsp - np->p_scripth;
5142                 script_size     = sizeof(struct scripth);
5143                 script_base     = (u_char *) np->scripth0;
5144                 script_name     = "scripth";
5145         } else {
5146                 script_ofs      = dsp;
5147                 script_size     = 0;
5148                 script_base     = NULL;
5149                 script_name     = "mem";
5150         }
5151
5152         printk ("%s:%d: ERROR (%x:%x) (%x-%x-%x) (%x/%x) @ (%s %x:%08x).\n",
5153                 ncr_name (np), (unsigned)INB (nc_sdid)&0x0f, dstat, sist,
5154                 (unsigned)INB (nc_socl), (unsigned)INB (nc_sbcl), (unsigned)INB (nc_sbdl),
5155                 (unsigned)INB (nc_sxfer),(unsigned)INB (nc_scntl3), script_name, script_ofs,
5156                 (unsigned)INL (nc_dbc));
5157
5158         if (((script_ofs & 3) == 0) &&
5159             (unsigned)script_ofs < script_size) {
5160                 printk ("%s: script cmd = %08x\n", ncr_name(np),
5161                         scr_to_cpu((int) *(ncrcmd *)(script_base + script_ofs)));
5162         }
5163
5164         printk ("%s: regdump:", ncr_name(np));
5165         for (i=0; i<16;i++)
5166             printk (" %02x", (unsigned)INB_OFF(i));
5167         printk (".\n");
5168 }
5169
5170 /*============================================================
5171 **
5172 **      ncr chip exception handler.
5173 **
5174 **============================================================
5175 **
5176 **      In normal cases, interrupt conditions occur one at a 
5177 **      time. The ncr is able to stack in some extra registers 
5178 **      other interrupts that will occurs after the first one.
5179 **      But severall interrupts may occur at the same time.
5180 **
5181 **      We probably should only try to deal with the normal 
5182 **      case, but it seems that multiple interrupts occur in 
5183 **      some cases that are not abnormal at all.
5184 **
5185 **      The most frequent interrupt condition is Phase Mismatch.
5186 **      We should want to service this interrupt quickly.
5187 **      A SCSI parity error may be delivered at the same time.
5188 **      The SIR interrupt is not very frequent in this driver, 
5189 **      since the INTFLY is likely used for command completion 
5190 **      signaling.
5191 **      The Selection Timeout interrupt may be triggered with 
5192 **      IID and/or UDC.
5193 **      The SBMC interrupt (SCSI Bus Mode Change) may probably 
5194 **      occur at any time.
5195 **
5196 **      This handler try to deal as cleverly as possible with all
5197 **      the above.
5198 **
5199 **============================================================
5200 */
5201
5202 void ncr_exception (struct ncb *np)
5203 {
5204         u_char  istat, dstat;
5205         u16     sist;
5206         int     i;
5207
5208         /*
5209         **      interrupt on the fly ?
5210         **      Since the global header may be copied back to a CCB 
5211         **      using a posted PCI memory write, the last operation on 
5212         **      the istat register is a READ in order to flush posted 
5213         **      PCI write commands.
5214         */
5215         istat = INB (nc_istat);
5216         if (istat & INTF) {
5217                 OUTB (nc_istat, (istat & SIGP) | INTF);
5218                 istat = INB (nc_istat);
5219                 if (DEBUG_FLAGS & DEBUG_TINY) printk ("F ");
5220                 ncr_wakeup_done (np);
5221         }
5222
5223         if (!(istat & (SIP|DIP)))
5224                 return;
5225
5226         if (istat & CABRT)
5227                 OUTB (nc_istat, CABRT);
5228
5229         /*
5230         **      Steinbach's Guideline for Systems Programming:
5231         **      Never test for an error condition you don't know how to handle.
5232         */
5233
5234         sist  = (istat & SIP) ? INW (nc_sist)  : 0;
5235         dstat = (istat & DIP) ? INB (nc_dstat) : 0;
5236
5237         if (DEBUG_FLAGS & DEBUG_TINY)
5238                 printk ("<%d|%x:%x|%x:%x>",
5239                         (int)INB(nc_scr0),
5240                         dstat,sist,
5241                         (unsigned)INL(nc_dsp),
5242                         (unsigned)INL(nc_dbc));
5243
5244         /*========================================================
5245         **      First, interrupts we want to service cleanly.
5246         **
5247         **      Phase mismatch is the most frequent interrupt, and 
5248         **      so we have to service it as quickly and as cleanly 
5249         **      as possible.
5250         **      Programmed interrupts are rarely used in this driver,
5251         **      but we must handle them cleanly anyway.
5252         **      We try to deal with PAR and SBMC combined with 
5253         **      some other interrupt(s).
5254         **=========================================================
5255         */
5256
5257         if (!(sist  & (STO|GEN|HTH|SGE|UDC|RST)) &&
5258             !(dstat & (MDPE|BF|ABRT|IID))) {
5259                 if ((sist & SBMC) && ncr_int_sbmc (np))
5260                         return;
5261                 if ((sist & PAR)  && ncr_int_par  (np))
5262                         return;
5263                 if (sist & MA) {
5264                         ncr_int_ma (np);
5265                         return;
5266                 }
5267                 if (dstat & SIR) {
5268                         ncr_int_sir (np);
5269                         return;
5270                 }
5271                 /*
5272                 **  DEL 397 - 53C875 Rev 3 - Part Number 609-0392410 - ITEM 2.
5273                 */
5274                 if (!(sist & (SBMC|PAR)) && !(dstat & SSI)) {
5275                         printk( "%s: unknown interrupt(s) ignored, "
5276                                 "ISTAT=%x DSTAT=%x SIST=%x\n",
5277                                 ncr_name(np), istat, dstat, sist);
5278                         return;
5279                 }
5280                 OUTONB_STD ();
5281                 return;
5282         }
5283
5284         /*========================================================
5285         **      Now, interrupts that need some fixing up.
5286         **      Order and multiple interrupts is so less important.
5287         **
5288         **      If SRST has been asserted, we just reset the chip.
5289         **
5290         **      Selection is intirely handled by the chip. If the 
5291         **      chip says STO, we trust it. Seems some other 
5292         **      interrupts may occur at the same time (UDC, IID), so 
5293         **      we ignore them. In any case we do enough fix-up 
5294         **      in the service routine.
5295         **      We just exclude some fatal dma errors.
5296         **=========================================================
5297         */
5298
5299         if (sist & RST) {
5300                 ncr_init (np, 1, bootverbose ? "scsi reset" : NULL, HS_RESET);
5301                 return;
5302         }
5303
5304         if ((sist & STO) &&
5305                 !(dstat & (MDPE|BF|ABRT))) {
5306         /*
5307         **      DEL 397 - 53C875 Rev 3 - Part Number 609-0392410 - ITEM 1.
5308         */
5309                 OUTONB (nc_ctest3, CLF);
5310
5311                 ncr_int_sto (np);
5312                 return;
5313         }
5314
5315         /*=========================================================
5316         **      Now, interrupts we are not able to recover cleanly.
5317         **      (At least for the moment).
5318         **
5319         **      Do the register dump.
5320         **      Log message for real hard errors.
5321         **      Clear all fifos.
5322         **      For MDPE, BF, ABORT, IID, SGE and HTH we reset the 
5323         **      BUS and the chip.
5324         **      We are more soft for UDC.
5325         **=========================================================
5326         */
5327
5328         if (time_after(jiffies, np->regtime)) {
5329                 np->regtime = jiffies + 10*HZ;
5330                 for (i = 0; i<sizeof(np->regdump); i++)
5331                         ((char*)&np->regdump)[i] = INB_OFF(i);
5332                 np->regdump.nc_dstat = dstat;
5333                 np->regdump.nc_sist  = sist;
5334         }
5335
5336         ncr_log_hard_error(np, sist, dstat);
5337
5338         printk ("%s: have to clear fifos.\n", ncr_name (np));
5339         OUTB (nc_stest3, TE|CSF);
5340         OUTONB (nc_ctest3, CLF);
5341
5342         if ((sist & (SGE)) ||
5343                 (dstat & (MDPE|BF|ABRT|IID))) {
5344                 ncr_start_reset(np);
5345                 return;
5346         }
5347
5348         if (sist & HTH) {
5349                 printk ("%s: handshake timeout\n", ncr_name(np));
5350                 ncr_start_reset(np);
5351                 return;
5352         }
5353
5354         if (sist & UDC) {
5355                 printk ("%s: unexpected disconnect\n", ncr_name(np));
5356                 OUTB (HS_PRT, HS_UNEXPECTED);
5357                 OUTL_DSP (NCB_SCRIPT_PHYS (np, cleanup));
5358                 return;
5359         }
5360
5361         /*=========================================================
5362         **      We just miss the cause of the interrupt. :(
5363         **      Print a message. The timeout will do the real work.
5364         **=========================================================
5365         */
5366         printk ("%s: unknown interrupt\n", ncr_name(np));
5367 }
5368
5369 /*==========================================================
5370 **
5371 **      ncr chip exception handler for selection timeout
5372 **
5373 **==========================================================
5374 **
5375 **      There seems to be a bug in the 53c810.
5376 **      Although a STO-Interrupt is pending,
5377 **      it continues executing script commands.
5378 **      But it will fail and interrupt (IID) on
5379 **      the next instruction where it's looking
5380 **      for a valid phase.
5381 **
5382 **----------------------------------------------------------
5383 */
5384
5385 void ncr_int_sto (struct ncb *np)
5386 {
5387         u_long dsa;
5388         struct ccb *cp;
5389         if (DEBUG_FLAGS & DEBUG_TINY) printk ("T");
5390
5391         /*
5392         **      look for ccb and set the status.
5393         */
5394
5395         dsa = INL (nc_dsa);
5396         cp = np->ccb;
5397         while (cp && (CCB_PHYS (cp, phys) != dsa))
5398                 cp = cp->link_ccb;
5399
5400         if (cp) {
5401                 cp-> host_status = HS_SEL_TIMEOUT;
5402                 ncr_complete (np, cp);
5403         }
5404
5405         /*
5406         **      repair start queue and jump to start point.
5407         */
5408
5409         OUTL_DSP (NCB_SCRIPTH_PHYS (np, sto_restart));
5410         return;
5411 }
5412
5413 /*==========================================================
5414 **
5415 **      ncr chip exception handler for SCSI bus mode change
5416 **
5417 **==========================================================
5418 **
5419 **      spi2-r12 11.2.3 says a transceiver mode change must 
5420 **      generate a reset event and a device that detects a reset 
5421 **      event shall initiate a hard reset. It says also that a
5422 **      device that detects a mode change shall set data transfer 
5423 **      mode to eight bit asynchronous, etc...
5424 **      So, just resetting should be enough.
5425 **       
5426 **
5427 **----------------------------------------------------------
5428 */
5429
5430 static int ncr_int_sbmc (struct ncb *np)
5431 {
5432         u_char scsi_mode = INB (nc_stest4) & SMODE;
5433
5434         if (scsi_mode != np->scsi_mode) {
5435                 printk("%s: SCSI bus mode change from %x to %x.\n",
5436                         ncr_name(np), np->scsi_mode, scsi_mode);
5437
5438                 np->scsi_mode = scsi_mode;
5439
5440
5441                 /*
5442                 **      Suspend command processing for 1 second and 
5443                 **      reinitialize all except the chip.
5444                 */
5445                 np->settle_time = jiffies + HZ;
5446                 ncr_init (np, 0, bootverbose ? "scsi mode change" : NULL, HS_RESET);
5447                 return 1;
5448         }
5449         return 0;
5450 }
5451
5452 /*==========================================================
5453 **
5454 **      ncr chip exception handler for SCSI parity error.
5455 **
5456 **==========================================================
5457 **
5458 **
5459 **----------------------------------------------------------
5460 */
5461
5462 static int ncr_int_par (struct ncb *np)
5463 {
5464         u_char  hsts    = INB (HS_PRT);
5465         u32     dbc     = INL (nc_dbc);
5466         u_char  sstat1  = INB (nc_sstat1);
5467         int phase       = -1;
5468         int msg         = -1;
5469         u32 jmp;
5470
5471         printk("%s: SCSI parity error detected: SCR1=%d DBC=%x SSTAT1=%x\n",
5472                 ncr_name(np), hsts, dbc, sstat1);
5473
5474         /*
5475          *      Ignore the interrupt if the NCR is not connected 
5476          *      to the SCSI bus, since the right work should have  
5477          *      been done on unexpected disconnection handling.
5478          */
5479         if (!(INB (nc_scntl1) & ISCON))
5480                 return 0;
5481
5482         /*
5483          *      If the nexus is not clearly identified, reset the bus.
5484          *      We will try to do better later.
5485          */
5486         if (hsts & HS_INVALMASK)
5487                 goto reset_all;
5488
5489         /*
5490          *      If the SCSI parity error occurs in MSG IN phase, prepare a 
5491          *      MSG PARITY message. Otherwise, prepare a INITIATOR DETECTED 
5492          *      ERROR message and let the device decide to retry the command 
5493          *      or to terminate with check condition. If we were in MSG IN 
5494          *      phase waiting for the response of a negotiation, we will 
5495          *      get SIR_NEGO_FAILED at dispatch.
5496          */
5497         if (!(dbc & 0xc0000000))
5498                 phase = (dbc >> 24) & 7;
5499         if (phase == 7)
5500                 msg = M_PARITY;
5501         else
5502                 msg = M_ID_ERROR;
5503
5504
5505         /*
5506          *      If the NCR stopped on a MOVE ^ DATA_IN, we jump to a 
5507          *      script that will ignore all data in bytes until phase 
5508          *      change, since we are not sure the chip will wait the phase 
5509          *      change prior to delivering the interrupt.
5510          */
5511         if (phase == 1)
5512                 jmp = NCB_SCRIPTH_PHYS (np, par_err_data_in);
5513         else
5514                 jmp = NCB_SCRIPTH_PHYS (np, par_err_other);
5515
5516         OUTONB (nc_ctest3, CLF );       /* clear dma fifo  */
5517         OUTB (nc_stest3, TE|CSF);       /* clear scsi fifo */
5518
5519         np->msgout[0] = msg;
5520         OUTL_DSP (jmp);
5521         return 1;
5522
5523 reset_all:
5524         ncr_start_reset(np);
5525         return 1;
5526 }
5527
5528 /*==========================================================
5529 **
5530 **
5531 **      ncr chip exception handler for phase errors.
5532 **
5533 **
5534 **==========================================================
5535 **
5536 **      We have to construct a new transfer descriptor,
5537 **      to transfer the rest of the current block.
5538 **
5539 **----------------------------------------------------------
5540 */
5541
5542 static void ncr_int_ma (struct ncb *np)
5543 {
5544         u32     dbc;
5545         u32     rest;
5546         u32     dsp;
5547         u32     dsa;
5548         u32     nxtdsp;
5549         u32     newtmp;
5550         u32     *vdsp;
5551         u32     oadr, olen;
5552         u32     *tblp;
5553         ncrcmd *newcmd;
5554         u_char  cmd, sbcl;
5555         struct ccb *cp;
5556
5557         dsp     = INL (nc_dsp);
5558         dbc     = INL (nc_dbc);
5559         sbcl    = INB (nc_sbcl);
5560
5561         cmd     = dbc >> 24;
5562         rest    = dbc & 0xffffff;
5563
5564         /*
5565         **      Take into account dma fifo and various buffers and latches,
5566         **      only if the interrupted phase is an OUTPUT phase.
5567         */
5568
5569         if ((cmd & 1) == 0) {
5570                 u_char  ctest5, ss0, ss2;
5571                 u16     delta;
5572
5573                 ctest5 = (np->rv_ctest5 & DFS) ? INB (nc_ctest5) : 0;
5574                 if (ctest5 & DFS)
5575                         delta=(((ctest5 << 8) | (INB (nc_dfifo) & 0xff)) - rest) & 0x3ff;
5576                 else
5577                         delta=(INB (nc_dfifo) - rest) & 0x7f;
5578
5579                 /*
5580                 **      The data in the dma fifo has not been transferred to
5581                 **      the target -> add the amount to the rest
5582                 **      and clear the data.
5583                 **      Check the sstat2 register in case of wide transfer.
5584                 */
5585
5586                 rest += delta;
5587                 ss0  = INB (nc_sstat0);
5588                 if (ss0 & OLF) rest++;
5589                 if (ss0 & ORF) rest++;
5590                 if (INB(nc_scntl3) & EWS) {
5591                         ss2 = INB (nc_sstat2);
5592                         if (ss2 & OLF1) rest++;
5593                         if (ss2 & ORF1) rest++;
5594                 }
5595
5596                 if (DEBUG_FLAGS & (DEBUG_TINY|DEBUG_PHASE))
5597                         printk ("P%x%x RL=%d D=%d SS0=%x ", cmd&7, sbcl&7,
5598                                 (unsigned) rest, (unsigned) delta, ss0);
5599
5600         } else  {
5601                 if (DEBUG_FLAGS & (DEBUG_TINY|DEBUG_PHASE))
5602                         printk ("P%x%x RL=%d ", cmd&7, sbcl&7, rest);
5603         }
5604
5605         /*
5606         **      Clear fifos.
5607         */
5608         OUTONB (nc_ctest3, CLF );       /* clear dma fifo  */
5609         OUTB (nc_stest3, TE|CSF);       /* clear scsi fifo */
5610
5611         /*
5612         **      locate matching cp.
5613         **      if the interrupted phase is DATA IN or DATA OUT,
5614         **      trust the global header.
5615         */
5616         dsa = INL (nc_dsa);
5617         if (!(cmd & 6)) {
5618                 cp = np->header.cp;
5619                 if (CCB_PHYS(cp, phys) != dsa)
5620                         cp = NULL;
5621         } else {
5622                 cp  = np->ccb;
5623                 while (cp && (CCB_PHYS (cp, phys) != dsa))
5624                         cp = cp->link_ccb;
5625         }
5626
5627         /*
5628         **      try to find the interrupted script command,
5629         **      and the address at which to continue.
5630         */
5631         vdsp    = NULL;
5632         nxtdsp  = 0;
5633         if      (dsp >  np->p_script &&
5634                  dsp <= np->p_script + sizeof(struct script)) {
5635                 vdsp = (u32 *)((char*)np->script0 + (dsp-np->p_script-8));
5636                 nxtdsp = dsp;
5637         }
5638         else if (dsp >  np->p_scripth &&
5639                  dsp <= np->p_scripth + sizeof(struct scripth)) {
5640                 vdsp = (u32 *)((char*)np->scripth0 + (dsp-np->p_scripth-8));
5641                 nxtdsp = dsp;
5642         }
5643         else if (cp) {
5644                 if      (dsp == CCB_PHYS (cp, patch[2])) {
5645                         vdsp = &cp->patch[0];
5646                         nxtdsp = scr_to_cpu(vdsp[3]);
5647                 }
5648                 else if (dsp == CCB_PHYS (cp, patch[6])) {
5649                         vdsp = &cp->patch[4];
5650                         nxtdsp = scr_to_cpu(vdsp[3]);
5651                 }
5652         }
5653
5654         /*
5655         **      log the information
5656         */
5657
5658         if (DEBUG_FLAGS & DEBUG_PHASE) {
5659                 printk ("\nCP=%p CP2=%p DSP=%x NXT=%x VDSP=%p CMD=%x ",
5660                         cp, np->header.cp,
5661                         (unsigned)dsp,
5662                         (unsigned)nxtdsp, vdsp, cmd);
5663         }
5664
5665         /*
5666         **      cp=0 means that the DSA does not point to a valid control 
5667         **      block. This should not happen since we donnot use multi-byte 
5668         **      move while we are being reselected ot after command complete.
5669         **      We are not able to recover from such a phase error.
5670         */
5671         if (!cp) {
5672                 printk ("%s: SCSI phase error fixup: "
5673                         "CCB already dequeued (0x%08lx)\n", 
5674                         ncr_name (np), (u_long) np->header.cp);
5675                 goto reset_all;
5676         }
5677
5678         /*
5679         **      get old startaddress and old length.
5680         */
5681
5682         oadr = scr_to_cpu(vdsp[1]);
5683
5684         if (cmd & 0x10) {       /* Table indirect */
5685                 tblp = (u32 *) ((char*) &cp->phys + oadr);
5686                 olen = scr_to_cpu(tblp[0]);
5687                 oadr = scr_to_cpu(tblp[1]);
5688         } else {
5689                 tblp = (u32 *) 0;
5690                 olen = scr_to_cpu(vdsp[0]) & 0xffffff;
5691         }
5692
5693         if (DEBUG_FLAGS & DEBUG_PHASE) {
5694                 printk ("OCMD=%x\nTBLP=%p OLEN=%x OADR=%x\n",
5695                         (unsigned) (scr_to_cpu(vdsp[0]) >> 24),
5696                         tblp,
5697                         (unsigned) olen,
5698                         (unsigned) oadr);
5699         }
5700
5701         /*
5702         **      check cmd against assumed interrupted script command.
5703         */
5704
5705         if (cmd != (scr_to_cpu(vdsp[0]) >> 24)) {
5706                 PRINT_ADDR(cp->cmd, "internal error: cmd=%02x != %02x=(vdsp[0] "
5707                                 ">> 24)\n", cmd, scr_to_cpu(vdsp[0]) >> 24);
5708
5709                 goto reset_all;
5710         }
5711
5712         /*
5713         **      cp != np->header.cp means that the header of the CCB 
5714         **      currently being processed has not yet been copied to 
5715         **      the global header area. That may happen if the device did 
5716         **      not accept all our messages after having been selected.
5717         */
5718         if (cp != np->header.cp) {
5719                 printk ("%s: SCSI phase error fixup: "
5720                         "CCB address mismatch (0x%08lx != 0x%08lx)\n", 
5721                         ncr_name (np), (u_long) cp, (u_long) np->header.cp);
5722         }
5723
5724         /*
5725         **      if old phase not dataphase, leave here.
5726         */
5727
5728         if (cmd & 0x06) {
5729                 PRINT_ADDR(cp->cmd, "phase change %x-%x %d@%08x resid=%d.\n",
5730                         cmd&7, sbcl&7, (unsigned)olen,
5731                         (unsigned)oadr, (unsigned)rest);
5732                 goto unexpected_phase;
5733         }
5734
5735         /*
5736         **      choose the correct patch area.
5737         **      if savep points to one, choose the other.
5738         */
5739
5740         newcmd = cp->patch;
5741         newtmp = CCB_PHYS (cp, patch);
5742         if (newtmp == scr_to_cpu(cp->phys.header.savep)) {
5743                 newcmd = &cp->patch[4];
5744                 newtmp = CCB_PHYS (cp, patch[4]);
5745         }
5746
5747         /*
5748         **      fillin the commands
5749         */
5750
5751         newcmd[0] = cpu_to_scr(((cmd & 0x0f) << 24) | rest);
5752         newcmd[1] = cpu_to_scr(oadr + olen - rest);
5753         newcmd[2] = cpu_to_scr(SCR_JUMP);
5754         newcmd[3] = cpu_to_scr(nxtdsp);
5755
5756         if (DEBUG_FLAGS & DEBUG_PHASE) {
5757                 PRINT_ADDR(cp->cmd, "newcmd[%d] %x %x %x %x.\n",
5758                         (int) (newcmd - cp->patch),
5759                         (unsigned)scr_to_cpu(newcmd[0]),
5760                         (unsigned)scr_to_cpu(newcmd[1]),
5761                         (unsigned)scr_to_cpu(newcmd[2]),
5762                         (unsigned)scr_to_cpu(newcmd[3]));
5763         }
5764         /*
5765         **      fake the return address (to the patch).
5766         **      and restart script processor at dispatcher.
5767         */
5768         OUTL (nc_temp, newtmp);
5769         OUTL_DSP (NCB_SCRIPT_PHYS (np, dispatch));
5770         return;
5771
5772         /*
5773         **      Unexpected phase changes that occurs when the current phase 
5774         **      is not a DATA IN or DATA OUT phase are due to error conditions.
5775         **      Such event may only happen when the SCRIPTS is using a 
5776         **      multibyte SCSI MOVE.
5777         **
5778         **      Phase change            Some possible cause
5779         **
5780         **      COMMAND  --> MSG IN     SCSI parity error detected by target.
5781         **      COMMAND  --> STATUS     Bad command or refused by target.
5782         **      MSG OUT  --> MSG IN     Message rejected by target.
5783         **      MSG OUT  --> COMMAND    Bogus target that discards extended
5784         **                              negotiation messages.
5785         **
5786         **      The code below does not care of the new phase and so 
5787         **      trusts the target. Why to annoy it ?
5788         **      If the interrupted phase is COMMAND phase, we restart at
5789         **      dispatcher.
5790         **      If a target does not get all the messages after selection, 
5791         **      the code assumes blindly that the target discards extended 
5792         **      messages and clears the negotiation status.
5793         **      If the target does not want all our response to negotiation,
5794         **      we force a SIR_NEGO_PROTO interrupt (it is a hack that avoids 
5795         **      bloat for such a should_not_happen situation).
5796         **      In all other situation, we reset the BUS.
5797         **      Are these assumptions reasonnable ? (Wait and see ...)
5798         */
5799 unexpected_phase:
5800         dsp -= 8;
5801         nxtdsp = 0;
5802
5803         switch (cmd & 7) {
5804         case 2: /* COMMAND phase */
5805                 nxtdsp = NCB_SCRIPT_PHYS (np, dispatch);
5806                 break;
5807 #if 0
5808         case 3: /* STATUS  phase */
5809                 nxtdsp = NCB_SCRIPT_PHYS (np, dispatch);
5810                 break;
5811 #endif
5812         case 6: /* MSG OUT phase */
5813                 np->scripth->nxtdsp_go_on[0] = cpu_to_scr(dsp + 8);
5814                 if      (dsp == NCB_SCRIPT_PHYS (np, send_ident)) {
5815                         cp->host_status = HS_BUSY;
5816                         nxtdsp = NCB_SCRIPTH_PHYS (np, clratn_go_on);
5817                 }
5818                 else if (dsp == NCB_SCRIPTH_PHYS (np, send_wdtr) ||
5819                          dsp == NCB_SCRIPTH_PHYS (np, send_sdtr)) {
5820                         nxtdsp = NCB_SCRIPTH_PHYS (np, nego_bad_phase);
5821                 }
5822                 break;
5823 #if 0
5824         case 7: /* MSG IN  phase */
5825                 nxtdsp = NCB_SCRIPT_PHYS (np, clrack);
5826                 break;
5827 #endif
5828         }
5829
5830         if (nxtdsp) {
5831                 OUTL_DSP (nxtdsp);
5832                 return;
5833         }
5834
5835 reset_all:
5836         ncr_start_reset(np);
5837 }
5838
5839
5840 static void ncr_sir_to_redo(struct ncb *np, int num, struct ccb *cp)
5841 {
5842         struct scsi_cmnd *cmd   = cp->cmd;
5843         struct tcb *tp  = &np->target[cmd->device->id];
5844         struct lcb *lp  = tp->lp[cmd->device->lun];
5845         struct list_head *qp;
5846         struct ccb *    cp2;
5847         int             disc_cnt = 0;
5848         int             busy_cnt = 0;
5849         u32             startp;
5850         u_char          s_status = INB (SS_PRT);
5851
5852         /*
5853         **      Let the SCRIPTS processor skip all not yet started CCBs,
5854         **      and count disconnected CCBs. Since the busy queue is in 
5855         **      the same order as the chip start queue, disconnected CCBs 
5856         **      are before cp and busy ones after.
5857         */
5858         if (lp) {
5859                 qp = lp->busy_ccbq.prev;
5860                 while (qp != &lp->busy_ccbq) {
5861                         cp2 = list_entry(qp, struct ccb, link_ccbq);
5862                         qp  = qp->prev;
5863                         ++busy_cnt;
5864                         if (cp2 == cp)
5865                                 break;
5866                         cp2->start.schedule.l_paddr =
5867                         cpu_to_scr(NCB_SCRIPTH_PHYS (np, skip));
5868                 }
5869                 lp->held_ccb = cp;      /* Requeue when this one completes */
5870                 disc_cnt = lp->queuedccbs - busy_cnt;
5871         }
5872
5873         switch(s_status) {
5874         default:        /* Just for safety, should never happen */
5875         case S_QUEUE_FULL:
5876                 /*
5877                 **      Decrease number of tags to the number of 
5878                 **      disconnected commands.
5879                 */
5880                 if (!lp)
5881                         goto out;
5882                 if (bootverbose >= 1) {
5883                         PRINT_ADDR(cmd, "QUEUE FULL! %d busy, %d disconnected "
5884                                         "CCBs\n", busy_cnt, disc_cnt);
5885                 }
5886                 if (disc_cnt < lp->numtags) {
5887                         lp->numtags     = disc_cnt > 2 ? disc_cnt : 2;
5888                         lp->num_good    = 0;
5889                         ncr_setup_tags (np, cmd->device);
5890                 }
5891                 /*
5892                 **      Requeue the command to the start queue.
5893                 **      If any disconnected commands,
5894                 **              Clear SIGP.
5895                 **              Jump to reselect.
5896                 */
5897                 cp->phys.header.savep = cp->startp;
5898                 cp->host_status = HS_BUSY;
5899                 cp->scsi_status = S_ILLEGAL;
5900
5901                 ncr_put_start_queue(np, cp);
5902                 if (disc_cnt)
5903                         INB (nc_ctest2);                /* Clear SIGP */
5904                 OUTL_DSP (NCB_SCRIPT_PHYS (np, reselect));
5905                 return;
5906         case S_TERMINATED:
5907         case S_CHECK_COND:
5908                 /*
5909                 **      If we were requesting sense, give up.
5910                 */
5911                 if (cp->auto_sense)
5912                         goto out;
5913
5914                 /*
5915                 **      Device returned CHECK CONDITION status.
5916                 **      Prepare all needed data strutures for getting 
5917                 **      sense data.
5918                 **
5919                 **      identify message
5920                 */
5921                 cp->scsi_smsg2[0]       = IDENTIFY(0, cmd->device->lun);
5922                 cp->phys.smsg.addr      = cpu_to_scr(CCB_PHYS (cp, scsi_smsg2));
5923                 cp->phys.smsg.size      = cpu_to_scr(1);
5924
5925                 /*
5926                 **      sense command
5927                 */
5928                 cp->phys.cmd.addr       = cpu_to_scr(CCB_PHYS (cp, sensecmd));
5929                 cp->phys.cmd.size       = cpu_to_scr(6);
5930
5931                 /*
5932                 **      patch requested size into sense command
5933                 */
5934                 cp->sensecmd[0]         = 0x03;
5935                 cp->sensecmd[1]         = cmd->device->lun << 5;
5936                 cp->sensecmd[4]         = sizeof(cp->sense_buf);
5937
5938                 /*
5939                 **      sense data
5940                 */
5941                 memset(cp->sense_buf, 0, sizeof(cp->sense_buf));
5942                 cp->phys.sense.addr     = cpu_to_scr(CCB_PHYS(cp,sense_buf[0]));
5943                 cp->phys.sense.size     = cpu_to_scr(sizeof(cp->sense_buf));
5944
5945                 /*
5946                 **      requeue the command.
5947                 */
5948                 startp = cpu_to_scr(NCB_SCRIPTH_PHYS (np, sdata_in));
5949
5950                 cp->phys.header.savep   = startp;
5951                 cp->phys.header.goalp   = startp + 24;
5952                 cp->phys.header.lastp   = startp;
5953                 cp->phys.header.wgoalp  = startp + 24;
5954                 cp->phys.header.wlastp  = startp;
5955
5956                 cp->host_status = HS_BUSY;
5957                 cp->scsi_status = S_ILLEGAL;
5958                 cp->auto_sense  = s_status;
5959
5960                 cp->start.schedule.l_paddr =
5961                         cpu_to_scr(NCB_SCRIPT_PHYS (np, select));
5962
5963                 /*
5964                 **      Select without ATN for quirky devices.
5965                 */
5966                 if (cmd->device->select_no_atn)
5967                         cp->start.schedule.l_paddr =
5968                         cpu_to_scr(NCB_SCRIPTH_PHYS (np, select_no_atn));
5969
5970                 ncr_put_start_queue(np, cp);
5971
5972                 OUTL_DSP (NCB_SCRIPT_PHYS (np, start));
5973                 return;
5974         }
5975
5976 out:
5977         OUTONB_STD ();
5978         return;
5979 }
5980
5981
5982 /*==========================================================
5983 **
5984 **
5985 **      ncr chip exception handler for programmed interrupts.
5986 **
5987 **
5988 **==========================================================
5989 */
5990
5991 void ncr_int_sir (struct ncb *np)
5992 {
5993         u_char scntl3;
5994         u_char chg, ofs, per, fak, wide;
5995         u_char num = INB (nc_dsps);
5996         struct ccb *cp=NULL;
5997         u_long  dsa    = INL (nc_dsa);
5998         u_char  target = INB (nc_sdid) & 0x0f;
5999         struct tcb *tp     = &np->target[target];
6000         struct scsi_target *starget = tp->starget;
6001
6002         if (DEBUG_FLAGS & DEBUG_TINY) printk ("I#%d", num);
6003
6004         switch (num) {
6005         case SIR_INTFLY:
6006                 /*
6007                 **      This is used for HP Zalon/53c720 where INTFLY
6008                 **      operation is currently broken.
6009                 */
6010                 ncr_wakeup_done(np);
6011 #ifdef SCSI_NCR_CCB_DONE_SUPPORT
6012                 OUTL(nc_dsp, NCB_SCRIPT_PHYS (np, done_end) + 8);
6013 #else
6014                 OUTL(nc_dsp, NCB_SCRIPT_PHYS (np, start));
6015 #endif
6016                 return;
6017         case SIR_RESEL_NO_MSG_IN:
6018         case SIR_RESEL_NO_IDENTIFY:
6019                 /*
6020                 **      If devices reselecting without sending an IDENTIFY 
6021                 **      message still exist, this should help.
6022                 **      We just assume lun=0, 1 CCB, no tag.
6023                 */
6024                 if (tp->lp[0]) { 
6025                         OUTL_DSP (scr_to_cpu(tp->lp[0]->jump_ccb[0]));
6026                         return;
6027                 }
6028         case SIR_RESEL_BAD_TARGET:      /* Will send a TARGET RESET message */
6029         case SIR_RESEL_BAD_LUN:         /* Will send a TARGET RESET message */
6030         case SIR_RESEL_BAD_I_T_L_Q:     /* Will send an ABORT TAG message   */
6031         case SIR_RESEL_BAD_I_T_L:       /* Will send an ABORT message       */
6032                 printk ("%s:%d: SIR %d, "
6033                         "incorrect nexus identification on reselection\n",
6034                         ncr_name (np), target, num);
6035                 goto out;
6036         case SIR_DONE_OVERFLOW:
6037                 printk ("%s:%d: SIR %d, "
6038                         "CCB done queue overflow\n",
6039                         ncr_name (np), target, num);
6040                 goto out;
6041         case SIR_BAD_STATUS:
6042                 cp = np->header.cp;
6043                 if (!cp || CCB_PHYS (cp, phys) != dsa)
6044                         goto out;
6045                 ncr_sir_to_redo(np, num, cp);
6046                 return;
6047         default:
6048                 /*
6049                 **      lookup the ccb
6050                 */
6051                 cp = np->ccb;
6052                 while (cp && (CCB_PHYS (cp, phys) != dsa))
6053                         cp = cp->link_ccb;
6054
6055                 BUG_ON(!cp);
6056                 BUG_ON(cp != np->header.cp);
6057
6058                 if (!cp || cp != np->header.cp)
6059                         goto out;
6060         }
6061
6062         switch (num) {
6063 /*-----------------------------------------------------------------------------
6064 **
6065 **      Was Sie schon immer ueber transfermode negotiation wissen wollten ...
6066 **
6067 **      We try to negotiate sync and wide transfer only after
6068 **      a successful inquire command. We look at byte 7 of the
6069 **      inquire data to determine the capabilities of the target.
6070 **
6071 **      When we try to negotiate, we append the negotiation message
6072 **      to the identify and (maybe) simple tag message.
6073 **      The host status field is set to HS_NEGOTIATE to mark this
6074 **      situation.
6075 **
6076 **      If the target doesn't answer this message immidiately
6077 **      (as required by the standard), the SIR_NEGO_FAIL interrupt
6078 **      will be raised eventually.
6079 **      The handler removes the HS_NEGOTIATE status, and sets the
6080 **      negotiated value to the default (async / nowide).
6081 **
6082 **      If we receive a matching answer immediately, we check it
6083 **      for validity, and set the values.
6084 **
6085 **      If we receive a Reject message immediately, we assume the
6086 **      negotiation has failed, and fall back to standard values.
6087 **
6088 **      If we receive a negotiation message while not in HS_NEGOTIATE
6089 **      state, it's a target initiated negotiation. We prepare a
6090 **      (hopefully) valid answer, set our parameters, and send back 
6091 **      this answer to the target.
6092 **
6093 **      If the target doesn't fetch the answer (no message out phase),
6094 **      we assume the negotiation has failed, and fall back to default
6095 **      settings.
6096 **
6097 **      When we set the values, we adjust them in all ccbs belonging 
6098 **      to this target, in the controller's register, and in the "phys"
6099 **      field of the controller's struct ncb.
6100 **
6101 **      Possible cases:            hs  sir   msg_in value  send   goto
6102 **      We try to negotiate:
6103 **      -> target doesn't msgin    NEG FAIL  noop   defa.  -      dispatch
6104 **      -> target rejected our msg NEG FAIL  reject defa.  -      dispatch
6105 **      -> target answered  (ok)   NEG SYNC  sdtr   set    -      clrack
6106 **      -> target answered (!ok)   NEG SYNC  sdtr   defa.  REJ--->msg_bad
6107 **      -> target answered  (ok)   NEG WIDE  wdtr   set    -      clrack
6108 **      -> target answered (!ok)   NEG WIDE  wdtr   defa.  REJ--->msg_bad
6109 **      -> any other msgin         NEG FAIL  noop   defa.  -      dispatch
6110 **
6111 **      Target tries to negotiate:
6112 **      -> incoming message        --- SYNC  sdtr   set    SDTR   -
6113 **      -> incoming message        --- WIDE  wdtr   set    WDTR   -
6114 **      We sent our answer:
6115 **      -> target doesn't msgout   --- PROTO ?      defa.  -      dispatch
6116 **
6117 **-----------------------------------------------------------------------------
6118 */
6119
6120         case SIR_NEGO_FAILED:
6121                 /*-------------------------------------------------------
6122                 **
6123                 **      Negotiation failed.
6124                 **      Target doesn't send an answer message,
6125                 **      or target rejected our message.
6126                 **
6127                 **      Remove negotiation request.
6128                 **
6129                 **-------------------------------------------------------
6130                 */
6131                 OUTB (HS_PRT, HS_BUSY);
6132
6133                 /* fall through */
6134
6135         case SIR_NEGO_PROTO:
6136                 /*-------------------------------------------------------
6137                 **
6138                 **      Negotiation failed.
6139                 **      Target doesn't fetch the answer message.
6140                 **
6141                 **-------------------------------------------------------
6142                 */
6143
6144                 if (DEBUG_FLAGS & DEBUG_NEGO) {
6145                         PRINT_ADDR(cp->cmd, "negotiation failed sir=%x "
6146                                         "status=%x.\n", num, cp->nego_status);
6147                 }
6148
6149                 /*
6150                 **      any error in negotiation:
6151                 **      fall back to default mode.
6152                 */
6153                 switch (cp->nego_status) {
6154
6155                 case NS_SYNC:
6156                         spi_period(starget) = 0;
6157                         spi_offset(starget) = 0;
6158                         ncr_setsync (np, cp, 0, 0xe0);
6159                         break;
6160
6161                 case NS_WIDE:
6162                         spi_width(starget) = 0;
6163                         ncr_setwide (np, cp, 0, 0);
6164                         break;
6165
6166                 }
6167                 np->msgin [0] = M_NOOP;
6168                 np->msgout[0] = M_NOOP;
6169                 cp->nego_status = 0;
6170                 break;
6171
6172         case SIR_NEGO_SYNC:
6173                 if (DEBUG_FLAGS & DEBUG_NEGO) {
6174                         ncr_print_msg(cp, "sync msgin", np->msgin);
6175                 }
6176
6177                 chg = 0;
6178                 per = np->msgin[3];
6179                 ofs = np->msgin[4];
6180                 if (ofs==0) per=255;
6181
6182                 /*
6183                 **      if target sends SDTR message,
6184                 **            it CAN transfer synch.
6185                 */
6186
6187                 if (ofs && starget)
6188                         spi_support_sync(starget) = 1;
6189
6190                 /*
6191                 **      check values against driver limits.
6192                 */
6193
6194                 if (per < np->minsync)
6195                         {chg = 1; per = np->minsync;}
6196                 if (per < tp->minsync)
6197                         {chg = 1; per = tp->minsync;}
6198                 if (ofs > tp->maxoffs)
6199                         {chg = 1; ofs = tp->maxoffs;}
6200
6201                 /*
6202                 **      Check against controller limits.
6203                 */
6204                 fak     = 7;
6205                 scntl3  = 0;
6206                 if (ofs != 0) {
6207                         ncr_getsync(np, per, &fak, &scntl3);
6208                         if (fak > 7) {
6209                                 chg = 1;
6210                                 ofs = 0;
6211                         }
6212                 }
6213                 if (ofs == 0) {
6214                         fak     = 7;
6215                         per     = 0;
6216                         scntl3  = 0;
6217                         tp->minsync = 0;
6218                 }
6219
6220                 if (DEBUG_FLAGS & DEBUG_NEGO) {
6221                         PRINT_ADDR(cp->cmd, "sync: per=%d scntl3=0x%x ofs=%d "
6222                                 "fak=%d chg=%d.\n", per, scntl3, ofs, fak, chg);
6223                 }
6224
6225                 if (INB (HS_PRT) == HS_NEGOTIATE) {
6226                         OUTB (HS_PRT, HS_BUSY);
6227                         switch (cp->nego_status) {
6228
6229                         case NS_SYNC:
6230                                 /* This was an answer message */
6231                                 if (chg) {
6232                                         /* Answer wasn't acceptable.  */
6233                                         spi_period(starget) = 0;
6234                                         spi_offset(starget) = 0;
6235                                         ncr_setsync(np, cp, 0, 0xe0);
6236                                         OUTL_DSP(NCB_SCRIPT_PHYS (np, msg_bad));
6237                                 } else {
6238                                         /* Answer is ok.  */
6239                                         spi_period(starget) = per;
6240                                         spi_offset(starget) = ofs;
6241                                         ncr_setsync(np, cp, scntl3, (fak<<5)|ofs);
6242                                         OUTL_DSP(NCB_SCRIPT_PHYS (np, clrack));
6243                                 }
6244                                 return;
6245
6246                         case NS_WIDE:
6247                                 spi_width(starget) = 0;
6248                                 ncr_setwide(np, cp, 0, 0);
6249                                 break;
6250                         }
6251                 }
6252
6253                 /*
6254                 **      It was a request. Set value and
6255                 **      prepare an answer message
6256                 */
6257
6258                 spi_period(starget) = per;
6259                 spi_offset(starget) = ofs;
6260                 ncr_setsync(np, cp, scntl3, (fak<<5)|ofs);
6261
6262                 np->msgout[0] = M_EXTENDED;
6263                 np->msgout[1] = 3;
6264                 np->msgout[2] = M_X_SYNC_REQ;
6265                 np->msgout[3] = per;
6266                 np->msgout[4] = ofs;
6267
6268                 cp->nego_status = NS_SYNC;
6269
6270                 if (DEBUG_FLAGS & DEBUG_NEGO) {
6271                         ncr_print_msg(cp, "sync msgout", np->msgout);
6272                 }
6273
6274                 if (!ofs) {
6275                         OUTL_DSP (NCB_SCRIPT_PHYS (np, msg_bad));
6276                         return;
6277                 }
6278                 np->msgin [0] = M_NOOP;
6279
6280                 break;
6281
6282         case SIR_NEGO_WIDE:
6283                 /*
6284                 **      Wide request message received.
6285                 */
6286                 if (DEBUG_FLAGS & DEBUG_NEGO) {
6287                         ncr_print_msg(cp, "wide msgin", np->msgin);
6288                 }
6289
6290                 /*
6291                 **      get requested values.
6292                 */
6293
6294                 chg  = 0;
6295                 wide = np->msgin[3];
6296
6297                 /*
6298                 **      if target sends WDTR message,
6299                 **            it CAN transfer wide.
6300                 */
6301
6302                 if (wide && starget)
6303                         spi_support_wide(starget) = 1;
6304
6305                 /*
6306                 **      check values against driver limits.
6307                 */
6308
6309                 if (wide > tp->usrwide)
6310                         {chg = 1; wide = tp->usrwide;}
6311
6312                 if (DEBUG_FLAGS & DEBUG_NEGO) {
6313                         PRINT_ADDR(cp->cmd, "wide: wide=%d chg=%d.\n", wide,
6314                                         chg);
6315                 }
6316
6317                 if (INB (HS_PRT) == HS_NEGOTIATE) {
6318                         OUTB (HS_PRT, HS_BUSY);
6319                         switch (cp->nego_status) {
6320
6321                         case NS_WIDE:
6322                                 /*
6323                                 **      This was an answer message
6324                                 */
6325                                 if (chg) {
6326                                         /* Answer wasn't acceptable.  */
6327                                         spi_width(starget) = 0;
6328                                         ncr_setwide(np, cp, 0, 1);
6329                                         OUTL_DSP (NCB_SCRIPT_PHYS (np, msg_bad));
6330                                 } else {
6331                                         /* Answer is ok.  */
6332                                         spi_width(starget) = wide;
6333                                         ncr_setwide(np, cp, wide, 1);
6334                                         OUTL_DSP (NCB_SCRIPT_PHYS (np, clrack));
6335                                 }
6336                                 return;
6337
6338                         case NS_SYNC:
6339                                 spi_period(starget) = 0;
6340                                 spi_offset(starget) = 0;
6341                                 ncr_setsync(np, cp, 0, 0xe0);
6342                                 break;
6343                         }
6344                 }
6345
6346                 /*
6347                 **      It was a request, set value and
6348                 **      prepare an answer message
6349                 */
6350
6351                 spi_width(starget) = wide;
6352                 ncr_setwide(np, cp, wide, 1);
6353
6354                 np->msgout[0] = M_EXTENDED;
6355                 np->msgout[1] = 2;
6356                 np->msgout[2] = M_X_WIDE_REQ;
6357                 np->msgout[3] = wide;
6358
6359                 np->msgin [0] = M_NOOP;
6360
6361                 cp->nego_status = NS_WIDE;
6362
6363                 if (DEBUG_FLAGS & DEBUG_NEGO) {
6364                         ncr_print_msg(cp, "wide msgout", np->msgin);
6365                 }
6366                 break;
6367
6368 /*--------------------------------------------------------------------
6369 **
6370 **      Processing of special messages
6371 **
6372 **--------------------------------------------------------------------
6373 */
6374
6375         case SIR_REJECT_RECEIVED:
6376                 /*-----------------------------------------------
6377                 **
6378                 **      We received a M_REJECT message.
6379                 **
6380                 **-----------------------------------------------
6381                 */
6382
6383                 PRINT_ADDR(cp->cmd, "M_REJECT received (%x:%x).\n",
6384                         (unsigned)scr_to_cpu(np->lastmsg), np->msgout[0]);
6385                 break;
6386
6387         case SIR_REJECT_SENT:
6388                 /*-----------------------------------------------
6389                 **
6390                 **      We received an unknown message
6391                 **
6392                 **-----------------------------------------------
6393                 */
6394
6395                 ncr_print_msg(cp, "M_REJECT sent for", np->msgin);
6396                 break;
6397
6398 /*--------------------------------------------------------------------
6399 **
6400 **      Processing of special messages
6401 **
6402 **--------------------------------------------------------------------
6403 */
6404
6405         case SIR_IGN_RESIDUE:
6406                 /*-----------------------------------------------
6407                 **
6408                 **      We received an IGNORE RESIDUE message,
6409                 **      which couldn't be handled by the script.
6410                 **
6411                 **-----------------------------------------------
6412                 */
6413
6414                 PRINT_ADDR(cp->cmd, "M_IGN_RESIDUE received, but not yet "
6415                                 "implemented.\n");
6416                 break;
6417 #if 0
6418         case SIR_MISSING_SAVE:
6419                 /*-----------------------------------------------
6420                 **
6421                 **      We received an DISCONNECT message,
6422                 **      but the datapointer wasn't saved before.
6423                 **
6424                 **-----------------------------------------------
6425                 */
6426
6427                 PRINT_ADDR(cp->cmd, "M_DISCONNECT received, but datapointer "
6428                                 "not saved: data=%x save=%x goal=%x.\n",
6429                         (unsigned) INL (nc_temp),
6430                         (unsigned) scr_to_cpu(np->header.savep),
6431                         (unsigned) scr_to_cpu(np->header.goalp));
6432                 break;
6433 #endif
6434         }
6435
6436 out:
6437         OUTONB_STD ();
6438 }
6439
6440 /*==========================================================
6441 **
6442 **
6443 **      Acquire a control block
6444 **
6445 **
6446 **==========================================================
6447 */
6448
6449 static struct ccb *ncr_get_ccb(struct ncb *np, struct scsi_cmnd *cmd)
6450 {
6451         u_char tn = cmd->device->id;
6452         u_char ln = cmd->device->lun;
6453         struct tcb *tp = &np->target[tn];
6454         struct lcb *lp = tp->lp[ln];
6455         u_char tag = NO_TAG;
6456         struct ccb *cp = NULL;
6457
6458         /*
6459         **      Lun structure available ?
6460         */
6461         if (lp) {
6462                 struct list_head *qp;
6463                 /*
6464                 **      Keep from using more tags than we can handle.
6465                 */
6466                 if (lp->usetags && lp->busyccbs >= lp->maxnxs)
6467                         return NULL;
6468
6469                 /*
6470                 **      Allocate a new CCB if needed.
6471                 */
6472                 if (list_empty(&lp->free_ccbq))
6473                         ncr_alloc_ccb(np, tn, ln);
6474
6475                 /*
6476                 **      Look for free CCB
6477                 */
6478                 qp = ncr_list_pop(&lp->free_ccbq);
6479                 if (qp) {
6480                         cp = list_entry(qp, struct ccb, link_ccbq);
6481                         if (cp->magic) {
6482                                 PRINT_ADDR(cmd, "ccb free list corrupted "
6483                                                 "(@%p)\n", cp);
6484                                 cp = NULL;
6485                         } else {
6486                                 list_add_tail(qp, &lp->wait_ccbq);
6487                                 ++lp->busyccbs;
6488                         }
6489                 }
6490
6491                 /*
6492                 **      If a CCB is available,
6493                 **      Get a tag for this nexus if required.
6494                 */
6495                 if (cp) {
6496                         if (lp->usetags)
6497                                 tag = lp->cb_tags[lp->ia_tag];
6498                 }
6499                 else if (lp->actccbs > 0)
6500                         return NULL;
6501         }
6502
6503         /*
6504         **      if nothing available, take the default.
6505         */
6506         if (!cp)
6507                 cp = np->ccb;
6508
6509         /*
6510         **      Wait until available.
6511         */
6512 #if 0
6513         while (cp->magic) {
6514                 if (flags & SCSI_NOSLEEP) break;
6515                 if (tsleep ((caddr_t)cp, PRIBIO|PCATCH, "ncr", 0))
6516                         break;
6517         }
6518 #endif
6519
6520         if (cp->magic)
6521                 return NULL;
6522
6523         cp->magic = 1;
6524
6525         /*
6526         **      Move to next available tag if tag used.
6527         */
6528         if (lp) {
6529                 if (tag != NO_TAG) {
6530                         ++lp->ia_tag;
6531                         if (lp->ia_tag == MAX_TAGS)
6532                                 lp->ia_tag = 0;
6533                         lp->tags_umap |= (((tagmap_t) 1) << tag);
6534                 }
6535         }
6536
6537         /*
6538         **      Remember all informations needed to free this CCB.
6539         */
6540         cp->tag    = tag;
6541         cp->target = tn;
6542         cp->lun    = ln;
6543
6544         if (DEBUG_FLAGS & DEBUG_TAGS) {
6545                 PRINT_ADDR(cmd, "ccb @%p using tag %d.\n", cp, tag);
6546         }
6547
6548         return cp;
6549 }
6550
6551 /*==========================================================
6552 **
6553 **
6554 **      Release one control block
6555 **
6556 **
6557 **==========================================================
6558 */
6559
6560 static void ncr_free_ccb (struct ncb *np, struct ccb *cp)
6561 {
6562         struct tcb *tp = &np->target[cp->target];
6563         struct lcb *lp = tp->lp[cp->lun];
6564
6565         if (DEBUG_FLAGS & DEBUG_TAGS) {
6566                 PRINT_ADDR(cp->cmd, "ccb @%p freeing tag %d.\n", cp, cp->tag);
6567         }
6568
6569         /*
6570         **      If lun control block available,
6571         **      decrement active commands and increment credit, 
6572         **      free the tag if any and remove the JUMP for reselect.
6573         */
6574         if (lp) {
6575                 if (cp->tag != NO_TAG) {
6576                         lp->cb_tags[lp->if_tag++] = cp->tag;
6577                         if (lp->if_tag == MAX_TAGS)
6578                                 lp->if_tag = 0;
6579                         lp->tags_umap &= ~(((tagmap_t) 1) << cp->tag);
6580                         lp->tags_smap &= lp->tags_umap;
6581                         lp->jump_ccb[cp->tag] =
6582                                 cpu_to_scr(NCB_SCRIPTH_PHYS(np, bad_i_t_l_q));
6583                 } else {
6584                         lp->jump_ccb[0] =
6585                                 cpu_to_scr(NCB_SCRIPTH_PHYS(np, bad_i_t_l));
6586                 }
6587         }
6588
6589         /*
6590         **      Make this CCB available.
6591         */
6592
6593         if (lp) {
6594                 if (cp != np->ccb)
6595                         list_move(&cp->link_ccbq, &lp->free_ccbq);
6596                 --lp->busyccbs;
6597                 if (cp->queued) {
6598                         --lp->queuedccbs;
6599                 }
6600         }
6601         cp -> host_status = HS_IDLE;
6602         cp -> magic = 0;
6603         if (cp->queued) {
6604                 --np->queuedccbs;
6605                 cp->queued = 0;
6606         }
6607
6608 #if 0
6609         if (cp == np->ccb)
6610                 wakeup ((caddr_t) cp);
6611 #endif
6612 }
6613
6614
6615 #define ncr_reg_bus_addr(r) (np->paddr + offsetof (struct ncr_reg, r))
6616
6617 /*------------------------------------------------------------------------
6618 **      Initialize the fixed part of a CCB structure.
6619 **------------------------------------------------------------------------
6620 **------------------------------------------------------------------------
6621 */
6622 static void ncr_init_ccb(struct ncb *np, struct ccb *cp)
6623 {
6624         ncrcmd copy_4 = np->features & FE_PFEN ? SCR_COPY(4) : SCR_COPY_F(4);
6625
6626         /*
6627         **      Remember virtual and bus address of this ccb.
6628         */
6629         cp->p_ccb          = vtobus(cp);
6630         cp->phys.header.cp = cp;
6631
6632         /*
6633         **      This allows list_del to work for the default ccb.
6634         */
6635         INIT_LIST_HEAD(&cp->link_ccbq);
6636
6637         /*
6638         **      Initialyze the start and restart launch script.
6639         **
6640         **      COPY(4) @(...p_phys), @(dsa)
6641         **      JUMP @(sched_point)
6642         */
6643         cp->start.setup_dsa[0]   = cpu_to_scr(copy_4);
6644         cp->start.setup_dsa[1]   = cpu_to_scr(CCB_PHYS(cp, start.p_phys));
6645         cp->start.setup_dsa[2]   = cpu_to_scr(ncr_reg_bus_addr(nc_dsa));
6646         cp->start.schedule.l_cmd = cpu_to_scr(SCR_JUMP);
6647         cp->start.p_phys         = cpu_to_scr(CCB_PHYS(cp, phys));
6648
6649         memcpy(&cp->restart, &cp->start, sizeof(cp->restart));
6650
6651         cp->start.schedule.l_paddr   = cpu_to_scr(NCB_SCRIPT_PHYS (np, idle));
6652         cp->restart.schedule.l_paddr = cpu_to_scr(NCB_SCRIPTH_PHYS (np, abort));
6653 }
6654
6655
6656 /*------------------------------------------------------------------------
6657 **      Allocate a CCB and initialize its fixed part.
6658 **------------------------------------------------------------------------
6659 **------------------------------------------------------------------------
6660 */
6661 static void ncr_alloc_ccb(struct ncb *np, u_char tn, u_char ln)
6662 {
6663         struct tcb *tp = &np->target[tn];
6664         struct lcb *lp = tp->lp[ln];
6665         struct ccb *cp = NULL;
6666
6667         /*
6668         **      Allocate memory for this CCB.
6669         */
6670         cp = m_calloc_dma(sizeof(struct ccb), "CCB");
6671         if (!cp)
6672                 return;
6673
6674         /*
6675         **      Count it and initialyze it.
6676         */
6677         lp->actccbs++;
6678         np->actccbs++;
6679         memset(cp, 0, sizeof (*cp));
6680         ncr_init_ccb(np, cp);
6681
6682         /*
6683         **      Chain into wakeup list and free ccb queue and take it 
6684         **      into account for tagged commands.
6685         */
6686         cp->link_ccb      = np->ccb->link_ccb;
6687         np->ccb->link_ccb = cp;
6688
6689         list_add(&cp->link_ccbq, &lp->free_ccbq);
6690 }
6691
6692 /*==========================================================
6693 **
6694 **
6695 **      Allocation of resources for Targets/Luns/Tags.
6696 **
6697 **
6698 **==========================================================
6699 */
6700
6701
6702 /*------------------------------------------------------------------------
6703 **      Target control block initialisation.
6704 **------------------------------------------------------------------------
6705 **      This data structure is fully initialized after a SCSI command 
6706 **      has been successfully completed for this target.
6707 **      It contains a SCRIPT that is called on target reselection.
6708 **------------------------------------------------------------------------
6709 */
6710 static void ncr_init_tcb (struct ncb *np, u_char tn)
6711 {
6712         struct tcb *tp = &np->target[tn];
6713         ncrcmd copy_1 = np->features & FE_PFEN ? SCR_COPY(1) : SCR_COPY_F(1);
6714         int th = tn & 3;
6715         int i;
6716
6717         /*
6718         **      Jump to next tcb if SFBR does not match this target.
6719         **      JUMP  IF (SFBR != #target#), @(next tcb)
6720         */
6721         tp->jump_tcb.l_cmd   =
6722                 cpu_to_scr((SCR_JUMP ^ IFFALSE (DATA (0x80 + tn))));
6723         tp->jump_tcb.l_paddr = np->jump_tcb[th].l_paddr;
6724
6725         /*
6726         **      Load the synchronous transfer register.
6727         **      COPY @(tp->sval), @(sxfer)
6728         */
6729         tp->getscr[0] = cpu_to_scr(copy_1);
6730         tp->getscr[1] = cpu_to_scr(vtobus (&tp->sval));
6731 #ifdef SCSI_NCR_BIG_ENDIAN
6732         tp->getscr[2] = cpu_to_scr(ncr_reg_bus_addr(nc_sxfer) ^ 3);
6733 #else
6734         tp->getscr[2] = cpu_to_scr(ncr_reg_bus_addr(nc_sxfer));
6735 #endif
6736
6737         /*
6738         **      Load the timing register.
6739         **      COPY @(tp->wval), @(scntl3)
6740         */
6741         tp->getscr[3] = cpu_to_scr(copy_1);
6742         tp->getscr[4] = cpu_to_scr(vtobus (&tp->wval));
6743 #ifdef SCSI_NCR_BIG_ENDIAN
6744         tp->getscr[5] = cpu_to_scr(ncr_reg_bus_addr(nc_scntl3) ^ 3);
6745 #else
6746         tp->getscr[5] = cpu_to_scr(ncr_reg_bus_addr(nc_scntl3));
6747 #endif
6748
6749         /*
6750         **      Get the IDENTIFY message and the lun.
6751         **      CALL @script(resel_lun)
6752         */
6753         tp->call_lun.l_cmd   = cpu_to_scr(SCR_CALL);
6754         tp->call_lun.l_paddr = cpu_to_scr(NCB_SCRIPT_PHYS (np, resel_lun));
6755
6756         /*
6757         **      Look for the lun control block of this nexus.
6758         **      For i = 0 to 3
6759         **              JUMP ^ IFTRUE (MASK (i, 3)), @(next_lcb)
6760         */
6761         for (i = 0 ; i < 4 ; i++) {
6762                 tp->jump_lcb[i].l_cmd   =
6763                                 cpu_to_scr((SCR_JUMP ^ IFTRUE (MASK (i, 3))));
6764                 tp->jump_lcb[i].l_paddr =
6765                                 cpu_to_scr(NCB_SCRIPTH_PHYS (np, bad_identify));
6766         }
6767
6768         /*
6769         **      Link this target control block to the JUMP chain.
6770         */
6771         np->jump_tcb[th].l_paddr = cpu_to_scr(vtobus (&tp->jump_tcb));
6772
6773         /*
6774         **      These assert's should be moved at driver initialisations.
6775         */
6776 #ifdef SCSI_NCR_BIG_ENDIAN
6777         BUG_ON(((offsetof(struct ncr_reg, nc_sxfer) ^
6778                  offsetof(struct tcb    , sval    )) &3) != 3);
6779         BUG_ON(((offsetof(struct ncr_reg, nc_scntl3) ^
6780                  offsetof(struct tcb    , wval    )) &3) != 3);
6781 #else
6782         BUG_ON(((offsetof(struct ncr_reg, nc_sxfer) ^
6783                  offsetof(struct tcb    , sval    )) &3) != 0);
6784         BUG_ON(((offsetof(struct ncr_reg, nc_scntl3) ^
6785                  offsetof(struct tcb    , wval    )) &3) != 0);
6786 #endif
6787 }
6788
6789
6790 /*------------------------------------------------------------------------
6791 **      Lun control block allocation and initialization.
6792 **------------------------------------------------------------------------
6793 **      This data structure is allocated and initialized after a SCSI 
6794 **      command has been successfully completed for this target/lun.
6795 **------------------------------------------------------------------------
6796 */
6797 static struct lcb *ncr_alloc_lcb (struct ncb *np, u_char tn, u_char ln)
6798 {
6799         struct tcb *tp = &np->target[tn];
6800         struct lcb *lp = tp->lp[ln];
6801         ncrcmd copy_4 = np->features & FE_PFEN ? SCR_COPY(4) : SCR_COPY_F(4);
6802         int lh = ln & 3;
6803
6804         /*
6805         **      Already done, return.
6806         */
6807         if (lp)
6808                 return lp;
6809
6810         /*
6811         **      Allocate the lcb.
6812         */
6813         lp = m_calloc_dma(sizeof(struct lcb), "LCB");
6814         if (!lp)
6815                 goto fail;
6816         memset(lp, 0, sizeof(*lp));
6817         tp->lp[ln] = lp;
6818
6819         /*
6820         **      Initialize the target control block if not yet.
6821         */
6822         if (!tp->jump_tcb.l_cmd)
6823                 ncr_init_tcb(np, tn);
6824
6825         /*
6826         **      Initialize the CCB queue headers.
6827         */
6828         INIT_LIST_HEAD(&lp->free_ccbq);
6829         INIT_LIST_HEAD(&lp->busy_ccbq);
6830         INIT_LIST_HEAD(&lp->wait_ccbq);
6831         INIT_LIST_HEAD(&lp->skip_ccbq);
6832
6833         /*
6834         **      Set max CCBs to 1 and use the default 1 entry 
6835         **      jump table by default.
6836         */
6837         lp->maxnxs      = 1;
6838         lp->jump_ccb    = &lp->jump_ccb_0;
6839         lp->p_jump_ccb  = cpu_to_scr(vtobus(lp->jump_ccb));
6840
6841         /*
6842         **      Initilialyze the reselect script:
6843         **
6844         **      Jump to next lcb if SFBR does not match this lun.
6845         **      Load TEMP with the CCB direct jump table bus address.
6846         **      Get the SIMPLE TAG message and the tag.
6847         **
6848         **      JUMP  IF (SFBR != #lun#), @(next lcb)
6849         **      COPY @(lp->p_jump_ccb),   @(temp)
6850         **      JUMP @script(resel_notag)
6851         */
6852         lp->jump_lcb.l_cmd   =
6853                 cpu_to_scr((SCR_JUMP ^ IFFALSE (MASK (0x80+ln, 0xff))));
6854         lp->jump_lcb.l_paddr = tp->jump_lcb[lh].l_paddr;
6855
6856         lp->load_jump_ccb[0] = cpu_to_scr(copy_4);
6857         lp->load_jump_ccb[1] = cpu_to_scr(vtobus (&lp->p_jump_ccb));
6858         lp->load_jump_ccb[2] = cpu_to_scr(ncr_reg_bus_addr(nc_temp));
6859
6860         lp->jump_tag.l_cmd   = cpu_to_scr(SCR_JUMP);
6861         lp->jump_tag.l_paddr = cpu_to_scr(NCB_SCRIPT_PHYS (np, resel_notag));
6862
6863         /*
6864         **      Link this lun control block to the JUMP chain.
6865         */
6866         tp->jump_lcb[lh].l_paddr = cpu_to_scr(vtobus (&lp->jump_lcb));
6867
6868         /*
6869         **      Initialize command queuing control.
6870         */
6871         lp->busyccbs    = 1;
6872         lp->queuedccbs  = 1;
6873         lp->queuedepth  = 1;
6874 fail:
6875         return lp;
6876 }
6877
6878
6879 /*------------------------------------------------------------------------
6880 **      Lun control block setup on INQUIRY data received.
6881 **------------------------------------------------------------------------
6882 **      We only support WIDE, SYNC for targets and CMDQ for logical units.
6883 **      This setup is done on each INQUIRY since we are expecting user 
6884 **      will play with CHANGE DEFINITION commands. :-)
6885 **------------------------------------------------------------------------
6886 */
6887 static struct lcb *ncr_setup_lcb (struct ncb *np, struct scsi_device *sdev)
6888 {
6889         unsigned char tn = sdev->id, ln = sdev->lun;
6890         struct tcb *tp = &np->target[tn];
6891         struct lcb *lp = tp->lp[ln];
6892
6893         /* If no lcb, try to allocate it.  */
6894         if (!lp && !(lp = ncr_alloc_lcb(np, tn, ln)))
6895                 goto fail;
6896
6897         /*
6898         **      If unit supports tagged commands, allocate the 
6899         **      CCB JUMP table if not yet.
6900         */
6901         if (sdev->tagged_supported && lp->jump_ccb == &lp->jump_ccb_0) {
6902                 int i;
6903                 lp->jump_ccb = m_calloc_dma(256, "JUMP_CCB");
6904                 if (!lp->jump_ccb) {
6905                         lp->jump_ccb = &lp->jump_ccb_0;
6906                         goto fail;
6907                 }
6908                 lp->p_jump_ccb = cpu_to_scr(vtobus(lp->jump_ccb));
6909                 for (i = 0 ; i < 64 ; i++)
6910                         lp->jump_ccb[i] =
6911                                 cpu_to_scr(NCB_SCRIPTH_PHYS (np, bad_i_t_l_q));
6912                 for (i = 0 ; i < MAX_TAGS ; i++)
6913                         lp->cb_tags[i] = i;
6914                 lp->maxnxs = MAX_TAGS;
6915                 lp->tags_stime = jiffies + 3*HZ;
6916                 ncr_setup_tags (np, sdev);
6917         }
6918
6919
6920 fail:
6921         return lp;
6922 }
6923
6924 /*==========================================================
6925 **
6926 **
6927 **      Build Scatter Gather Block
6928 **
6929 **
6930 **==========================================================
6931 **
6932 **      The transfer area may be scattered among
6933 **      several non adjacent physical pages.
6934 **
6935 **      We may use MAX_SCATTER blocks.
6936 **
6937 **----------------------------------------------------------
6938 */
6939
6940 /*
6941 **      We try to reduce the number of interrupts caused
6942 **      by unexpected phase changes due to disconnects.
6943 **      A typical harddisk may disconnect before ANY block.
6944 **      If we wanted to avoid unexpected phase changes at all
6945 **      we had to use a break point every 512 bytes.
6946 **      Of course the number of scatter/gather blocks is
6947 **      limited.
6948 **      Under Linux, the scatter/gatter blocks are provided by 
6949 **      the generic driver. We just have to copy addresses and 
6950 **      sizes to the data segment array.
6951 */
6952
6953 static int ncr_scatter_no_sglist(struct ncb *np, struct ccb *cp, struct scsi_cmnd *cmd)
6954 {
6955         struct scr_tblmove *data = &cp->phys.data[MAX_SCATTER - 1];
6956         int segment;
6957
6958         cp->data_len = cmd->request_bufflen;
6959
6960         if (cmd->request_bufflen) {
6961                 dma_addr_t baddr = map_scsi_single_data(np, cmd);
6962                 if (baddr) {
6963                         ncr_build_sge(np, data, baddr, cmd->request_bufflen);
6964                         segment = 1;
6965                 } else {
6966                         segment = -2;
6967                 }
6968         } else {
6969                 segment = 0;
6970         }
6971
6972         return segment;
6973 }
6974
6975 static int ncr_scatter(struct ncb *np, struct ccb *cp, struct scsi_cmnd *cmd)
6976 {
6977         int segment     = 0;
6978         int use_sg      = (int) cmd->use_sg;
6979
6980         cp->data_len    = 0;
6981
6982         if (!use_sg)
6983                 segment = ncr_scatter_no_sglist(np, cp, cmd);
6984         else if ((use_sg = map_scsi_sg_data(np, cmd)) > 0) {
6985                 struct scatterlist *scatter = (struct scatterlist *)cmd->buffer;
6986                 struct scr_tblmove *data;
6987
6988                 if (use_sg > MAX_SCATTER) {
6989                         unmap_scsi_data(np, cmd);
6990                         return -1;
6991                 }
6992
6993                 data = &cp->phys.data[MAX_SCATTER - use_sg];
6994
6995                 for (segment = 0; segment < use_sg; segment++) {
6996                         dma_addr_t baddr = sg_dma_address(&scatter[segment]);
6997                         unsigned int len = sg_dma_len(&scatter[segment]);
6998
6999                         ncr_build_sge(np, &data[segment], baddr, len);
7000                         cp->data_len += len;
7001                 }
7002         } else {
7003                 segment = -2;
7004         }
7005
7006         return segment;
7007 }
7008
7009 /*==========================================================
7010 **
7011 **
7012 **      Test the bus snoop logic :-(
7013 **
7014 **      Has to be called with interrupts disabled.
7015 **
7016 **
7017 **==========================================================
7018 */
7019
7020 static int __init ncr_regtest (struct ncb* np)
7021 {
7022         register volatile u32 data;
7023         /*
7024         **      ncr registers may NOT be cached.
7025         **      write 0xffffffff to a read only register area,
7026         **      and try to read it back.
7027         */
7028         data = 0xffffffff;
7029         OUTL_OFF(offsetof(struct ncr_reg, nc_dstat), data);
7030         data = INL_OFF(offsetof(struct ncr_reg, nc_dstat));
7031 #if 1
7032         if (data == 0xffffffff) {
7033 #else
7034         if ((data & 0xe2f0fffd) != 0x02000080) {
7035 #endif
7036                 printk ("CACHE TEST FAILED: reg dstat-sstat2 readback %x.\n",
7037                         (unsigned) data);
7038                 return (0x10);
7039         }
7040         return (0);
7041 }
7042
7043 static int __init ncr_snooptest (struct ncb* np)
7044 {
7045         u32     ncr_rd, ncr_wr, ncr_bk, host_rd, host_wr, pc;
7046         int     i, err=0;
7047         if (np->reg) {
7048                 err |= ncr_regtest (np);
7049                 if (err)
7050                         return (err);
7051         }
7052
7053         /* init */
7054         pc  = NCB_SCRIPTH_PHYS (np, snooptest);
7055         host_wr = 1;
7056         ncr_wr  = 2;
7057         /*
7058         **      Set memory and register.
7059         */
7060         np->ncr_cache = cpu_to_scr(host_wr);
7061         OUTL (nc_temp, ncr_wr);
7062         /*
7063         **      Start script (exchange values)
7064         */
7065         OUTL_DSP (pc);
7066         /*
7067         **      Wait 'til done (with timeout)
7068         */
7069         for (i=0; i<NCR_SNOOP_TIMEOUT; i++)
7070                 if (INB(nc_istat) & (INTF|SIP|DIP))
7071                         break;
7072         /*
7073         **      Save termination position.
7074         */
7075         pc = INL (nc_dsp);
7076         /*
7077         **      Read memory and register.
7078         */
7079         host_rd = scr_to_cpu(np->ncr_cache);
7080         ncr_rd  = INL (nc_scratcha);
7081         ncr_bk  = INL (nc_temp);
7082         /*
7083         **      Reset ncr chip
7084         */
7085         ncr_chip_reset(np, 100);
7086         /*
7087         **      check for timeout
7088         */
7089         if (i>=NCR_SNOOP_TIMEOUT) {
7090                 printk ("CACHE TEST FAILED: timeout.\n");
7091                 return (0x20);
7092         }
7093         /*
7094         **      Check termination position.
7095         */
7096         if (pc != NCB_SCRIPTH_PHYS (np, snoopend)+8) {
7097                 printk ("CACHE TEST FAILED: script execution failed.\n");
7098                 printk ("start=%08lx, pc=%08lx, end=%08lx\n", 
7099                         (u_long) NCB_SCRIPTH_PHYS (np, snooptest), (u_long) pc,
7100                         (u_long) NCB_SCRIPTH_PHYS (np, snoopend) +8);
7101                 return (0x40);
7102         }
7103         /*
7104         **      Show results.
7105         */
7106         if (host_wr != ncr_rd) {
7107                 printk ("CACHE TEST FAILED: host wrote %d, ncr read %d.\n",
7108                         (int) host_wr, (int) ncr_rd);
7109                 err |= 1;
7110         }
7111         if (host_rd != ncr_wr) {
7112                 printk ("CACHE TEST FAILED: ncr wrote %d, host read %d.\n",
7113                         (int) ncr_wr, (int) host_rd);
7114                 err |= 2;
7115         }
7116         if (ncr_bk != ncr_wr) {
7117                 printk ("CACHE TEST FAILED: ncr wrote %d, read back %d.\n",
7118                         (int) ncr_wr, (int) ncr_bk);
7119                 err |= 4;
7120         }
7121         return (err);
7122 }
7123
7124 /*==========================================================
7125 **
7126 **      Determine the ncr's clock frequency.
7127 **      This is essential for the negotiation
7128 **      of the synchronous transfer rate.
7129 **
7130 **==========================================================
7131 **
7132 **      Note: we have to return the correct value.
7133 **      THERE IS NO SAVE DEFAULT VALUE.
7134 **
7135 **      Most NCR/SYMBIOS boards are delivered with a 40 Mhz clock.
7136 **      53C860 and 53C875 rev. 1 support fast20 transfers but 
7137 **      do not have a clock doubler and so are provided with a 
7138 **      80 MHz clock. All other fast20 boards incorporate a doubler 
7139 **      and so should be delivered with a 40 MHz clock.
7140 **      The future fast40 chips (895/895) use a 40 Mhz base clock 
7141 **      and provide a clock quadrupler (160 Mhz). The code below 
7142 **      tries to deal as cleverly as possible with all this stuff.
7143 **
7144 **----------------------------------------------------------
7145 */
7146
7147 /*
7148  *      Select NCR SCSI clock frequency
7149  */
7150 static void ncr_selectclock(struct ncb *np, u_char scntl3)
7151 {
7152         if (np->multiplier < 2) {
7153                 OUTB(nc_scntl3, scntl3);
7154                 return;
7155         }
7156
7157         if (bootverbose >= 2)
7158                 printk ("%s: enabling clock multiplier\n", ncr_name(np));
7159
7160         OUTB(nc_stest1, DBLEN);    /* Enable clock multiplier             */
7161         if (np->multiplier > 2) {  /* Poll bit 5 of stest4 for quadrupler */
7162                 int i = 20;
7163                 while (!(INB(nc_stest4) & LCKFRQ) && --i > 0)
7164                         udelay(20);
7165                 if (!i)
7166                         printk("%s: the chip cannot lock the frequency\n", ncr_name(np));
7167         } else                  /* Wait 20 micro-seconds for doubler    */
7168                 udelay(20);
7169         OUTB(nc_stest3, HSC);           /* Halt the scsi clock          */
7170         OUTB(nc_scntl3, scntl3);
7171         OUTB(nc_stest1, (DBLEN|DBLSEL));/* Select clock multiplier      */
7172         OUTB(nc_stest3, 0x00);          /* Restart scsi clock           */
7173 }
7174
7175
7176 /*
7177  *      calculate NCR SCSI clock frequency (in KHz)
7178  */
7179 static unsigned __init ncrgetfreq (struct ncb *np, int gen)
7180 {
7181         unsigned ms = 0;
7182         char count = 0;
7183
7184         /*
7185          * Measure GEN timer delay in order 
7186          * to calculate SCSI clock frequency
7187          *
7188          * This code will never execute too
7189          * many loop iterations (if DELAY is 
7190          * reasonably correct). It could get
7191          * too low a delay (too high a freq.)
7192          * if the CPU is slow executing the 
7193          * loop for some reason (an NMI, for
7194          * example). For this reason we will
7195          * if multiple measurements are to be 
7196          * performed trust the higher delay 
7197          * (lower frequency returned).
7198          */
7199         OUTB (nc_stest1, 0);    /* make sure clock doubler is OFF */
7200         OUTW (nc_sien , 0);     /* mask all scsi interrupts */
7201         (void) INW (nc_sist);   /* clear pending scsi interrupt */
7202         OUTB (nc_dien , 0);     /* mask all dma interrupts */
7203         (void) INW (nc_sist);   /* another one, just to be sure :) */
7204         OUTB (nc_scntl3, 4);    /* set pre-scaler to divide by 3 */
7205         OUTB (nc_stime1, 0);    /* disable general purpose timer */
7206         OUTB (nc_stime1, gen);  /* set to nominal delay of 1<<gen * 125us */
7207         while (!(INW(nc_sist) & GEN) && ms++ < 100000) {
7208                 for (count = 0; count < 10; count ++)
7209                         udelay(100);    /* count ms */
7210         }
7211         OUTB (nc_stime1, 0);    /* disable general purpose timer */
7212         /*
7213          * set prescaler to divide by whatever 0 means
7214          * 0 ought to choose divide by 2, but appears
7215          * to set divide by 3.5 mode in my 53c810 ...
7216          */
7217         OUTB (nc_scntl3, 0);
7218
7219         if (bootverbose >= 2)
7220                 printk ("%s: Delay (GEN=%d): %u msec\n", ncr_name(np), gen, ms);
7221         /*
7222          * adjust for prescaler, and convert into KHz 
7223          */
7224         return ms ? ((1 << gen) * 4340) / ms : 0;
7225 }
7226
7227 /*
7228  *      Get/probe NCR SCSI clock frequency
7229  */
7230 static void __init ncr_getclock (struct ncb *np, int mult)
7231 {
7232         unsigned char scntl3 = INB(nc_scntl3);
7233         unsigned char stest1 = INB(nc_stest1);
7234         unsigned f1;
7235
7236         np->multiplier = 1;
7237         f1 = 40000;
7238
7239         /*
7240         **      True with 875 or 895 with clock multiplier selected
7241         */
7242         if (mult > 1 && (stest1 & (DBLEN+DBLSEL)) == DBLEN+DBLSEL) {
7243                 if (bootverbose >= 2)
7244                         printk ("%s: clock multiplier found\n", ncr_name(np));
7245                 np->multiplier = mult;
7246         }
7247
7248         /*
7249         **      If multiplier not found or scntl3 not 7,5,3,
7250         **      reset chip and get frequency from general purpose timer.
7251         **      Otherwise trust scntl3 BIOS setting.
7252         */
7253         if (np->multiplier != mult || (scntl3 & 7) < 3 || !(scntl3 & 1)) {
7254                 unsigned f2;
7255
7256                 ncr_chip_reset(np, 5);
7257
7258                 (void) ncrgetfreq (np, 11);     /* throw away first result */
7259                 f1 = ncrgetfreq (np, 11);
7260                 f2 = ncrgetfreq (np, 11);
7261
7262                 if(bootverbose)
7263                         printk ("%s: NCR clock is %uKHz, %uKHz\n", ncr_name(np), f1, f2);
7264
7265                 if (f1 > f2) f1 = f2;           /* trust lower result   */
7266
7267                 if      (f1 <   45000)          f1 =  40000;
7268                 else if (f1 <   55000)          f1 =  50000;
7269                 else                            f1 =  80000;
7270
7271                 if (f1 < 80000 && mult > 1) {
7272                         if (bootverbose >= 2)
7273                                 printk ("%s: clock multiplier assumed\n", ncr_name(np));
7274                         np->multiplier  = mult;
7275                 }
7276         } else {
7277                 if      ((scntl3 & 7) == 3)     f1 =  40000;
7278                 else if ((scntl3 & 7) == 5)     f1 =  80000;
7279                 else                            f1 = 160000;
7280
7281                 f1 /= np->multiplier;
7282         }
7283
7284         /*
7285         **      Compute controller synchronous parameters.
7286         */
7287         f1              *= np->multiplier;
7288         np->clock_khz   = f1;
7289 }
7290
7291 /*===================== LINUX ENTRY POINTS SECTION ==========================*/
7292
7293 static int ncr53c8xx_slave_alloc(struct scsi_device *device)
7294 {
7295         struct Scsi_Host *host = device->host;
7296         struct ncb *np = ((struct host_data *) host->hostdata)->ncb;
7297         struct tcb *tp = &np->target[device->id];
7298         tp->starget = device->sdev_target;
7299
7300         return 0;
7301 }
7302
7303 static int ncr53c8xx_slave_configure(struct scsi_device *device)
7304 {
7305         struct Scsi_Host *host = device->host;
7306         struct ncb *np = ((struct host_data *) host->hostdata)->ncb;
7307         struct tcb *tp = &np->target[device->id];
7308         struct lcb *lp = tp->lp[device->lun];
7309         int numtags, depth_to_use;
7310
7311         ncr_setup_lcb(np, device);
7312
7313         /*
7314         **      Select queue depth from driver setup.
7315         **      Donnot use more than configured by user.
7316         **      Use at least 2.
7317         **      Donnot use more than our maximum.
7318         */
7319         numtags = device_queue_depth(np->unit, device->id, device->lun);
7320         if (numtags > tp->usrtags)
7321                 numtags = tp->usrtags;
7322         if (!device->tagged_supported)
7323                 numtags = 1;
7324         depth_to_use = numtags;
7325         if (depth_to_use < 2)
7326                 depth_to_use = 2;
7327         if (depth_to_use > MAX_TAGS)
7328                 depth_to_use = MAX_TAGS;
7329
7330         scsi_adjust_queue_depth(device,
7331                                 (device->tagged_supported ?
7332                                  MSG_SIMPLE_TAG : 0),
7333                                 depth_to_use);
7334
7335         /*
7336         **      Since the queue depth is not tunable under Linux,
7337         **      we need to know this value in order not to 
7338         **      announce stupid things to user.
7339         **
7340         **      XXX(hch): As of Linux 2.6 it certainly _is_ tunable..
7341         **                In fact we just tuned it, or did I miss
7342         **                something important? :)
7343         */
7344         if (lp) {
7345                 lp->numtags = lp->maxtags = numtags;
7346                 lp->scdev_depth = depth_to_use;
7347         }
7348         ncr_setup_tags (np, device);
7349
7350 #ifdef DEBUG_NCR53C8XX
7351         printk("ncr53c8xx_select_queue_depth: host=%d, id=%d, lun=%d, depth=%d\n",
7352                np->unit, device->id, device->lun, depth_to_use);
7353 #endif
7354
7355         if (spi_support_sync(device->sdev_target) &&
7356             !spi_initial_dv(device->sdev_target))
7357                 spi_dv_device(device);
7358         return 0;
7359 }
7360
7361 static int ncr53c8xx_queue_command (struct scsi_cmnd *cmd, void (* done)(struct scsi_cmnd *))
7362 {
7363      struct ncb *np = ((struct host_data *) cmd->device->host->hostdata)->ncb;
7364      unsigned long flags;
7365      int sts;
7366
7367 #ifdef DEBUG_NCR53C8XX
7368 printk("ncr53c8xx_queue_command\n");
7369 #endif
7370
7371      cmd->scsi_done     = done;
7372      cmd->host_scribble = NULL;
7373      cmd->__data_mapped = 0;
7374      cmd->__data_mapping = 0;
7375
7376      spin_lock_irqsave(&np->smp_lock, flags);
7377
7378      if ((sts = ncr_queue_command(np, cmd)) != DID_OK) {
7379           cmd->result = ScsiResult(sts, 0);
7380 #ifdef DEBUG_NCR53C8XX
7381 printk("ncr53c8xx : command not queued - result=%d\n", sts);
7382 #endif
7383      }
7384 #ifdef DEBUG_NCR53C8XX
7385      else
7386 printk("ncr53c8xx : command successfully queued\n");
7387 #endif
7388
7389      spin_unlock_irqrestore(&np->smp_lock, flags);
7390
7391      if (sts != DID_OK) {
7392           unmap_scsi_data(np, cmd);
7393           done(cmd);
7394           sts = 0;
7395      }
7396
7397      return sts;
7398 }
7399
7400 irqreturn_t ncr53c8xx_intr(int irq, void *dev_id, struct pt_regs * regs)
7401 {
7402      unsigned long flags;
7403      struct Scsi_Host *shost = (struct Scsi_Host *)dev_id;
7404      struct host_data *host_data = (struct host_data *)shost->hostdata;
7405      struct ncb *np = host_data->ncb;
7406      struct scsi_cmnd *done_list;
7407
7408 #ifdef DEBUG_NCR53C8XX
7409      printk("ncr53c8xx : interrupt received\n");
7410 #endif
7411
7412      if (DEBUG_FLAGS & DEBUG_TINY) printk ("[");
7413
7414      spin_lock_irqsave(&np->smp_lock, flags);
7415      ncr_exception(np);
7416      done_list     = np->done_list;
7417      np->done_list = NULL;
7418      spin_unlock_irqrestore(&np->smp_lock, flags);
7419
7420      if (DEBUG_FLAGS & DEBUG_TINY) printk ("]\n");
7421
7422      if (done_list)
7423              ncr_flush_done_cmds(done_list);
7424      return IRQ_HANDLED;
7425 }
7426
7427 static void ncr53c8xx_timeout(unsigned long npref)
7428 {
7429         struct ncb *np = (struct ncb *) npref;
7430         unsigned long flags;
7431         struct scsi_cmnd *done_list;
7432
7433         spin_lock_irqsave(&np->smp_lock, flags);
7434         ncr_timeout(np);
7435         done_list     = np->done_list;
7436         np->done_list = NULL;
7437         spin_unlock_irqrestore(&np->smp_lock, flags);
7438
7439         if (done_list)
7440                 ncr_flush_done_cmds(done_list);
7441 }
7442
7443 static int ncr53c8xx_bus_reset(struct scsi_cmnd *cmd)
7444 {
7445         struct ncb *np = ((struct host_data *) cmd->device->host->hostdata)->ncb;
7446         int sts;
7447         unsigned long flags;
7448         struct scsi_cmnd *done_list;
7449
7450         /*
7451          * If the mid-level driver told us reset is synchronous, it seems 
7452          * that we must call the done() callback for the involved command, 
7453          * even if this command was not queued to the low-level driver, 
7454          * before returning SUCCESS.
7455          */
7456
7457         spin_lock_irqsave(&np->smp_lock, flags);
7458         sts = ncr_reset_bus(np, cmd, 1);
7459
7460         done_list     = np->done_list;
7461         np->done_list = NULL;
7462         spin_unlock_irqrestore(&np->smp_lock, flags);
7463
7464         ncr_flush_done_cmds(done_list);
7465
7466         return sts;
7467 }
7468
7469 #if 0 /* unused and broken */
7470 static int ncr53c8xx_abort(struct scsi_cmnd *cmd)
7471 {
7472         struct ncb *np = ((struct host_data *) cmd->device->host->hostdata)->ncb;
7473         int sts;
7474         unsigned long flags;
7475         struct scsi_cmnd *done_list;
7476
7477 #if defined SCSI_RESET_SYNCHRONOUS && defined SCSI_RESET_ASYNCHRONOUS
7478         printk("ncr53c8xx_abort: pid=%lu serial_number=%ld\n",
7479                 cmd->pid, cmd->serial_number);
7480 #else
7481         printk("ncr53c8xx_abort: command pid %lu\n", cmd->pid);
7482 #endif
7483
7484         NCR_LOCK_NCB(np, flags);
7485
7486         sts = ncr_abort_command(np, cmd);
7487 out:
7488         done_list     = np->done_list;
7489         np->done_list = NULL;
7490         NCR_UNLOCK_NCB(np, flags);
7491
7492         ncr_flush_done_cmds(done_list);
7493
7494         return sts;
7495 }
7496 #endif
7497
7498
7499 /*
7500 **      Scsi command waiting list management.
7501 **
7502 **      It may happen that we cannot insert a scsi command into the start queue,
7503 **      in the following circumstances.
7504 **              Too few preallocated ccb(s), 
7505 **              maxtags < cmd_per_lun of the Linux host control block,
7506 **              etc...
7507 **      Such scsi commands are inserted into a waiting list.
7508 **      When a scsi command complete, we try to requeue the commands of the
7509 **      waiting list.
7510 */
7511
7512 #define next_wcmd host_scribble
7513
7514 static void insert_into_waiting_list(struct ncb *np, struct scsi_cmnd *cmd)
7515 {
7516         struct scsi_cmnd *wcmd;
7517
7518 #ifdef DEBUG_WAITING_LIST
7519         printk("%s: cmd %lx inserted into waiting list\n", ncr_name(np), (u_long) cmd);
7520 #endif
7521         cmd->next_wcmd = NULL;
7522         if (!(wcmd = np->waiting_list)) np->waiting_list = cmd;
7523         else {
7524                 while ((wcmd->next_wcmd) != 0)
7525                         wcmd = (struct scsi_cmnd *) wcmd->next_wcmd;
7526                 wcmd->next_wcmd = (char *) cmd;
7527         }
7528 }
7529
7530 static struct scsi_cmnd *retrieve_from_waiting_list(int to_remove, struct ncb *np, struct scsi_cmnd *cmd)
7531 {
7532         struct scsi_cmnd **pcmd = &np->waiting_list;
7533
7534         while (*pcmd) {
7535                 if (cmd == *pcmd) {
7536                         if (to_remove) {
7537                                 *pcmd = (struct scsi_cmnd *) cmd->next_wcmd;
7538                                 cmd->next_wcmd = NULL;
7539                         }
7540 #ifdef DEBUG_WAITING_LIST
7541         printk("%s: cmd %lx retrieved from waiting list\n", ncr_name(np), (u_long) cmd);
7542 #endif
7543                         return cmd;
7544                 }
7545                 pcmd = (struct scsi_cmnd **) &(*pcmd)->next_wcmd;
7546         }
7547         return NULL;
7548 }
7549
7550 static void process_waiting_list(struct ncb *np, int sts)
7551 {
7552         struct scsi_cmnd *waiting_list, *wcmd;
7553
7554         waiting_list = np->waiting_list;
7555         np->waiting_list = NULL;
7556
7557 #ifdef DEBUG_WAITING_LIST
7558         if (waiting_list) printk("%s: waiting_list=%lx processing sts=%d\n", ncr_name(np), (u_long) waiting_list, sts);
7559 #endif
7560         while ((wcmd = waiting_list) != 0) {
7561                 waiting_list = (struct scsi_cmnd *) wcmd->next_wcmd;
7562                 wcmd->next_wcmd = NULL;
7563                 if (sts == DID_OK) {
7564 #ifdef DEBUG_WAITING_LIST
7565         printk("%s: cmd %lx trying to requeue\n", ncr_name(np), (u_long) wcmd);
7566 #endif
7567                         sts = ncr_queue_command(np, wcmd);
7568                 }
7569                 if (sts != DID_OK) {
7570 #ifdef DEBUG_WAITING_LIST
7571         printk("%s: cmd %lx done forced sts=%d\n", ncr_name(np), (u_long) wcmd, sts);
7572 #endif
7573                         wcmd->result = ScsiResult(sts, 0);
7574                         ncr_queue_done_cmd(np, wcmd);
7575                 }
7576         }
7577 }
7578
7579 #undef next_wcmd
7580
7581 static ssize_t show_ncr53c8xx_revision(struct class_device *dev, char *buf)
7582 {
7583         struct Scsi_Host *host = class_to_shost(dev);
7584         struct host_data *host_data = (struct host_data *)host->hostdata;
7585   
7586         return snprintf(buf, 20, "0x%x\n", host_data->ncb->revision_id);
7587 }
7588   
7589 static struct class_device_attribute ncr53c8xx_revision_attr = {
7590         .attr   = { .name = "revision", .mode = S_IRUGO, },
7591         .show   = show_ncr53c8xx_revision,
7592 };
7593   
7594 static struct class_device_attribute *ncr53c8xx_host_attrs[] = {
7595         &ncr53c8xx_revision_attr,
7596         NULL
7597 };
7598
7599 /*==========================================================
7600 **
7601 **      Boot command line.
7602 **
7603 **==========================================================
7604 */
7605 #ifdef  MODULE
7606 char *ncr53c8xx;        /* command line passed by insmod */
7607 module_param(ncr53c8xx, charp, 0);
7608 #endif
7609
7610 static int __init ncr53c8xx_setup(char *str)
7611 {
7612         return sym53c8xx__setup(str);
7613 }
7614
7615 #ifndef MODULE
7616 __setup("ncr53c8xx=", ncr53c8xx_setup);
7617 #endif
7618
7619
7620 /*
7621  *      Host attach and initialisations.
7622  *
7623  *      Allocate host data and ncb structure.
7624  *      Request IO region and remap MMIO region.
7625  *      Do chip initialization.
7626  *      If all is OK, install interrupt handling and
7627  *      start the timer daemon.
7628  */
7629 struct Scsi_Host * __init ncr_attach(struct scsi_host_template *tpnt,
7630                                         int unit, struct ncr_device *device)
7631 {
7632         struct host_data *host_data;
7633         struct ncb *np = NULL;
7634         struct Scsi_Host *instance = NULL;
7635         u_long flags = 0;
7636         int i;
7637
7638         if (!tpnt->name)
7639                 tpnt->name      = SCSI_NCR_DRIVER_NAME;
7640         if (!tpnt->shost_attrs)
7641                 tpnt->shost_attrs = ncr53c8xx_host_attrs;
7642
7643         tpnt->queuecommand      = ncr53c8xx_queue_command;
7644         tpnt->slave_configure   = ncr53c8xx_slave_configure;
7645         tpnt->slave_alloc       = ncr53c8xx_slave_alloc;
7646         tpnt->eh_bus_reset_handler = ncr53c8xx_bus_reset;
7647         tpnt->can_queue         = SCSI_NCR_CAN_QUEUE;
7648         tpnt->this_id           = 7;
7649         tpnt->sg_tablesize      = SCSI_NCR_SG_TABLESIZE;
7650         tpnt->cmd_per_lun       = SCSI_NCR_CMD_PER_LUN;
7651         tpnt->use_clustering    = ENABLE_CLUSTERING;
7652
7653         if (device->differential)
7654                 driver_setup.diff_support = device->differential;
7655
7656         printk(KERN_INFO "ncr53c720-%d: rev 0x%x irq %d\n",
7657                 unit, device->chip.revision_id, device->slot.irq);
7658
7659         instance = scsi_host_alloc(tpnt, sizeof(*host_data));
7660         if (!instance)
7661                 goto attach_error;
7662         host_data = (struct host_data *) instance->hostdata;
7663
7664         np = __m_calloc_dma(device->dev, sizeof(struct ncb), "NCB");
7665         if (!np)
7666                 goto attach_error;
7667         spin_lock_init(&np->smp_lock);
7668         np->dev = device->dev;
7669         np->p_ncb = vtobus(np);
7670         host_data->ncb = np;
7671
7672         np->ccb = m_calloc_dma(sizeof(struct ccb), "CCB");
7673         if (!np->ccb)
7674                 goto attach_error;
7675
7676         /* Store input information in the host data structure.  */
7677         np->unit        = unit;
7678         np->verbose     = driver_setup.verbose;
7679         sprintf(np->inst_name, "ncr53c720-%d", np->unit);
7680         np->revision_id = device->chip.revision_id;
7681         np->features    = device->chip.features;
7682         np->clock_divn  = device->chip.nr_divisor;
7683         np->maxoffs     = device->chip.offset_max;
7684         np->maxburst    = device->chip.burst_max;
7685         np->myaddr      = device->host_id;
7686
7687         /* Allocate SCRIPTS areas.  */
7688         np->script0 = m_calloc_dma(sizeof(struct script), "SCRIPT");
7689         if (!np->script0)
7690                 goto attach_error;
7691         np->scripth0 = m_calloc_dma(sizeof(struct scripth), "SCRIPTH");
7692         if (!np->scripth0)
7693                 goto attach_error;
7694
7695         init_timer(&np->timer);
7696         np->timer.data     = (unsigned long) np;
7697         np->timer.function = ncr53c8xx_timeout;
7698
7699         /* Try to map the controller chip to virtual and physical memory. */
7700
7701         np->paddr       = device->slot.base;
7702         np->paddr2      = (np->features & FE_RAM) ? device->slot.base_2 : 0;
7703
7704         if (device->slot.base_v)
7705                 np->vaddr = device->slot.base_v;
7706         else
7707                 np->vaddr = ioremap(device->slot.base_c, 128);
7708
7709         if (!np->vaddr) {
7710                 printk(KERN_ERR
7711                         "%s: can't map memory mapped IO region\n",ncr_name(np));
7712                 goto attach_error;
7713         } else {
7714                 if (bootverbose > 1)
7715                         printk(KERN_INFO
7716                                 "%s: using memory mapped IO at virtual address 0x%lx\n", ncr_name(np), (u_long) np->vaddr);
7717         }
7718
7719         /* Make the controller's registers available.  Now the INB INW INL
7720          * OUTB OUTW OUTL macros can be used safely.
7721          */
7722
7723         np->reg = (struct ncr_reg __iomem *)np->vaddr;
7724
7725         /* Do chip dependent initialization.  */
7726         ncr_prepare_setting(np);
7727
7728         if (np->paddr2 && sizeof(struct script) > 4096) {
7729                 np->paddr2 = 0;
7730                 printk(KERN_WARNING "%s: script too large, NOT using on chip RAM.\n",
7731                         ncr_name(np));
7732         }
7733
7734         instance->max_channel   = 0;
7735         instance->this_id       = np->myaddr;
7736         instance->max_id        = np->maxwide ? 16 : 8;
7737         instance->max_lun       = SCSI_NCR_MAX_LUN;
7738         instance->base          = (unsigned long) np->reg;
7739         instance->irq           = device->slot.irq;
7740         instance->unique_id     = device->slot.base;
7741         instance->dma_channel   = 0;
7742         instance->cmd_per_lun   = MAX_TAGS;
7743         instance->can_queue     = (MAX_START-4);
7744         /* This can happen if you forget to call ncr53c8xx_init from
7745          * your module_init */
7746         BUG_ON(!ncr53c8xx_transport_template);
7747         instance->transportt    = ncr53c8xx_transport_template;
7748
7749         /* Patch script to physical addresses */
7750         ncr_script_fill(&script0, &scripth0);
7751
7752         np->scripth     = np->scripth0;
7753         np->p_scripth   = vtobus(np->scripth);
7754         np->p_script    = (np->paddr2) ?  np->paddr2 : vtobus(np->script0);
7755
7756         ncr_script_copy_and_bind(np, (ncrcmd *) &script0,
7757                         (ncrcmd *) np->script0, sizeof(struct script));
7758         ncr_script_copy_and_bind(np, (ncrcmd *) &scripth0,
7759                         (ncrcmd *) np->scripth0, sizeof(struct scripth));
7760         np->ccb->p_ccb  = vtobus (np->ccb);
7761
7762         /* Patch the script for LED support.  */
7763
7764         if (np->features & FE_LED0) {
7765                 np->script0->idle[0]  =
7766                                 cpu_to_scr(SCR_REG_REG(gpreg, SCR_OR,  0x01));
7767                 np->script0->reselected[0] =
7768                                 cpu_to_scr(SCR_REG_REG(gpreg, SCR_AND, 0xfe));
7769                 np->script0->start[0] =
7770                                 cpu_to_scr(SCR_REG_REG(gpreg, SCR_AND, 0xfe));
7771         }
7772
7773         /*
7774          * Look for the target control block of this nexus.
7775          * For i = 0 to 3
7776          *   JUMP ^ IFTRUE (MASK (i, 3)), @(next_lcb)
7777          */
7778         for (i = 0 ; i < 4 ; i++) {
7779                 np->jump_tcb[i].l_cmd   =
7780                                 cpu_to_scr((SCR_JUMP ^ IFTRUE (MASK (i, 3))));
7781                 np->jump_tcb[i].l_paddr =
7782                                 cpu_to_scr(NCB_SCRIPTH_PHYS (np, bad_target));
7783         }
7784
7785         ncr_chip_reset(np, 100);
7786
7787         /* Now check the cache handling of the chipset.  */
7788
7789         if (ncr_snooptest(np)) {
7790                 printk(KERN_ERR "CACHE INCORRECTLY CONFIGURED.\n");
7791                 goto attach_error;
7792         }
7793
7794         /* Install the interrupt handler.  */
7795         np->irq = device->slot.irq;
7796
7797         /* Initialize the fixed part of the default ccb.  */
7798         ncr_init_ccb(np, np->ccb);
7799
7800         /*
7801          * After SCSI devices have been opened, we cannot reset the bus
7802          * safely, so we do it here.  Interrupt handler does the real work.
7803          * Process the reset exception if interrupts are not enabled yet.
7804          * Then enable disconnects.
7805          */
7806         spin_lock_irqsave(&np->smp_lock, flags);
7807         if (ncr_reset_scsi_bus(np, 0, driver_setup.settle_delay) != 0) {
7808                 printk(KERN_ERR "%s: FATAL ERROR: CHECK SCSI BUS - CABLES, TERMINATION, DEVICE POWER etc.!\n", ncr_name(np));
7809
7810                 spin_unlock_irqrestore(&np->smp_lock, flags);
7811                 goto attach_error;
7812         }
7813         ncr_exception(np);
7814
7815         np->disc = 1;
7816
7817         /*
7818          * The middle-level SCSI driver does not wait for devices to settle.
7819          * Wait synchronously if more than 2 seconds.
7820          */
7821         if (driver_setup.settle_delay > 2) {
7822                 printk(KERN_INFO "%s: waiting %d seconds for scsi devices to settle...\n",
7823                         ncr_name(np), driver_setup.settle_delay);
7824                 mdelay(1000 * driver_setup.settle_delay);
7825         }
7826
7827         /* start the timeout daemon */
7828         np->lasttime=0;
7829         ncr_timeout (np);
7830
7831         /* use SIMPLE TAG messages by default */
7832 #ifdef SCSI_NCR_ALWAYS_SIMPLE_TAG
7833         np->order = M_SIMPLE_TAG;
7834 #endif
7835
7836         spin_unlock_irqrestore(&np->smp_lock, flags);
7837
7838         return instance;
7839
7840  attach_error:
7841         if (!instance)
7842                 return NULL;
7843         printk(KERN_INFO "%s: detaching...\n", ncr_name(np));
7844         if (!np)
7845                 goto unregister;
7846         if (np->scripth0)
7847                 m_free_dma(np->scripth0, sizeof(struct scripth), "SCRIPTH");
7848         if (np->script0)
7849                 m_free_dma(np->script0, sizeof(struct script), "SCRIPT");
7850         if (np->ccb)
7851                 m_free_dma(np->ccb, sizeof(struct ccb), "CCB");
7852         m_free_dma(np, sizeof(struct ncb), "NCB");
7853         host_data->ncb = NULL;
7854
7855  unregister:
7856         scsi_host_put(instance);
7857
7858         return NULL;
7859 }
7860
7861
7862 int ncr53c8xx_release(struct Scsi_Host *host)
7863 {
7864         struct host_data *host_data;
7865 #ifdef DEBUG_NCR53C8XX
7866         printk("ncr53c8xx: release\n");
7867 #endif
7868         if (!host)
7869                 return 1;
7870         host_data = (struct host_data *)host->hostdata;
7871         if (host_data && host_data->ncb)
7872                 ncr_detach(host_data->ncb);
7873         return 1;
7874 }
7875
7876 static void ncr53c8xx_set_period(struct scsi_target *starget, int period)
7877 {
7878         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
7879         struct ncb *np = ((struct host_data *)shost->hostdata)->ncb;
7880         struct tcb *tp = &np->target[starget->id];
7881
7882         if (period > np->maxsync)
7883                 period = np->maxsync;
7884         else if (period < np->minsync)
7885                 period = np->minsync;
7886
7887         tp->usrsync = period;
7888
7889         ncr_negotiate(np, tp);
7890 }
7891
7892 static void ncr53c8xx_set_offset(struct scsi_target *starget, int offset)
7893 {
7894         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
7895         struct ncb *np = ((struct host_data *)shost->hostdata)->ncb;
7896         struct tcb *tp = &np->target[starget->id];
7897
7898         if (offset > np->maxoffs)
7899                 offset = np->maxoffs;
7900         else if (offset < 0)
7901                 offset = 0;
7902
7903         tp->maxoffs = offset;
7904
7905         ncr_negotiate(np, tp);
7906 }
7907
7908 static void ncr53c8xx_set_width(struct scsi_target *starget, int width)
7909 {
7910         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
7911         struct ncb *np = ((struct host_data *)shost->hostdata)->ncb;
7912         struct tcb *tp = &np->target[starget->id];
7913
7914         if (width > np->maxwide)
7915                 width = np->maxwide;
7916         else if (width < 0)
7917                 width = 0;
7918
7919         tp->usrwide = width;
7920
7921         ncr_negotiate(np, tp);
7922 }
7923
7924 static void ncr53c8xx_get_signalling(struct Scsi_Host *shost)
7925 {
7926         struct ncb *np = ((struct host_data *)shost->hostdata)->ncb;
7927         enum spi_signal_type type;
7928
7929         switch (np->scsi_mode) {
7930         case SMODE_SE:
7931                 type = SPI_SIGNAL_SE;
7932                 break;
7933         case SMODE_HVD:
7934                 type = SPI_SIGNAL_HVD;
7935                 break;
7936         default:
7937                 type = SPI_SIGNAL_UNKNOWN;
7938                 break;
7939         }
7940         spi_signalling(shost) = type;
7941 }
7942
7943 static struct spi_function_template ncr53c8xx_transport_functions =  {
7944         .set_period     = ncr53c8xx_set_period,
7945         .show_period    = 1,
7946         .set_offset     = ncr53c8xx_set_offset,
7947         .show_offset    = 1,
7948         .set_width      = ncr53c8xx_set_width,
7949         .show_width     = 1,
7950         .get_signalling = ncr53c8xx_get_signalling,
7951 };
7952
7953 int __init ncr53c8xx_init(void)
7954 {
7955         ncr53c8xx_transport_template = spi_attach_transport(&ncr53c8xx_transport_functions);
7956         if (!ncr53c8xx_transport_template)
7957                 return -ENODEV;
7958         return 0;
7959 }
7960
7961 void ncr53c8xx_exit(void)
7962 {
7963         spi_release_transport(ncr53c8xx_transport_template);
7964 }