in2000.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:77k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *    in2000.c -  Linux device driver for the
  3.  *                Always IN2000 ISA SCSI card.
  4.  *
  5.  * Copyright (c) 1996 John Shifflett, GeoLog Consulting
  6.  *    john@geolog.com
  7.  *    jshiffle@netcom.com
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2, or (at your option)
  12.  * any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  *
  20.  * Drew Eckhardt's excellent 'Generic NCR5380' sources provided
  21.  * much of the inspiration and some of the code for this driver.
  22.  * The Linux IN2000 driver distributed in the Linux kernels through
  23.  * version 1.2.13 was an extremely valuable reference on the arcane
  24.  * (and still mysterious) workings of the IN2000's fifo. It also
  25.  * is where I lifted in2000_biosparam(), the gist of the card
  26.  * detection scheme, and other bits of code. Many thanks to the
  27.  * talented and courageous people who wrote, contributed to, and
  28.  * maintained that driver (including Brad McLean, Shaun Savage,
  29.  * Bill Earnest, Larry Doolittle, Roger Sunshine, John Luckey,
  30.  * Matt Postiff, Peter Lu, zerucha@shell.portal.com, and Eric
  31.  * Youngdale). I should also mention the driver written by
  32.  * Hamish Macdonald for the (GASP!) Amiga A2091 card, included
  33.  * in the Linux-m68k distribution; it gave me a good initial
  34.  * understanding of the proper way to run a WD33c93 chip, and I
  35.  * ended up stealing lots of code from it.
  36.  *
  37.  * _This_ driver is (I feel) an improvement over the old one in
  38.  * several respects:
  39.  *    -  All problems relating to the data size of a SCSI request are
  40.  *          gone (as far as I know). The old driver couldn't handle
  41.  *          swapping to partitions because that involved 4k blocks, nor
  42.  *          could it deal with the st.c tape driver unmodified, because
  43.  *          that usually involved 4k - 32k blocks. The old driver never
  44.  *          quite got away from a morbid dependence on 2k block sizes -
  45.  *          which of course is the size of the card's fifo.
  46.  *
  47.  *    -  Target Disconnection/Reconnection is now supported. Any
  48.  *          system with more than one device active on the SCSI bus
  49.  *          will benefit from this. The driver defaults to what I'm
  50.  *          calling 'adaptive disconnect' - meaning that each command
  51.  *          is evaluated individually as to whether or not it should
  52.  *          be run with the option to disconnect/reselect (if the
  53.  *          device chooses), or as a "SCSI-bus-hog".
  54.  *
  55.  *    -  Synchronous data transfers are now supported. Because there
  56.  *          are a few devices (and many improperly terminated systems)
  57.  *          that choke when doing sync, the default is sync DISABLED
  58.  *          for all devices. This faster protocol can (and should!)
  59.  *          be enabled on selected devices via the command-line.
  60.  *
  61.  *    -  Runtime operating parameters can now be specified through
  62.  *       either the LILO or the 'insmod' command line. For LILO do:
  63.  *          "in2000=blah,blah,blah"
  64.  *       and with insmod go like:
  65.  *          "insmod /usr/src/linux/modules/in2000.o setup_strings=blah,blah"
  66.  *       The defaults should be good for most people. See the comment
  67.  *       for 'setup_strings' below for more details.
  68.  *
  69.  *    -  The old driver relied exclusively on what the Western Digital
  70.  *          docs call "Combination Level 2 Commands", which are a great
  71.  *          idea in that the CPU is relieved of a lot of interrupt
  72.  *          overhead. However, by accepting a certain (user-settable)
  73.  *          amount of additional interrupts, this driver achieves
  74.  *          better control over the SCSI bus, and data transfers are
  75.  *          almost as fast while being much easier to define, track,
  76.  *          and debug.
  77.  *
  78.  *    -  You can force detection of a card whose BIOS has been disabled.
  79.  *
  80.  *    -  Multiple IN2000 cards might almost be supported. I've tried to
  81.  *       keep it in mind, but have no way to test...
  82.  *
  83.  *
  84.  * TODO:
  85.  *       tagged queuing. multiple cards.
  86.  *
  87.  *
  88.  * NOTE:
  89.  *       When using this or any other SCSI driver as a module, you'll
  90.  *       find that with the stock kernel, at most _two_ SCSI hard
  91.  *       drives will be linked into the device list (ie, usable).
  92.  *       If your IN2000 card has more than 2 disks on its bus, you
  93.  *       might want to change the define of 'SD_EXTRA_DEVS' in the
  94.  *       'hosts.h' file from 2 to whatever is appropriate. It took
  95.  *       me a while to track down this surprisingly obscure and
  96.  *       undocumented little "feature".
  97.  *
  98.  *
  99.  * People with bug reports, wish-lists, complaints, comments,
  100.  * or improvements are asked to pah-leeez email me (John Shifflett)
  101.  * at john@geolog.com or jshiffle@netcom.com! I'm anxious to get
  102.  * this thing into as good a shape as possible, and I'm positive
  103.  * there are lots of lurking bugs and "Stupid Places".
  104.  *
  105.  */
  106. #include <linux/module.h>
  107. #include <asm/system.h>
  108. #include <linux/sched.h>
  109. #include <linux/string.h>
  110. #include <linux/delay.h>
  111. #include <linux/proc_fs.h>
  112. #include <asm/io.h>
  113. #include <linux/ioport.h>
  114. #include <linux/blkdev.h>
  115. #include <linux/blk.h>
  116. #include <linux/stat.h>
  117. #include "scsi.h"
  118. #include "sd.h"
  119. #include "hosts.h"
  120. #define IN2000_VERSION    "1.33"
  121. #define IN2000_DATE       "26/August/1998"
  122. #include "in2000.h"
  123. /*
  124.  * 'setup_strings' is a single string used to pass operating parameters and
  125.  * settings from the kernel/module command-line to the driver. 'setup_args[]'
  126.  * is an array of strings that define the compile-time default values for
  127.  * these settings. If Linux boots with a LILO or insmod command-line, those
  128.  * settings are combined with 'setup_args[]'. Note that LILO command-lines
  129.  * are prefixed with "in2000=" while insmod uses a "setup_strings=" prefix.
  130.  * The driver recognizes the following keywords (lower case required) and
  131.  * arguments:
  132.  *
  133.  * -  ioport:addr    -Where addr is IO address of a (usually ROM-less) card.
  134.  * -  noreset        -No optional args. Prevents SCSI bus reset at boot time.
  135.  * -  nosync:x       -x is a bitmask where the 1st 7 bits correspond with
  136.  *                    the 7 possible SCSI devices (bit 0 for device #0, etc).
  137.  *                    Set a bit to PREVENT sync negotiation on that device.
  138.  *                    The driver default is sync DISABLED on all devices.
  139.  * -  period:ns      -ns is the minimum # of nanoseconds in a SCSI data transfer
  140.  *                    period. Default is 500; acceptable values are 250 - 1000.
  141.  * -  disconnect:x   -x = 0 to never allow disconnects, 2 to always allow them.
  142.  *                    x = 1 does 'adaptive' disconnects, which is the default
  143.  *                    and generally the best choice.
  144.  * -  debug:x        -If 'DEBUGGING_ON' is defined, x is a bitmask that causes
  145.  *                    various types of debug output to printed - see the DB_xxx
  146.  *                    defines in in2000.h
  147.  * -  proc:x         -If 'PROC_INTERFACE' is defined, x is a bitmask that
  148.  *                    determines how the /proc interface works and what it
  149.  *                    does - see the PR_xxx defines in in2000.h
  150.  *
  151.  * Syntax Notes:
  152.  * -  Numeric arguments can be decimal or the '0x' form of hex notation. There
  153.  *    _must_ be a colon between a keyword and its numeric argument, with no
  154.  *    spaces.
  155.  * -  Keywords are separated by commas, no spaces, in the standard kernel
  156.  *    command-line manner.
  157.  * -  A keyword in the 'nth' comma-separated command-line member will overwrite
  158.  *    the 'nth' element of setup_args[]. A blank command-line member (in
  159.  *    other words, a comma with no preceding keyword) will _not_ overwrite
  160.  *    the corresponding setup_args[] element.
  161.  *
  162.  * A few LILO examples (for insmod, use 'setup_strings' instead of 'in2000'):
  163.  * -  in2000=ioport:0x220,noreset
  164.  * -  in2000=period:250,disconnect:2,nosync:0x03
  165.  * -  in2000=debug:0x1e
  166.  * -  in2000=proc:3
  167.  */
  168. /* Normally, no defaults are specified... */
  169. static char *setup_args[] =
  170.       {"","","","","","","","",""};
  171. /* filled in by 'insmod' */
  172. static char *setup_strings = 0;
  173. #ifdef MODULE_PARM
  174. MODULE_PARM(setup_strings, "s");
  175. #endif
  176. static struct Scsi_Host *instance_list = 0;
  177. static inline uchar read_3393(struct IN2000_hostdata *hostdata, uchar reg_num)
  178. {
  179.    write1_io(reg_num,IO_WD_ADDR);
  180.    return read1_io(IO_WD_DATA);
  181. }
  182. #define READ_AUX_STAT() read1_io(IO_WD_ASR)
  183. static inline void write_3393(struct IN2000_hostdata *hostdata, uchar reg_num, uchar value)
  184. {
  185.    write1_io(reg_num,IO_WD_ADDR);
  186.    write1_io(value,IO_WD_DATA);
  187. }
  188. static inline void write_3393_cmd(struct IN2000_hostdata *hostdata, uchar cmd)
  189. {
  190. /*   while (READ_AUX_STAT() & ASR_CIP)
  191.       printk("|");*/
  192.    write1_io(WD_COMMAND,IO_WD_ADDR);
  193.    write1_io(cmd,IO_WD_DATA);
  194. }
  195. static uchar read_1_byte(struct IN2000_hostdata *hostdata)
  196. {
  197. uchar asr, x = 0;
  198.    write_3393(hostdata,WD_CONTROL, CTRL_IDI | CTRL_EDI | CTRL_POLLED);
  199.    write_3393_cmd(hostdata,WD_CMD_TRANS_INFO|0x80);
  200.    do {
  201.       asr = READ_AUX_STAT();
  202.       if (asr & ASR_DBR)
  203.          x = read_3393(hostdata,WD_DATA);
  204.       } while (!(asr & ASR_INT));
  205.    return x;
  206. }
  207. static void write_3393_count(struct IN2000_hostdata *hostdata, unsigned long value)
  208. {
  209.    write1_io(WD_TRANSFER_COUNT_MSB,IO_WD_ADDR);
  210.    write1_io((value >> 16),IO_WD_DATA);
  211.    write1_io((value >> 8),IO_WD_DATA);
  212.    write1_io(value,IO_WD_DATA);
  213. }
  214. static unsigned long read_3393_count(struct IN2000_hostdata *hostdata)
  215. {
  216. unsigned long value;
  217.    write1_io(WD_TRANSFER_COUNT_MSB,IO_WD_ADDR);
  218.    value = read1_io(IO_WD_DATA) << 16;
  219.    value |= read1_io(IO_WD_DATA) << 8;
  220.    value |= read1_io(IO_WD_DATA);
  221.    return value;
  222. }
  223. /* The 33c93 needs to be told which direction a command transfers its
  224.  * data; we use this function to figure it out. Returns true if there
  225.  * will be a DATA_OUT phase with this command, false otherwise.
  226.  * (Thanks to Joerg Dorchain for the research and suggestion.)
  227.  */
  228. static int is_dir_out(Scsi_Cmnd *cmd)
  229. {
  230.    switch (cmd->cmnd[0]) {
  231.       case WRITE_6:           case WRITE_10:          case WRITE_12:
  232.       case WRITE_LONG:        case WRITE_SAME:        case WRITE_BUFFER:
  233.       case WRITE_VERIFY:      case WRITE_VERIFY_12:      
  234.       case COMPARE:           case COPY:              case COPY_VERIFY:
  235.       case SEARCH_EQUAL:      case SEARCH_HIGH:       case SEARCH_LOW:
  236.       case SEARCH_EQUAL_12:   case SEARCH_HIGH_12:    case SEARCH_LOW_12:      
  237.       case FORMAT_UNIT:       case REASSIGN_BLOCKS:   case RESERVE:
  238.       case MODE_SELECT:       case MODE_SELECT_10:    case LOG_SELECT:
  239.       case SEND_DIAGNOSTIC:   case CHANGE_DEFINITION: case UPDATE_BLOCK:
  240.       case SET_WINDOW:        case MEDIUM_SCAN:       case SEND_VOLUME_TAG:
  241.       case 0xea:
  242.          return 1;
  243.       default:
  244.          return 0;
  245.       }
  246. }
  247. static struct sx_period sx_table[] = {
  248.    {  1, 0x20},
  249.    {252, 0x20},
  250.    {376, 0x30},
  251.    {500, 0x40},
  252.    {624, 0x50},
  253.    {752, 0x60},
  254.    {876, 0x70},
  255.    {1000,0x00},
  256.    {0,   0} };
  257. static int round_period(unsigned int period)
  258. {
  259. int x;
  260.    for (x=1; sx_table[x].period_ns; x++) {
  261.       if ((period <= sx_table[x-0].period_ns) &&
  262.           (period >  sx_table[x-1].period_ns)) {
  263.          return x;
  264.          }
  265.       }
  266.    return 7;
  267. }
  268. static uchar calc_sync_xfer(unsigned int period, unsigned int offset)
  269. {
  270. uchar result;
  271.    period *= 4;   /* convert SDTR code to ns */
  272.    result = sx_table[round_period(period)].reg_value;
  273.    result |= (offset < OPTIMUM_SX_OFF)?offset:OPTIMUM_SX_OFF;
  274.    return result;
  275. }
  276. static void in2000_execute(struct Scsi_Host *instance);
  277. int in2000_queuecommand (Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *))
  278. {
  279. struct IN2000_hostdata *hostdata;
  280. Scsi_Cmnd *tmp;
  281. unsigned long flags;
  282.    hostdata = (struct IN2000_hostdata *)cmd->host->hostdata;
  283. DB(DB_QUEUE_COMMAND,printk("Q-%d-%02x-%ld(",cmd->target,cmd->cmnd[0],cmd->pid))
  284. /* Set up a few fields in the Scsi_Cmnd structure for our own use:
  285.  *  - host_scribble is the pointer to the next cmd in the input queue
  286.  *  - scsi_done points to the routine we call when a cmd is finished
  287.  *  - result is what you'd expect
  288.  */
  289.    cmd->host_scribble = NULL;
  290.    cmd->scsi_done = done;
  291.    cmd->result = 0;
  292. /* We use the Scsi_Pointer structure that's included with each command
  293.  * as a scratchpad (as it's intended to be used!). The handy thing about
  294.  * the SCp.xxx fields is that they're always associated with a given
  295.  * cmd, and are preserved across disconnect-reselect. This means we
  296.  * can pretty much ignore SAVE_POINTERS and RESTORE_POINTERS messages
  297.  * if we keep all the critical pointers and counters in SCp:
  298.  *  - SCp.ptr is the pointer into the RAM buffer
  299.  *  - SCp.this_residual is the size of that buffer
  300.  *  - SCp.buffer points to the current scatter-gather buffer
  301.  *  - SCp.buffers_residual tells us how many S.G. buffers there are
  302.  *  - SCp.have_data_in helps keep track of >2048 byte transfers
  303.  *  - SCp.sent_command is not used
  304.  *  - SCp.phase records this command's SRCID_ER bit setting
  305.  */
  306.    if (cmd->use_sg) {
  307.       cmd->SCp.buffer = (struct scatterlist *)cmd->buffer;
  308.       cmd->SCp.buffers_residual = cmd->use_sg - 1;
  309.       cmd->SCp.ptr = (char *)cmd->SCp.buffer->address;
  310.       cmd->SCp.this_residual = cmd->SCp.buffer->length;
  311.       }
  312.    else {
  313.       cmd->SCp.buffer = NULL;
  314.       cmd->SCp.buffers_residual = 0;
  315.       cmd->SCp.ptr = (char *)cmd->request_buffer;
  316.       cmd->SCp.this_residual = cmd->request_bufflen;
  317.       }
  318.    cmd->SCp.have_data_in = 0;
  319. /* We don't set SCp.phase here - that's done in in2000_execute() */
  320. /* WD docs state that at the conclusion of a "LEVEL2" command, the
  321.  * status byte can be retrieved from the LUN register. Apparently,
  322.  * this is the case only for *uninterrupted* LEVEL2 commands! If
  323.  * there are any unexpected phases entered, even if they are 100%
  324.  * legal (different devices may choose to do things differently),
  325.  * the LEVEL2 command sequence is exited. This often occurs prior
  326.  * to receiving the status byte, in which case the driver does a
  327.  * status phase interrupt and gets the status byte on its own.
  328.  * While such a command can then be "resumed" (ie restarted to
  329.  * finish up as a LEVEL2 command), the LUN register will NOT be
  330.  * a valid status byte at the command's conclusion, and we must
  331.  * use the byte obtained during the earlier interrupt. Here, we
  332.  * preset SCp.Status to an illegal value (0xff) so that when
  333.  * this command finally completes, we can tell where the actual
  334.  * status byte is stored.
  335.  */
  336.    cmd->SCp.Status = ILLEGAL_STATUS_BYTE;
  337. /* We need to disable interrupts before messing with the input
  338.  * queue and calling in2000_execute().
  339.  */
  340.    save_flags(flags);
  341.    cli();
  342.    /*
  343.     * Add the cmd to the end of 'input_Q'. Note that REQUEST_SENSE
  344.     * commands are added to the head of the queue so that the desired
  345.     * sense data is not lost before REQUEST_SENSE executes.
  346.     */
  347.    if (!(hostdata->input_Q) || (cmd->cmnd[0] == REQUEST_SENSE)) {
  348.       cmd->host_scribble = (uchar *)hostdata->input_Q;
  349.       hostdata->input_Q = cmd;
  350.       }
  351.    else {   /* find the end of the queue */
  352.       for (tmp=(Scsi_Cmnd *)hostdata->input_Q; tmp->host_scribble;
  353.             tmp=(Scsi_Cmnd *)tmp->host_scribble)
  354.          ;
  355.       tmp->host_scribble = (uchar *)cmd;
  356.       }
  357. /* We know that there's at least one command in 'input_Q' now.
  358.  * Go see if any of them are runnable!
  359.  */
  360.    in2000_execute(cmd->host);
  361. DB(DB_QUEUE_COMMAND,printk(")Q-%ld ",cmd->pid))
  362.    restore_flags(flags);
  363.    return 0;
  364. }
  365. /*
  366.  * This routine attempts to start a scsi command. If the host_card is
  367.  * already connected, we give up immediately. Otherwise, look through
  368.  * the input_Q, using the first command we find that's intended
  369.  * for a currently non-busy target/lun.
  370.  * Note that this function is always called with interrupts already
  371.  * disabled (either from in2000_queuecommand() or in2000_intr()).
  372.  */
  373. static void in2000_execute (struct Scsi_Host *instance)
  374. {
  375. struct IN2000_hostdata *hostdata;
  376. Scsi_Cmnd *cmd, *prev;
  377. int i;
  378. unsigned short *sp;
  379. unsigned short f;
  380. unsigned short flushbuf[16];
  381.    hostdata = (struct IN2000_hostdata *)instance->hostdata;
  382. DB(DB_EXECUTE,printk("EX("))
  383.    if (hostdata->selecting || hostdata->connected) {
  384. DB(DB_EXECUTE,printk(")EX-0 "))
  385.       return;
  386.       }
  387.     /*
  388.      * Search through the input_Q for a command destined
  389.      * for an idle target/lun.
  390.      */
  391.    cmd = (Scsi_Cmnd *)hostdata->input_Q;
  392.    prev = 0;
  393.    while (cmd) {
  394.       if (!(hostdata->busy[cmd->target] & (1 << cmd->lun)))
  395.          break;
  396.       prev = cmd;
  397.       cmd = (Scsi_Cmnd *)cmd->host_scribble;
  398.       }
  399.    /* quit if queue empty or all possible targets are busy */
  400.    if (!cmd) {
  401. DB(DB_EXECUTE,printk(")EX-1 "))
  402.       return;
  403.       }
  404.    /*  remove command from queue */
  405.    
  406.    if (prev)
  407.       prev->host_scribble = cmd->host_scribble;
  408.    else
  409.       hostdata->input_Q = (Scsi_Cmnd *)cmd->host_scribble;
  410. #ifdef PROC_STATISTICS
  411.    hostdata->cmd_cnt[cmd->target]++;
  412. #endif
  413. /*
  414.  * Start the selection process
  415.  */
  416.    if (is_dir_out(cmd))
  417.       write_3393(hostdata,WD_DESTINATION_ID, cmd->target);
  418.    else
  419.       write_3393(hostdata,WD_DESTINATION_ID, cmd->target | DSTID_DPD);
  420. /* Now we need to figure out whether or not this command is a good
  421.  * candidate for disconnect/reselect. We guess to the best of our
  422.  * ability, based on a set of hierarchical rules. When several
  423.  * devices are operating simultaneously, disconnects are usually
  424.  * an advantage. In a single device system, or if only 1 device
  425.  * is being accessed, transfers usually go faster if disconnects
  426.  * are not allowed:
  427.  *
  428.  * + Commands should NEVER disconnect if hostdata->disconnect =
  429.  *   DIS_NEVER (this holds for tape drives also), and ALWAYS
  430.  *   disconnect if hostdata->disconnect = DIS_ALWAYS.
  431.  * + Tape drive commands should always be allowed to disconnect.
  432.  * + Disconnect should be allowed if disconnected_Q isn't empty.
  433.  * + Commands should NOT disconnect if input_Q is empty.
  434.  * + Disconnect should be allowed if there are commands in input_Q
  435.  *   for a different target/lun. In this case, the other commands
  436.  *   should be made disconnect-able, if not already.
  437.  *
  438.  * I know, I know - this code would flunk me out of any
  439.  * "C Programming 101" class ever offered. But it's easy
  440.  * to change around and experiment with for now.
  441.  */
  442.    cmd->SCp.phase = 0;  /* assume no disconnect */
  443.    if (hostdata->disconnect == DIS_NEVER)
  444.       goto no;
  445.    if (hostdata->disconnect == DIS_ALWAYS)
  446.       goto yes;
  447.    if (cmd->device->type == 1)   /* tape drive? */
  448.       goto yes;
  449.    if (hostdata->disconnected_Q) /* other commands disconnected? */
  450.       goto yes;
  451.    if (!(hostdata->input_Q))     /* input_Q empty? */
  452.       goto no;
  453.    for (prev=(Scsi_Cmnd *)hostdata->input_Q; prev;
  454.          prev=(Scsi_Cmnd *)prev->host_scribble) {
  455.       if ((prev->target != cmd->target) || (prev->lun != cmd->lun)) {
  456.          for (prev=(Scsi_Cmnd *)hostdata->input_Q; prev;
  457.                prev=(Scsi_Cmnd *)prev->host_scribble)
  458.             prev->SCp.phase = 1;
  459.          goto yes;
  460.          }
  461.       }
  462.    goto no;
  463. yes:
  464.    cmd->SCp.phase = 1;
  465. #ifdef PROC_STATISTICS
  466.    hostdata->disc_allowed_cnt[cmd->target]++;
  467. #endif
  468. no:
  469.    write_3393(hostdata,WD_SOURCE_ID,((cmd->SCp.phase)?SRCID_ER:0));
  470.    write_3393(hostdata,WD_TARGET_LUN, cmd->lun);
  471.    write_3393(hostdata,WD_SYNCHRONOUS_TRANSFER,hostdata->sync_xfer[cmd->target]);
  472.    hostdata->busy[cmd->target] |= (1 << cmd->lun);
  473.    if ((hostdata->level2 <= L2_NONE) ||
  474.        (hostdata->sync_stat[cmd->target] == SS_UNSET)) {
  475.          /*
  476.           * Do a 'Select-With-ATN' command. This will end with
  477.           * one of the following interrupts:
  478.           *    CSR_RESEL_AM:  failure - can try again later.
  479.           *    CSR_TIMEOUT:   failure - give up.
  480.           *    CSR_SELECT:    success - proceed.
  481.           */
  482.       hostdata->selecting = cmd;
  483. /* Every target has its own synchronous transfer setting, kept in
  484.  * the sync_xfer array, and a corresponding status byte in sync_stat[].
  485.  * Each target's sync_stat[] entry is initialized to SS_UNSET, and its
  486.  * sync_xfer[] entry is initialized to the default/safe value. SS_UNSET
  487.  * means that the parameters are undetermined as yet, and that we
  488.  * need to send an SDTR message to this device after selection is
  489.  * complete. We set SS_FIRST to tell the interrupt routine to do so,
  490.  * unless we don't want to even _try_ synchronous transfers: In this
  491.  * case we set SS_SET to make the defaults final.
  492.  */
  493.       if (hostdata->sync_stat[cmd->target] == SS_UNSET) {
  494.          if (hostdata->sync_off & (1 << cmd->target))
  495.             hostdata->sync_stat[cmd->target] = SS_SET;
  496.          else
  497.             hostdata->sync_stat[cmd->target] = SS_FIRST;
  498.          }
  499.       hostdata->state = S_SELECTING;
  500.       write_3393_count(hostdata,0); /* this guarantees a DATA_PHASE interrupt */
  501.       write_3393_cmd(hostdata,WD_CMD_SEL_ATN);
  502.       }
  503.    else {
  504.          /*
  505.           * Do a 'Select-With-ATN-Xfer' command. This will end with
  506.           * one of the following interrupts:
  507.           *    CSR_RESEL_AM:  failure - can try again later.
  508.           *    CSR_TIMEOUT:   failure - give up.
  509.           *    anything else: success - proceed.
  510.           */
  511.       hostdata->connected = cmd;
  512.       write_3393(hostdata,WD_COMMAND_PHASE, 0);
  513.    /* copy command_descriptor_block into WD chip
  514.     * (take advantage of auto-incrementing)
  515.     */
  516.       write1_io(WD_CDB_1, IO_WD_ADDR);
  517.       for (i=0; i<cmd->cmd_len; i++)
  518.          write1_io(cmd->cmnd[i], IO_WD_DATA);
  519.    /* The wd33c93 only knows about Group 0, 1, and 5 commands when
  520.     * it's doing a 'select-and-transfer'. To be safe, we write the
  521.     * size of the CDB into the OWN_ID register for every case. This
  522.     * way there won't be problems with vendor-unique, audio, etc.
  523.     */
  524.       write_3393(hostdata, WD_OWN_ID, cmd->cmd_len);
  525.    /* When doing a non-disconnect command, we can save ourselves a DATA
  526.     * phase interrupt later by setting everything up now. With writes we
  527.     * need to pre-fill the fifo; if there's room for the 32 flush bytes,
  528.     * put them in there too - that'll avoid a fifo interrupt. Reads are
  529.     * somewhat simpler.
  530.     * KLUDGE NOTE: It seems that you can't completely fill the fifo here:
  531.     * This results in the IO_FIFO_COUNT register rolling over to zero,
  532.     * and apparently the gate array logic sees this as empty, not full,
  533.     * so the 3393 chip is never signalled to start reading from the
  534.     * fifo. Or maybe it's seen as a permanent fifo interrupt condition.
  535.     * Regardless, we fix this by temporarily pretending that the fifo
  536.     * is 16 bytes smaller. (I see now that the old driver has a comment
  537.     * about "don't fill completely" in an analogous place - must be the
  538.     * same deal.) This results in CDROM, swap partitions, and tape drives
  539.     * needing an extra interrupt per write command - I think we can live
  540.     * with that!
  541.     */
  542.       if (!(cmd->SCp.phase)) {
  543.          write_3393_count(hostdata, cmd->SCp.this_residual);
  544.          write_3393(hostdata,WD_CONTROL, CTRL_IDI | CTRL_EDI | CTRL_BUS);
  545.          write1_io(0, IO_FIFO_WRITE);  /* clear fifo counter, write mode */
  546.          if (is_dir_out(cmd)) {
  547.             hostdata->fifo = FI_FIFO_WRITING;
  548.             if ((i = cmd->SCp.this_residual) > (IN2000_FIFO_SIZE - 16) )
  549.                i = IN2000_FIFO_SIZE - 16;
  550.             cmd->SCp.have_data_in = i;    /* this much data in fifo */
  551.             i >>= 1;                      /* Gulp. Assuming modulo 2. */
  552.             sp = (unsigned short *)cmd->SCp.ptr;
  553.             f = hostdata->io_base + IO_FIFO;
  554. #ifdef FAST_WRITE_IO
  555.             FAST_WRITE2_IO();
  556. #else
  557.             while (i--)
  558.                write2_io(*sp++,IO_FIFO);
  559. #endif
  560.       /* Is there room for the flush bytes? */
  561.             if (cmd->SCp.have_data_in <= ((IN2000_FIFO_SIZE - 16) - 32)) {
  562.                sp = flushbuf;
  563.                i = 16;
  564. #ifdef FAST_WRITE_IO
  565.                FAST_WRITE2_IO();
  566. #else
  567.                while (i--)
  568.                   write2_io(0,IO_FIFO);
  569. #endif
  570.                }
  571.             }
  572.          else {
  573.             write1_io(0, IO_FIFO_READ);   /* put fifo in read mode */
  574.             hostdata->fifo = FI_FIFO_READING;
  575.             cmd->SCp.have_data_in = 0;    /* nothing transferred yet */
  576.             }
  577.          }
  578.       else {
  579.          write_3393_count(hostdata,0); /* this guarantees a DATA_PHASE interrupt */
  580.          }
  581.       hostdata->state = S_RUNNING_LEVEL2;
  582.       write_3393_cmd(hostdata,WD_CMD_SEL_ATN_XFER);
  583.       }
  584.    /*
  585.     * Since the SCSI bus can handle only 1 connection at a time,
  586.     * we get out of here now. If the selection fails, or when
  587.     * the command disconnects, we'll come back to this routine
  588.     * to search the input_Q again...
  589.     */
  590.       
  591. DB(DB_EXECUTE,printk("%s%ld)EX-2 ",(cmd->SCp.phase)?"d:":"",cmd->pid))
  592. }
  593. static void transfer_pio(uchar *buf, int cnt,
  594.                   int data_in_dir, struct IN2000_hostdata *hostdata)
  595. {
  596. uchar asr;
  597. DB(DB_TRANSFER,printk("(%p,%d,%s)",buf,cnt,data_in_dir?"in":"out"))
  598.    write_3393(hostdata,WD_CONTROL, CTRL_IDI | CTRL_EDI | CTRL_POLLED);
  599.    write_3393_count(hostdata,cnt);
  600.    write_3393_cmd(hostdata,WD_CMD_TRANS_INFO);
  601.    if (data_in_dir) {
  602.       do {
  603.          asr = READ_AUX_STAT();
  604.          if (asr & ASR_DBR)
  605.             *buf++ = read_3393(hostdata,WD_DATA);
  606.          } while (!(asr & ASR_INT));
  607.       }
  608.    else {
  609.       do {
  610.          asr = READ_AUX_STAT();
  611.          if (asr & ASR_DBR)
  612.             write_3393(hostdata,WD_DATA, *buf++);
  613.          } while (!(asr & ASR_INT));
  614.       }
  615.    /* Note: we are returning with the interrupt UN-cleared.
  616.    * Since (presumably) an entire I/O operation has
  617.    * completed, the bus phase is probably different, and
  618.    * the interrupt routine will discover this when it
  619.    * responds to the uncleared int.
  620.    */
  621. }
  622. static void transfer_bytes(Scsi_Cmnd *cmd, int data_in_dir)
  623. {
  624. struct IN2000_hostdata *hostdata;
  625. unsigned short *sp;
  626. unsigned short f;
  627. int i;
  628.    hostdata = (struct IN2000_hostdata *)cmd->host->hostdata;
  629. /* Normally, you'd expect 'this_residual' to be non-zero here.
  630.  * In a series of scatter-gather transfers, however, this
  631.  * routine will usually be called with 'this_residual' equal
  632.  * to 0 and 'buffers_residual' non-zero. This means that a
  633.  * previous transfer completed, clearing 'this_residual', and
  634.  * now we need to setup the next scatter-gather buffer as the
  635.  * source or destination for THIS transfer.
  636.  */
  637.    if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
  638.       ++cmd->SCp.buffer;
  639.       --cmd->SCp.buffers_residual;
  640.       cmd->SCp.this_residual = cmd->SCp.buffer->length;
  641.       cmd->SCp.ptr = cmd->SCp.buffer->address;
  642.       }
  643. /* Set up hardware registers */
  644.    write_3393(hostdata,WD_SYNCHRONOUS_TRANSFER,hostdata->sync_xfer[cmd->target]);
  645.    write_3393_count(hostdata,cmd->SCp.this_residual);
  646.    write_3393(hostdata,WD_CONTROL, CTRL_IDI | CTRL_EDI | CTRL_BUS);
  647.    write1_io(0,IO_FIFO_WRITE); /* zero counter, assume write */
  648. /* Reading is easy. Just issue the command and return - we'll
  649.  * get an interrupt later when we have actual data to worry about.
  650.  */
  651.    if (data_in_dir) {
  652.       write1_io(0,IO_FIFO_READ);
  653.       if ((hostdata->level2 >= L2_DATA) ||
  654.           (hostdata->level2 == L2_BASIC && cmd->SCp.phase == 0)) {
  655.          write_3393(hostdata,WD_COMMAND_PHASE,0x45);
  656.          write_3393_cmd(hostdata,WD_CMD_SEL_ATN_XFER);
  657.          hostdata->state = S_RUNNING_LEVEL2;
  658.          }
  659.       else
  660.          write_3393_cmd(hostdata,WD_CMD_TRANS_INFO);
  661.       hostdata->fifo = FI_FIFO_READING;
  662.       cmd->SCp.have_data_in = 0;
  663.       return;
  664.       }
  665. /* Writing is more involved - we'll start the WD chip and write as
  666.  * much data to the fifo as we can right now. Later interrupts will
  667.  * write any bytes that don't make it at this stage.
  668.  */
  669.       if ((hostdata->level2 >= L2_DATA) ||
  670.           (hostdata->level2 == L2_BASIC && cmd->SCp.phase == 0)) {
  671.       write_3393(hostdata,WD_COMMAND_PHASE,0x45);
  672.       write_3393_cmd(hostdata,WD_CMD_SEL_ATN_XFER);
  673.       hostdata->state = S_RUNNING_LEVEL2;
  674.       }
  675.    else
  676.       write_3393_cmd(hostdata,WD_CMD_TRANS_INFO);
  677.    hostdata->fifo = FI_FIFO_WRITING;
  678.    sp = (unsigned short *)cmd->SCp.ptr;
  679.    if ((i = cmd->SCp.this_residual) > IN2000_FIFO_SIZE)
  680.       i = IN2000_FIFO_SIZE;
  681.    cmd->SCp.have_data_in = i;
  682.    i >>= 1;    /* Gulp. We assume this_residual is modulo 2 */
  683.    f = hostdata->io_base + IO_FIFO;
  684. #ifdef FAST_WRITE_IO
  685.    FAST_WRITE2_IO();
  686. #else
  687.    while (i--)
  688.       write2_io(*sp++,IO_FIFO);
  689. #endif
  690. }
  691. /* We need to use spin_lock_irqsave() & spin_unlock_irqrestore() in this
  692.  * function in order to work in an SMP environment. (I'd be surprised
  693.  * if the driver is ever used by anyone on a real multi-CPU motherboard,
  694.  * but it _does_ need to be able to compile and run in an SMP kernel.)
  695.  */
  696. static void in2000_intr (int irqnum, void * dev_id, struct pt_regs *ptregs)
  697. {
  698. struct Scsi_Host *instance;
  699. struct IN2000_hostdata *hostdata;
  700. Scsi_Cmnd *patch, *cmd;
  701. uchar asr, sr, phs, id, lun, *ucp, msg;
  702. int i,j;
  703. unsigned long length;
  704. unsigned short *sp;
  705. unsigned short f;
  706. unsigned long flags;
  707.    for (instance = instance_list; instance; instance = instance->next) {
  708.       if (instance->irq == irqnum)
  709.          break;
  710.       }
  711.    if (!instance) {
  712.       printk("*** Hmm... interrupts are screwed up! ***n");
  713.       return;
  714.       }
  715.    hostdata = (struct IN2000_hostdata *)instance->hostdata;
  716. /* Get the spin_lock and disable further ints, for SMP */
  717.    CLISPIN_LOCK(flags);
  718. #ifdef PROC_STATISTICS
  719.    hostdata->int_cnt++;
  720. #endif
  721. /* The IN2000 card has 2 interrupt sources OR'ed onto its IRQ line - the
  722.  * WD3393 chip and the 2k fifo (which is actually a dual-port RAM combined
  723.  * with a big logic array, so it's a little different than what you might
  724.  * expect). As far as I know, there's no reason that BOTH can't be active
  725.  * at the same time, but there's a problem: while we can read the 3393
  726.  * to tell if _it_ wants an interrupt, I don't know of a way to ask the
  727.  * fifo the same question. The best we can do is check the 3393 and if
  728.  * it _isn't_ the source of the interrupt, then we can be pretty sure
  729.  * that the fifo is the culprit.
  730.  *  UPDATE: I have it on good authority (Bill Earnest) that bit 0 of the
  731.  *          IO_FIFO_COUNT register mirrors the fifo interrupt state. I
  732.  *          assume that bit clear means interrupt active. As it turns
  733.  *          out, the driver really doesn't need to check for this after
  734.  *          all, so my remarks above about a 'problem' can safely be
  735.  *          ignored. The way the logic is set up, there's no advantage
  736.  *          (that I can see) to worrying about it.
  737.  *
  738.  * It seems that the fifo interrupt signal is negated when we extract
  739.  * bytes during read or write bytes during write.
  740.  *  - fifo will interrupt when data is moving from it to the 3393, and
  741.  *    there are 31 (or less?) bytes left to go. This is sort of short-
  742.  *    sighted: what if you don't WANT to do more? In any case, our
  743.  *    response is to push more into the fifo - either actual data or
  744.  *    dummy bytes if need be. Note that we apparently have to write at
  745.  *    least 32 additional bytes to the fifo after an interrupt in order
  746.  *    to get it to release the ones it was holding on to - writing fewer
  747.  *    than 32 will result in another fifo int.
  748.  *  UPDATE: Again, info from Bill Earnest makes this more understandable:
  749.  *          32 bytes = two counts of the fifo counter register. He tells
  750.  *          me that the fifo interrupt is a non-latching signal derived
  751.  *          from a straightforward boolean interpretation of the 7
  752.  *          highest bits of the fifo counter and the fifo-read/fifo-write
  753.  *          state. Who'd a thought?
  754.  */
  755.    write1_io(0, IO_LED_ON);
  756.    asr = READ_AUX_STAT();
  757.    if (!(asr & ASR_INT)) {    /* no WD33c93 interrupt? */
  758. /* Ok. This is definitely a FIFO-only interrupt.
  759.  *
  760.  * If FI_FIFO_READING is set, there are up to 2048 bytes waiting to be read,
  761.  * maybe more to come from the SCSI bus. Read as many as we can out of the
  762.  * fifo and into memory at the location of SCp.ptr[SCp.have_data_in], and
  763.  * update have_data_in afterwards.
  764.  *
  765.  * If we have FI_FIFO_WRITING, the FIFO has almost run out of bytes to move
  766.  * into the WD3393 chip (I think the interrupt happens when there are 31
  767.  * bytes left, but it may be fewer...). The 3393 is still waiting, so we
  768.  * shove some more into the fifo, which gets things moving again. If the
  769.  * original SCSI command specified more than 2048 bytes, there may still
  770.  * be some of that data left: fine - use it (from SCp.ptr[SCp.have_data_in]).
  771.  * Don't forget to update have_data_in. If we've already written out the
  772.  * entire buffer, feed 32 dummy bytes to the fifo - they're needed to
  773.  * push out the remaining real data.
  774.  *    (Big thanks to Bill Earnest for getting me out of the mud in here.)
  775.  */
  776.       cmd = (Scsi_Cmnd *)hostdata->connected;   /* assume we're connected */
  777. CHECK_NULL(cmd,"fifo_int")
  778.       if (hostdata->fifo == FI_FIFO_READING) {
  779. DB(DB_FIFO,printk("{R:%02x} ",read1_io(IO_FIFO_COUNT)))
  780.          sp = (unsigned short *)(cmd->SCp.ptr + cmd->SCp.have_data_in);
  781.          i = read1_io(IO_FIFO_COUNT) & 0xfe;
  782.          i <<= 2;    /* # of words waiting in the fifo */
  783.          f = hostdata->io_base + IO_FIFO;
  784. #ifdef FAST_READ_IO
  785.          FAST_READ2_IO();
  786. #else
  787.          while (i--)
  788.             *sp++ = read2_io(IO_FIFO);
  789. #endif
  790.          i = sp - (unsigned short *)(cmd->SCp.ptr + cmd->SCp.have_data_in);
  791.          i <<= 1;
  792.          cmd->SCp.have_data_in += i;
  793.          }
  794.       else if (hostdata->fifo == FI_FIFO_WRITING) {
  795. DB(DB_FIFO,printk("{W:%02x} ",read1_io(IO_FIFO_COUNT)))
  796. /* If all bytes have been written to the fifo, flush out the stragglers.
  797.  * Note that while writing 16 dummy words seems arbitrary, we don't
  798.  * have another choice that I can see. What we really want is to read
  799.  * the 3393 transfer count register (that would tell us how many bytes
  800.  * needed flushing), but the TRANSFER_INFO command hasn't completed
  801.  * yet (not enough bytes!) and that register won't be accessible. So,
  802.  * we use 16 words - a number obtained through trial and error.
  803.  *  UPDATE: Bill says this is exactly what Always does, so there.
  804.  *          More thanks due him for help in this section.
  805.  */
  806.          if (cmd->SCp.this_residual == cmd->SCp.have_data_in) {
  807.             i = 16;
  808.             while (i--)          /* write 32 dummy bytes */
  809.                write2_io(0,IO_FIFO);
  810.             }
  811. /* If there are still bytes left in the SCSI buffer, write as many as we
  812.  * can out to the fifo.
  813.  */
  814.          else {
  815.             sp = (unsigned short *)(cmd->SCp.ptr + cmd->SCp.have_data_in);
  816.             i = cmd->SCp.this_residual - cmd->SCp.have_data_in;   /* bytes yet to go */
  817.             j = read1_io(IO_FIFO_COUNT) & 0xfe;
  818.             j <<= 2;    /* how many words the fifo has room for */
  819.             if ((j << 1) > i)
  820.                j = (i >> 1);
  821.             while (j--)
  822.                write2_io(*sp++,IO_FIFO);
  823.             i = sp - (unsigned short *)(cmd->SCp.ptr + cmd->SCp.have_data_in);
  824.             i <<= 1;
  825.             cmd->SCp.have_data_in += i;
  826.             }
  827.          }
  828.       else {
  829.             printk("*** Spurious FIFO interrupt ***");
  830.             }
  831.       write1_io(0, IO_LED_OFF);
  832. /* release the SMP spin_lock and restore irq state */
  833.       CLISPIN_UNLOCK(flags);
  834.       return;
  835.       }
  836. /* This interrupt was triggered by the WD33c93 chip. The fifo interrupt
  837.  * may also be asserted, but we don't bother to check it: we get more
  838.  * detailed info from FIFO_READING and FIFO_WRITING (see below).
  839.  */
  840.    cmd = (Scsi_Cmnd *)hostdata->connected;   /* assume we're connected */
  841.    sr = read_3393(hostdata,WD_SCSI_STATUS);  /* clear the interrupt */
  842.    phs = read_3393(hostdata,WD_COMMAND_PHASE);
  843.    if (!cmd && (sr != CSR_RESEL_AM && sr != CSR_TIMEOUT && sr != CSR_SELECT)) {
  844.       printk("nNR:wd-intr-1n");
  845.       write1_io(0, IO_LED_OFF);
  846. /* release the SMP spin_lock and restore irq state */
  847.       CLISPIN_UNLOCK(flags);
  848.       return;
  849.       }
  850. DB(DB_INTR,printk("{%02x:%02x-",asr,sr))
  851. /* After starting a FIFO-based transfer, the next _WD3393_ interrupt is
  852.  * guaranteed to be in response to the completion of the transfer.
  853.  * If we were reading, there's probably data in the fifo that needs
  854.  * to be copied into RAM - do that here. Also, we have to update
  855.  * 'this_residual' and 'ptr' based on the contents of the
  856.  * TRANSFER_COUNT register, in case the device decided to do an
  857.  * intermediate disconnect (a device may do this if it has to
  858.  * do a seek,  or just to be nice and let other devices have
  859.  * some bus time during long transfers).
  860.  * After doing whatever is necessary with the fifo, we go on and
  861.  * service the WD3393 interrupt normally.
  862.  */
  863.    if (hostdata->fifo == FI_FIFO_READING) {
  864. /* buffer index = start-of-buffer + #-of-bytes-already-read */
  865.       sp = (unsigned short *)(cmd->SCp.ptr + cmd->SCp.have_data_in);
  866. /* bytes remaining in fifo = (total-wanted - #-not-got) - #-already-read */
  867.       i = (cmd->SCp.this_residual - read_3393_count(hostdata)) - cmd->SCp.have_data_in;
  868.       i >>= 1;    /* Gulp. We assume this will always be modulo 2 */
  869.       f = hostdata->io_base + IO_FIFO;
  870. #ifdef FAST_READ_IO
  871.       FAST_READ2_IO();
  872. #else
  873.       while (i--)
  874.          *sp++ = read2_io(IO_FIFO);
  875. #endif
  876.       hostdata->fifo = FI_FIFO_UNUSED;
  877.       length = cmd->SCp.this_residual;
  878.       cmd->SCp.this_residual = read_3393_count(hostdata);
  879.       cmd->SCp.ptr += (length - cmd->SCp.this_residual);
  880. DB(DB_TRANSFER,printk("(%p,%d)",cmd->SCp.ptr,cmd->SCp.this_residual))
  881.       }
  882.    else if (hostdata->fifo == FI_FIFO_WRITING) {
  883.       hostdata->fifo = FI_FIFO_UNUSED;
  884.       length = cmd->SCp.this_residual;
  885.       cmd->SCp.this_residual = read_3393_count(hostdata);
  886.       cmd->SCp.ptr += (length - cmd->SCp.this_residual);
  887. DB(DB_TRANSFER,printk("(%p,%d)",cmd->SCp.ptr,cmd->SCp.this_residual))
  888.       }
  889. /* Respond to the specific WD3393 interrupt - there are quite a few! */
  890.    switch (sr) {
  891.       case CSR_TIMEOUT:
  892. DB(DB_INTR,printk("TIMEOUT"))
  893.          if (hostdata->state == S_RUNNING_LEVEL2)
  894.             hostdata->connected = NULL;
  895.          else {
  896.             cmd = (Scsi_Cmnd *)hostdata->selecting;   /* get a valid cmd */
  897. CHECK_NULL(cmd,"csr_timeout")
  898.             hostdata->selecting = NULL;
  899.             }
  900.          cmd->result = DID_NO_CONNECT << 16;
  901.          hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  902.          hostdata->state = S_UNCONNECTED;
  903.          cmd->scsi_done(cmd);
  904. /* We are not connected to a target - check to see if there
  905.  * are commands waiting to be executed.
  906.  */
  907.          in2000_execute(instance);
  908.          break;
  909. /* Note: this interrupt should not occur in a LEVEL2 command */
  910.       case CSR_SELECT:
  911. DB(DB_INTR,printk("SELECT"))
  912.          hostdata->connected = cmd = (Scsi_Cmnd *)hostdata->selecting;
  913. CHECK_NULL(cmd,"csr_select")
  914.          hostdata->selecting = NULL;
  915.       /* construct an IDENTIFY message with correct disconnect bit */
  916.          hostdata->outgoing_msg[0] = (0x80 | 0x00 | cmd->lun);
  917.          if (cmd->SCp.phase)
  918.             hostdata->outgoing_msg[0] |= 0x40;
  919.          if (hostdata->sync_stat[cmd->target] == SS_FIRST) {
  920. #ifdef SYNC_DEBUG
  921. printk(" sending SDTR ");
  922. #endif
  923.             hostdata->sync_stat[cmd->target] = SS_WAITING;
  924.       /* tack on a 2nd message to ask about synchronous transfers */
  925.             hostdata->outgoing_msg[1] = EXTENDED_MESSAGE;
  926.             hostdata->outgoing_msg[2] = 3;
  927.             hostdata->outgoing_msg[3] = EXTENDED_SDTR;
  928.             hostdata->outgoing_msg[4] = OPTIMUM_SX_PER/4;
  929.             hostdata->outgoing_msg[5] = OPTIMUM_SX_OFF;
  930.             hostdata->outgoing_len = 6;
  931.             }
  932.          else
  933.             hostdata->outgoing_len = 1;
  934.          hostdata->state = S_CONNECTED;
  935.          break;
  936.       case CSR_XFER_DONE|PHS_DATA_IN:
  937.       case CSR_UNEXP    |PHS_DATA_IN:
  938.       case CSR_SRV_REQ  |PHS_DATA_IN:
  939. DB(DB_INTR,printk("IN-%d.%d",cmd->SCp.this_residual,cmd->SCp.buffers_residual))
  940.          transfer_bytes(cmd, DATA_IN_DIR);
  941.          if (hostdata->state != S_RUNNING_LEVEL2)
  942.             hostdata->state = S_CONNECTED;
  943.          break;
  944.       case CSR_XFER_DONE|PHS_DATA_OUT:
  945.       case CSR_UNEXP    |PHS_DATA_OUT:
  946.       case CSR_SRV_REQ  |PHS_DATA_OUT:
  947. DB(DB_INTR,printk("OUT-%d.%d",cmd->SCp.this_residual,cmd->SCp.buffers_residual))
  948.          transfer_bytes(cmd, DATA_OUT_DIR);
  949.          if (hostdata->state != S_RUNNING_LEVEL2)
  950.             hostdata->state = S_CONNECTED;
  951.          break;
  952. /* Note: this interrupt should not occur in a LEVEL2 command */
  953.       case CSR_XFER_DONE|PHS_COMMAND:
  954.       case CSR_UNEXP    |PHS_COMMAND:
  955.       case CSR_SRV_REQ  |PHS_COMMAND:
  956. DB(DB_INTR,printk("CMND-%02x,%ld",cmd->cmnd[0],cmd->pid))
  957.          transfer_pio(cmd->cmnd, cmd->cmd_len, DATA_OUT_DIR, hostdata);
  958.          hostdata->state = S_CONNECTED;
  959.          break;
  960.       case CSR_XFER_DONE|PHS_STATUS:
  961.       case CSR_UNEXP    |PHS_STATUS:
  962.       case CSR_SRV_REQ  |PHS_STATUS:
  963. DB(DB_INTR,printk("STATUS="))
  964.          cmd->SCp.Status = read_1_byte(hostdata);
  965. DB(DB_INTR,printk("%02x",cmd->SCp.Status))
  966.          if (hostdata->level2 >= L2_BASIC) {
  967.             sr = read_3393(hostdata,WD_SCSI_STATUS);  /* clear interrupt */
  968.             hostdata->state = S_RUNNING_LEVEL2;
  969.             write_3393(hostdata,WD_COMMAND_PHASE, 0x50);
  970.             write_3393_cmd(hostdata,WD_CMD_SEL_ATN_XFER);
  971.             }
  972.          else {
  973.             hostdata->state = S_CONNECTED;
  974.             }
  975.          break;
  976.       case CSR_XFER_DONE|PHS_MESS_IN:
  977.       case CSR_UNEXP    |PHS_MESS_IN:
  978.       case CSR_SRV_REQ  |PHS_MESS_IN:
  979. DB(DB_INTR,printk("MSG_IN="))
  980.          msg = read_1_byte(hostdata);
  981.          sr = read_3393(hostdata,WD_SCSI_STATUS);  /* clear interrupt */
  982.          hostdata->incoming_msg[hostdata->incoming_ptr] = msg;
  983.          if (hostdata->incoming_msg[0] == EXTENDED_MESSAGE)
  984.             msg = EXTENDED_MESSAGE;
  985.          else
  986.             hostdata->incoming_ptr = 0;
  987.          cmd->SCp.Message = msg;
  988.          switch (msg) {
  989.             case COMMAND_COMPLETE:
  990. DB(DB_INTR,printk("CCMP-%ld",cmd->pid))
  991.                write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  992.                hostdata->state = S_PRE_CMP_DISC;
  993.                break;
  994.             case SAVE_POINTERS:
  995. DB(DB_INTR,printk("SDP"))
  996.                write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  997.                hostdata->state = S_CONNECTED;
  998.                break;
  999.             case RESTORE_POINTERS:
  1000. DB(DB_INTR,printk("RDP"))
  1001.                if (hostdata->level2 >= L2_BASIC) {
  1002.                   write_3393(hostdata,WD_COMMAND_PHASE, 0x45);
  1003.                   write_3393_cmd(hostdata,WD_CMD_SEL_ATN_XFER);
  1004.                   hostdata->state = S_RUNNING_LEVEL2;
  1005.                   }
  1006.                else {
  1007.                   write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1008.                   hostdata->state = S_CONNECTED;
  1009.                   }
  1010.                break;
  1011.             case DISCONNECT:
  1012. DB(DB_INTR,printk("DIS"))
  1013.                cmd->device->disconnect = 1;
  1014.                write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1015.                hostdata->state = S_PRE_TMP_DISC;
  1016.                break;
  1017.             case MESSAGE_REJECT:
  1018. DB(DB_INTR,printk("REJ"))
  1019. #ifdef SYNC_DEBUG
  1020. printk("-REJ-");
  1021. #endif
  1022.                if (hostdata->sync_stat[cmd->target] == SS_WAITING)
  1023.                   hostdata->sync_stat[cmd->target] = SS_SET;
  1024.                write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1025.                hostdata->state = S_CONNECTED;
  1026.                break;
  1027.             case EXTENDED_MESSAGE:
  1028. DB(DB_INTR,printk("EXT"))
  1029.                ucp = hostdata->incoming_msg;
  1030. #ifdef SYNC_DEBUG
  1031. printk("%02x",ucp[hostdata->incoming_ptr]);
  1032. #endif
  1033.          /* Is this the last byte of the extended message? */
  1034.                if ((hostdata->incoming_ptr >= 2) &&
  1035.                    (hostdata->incoming_ptr == (ucp[1] + 1))) {
  1036.                   switch (ucp[2]) {   /* what's the EXTENDED code? */
  1037.                      case EXTENDED_SDTR:
  1038.                         id = calc_sync_xfer(ucp[3],ucp[4]);
  1039.                         if (hostdata->sync_stat[cmd->target] != SS_WAITING) {
  1040. /* A device has sent an unsolicited SDTR message; rather than go
  1041.  * through the effort of decoding it and then figuring out what
  1042.  * our reply should be, we're just gonna say that we have a
  1043.  * synchronous fifo depth of 0. This will result in asynchronous
  1044.  * transfers - not ideal but so much easier.
  1045.  * Actually, this is OK because it assures us that if we don't
  1046.  * specifically ask for sync transfers, we won't do any.
  1047.  */
  1048.                            write_3393_cmd(hostdata,WD_CMD_ASSERT_ATN); /* want MESS_OUT */
  1049.                            hostdata->outgoing_msg[0] = EXTENDED_MESSAGE;
  1050.                            hostdata->outgoing_msg[1] = 3;
  1051.                            hostdata->outgoing_msg[2] = EXTENDED_SDTR;
  1052.                            hostdata->outgoing_msg[3] = hostdata->default_sx_per/4;
  1053.                            hostdata->outgoing_msg[4] = 0;
  1054.                            hostdata->outgoing_len = 5;
  1055.                            hostdata->sync_xfer[cmd->target] =
  1056.                                        calc_sync_xfer(hostdata->default_sx_per/4,0);
  1057.                            }
  1058.                         else {
  1059.                            hostdata->sync_xfer[cmd->target] = id;
  1060.                            }
  1061. #ifdef SYNC_DEBUG
  1062. printk("sync_xfer=%02x",hostdata->sync_xfer[cmd->target]);
  1063. #endif
  1064.                         hostdata->sync_stat[cmd->target] = SS_SET;
  1065.                         write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1066.                         hostdata->state = S_CONNECTED;
  1067.                         break;
  1068.                      case EXTENDED_WDTR:
  1069.                         write_3393_cmd(hostdata,WD_CMD_ASSERT_ATN); /* want MESS_OUT */
  1070.                         printk("sending WDTR ");
  1071.                         hostdata->outgoing_msg[0] = EXTENDED_MESSAGE;
  1072.                         hostdata->outgoing_msg[1] = 2;
  1073.                         hostdata->outgoing_msg[2] = EXTENDED_WDTR;
  1074.                         hostdata->outgoing_msg[3] = 0;   /* 8 bit transfer width */
  1075.                         hostdata->outgoing_len = 4;
  1076.                         write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1077.                         hostdata->state = S_CONNECTED;
  1078.                         break;
  1079.                      default:
  1080.                         write_3393_cmd(hostdata,WD_CMD_ASSERT_ATN); /* want MESS_OUT */
  1081.                         printk("Rejecting Unknown Extended Message(%02x). ",ucp[2]);
  1082.                         hostdata->outgoing_msg[0] = MESSAGE_REJECT;
  1083.                         hostdata->outgoing_len = 1;
  1084.                         write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1085.                         hostdata->state = S_CONNECTED;
  1086.                         break;
  1087.                      }
  1088.                   hostdata->incoming_ptr = 0;
  1089.                   }
  1090.          /* We need to read more MESS_IN bytes for the extended message */
  1091.                else {
  1092.                   hostdata->incoming_ptr++;
  1093.                   write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1094.                   hostdata->state = S_CONNECTED;
  1095.                   }
  1096.                break;
  1097.             default:
  1098.                printk("Rejecting Unknown Message(%02x) ",msg);
  1099.                write_3393_cmd(hostdata,WD_CMD_ASSERT_ATN); /* want MESS_OUT */
  1100.                hostdata->outgoing_msg[0] = MESSAGE_REJECT;
  1101.                hostdata->outgoing_len = 1;
  1102.                write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1103.                hostdata->state = S_CONNECTED;
  1104.             }
  1105.          break;
  1106. /* Note: this interrupt will occur only after a LEVEL2 command */
  1107.       case CSR_SEL_XFER_DONE:
  1108. /* Make sure that reselection is enabled at this point - it may
  1109.  * have been turned off for the command that just completed.
  1110.  */
  1111.          write_3393(hostdata,WD_SOURCE_ID, SRCID_ER);
  1112.          if (phs == 0x60) {
  1113. DB(DB_INTR,printk("SX-DONE-%ld",cmd->pid))
  1114.             cmd->SCp.Message = COMMAND_COMPLETE;
  1115.             lun = read_3393(hostdata,WD_TARGET_LUN);
  1116. DB(DB_INTR,printk(":%d.%d",cmd->SCp.Status,lun))
  1117.             hostdata->connected = NULL;
  1118.             hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  1119.             hostdata->state = S_UNCONNECTED;
  1120.             if (cmd->SCp.Status == ILLEGAL_STATUS_BYTE)
  1121.                cmd->SCp.Status = lun;
  1122.             if (cmd->cmnd[0] == REQUEST_SENSE && cmd->SCp.Status != GOOD)
  1123.                cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
  1124.             else
  1125.                cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
  1126.             cmd->scsi_done(cmd);
  1127. /* We are no longer connected to a target - check to see if
  1128.  * there are commands waiting to be executed.
  1129.  */
  1130.             in2000_execute(instance);
  1131.             }
  1132.          else {
  1133.             printk("%02x:%02x:%02x-%ld: Unknown SEL_XFER_DONE phase!!---",asr,sr,phs,cmd->pid);
  1134.             }
  1135.          break;
  1136. /* Note: this interrupt will occur only after a LEVEL2 command */
  1137.       case CSR_SDP:
  1138. DB(DB_INTR,printk("SDP"))
  1139.             hostdata->state = S_RUNNING_LEVEL2;
  1140.             write_3393(hostdata,WD_COMMAND_PHASE, 0x41);
  1141.             write_3393_cmd(hostdata,WD_CMD_SEL_ATN_XFER);
  1142.          break;
  1143.       case CSR_XFER_DONE|PHS_MESS_OUT:
  1144.       case CSR_UNEXP    |PHS_MESS_OUT:
  1145.       case CSR_SRV_REQ  |PHS_MESS_OUT:
  1146. DB(DB_INTR,printk("MSG_OUT="))
  1147. /* To get here, we've probably requested MESSAGE_OUT and have
  1148.  * already put the correct bytes in outgoing_msg[] and filled
  1149.  * in outgoing_len. We simply send them out to the SCSI bus.
  1150.  * Sometimes we get MESSAGE_OUT phase when we're not expecting
  1151.  * it - like when our SDTR message is rejected by a target. Some
  1152.  * targets send the REJECT before receiving all of the extended
  1153.  * message, and then seem to go back to MESSAGE_OUT for a byte
  1154.  * or two. Not sure why, or if I'm doing something wrong to
  1155.  * cause this to happen. Regardless, it seems that sending
  1156.  * NOP messages in these situations results in no harm and
  1157.  * makes everyone happy.
  1158.  */
  1159.          if (hostdata->outgoing_len == 0) {
  1160.             hostdata->outgoing_len = 1;
  1161.             hostdata->outgoing_msg[0] = NOP;
  1162.             }
  1163.          transfer_pio(hostdata->outgoing_msg, hostdata->outgoing_len,
  1164.                       DATA_OUT_DIR, hostdata);
  1165. DB(DB_INTR,printk("%02x",hostdata->outgoing_msg[0]))
  1166.          hostdata->outgoing_len = 0;
  1167.          hostdata->state = S_CONNECTED;
  1168.          break;
  1169.  
  1170.       case CSR_UNEXP_DISC:
  1171. /* I think I've seen this after a request-sense that was in response
  1172.  * to an error condition, but not sure. We certainly need to do
  1173.  * something when we get this interrupt - the question is 'what?'.
  1174.  * Let's think positively, and assume some command has finished
  1175.  * in a legal manner (like a command that provokes a request-sense),
  1176.  * so we treat it as a normal command-complete-disconnect.
  1177.  */
  1178. /* Make sure that reselection is enabled at this point - it may
  1179.  * have been turned off for the command that just completed.
  1180.  */
  1181.          write_3393(hostdata,WD_SOURCE_ID, SRCID_ER);
  1182.          if (cmd == NULL) {
  1183.             printk(" - Already disconnected! ");
  1184.             hostdata->state = S_UNCONNECTED;
  1185. /* release the SMP spin_lock and restore irq state */
  1186.             CLISPIN_UNLOCK(flags);
  1187.             return;
  1188.             }
  1189. DB(DB_INTR,printk("UNEXP_DISC-%ld",cmd->pid))
  1190.          hostdata->connected = NULL;
  1191.          hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  1192.          hostdata->state = S_UNCONNECTED;
  1193.          if (cmd->cmnd[0] == REQUEST_SENSE && cmd->SCp.Status != GOOD)
  1194.             cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
  1195.          else
  1196.             cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
  1197.          cmd->scsi_done(cmd);
  1198. /* We are no longer connected to a target - check to see if
  1199.  * there are commands waiting to be executed.
  1200.  */
  1201.          in2000_execute(instance);
  1202.          break;
  1203.       case CSR_DISC:
  1204. /* Make sure that reselection is enabled at this point - it may
  1205.  * have been turned off for the command that just completed.
  1206.  */
  1207.          write_3393(hostdata,WD_SOURCE_ID, SRCID_ER);
  1208. DB(DB_INTR,printk("DISC-%ld",cmd->pid))
  1209.          if (cmd == NULL) {
  1210.             printk(" - Already disconnected! ");
  1211.             hostdata->state = S_UNCONNECTED;
  1212.             }
  1213.          switch (hostdata->state) {
  1214.             case S_PRE_CMP_DISC:
  1215.                hostdata->connected = NULL;
  1216.                hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  1217.                hostdata->state = S_UNCONNECTED;
  1218. DB(DB_INTR,printk(":%d",cmd->SCp.Status))
  1219.                if (cmd->cmnd[0] == REQUEST_SENSE && cmd->SCp.Status != GOOD)
  1220.                   cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
  1221.                else
  1222.                   cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
  1223.                cmd->scsi_done(cmd);
  1224.                break;
  1225.             case S_PRE_TMP_DISC:
  1226.             case S_RUNNING_LEVEL2:
  1227.                cmd->host_scribble = (uchar *)hostdata->disconnected_Q;
  1228.                hostdata->disconnected_Q = cmd;
  1229.                hostdata->connected = NULL;
  1230.                hostdata->state = S_UNCONNECTED;
  1231. #ifdef PROC_STATISTICS
  1232.                hostdata->disc_done_cnt[cmd->target]++;
  1233. #endif
  1234.                break;
  1235.             default:
  1236.                printk("*** Unexpected DISCONNECT interrupt! ***");
  1237.                hostdata->state = S_UNCONNECTED;
  1238.             }
  1239. /* We are no longer connected to a target - check to see if
  1240.  * there are commands waiting to be executed.
  1241.  */
  1242.          in2000_execute(instance);
  1243.          break;
  1244.       case CSR_RESEL_AM:
  1245. DB(DB_INTR,printk("RESEL"))
  1246.    /* First we have to make sure this reselection didn't */
  1247.    /* happen during Arbitration/Selection of some other device. */
  1248.    /* If yes, put losing command back on top of input_Q. */
  1249.          if (hostdata->level2 <= L2_NONE) {
  1250.             if (hostdata->selecting) {
  1251.                cmd = (Scsi_Cmnd *)hostdata->selecting;
  1252.                hostdata->selecting = NULL;
  1253.                hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  1254.                cmd->host_scribble = (uchar *)hostdata->input_Q;
  1255.                hostdata->input_Q = cmd;
  1256.                }
  1257.             }
  1258.          else {
  1259.             if (cmd) {
  1260.                if (phs == 0x00) {
  1261.                   hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  1262.                   cmd->host_scribble = (uchar *)hostdata->input_Q;
  1263.                   hostdata->input_Q = cmd;
  1264.                   }
  1265.                else {
  1266.                   printk("---%02x:%02x:%02x-TROUBLE: Intrusive ReSelect!---",asr,sr,phs);
  1267.                   while (1)
  1268.                      printk("r");
  1269.                   }
  1270.                }
  1271.             }
  1272.    /* OK - find out which device reselected us. */
  1273.          id = read_3393(hostdata,WD_SOURCE_ID);
  1274.          id &= SRCID_MASK;
  1275.    /* and extract the lun from the ID message. (Note that we don't
  1276.     * bother to check for a valid message here - I guess this is
  1277.     * not the right way to go, but....)
  1278.     */
  1279.          lun = read_3393(hostdata,WD_DATA);
  1280.          if (hostdata->level2 < L2_RESELECT)
  1281.             write_3393_cmd(hostdata,WD_CMD_NEGATE_ACK);
  1282.          lun &= 7;
  1283.    /* Now we look for the command that's reconnecting. */
  1284.          cmd = (Scsi_Cmnd *)hostdata->disconnected_Q;
  1285.          patch = NULL;
  1286.          while (cmd) {
  1287.             if (id == cmd->target && lun == cmd->lun)
  1288.                break;
  1289.             patch = cmd;
  1290.             cmd = (Scsi_Cmnd *)cmd->host_scribble;
  1291.             }
  1292.    /* Hmm. Couldn't find a valid command.... What to do? */
  1293.          if (!cmd) {
  1294.             printk("---TROUBLE: target %d.%d not in disconnect queue---",id,lun);
  1295.             break;
  1296.             }
  1297.    /* Ok, found the command - now start it up again. */
  1298.          if (patch)
  1299.             patch->host_scribble = cmd->host_scribble;
  1300.          else
  1301.             hostdata->disconnected_Q = (Scsi_Cmnd *)cmd->host_scribble;
  1302.          hostdata->connected = cmd;
  1303.    /* We don't need to worry about 'initialize_SCp()' or 'hostdata->busy[]'
  1304.     * because these things are preserved over a disconnect.
  1305.     * But we DO need to fix the DPD bit so it's correct for this command.
  1306.     */
  1307.          if (is_dir_out(cmd))
  1308.             write_3393(hostdata,WD_DESTINATION_ID,cmd->target);
  1309.          else
  1310.             write_3393(hostdata,WD_DESTINATION_ID,cmd->target | DSTID_DPD);
  1311.          if (hostdata->level2 >= L2_RESELECT) {
  1312.             write_3393_count(hostdata,0); /* we want a DATA_PHASE interrupt */
  1313.             write_3393(hostdata,WD_COMMAND_PHASE, 0x45);
  1314.             write_3393_cmd(hostdata,WD_CMD_SEL_ATN_XFER);
  1315.             hostdata->state = S_RUNNING_LEVEL2;
  1316.             }
  1317.          else
  1318.             hostdata->state = S_CONNECTED;
  1319. DB(DB_INTR,printk("-%ld",cmd->pid))
  1320.          break;
  1321.       default:
  1322.          printk("--UNKNOWN INTERRUPT:%02x:%02x:%02x--",asr,sr,phs);
  1323.       }
  1324.    write1_io(0, IO_LED_OFF);
  1325. DB(DB_INTR,printk("} "))
  1326. /* release the SMP spin_lock and restore irq state */
  1327.    CLISPIN_UNLOCK(flags);
  1328. }
  1329. #define RESET_CARD         0
  1330. #define RESET_CARD_AND_BUS 1
  1331. #define B_FLAG 0x80
  1332. static int reset_hardware(struct Scsi_Host *instance, int type)
  1333. {
  1334. struct IN2000_hostdata *hostdata;
  1335. int qt,x;
  1336. unsigned long flags;
  1337.    hostdata = (struct IN2000_hostdata *)instance->hostdata;
  1338.    write1_io(0, IO_LED_ON);
  1339.    if (type == RESET_CARD_AND_BUS) {
  1340.       write1_io(0,IO_CARD_RESET);
  1341.       x = read1_io(IO_HARDWARE);
  1342.       }
  1343.    x = read_3393(hostdata,WD_SCSI_STATUS);   /* clear any WD intrpt */
  1344.    write_3393(hostdata,WD_OWN_ID, instance->this_id |
  1345.                            OWNID_EAF | OWNID_RAF | OWNID_FS_8);
  1346.    write_3393(hostdata,WD_CONTROL, CTRL_IDI | CTRL_EDI | CTRL_POLLED);
  1347.    write_3393(hostdata,WD_SYNCHRONOUS_TRANSFER,
  1348.               calc_sync_xfer(hostdata->default_sx_per/4,DEFAULT_SX_OFF));
  1349.    save_flags(flags);
  1350.    cli();
  1351.    write1_io(0,IO_FIFO_WRITE);            /* clear fifo counter */
  1352.    write1_io(0,IO_FIFO_READ);             /* start fifo out in read mode */
  1353.    write_3393(hostdata,WD_COMMAND, WD_CMD_RESET);
  1354.    while (!(READ_AUX_STAT() & ASR_INT))
  1355.       ;                                   /* wait for RESET to complete */
  1356.    x = read_3393(hostdata,WD_SCSI_STATUS);   /* clear interrupt */
  1357.    restore_flags(flags);
  1358.    write_3393(hostdata,WD_QUEUE_TAG,0xa5);   /* any random number */
  1359.    qt = read_3393(hostdata,WD_QUEUE_TAG);
  1360.    if (qt == 0xa5) {
  1361.       x |= B_FLAG;
  1362.       write_3393(hostdata,WD_QUEUE_TAG,0);
  1363.       }
  1364.    write_3393(hostdata,WD_TIMEOUT_PERIOD, TIMEOUT_PERIOD_VALUE);
  1365.    write_3393(hostdata,WD_CONTROL, CTRL_IDI | CTRL_EDI | CTRL_POLLED);
  1366.    write1_io(0, IO_LED_OFF);
  1367.    return x;
  1368. }
  1369. int in2000_reset(Scsi_Cmnd *cmd, unsigned int reset_flags)
  1370. {
  1371. unsigned long flags;
  1372. struct Scsi_Host *instance;
  1373. struct IN2000_hostdata *hostdata;
  1374. int x;
  1375.    instance = cmd->host;
  1376.    hostdata = (struct IN2000_hostdata *)instance->hostdata;
  1377.    printk("scsi%d: Reset. ", instance->host_no);
  1378.    save_flags(flags);
  1379.    cli();
  1380.    /* do scsi-reset here */
  1381.    reset_hardware(instance, RESET_CARD_AND_BUS);
  1382.    for (x = 0; x < 8; x++) {
  1383.       hostdata->busy[x] = 0;
  1384.       hostdata->sync_xfer[x] = calc_sync_xfer(DEFAULT_SX_PER/4,DEFAULT_SX_OFF);
  1385.       hostdata->sync_stat[x] = SS_UNSET;  /* using default sync values */
  1386.       }
  1387.    hostdata->input_Q = NULL;
  1388.    hostdata->selecting = NULL;
  1389.    hostdata->connected = NULL;
  1390.    hostdata->disconnected_Q = NULL;
  1391.    hostdata->state = S_UNCONNECTED;
  1392.    hostdata->fifo = FI_FIFO_UNUSED;
  1393.    hostdata->incoming_ptr = 0;
  1394.    hostdata->outgoing_len = 0;
  1395.    cmd->result = DID_RESET << 16;
  1396.    restore_flags(flags);
  1397.    return 0;
  1398. }
  1399. int in2000_abort (Scsi_Cmnd *cmd)
  1400. {
  1401. struct Scsi_Host *instance;
  1402. struct IN2000_hostdata *hostdata;
  1403. Scsi_Cmnd *tmp, *prev;
  1404. unsigned long flags;
  1405. uchar sr, asr;
  1406. unsigned long timeout;
  1407.    save_flags (flags);
  1408.    cli();
  1409.    instance = cmd->host;
  1410.    hostdata = (struct IN2000_hostdata *)instance->hostdata;
  1411.    printk ("scsi%d: Abort-", instance->host_no);
  1412.    printk("(asr=%02x,count=%ld,resid=%d,buf_resid=%d,have_data=%d,FC=%02x)- ",
  1413.             READ_AUX_STAT(),read_3393_count(hostdata),cmd->SCp.this_residual,cmd->SCp.buffers_residual,
  1414.             cmd->SCp.have_data_in,read1_io(IO_FIFO_COUNT));
  1415. /*
  1416.  * Case 1 : If the command hasn't been issued yet, we simply remove it
  1417.  *     from the inout_Q.
  1418.  */
  1419.    tmp = (Scsi_Cmnd *)hostdata->input_Q;
  1420.    prev = 0;
  1421.    while (tmp) {
  1422.       if (tmp == cmd) {
  1423.          if (prev)
  1424.             prev->host_scribble = cmd->host_scribble;
  1425.          cmd->host_scribble = NULL;
  1426.          cmd->result = DID_ABORT << 16;
  1427.          printk("scsi%d: Abort - removing command %ld from input_Q. ",
  1428.            instance->host_no, cmd->pid);
  1429.          cmd->scsi_done(cmd);
  1430.          restore_flags(flags);
  1431.          return SCSI_ABORT_SUCCESS;
  1432.          }
  1433.       prev = tmp;
  1434.       tmp = (Scsi_Cmnd *)tmp->host_scribble;
  1435.       }
  1436. /*
  1437.  * Case 2 : If the command is connected, we're going to fail the abort
  1438.  *     and let the high level SCSI driver retry at a later time or
  1439.  *     issue a reset.
  1440.  *
  1441.  *     Timeouts, and therefore aborted commands, will be highly unlikely
  1442.  *     and handling them cleanly in this situation would make the common
  1443.  *     case of noresets less efficient, and would pollute our code.  So,
  1444.  *     we fail.
  1445.  */
  1446.    if (hostdata->connected == cmd) {
  1447.       printk("scsi%d: Aborting connected command %ld - ",
  1448.               instance->host_no, cmd->pid);
  1449.       printk("sending wd33c93 ABORT command - ");
  1450.       write_3393(hostdata, WD_CONTROL, CTRL_IDI | CTRL_EDI | CTRL_POLLED);
  1451.       write_3393_cmd(hostdata, WD_CMD_ABORT);
  1452. /* Now we have to attempt to flush out the FIFO... */
  1453.       printk("flushing fifo - ");
  1454.       timeout = 1000000;
  1455.       do {
  1456.          asr = READ_AUX_STAT();
  1457.          if (asr & ASR_DBR)
  1458.             read_3393(hostdata, WD_DATA);
  1459.          } while (!(asr & ASR_INT) && timeout-- > 0);
  1460.       sr = read_3393(hostdata, WD_SCSI_STATUS);
  1461.       printk("asr=%02x, sr=%02x, %ld bytes un-transferred (timeout=%ld) - ",
  1462.              asr, sr, read_3393_count(hostdata), timeout);
  1463.    /*
  1464.     * Abort command processed.
  1465.     * Still connected.
  1466.     * We must disconnect.
  1467.     */
  1468.       printk("sending wd33c93 DISCONNECT command - ");
  1469.       write_3393_cmd(hostdata, WD_CMD_DISCONNECT);
  1470.       timeout = 1000000;
  1471.       asr = READ_AUX_STAT();
  1472.       while ((asr & ASR_CIP) && timeout-- > 0)
  1473.          asr = READ_AUX_STAT();
  1474.       sr = read_3393(hostdata, WD_SCSI_STATUS);
  1475.       printk("asr=%02x, sr=%02x.",asr,sr);
  1476.       hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  1477.       hostdata->connected = NULL;
  1478.       hostdata->state = S_UNCONNECTED;
  1479.       cmd->result = DID_ABORT << 16;
  1480.       cmd->scsi_done(cmd);
  1481.       in2000_execute (instance);
  1482.       restore_flags(flags);
  1483.       return SCSI_ABORT_SUCCESS;
  1484.       }
  1485. /*
  1486.  * Case 3: If the command is currently disconnected from the bus,
  1487.  * we're not going to expend much effort here: Let's just return
  1488.  * an ABORT_SNOOZE and hope for the best...
  1489.  */
  1490.    for (tmp=(Scsi_Cmnd *)hostdata->disconnected_Q; tmp;
  1491.          tmp=(Scsi_Cmnd *)tmp->host_scribble)
  1492.       if (cmd == tmp) {
  1493.          restore_flags(flags);
  1494.          printk("Sending ABORT_SNOOZE. ");
  1495.          return SCSI_ABORT_SNOOZE;
  1496.          }
  1497. /*
  1498.  * Case 4 : If we reached this point, the command was not found in any of
  1499.  *     the queues.
  1500.  *
  1501.  * We probably reached this point because of an unlikely race condition
  1502.  * between the command completing successfully and the abortion code,
  1503.  * so we won't panic, but we will notify the user in case something really
  1504.  * broke.
  1505.  */
  1506.    in2000_execute (instance);
  1507.    restore_flags(flags);
  1508.    printk("scsi%d: warning : SCSI command probably completed successfully"
  1509.       "         before abortion. ", instance->host_no);
  1510.    return SCSI_ABORT_NOT_RUNNING;
  1511. }
  1512. #define MAX_IN2000_HOSTS 3
  1513. #define MAX_SETUP_ARGS (sizeof(setup_args) / sizeof(char *))
  1514. #define SETUP_BUFFER_SIZE 200
  1515. static char setup_buffer[SETUP_BUFFER_SIZE];
  1516. static char setup_used[MAX_SETUP_ARGS];
  1517. static int done_setup = 0;
  1518. void __init in2000_setup (char *str, int *ints)
  1519. {
  1520. int i;
  1521. char *p1,*p2;
  1522.    strncpy(setup_buffer,str,SETUP_BUFFER_SIZE);
  1523.    setup_buffer[SETUP_BUFFER_SIZE - 1] = '';
  1524.    p1 = setup_buffer;
  1525.    i = 0;
  1526.    while (*p1 && (i < MAX_SETUP_ARGS)) {
  1527.       p2 = strchr(p1, ',');
  1528.       if (p2) {
  1529.          *p2 = '';
  1530.          if (p1 != p2)
  1531.             setup_args[i] = p1;
  1532.          p1 = p2 + 1;
  1533.          i++;
  1534.          }
  1535.       else {
  1536.          setup_args[i] = p1;
  1537.          break;
  1538.          }
  1539.       }
  1540.    for (i=0; i<MAX_SETUP_ARGS; i++)
  1541.       setup_used[i] = 0;
  1542.    done_setup = 1;
  1543. }
  1544. /* check_setup_args() returns index if key found, 0 if not
  1545.  */
  1546. static int __init check_setup_args(char *key, int *flags, int *val, char *buf)
  1547. {
  1548. int x;
  1549. char *cp;
  1550.    for  (x=0; x<MAX_SETUP_ARGS; x++) {
  1551.       if (setup_used[x])
  1552.          continue;
  1553.       if (!strncmp(setup_args[x], key, strlen(key)))
  1554.          break;
  1555.       }
  1556.    if (x == MAX_SETUP_ARGS)
  1557.       return 0;
  1558.    setup_used[x] = 1;
  1559.    cp = setup_args[x] + strlen(key);
  1560.    *val = -1;
  1561.    if (*cp != ':')
  1562.       return ++x;
  1563.    cp++;
  1564.    if ((*cp >= '0') && (*cp <= '9')) {
  1565.       *val = simple_strtoul(cp,NULL,0);
  1566.       }
  1567.    return ++x;
  1568. }
  1569. /* The "correct" (ie portable) way to access memory-mapped hardware
  1570.  * such as the IN2000 EPROM and dip switch is through the use of
  1571.  * special macros declared in 'asm/io.h'. We use readb() and readl()
  1572.  * when reading from the card's BIOS area in in2000_detect().
  1573.  */
  1574. static u32 bios_tab[] in2000__INITDATA = {
  1575.    0xc8000,
  1576.    0xd0000,
  1577.    0xd8000,
  1578.    0
  1579.    };
  1580. static const unsigned short base_tab[] in2000__INITDATA = {
  1581.    0x220,
  1582.    0x200,
  1583.    0x110,
  1584.    0x100,
  1585.    };
  1586. static const int int_tab[] in2000__INITDATA = {
  1587.    15,
  1588.    14,
  1589.    11,
  1590.    10
  1591.    };
  1592. int __init in2000_detect(Scsi_Host_Template * tpnt)
  1593. {
  1594. struct Scsi_Host *instance;
  1595. struct IN2000_hostdata *hostdata;
  1596. int detect_count;
  1597. int bios;
  1598. int x;
  1599. unsigned short base;
  1600. uchar switches;
  1601. uchar hrev;
  1602. int flags;
  1603. int val;
  1604. char buf[32];
  1605. /* Thanks to help from Bill Earnest, probing for IN2000 cards is a
  1606.  * pretty straightforward and fool-proof operation. There are 3
  1607.  * possible locations for the IN2000 EPROM in memory space - if we
  1608.  * find a BIOS signature, we can read the dip switch settings from
  1609.  * the byte at BIOS+32 (shadowed in by logic on the card). From 2
  1610.  * of the switch bits we get the card's address in IO space. There's
  1611.  * an image of the dip switch there, also, so we have a way to back-
  1612.  * check that this really is an IN2000 card. Very nifty. Use the
  1613.  * 'ioport:xx' command-line parameter if your BIOS EPROM is absent
  1614.  * or disabled.
  1615.  */
  1616.    if (!done_setup && setup_strings)
  1617.       in2000_setup(setup_strings,0);
  1618.    detect_count = 0;
  1619.    for (bios = 0; bios_tab[bios]; bios++) {
  1620.       if (check_setup_args("ioport",&flags,&val,buf)) {
  1621.          base = val;
  1622.          switches = ~inb(base + IO_SWITCHES) & 0xff;
  1623.          printk("Forcing IN2000 detection at IOport 0x%x ",base);
  1624.          bios = 2;
  1625.          }
  1626. /*
  1627.  * There have been a couple of BIOS versions with different layouts
  1628.  * for the obvious ID strings. We look for the 2 most common ones and
  1629.  * hope that they cover all the cases...
  1630.  */
  1631.       else if (isa_readl(bios_tab[bios]+0x10) == 0x41564f4e ||
  1632.                isa_readl(bios_tab[bios]+0x30) == 0x61776c41) {
  1633.          printk("Found IN2000 BIOS at 0x%x ",(unsigned int)bios_tab[bios]);
  1634. /* Read the switch image that's mapped into EPROM space */
  1635.          switches = ~((isa_readb(bios_tab[bios]+0x20) & 0xff));
  1636. /* Find out where the IO space is */
  1637.          x = switches & (SW_ADDR0 | SW_ADDR1);
  1638.          base = base_tab[x];
  1639. /* Check for the IN2000 signature in IO space. */
  1640.          x = ~inb(base + IO_SWITCHES) & 0xff;
  1641.          if (x != switches) {
  1642.             printk("Bad IO signature: %02x vs %02x.n",x,switches);
  1643.             continue;
  1644.             }
  1645.          }
  1646.       else
  1647.          continue;
  1648. /* OK. We have a base address for the IO ports - run a few safety checks */
  1649.       if (!(switches & SW_BIT7)) {        /* I _think_ all cards do this */
  1650.          printk("There is no IN-2000 SCSI card at IOport 0x%03x!n",base);
  1651.          continue;
  1652.          }
  1653. /* Let's assume any hardware version will work, although the driver
  1654.  * has only been tested on 0x21, 0x22, 0x25, 0x26, and 0x27. We'll
  1655.  * print out the rev number for reference later, but accept them all.
  1656.  */
  1657.       hrev = inb(base + IO_HARDWARE);
  1658.   /* Bit 2 tells us if interrupts are disabled */
  1659.       if (switches & SW_DISINT) {
  1660.          printk("The IN-2000 SCSI card at IOport 0x%03x ",base);
  1661.          printk("is not configured for interrupt operation!n");
  1662.          printk("This driver requires an interrupt: cancelling detection.n");
  1663.          continue;
  1664.          }
  1665. /* Ok. We accept that there's an IN2000 at ioaddr 'base'. Now
  1666.  * initialize it.
  1667.  */
  1668.       tpnt->proc_name = "in2000";
  1669.       instance  = scsi_register(tpnt, sizeof(struct IN2000_hostdata));
  1670.       if(instance == NULL)
  1671.        continue;
  1672.       detect_count++;
  1673.       if (!instance_list)
  1674.          instance_list = instance;
  1675.       hostdata = (struct IN2000_hostdata *)instance->hostdata;
  1676.       instance->io_port = hostdata->io_base = base;
  1677.       hostdata->dip_switch = switches;
  1678.       hostdata->hrev = hrev;
  1679.       write1_io(0,IO_FIFO_WRITE);            /* clear fifo counter */
  1680.       write1_io(0,IO_FIFO_READ);             /* start fifo out in read mode */
  1681.       write1_io(0,IO_INTR_MASK);    /* allow all ints */
  1682.       x = int_tab[(switches & (SW_INT0 | SW_INT1)) >> SW_INT_SHIFT];
  1683.       if (request_irq(x, in2000_intr, SA_INTERRUPT, "in2000", NULL)) {
  1684.          printk("in2000_detect: Unable to allocate IRQ.n");
  1685.          detect_count--;
  1686.          continue;
  1687.          }
  1688.       instance->irq = x;
  1689.       instance->n_io_port = 13;
  1690.       request_region(base, 13, "in2000"); /* lock in this IO space for our use */
  1691.       for (x = 0; x < 8; x++) {
  1692.          hostdata->busy[x] = 0;
  1693.          hostdata->sync_xfer[x] = calc_sync_xfer(DEFAULT_SX_PER/4,DEFAULT_SX_OFF);
  1694.          hostdata->sync_stat[x] = SS_UNSET;  /* using default sync values */
  1695. #ifdef PROC_STATISTICS
  1696.          hostdata->cmd_cnt[x] = 0;
  1697.          hostdata->disc_allowed_cnt[x] = 0;
  1698.          hostdata->disc_done_cnt[x] = 0;
  1699. #endif
  1700.          }
  1701.       hostdata->input_Q = NULL;
  1702.       hostdata->selecting = NULL;
  1703.       hostdata->connected = NULL;
  1704.       hostdata->disconnected_Q = NULL;
  1705.       hostdata->state = S_UNCONNECTED;
  1706.       hostdata->fifo = FI_FIFO_UNUSED;
  1707.       hostdata->level2 = L2_BASIC;
  1708.       hostdata->disconnect = DIS_ADAPTIVE;
  1709.       hostdata->args = DEBUG_DEFAULTS;
  1710.       hostdata->incoming_ptr = 0;
  1711.       hostdata->outgoing_len = 0;
  1712.       hostdata->default_sx_per = DEFAULT_SX_PER;
  1713. /* Older BIOS's had a 'sync on/off' switch - use its setting */
  1714.       if (isa_readl(bios_tab[bios]+0x10) == 0x41564f4e && (switches & SW_SYNC_DOS5))
  1715.          hostdata->sync_off = 0x00;    /* sync defaults to on */
  1716.       else
  1717.          hostdata->sync_off = 0xff;    /* sync defaults to off */
  1718. #ifdef PROC_INTERFACE
  1719.       hostdata->proc = PR_VERSION|PR_INFO|PR_STATISTICS|
  1720.                        PR_CONNECTED|PR_INPUTQ|PR_DISCQ|
  1721.                        PR_STOP;
  1722. #ifdef PROC_STATISTICS
  1723.       hostdata->int_cnt = 0;
  1724. #endif
  1725. #endif
  1726.       if (check_setup_args("nosync",&flags,&val,buf))
  1727.          hostdata->sync_off = val;
  1728.       if (check_setup_args("period",&flags,&val,buf))
  1729.          hostdata->default_sx_per = sx_table[round_period((unsigned int)val)].period_ns;
  1730.       if (check_setup_args("disconnect",&flags,&val,buf)) {
  1731.          if ((val >= DIS_NEVER) && (val <= DIS_ALWAYS))
  1732.             hostdata->disconnect = val;
  1733.          else
  1734.             hostdata->disconnect = DIS_ADAPTIVE;
  1735.          }
  1736.       if (check_setup_args("noreset",&flags,&val,buf))
  1737.          hostdata->args ^= A_NO_SCSI_RESET;
  1738.       if (check_setup_args("level2",&flags,&val,buf))
  1739.          hostdata->level2 = val;
  1740.       if (check_setup_args("debug",&flags,&val,buf))
  1741.          hostdata->args = (val & DB_MASK);
  1742. #ifdef PROC_INTERFACE
  1743.       if (check_setup_args("proc",&flags,&val,buf))
  1744.          hostdata->proc = val;
  1745. #endif
  1746.       x = reset_hardware(instance,(hostdata->args & A_NO_SCSI_RESET)?RESET_CARD:RESET_CARD_AND_BUS);
  1747.       hostdata->microcode = read_3393(hostdata,WD_CDB_1);
  1748.       if (x & 0x01) {
  1749.          if (x & B_FLAG)
  1750.             hostdata->chip = C_WD33C93B;
  1751.          else
  1752.             hostdata->chip = C_WD33C93A;
  1753.          }
  1754.       else
  1755.          hostdata->chip = C_WD33C93;
  1756.       printk("dip_switch=%02x irq=%d ioport=%02x floppy=%s sync/DOS5=%s ",
  1757.                   (switches & 0x7f),
  1758.                   instance->irq,hostdata->io_base,
  1759.                   (switches & SW_FLOPPY)?"Yes":"No",
  1760.                   (switches & SW_SYNC_DOS5)?"Yes":"No");
  1761.       printk("hardware_ver=%02x chip=%s microcode=%02xn",
  1762.                   hrev,
  1763.                   (hostdata->chip==C_WD33C93)?"WD33c93":
  1764.                   (hostdata->chip==C_WD33C93A)?"WD33c93A":
  1765.                   (hostdata->chip==C_WD33C93B)?"WD33c93B":"unknown",
  1766.                   hostdata->microcode);
  1767. #ifdef DEBUGGING_ON
  1768.       printk("setup_args = ");
  1769.       for (x=0; x<MAX_SETUP_ARGS; x++)
  1770.          printk("%s,",setup_args[x]);
  1771.       printk("n");
  1772. #endif
  1773.       if (hostdata->sync_off == 0xff)
  1774.          printk("Sync-transfer DISABLED on all devices: ENABLE from command-linen");
  1775.       printk("IN2000 driver version %s - %sn",IN2000_VERSION,IN2000_DATE);
  1776.       }
  1777.    return detect_count;
  1778. }
  1779. /* NOTE: I lifted this function straight out of the old driver,
  1780.  *       and have not tested it. Presumably it does what it's
  1781.  *       supposed to do...
  1782.  */
  1783. int in2000_biosparam(Disk *disk, kdev_t dev, int *iinfo)
  1784. {
  1785. int size;
  1786.    size  = disk->capacity;
  1787.    iinfo[0] = 64;
  1788.    iinfo[1] = 32;
  1789.    iinfo[2] = size >> 11;
  1790. /* This should approximate the large drive handling that the DOS ASPI manager
  1791.    uses.  Drives very near the boundaries may not be handled correctly (i.e.
  1792.    near 2.0 Gb and 4.0 Gb) */
  1793.    if (iinfo[2] > 1024) {
  1794.       iinfo[0] = 64;
  1795.       iinfo[1] = 63;
  1796.       iinfo[2] = disk->capacity / (iinfo[0] * iinfo[1]);
  1797.       }
  1798.    if (iinfo[2] > 1024) {
  1799.       iinfo[0] = 128;
  1800.       iinfo[1] = 63;
  1801.       iinfo[2] = disk->capacity / (iinfo[0] * iinfo[1]);
  1802.       }
  1803.    if (iinfo[2] > 1024) {
  1804.       iinfo[0] = 255;
  1805.       iinfo[1] = 63;
  1806.       iinfo[2] = disk->capacity / (iinfo[0] * iinfo[1]);
  1807.       }
  1808.     return 0;
  1809. }
  1810. int in2000_proc_info(char *buf, char **start, off_t off, int len, int hn, int in)
  1811. {
  1812. #ifdef PROC_INTERFACE
  1813. char *bp;
  1814. char tbuf[128];
  1815. unsigned long flags;
  1816. struct Scsi_Host *instance;
  1817. struct IN2000_hostdata *hd;
  1818. Scsi_Cmnd *cmd;
  1819. int x,i;
  1820. static int stop = 0;
  1821.    for (instance=instance_list; instance; instance=instance->next) {
  1822.       if (instance->host_no == hn)
  1823.          break;
  1824.       }
  1825.    if (!instance) {
  1826.       printk("*** Hmm... Can't find host #%d!n",hn);
  1827.       return (-ESRCH);
  1828.       }
  1829.    hd = (struct IN2000_hostdata *)instance->hostdata;
  1830. /* If 'in' is TRUE we need to _read_ the proc file. We accept the following
  1831.  * keywords (same format as command-line, but only ONE per read):
  1832.  *    debug
  1833.  *    disconnect
  1834.  *    period
  1835.  *    resync
  1836.  *    proc
  1837.  */
  1838.    if (in) {
  1839.       buf[len] = '';
  1840.       bp = buf;
  1841.       if (!strncmp(bp,"debug:",6)) {
  1842.          bp += 6;
  1843.          hd->args = simple_strtoul(bp,NULL,0) & DB_MASK;
  1844.          }
  1845.       else if (!strncmp(bp,"disconnect:",11)) {
  1846.          bp += 11;
  1847.          x = simple_strtoul(bp,NULL,0);
  1848.          if (x < DIS_NEVER || x > DIS_ALWAYS)
  1849.             x = DIS_ADAPTIVE;
  1850.          hd->disconnect = x;
  1851.          }
  1852.       else if (!strncmp(bp,"period:",7)) {
  1853.          bp += 7;
  1854.          x = simple_strtoul(bp,NULL,0);
  1855.          hd->default_sx_per = sx_table[round_period((unsigned int)x)].period_ns;
  1856.          }
  1857.       else if (!strncmp(bp,"resync:",7)) {
  1858.          bp += 7;
  1859.          x = simple_strtoul(bp,NULL,0);
  1860.          for (i=0; i<7; i++)
  1861.             if (x & (1<<i))
  1862.                hd->sync_stat[i] = SS_UNSET;
  1863.          }
  1864.       else if (!strncmp(bp,"proc:",5)) {
  1865.          bp += 5;
  1866.          hd->proc = simple_strtoul(bp,NULL,0);
  1867.          }
  1868.       else if (!strncmp(bp,"level2:",7)) {
  1869.          bp += 7;
  1870.          hd->level2 = simple_strtoul(bp,NULL,0);
  1871.          }
  1872.       return len;
  1873.       }
  1874.    save_flags(flags);
  1875.    cli();
  1876.    bp = buf;
  1877.    *bp = '';
  1878.    if (hd->proc & PR_VERSION) {
  1879.       sprintf(tbuf,"nVersion %s - %s. Compiled %s %s",
  1880.             IN2000_VERSION,IN2000_DATE,__DATE__,__TIME__);
  1881.       strcat(bp,tbuf);
  1882.       }
  1883.    if (hd->proc & PR_INFO) {
  1884.       sprintf(tbuf,"ndip_switch=%02x: irq=%d io=%02x floppy=%s sync/DOS5=%s",
  1885.                   (hd->dip_switch & 0x7f), instance->irq, hd->io_base,
  1886.                   (hd->dip_switch & 0x40)?"Yes":"No",
  1887.                   (hd->dip_switch & 0x20)?"Yes":"No");
  1888.       strcat(bp,tbuf);
  1889.       strcat(bp,"nsync_xfer[] =       ");
  1890.       for (x=0; x<7; x++) {
  1891.          sprintf(tbuf,"t%02x",hd->sync_xfer[x]);
  1892.          strcat(bp,tbuf);
  1893.          }
  1894.       strcat(bp,"nsync_stat[] =       ");
  1895.       for (x=0; x<7; x++) {
  1896.          sprintf(tbuf,"t%02x",hd->sync_stat[x]);
  1897.          strcat(bp,tbuf);
  1898.          }
  1899.       }
  1900. #ifdef PROC_STATISTICS
  1901.    if (hd->proc & PR_STATISTICS) {
  1902.       strcat(bp,"ncommands issued:    ");
  1903.       for (x=0; x<7; x++) {
  1904.          sprintf(tbuf,"t%ld",hd->cmd_cnt[x]);
  1905.          strcat(bp,tbuf);
  1906.          }
  1907.       strcat(bp,"ndisconnects allowed:");
  1908.       for (x=0; x<7; x++) {
  1909.          sprintf(tbuf,"t%ld",hd->disc_allowed_cnt[x]);
  1910.          strcat(bp,tbuf);
  1911.          }
  1912.       strcat(bp,"ndisconnects done:   ");
  1913.       for (x=0; x<7; x++) {
  1914.          sprintf(tbuf,"t%ld",hd->disc_done_cnt[x]);
  1915.          strcat(bp,tbuf);
  1916.          }
  1917.       sprintf(tbuf,"ninterrupts:      t%ld",hd->int_cnt);
  1918.       strcat(bp,tbuf);
  1919.       }
  1920. #endif
  1921.    if (hd->proc & PR_CONNECTED) {
  1922.       strcat(bp,"nconnected:     ");
  1923.       if (hd->connected) {
  1924.          cmd = (Scsi_Cmnd *)hd->connected;
  1925.          sprintf(tbuf," %ld-%d:%d(%02x)",
  1926.                cmd->pid, cmd->target, cmd->lun, cmd->cmnd[0]);
  1927.          strcat(bp,tbuf);
  1928.          }
  1929.       }
  1930.    if (hd->proc & PR_INPUTQ) {
  1931.       strcat(bp,"ninput_Q:       ");
  1932.       cmd = (Scsi_Cmnd *)hd->input_Q;
  1933.       while (cmd) {
  1934.          sprintf(tbuf," %ld-%d:%d(%02x)",
  1935.                cmd->pid, cmd->target, cmd->lun, cmd->cmnd[0]);
  1936.          strcat(bp,tbuf);
  1937.          cmd = (Scsi_Cmnd *)cmd->host_scribble;
  1938.          }
  1939.       }
  1940.    if (hd->proc & PR_DISCQ) {
  1941.       strcat(bp,"ndisconnected_Q:");
  1942.       cmd = (Scsi_Cmnd *)hd->disconnected_Q;
  1943.       while (cmd) {
  1944.          sprintf(tbuf," %ld-%d:%d(%02x)",
  1945.                cmd->pid, cmd->target, cmd->lun, cmd->cmnd[0]);
  1946.          strcat(bp,tbuf);
  1947.          cmd = (Scsi_Cmnd *)cmd->host_scribble;
  1948.          }
  1949.       }
  1950.    if (hd->proc & PR_TEST) {
  1951.       ;  /* insert your own custom function here */
  1952.       }
  1953.    strcat(bp,"n");
  1954.    restore_flags(flags);
  1955.    *start = buf;
  1956.    if (stop) {
  1957.       stop = 0;
  1958.       return 0;         /* return 0 to signal end-of-file */
  1959.       }
  1960.    if (off > 0x40000)   /* ALWAYS stop after 256k bytes have been read */
  1961.       stop = 1;;
  1962.    if (hd->proc & PR_STOP)    /* stop every other time */
  1963.       stop = 1;
  1964.    return strlen(bp);
  1965. #else    /* PROC_INTERFACE */
  1966.    return 0;
  1967. #endif   /* PROC_INTERFACE */
  1968. }
  1969. MODULE_LICENSE("GPL");
  1970. static Scsi_Host_Template driver_template = IN2000;
  1971. #include "scsi_module.c"