bnx2fc_constants.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. #ifndef __BNX2FC_CONSTANTS_H_
  2. #define __BNX2FC_CONSTANTS_H_
  3. /**
  4. * This file defines HSI constants for the FCoE flows
  5. */
  6. /* Current FCoE HSI version number composed of two fields (16 bit) */
  7. /* Implies on a change broken previous HSI */
  8. #define FCOE_HSI_MAJOR_VERSION (2)
  9. /* Implies on a change which does not broken previous HSI */
  10. #define FCOE_HSI_MINOR_VERSION (1)
  11. /* KWQ/KCQ FCoE layer code */
  12. #define FCOE_KWQE_LAYER_CODE (7)
  13. /* KWQ (kernel work queue) request op codes */
  14. #define FCOE_KWQE_OPCODE_INIT1 (0)
  15. #define FCOE_KWQE_OPCODE_INIT2 (1)
  16. #define FCOE_KWQE_OPCODE_INIT3 (2)
  17. #define FCOE_KWQE_OPCODE_OFFLOAD_CONN1 (3)
  18. #define FCOE_KWQE_OPCODE_OFFLOAD_CONN2 (4)
  19. #define FCOE_KWQE_OPCODE_OFFLOAD_CONN3 (5)
  20. #define FCOE_KWQE_OPCODE_OFFLOAD_CONN4 (6)
  21. #define FCOE_KWQE_OPCODE_ENABLE_CONN (7)
  22. #define FCOE_KWQE_OPCODE_DISABLE_CONN (8)
  23. #define FCOE_KWQE_OPCODE_DESTROY_CONN (9)
  24. #define FCOE_KWQE_OPCODE_DESTROY (10)
  25. #define FCOE_KWQE_OPCODE_STAT (11)
  26. /* KCQ (kernel completion queue) response op codes */
  27. #define FCOE_KCQE_OPCODE_INIT_FUNC (0x10)
  28. #define FCOE_KCQE_OPCODE_DESTROY_FUNC (0x11)
  29. #define FCOE_KCQE_OPCODE_STAT_FUNC (0x12)
  30. #define FCOE_KCQE_OPCODE_OFFLOAD_CONN (0x15)
  31. #define FCOE_KCQE_OPCODE_ENABLE_CONN (0x16)
  32. #define FCOE_KCQE_OPCODE_DISABLE_CONN (0x17)
  33. #define FCOE_KCQE_OPCODE_DESTROY_CONN (0x18)
  34. #define FCOE_KCQE_OPCODE_CQ_EVENT_NOTIFICATION (0x20)
  35. #define FCOE_KCQE_OPCODE_FCOE_ERROR (0x21)
  36. /* KCQ (kernel completion queue) completion status */
  37. #define FCOE_KCQE_COMPLETION_STATUS_SUCCESS (0x0)
  38. #define FCOE_KCQE_COMPLETION_STATUS_ERROR (0x1)
  39. #define FCOE_KCQE_COMPLETION_STATUS_INVALID_OPCODE (0x2)
  40. #define FCOE_KCQE_COMPLETION_STATUS_CTX_ALLOC_FAILURE (0x3)
  41. #define FCOE_KCQE_COMPLETION_STATUS_CTX_FREE_FAILURE (0x4)
  42. #define FCOE_KCQE_COMPLETION_STATUS_NIC_ERROR (0x5)
  43. #define FCOE_KCQE_COMPLETION_STATUS_WRONG_HSI_VERSION (0x6)
  44. #define FCOE_KCQE_COMPLETION_STATUS_PARITY_ERROR (0x81)
  45. /* CQE type */
  46. #define FCOE_PENDING_CQE_TYPE 0
  47. #define FCOE_UNSOLIC_CQE_TYPE 1
  48. /* Unsolicited CQE type */
  49. #define FCOE_UNSOLICITED_FRAME_CQE_TYPE 0
  50. #define FCOE_ERROR_DETECTION_CQE_TYPE 1
  51. #define FCOE_WARNING_DETECTION_CQE_TYPE 2
  52. /* E_D_TOV timer resolution in ms */
  53. #define FCOE_E_D_TOV_TIMER_RESOLUTION_MS (20)
  54. /* E_D_TOV timer resolution for SDM (4 micro) */
  55. #define FCOE_E_D_TOV_SDM_TIMER_RESOLUTION \
  56. (FCOE_E_D_TOV_TIMER_RESOLUTION_MS * 1000 / 4)
  57. /* REC timer resolution in ms */
  58. #define FCOE_REC_TIMER_RESOLUTION_MS (20)
  59. /* REC timer resolution for SDM (4 micro) */
  60. #define FCOE_REC_SDM_TIMER_RESOLUTION (FCOE_REC_TIMER_RESOLUTION_MS * 1000 / 4)
  61. /* E_D_TOV timer default wraparound value (2 sec) in 20 ms resolution */
  62. #define FCOE_E_D_TOV_DEFAULT_WRAPAROUND_VAL \
  63. (2000 / FCOE_E_D_TOV_TIMER_RESOLUTION_MS)
  64. /* REC_TOV timer default wraparound value (3 sec) in 20 ms resolution */
  65. #define FCOE_REC_TOV_DEFAULT_WRAPAROUND_VAL \
  66. (3000 / FCOE_REC_TIMER_RESOLUTION_MS)
  67. #define FCOE_NUM_OF_TIMER_TASKS (8 * 1024)
  68. #define FCOE_NUM_OF_CACHED_TASKS_TIMER (8)
  69. /* Task context constants */
  70. /******** Remove FCP_CMD write tce sleep ***********************/
  71. /* In case timer services are required then shall be updated by Xstorm after
  72. * start processing the task. In case no timer facilities are required then the
  73. * driver would initialize the state to this value
  74. *
  75. #define FCOE_TASK_TX_STATE_NORMAL 0
  76. * After driver has initialize the task in case timer services required *
  77. #define FCOE_TASK_TX_STATE_INIT 1
  78. ******** Remove FCP_CMD write tce sleep ***********************/
  79. /* After driver has initialize the task in case timer services required */
  80. #define FCOE_TASK_TX_STATE_INIT 0
  81. /* In case timer services are required then shall be updated by Xstorm after
  82. * start processing the task. In case no timer facilities are required then the
  83. * driver would initialize the state to this value
  84. */
  85. #define FCOE_TASK_TX_STATE_NORMAL 1
  86. /* Task is under abort procedure. Updated in order to stop processing of
  87. * pending WQEs on this task
  88. */
  89. #define FCOE_TASK_TX_STATE_ABORT 2
  90. /* For E_D_T_TOV timer expiration in Xstorm (Class 2 only) */
  91. #define FCOE_TASK_TX_STATE_ERROR 3
  92. /* For REC_TOV timer expiration indication received from Xstorm */
  93. #define FCOE_TASK_TX_STATE_WARNING 4
  94. /* For completed unsolicited task */
  95. #define FCOE_TASK_TX_STATE_UNSOLICITED_COMPLETED 5
  96. /* For exchange cleanup request task */
  97. #define FCOE_TASK_TX_STATE_EXCHANGE_CLEANUP 6
  98. /* For sequence cleanup request task */
  99. #define FCOE_TASK_TX_STATE_SEQUENCE_CLEANUP 7
  100. /* For completion the ABTS task. */
  101. #define FCOE_TASK_TX_STATE_ABTS_TX 8
  102. #define FCOE_TASK_RX_STATE_NORMAL 0
  103. #define FCOE_TASK_RX_STATE_COMPLETED 1
  104. /* Obsolete: Intermediate completion (middle path with local completion) */
  105. #define FCOE_TASK_RX_STATE_INTER_COMP 2
  106. /* For REC_TOV timer expiration indication received from Xstorm */
  107. #define FCOE_TASK_RX_STATE_WARNING 3
  108. /* For E_D_T_TOV timer expiration in Ustorm */
  109. #define FCOE_TASK_RX_STATE_ERROR 4
  110. /* FW only: First visit at rx-path, part of the abts round trip */
  111. #define FCOE_TASK_RX_STATE_ABTS_IN_PROCESS 5
  112. /* FW only: Second visit at rx-path, after ABTS frame transmitted */
  113. #define FCOE_TASK_RX_STATE_ABTS_TRANSMITTED 6
  114. /* Special completion indication in case of task was aborted. */
  115. #define FCOE_TASK_RX_STATE_ABTS_COMPLETED 7
  116. /* FW only: First visit at rx-path, part of the cleanup round trip */
  117. #define FCOE_TASK_RX_STATE_EXCHANGE_CLEANUP_IN_PROCESS 8
  118. /* FW only: Special completion indication in case of task was cleaned. */
  119. #define FCOE_TASK_RX_STATE_EXCHANGE_CLEANUP_COMPLETED 9
  120. /* Not in used: Special completion indication (in task requested the exchange
  121. * cleanup) in case cleaned task is in non-valid.
  122. */
  123. #define FCOE_TASK_RX_STATE_ABORT_CLEANUP_COMPLETED 10
  124. /* Special completion indication (in task requested the sequence cleanup) in
  125. * case cleaned task was already returned to normal.
  126. */
  127. #define FCOE_TASK_RX_STATE_IGNORED_SEQUENCE_CLEANUP 11
  128. #define FCOE_TASK_TYPE_WRITE 0
  129. #define FCOE_TASK_TYPE_READ 1
  130. #define FCOE_TASK_TYPE_MIDPATH 2
  131. #define FCOE_TASK_TYPE_UNSOLICITED 3
  132. #define FCOE_TASK_TYPE_ABTS 4
  133. #define FCOE_TASK_TYPE_EXCHANGE_CLEANUP 5
  134. #define FCOE_TASK_TYPE_SEQUENCE_CLEANUP 6
  135. #define FCOE_TASK_DEV_TYPE_DISK 0
  136. #define FCOE_TASK_DEV_TYPE_TAPE 1
  137. #define FCOE_TASK_CLASS_TYPE_3 0
  138. #define FCOE_TASK_CLASS_TYPE_2 1
  139. /* FCoE/FC packet fields */
  140. #define FCOE_ETH_TYPE 0x8906
  141. /* FCoE maximum elements in hash table */
  142. #define FCOE_MAX_ELEMENTS_IN_HASH_TABLE_ROW 8
  143. /* FCoE half of the elements in hash table */
  144. #define FCOE_HALF_ELEMENTS_IN_HASH_TABLE_ROW \
  145. (FCOE_MAX_ELEMENTS_IN_HASH_TABLE_ROW / 2)
  146. /* FcoE number of cached T2 entries */
  147. #define T_FCOE_NUMBER_OF_CACHED_T2_ENTRIES (4)
  148. /* FCoE maximum elements in hash table */
  149. #define FCOE_HASH_TBL_CHUNK_SIZE 16384
  150. /* Everest FCoE connection type */
  151. #define B577XX_FCOE_CONNECTION_TYPE 4
  152. /* FCoE number of rows (in log). This number derives
  153. * from the maximum connections supported which is 2048.
  154. * TBA: Need a different constant for E2
  155. */
  156. #define FCOE_MAX_NUM_SESSIONS_LOG 11
  157. #define FC_ABTS_REPLY_MAX_PAYLOAD_LEN 12
  158. /* Error codes for Error Reporting in slow path flows */
  159. #define FCOE_SLOW_PATH_ERROR_CODE_TOO_MANY_FUNCS 0
  160. #define FCOE_SLOW_PATH_ERROR_CODE_NO_LICENSE 1
  161. /* Error codes for Error Reporting in fast path flows
  162. * XFER error codes
  163. */
  164. #define FCOE_ERROR_CODE_XFER_OOO_RO 0
  165. #define FCOE_ERROR_CODE_XFER_RO_NOT_ALIGNED 1
  166. #define FCOE_ERROR_CODE_XFER_NULL_BURST_LEN 2
  167. #define FCOE_ERROR_CODE_XFER_RO_GREATER_THAN_DATA2TRNS 3
  168. #define FCOE_ERROR_CODE_XFER_INVALID_PAYLOAD_SIZE 4
  169. #define FCOE_ERROR_CODE_XFER_TASK_TYPE_NOT_WRITE 5
  170. #define FCOE_ERROR_CODE_XFER_PEND_XFER_SET 6
  171. #define FCOE_ERROR_CODE_XFER_OPENED_SEQ 7
  172. #define FCOE_ERROR_CODE_XFER_FCTL 8
  173. /* FCP RSP error codes */
  174. #define FCOE_ERROR_CODE_FCP_RSP_BIDI_FLAGS_SET 9
  175. #define FCOE_ERROR_CODE_FCP_RSP_UNDERFLOW 10
  176. #define FCOE_ERROR_CODE_FCP_RSP_OVERFLOW 11
  177. #define FCOE_ERROR_CODE_FCP_RSP_INVALID_LENGTH_FIELD 12
  178. #define FCOE_ERROR_CODE_FCP_RSP_INVALID_SNS_FIELD 13
  179. #define FCOE_ERROR_CODE_FCP_RSP_INVALID_PAYLOAD_SIZE 14
  180. #define FCOE_ERROR_CODE_FCP_RSP_PEND_XFER_SET 15
  181. #define FCOE_ERROR_CODE_FCP_RSP_OPENED_SEQ 16
  182. #define FCOE_ERROR_CODE_FCP_RSP_FCTL 17
  183. #define FCOE_ERROR_CODE_FCP_RSP_LAST_SEQ_RESET 18
  184. #define FCOE_ERROR_CODE_FCP_RSP_CONF_REQ_NOT_SUPPORTED_YET 19
  185. /* FCP DATA error codes */
  186. #define FCOE_ERROR_CODE_DATA_OOO_RO 20
  187. #define FCOE_ERROR_CODE_DATA_EXCEEDS_DEFINED_MAX_FRAME_SIZE 21
  188. #define FCOE_ERROR_CODE_DATA_EXCEEDS_DATA2TRNS 22
  189. #define FCOE_ERROR_CODE_DATA_SOFI3_SEQ_ACTIVE_SET 23
  190. #define FCOE_ERROR_CODE_DATA_SOFN_SEQ_ACTIVE_RESET 24
  191. #define FCOE_ERROR_CODE_DATA_EOFN_END_SEQ_SET 25
  192. #define FCOE_ERROR_CODE_DATA_EOFT_END_SEQ_RESET 26
  193. #define FCOE_ERROR_CODE_DATA_TASK_TYPE_NOT_READ 27
  194. #define FCOE_ERROR_CODE_DATA_FCTL 28
  195. /* Middle path error codes */
  196. #define FCOE_ERROR_CODE_MIDPATH_INVALID_TYPE 29
  197. #define FCOE_ERROR_CODE_MIDPATH_SOFI3_SEQ_ACTIVE_SET 30
  198. #define FCOE_ERROR_CODE_MIDPATH_SOFN_SEQ_ACTIVE_RESET 31
  199. #define FCOE_ERROR_CODE_MIDPATH_EOFN_END_SEQ_SET 32
  200. #define FCOE_ERROR_CODE_MIDPATH_EOFT_END_SEQ_RESET 33
  201. #define FCOE_ERROR_CODE_MIDPATH_REPLY_FCTL 34
  202. #define FCOE_ERROR_CODE_MIDPATH_INVALID_REPLY 35
  203. #define FCOE_ERROR_CODE_MIDPATH_ELS_REPLY_RCTL 36
  204. /* ABTS error codes */
  205. #define FCOE_ERROR_CODE_ABTS_REPLY_F_CTL 37
  206. #define FCOE_ERROR_CODE_ABTS_REPLY_DDF_RCTL_FIELD 38
  207. #define FCOE_ERROR_CODE_ABTS_REPLY_INVALID_BLS_RCTL 39
  208. #define FCOE_ERROR_CODE_ABTS_REPLY_INVALID_RCTL 40
  209. #define FCOE_ERROR_CODE_ABTS_REPLY_RCTL_GENERAL_MISMATCH 41
  210. /* Common error codes */
  211. #define FCOE_ERROR_CODE_COMMON_MIDDLE_FRAME_WITH_PAD 42
  212. #define FCOE_ERROR_CODE_COMMON_SEQ_INIT_IN_TCE 43
  213. #define FCOE_ERROR_CODE_COMMON_FC_HDR_RX_ID_MISMATCH 44
  214. #define FCOE_ERROR_CODE_COMMON_INCORRECT_SEQ_CNT 45
  215. #define FCOE_ERROR_CODE_COMMON_DATA_FC_HDR_FCP_TYPE_MISMATCH 46
  216. #define FCOE_ERROR_CODE_COMMON_DATA_NO_MORE_SGES 47
  217. #define FCOE_ERROR_CODE_COMMON_OPTIONAL_FC_HDR 48
  218. #define FCOE_ERROR_CODE_COMMON_READ_TCE_OX_ID_TOO_BIG 49
  219. #define FCOE_ERROR_CODE_COMMON_DATA_WAS_NOT_TRANSMITTED 50
  220. /* Unsolicited Rx error codes */
  221. #define FCOE_ERROR_CODE_UNSOLICITED_TYPE_NOT_ELS 51
  222. #define FCOE_ERROR_CODE_UNSOLICITED_TYPE_NOT_BLS 52
  223. #define FCOE_ERROR_CODE_UNSOLICITED_FCTL_ELS 53
  224. #define FCOE_ERROR_CODE_UNSOLICITED_FCTL_BLS 54
  225. #define FCOE_ERROR_CODE_UNSOLICITED_R_CTL 55
  226. #define FCOE_ERROR_CODE_RW_TASK_DDF_RCTL_INFO_FIELD 56
  227. #define FCOE_ERROR_CODE_RW_TASK_INVALID_RCTL 57
  228. #define FCOE_ERROR_CODE_RW_TASK_RCTL_GENERAL_MISMATCH 58
  229. /* Timer error codes */
  230. #define FCOE_ERROR_CODE_E_D_TOV_TIMER_EXPIRATION 60
  231. #define FCOE_ERROR_CODE_REC_TOV_TIMER_EXPIRATION 61
  232. #endif /* BNX2FC_CONSTANTS_H_ */