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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* fd_mcs.c -- Future Domain MCS 600/700 (or IBM OEM) driver
  2.  *
  3.  * FutureDomain MCS-600/700 v0.2 03/11/1998 by ZP Gu (zpg@castle.net)
  4.  *
  5.  * This driver is cloned from fdomain.* to specifically support
  6.  * the Future Domain MCS 600/700 MCA SCSI adapters. Some PS/2s
  7.  * also equipped with IBM Fast SCSI Adapter/A which is an OEM
  8.  * of MCS 700.
  9.  *
  10.  * This driver also supports Reply SB16/SCSI card (the SCSI part).
  11.  *
  12.  * What makes this driver different is that this driver is MCA only
  13.  * and it supports multiple adapters in the same system, IRQ 
  14.  * sharing, some driver statistics, and maps highest SCSI id to sda.
  15.  * All cards are auto-detected.
  16.  *
  17.  * Assumptions: TMC-1800/18C50/18C30, BIOS >= 3.4
  18.  *
  19.  * LILO command-line options:
  20.  *   fd_mcs=<FIFO_COUNT>[,<FIFO_SIZE>]
  21.  *
  22.  * ********************************************************
  23.  * Please see Copyrights/Comments in fdomain.* for credits.
  24.  * Following is from fdomain.c for acknowledgement:
  25.  *
  26.  * Created: Sun May  3 18:53:19 1992 by faith@cs.unc.edu
  27.  * Revised: Wed Oct  2 11:10:55 1996 by r.faith@ieee.org
  28.  * Author: Rickard E. Faith, faith@cs.unc.edu
  29.  * Copyright 1992, 1993, 1994, 1995, 1996 Rickard E. Faith
  30.  *
  31.  * $Id: fdomain.c,v 5.45 1996/10/02 15:13:06 root Exp $
  32.  * This program is free software; you can redistribute it and/or modify it
  33.  * under the terms of the GNU General Public License as published by the
  34.  * Free Software Foundation; either version 2, or (at your option) any
  35.  * later version.
  36.  * This program is distributed in the hope that it will be useful, but
  37.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  38.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  39.  * General Public License for more details.
  40.  * You should have received a copy of the GNU General Public License along
  41.  * with this program; if not, write to the Free Software Foundation, Inc.,
  42.  * 675 Mass Ave, Cambridge, MA 02139, USA.
  43.  **************************************************************************
  44.  NOTES ON USER DEFINABLE OPTIONS:
  45.  DEBUG: This turns on the printing of various debug information.
  46.  ENABLE_PARITY: This turns on SCSI parity checking.  With the current
  47.  driver, all attached devices must support SCSI parity.  If none of your
  48.  devices support parity, then you can probably get the driver to work by
  49.  turning this option off.  I have no way of testing this, however, and it
  50.  would appear that no one ever uses this option.
  51.  FIFO_COUNT: The host adapter has an 8K cache (host adapters based on the
  52.  18C30 chip have a 2k cache).  When this many 512 byte blocks are filled by
  53.  the SCSI device, an interrupt will be raised.  Therefore, this could be as
  54.  low as 0, or as high as 16.  Note, however, that values which are too high
  55.  or too low seem to prevent any interrupts from occurring, and thereby lock
  56.  up the machine.  I have found that 2 is a good number, but throughput may
  57.  be increased by changing this value to values which are close to 2.
  58.  Please let me know if you try any different values.
  59.  [*****Now a runtime option*****]
  60.  RESELECTION: This is no longer an option, since I gave up trying to
  61.  implement it in version 4.x of this driver.  It did not improve
  62.  performance at all and made the driver unstable (because I never found one
  63.  of the two race conditions which were introduced by the multiple
  64.  outstanding command code).  The instability seems a very high price to pay
  65.  just so that you don't have to wait for the tape to rewind.  If you want
  66.  this feature implemented, send me patches.  I'll be happy to send a copy
  67.  of my (broken) driver to anyone who would like to see a copy.
  68.  **************************************************************************/
  69. #include <linux/module.h>
  70. #include <linux/sched.h>
  71. #include <linux/blk.h>
  72. #include <linux/errno.h>
  73. #include <linux/string.h>
  74. #include <linux/ioport.h>
  75. #include <linux/proc_fs.h>
  76. #include <linux/delay.h>
  77. #include <linux/mca.h>
  78. #include <linux/spinlock.h>
  79. #include <asm/io.h>
  80. #include <asm/system.h>
  81. #include "scsi.h"
  82. #include "hosts.h"
  83. #include "fd_mcs.h"
  84. #define DRIVER_VERSION "v0.2 by ZP Gu<zpg@castle.net>"
  85.   
  86. /* START OF USER DEFINABLE OPTIONS */
  87. #define DEBUG            0 /* Enable debugging output */
  88. #define ENABLE_PARITY    1 /* Enable SCSI Parity */
  89. #define DO_DETECT        0 /* Do device detection here (see scsi.c) */
  90. /* END OF USER DEFINABLE OPTIONS */
  91. #if DEBUG
  92. #define EVERY_ACCESS     0 /* Write a line on every scsi access */
  93. #define ERRORS_ONLY      1 /* Only write a line if there is an error */
  94. #define DEBUG_DETECT     1 /* Debug fd_mcs_detect() */
  95. #define DEBUG_MESSAGES   1 /* Debug MESSAGE IN phase */
  96. #define DEBUG_ABORT      1 /* Debug abort() routine */
  97. #define DEBUG_RESET      1 /* Debug reset() routine */
  98. #define DEBUG_RACE       1      /* Debug interrupt-driven race condition */
  99. #else
  100. #define EVERY_ACCESS     0 /* LEAVE THESE ALONE--CHANGE THE ONES ABOVE */
  101. #define ERRORS_ONLY      0
  102. #define DEBUG_DETECT     0
  103. #define DEBUG_MESSAGES   0
  104. #define DEBUG_ABORT      0
  105. #define DEBUG_RESET      0
  106. #define DEBUG_RACE       0
  107. #endif
  108. /* Errors are reported on the line, so we don't need to report them again */
  109. #if EVERY_ACCESS
  110. #undef ERRORS_ONLY
  111. #define ERRORS_ONLY      0
  112. #endif
  113. #if ENABLE_PARITY
  114. #define PARITY_MASK      0x08
  115. #else
  116. #define PARITY_MASK      0x00
  117. #endif
  118. enum chip_type {
  119.   unknown          = 0x00,
  120.   tmc1800          = 0x01,
  121.   tmc18c50         = 0x02,
  122.   tmc18c30         = 0x03,
  123. };
  124. enum {
  125.   in_arbitration   = 0x02,
  126.   in_selection     = 0x04,
  127.   in_other         = 0x08,
  128.   disconnect       = 0x10,
  129.   aborted          = 0x20,
  130.   sent_ident       = 0x40,
  131. };
  132. enum in_port_type {
  133.   Read_SCSI_Data   =  0,
  134.   SCSI_Status      =  1,
  135.   TMC_Status       =  2,
  136.   FIFO_Status      =  3, /* tmc18c50/tmc18c30 only */
  137.   Interrupt_Cond   =  4, /* tmc18c50/tmc18c30 only */
  138.   LSB_ID_Code      =  5,
  139.   MSB_ID_Code      =  6,
  140.   Read_Loopback    =  7,
  141.   SCSI_Data_NoACK  =  8,
  142.   Interrupt_Status =  9,
  143.   Configuration1   = 10,
  144.   Configuration2   = 11, /* tmc18c50/tmc18c30 only */
  145.   Read_FIFO        = 12,
  146.   FIFO_Data_Count  = 14
  147. };
  148. enum out_port_type {
  149.   Write_SCSI_Data  =  0,
  150.   SCSI_Cntl        =  1,
  151.   Interrupt_Cntl   =  2,
  152.   SCSI_Mode_Cntl   =  3,
  153.   TMC_Cntl         =  4,
  154.   Memory_Cntl      =  5, /* tmc18c50/tmc18c30 only */
  155.   Write_Loopback   =  7,
  156.   IO_Control       = 11, /* tmc18c30 only */
  157.   Write_FIFO       = 12
  158. };
  159. struct fd_hostdata {
  160.   unsigned long     _bios_base;
  161.   int               _bios_major;
  162.   int               _bios_minor;
  163.   volatile int      _in_command;
  164.   Scsi_Cmnd         *_current_SC;
  165.   enum chip_type    _chip;
  166.   int               _adapter_mask;
  167.   int               _fifo_count; /* Number of 512 byte blocks before INTR */
  168.   char              _adapter_name[64];
  169. #if DEBUG_RACE
  170.   volatile int      _in_interrupt_flag;
  171. #endif
  172.   int               _SCSI_Mode_Cntl_port;
  173.   int               _FIFO_Data_Count_port;
  174.   int               _Interrupt_Cntl_port;
  175.   int               _Interrupt_Status_port;
  176.   int               _Interrupt_Cond_port;
  177.   int               _Read_FIFO_port;
  178.   int               _Read_SCSI_Data_port;
  179.   int               _SCSI_Cntl_port;
  180.   int               _SCSI_Data_NoACK_port;
  181.   int               _SCSI_Status_port;
  182.   int               _TMC_Cntl_port;
  183.   int               _TMC_Status_port;
  184.   int               _Write_FIFO_port;
  185.   int               _Write_SCSI_Data_port;
  186.   int               _FIFO_Size; /* = 0x2000;  8k FIFO for
  187.    pre-tmc18c30 chips */
  188.   /* simple stats */
  189.   int               _Bytes_Read;
  190.   int               _Bytes_Written;
  191.   int               _INTR_Processed;
  192. };
  193. #define FD_MAX_HOSTS 3 /* enough? */
  194. #define HOSTDATA(shpnt) ((struct fd_hostdata *) shpnt->hostdata)
  195. #define bios_base             (HOSTDATA(shpnt)->_bios_base)
  196. #define bios_major            (HOSTDATA(shpnt)->_bios_major)
  197. #define bios_minor            (HOSTDATA(shpnt)->_bios_minor)
  198. #define in_command            (HOSTDATA(shpnt)->_in_command)
  199. #define current_SC            (HOSTDATA(shpnt)->_current_SC)
  200. #define chip                  (HOSTDATA(shpnt)->_chip)
  201. #define adapter_mask          (HOSTDATA(shpnt)->_adapter_mask)
  202. #define FIFO_COUNT            (HOSTDATA(shpnt)->_fifo_count)
  203. #define adapter_name          (HOSTDATA(shpnt)->_adapter_name)
  204. #if DEBUG_RACE
  205. #define in_interrupt_flag     (HOSTDATA(shpnt)->_in_interrupt_flag)
  206. #endif                      
  207. #define SCSI_Mode_Cntl_port   (HOSTDATA(shpnt)->_SCSI_Mode_Cntl_port)
  208. #define FIFO_Data_Count_port  (HOSTDATA(shpnt)->_FIFO_Data_Count_port)
  209. #define Interrupt_Cntl_port   (HOSTDATA(shpnt)->_Interrupt_Cntl_port)
  210. #define Interrupt_Status_port (HOSTDATA(shpnt)->_Interrupt_Status_port)
  211. #define Interrupt_Cond_port   (HOSTDATA(shpnt)->_Interrupt_Cond_port)
  212. #define Read_FIFO_port        (HOSTDATA(shpnt)->_Read_FIFO_port)
  213. #define Read_SCSI_Data_port   (HOSTDATA(shpnt)->_Read_SCSI_Data_port)
  214. #define SCSI_Cntl_port        (HOSTDATA(shpnt)->_SCSI_Cntl_port)
  215. #define SCSI_Data_NoACK_port  (HOSTDATA(shpnt)->_SCSI_Data_NoACK_port)
  216. #define SCSI_Status_port      (HOSTDATA(shpnt)->_SCSI_Status_port)
  217. #define TMC_Cntl_port         (HOSTDATA(shpnt)->_TMC_Cntl_port)
  218. #define TMC_Status_port       (HOSTDATA(shpnt)->_TMC_Status_port)
  219. #define Write_FIFO_port       (HOSTDATA(shpnt)->_Write_FIFO_port)
  220. #define Write_SCSI_Data_port  (HOSTDATA(shpnt)->_Write_SCSI_Data_port)
  221. #define FIFO_Size             (HOSTDATA(shpnt)->_FIFO_Size)
  222. #define Bytes_Read            (HOSTDATA(shpnt)->_Bytes_Read)
  223. #define Bytes_Written         (HOSTDATA(shpnt)->_Bytes_Written)
  224. #define INTR_Processed        (HOSTDATA(shpnt)->_INTR_Processed)
  225. struct fd_mcs_adapters_struct {
  226.   char* name;
  227.   int id;
  228.   enum chip_type fd_chip;
  229.   int fifo_size;
  230.   int fifo_count;
  231. };
  232. #define REPLY_ID 0x5137
  233. static struct fd_mcs_adapters_struct fd_mcs_adapters[] = {
  234.   { "Future Domain SCSI Adapter MCS-700(18C50)",
  235.     0x60e9,
  236.     tmc18c50,
  237.     0x2000,
  238.     4 },
  239.   { "Future Domain SCSI Adapter MCS-600/700(TMC-1800)",
  240.     0x6127,
  241.     tmc1800,
  242.     0x2000,
  243.     4 },
  244.   { "Reply Sound Blaster/SCSI Adapter",
  245.     REPLY_ID,
  246.     tmc18c30,
  247.     0x800,
  248.     2 },
  249. };
  250. #define FD_BRDS sizeof(fd_mcs_adapters)/sizeof(struct fd_mcs_adapters_struct)
  251. static void fd_mcs_intr( int irq, void *dev_id, struct pt_regs * regs );
  252. static unsigned long addresses[] = {0xc8000, 0xca000, 0xce000, 0xde000};
  253. static unsigned short ports[] = { 0x140, 0x150, 0x160, 0x170 };
  254. static unsigned short ints[] = { 3, 5, 10, 11, 12, 14, 15, 0 };
  255. /* host information */
  256. static int found = 0;
  257. static struct Scsi_Host *hosts[FD_MAX_HOSTS+1] = { NULL };
  258. static int user_fifo_count = 0;
  259. static int user_fifo_size = 0;
  260. void fd_mcs_setup( char *str, int *ints )
  261. {
  262.   static int done_setup = 0;
  263.   if (done_setup++ || ints[0] < 1 || ints[0] > 2 ||
  264.       ints[1] < 1 || ints[1] > 16) {
  265.     printk( "fd_mcs: usage: fd_mcs=FIFO_COUNT, FIFO_SIZEn" );
  266.   }
  267.   user_fifo_count = ints[0] >= 1 ? ints[1] : 0;
  268.   user_fifo_size  = ints[0] >= 2 ? ints[2] : 0;
  269. }
  270. static void print_banner( struct Scsi_Host *shpnt )
  271. {
  272.   printk( "scsi%d <fd_mcs>: ", shpnt->host_no);
  273.   if (bios_base) {
  274.     printk( "BIOS at 0x%lX", bios_base);
  275.   } else {
  276.     printk( "No BIOS");
  277.   }
  278.   printk( ", HostID %d, %s Chip, IRQ %d, IO 0x%lXn",
  279.           shpnt->this_id,
  280.           chip == tmc18c50 ? "TMC-18C50"
  281.              : (chip == tmc18c30 ? "TMC-18C30" :
  282.                 (chip == tmc1800 ? "TMC-1800" : "Unknown")),
  283.           shpnt->irq,
  284.           shpnt->io_port );
  285. }
  286. static void do_pause( unsigned amount ) /* Pause for amount*10 milliseconds */
  287. {
  288.   do {
  289.     udelay(10*1000);
  290.   } while (--amount);
  291. }
  292. inline static void fd_mcs_make_bus_idle( struct Scsi_Host *shpnt )
  293. {
  294.   outb( 0, SCSI_Cntl_port );
  295.   outb( 0, SCSI_Mode_Cntl_port );
  296.   if (chip == tmc18c50 || chip == tmc18c30)
  297.     outb( 0x21 | PARITY_MASK, TMC_Cntl_port ); /* Clear forced intr. */
  298.   else
  299.     outb( 0x01 | PARITY_MASK, TMC_Cntl_port );
  300. }
  301. int fd_mcs_detect( Scsi_Host_Template *tpnt )
  302. {
  303.   int loop;
  304.   struct Scsi_Host *shpnt;
  305.   /* get id, port, bios, irq */
  306.   int slot;
  307.   u_char pos2, pos3, pos4;
  308.   int id, port, irq;
  309.   unsigned long bios;
  310.   /* if not MCA machine, return */
  311.   if (!MCA_bus)
  312.     return 0;
  313.   /* changeable? */
  314.   id = 7;
  315.   for( loop = 0; loop < FD_BRDS; loop++ ) {
  316.     slot = 0;
  317.     while ( MCA_NOTFOUND !=
  318.     (slot = mca_find_adapter(fd_mcs_adapters[loop].id,
  319.      slot)) ) {
  320.       /* if we get this far, an adapter has been detected and is
  321.  enabled */
  322.       printk("scsi  <fd_mcs>: %s at slot %dn",
  323.      fd_mcs_adapters[loop].name, slot + 1 );
  324.       pos2 = mca_read_stored_pos( slot, 2 );
  325.       pos3 = mca_read_stored_pos( slot, 3 );
  326.       pos4 = mca_read_stored_pos( slot, 4);
  327.       /* ready for next probe */
  328.       slot++;
  329.       if (fd_mcs_adapters[loop].id == REPLY_ID) { /* reply card */
  330. static int reply_irq[] = {10, 11, 14, 15};
  331. bios = 0; /* no bios */
  332. if (pos2 & 0x2)
  333.   port = ports[pos4 & 0x3];
  334. else
  335.   continue;
  336. /* can't really disable it, same as irq=10 */
  337. irq = reply_irq[((pos4 >> 2) & 0x1) + 2*((pos4 >> 4) & 0x1)];
  338.       } else {
  339. bios = addresses[pos2 >> 6];
  340. port = ports[(pos2 >> 4) & 0x03];
  341. irq = ints[(pos2 >> 1) & 0x07];
  342.       }
  343.       if (irq) {
  344. /* claim the slot */
  345. mca_set_adapter_name( slot-1, fd_mcs_adapters[loop].name );
  346. /* check irq/region */
  347. if (check_region(port, 0x10) ||
  348.     request_irq(irq, fd_mcs_intr,
  349. SA_SHIRQ, "fd_mcs", hosts)) {
  350.   printk( "fd_mcs: check_region() || request_irq() failed, Skip itn");
  351.   continue;
  352. }
  353. /* register */
  354. if (!(shpnt = scsi_register(tpnt, sizeof(struct fd_hostdata)))) {
  355.   printk( "fd_mcs: scsi_register() failedn");
  356.   continue;
  357. }
  358. /* request I/O region */
  359. request_region( port, 0x10, "fd_mcs" );
  360. /* save name */
  361. strcpy(adapter_name, fd_mcs_adapters[loop].name);
  362. /* chip/fifo */
  363. chip = fd_mcs_adapters[loop].fd_chip;
  364. /* use boot time value if available */
  365. FIFO_COUNT =
  366.   user_fifo_count?user_fifo_count:fd_mcs_adapters[loop].fifo_count;
  367. FIFO_Size =
  368.   user_fifo_size?user_fifo_size:fd_mcs_adapters[loop].fifo_size;
  369. #ifdef NOT_USED
  370. /* *************************************************** */
  371. /* Try to toggle 32-bit mode.  This only
  372.    works on an 18c30 chip.  (User reports
  373.    say this works, so we should switch to
  374.    it in the near future.) */
  375. outb( 0x80, port + IO_Control );
  376. if ((inb( port + Configuration2 ) & 0x80) == 0x80) {
  377.   outb( 0x00, port + IO_Control );
  378.   if ((inb( port + Configuration2 ) & 0x80) == 0x00) {
  379.     chip = tmc18c30;
  380.     FIFO_Size = 0x800; /* 2k FIFO */
  381.     printk("FIRST: chip=%s, fifo_size=0x%xn",
  382.    (chip == tmc18c30)?"tmc18c30":"tmc18c50", FIFO_Size);
  383.   }
  384. }
  385. /* That should have worked, but appears to
  386.    have problems.  Let's assume it is an
  387.    18c30 if the RAM is disabled. */
  388. if (inb( port + Configuration2 ) & 0x02) {
  389.   chip      = tmc18c30;
  390.   FIFO_Size = 0x800; /* 2k FIFO */
  391.   printk("SECOND: chip=%s, fifo_size=0x%xn",
  392.  (chip == tmc18c30)?"tmc18c30":"tmc18c50", FIFO_Size);
  393. }
  394. /* *************************************************** */     
  395. #endif
  396. /* IBM/ANSI scsi scan ordering */
  397. /* Stick this back in when the scsi.c changes are there */
  398. shpnt->reverse_ordering = 1;
  399. /* saving info */
  400. hosts[found++] = shpnt;
  401. shpnt->this_id = id;
  402. shpnt->irq = irq;
  403. shpnt->io_port = port;
  404. shpnt->n_io_port = 0x10;
  405. /* save */
  406. bios_base    = bios;
  407. adapter_mask = (1 << id);
  408. /* save more */
  409. SCSI_Mode_Cntl_port   = port + SCSI_Mode_Cntl;
  410. FIFO_Data_Count_port  = port + FIFO_Data_Count;
  411. Interrupt_Cntl_port   = port + Interrupt_Cntl;
  412. Interrupt_Status_port = port + Interrupt_Status;
  413. Interrupt_Cond_port   = port + Interrupt_Cond;
  414. Read_FIFO_port        = port + Read_FIFO;
  415. Read_SCSI_Data_port   = port + Read_SCSI_Data;
  416. SCSI_Cntl_port        = port + SCSI_Cntl;
  417. SCSI_Data_NoACK_port  = port + SCSI_Data_NoACK;
  418. SCSI_Status_port      = port + SCSI_Status;
  419. TMC_Cntl_port         = port + TMC_Cntl;
  420. TMC_Status_port       = port + TMC_Status;
  421. Write_FIFO_port       = port + Write_FIFO;
  422. Write_SCSI_Data_port  = port + Write_SCSI_Data;
  423. Bytes_Read     = 0;
  424. Bytes_Written  = 0;
  425. INTR_Processed = 0;
  426. /* say something */
  427. print_banner( shpnt );
  428. /* reset */
  429. outb( 1, SCSI_Cntl_port );
  430. do_pause( 2 );
  431. outb( 0, SCSI_Cntl_port );
  432. do_pause( 115 );
  433. outb( 0, SCSI_Mode_Cntl_port );
  434. outb( PARITY_MASK, TMC_Cntl_port );
  435. /* done reset */
  436. #if DO_DETECT
  437. /* scan devices attached */
  438. {
  439.   const int     buflen = 255;
  440.   int           i, j, retcode;
  441.   Scsi_Cmnd     SCinit;
  442.   unsigned char do_inquiry[] =       { INQUIRY, 0, 0, 0, buflen, 0 };
  443.   unsigned char do_request_sense[] = { REQUEST_SENSE, 
  444.        0, 0, 0, buflen, 0 };
  445.   unsigned char do_read_capacity[] = { READ_CAPACITY,
  446.        0, 0, 0, 0, 0, 0, 0, 0, 0 };
  447.   unsigned char buf[buflen];
  448.   SCinit.request_buffer  = SCinit.buffer = buf;
  449.   SCinit.request_bufflen = SCinit.bufflen = sizeof(buf)-1;
  450.   SCinit.use_sg          = 0;
  451.   SCinit.lun             = 0;
  452.   SCinit.host            = shpnt;
  453.   printk( "fd_mcs: detection routine scanning for devices:n" );
  454.   for (i = 0; i < 8; i++) {
  455.     if (i == shpnt->this_id) /* Skip host adapter */
  456.       continue;
  457.     SCinit.target = i;
  458.     memcpy(SCinit.cmnd, do_request_sense,
  459.    sizeof(do_request_sense));
  460.     retcode = fd_mcs_command(&SCinit);
  461.     if (!retcode) {
  462.       memcpy(SCinit.cmnd, do_inquiry, sizeof(do_inquiry));
  463.       retcode = fd_mcs_command(&SCinit);
  464.       if (!retcode) {
  465. printk( "     SCSI ID %d: ", i );
  466. for (j = 8; j < (buf[4] < 32 ? buf[4] : 32); j++)
  467.   printk( "%c", buf[j] >= 20 ? buf[j] : ' ' );
  468. memcpy(SCinit.cmnd, do_read_capacity,
  469.        sizeof(do_read_capacity));
  470. retcode = fd_mcs_command(&SCinit);
  471. if (!retcode) {
  472.   unsigned long blocks, size, capacity;
  473.        
  474.   blocks = (buf[0] << 24) | (buf[1] << 16)
  475.     | (buf[2] << 8) | buf[3];
  476.   size = (buf[4] << 24) | (buf[5] << 16) | 
  477.     (buf[6] << 8) | buf[7];
  478.   capacity = +( +(blocks / 1024L) * +(size * 10L)) / 1024L;
  479.        
  480.   printk( "%lu MB (%lu byte blocks)n",
  481.   ((capacity + 5L) / 10L), size );
  482. }
  483.       }
  484.     }
  485.   }
  486. }
  487. #endif
  488.       }
  489.     }
  490.     if (found == FD_MAX_HOSTS) {
  491.       printk( "fd_mcs: detecting reached max=%d host adapters.n",
  492.       FD_MAX_HOSTS);
  493.       break;
  494.     }
  495.   }
  496.   return found;
  497. }
  498. const char *fd_mcs_info(struct Scsi_Host *shpnt)
  499. {
  500.   return adapter_name;
  501. }
  502. static int TOTAL_INTR = 0;
  503. /*
  504.  * inout : decides on the direction of the dataflow and the meaning of the 
  505.  *         variables
  506.  * buffer: If inout==FALSE data is being written to it else read from it
  507.  * *start: If inout==FALSE start of the valid data in the buffer
  508.  * offset: If inout==FALSE offset from the beginning of the imaginary file 
  509.  *         from which we start writing into the buffer
  510.  * length: If inout==FALSE max number of bytes to be written into the buffer 
  511.  *         else number of bytes in the buffer
  512.  */
  513. int fd_mcs_proc_info( char *buffer, char **start, off_t offset,
  514.       int length, int hostno, int inout )
  515. {
  516.   struct Scsi_Host *shpnt;
  517.   int    len = 0;
  518.   int    i;
  519.   if (inout)
  520.     return(-ENOSYS);
  521.   *start = buffer + offset;
  522.   for (i = 0; hosts[i] && hosts[i]->host_no != hostno; i++);
  523.   shpnt = hosts[i];
  524.   if (!shpnt) {
  525.     return(-ENOENT);
  526.   } else {
  527.     len += sprintf(buffer+len, "Future Domain MCS-600/700 Driver %sn",
  528.    DRIVER_VERSION);
  529.     len += sprintf(buffer+len, "HOST #%d: %sn",
  530.    hostno, adapter_name);
  531.     len += sprintf(buffer+len, "FIFO Size=0x%x, FIFO Count=%dn",
  532.    FIFO_Size, FIFO_COUNT);
  533.     len += sprintf(buffer+len, "DriverCalls=%d, Interrupts=%d, BytesRead=%d, BytesWrite=%dnn",
  534.    TOTAL_INTR, INTR_Processed, Bytes_Read, Bytes_Written);
  535.   }
  536.   if ((len -= offset) <= 0)
  537.     return 0;
  538.   if (len > length) 
  539.     len = length;
  540.   return len;
  541. }
  542.    
  543. static int fd_mcs_select(struct Scsi_Host *shpnt, int target )
  544. {
  545.   int           status;
  546.   unsigned long timeout;
  547.   outb( 0x82, SCSI_Cntl_port ); /* Bus Enable + Select */
  548.   outb( adapter_mask | (1 << target), SCSI_Data_NoACK_port );
  549.   /* Stop arbitration and enable parity */
  550.   outb( PARITY_MASK, TMC_Cntl_port ); 
  551.   timeout = 350; /* 350mS -- because of timeouts
  552.    (was 250mS) */
  553.   do {
  554.     status = inb( SCSI_Status_port ); /* Read adapter status */
  555.     if (status & 1) { /* Busy asserted */
  556.       /* Enable SCSI Bus (on error, should make bus idle with 0) */
  557.       outb( 0x80, SCSI_Cntl_port );
  558.       return 0;
  559.     }
  560.     udelay(1000); /* wait one msec */
  561.   } while (--timeout);
  562.   /* Make bus idle */
  563.   fd_mcs_make_bus_idle(shpnt);
  564. #if EVERY_ACCESS
  565.   if (!target) printk( "Selection failedn" );
  566. #endif
  567. #if ERRORS_ONLY
  568.   if (!target) {
  569.     static int flag = 0;
  570.     if (!flag) /* Skip first failure for all chips. */
  571.       ++flag;
  572.     else
  573.       printk( "fd_mcs: Selection failedn" );
  574.   }
  575. #endif
  576.   return 1;
  577. }
  578. static void my_done( struct Scsi_Host *shpnt, int error )
  579. {
  580.   if (in_command) {
  581.     in_command = 0;
  582.     outb( 0x00, Interrupt_Cntl_port );
  583.     fd_mcs_make_bus_idle(shpnt);
  584.     current_SC->result = error;
  585.     current_SC->scsi_done( current_SC );
  586.   } else {
  587.     panic( "fd_mcs: my_done() called outside of commandn" );
  588.   }
  589. #if DEBUG_RACE
  590.   in_interrupt_flag = 0;
  591. #endif
  592. }
  593. /* only my_done needs to be protected  */
  594. static void fd_mcs_intr( int irq, void *dev_id, struct pt_regs * regs )
  595. {
  596.   unsigned long flags;
  597.   int      status;
  598.   int      done = 0;
  599.   unsigned data_count, tmp_count;
  600.   int i = 0;
  601.   struct Scsi_Host *shpnt;
  602.   TOTAL_INTR++;
  603.   /* search for one adapter-response on shared interrupt */
  604.   while ((shpnt = hosts[i++])) {
  605.     if ((inb(TMC_Status_port)) & 1)
  606.       break;
  607.   }
  608.  
  609.   /* return if some other device on this IRQ caused the interrupt */
  610.   if (!shpnt) {
  611.     return;
  612.   }
  613.   INTR_Processed++;
  614.   outb( 0x00, Interrupt_Cntl_port );
  615.   /* Abort calls my_done, so we do nothing here. */
  616.   if (current_SC->SCp.phase & aborted) {
  617. #if DEBUG_ABORT
  618.     printk( "Interrupt after abort, ignoringn" );
  619. #endif
  620.     /* return; */
  621.   }
  622. #if DEBUG_RACE
  623.   ++in_interrupt_flag;
  624. #endif
  625.   if (current_SC->SCp.phase & in_arbitration) {
  626.     status = inb( TMC_Status_port );        /* Read adapter status */
  627.     if (!(status & 0x02)) {
  628. #if EVERY_ACCESS
  629.       printk( " AFAIL " );
  630. #endif
  631.       spin_lock_irqsave(&io_request_lock, flags);
  632.       my_done( shpnt, DID_BUS_BUSY << 16 );
  633.       spin_unlock_irqrestore(&io_request_lock, flags);
  634.       return;
  635.     }
  636.     current_SC->SCp.phase = in_selection;
  637.       
  638.     outb( 0x40 | FIFO_COUNT, Interrupt_Cntl_port );
  639.     outb( 0x82, SCSI_Cntl_port ); /* Bus Enable + Select */
  640.     outb( adapter_mask | (1 << current_SC->target), SCSI_Data_NoACK_port );
  641.       
  642.     /* Stop arbitration and enable parity */
  643.     outb( 0x10 | PARITY_MASK, TMC_Cntl_port );
  644. #if DEBUG_RACE
  645.     in_interrupt_flag = 0;
  646. #endif
  647.     return;
  648.   } else if (current_SC->SCp.phase & in_selection) {
  649.     status = inb( SCSI_Status_port );
  650.     if (!(status & 0x01)) {
  651.       /* Try again, for slow devices */
  652.       if (fd_mcs_select(shpnt, current_SC->target )) {
  653. #if EVERY_ACCESS
  654. printk( " SFAIL " );
  655. #endif
  656. spin_lock_irqsave(&io_request_lock, flags);
  657. my_done( shpnt, DID_NO_CONNECT << 16 );
  658. spin_unlock_irqrestore(&io_request_lock, flags);
  659. return;
  660.       } else {
  661. #if EVERY_ACCESS
  662. printk( " AltSel " );
  663. #endif
  664. /* Stop arbitration and enable parity */
  665. outb( 0x10 | PARITY_MASK, TMC_Cntl_port );
  666.       }
  667.     }
  668.     current_SC->SCp.phase = in_other;
  669.     outb( 0x90 | FIFO_COUNT, Interrupt_Cntl_port );
  670.     outb( 0x80, SCSI_Cntl_port );
  671. #if DEBUG_RACE
  672.     in_interrupt_flag = 0;
  673. #endif
  674.     return;
  675.   }
  676.    
  677.   /* current_SC->SCp.phase == in_other: this is the body of the routine */
  678.    
  679.   status = inb( SCSI_Status_port );
  680.    
  681.   if (status & 0x10) { /* REQ */
  682.       
  683.     switch (status & 0x0e) {
  684.        
  685.     case 0x08: /* COMMAND OUT */
  686.       outb( current_SC->cmnd[current_SC->SCp.sent_command++],
  687.     Write_SCSI_Data_port );
  688. #if EVERY_ACCESS
  689.       printk( "CMD = %x,",
  690.       current_SC->cmnd[ current_SC->SCp.sent_command - 1] );
  691. #endif
  692.       break;
  693.     case 0x00: /* DATA OUT -- tmc18c50/tmc18c30 only */
  694.       if (chip != tmc1800 && !current_SC->SCp.have_data_in) {
  695. current_SC->SCp.have_data_in = -1;
  696. outb( 0xd0 | PARITY_MASK, TMC_Cntl_port );
  697.       }
  698.       break;
  699.     case 0x04: /* DATA IN -- tmc18c50/tmc18c30 only */
  700.       if (chip != tmc1800 && !current_SC->SCp.have_data_in) {
  701. current_SC->SCp.have_data_in = 1;
  702. outb( 0x90 | PARITY_MASK, TMC_Cntl_port );
  703.       }
  704.       break;
  705.     case 0x0c: /* STATUS IN */
  706.       current_SC->SCp.Status = inb( Read_SCSI_Data_port );
  707. #if EVERY_ACCESS
  708.       printk( "Status = %x, ", current_SC->SCp.Status );
  709. #endif
  710. #if ERRORS_ONLY
  711.       if (current_SC->SCp.Status
  712.   && current_SC->SCp.Status != 2
  713.   && current_SC->SCp.Status != 8) {
  714. printk( "ERROR fd_mcs: target = %d, command = %x, status = %xn",
  715. current_SC->target,
  716. current_SC->cmnd[0],
  717. current_SC->SCp.Status );
  718.       }
  719. #endif
  720.       break;
  721.     case 0x0a: /* MESSAGE OUT */
  722.       outb( MESSAGE_REJECT, Write_SCSI_Data_port ); /* Reject */
  723.       break;
  724.     case 0x0e: /* MESSAGE IN */
  725.       current_SC->SCp.Message = inb( Read_SCSI_Data_port );
  726. #if EVERY_ACCESS
  727.       printk( "Message = %x, ", current_SC->SCp.Message );
  728. #endif
  729.       if (!current_SC->SCp.Message) ++done;
  730. #if DEBUG_MESSAGES || EVERY_ACCESS
  731.       if (current_SC->SCp.Message) {
  732. printk( "fd_mcs: message = %xn", current_SC->SCp.Message );
  733.       }
  734. #endif
  735.       break;
  736.     }
  737.   }
  738.   if (chip == tmc1800
  739.       && !current_SC->SCp.have_data_in
  740.       && (current_SC->SCp.sent_command
  741.   >= current_SC->cmd_len)) {
  742.     /* We have to get the FIFO direction
  743.        correct, so I've made a table based
  744.        on the SCSI Standard of which commands
  745.        appear to require a DATA OUT phase.
  746.        */
  747.     /*
  748.       p. 94: Command for all device types
  749.       CHANGE DEFINITION            40 DATA OUT
  750.       COMPARE                      39 DATA OUT
  751.       COPY                         18 DATA OUT
  752.       COPY AND VERIFY              3a DATA OUT
  753.       INQUIRY                      12 
  754.       LOG SELECT                   4c DATA OUT
  755.       LOG SENSE                    4d
  756.       MODE SELECT (6)              15 DATA OUT
  757.       MODE SELECT (10)             55 DATA OUT
  758.       MODE SENSE (6)               1a
  759.       MODE SENSE (10)              5a
  760.       READ BUFFER                  3c
  761.       RECEIVE DIAGNOSTIC RESULTS   1c
  762.       REQUEST SENSE                03
  763.       SEND DIAGNOSTIC              1d DATA OUT
  764.       TEST UNIT READY              00
  765.       WRITE BUFFER                 3b DATA OUT
  766.       p.178: Commands for direct-access devices (not listed on p. 94)
  767.       FORMAT UNIT                  04 DATA OUT
  768.       LOCK-UNLOCK CACHE            36
  769.       PRE-FETCH                    34
  770.       PREVENT-ALLOW MEDIUM REMOVAL 1e
  771.       READ (6)/RECEIVE             08
  772.       READ (10)                    3c
  773.       READ CAPACITY                25
  774.       READ DEFECT DATA (10)        37
  775.       READ LONG                    3e
  776.       REASSIGN BLOCKS              07 DATA OUT
  777.       RELEASE                      17
  778.       RESERVE                      16 DATA OUT
  779.       REZERO UNIT/REWIND           01
  780.       SEARCH DATA EQUAL (10)       31 DATA OUT
  781.       SEARCH DATA HIGH (10)        30 DATA OUT
  782.       SEARCH DATA LOW (10)         32 DATA OUT
  783.       SEEK (6)                     0b
  784.       SEEK (10)                    2b
  785.       SET LIMITS (10)              33
  786.       START STOP UNIT              1b
  787.       SYNCHRONIZE CACHE            35
  788.       VERIFY (10)                  2f
  789.       WRITE (6)/PRINT/SEND         0a DATA OUT
  790.       WRITE (10)/SEND              2a DATA OUT
  791.       WRITE AND VERIFY (10)        2e DATA OUT
  792.       WRITE LONG                   3f DATA OUT
  793.       WRITE SAME                   41 DATA OUT ?
  794.       p. 261: Commands for sequential-access devices (not previously listed)
  795.       ERASE                        19
  796.       LOAD UNLOAD                  1b
  797.       LOCATE                       2b
  798.       READ BLOCK LIMITS            05
  799.       READ POSITION                34
  800.       READ REVERSE                 0f
  801.       RECOVER BUFFERED DATA        14
  802.       SPACE                        11
  803.       WRITE FILEMARKS              10 ?
  804.       p. 298: Commands for printer devices (not previously listed)
  805.       ****** NOT SUPPORTED BY THIS DRIVER, since 0b is SEEK (6) *****
  806.       SLEW AND PRINT               0b DATA OUT  -- same as seek
  807.       STOP PRINT                   1b
  808.       SYNCHRONIZE BUFFER           10
  809.       p. 315: Commands for processor devices (not previously listed)
  810.       p. 321: Commands for write-once devices (not previously listed)
  811.       MEDIUM SCAN                  38
  812.       READ (12)                    a8
  813.       SEARCH DATA EQUAL (12)       b1 DATA OUT
  814.       SEARCH DATA HIGH (12)        b0 DATA OUT
  815.       SEARCH DATA LOW (12)         b2 DATA OUT
  816.       SET LIMITS (12)              b3
  817.       VERIFY (12)                  af
  818.       WRITE (12)                   aa DATA OUT
  819.       WRITE AND VERIFY (12)        ae DATA OUT
  820.       p. 332: Commands for CD-ROM devices (not previously listed)
  821.       PAUSE/RESUME                 4b
  822.       PLAY AUDIO (10)              45
  823.       PLAY AUDIO (12)              a5
  824.       PLAY AUDIO MSF               47
  825.       PLAY TRACK RELATIVE (10)     49
  826.       PLAY TRACK RELATIVE (12)     a9
  827.       READ HEADER                  44
  828.       READ SUB-CHANNEL             42
  829.       READ TOC                     43
  830.       p. 370: Commands for scanner devices (not previously listed)
  831.       GET DATA BUFFER STATUS       34
  832.       GET WINDOW                   25
  833.       OBJECT POSITION              31
  834.       SCAN                         1b
  835.       SET WINDOW                   24 DATA OUT
  836.       p. 391: Commands for optical memory devices (not listed)
  837.       ERASE (10)                   2c
  838.       ERASE (12)                   ac
  839.       MEDIUM SCAN                  38 DATA OUT
  840.       READ DEFECT DATA (12)        b7
  841.       READ GENERATION              29
  842.       READ UPDATED BLOCK           2d
  843.       UPDATE BLOCK                 3d DATA OUT
  844.       p. 419: Commands for medium changer devices (not listed)
  845.       EXCHANGE MEDIUM              46
  846.       INITIALIZE ELEMENT STATUS    07
  847.       MOVE MEDIUM                  a5
  848.       POSITION TO ELEMENT          2b
  849.       READ ELEMENT STATUS          b8
  850.       REQUEST VOL. ELEMENT ADDRESS b5
  851.       SEND VOLUME TAG              b6 DATA OUT
  852.       p. 454: Commands for communications devices (not listed previously)
  853.       GET MESSAGE (6)              08
  854.       GET MESSAGE (10)             28
  855.       GET MESSAGE (12)             a8
  856.       */
  857.     switch (current_SC->cmnd[0]) {
  858.     case CHANGE_DEFINITION: case COMPARE:         case COPY:
  859.     case COPY_VERIFY:       case LOG_SELECT:      case MODE_SELECT:
  860.     case MODE_SELECT_10:    case SEND_DIAGNOSTIC: case WRITE_BUFFER:
  861.     case FORMAT_UNIT:       case REASSIGN_BLOCKS: case RESERVE:
  862.     case SEARCH_EQUAL:      case SEARCH_HIGH:     case SEARCH_LOW:
  863.     case WRITE_6:           case WRITE_10:        case WRITE_VERIFY:
  864.     case 0x3f:              case 0x41:
  865.     case 0xb1:              case 0xb0:            case 0xb2:
  866.     case 0xaa:              case 0xae:
  867.     case 0x24:
  868.     case 0x38:              case 0x3d:
  869.     case 0xb6:
  870.  
  871.     case 0xea: /* alternate number for WRITE LONG */
  872.  
  873.       current_SC->SCp.have_data_in = -1;
  874.       outb( 0xd0 | PARITY_MASK, TMC_Cntl_port );
  875.       break;
  876.     case 0x00:
  877.     default:
  878.  
  879.       current_SC->SCp.have_data_in = 1;
  880.       outb( 0x90 | PARITY_MASK, TMC_Cntl_port );
  881.       break;
  882.     }
  883.   }
  884.   if (current_SC->SCp.have_data_in == -1) { /* DATA OUT */
  885.     while ( (data_count = FIFO_Size - inw( FIFO_Data_Count_port )) > 512 ) {
  886. #if EVERY_ACCESS
  887.       printk( "DC=%d, ", data_count ) ;
  888. #endif
  889.       if (data_count > current_SC->SCp.this_residual)
  890. data_count = current_SC->SCp.this_residual;
  891.       if (data_count > 0) {
  892. #if EVERY_ACCESS
  893. printk( "%d OUT, ", data_count );
  894. #endif
  895. if (data_count == 1) {
  896.   Bytes_Written++;
  897.   outb( *current_SC->SCp.ptr++, Write_FIFO_port );
  898.   --current_SC->SCp.this_residual;
  899. } else {
  900.   data_count >>= 1;
  901.   tmp_count = data_count << 1;
  902.   outsw( Write_FIFO_port, current_SC->SCp.ptr, data_count );
  903.   current_SC->SCp.ptr += tmp_count;
  904.   Bytes_Written += tmp_count;
  905.   current_SC->SCp.this_residual -= tmp_count;
  906. }
  907.       }
  908.       if (!current_SC->SCp.this_residual) {
  909. if (current_SC->SCp.buffers_residual) {
  910.   --current_SC->SCp.buffers_residual;
  911.   ++current_SC->SCp.buffer;
  912.   current_SC->SCp.ptr = current_SC->SCp.buffer->address;
  913.   current_SC->SCp.this_residual = current_SC->SCp.buffer->length;
  914. } else
  915.   break;
  916.       }
  917.     }
  918.   } else if (current_SC->SCp.have_data_in == 1) { /* DATA IN */
  919.     while ((data_count = inw( FIFO_Data_Count_port )) > 0) {
  920. #if EVERY_ACCESS
  921.       printk( "DC=%d, ", data_count );
  922. #endif
  923.       if (data_count > current_SC->SCp.this_residual)
  924. data_count = current_SC->SCp.this_residual;
  925.       if (data_count) {
  926. #if EVERY_ACCESS
  927. printk( "%d IN, ", data_count );
  928. #endif
  929. if (data_count == 1) {
  930.   Bytes_Read++;
  931.   *current_SC->SCp.ptr++ = inb( Read_FIFO_port );
  932.   --current_SC->SCp.this_residual;
  933. } else {
  934.   data_count >>= 1; /* Number of words */
  935.   tmp_count = data_count << 1;
  936.   insw( Read_FIFO_port, current_SC->SCp.ptr, data_count );
  937.   current_SC->SCp.ptr += tmp_count;
  938.   Bytes_Read += tmp_count;
  939.   current_SC->SCp.this_residual -= tmp_count;
  940. }
  941.       }
  942.       if (!current_SC->SCp.this_residual
  943.   && current_SC->SCp.buffers_residual) {
  944. --current_SC->SCp.buffers_residual;
  945. ++current_SC->SCp.buffer;
  946. current_SC->SCp.ptr = current_SC->SCp.buffer->address;
  947. current_SC->SCp.this_residual = current_SC->SCp.buffer->length;
  948.       }
  949.     }
  950.   }
  951.    
  952.   if (done) {
  953. #if EVERY_ACCESS
  954.     printk( " ** IN DONE %d ** ", current_SC->SCp.have_data_in );
  955. #endif
  956. #if ERRORS_ONLY
  957.     if (current_SC->cmnd[0] == REQUEST_SENSE && !current_SC->SCp.Status) {
  958.       if ((unsigned char)(*((char *)current_SC->request_buffer+2)) & 0x0f) {
  959. unsigned char key;
  960. unsigned char code;
  961. unsigned char qualifier;
  962. key = (unsigned char)(*((char *)current_SC->request_buffer + 2))
  963.   & 0x0f;
  964. code = (unsigned char)(*((char *)current_SC->request_buffer + 12));
  965. qualifier = (unsigned char)(*((char *)current_SC->request_buffer
  966.       + 13));
  967. if (key != UNIT_ATTENTION
  968.     && !(key == NOT_READY
  969.  && code == 0x04
  970.  && (!qualifier || qualifier == 0x02 || qualifier == 0x01))
  971.     && !(key == ILLEGAL_REQUEST && (code == 0x25
  972.     || code == 0x24
  973.     || !code)))
  974.   
  975.   printk( "fd_mcs: REQUEST SENSE "
  976.   "Key = %x, Code = %x, Qualifier = %xn",
  977.   key, code, qualifier );
  978.       }
  979.     }
  980. #endif
  981. #if EVERY_ACCESS
  982.     printk( "BEFORE MY_DONE. . ." );
  983. #endif
  984.     spin_lock_irqsave(&io_request_lock, flags);
  985.     my_done( shpnt,
  986.      (current_SC->SCp.Status & 0xff)
  987.      | ((current_SC->SCp.Message & 0xff) << 8) | (DID_OK << 16) );
  988.     spin_unlock_irqrestore(&io_request_lock, flags);
  989. #if EVERY_ACCESS
  990.     printk( "RETURNING.n" );
  991. #endif
  992.       
  993.   } else {
  994.     if (current_SC->SCp.phase & disconnect) {
  995.       outb( 0xd0 | FIFO_COUNT, Interrupt_Cntl_port );
  996.       outb( 0x00, SCSI_Cntl_port );
  997.     } else {
  998.       outb( 0x90 | FIFO_COUNT, Interrupt_Cntl_port );
  999.     }
  1000.   }
  1001. #if DEBUG_RACE
  1002.   in_interrupt_flag = 0;
  1003. #endif
  1004.   return;
  1005. }
  1006. int fd_mcs_release(struct Scsi_Host *shpnt)
  1007. {
  1008.   int i, this_host, irq_usage;
  1009.   release_region(shpnt->io_port, shpnt->n_io_port);
  1010.   this_host = -1;
  1011.   irq_usage = 0;
  1012.   for (i = 0; i < found; i++) {
  1013.     if (shpnt == hosts[i])
  1014.       this_host = i;
  1015.     if (shpnt->irq == hosts[i]->irq)
  1016.       irq_usage++;
  1017.   }
  1018.   /* only for the last one */
  1019.   if (1 == irq_usage)
  1020.     free_irq(shpnt->irq, hosts);
  1021.   found--;
  1022.   for (i = this_host; i < found; i++)
  1023.     hosts[i] = hosts[i+1];
  1024.   hosts[found] = NULL;
  1025.   return 0;
  1026. }
  1027. int fd_mcs_queue( Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
  1028. {
  1029.   struct Scsi_Host *shpnt = SCpnt->host;
  1030.   if (in_command) {
  1031.     panic( "fd_mcs: fd_mcs_queue() NOT REENTRANT!n" );
  1032.   }
  1033. #if EVERY_ACCESS
  1034.   printk( "queue: target = %d cmnd = 0x%02x pieces = %d size = %un",
  1035.   SCpnt->target,
  1036.   *(unsigned char *)SCpnt->cmnd,
  1037.   SCpnt->use_sg,
  1038.   SCpnt->request_bufflen );
  1039. #endif
  1040.   fd_mcs_make_bus_idle(shpnt);
  1041.   SCpnt->scsi_done = done; /* Save this for the done function */
  1042.   current_SC       = SCpnt;
  1043.   /* Initialize static data */
  1044.   if (current_SC->use_sg) {
  1045.     current_SC->SCp.buffer =
  1046.       (struct scatterlist *)current_SC->request_buffer;
  1047.     current_SC->SCp.ptr              = current_SC->SCp.buffer->address;
  1048.     current_SC->SCp.this_residual    = current_SC->SCp.buffer->length;
  1049.     current_SC->SCp.buffers_residual = current_SC->use_sg - 1;
  1050.   } else {
  1051.     current_SC->SCp.ptr              = (char *)current_SC->request_buffer;
  1052.     current_SC->SCp.this_residual    = current_SC->request_bufflen;
  1053.     current_SC->SCp.buffer           = NULL;
  1054.     current_SC->SCp.buffers_residual = 0;
  1055.   }
  1056.  
  1057.    
  1058.   current_SC->SCp.Status              = 0;
  1059.   current_SC->SCp.Message             = 0;
  1060.   current_SC->SCp.have_data_in        = 0;
  1061.   current_SC->SCp.sent_command        = 0;
  1062.   current_SC->SCp.phase               = in_arbitration;
  1063.   /* Start arbitration */
  1064.   outb( 0x00, Interrupt_Cntl_port );
  1065.   outb( 0x00, SCSI_Cntl_port );              /* Disable data drivers */
  1066.   outb( adapter_mask, SCSI_Data_NoACK_port ); /* Set our id bit */
  1067.   in_command = 1;
  1068.   outb( 0x20, Interrupt_Cntl_port );
  1069.   outb( 0x14 | PARITY_MASK, TMC_Cntl_port ); /* Start arbitration */
  1070.   return 0;
  1071. }
  1072. static void internal_done( Scsi_Cmnd *SCpnt )
  1073. {
  1074.   /* flag it done */
  1075.   SCpnt->host_scribble = (unsigned char *)1;
  1076. }
  1077. int fd_mcs_command( Scsi_Cmnd *SCpnt )
  1078. {
  1079.   fd_mcs_queue( SCpnt, internal_done );
  1080.   /* host_scribble is used for status here */
  1081.   SCpnt->host_scribble = NULL;
  1082.   while (!SCpnt->host_scribble)
  1083.     barrier();
  1084.   return SCpnt->result;
  1085. }
  1086. #if DEBUG_ABORT || DEBUG_RESET
  1087. static void fd_mcs_print_info( Scsi_Cmnd *SCpnt )
  1088. {
  1089.   unsigned int imr;
  1090.   unsigned int irr;
  1091.   unsigned int isr;
  1092.   struct Scsi_Host *shpnt = SCpnt->host;
  1093.   if (!SCpnt || !SCpnt->host) {
  1094.     printk( "fd_mcs: cannot provide detailed informationn" );
  1095.   }
  1096.    
  1097.   printk( "%sn", fd_mcs_info( SCpnt->host ) );
  1098.   print_banner( SCpnt->host );
  1099.   switch (SCpnt->SCp.phase) {
  1100.   case in_arbitration: printk( "arbitration " ); break;
  1101.   case in_selection:   printk( "selection " );   break;
  1102.   case in_other:       printk( "other " );       break;
  1103.   default:             printk( "unknown " );     break;
  1104.   }
  1105.   printk( "(%d), target = %d cmnd = 0x%02x pieces = %d size = %un",
  1106.   SCpnt->SCp.phase,
  1107.   SCpnt->target,
  1108.   *(unsigned char *)SCpnt->cmnd,
  1109.   SCpnt->use_sg,
  1110.   SCpnt->request_bufflen );
  1111.   printk( "sent_command = %d, have_data_in = %d, timeout = %dn",
  1112.   SCpnt->SCp.sent_command,
  1113.   SCpnt->SCp.have_data_in,
  1114.   SCpnt->timeout );
  1115. #if DEBUG_RACE
  1116.   printk( "in_interrupt_flag = %dn", in_interrupt_flag );
  1117. #endif
  1118.   imr = (inb( 0x0a1 ) << 8) + inb( 0x21 );
  1119.   outb( 0x0a, 0xa0 );
  1120.   irr = inb( 0xa0 ) << 8;
  1121.   outb( 0x0a, 0x20 );
  1122.   irr += inb( 0x20 );
  1123.   outb( 0x0b, 0xa0 );
  1124.   isr = inb( 0xa0 ) << 8;
  1125.   outb( 0x0b, 0x20 );
  1126.   isr += inb( 0x20 );
  1127.   /* Print out interesting information */
  1128.   printk( "IMR = 0x%04x", imr );
  1129.   if (imr & (1 << shpnt->irq))
  1130.     printk( " (masked)" );
  1131.   printk( ", IRR = 0x%04x, ISR = 0x%04xn", irr, isr );
  1132.   printk( "SCSI Status      = 0x%02xn", inb( SCSI_Status_port ) );
  1133.   printk( "TMC Status       = 0x%02x", inb( TMC_Status_port ) );
  1134.   if (inb( TMC_Status_port ) & 1)
  1135.     printk( " (interrupt)" );
  1136.   printk( "n" );
  1137.   printk( "Interrupt Status = 0x%02x", inb( Interrupt_Status_port ) );
  1138.   if (inb( Interrupt_Status_port ) & 0x08)
  1139.     printk( " (enabled)" );
  1140.   printk( "n" );
  1141.   if (chip == tmc18c50 || chip == tmc18c30) {
  1142.     printk( "FIFO Status      = 0x%02xn", inb( shpnt->io_port + FIFO_Status ) );
  1143.     printk( "Int. Condition   = 0x%02xn",
  1144.     inb( shpnt->io_port + Interrupt_Cond ) );
  1145.   }
  1146.   printk( "Configuration 1  = 0x%02xn", inb( shpnt->io_port + Configuration1 ) );
  1147.   if (chip == tmc18c50 || chip == tmc18c30)
  1148.     printk( "Configuration 2  = 0x%02xn",
  1149.     inb( shpnt->io_port + Configuration2 ) );
  1150. }
  1151. #endif
  1152. int fd_mcs_abort( Scsi_Cmnd *SCpnt)
  1153. {
  1154.   struct Scsi_Host *shpnt = SCpnt->host;
  1155.   unsigned long flags;
  1156. #if EVERY_ACCESS || ERRORS_ONLY || DEBUG_ABORT
  1157.   printk( "fd_mcs: abort " );
  1158. #endif
  1159.   save_flags( flags );
  1160.   cli();
  1161.   if (!in_command) {
  1162. #if EVERY_ACCESS || ERRORS_ONLY
  1163.     printk( " (not in command)n" );
  1164. #endif
  1165.     restore_flags( flags );
  1166.     return SCSI_ABORT_NOT_RUNNING;
  1167.   } else printk( "n" );
  1168. #if DEBUG_ABORT
  1169.   fd_mcs_print_info( SCpnt );
  1170. #endif
  1171.   fd_mcs_make_bus_idle(shpnt);
  1172.   current_SC->SCp.phase |= aborted;
  1173.   current_SC->result = DID_ABORT << 16;
  1174.   restore_flags( flags );
  1175.    
  1176.   /* Aborts are not done well. . . */
  1177.   spin_lock_irqsave(&io_request_lock, flags);
  1178.   my_done( shpnt, DID_ABORT << 16 );
  1179.   spin_unlock_irqrestore(&io_request_lock, flags);
  1180.   return SCSI_ABORT_SUCCESS;
  1181. }
  1182. int fd_mcs_reset( Scsi_Cmnd *SCpnt, unsigned int reset_flags )
  1183. {
  1184.   struct Scsi_Host *shpnt = SCpnt->host;
  1185. #if DEBUG_RESET
  1186.   static int called_once = 0;
  1187. #endif
  1188. #if ERRORS_ONLY
  1189.   if (SCpnt) printk( "fd_mcs: SCSI Bus Resetn" );
  1190. #endif
  1191. #if DEBUG_RESET
  1192.   if (called_once) fd_mcs_print_info( current_SC );
  1193.   called_once = 1;
  1194. #endif
  1195.    
  1196.   outb( 1, SCSI_Cntl_port );
  1197.   do_pause( 2 );
  1198.   outb( 0, SCSI_Cntl_port );
  1199.   do_pause( 115 );
  1200.   outb( 0, SCSI_Mode_Cntl_port );
  1201.   outb( PARITY_MASK, TMC_Cntl_port );
  1202.   /* Unless this is the very first call (i.e., SCPnt == NULL), everything
  1203.      is probably hosed at this point.  We will, however, try to keep
  1204.      things going by informing the high-level code that we need help. */
  1205.   return SCSI_RESET_WAKEUP;
  1206. }
  1207. #include "sd.h"
  1208. #include <scsi/scsi_ioctl.h>
  1209. int fd_mcs_biosparam( Scsi_Disk *disk, kdev_t dev, int *info_array )
  1210. {
  1211.   int              drive;
  1212.   unsigned char    buf[512 + sizeof( int ) * 2];
  1213.   int     size      = disk->capacity;
  1214.   int              *sizes    = (int *)buf;
  1215.   unsigned char    *data     = (unsigned char *)(sizes + 2);
  1216.   unsigned char    do_read[] = { READ_6, 0, 0, 0, 1, 0 };
  1217.   int              retcode;
  1218.   /* BIOS >= 3.4 for MCA cards */
  1219.   drive = MINOR(dev) / 16;
  1220.   /* This algorithm was provided by Future Domain (much thanks!). */
  1221.   sizes[0] = 0; /* zero bytes out */
  1222.   sizes[1] = 512; /* one sector in */
  1223.   memcpy( data, do_read, sizeof( do_read ) );
  1224.   retcode = kernel_scsi_ioctl( disk->device,
  1225.        SCSI_IOCTL_SEND_COMMAND,
  1226.        (void *)buf );
  1227.   if (!retcode     /* SCSI command ok */
  1228.       && data[511] == 0xaa && data[510] == 0x55 /* Partition table valid */
  1229.       && data[0x1c2]) {     /* Partition type */
  1230.     /* The partition table layout is as follows:
  1231.  Start: 0x1b3h
  1232.  Offset: 0 = partition status
  1233.  1 = starting head
  1234.  2 = starting sector and cylinder (word, encoded)
  1235.  4 = partition type
  1236.  5 = ending head
  1237.  6 = ending sector and cylinder (word, encoded)
  1238.  8 = starting absolute sector (double word)
  1239.  c = number of sectors (double word)
  1240.  Signature: 0x1fe = 0x55aa
  1241.  So, this algorithm assumes:
  1242.  1) the first partition table is in use,
  1243.  2) the data in the first entry is correct, and
  1244.  3) partitions never divide cylinders
  1245.  Note that (1) may be FALSE for NetBSD (and other BSD flavors),
  1246.  as well as for Linux.  Note also, that Linux doesn't pay any
  1247.  attention to the fields that are used by this algorithm -- it
  1248.  only uses the absolute sector data.  Recent versions of Linux's
  1249.  fdisk(1) will fill this data in correctly, and forthcoming
  1250.  versions will check for consistency.
  1251.  Checking for a non-zero partition type is not part of the
  1252.  Future Domain algorithm, but it seemed to be a reasonable thing
  1253.  to do, especially in the Linux and BSD worlds. */
  1254.     info_array[0] = data[0x1c3] + 1;     /* heads */
  1255.     info_array[1] = data[0x1c4] & 0x3f;     /* sectors */
  1256.   } else {
  1257.     /* Note that this new method guarantees that there will always be
  1258.  less than 1024 cylinders on a platter.  This is good for drives
  1259.  up to approximately 7.85GB (where 1GB = 1024 * 1024 kB). */
  1260.     if ((unsigned int)size >= 0x7e0000U) {
  1261.       info_array[0] = 0xff; /* heads   = 255 */
  1262.       info_array[1] = 0x3f; /* sectors =  63 */
  1263.     } else if ((unsigned int)size >= 0x200000U) {
  1264.       info_array[0] = 0x80; /* heads   = 128 */
  1265.       info_array[1] = 0x3f; /* sectors =  63 */
  1266.     } else {
  1267.       info_array[0] = 0x40; /* heads   =  64 */
  1268.       info_array[1] = 0x20; /* sectors =  32 */
  1269.     }
  1270.   }
  1271.   /* For both methods, compute the cylinders */
  1272.   info_array[2] = (unsigned int)size / (info_array[0] * info_array[1] );
  1273.    
  1274.   return 0;
  1275. }
  1276. /* Eventually this will go into an include file, but this will be later */
  1277. static Scsi_Host_Template driver_template = FD_MCS;
  1278. #include "scsi_module.c"