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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* fc.h: Definitions for Fibre Channel Physical and Signaling Interface.
  2.  *
  3.  * Copyright (C) 1996-1997,1999 Jakub Jelinek (jj@ultra.linux.cz)
  4.  *
  5.  * Sources:
  6.  * Fibre Channel Physical & Signaling Interface (FC-PH), dpANS, 1994
  7.  * dpANS Fibre Channel Protocol for SCSI (X3.269-199X), Rev. 012, 1995
  8.  */
  9. #ifndef __FC_H
  10. #define __FC_H
  11. /* World Wide Name */
  12. #define NAAID_IEEE 1
  13. #define NAAID_IEEE_EXT 2
  14. #define NAAID_LOCAL 3
  15. #define NAAID_IP 4
  16. #define NAAID_IEEE_REG 5
  17. #define NAAID_IEEE_REG_EXT 6
  18. #define NAAID_CCITT 12
  19. #define NAAID_CCITT_GRP 14
  20. /* This is NAAID_IEEE_EXT scheme */
  21. typedef struct {
  22. u32 naaid:4;
  23. u32 nportid:12;
  24. u32 hi:16;
  25. u32 lo;
  26. } fc_wwn;
  27. /* Frame header for FC-PH frames */
  28. /* r_ctl field */
  29. #define R_CTL_DEVICE_DATA 0x00 /* FC4 Device_Data frame */
  30. #define R_CTL_EXTENDED_SVC 0x20 /* Extended Link_Data frame */
  31. #define R_CTL_FC4_SVC 0x30 /* FC4 Link_Data frame */
  32. #define R_CTL_VIDEO 0x40 /* Video_Data frame */
  33. #define R_CTL_BASIC_SVC 0x80 /* Basic Link_Data frame */
  34. #define R_CTL_LINK_CTL 0xc0 /* Link_Control frame */
  35. /* FC4 Device_Data frames */
  36. #define R_CTL_UNCATEGORIZED 0x00
  37. #define R_CTL_SOLICITED_DATA 0x01
  38. #define R_CTL_UNSOL_CONTROL 0x02
  39. #define R_CTL_SOLICITED_CONTROL 0x03
  40. #define R_CTL_UNSOL_DATA 0x04
  41. #define R_CTL_XFER_RDY 0x05
  42. #define R_CTL_COMMAND 0x06
  43. #define R_CTL_STATUS 0x07
  44. /* Basic Link_Data frames */
  45. #define R_CTL_LS_NOP 0x80
  46. #define R_CTL_LS_ABTS 0x81
  47. #define R_CTL_LS_RMC 0x82
  48. #define R_CTL_LS_BA_ACC 0x84
  49. #define R_CTL_LS_BA_RJT 0x85
  50. /* Extended Link_Data frames */
  51. #define R_CTL_ELS_REQ 0x22
  52. #define R_CTL_ELS_RSP 0x23
  53. /* Link_Control frames */
  54. #define R_CTL_ACK_1 0xc0
  55. #define R_CTL_ACK_N 0xc1
  56. #define R_CTL_P_RJT 0xc2
  57. #define R_CTL_F_RJT 0xc3
  58. #define R_CTL_P_BSY 0xc4
  59. #define R_CTL_F_BSY_DF 0xc5
  60. #define R_CTL_F_BSY_LC 0xc6
  61. #define R_CTL_LCR 0xc7
  62. /* type field */
  63. #define TYPE_BASIC_LS 0x00
  64. #define TYPE_EXTENDED_LS 0x01
  65. #define TYPE_IS8802 0x04
  66. #define TYPE_IS8802_SNAP 0x05
  67. #define TYPE_SCSI_FCP 0x08
  68. #define TYPE_SCSI_GPP 0x09
  69. #define TYPE_HIPP_FP 0x0a
  70. #define TYPE_IPI3_MASTER 0x11
  71. #define TYPE_IPI3_SLAVE 0x12
  72. #define TYPE_IPI3_PEER 0x13
  73. /* f_ctl field */
  74. #define F_CTL_FILL_BYTES 0x000003
  75. #define F_CTL_XCHG_REASSEMBLE 0x000004
  76. #define F_CTL_RO_PRESENT 0x000008
  77. #define F_CTL_ABORT_SEQ 0x000030
  78. #define F_CTL_CONTINUE_SEQ 0x0000c0
  79. #define F_CTL_INVALIDATE_XID 0x004000
  80. #define F_CTL_XID_REASSIGNED 0x008000
  81. #define F_CTL_SEQ_INITIATIVE 0x010000
  82. #define F_CTL_CHAINED_SEQ 0x020000
  83. #define F_CTL_END_CONNECT 0x040000
  84. #define F_CTL_END_SEQ 0x080000
  85. #define F_CTL_LAST_SEQ 0x100000
  86. #define F_CTL_FIRST_SEQ 0x200000
  87. #define F_CTL_SEQ_CONTEXT 0x400000
  88. #define F_CTL_XCHG_CONTEXT 0x800000
  89. typedef struct {
  90. u32 r_ctl:8, did:24;
  91. u32 xxx1:8, sid:24;
  92. u32 type:8, f_ctl:24;
  93. u32 seq_id:8, df_ctl:8, seq_cnt:16;
  94. u16 ox_id, rx_id;
  95. u32 param;
  96. } fc_hdr;
  97. /* The following are ugly macros to make setup of this structure faster */
  98. #define FILL_FCHDR_RCTL_DID(fch, r_ctl, did) *(u32 *)(fch) = ((r_ctl) << 24) | (did);
  99. #define FILL_FCHDR_SID(fch, sid) *((u32 *)(fch)+1) = (sid);
  100. #define FILL_FCHDR_TYPE_FCTL(fch, type, f_ctl) *((u32 *)(fch)+2) = ((type) << 24) | (f_ctl);
  101. #define FILL_FCHDR_SEQ_DF_SEQ(fch, seq_id, df_ctl, seq_cnt) *((u32 *)(fch)+3) = ((seq_id) << 24) | ((df_ctl) << 16) | (seq_cnt);
  102. #define FILL_FCHDR_OXRX(fch, ox_id, rx_id) *((u32 *)(fch)+4) = ((ox_id) << 16) | (rx_id);
  103. /* Well known addresses */
  104. #define FS_GENERAL_MULTICAST 0xfffff7
  105. #define FS_WELL_KNOWN_MULTICAST 0xfffff8
  106. #define FS_HUNT_GROUP 0xfffff9
  107. #define FS_MANAGEMENT_SERVER 0xfffffa
  108. #define FS_TIME_SERVER 0xfffffb
  109. #define FS_NAME_SERVER 0xfffffc
  110. #define FS_FABRIC_CONTROLLER 0xfffffd
  111. #define FS_FABRIC_F_PORT 0xfffffe
  112. #define FS_BROADCAST 0xffffff
  113. /* Reject frames */
  114. /* The param field should be cast to this structure */
  115. typedef struct {
  116. u8 action;
  117. u8 reason;
  118. u8 xxx;
  119. u8 vendor_unique;
  120. } rjt_param;
  121. /* Reject action codes */
  122. #define RJT_RETRY 0x01
  123. #define RJT_NONRETRY 0x02
  124. /* Reject reason codes */
  125. #define RJT_INVALID_DID 0x01
  126. #define RJT_INVALID_SID 0x02
  127. #define RJT_NPORT_NOT_AVAIL_TEMP 0x03
  128. #define RJT_NPORT_NOT_AVAIL_PERM 0x04
  129. #define RJT_CLASS_NOT_SUPPORTED 0x05
  130. #define RJT_DELIMITER_ERROR 0x06
  131. #define RJT_TYPE_NOT_SUPPORTED 0x07
  132. #define RJT_INVALID_LINK_CONTROL 0x08
  133. #define RJT_INVALID_R_CTL 0x09
  134. #define RJT_INVALID_F_CTL 0x0a
  135. #define RJT_INVALID_OX_ID 0x0b
  136. #define RJT_INVALID_RX_ID 0x0c
  137. #define RJT_INVALID_SEQ_ID 0x0d
  138. #define RJT_INVALID_DF_CTL 0x0e
  139. #define RJT_INVALID_SEQ_CNT 0x0f
  140. #define RJT_INVALID_PARAMETER 0x10
  141. #define RJT_EXCHANGE_ERROR 0x11
  142. #define RJT_PROTOCOL_ERROR 0x12
  143. #define RJT_INCORRECT_LENGTH 0x13
  144. #define RJT_UNEXPECTED_ACK 0x14
  145. #define RJT_UNEXPECTED_LINK_RESP 0x15
  146. #define RJT_LOGIN_REQUIRED 0x16
  147. #define RJT_EXCESSIVE_SEQUENCES 0x17
  148. #define RJT_CANT_ESTABLISH_EXCHANGE 0x18
  149. #define RJT_SECURITY_NOT_SUPPORTED 0x19
  150. #define RJT_FABRIC_NA 0x1a
  151. #define RJT_VENDOR_UNIQUE 0xff
  152. #define SP_F_PORT_LOGIN 0x10
  153. /* Extended SVC commands */
  154. #define LS_RJT 0x01000000
  155. #define LS_ACC 0x02000000
  156. #define LS_PRLI_ACC 0x02100014
  157. #define LS_PLOGI 0x03000000
  158. #define LS_FLOGI 0x04000000
  159. #define LS_LOGO 0x05000000
  160. #define LS_ABTX 0x06000000
  161. #define LS_RCS 0x07000000
  162. #define LS_RES 0x08000000
  163. #define LS_RSS 0x09000000
  164. #define LS_RSI 0x0a000000
  165. #define LS_ESTS 0x0b000000
  166. #define LS_ESTC 0x0c000000
  167. #define LS_ADVC 0x0d000000
  168. #define LS_RTV 0x0e000000
  169. #define LS_RLS 0x0f000000
  170. #define LS_ECHO 0x10000000
  171. #define LS_TEST 0x11000000
  172. #define LS_RRQ 0x12000000
  173. #define LS_IDENT 0x20000000
  174. #define LS_PRLI 0x20100014
  175. #define LS_DISPLAY 0x21000000
  176. #define LS_PRLO 0x21100014
  177. #define LS_PDISC 0x50000000
  178. #define LS_ADISC 0x52000000
  179. typedef struct {
  180. u8 fcph_hi, fcph_lo;
  181. u16 buf2buf_credit;
  182. u8 common_features;
  183. u8 xxx1;
  184. u16 buf2buf_size;
  185. u8 xxx2;
  186. u8 total_concurrent;
  187. u16 off_by_info;
  188. u32 e_d_tov;
  189. } common_svc_parm;
  190. typedef struct {
  191. u16 serv_opts;
  192. u16 initiator_ctl;
  193. u16 rcpt_ctl;
  194. u16 recv_size;
  195. u8 xxx1;
  196. u8 concurrent_seqs;
  197. u16 end2end_credit;
  198. u16 open_seqs_per_xchg;
  199. u16 xxx2;
  200. } svc_parm;
  201. /* Login */
  202. typedef struct {
  203. u32 code;
  204. common_svc_parm common;
  205. fc_wwn nport_wwn;
  206. fc_wwn node_wwn;
  207. svc_parm class1;
  208. svc_parm class2;
  209. svc_parm class3;
  210. } logi;
  211. #endif /* !(__FC_H) */