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

嵌入式Linux

开发平台:

Unix_Linux

  1. /***********************************************************************
  2. ;* File Name : TMSCSIM.H        *
  3. ;*     TEKRAM DC-390(T) PCI SCSI Bus Master Host Adapter  *
  4. ;*     Device Driver        *
  5. ;***********************************************************************/
  6. /* $Id: tmscsim.h,v 2.15.2.3 2000/11/17 20:52:27 garloff Exp $ */
  7. #ifndef _TMSCSIM_H
  8. #define _TMSCSIM_H
  9. #include <linux/types.h>
  10. #include <linux/config.h>
  11. #define IRQ_NONE 255
  12. #define MAX_ADAPTER_NUM  4
  13. #define MAX_SG_LIST_BUF  16 /* Not used */
  14. #define MAX_CMD_PER_LUN  32
  15. #define MAX_CMD_QUEUE MAX_CMD_PER_LUN+MAX_CMD_PER_LUN/2+1
  16. #define MAX_SCSI_ID 8
  17. #define MAX_SRB_CNT MAX_CMD_QUEUE+1 /* Max number of started commands */
  18. #define SEL_TIMEOUT 153 /* 250 ms selection timeout (@ 40 MHz) */
  19. #define END_SCAN 2
  20. typedef u8 UCHAR; /*  8 bits */
  21. typedef u16 USHORT; /* 16 bits */
  22. typedef u32 UINT; /* 32 bits */
  23. typedef unsigned long ULONG; /* 32/64 bits */
  24. typedef UCHAR *PUCHAR;
  25. typedef USHORT *PUSHORT;
  26. typedef UINT *PUINT;
  27. typedef ULONG *PULONG;
  28. typedef Scsi_Host_Template *PSHT;
  29. typedef struct Scsi_Host *PSH;
  30. typedef Scsi_Device *PSCSIDEV;
  31. typedef Scsi_Cmnd *PSCSICMD;
  32. typedef void *PVOID;
  33. typedef struct scatterlist  *PSGL, SGL;
  34. /*;-----------------------------------------------------------------------*/
  35. typedef  struct  _SyncMsg
  36. {
  37. UCHAR ExtendMsg;
  38. UCHAR ExtMsgLen;
  39. UCHAR SyncXferReq;
  40. UCHAR Period;
  41. UCHAR ReqOffset;
  42. } SyncMsg;
  43. /*;-----------------------------------------------------------------------*/
  44. typedef  struct  _Capacity
  45. {
  46. ULONG BlockCount;
  47. ULONG BlockLength;
  48. } Capacity;
  49. /*;-----------------------------------------------------------------------*/
  50. typedef  struct  _SGentry
  51. {
  52. ULONG SGXferDataPtr;
  53. ULONG SGXferDataLen;
  54. } SGentry;
  55. typedef  struct  _SGentry1
  56. {
  57. ULONG SGXLen;
  58. ULONG SGXPtr;
  59. } SGentry1, *PSGE;
  60. /*
  61. ;-----------------------------------------------------------------------
  62. ; SCSI Request Block
  63. ;-----------------------------------------------------------------------
  64. */
  65. struct _SRB
  66. {
  67. //UCHAR CmdBlock[12];
  68. struct _SRB *pNextSRB;
  69. struct _DCB *pSRBDCB;
  70. PSCSICMD pcmd;
  71. PSGL pSegmentList;
  72. /* 0x10: */
  73. SGL Segmentx; /* make a one entry of S/G list table */
  74. /* 0x1c: */
  75. ULONG SGBusAddr; /*;a segment starting address as seen by AM53C974A*/
  76. ULONG SGToBeXferLen; /*; to be xfer length */
  77. ULONG TotalXferredLen;
  78. ULONG SavedTotXLen;
  79. UINT SRBState;
  80. /* 0x30: */
  81. UCHAR SRBStatus;
  82. UCHAR SRBFlag; /*; b0-AutoReqSense,b6-Read,b7-write */
  83. /*; b4-settimeout,b5-Residual valid */
  84. UCHAR AdaptStatus;
  85. UCHAR TargetStatus;
  86. UCHAR ScsiPhase;
  87. UCHAR TagNumber;
  88. UCHAR SGIndex;
  89. UCHAR SGcount;
  90. /* 0x38: */
  91. UCHAR MsgCnt;
  92. UCHAR EndMessage;
  93. UCHAR RetryCnt;
  94. UCHAR SavedSGCount;
  95. ULONG Saved_Ptr;
  96. /* 0x40: */
  97. UCHAR MsgInBuf[6];
  98. UCHAR MsgOutBuf[6];
  99. //UCHAR IORBFlag; /*;81h-Reset, 2-retry */
  100. /* 0x4c: */
  101. };
  102. typedef  struct  _SRB  DC390_SRB, *PSRB;
  103. /*
  104. ;-----------------------------------------------------------------------
  105. ; Device Control Block
  106. ;-----------------------------------------------------------------------
  107. */
  108. struct _DCB
  109. {
  110. struct _DCB *pNextDCB;
  111. struct _ACB *pDCBACB;
  112. /* Aborted Commands */
  113. //PSCSICMD AboIORBhead;
  114. //PSCSICMD AboIORBtail;
  115. //ULONG AboIORBcnt;
  116. /* 0x08: */
  117. /* Queued SRBs */
  118. PSRB pWaitingSRB;
  119. PSRB pWaitLast;
  120. PSRB pGoingSRB;
  121. PSRB pGoingLast;
  122. PSRB pActiveSRB;
  123. UCHAR WaitSRBCnt; /* Not used */
  124. UCHAR GoingSRBCnt;
  125. UCHAR DevType;
  126. UCHAR MaxCommand;
  127. /* 0x20: */
  128. UINT TagMask;
  129. UCHAR TargetID; /*; SCSI Target ID  (SCSI Only) */
  130. UCHAR TargetLUN; /*; SCSI Log.  Unit (SCSI Only) */
  131. UCHAR DevMode;
  132. UCHAR DCBFlag;
  133. UCHAR CtrlR1;
  134. UCHAR CtrlR3;
  135. UCHAR CtrlR4;
  136. UCHAR Inquiry7;
  137. /* 0x2c: */
  138. UCHAR SyncMode; /*; 0:async mode */
  139. UCHAR NegoPeriod; /*;for nego. */
  140. UCHAR SyncPeriod; /*;for reg. */
  141. UCHAR SyncOffset; /*;for reg. and nego.(low nibble) */
  142. /* 0x30:*/
  143. //UCHAR InqDataBuf[8];
  144. //UCHAR CapacityBuf[8];
  145. ///* 0x40: */
  146. };
  147. typedef  struct  _DCB  DC390_DCB, *PDCB;
  148. /*
  149. ;-----------------------------------------------------------------------
  150. ; Adapter Control Block
  151. ;-----------------------------------------------------------------------
  152. */
  153. struct _ACB
  154. {
  155. PSH pScsiHost;
  156. struct _ACB *pNextACB;
  157. USHORT IOPortBase;
  158. UCHAR IRQLevel;
  159. UCHAR status;
  160. UCHAR SRBCount;
  161. UCHAR AdapterIndex; /*; nth Adapter this driver */
  162. UCHAR DeviceCnt;
  163. UCHAR DCBCnt;
  164. /* 0x10: */
  165. UCHAR TagMaxNum;
  166. UCHAR ACBFlag;
  167. UCHAR Gmode2;
  168. UCHAR scan_devices;
  169. PDCB pLinkDCB;
  170. PDCB pLastDCB;
  171. PDCB pDCBRunRobin;
  172. PDCB pActiveDCB;
  173. PSRB pFreeSRB;
  174. PSRB pTmpSRB;
  175. /* 0x2c: */
  176. ULONG QueryCnt;
  177. PSCSICMD pQueryHead;
  178. PSCSICMD pQueryTail;
  179. /* 0x38: */
  180. UCHAR msgin123[4];
  181. UCHAR DCBmap[MAX_SCSI_ID];
  182. UCHAR Connected;
  183. UCHAR pad;
  184. /* 0x3c: */
  185. #if defined(USE_SPINLOCKS) && USE_SPINLOCKS > 1 && (defined(CONFIG_SMP) || DEBUG_SPINLOCKS > 0)
  186. spinlock_t lock;
  187. #endif
  188. UCHAR sel_timeout;
  189. UCHAR glitch_cfg;
  190. UCHAR MsgLen;
  191. UCHAR Ignore_IRQ; /* Not used */
  192. PDEVDECL1; /* Pointer to PCI cfg. space */
  193. /* 0x4c/0x48: */
  194. ULONG Cmds;
  195. UINT SelLost;
  196. UINT SelConn;
  197. UINT CmdInQ;
  198. UINT CmdOutOfSRB;
  199. /* 0x60/0x5c: */
  200. struct timer_list Waiting_Timer;
  201. /* 0x74/0x70: */
  202. DC390_SRB TmpSRB;
  203. /* 0xd8/0xd4: */
  204. DC390_SRB SRB_array[MAX_SRB_CNT];  /* 50 SRBs */
  205. /* 0xfb0/0xfac: */
  206. };
  207. typedef  struct  _ACB  DC390_ACB, *PACB;
  208. /*;-----------------------------------------------------------------------*/
  209. #define BIT31 0x80000000
  210. #define BIT30 0x40000000
  211. #define BIT29 0x20000000
  212. #define BIT28 0x10000000
  213. #define BIT27 0x08000000
  214. #define BIT26 0x04000000
  215. #define BIT25 0x02000000
  216. #define BIT24 0x01000000
  217. #define BIT23 0x00800000
  218. #define BIT22 0x00400000
  219. #define BIT21 0x00200000
  220. #define BIT20 0x00100000
  221. #define BIT19 0x00080000
  222. #define BIT18 0x00040000
  223. #define BIT17 0x00020000
  224. #define BIT16 0x00010000
  225. #define BIT15 0x00008000
  226. #define BIT14 0x00004000
  227. #define BIT13 0x00002000
  228. #define BIT12 0x00001000
  229. #define BIT11 0x00000800
  230. #define BIT10 0x00000400
  231. #define BIT9 0x00000200
  232. #define BIT8 0x00000100
  233. #define BIT7 0x00000080
  234. #define BIT6 0x00000040
  235. #define BIT5 0x00000020
  236. #define BIT4 0x00000010
  237. #define BIT3 0x00000008
  238. #define BIT2 0x00000004
  239. #define BIT1 0x00000002
  240. #define BIT0 0x00000001
  241. /*;---UnitCtrlFlag */
  242. #define UNIT_ALLOCATED BIT0
  243. #define UNIT_INFO_CHANGED BIT1
  244. #define FORMATING_MEDIA BIT2
  245. #define UNIT_RETRY BIT3
  246. /*;---UnitFlags */
  247. #define DASD_SUPPORT BIT0
  248. #define SCSI_SUPPORT BIT1
  249. #define ASPI_SUPPORT BIT2
  250. /*;----SRBState machine definition */
  251. #define SRB_FREE 0
  252. #define SRB_WAIT BIT0
  253. #define SRB_READY BIT1
  254. #define SRB_MSGOUT BIT2 /*;arbitration+msg_out 1st byte*/
  255. #define SRB_MSGIN BIT3
  256. #define SRB_MSGIN_MULTI BIT4
  257. #define SRB_COMMAND BIT5
  258. #define SRB_START_ BIT6 /*;arbitration+msg_out+command_out*/
  259. #define SRB_DISCONNECT BIT7
  260. #define SRB_DATA_XFER BIT8
  261. #define SRB_XFERPAD BIT9
  262. #define SRB_STATUS BIT10
  263. #define SRB_COMPLETED BIT11
  264. #define SRB_ABORT_SENT BIT12
  265. #define DO_SYNC_NEGO BIT13
  266. #define SRB_UNEXPECT_RESEL BIT14
  267. /*;---SRBstatus */
  268. #define SRB_OK BIT0
  269. #define ABORTION BIT1
  270. #define OVER_RUN BIT2
  271. #define UNDER_RUN BIT3
  272. #define PARITY_ERROR BIT4
  273. #define SRB_ERROR BIT5
  274. /*;---ACBFlag */
  275. #define RESET_DEV BIT0
  276. #define RESET_DETECT BIT1
  277. #define RESET_DONE BIT2
  278. /*;---DCBFlag */
  279. #define ABORT_DEV_ BIT0
  280. /*;---SRBFlag */
  281. #define DATAOUT  BIT7
  282. #define DATAIN BIT6
  283. #define RESIDUAL_VALID BIT5
  284. #define ENABLE_TIMER BIT4
  285. #define RESET_DEV0 BIT2
  286. #define ABORT_DEV BIT1
  287. #define AUTO_REQSENSE BIT0
  288. /*;---Adapter status */
  289. #define H_STATUS_GOOD  0
  290. #define H_SEL_TIMEOUT  0x11
  291. #define H_OVER_UNDER_RUN 0x12
  292. #define H_UNEXP_BUS_FREE 0x13
  293. #define H_TARGET_PHASE_F 0x14
  294. #define H_INVALID_CCB_OP 0x16
  295. #define H_LINK_CCB_BAD  0x17
  296. #define H_BAD_TARGET_DIR 0x18
  297. #define H_DUPLICATE_CCB  0x19
  298. #define H_BAD_CCB_OR_SG  0x1A
  299. #define H_ABORT   0x0FF
  300. /*; SCSI Status byte codes*/ 
  301. /* The values defined in include/scsi/scsi.h, to be shifted << 1 */
  302. #define SCSI_STAT_UNEXP_BUS_F 0xFD /*;  Unexpect Bus Free */
  303. #define SCSI_STAT_BUS_RST_DETECT 0xFE /*;  Scsi Bus Reset detected */
  304. #define SCSI_STAT_SEL_TIMEOUT 0xFF /*;  Selection Time out */
  305. /* cmd->result */
  306. #define RES_TARGET 0x000000FF /* Target State */
  307. #define RES_TARGET_LNX STATUS_MASK /* Only official ... */
  308. #define RES_ENDMSG 0x0000FF00 /* End Message */
  309. #define RES_DID 0x00FF0000 /* DID_ codes */
  310. #define RES_DRV 0xFF000000 /* DRIVER_ codes */
  311. #define MK_RES(drv,did,msg,tgt) ((int)(drv)<<24 | (int)(did)<<16 | (int)(msg)<<8 | (int)(tgt))
  312. #define MK_RES_LNX(drv,did,msg,tgt) ((int)(drv)<<24 | (int)(did)<<16 | (int)(msg)<<8 | (int)(tgt)<<1)
  313. #define SET_RES_TARGET(who,tgt) { who &= ~RES_TARGET; who |= (int)(tgt); }
  314. #define SET_RES_TARGET_LNX(who,tgt) { who &= ~RES_TARGET_LNX; who |= (int)(tgt) << 1; }
  315. #define SET_RES_MSG(who,msg) { who &= ~RES_ENDMSG; who |= (int)(msg) << 8; }
  316. #define SET_RES_DID(who,did) { who &= ~RES_DID; who |= (int)(did) << 16; }
  317. #define SET_RES_DRV(who,drv) { who &= ~RES_DRV; who |= (int)(drv) << 24; }
  318. /*;---Sync_Mode */
  319. #define SYNC_DISABLE 0
  320. #define SYNC_ENABLE BIT0
  321. #define SYNC_NEGO_DONE BIT1
  322. #define WIDE_ENABLE BIT2 /* Not used ;-) */
  323. #define WIDE_NEGO_DONE BIT3 /* Not used ;-) */
  324. #define EN_TAG_QUEUEING BIT4
  325. #define EN_ATN_STOP BIT5
  326. #define SYNC_NEGO_OFFSET 15
  327. /*;---SCSI bus phase*/
  328. #define SCSI_DATA_OUT 0
  329. #define SCSI_DATA_IN 1
  330. #define SCSI_COMMAND 2
  331. #define SCSI_STATUS_ 3
  332. #define SCSI_NOP0 4
  333. #define SCSI_NOP1 5
  334. #define SCSI_MSG_OUT 6
  335. #define SCSI_MSG_IN 7
  336. /*;----SCSI MSG BYTE*/ /* see scsi/scsi.h */ /* One is missing ! */
  337. #define ABORT_TAG 0x0d
  338. /*
  339. **  Inquiry Data format
  340. */
  341. typedef struct _SCSIInqData { /* INQUIRY */
  342. UCHAR  DevType; /* Periph Qualifier & Periph Dev Type*/
  343. UCHAR  RMB_TypeMod; /* rem media bit & Dev Type Modifier */
  344. UCHAR  Vers; /* ISO, ECMA, & ANSI versions      */
  345. UCHAR  RDF; /* AEN, TRMIOP, & response data format*/
  346. UCHAR  AddLen; /* length of additional data      */
  347. UCHAR  Res1; /* reserved      */
  348. UCHAR  Res2; /* reserved      */
  349. UCHAR  Flags;  /* RelADr,Wbus32,Wbus16,Sync,etc.    */
  350. UCHAR  VendorID[8]; /* Vendor Identification      */
  351. UCHAR  ProductID[16];  /* Product Identification      */
  352. UCHAR  ProductRev[4];  /* Product Revision      */
  353. } SCSI_INQDATA, *PSCSI_INQDATA;
  354. /*  Inquiry byte 0 masks */
  355. #define SCSI_DEVTYPE     0x1F      /* Peripheral Device Type      */
  356. #define SCSI_PERIPHQUAL     0xE0      /* Peripheral Qualifier     */
  357. #define TYPE_NODEV     SCSI_DEVTYPE    /* Unknown or no device type    */
  358. /*  Inquiry byte 1 mask */
  359. #define SCSI_REMOVABLE_MEDIA  0x80    /* Removable Media bit (1=removable)  */
  360. /*  Peripheral Device Type definitions */
  361. /*  see include/scsi/scsi.h for the rest */
  362. #ifndef TYPE_PRINTER
  363. # define TYPE_PRINTER  0x02    /* Printer device    */
  364. #endif
  365. #ifndef TYPE_COMM
  366. # define TYPE_COMM  0x09    /* Communications device    */
  367. #endif
  368. /*
  369. ** Inquiry flag definitions (Inq data byte 7)
  370. */
  371. #define SCSI_INQ_RELADR       0x80    /* device supports relative addressing*/
  372. #define SCSI_INQ_WBUS32       0x40    /* device supports 32 bit data xfers  */
  373. #define SCSI_INQ_WBUS16       0x20    /* device supports 16 bit data xfers  */
  374. #define SCSI_INQ_SYNC       0x10    /* device supports synchronous xfer   */
  375. #define SCSI_INQ_LINKED       0x08    /* device supports linked commands    */
  376. #define SCSI_INQ_CMDQUEUE     0x02    /* device supports command queueing   */
  377. #define SCSI_INQ_SFTRE       0x01    /* device supports soft resets */
  378. /*
  379. ;==========================================================
  380. ; EEPROM byte offset
  381. ;==========================================================
  382. */
  383. typedef  struct  _EEprom
  384. {
  385. UCHAR EE_MODE1;
  386. UCHAR EE_SPEED;
  387. UCHAR xx1;
  388. UCHAR xx2;
  389. } EEprom, *PEEprom;
  390. #define REAL_EE_ADAPT_SCSI_ID 64
  391. #define REAL_EE_MODE2 65
  392. #define REAL_EE_DELAY 66
  393. #define REAL_EE_TAG_CMD_NUM 67
  394. #define EE_ADAPT_SCSI_ID 32
  395. #define EE_MODE2 33
  396. #define EE_DELAY 34
  397. #define EE_TAG_CMD_NUM 35
  398. #define EE_LEN 40
  399. /*; EE_MODE1 bits definition*/
  400. #define PARITY_CHK_ BIT0
  401. #define SYNC_NEGO_ BIT1
  402. #define EN_DISCONNECT_ BIT2
  403. #define SEND_START_ BIT3
  404. #define TAG_QUEUEING_ BIT4
  405. /*; EE_MODE2 bits definition*/
  406. #define MORE2_DRV BIT0
  407. #define GREATER_1G BIT1
  408. #define RST_SCSI_BUS BIT2
  409. #define ACTIVE_NEGATION BIT3
  410. #define NO_SEEK  BIT4
  411. #define LUN_CHECK BIT5
  412. #define ENABLE_CE 1
  413. #define DISABLE_CE 0
  414. #define EEPROM_READ 0x80
  415. /*
  416. ;==========================================================
  417. ; AMD 53C974 Registers bit Definition
  418. ;==========================================================
  419. */
  420. /*
  421. ;====================
  422. ; SCSI Register
  423. ;====================
  424. */
  425. /*; Command Reg.(+0CH) (rw) */
  426. #define DMA_COMMAND BIT7
  427. #define NOP_CMD  0
  428. #define CLEAR_FIFO_CMD 1
  429. #define RST_DEVICE_CMD 2
  430. #define RST_SCSI_BUS_CMD 3
  431. #define INFO_XFER_CMD 0x10
  432. #define INITIATOR_CMD_CMPLTE 0x11
  433. #define MSG_ACCEPTED_CMD 0x12
  434. #define XFER_PAD_BYTE 0x18
  435. #define SET_ATN_CMD 0x1A
  436. #define RESET_ATN_CMD 0x1B
  437. #define SEL_WO_ATN 0x41 /* currently not used */
  438. #define SEL_W_ATN 0x42
  439. #define SEL_W_ATN_STOP 0x43
  440. #define SEL_W_ATN3 0x46
  441. #define EN_SEL_RESEL 0x44
  442. #define DIS_SEL_RESEL 0x45 /* currently not used */
  443. #define RESEL 0x40 /* " */
  444. #define RESEL_ATN3 0x47 /* " */
  445. #define DATA_XFER_CMD INFO_XFER_CMD
  446. /*; SCSI Status Reg.(+10H) (r) */
  447. #define INTERRUPT BIT7
  448. #define ILLEGAL_OP_ERR BIT6
  449. #define PARITY_ERR BIT5
  450. #define COUNT_2_ZERO BIT4
  451. #define GROUP_CODE_VALID BIT3
  452. #define SCSI_PHASE_MASK  (BIT2+BIT1+BIT0) 
  453. /* BIT2: MSG phase; BIT1: C/D physe; BIT0: I/O phase */
  454. /*; Interrupt Status Reg.(+14H) (r) */
  455. #define SCSI_RESET BIT7
  456. #define INVALID_CMD BIT6
  457. #define DISCONNECTED BIT5
  458. #define SERVICE_REQUEST  BIT4
  459. #define SUCCESSFUL_OP BIT3
  460. #define RESELECTED BIT2
  461. #define SEL_ATTENTION BIT1
  462. #define SELECTED BIT0
  463. /*; Internal State Reg.(+18H) (r) */
  464. #define SYNC_OFFSET_FLAG BIT3
  465. #define INTRN_STATE_MASK (BIT2+BIT1+BIT0)
  466. /* 0x04: Sel. successful (w/o stop), 0x01: Sel. successful (w/ stop) */
  467. /*; Clock Factor Reg.(+24H) (w) */
  468. #define CLK_FREQ_40MHZ 0
  469. #define CLK_FREQ_35MHZ (BIT2+BIT1+BIT0)
  470. #define CLK_FREQ_30MHZ (BIT2+BIT1)
  471. #define CLK_FREQ_25MHZ (BIT2+BIT0)
  472. #define CLK_FREQ_20MHZ BIT2
  473. #define CLK_FREQ_15MHZ (BIT1+BIT0)
  474. #define CLK_FREQ_10MHZ BIT1
  475. /*; Control Reg. 1(+20H) (rw) */
  476. #define EXTENDED_TIMING  BIT7
  477. #define DIS_INT_ON_SCSI_RST BIT6
  478. #define PARITY_ERR_REPO  BIT4
  479. #define SCSI_ID_ON_BUS (BIT2+BIT1+BIT0) /* host adapter ID */
  480. /*; Control Reg. 2(+2CH) (rw) */
  481. #define EN_FEATURE BIT6
  482. #define EN_SCSI2_CMD BIT3
  483. /*; Control Reg. 3(+30H) (rw) */
  484. #define ID_MSG_CHECK BIT7
  485. #define EN_QTAG_MSG BIT6
  486. #define EN_GRP2_CMD BIT5
  487. #define FAST_SCSI BIT4 /* ;10MB/SEC */
  488. #define FAST_CLK BIT3 /* ;25 - 40 MHZ */
  489. /*; Control Reg. 4(+34H) (rw) */
  490. #define EATER_12NS 0
  491. #define EATER_25NS BIT7
  492. #define EATER_35NS BIT6
  493. #define EATER_0NS (BIT7+BIT6)
  494. #define REDUCED_POWER BIT5
  495. #define CTRL4_RESERVED BIT4 /* must be 1 acc. to AM53C974.c */
  496. #define NEGATE_REQACKDATA BIT2
  497. #define NEGATE_REQACK BIT3
  498. #define GLITCH_TO_NS(x) (((~x>>6 & 2) >> 1) | ((x>>6 & 1) << 1 ^ (x>>6 & 2)))
  499. #define NS_TO_GLITCH(y) (((~y<<7) | ~((y<<6) ^ ((y<<5 & 1<<6) | ~0x40))) & 0xc0)
  500. /*
  501. ;====================
  502. ; DMA Register
  503. ;====================
  504. */
  505. /*; DMA Command Reg.(+40H) (rw) */
  506. #define READ_DIRECTION BIT7
  507. #define WRITE_DIRECTION  0
  508. #define EN_DMA_INT BIT6
  509. #define EN_PAGE_INT BIT5 /* page transfer interrupt enable */
  510. #define MAP_TO_MDL BIT4
  511. #define DIAGNOSTIC BIT2
  512. #define DMA_IDLE_CMD 0
  513. #define DMA_BLAST_CMD BIT0
  514. #define DMA_ABORT_CMD BIT1
  515. #define DMA_START_CMD (BIT1+BIT0)
  516. /*; DMA Status Reg.(+54H) (r) */
  517. #define PCI_MS_ABORT BIT6
  518. #define BLAST_COMPLETE BIT5
  519. #define SCSI_INTERRUPT BIT4
  520. #define DMA_XFER_DONE BIT3
  521. #define DMA_XFER_ABORT BIT2
  522. #define DMA_XFER_ERROR BIT1
  523. #define POWER_DOWN BIT0
  524. /*; DMA SCSI Bus and Ctrl.(+70H) */
  525. #define EN_INT_ON_PCI_ABORT BIT25
  526. #define WRT_ERASE_DMA_STAT BIT24
  527. #define PW_DOWN_CTRL BIT21
  528. #define SCSI_BUSY BIT20
  529. #define SCLK BIT19
  530. #define SCAM BIT18
  531. #define SCSI_LINES 0x0003ffff
  532. /*
  533. ;==========================================================
  534. ; SCSI Chip register address offset
  535. ;==========================================================
  536. ;Registers are rw unless declared otherwise 
  537. */
  538. #define CtcReg_Low 0x00 /* r curr. transfer count */
  539. #define CtcReg_Mid 0x04 /* r */
  540. #define CtcReg_High 0x38 /* r */
  541. #define ScsiFifo 0x08
  542. #define ScsiCmd  0x0C
  543. #define Scsi_Status 0x10 /* r */
  544. #define INT_Status 0x14 /* r */
  545. #define Sync_Period 0x18 /* w */
  546. #define Sync_Offset 0x1C /* w */
  547. #define Clk_Factor 0x24 /* w */
  548. #define CtrlReg1 0x20
  549. #define CtrlReg2 0x2C
  550. #define CtrlReg3 0x30
  551. #define CtrlReg4 0x34
  552. #define DMA_Cmd  0x40
  553. #define DMA_XferCnt 0x44 /* rw starting transfer count (32 bit) */
  554. #define DMA_XferAddr 0x48 /* rw starting physical address (32 bit) */
  555. #define DMA_Wk_ByteCntr 0x4C /* r working byte counter */
  556. #define DMA_Wk_AddrCntr 0x50 /* r working address counter */
  557. #define DMA_Status 0x54 /* r */
  558. #define DMA_MDL_Addr 0x58 /* rw starting MDL address */
  559. #define DMA_Wk_MDL_Cntr 0x5C /* r working MDL counter */
  560. #define DMA_ScsiBusCtrl 0x70 /* rw SCSI Bus, PCI/DMA Ctrl */
  561. #define StcReg_Low CtcReg_Low /* w start transfer count */
  562. #define StcReg_Mid CtcReg_Mid /* w */
  563. #define StcReg_High CtcReg_High /* w */
  564. #define Scsi_Dest_ID Scsi_Status /* w */
  565. #define Scsi_TimeOut INT_Status /* w */
  566. #define Intern_State Sync_Period /* r */
  567. #define Current_Fifo Sync_Offset /* r Curr. FIFO / int. state */
  568. #define DC390_read8(address)
  569. (inb (pACB->IOPortBase + (address)))
  570. #define DC390_read8_(address, base)
  571. (inb ((USHORT)(base) + (address)))
  572. #define DC390_read16(address)
  573. (inw (pACB->IOPortBase + (address)))
  574. #define DC390_read32(address)
  575. (inl (pACB->IOPortBase + (address)))
  576. #define DC390_write8(address,value)
  577. outb ((value), pACB->IOPortBase + (address))
  578. #define DC390_write8_(address,value,base)
  579. outb ((value), (USHORT)(base) + (address))
  580. #define DC390_write16(address,value)
  581. outw ((value), pACB->IOPortBase + (address))
  582. #define DC390_write32(address,value)
  583. outl ((value), pACB->IOPortBase + (address))
  584. #endif /* _TMSCSIM_H */