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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *    wd33c93.h -  Linux device driver definitions for the
  3.  *                 Commodore Amiga A2091/590 SCSI controller card
  4.  *
  5.  *    IMPORTANT: This file is for version 1.25 - 09/Jul/1997
  6.  *
  7.  * Copyright (c) 1996 John Shifflett, GeoLog Consulting
  8.  *    john@geolog.com
  9.  *    jshiffle@netcom.com
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2, or (at your option)
  14.  * any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  */
  22. #ifndef WD33C93_H
  23. #define WD33C93_H
  24. #include <linux/config.h>
  25. #define PROC_INTERFACE     /* add code for /proc/scsi/wd33c93/xxx interface */
  26. #ifdef  PROC_INTERFACE
  27. #define PROC_STATISTICS    /* add code for keeping various real time stats */
  28. #endif
  29. #define SYNC_DEBUG         /* extra info on sync negotiation printed */
  30. #define DEBUGGING_ON       /* enable command-line debugging bitmask */
  31. #define DEBUG_DEFAULTS 0   /* default debugging bitmask */
  32. #ifdef DEBUGGING_ON
  33. #define DB(f,a) if (hostdata->args & (f)) a;
  34. #else
  35. #define DB(f,a)
  36. #endif
  37. #define uchar unsigned char
  38. /* wd register names */
  39. #define WD_OWN_ID    0x00
  40. #define WD_CONTROL      0x01
  41. #define WD_TIMEOUT_PERIOD  0x02
  42. #define WD_CDB_1     0x03
  43. #define WD_CDB_2     0x04
  44. #define WD_CDB_3     0x05
  45. #define WD_CDB_4     0x06
  46. #define WD_CDB_5     0x07
  47. #define WD_CDB_6     0x08
  48. #define WD_CDB_7     0x09
  49. #define WD_CDB_8     0x0a
  50. #define WD_CDB_9     0x0b
  51. #define WD_CDB_10    0x0c
  52. #define WD_CDB_11    0x0d
  53. #define WD_CDB_12    0x0e
  54. #define WD_TARGET_LUN      0x0f
  55. #define WD_COMMAND_PHASE   0x10
  56. #define WD_SYNCHRONOUS_TRANSFER 0x11
  57. #define WD_TRANSFER_COUNT_MSB 0x12
  58. #define WD_TRANSFER_COUNT  0x13
  59. #define WD_TRANSFER_COUNT_LSB 0x14
  60. #define WD_DESTINATION_ID  0x15
  61. #define WD_SOURCE_ID    0x16
  62. #define WD_SCSI_STATUS     0x17
  63. #define WD_COMMAND      0x18
  64. #define WD_DATA      0x19
  65. #define WD_QUEUE_TAG    0x1a
  66. #define WD_AUXILIARY_STATUS   0x1f
  67. /* WD commands */
  68. #define WD_CMD_RESET    0x00
  69. #define WD_CMD_ABORT    0x01
  70. #define WD_CMD_ASSERT_ATN  0x02
  71. #define WD_CMD_NEGATE_ACK  0x03
  72. #define WD_CMD_DISCONNECT  0x04
  73. #define WD_CMD_RESELECT    0x05
  74. #define WD_CMD_SEL_ATN     0x06
  75. #define WD_CMD_SEL      0x07
  76. #define WD_CMD_SEL_ATN_XFER   0x08
  77. #define WD_CMD_SEL_XFER    0x09
  78. #define WD_CMD_RESEL_RECEIVE  0x0a
  79. #define WD_CMD_RESEL_SEND  0x0b
  80. #define WD_CMD_WAIT_SEL_RECEIVE 0x0c
  81. #define WD_CMD_TRANS_ADDR  0x18
  82. #define WD_CMD_TRANS_INFO  0x20
  83. #define WD_CMD_TRANSFER_PAD   0x21
  84. #define WD_CMD_SBT_MODE    0x80
  85. /* ASR register */
  86. #define ASR_INT         (0x80)
  87. #define ASR_LCI         (0x40)
  88. #define ASR_BSY         (0x20)
  89. #define ASR_CIP         (0x10)
  90. #define ASR_PE          (0x02)
  91. #define ASR_DBR         (0x01)
  92. /* SCSI Bus Phases */
  93. #define PHS_DATA_OUT    0x00
  94. #define PHS_DATA_IN     0x01
  95. #define PHS_COMMAND     0x02
  96. #define PHS_STATUS      0x03
  97. #define PHS_MESS_OUT    0x06
  98. #define PHS_MESS_IN     0x07
  99. /* Command Status Register definitions */
  100.   /* reset state interrupts */
  101. #define CSR_RESET    0x00
  102. #define CSR_RESET_AF    0x01
  103.   /* successful completion interrupts */
  104. #define CSR_RESELECT    0x10
  105. #define CSR_SELECT      0x11
  106. #define CSR_SEL_XFER_DONE  0x16
  107. #define CSR_XFER_DONE      0x18
  108.   /* paused or aborted interrupts */
  109. #define CSR_MSGIN    0x20
  110. #define CSR_SDP         0x21
  111. #define CSR_SEL_ABORT      0x22
  112. #define CSR_RESEL_ABORT    0x25
  113. #define CSR_RESEL_ABORT_AM 0x27
  114. #define CSR_ABORT    0x28
  115.   /* terminated interrupts */
  116. #define CSR_INVALID     0x40
  117. #define CSR_UNEXP_DISC     0x41
  118. #define CSR_TIMEOUT     0x42
  119. #define CSR_PARITY      0x43
  120. #define CSR_PARITY_ATN     0x44
  121. #define CSR_BAD_STATUS     0x45
  122. #define CSR_UNEXP    0x48
  123.   /* service required interrupts */
  124. #define CSR_RESEL    0x80
  125. #define CSR_RESEL_AM    0x81
  126. #define CSR_DISC     0x85
  127. #define CSR_SRV_REQ     0x88
  128.    /* Own ID/CDB Size register */
  129. #define OWNID_EAF    0x08
  130. #define OWNID_EHP    0x10
  131. #define OWNID_RAF    0x20
  132. #define OWNID_FS_8   0x00
  133. #define OWNID_FS_12  0x40
  134. #define OWNID_FS_16  0x80
  135.    /* define these so we don't have to change a2091.c, etc. */
  136. #define WD33C93_FS_8_10  OWNID_FS_8
  137. #define WD33C93_FS_12_15 OWNID_FS_12
  138. #define WD33C93_FS_16_20 OWNID_FS_16
  139.    /* Control register */
  140. #define CTRL_HSP     0x01
  141. #define CTRL_HA      0x02
  142. #define CTRL_IDI     0x04
  143. #define CTRL_EDI     0x08
  144. #define CTRL_HHP     0x10
  145. #define CTRL_POLLED  0x00
  146. #define CTRL_BURST   0x20
  147. #define CTRL_BUS     0x40
  148. #define CTRL_DMA     0x80
  149.    /* Timeout Period register */
  150. #define TIMEOUT_PERIOD_VALUE  20    /* 20 = 200 ms */
  151.    /* Synchronous Transfer Register */
  152. #define STR_FSS      0x80
  153.    /* Destination ID register */
  154. #define DSTID_DPD    0x40
  155. #define DATA_OUT_DIR 0
  156. #define DATA_IN_DIR  1
  157. #define DSTID_SCC    0x80
  158.    /* Source ID register */
  159. #define SRCID_MASK   0x07
  160. #define SRCID_SIV    0x08
  161. #define SRCID_DSP    0x20
  162. #define SRCID_ES     0x40
  163. #define SRCID_ER     0x80
  164.    /* This is what the 3393 chip looks like to us */
  165. typedef struct {
  166.    volatile unsigned char  *SASR;
  167.    volatile unsigned char  *SCMD;
  168. } wd33c93_regs;
  169. typedef int (*dma_setup_t) (Scsi_Cmnd *SCpnt, int dir_in);
  170. typedef void (*dma_stop_t) (struct Scsi_Host *instance, Scsi_Cmnd *SCpnt,
  171.              int status);
  172. #define ILLEGAL_STATUS_BYTE   0xff
  173. #define DEFAULT_SX_PER   376     /* (ns) fairly safe */
  174. #define DEFAULT_SX_OFF   0       /* aka async */
  175. #define OPTIMUM_SX_PER   252     /* (ns) best we can do (mult-of-4) */
  176. #define OPTIMUM_SX_OFF   12      /* size of wd3393 fifo */
  177. struct sx_period {
  178.    unsigned int   period_ns;
  179.    uchar          reg_value;
  180.    };
  181. /* FEF: defines for hostdata->dma_buffer_pool */
  182. #define BUF_CHIP_ALLOCED 0
  183. #define BUF_SCSI_ALLOCED 1
  184. struct WD33C93_hostdata {
  185.     struct Scsi_Host *next;
  186.     wd33c93_regs     regs;
  187.     uchar            clock_freq;
  188.     uchar            chip;             /* what kind of wd33c93? */
  189.     uchar            microcode;        /* microcode rev */
  190.     uchar            dma_buffer_pool;  /* FEF: buffer from chip_ram? */
  191.     int              dma_dir;          /* data transfer dir. */
  192.     dma_setup_t      dma_setup;
  193.     dma_stop_t       dma_stop;
  194.     unsigned int     dma_xfer_mask;
  195.     uchar            *dma_bounce_buffer;
  196.     unsigned int     dma_bounce_len;
  197.     volatile uchar   busy[8];          /* index = target, bit = lun */
  198.     volatile Scsi_Cmnd *input_Q;       /* commands waiting to be started */
  199.     volatile Scsi_Cmnd *selecting;     /* trying to select this command */
  200.     volatile Scsi_Cmnd *connected;     /* currently connected command */
  201.     volatile Scsi_Cmnd *disconnected_Q;/* commands waiting for reconnect */
  202.     uchar            state;            /* what we are currently doing */
  203.     uchar            dma;              /* current state of DMA (on/off) */
  204.     uchar            level2;           /* extent to which Level-2 commands are used */
  205.     uchar            disconnect;       /* disconnect/reselect policy */
  206.     unsigned int     args;             /* set from command-line argument */
  207.     uchar            incoming_msg[8];  /* filled during message_in phase */
  208.     int              incoming_ptr;     /* mainly used with EXTENDED messages */
  209.     uchar            outgoing_msg[8];  /* send this during next message_out */
  210.     int              outgoing_len;     /* length of outgoing message */
  211.     unsigned int     default_sx_per;   /* default transfer period for SCSI bus */
  212.     uchar            sync_xfer[8];     /* sync_xfer reg settings per target */
  213.     uchar            sync_stat[8];     /* status of sync negotiation per target */
  214.     uchar            no_sync;          /* bitmask: don't do sync on these targets */
  215.     uchar            no_dma;           /* set this flag to disable DMA */
  216. #ifdef PROC_INTERFACE
  217.     uchar            proc;             /* bitmask: what's in proc output */
  218. #ifdef PROC_STATISTICS
  219.     unsigned long    cmd_cnt[8];       /* # of commands issued per target */
  220.     unsigned long    int_cnt;          /* # of interrupts serviced */
  221.     unsigned long    pio_cnt;          /* # of pio data transfers */
  222.     unsigned long    dma_cnt;          /* # of DMA data transfers */
  223.     unsigned long    disc_allowed_cnt[8]; /* # of disconnects allowed per target */
  224.     unsigned long    disc_done_cnt[8]; /* # of disconnects done per target*/
  225. #endif
  226. #endif
  227.     };
  228. /* defines for hostdata->chip */
  229. #define C_WD33C93       0
  230. #define C_WD33C93A      1
  231. #define C_WD33C93B      2
  232. #define C_UNKNOWN_CHIP  100
  233. /* defines for hostdata->state */
  234. #define S_UNCONNECTED         0
  235. #define S_SELECTING           1
  236. #define S_RUNNING_LEVEL2      2
  237. #define S_CONNECTED           3
  238. #define S_PRE_TMP_DISC        4
  239. #define S_PRE_CMP_DISC        5
  240. /* defines for hostdata->dma */
  241. #define D_DMA_OFF          0
  242. #define D_DMA_RUNNING      1
  243. /* defines for hostdata->level2 */
  244. /* NOTE: only the first 3 are implemented so far */
  245. #define L2_NONE      1  /* no combination commands - we get lots of ints */
  246. #define L2_SELECT    2  /* start with SEL_ATN_XFER, but never resume it */
  247. #define L2_BASIC     3  /* resume after STATUS ints & RDP messages */
  248. #define L2_DATA      4  /* resume after DATA_IN/OUT ints */
  249. #define L2_MOST      5  /* resume after anything except a RESELECT int */
  250. #define L2_RESELECT  6  /* resume after everything, including RESELECT ints */
  251. #define L2_ALL       7  /* always resume */
  252. /* defines for hostdata->disconnect */
  253. #define DIS_NEVER    0
  254. #define DIS_ADAPTIVE 1
  255. #define DIS_ALWAYS   2
  256. /* defines for hostdata->args */
  257. #define DB_TEST1              1<<0
  258. #define DB_TEST2              1<<1
  259. #define DB_QUEUE_COMMAND      1<<2
  260. #define DB_EXECUTE            1<<3
  261. #define DB_INTR               1<<4
  262. #define DB_TRANSFER           1<<5
  263. #define DB_MASK               0x3f
  264. /* defines for hostdata->sync_stat[] */
  265. #define SS_UNSET     0
  266. #define SS_FIRST     1
  267. #define SS_WAITING   2
  268. #define SS_SET       3
  269. /* defines for hostdata->proc */
  270. #define PR_VERSION   1<<0
  271. #define PR_INFO      1<<1
  272. #define PR_STATISTICS 1<<2
  273. #define PR_CONNECTED 1<<3
  274. #define PR_INPUTQ    1<<4
  275. #define PR_DISCQ     1<<5
  276. #define PR_TEST      1<<6
  277. #define PR_STOP      1<<7
  278. void wd33c93_init (struct Scsi_Host *instance, const wd33c93_regs regs,
  279.          dma_setup_t setup, dma_stop_t stop, int clock_freq);
  280. int wd33c93_abort (Scsi_Cmnd *cmd);
  281. int wd33c93_queuecommand (Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *));
  282. void wd33c93_intr (struct Scsi_Host *instance);
  283. int wd33c93_proc_info(char *, char **, off_t, int, int, int);
  284. int wd33c93_reset (Scsi_Cmnd *, unsigned int);
  285. void wd33c93_release(void);
  286. #endif /* WD33C93_H */