mesh.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * mesh.h: definitions for the driver for the MESH SCSI bus adaptor
  3.  * (Macintosh Enhanced SCSI Hardware) found on Power Macintosh computers.
  4.  *
  5.  * Copyright (C) 1996 Paul Mackerras.
  6.  */
  7. #ifndef _MESH_H
  8. #define _MESH_H
  9. int mesh_detect(Scsi_Host_Template *);
  10. int mesh_release(struct Scsi_Host *);
  11. int mesh_queue(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  12. int mesh_abort(Scsi_Cmnd *);
  13. int mesh_host_reset(Scsi_Cmnd *);
  14. #define SCSI_MESH {
  15. proc_name: "mesh",
  16. name: "MESH",
  17. detect: mesh_detect,
  18. release: mesh_release,
  19. command: NULL,
  20. queuecommand: mesh_queue,
  21. eh_abort_handler: mesh_abort,
  22. eh_device_reset_handler: NULL,
  23. eh_bus_reset_handler: NULL,
  24. eh_host_reset_handler: mesh_host_reset,
  25. can_queue: 20,
  26. this_id: 7,
  27. sg_tablesize: SG_ALL,
  28. cmd_per_lun: 2,
  29. use_clustering: DISABLE_CLUSTERING,
  30. use_new_eh_code:  1,
  31. }
  32. /*
  33.  * Registers in the MESH controller.
  34.  */
  35. struct mesh_regs {
  36. unsigned char count_lo;
  37. char pad0[15];
  38. unsigned char count_hi;
  39. char pad1[15];
  40. unsigned char fifo;
  41. char pad2[15];
  42. unsigned char sequence;
  43. char pad3[15];
  44. unsigned char bus_status0;
  45. char pad4[15];
  46. unsigned char bus_status1;
  47. char pad5[15];
  48. unsigned char fifo_count;
  49. char pad6[15];
  50. unsigned char exception;
  51. char pad7[15];
  52. unsigned char error;
  53. char pad8[15];
  54. unsigned char intr_mask;
  55. char pad9[15];
  56. unsigned char interrupt;
  57. char pad10[15];
  58. unsigned char source_id;
  59. char pad11[15];
  60. unsigned char dest_id;
  61. char pad12[15];
  62. unsigned char sync_params;
  63. char pad13[15];
  64. unsigned char mesh_id;
  65. char pad14[15];
  66. unsigned char sel_timeout;
  67. char pad15[15];
  68. };
  69. /* Bits in the sequence register. */
  70. #define SEQ_DMA_MODE 0x80 /* use DMA for data transfer */
  71. #define SEQ_TARGET 0x40 /* put the controller into target mode */
  72. #define SEQ_ATN 0x20 /* assert ATN signal */
  73. #define SEQ_ACTIVE_NEG 0x10 /* use active negation on REQ/ACK */
  74. #define SEQ_CMD 0x0f /* command bits: */
  75. #define SEQ_ARBITRATE 1 /*  get the bus */
  76. #define SEQ_SELECT 2 /*  select a target */
  77. #define SEQ_COMMAND 3 /*  send a command */
  78. #define SEQ_STATUS 4 /*  receive status */
  79. #define SEQ_DATAOUT 5 /*  send data */
  80. #define SEQ_DATAIN 6 /*  receive data */
  81. #define SEQ_MSGOUT 7 /*  send a message */
  82. #define SEQ_MSGIN 8 /*  receive a message */
  83. #define SEQ_BUSFREE 9 /*  look for bus free */
  84. #define SEQ_ENBPARITY 0x0a /*  enable parity checking */
  85. #define SEQ_DISPARITY 0x0b /*  disable parity checking */
  86. #define SEQ_ENBRESEL 0x0c /*  enable reselection */
  87. #define SEQ_DISRESEL 0x0d /*  disable reselection */
  88. #define SEQ_RESETMESH 0x0e /*  reset the controller */
  89. #define SEQ_FLUSHFIFO 0x0f /*  clear out the FIFO */
  90. /* Bits in the bus_status0 and bus_status1 registers:
  91.    these correspond directly to the SCSI bus control signals. */
  92. #define BS0_REQ 0x20
  93. #define BS0_ACK 0x10
  94. #define BS0_ATN 0x08
  95. #define BS0_MSG 0x04
  96. #define BS0_CD 0x02
  97. #define BS0_IO 0x01
  98. #define BS1_RST 0x80
  99. #define BS1_BSY 0x40
  100. #define BS1_SEL 0x20
  101. /* Bus phases defined by the bits in bus_status0 */
  102. #define BS0_PHASE (BS0_MSG+BS0_CD+BS0_IO)
  103. #define BP_DATAOUT 0
  104. #define BP_DATAIN BS0_IO
  105. #define BP_COMMAND BS0_CD
  106. #define BP_STATUS (BS0_CD+BS0_IO)
  107. #define BP_MSGOUT (BS0_MSG+BS0_CD)
  108. #define BP_MSGIN (BS0_MSG+BS0_CD+BS0_IO)
  109. /* Bits in the exception register. */
  110. #define EXC_SELWATN 0x20 /* (as target) we were selected with ATN */
  111. #define EXC_SELECTED 0x10 /* (as target) we were selected w/o ATN */
  112. #define EXC_RESELECTED 0x08 /* (as initiator) we were reselected */
  113. #define EXC_ARBLOST 0x04 /* we lost arbitration */
  114. #define EXC_PHASEMM 0x02 /* SCSI phase mismatch */
  115. #define EXC_SELTO 0x01 /* selection timeout */
  116. /* Bits in the error register */
  117. #define ERR_UNEXPDISC 0x40 /* target unexpectedly disconnected */
  118. #define ERR_SCSIRESET 0x20 /* SCSI bus got reset on us */
  119. #define ERR_SEQERR 0x10 /* we did something the chip didn't like */
  120. #define ERR_PARITY 0x01 /* parity error was detected */
  121. /* Bits in the interrupt and intr_mask registers */
  122. #define INT_ERROR 0x04 /* error interrupt */
  123. #define INT_EXCEPTION 0x02 /* exception interrupt */
  124. #define INT_CMDDONE 0x01 /* command done interrupt */
  125. /* Fields in the sync_params register */
  126. #define SYNC_OFF(x) ((x) >> 4) /* offset field */
  127. #define SYNC_PER(x) ((x) & 0xf) /* period field */
  128. #define SYNC_PARAMS(o, p) (((o) << 4) | (p))
  129. #define ASYNC_PARAMS 2 /* sync_params value for async xfers */
  130. /*
  131.  * Assuming a clock frequency of 50MHz:
  132.  *
  133.  * The transfer period with SYNC_PER(sync_params) == x
  134.  * is (x + 2) * 40ns, except that x == 0 gives 100ns.
  135.  *
  136.  * The units of the sel_timeout register are 10ms.
  137.  */
  138. #endif /* _MESH_H */