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