root/drivers/scsi/seagate.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  *      seagate.h Copyright (C) 1992 Drew Eckhardt 
   3  *      low level scsi driver header for ST01/ST02 by
   4  *              Drew Eckhardt 
   5  *
   6  *      <drew@colorado.edu>
   7  */
   8 
   9 #ifndef _SEAGATE_H
  10         #define SEAGATE_H
  11 /*
  12         $Header
  13 */
  14 #ifndef ASM
  15 int seagate_st0x_detect(Scsi_Host_Template *);
  16 int seagate_st0x_command(Scsi_Cmnd *);
  17 int seagate_st0x_queue_command(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  18 
  19 int seagate_st0x_abort(Scsi_Cmnd *);
  20 const char *seagate_st0x_info(struct Scsi_Host *);
  21 int seagate_st0x_reset(Scsi_Cmnd *); 
  22 
  23 #ifndef NULL
  24         #define NULL 0
  25 #endif
  26 
  27 int seagate_st0x_biosparam(Disk *, int, int*);
  28 
  29 #define SEAGATE_ST0X  {  NULL, NULL, NULL, "seagate", \
  30                          PROC_SCSI_SEAGATE, NULL, seagate_st0x_detect,  \
  31                          NULL,                                          \
  32                          seagate_st0x_info, seagate_st0x_command,       \
  33                          seagate_st0x_queue_command, seagate_st0x_abort, \
  34                          seagate_st0x_reset, NULL, seagate_st0x_biosparam, \
  35                          1, 7, SG_ALL, 1, 0, 0, DISABLE_CLUSTERING}
  36 #endif
  37 
  38 
  39 /*
  40         defining PARITY causes parity data to be checked
  41 */
  42 
  43 #define PARITY
  44 
  45 
  46 /*
  47         Thanks to Brian Antoine for the example code in his Messy-Loss ST-01
  48                 driver, and Mitsugu Suzuki for information on the ST-01
  49                 SCSI host.
  50 */
  51 
  52 /*
  53         CONTROL defines
  54 */
  55 
  56 #define CMD_RST                 0x01
  57 #define CMD_SEL                 0x02
  58 #define CMD_BSY                 0x04
  59 #define CMD_ATTN                0x08
  60 #define CMD_START_ARB           0x10
  61 #define CMD_EN_PARITY           0x20
  62 #define CMD_INTR                0x40
  63 #define CMD_DRVR_ENABLE         0x80
  64 
  65 /*
  66         STATUS
  67 */
  68 
  69 #define STAT_BSY                0x01
  70 #define STAT_MSG                0x02
  71 #define STAT_IO                 0x04
  72 #define STAT_CD                 0x08
  73 #define STAT_REQ                0x10
  74 #define STAT_SEL                0x20
  75 #define STAT_PARITY             0x40
  76 #define STAT_ARB_CMPL           0x80
  77 
  78 /* 
  79         REQUESTS
  80 */
  81 
  82 #define REQ_MASK (STAT_CD |  STAT_IO | STAT_MSG)
  83 #define REQ_DATAOUT 0
  84 #define REQ_DATAIN STAT_IO
  85 #define REQ_CMDOUT STAT_CD
  86 #define REQ_STATIN (STAT_CD | STAT_IO)
  87 #define REQ_MSGOUT (STAT_MSG | STAT_CD)
  88 #define REQ_MSGIN (STAT_MSG | STAT_CD | STAT_IO)
  89 
  90 extern volatile int seagate_st0x_timeout;
  91 
  92 #ifdef PARITY
  93         #define BASE_CMD CMD_EN_PARITY
  94 #else
  95         #define BASE_CMD  0
  96 #endif
  97 
  98 /*
  99         Debugging code
 100 */
 101 
 102 #define PHASE_BUS_FREE 1
 103 #define PHASE_ARBITRATION 2
 104 #define PHASE_SELECTION 4
 105 #define PHASE_DATAIN 8 
 106 #define PHASE_DATAOUT 0x10
 107 #define PHASE_CMDOUT 0x20
 108 #define PHASE_MSGIN 0x40
 109 #define PHASE_MSGOUT 0x80
 110 #define PHASE_STATUSIN 0x100
 111 #define PHASE_ETC (PHASE_DATAIN | PHASE_DATA_OUT | PHASE_CMDOUT | PHASE_MSGIN | PHASE_MSGOUT | PHASE_STATUSIN)
 112 #define PRINT_COMMAND 0x200
 113 #define PHASE_EXIT 0x400
 114 #define PHASE_RESELECT 0x800
 115 #define DEBUG_FAST 0x1000
 116 #define DEBUG_SG   0x2000
 117 #define DEBUG_LINKED    0x4000
 118 #define DEBUG_BORKEN    0x8000
 119 
 120 /* 
 121  *      Control options - these are timeouts specified in .01 seconds.
 122  */
 123 
 124 /* 30, 20 work */
 125 #define ST0X_BUS_FREE_DELAY 25
 126 #define ST0X_SELECTION_DELAY 25
 127 
 128 #define eoi() __asm__("push %%eax\nmovb $0x20, %%al\noutb %%al, $0x20\npop %%eax"::)
 129         
 130 #define SEAGATE 1       /* these determine the type of the controller */
 131 #define FD      2
 132 
 133 #define ST0X_ID_STR     "Seagate ST-01/ST-02"
 134 #define FD_ID_STR       "TMC-8XX/TMC-950"
 135 
 136 #endif
 137 

/* [previous][next][first][last][top][bottom][index][help] */