igc_defines.h 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (c) 2018 Intel Corporation */
  3. #ifndef _IGC_DEFINES_H_
  4. #define _IGC_DEFINES_H_
  5. #define IGC_CTRL_EXT_DRV_LOAD 0x10000000 /* Drv loaded bit for FW */
  6. /* PCI Bus Info */
  7. #define PCIE_DEVICE_CONTROL2 0x28
  8. #define PCIE_DEVICE_CONTROL2_16ms 0x0005
  9. /* Physical Func Reset Done Indication */
  10. #define IGC_CTRL_EXT_LINK_MODE_MASK 0x00C00000
  11. /* Number of 100 microseconds we wait for PCI Express master disable */
  12. #define MASTER_DISABLE_TIMEOUT 800
  13. /*Blocks new Master requests */
  14. #define IGC_CTRL_GIO_MASTER_DISABLE 0x00000004
  15. /* Status of Master requests. */
  16. #define IGC_STATUS_GIO_MASTER_ENABLE 0x00080000
  17. /* PCI Express Control */
  18. #define IGC_GCR_CMPL_TMOUT_MASK 0x0000F000
  19. #define IGC_GCR_CMPL_TMOUT_10ms 0x00001000
  20. #define IGC_GCR_CMPL_TMOUT_RESEND 0x00010000
  21. #define IGC_GCR_CAP_VER2 0x00040000
  22. /* Receive Address
  23. * Number of high/low register pairs in the RAR. The RAR (Receive Address
  24. * Registers) holds the directed and multicast addresses that we monitor.
  25. * Technically, we have 16 spots. However, we reserve one of these spots
  26. * (RAR[15]) for our directed address used by controllers with
  27. * manageability enabled, allowing us room for 15 multicast addresses.
  28. */
  29. #define IGC_RAH_AV 0x80000000 /* Receive descriptor valid */
  30. #define IGC_RAH_POOL_1 0x00040000
  31. #define IGC_RAL_MAC_ADDR_LEN 4
  32. #define IGC_RAH_MAC_ADDR_LEN 2
  33. /* Error Codes */
  34. #define IGC_SUCCESS 0
  35. #define IGC_ERR_NVM 1
  36. #define IGC_ERR_PHY 2
  37. #define IGC_ERR_CONFIG 3
  38. #define IGC_ERR_PARAM 4
  39. #define IGC_ERR_MAC_INIT 5
  40. #define IGC_ERR_RESET 9
  41. #define IGC_ERR_MASTER_REQUESTS_PENDING 10
  42. #define IGC_ERR_SWFW_SYNC 13
  43. /* Device Control */
  44. #define IGC_CTRL_RST 0x04000000 /* Global reset */
  45. /* PBA constants */
  46. #define IGC_PBA_34K 0x0022
  47. /* SW Semaphore Register */
  48. #define IGC_SWSM_SMBI 0x00000001 /* Driver Semaphore bit */
  49. #define IGC_SWSM_SWESMBI 0x00000002 /* FW Semaphore bit */
  50. /* SWFW_SYNC Definitions */
  51. #define IGC_SWFW_EEP_SM 0x1
  52. #define IGC_SWFW_PHY0_SM 0x2
  53. /* NVM Control */
  54. /* Number of milliseconds for NVM auto read done after MAC reset. */
  55. #define AUTO_READ_DONE_TIMEOUT 10
  56. #define IGC_EECD_AUTO_RD 0x00000200 /* NVM Auto Read done */
  57. #define IGC_EECD_REQ 0x00000040 /* NVM Access Request */
  58. #define IGC_EECD_GNT 0x00000080 /* NVM Access Grant */
  59. /* NVM Addressing bits based on type 0=small, 1=large */
  60. #define IGC_EECD_ADDR_BITS 0x00000400
  61. #define IGC_NVM_GRANT_ATTEMPTS 1000 /* NVM # attempts to gain grant */
  62. #define IGC_EECD_SIZE_EX_MASK 0x00007800 /* NVM Size */
  63. #define IGC_EECD_SIZE_EX_SHIFT 11
  64. #define IGC_EECD_FLUPD_I225 0x00800000 /* Update FLASH */
  65. #define IGC_EECD_FLUDONE_I225 0x04000000 /* Update FLASH done*/
  66. #define IGC_EECD_FLASH_DETECTED_I225 0x00080000 /* FLASH detected */
  67. #define IGC_FLUDONE_ATTEMPTS 20000
  68. #define IGC_EERD_EEWR_MAX_COUNT 512 /* buffered EEPROM words rw */
  69. /* Offset to data in NVM read/write registers */
  70. #define IGC_NVM_RW_REG_DATA 16
  71. #define IGC_NVM_RW_REG_DONE 2 /* Offset to READ/WRITE done bit */
  72. #define IGC_NVM_RW_REG_START 1 /* Start operation */
  73. #define IGC_NVM_RW_ADDR_SHIFT 2 /* Shift to the address bits */
  74. #define IGC_NVM_POLL_READ 0 /* Flag for polling for read complete */
  75. /* NVM Word Offsets */
  76. #define NVM_CHECKSUM_REG 0x003F
  77. /* For checksumming, the sum of all words in the NVM should equal 0xBABA. */
  78. #define NVM_SUM 0xBABA
  79. #define NVM_PBA_OFFSET_0 8
  80. #define NVM_PBA_OFFSET_1 9
  81. #define NVM_RESERVED_WORD 0xFFFF
  82. #define NVM_PBA_PTR_GUARD 0xFAFA
  83. #define NVM_WORD_SIZE_BASE_SHIFT 6
  84. /* Collision related configuration parameters */
  85. #define IGC_COLLISION_THRESHOLD 15
  86. #define IGC_CT_SHIFT 4
  87. #define IGC_COLLISION_DISTANCE 63
  88. #define IGC_COLD_SHIFT 12
  89. /* Device Status */
  90. #define IGC_STATUS_FD 0x00000001 /* Full duplex.0=half,1=full */
  91. #define IGC_STATUS_LU 0x00000002 /* Link up.0=no,1=link */
  92. #define IGC_STATUS_FUNC_MASK 0x0000000C /* PCI Function Mask */
  93. #define IGC_STATUS_FUNC_SHIFT 2
  94. #define IGC_STATUS_FUNC_1 0x00000004 /* Function 1 */
  95. #define IGC_STATUS_TXOFF 0x00000010 /* transmission paused */
  96. #define IGC_STATUS_SPEED_100 0x00000040 /* Speed 100Mb/s */
  97. #define IGC_STATUS_SPEED_1000 0x00000080 /* Speed 1000Mb/s */
  98. #define IGC_STATUS_SPEED_2500 0x00400000 /* Speed 2.5Gb/s */
  99. #define SPEED_10 10
  100. #define SPEED_100 100
  101. #define SPEED_1000 1000
  102. #define SPEED_2500 2500
  103. #define HALF_DUPLEX 1
  104. #define FULL_DUPLEX 2
  105. /* Interrupt Cause Read */
  106. #define IGC_ICR_TXDW BIT(0) /* Transmit desc written back */
  107. #define IGC_ICR_TXQE BIT(1) /* Transmit Queue empty */
  108. #define IGC_ICR_LSC BIT(2) /* Link Status Change */
  109. #define IGC_ICR_RXSEQ BIT(3) /* Rx sequence error */
  110. #define IGC_ICR_RXDMT0 BIT(4) /* Rx desc min. threshold (0) */
  111. #define IGC_ICR_RXO BIT(6) /* Rx overrun */
  112. #define IGC_ICR_RXT0 BIT(7) /* Rx timer intr (ring 0) */
  113. #define IGC_ICR_DRSTA BIT(30) /* Device Reset Asserted */
  114. /* If this bit asserted, the driver should claim the interrupt */
  115. #define IGC_ICR_INT_ASSERTED BIT(31)
  116. #define IGC_ICS_RXT0 IGC_ICR_RXT0 /* Rx timer intr */
  117. #define IMS_ENABLE_MASK ( \
  118. IGC_IMS_RXT0 | \
  119. IGC_IMS_TXDW | \
  120. IGC_IMS_RXDMT0 | \
  121. IGC_IMS_RXSEQ | \
  122. IGC_IMS_LSC)
  123. /* Interrupt Mask Set */
  124. #define IGC_IMS_TXDW IGC_ICR_TXDW /* Tx desc written back */
  125. #define IGC_IMS_RXSEQ IGC_ICR_RXSEQ /* Rx sequence error */
  126. #define IGC_IMS_LSC IGC_ICR_LSC /* Link Status Change */
  127. #define IGC_IMS_DOUTSYNC IGC_ICR_DOUTSYNC /* NIC DMA out of sync */
  128. #define IGC_IMS_DRSTA IGC_ICR_DRSTA /* Device Reset Asserted */
  129. #define IGC_IMS_RXT0 IGC_ICR_RXT0 /* Rx timer intr */
  130. #define IGC_IMS_RXDMT0 IGC_ICR_RXDMT0 /* Rx desc min. threshold */
  131. #define IGC_QVECTOR_MASK 0x7FFC /* Q-vector mask */
  132. #define IGC_ITR_VAL_MASK 0x04 /* ITR value mask */
  133. #define IGC_ICR_DOUTSYNC 0x10000000 /* NIC DMA out of sync */
  134. #define IGC_EITR_CNT_IGNR 0x80000000 /* Don't reset counters on write */
  135. #define IGC_IVAR_VALID 0x80
  136. #define IGC_GPIE_NSICR 0x00000001
  137. #define IGC_GPIE_MSIX_MODE 0x00000010
  138. #define IGC_GPIE_EIAME 0x40000000
  139. #define IGC_GPIE_PBA 0x80000000
  140. /* Transmit Descriptor bit definitions */
  141. #define IGC_TXD_DTYP_D 0x00100000 /* Data Descriptor */
  142. #define IGC_TXD_DTYP_C 0x00000000 /* Context Descriptor */
  143. #define IGC_TXD_POPTS_IXSM 0x01 /* Insert IP checksum */
  144. #define IGC_TXD_POPTS_TXSM 0x02 /* Insert TCP/UDP checksum */
  145. #define IGC_TXD_CMD_EOP 0x01000000 /* End of Packet */
  146. #define IGC_TXD_CMD_IFCS 0x02000000 /* Insert FCS (Ethernet CRC) */
  147. #define IGC_TXD_CMD_IC 0x04000000 /* Insert Checksum */
  148. #define IGC_TXD_CMD_RS 0x08000000 /* Report Status */
  149. #define IGC_TXD_CMD_RPS 0x10000000 /* Report Packet Sent */
  150. #define IGC_TXD_CMD_DEXT 0x20000000 /* Desc extension (0 = legacy) */
  151. #define IGC_TXD_CMD_VLE 0x40000000 /* Add VLAN tag */
  152. #define IGC_TXD_CMD_IDE 0x80000000 /* Enable Tidv register */
  153. #define IGC_TXD_STAT_DD 0x00000001 /* Descriptor Done */
  154. #define IGC_TXD_STAT_EC 0x00000002 /* Excess Collisions */
  155. #define IGC_TXD_STAT_LC 0x00000004 /* Late Collisions */
  156. #define IGC_TXD_STAT_TU 0x00000008 /* Transmit underrun */
  157. #define IGC_TXD_CMD_TCP 0x01000000 /* TCP packet */
  158. #define IGC_TXD_CMD_IP 0x02000000 /* IP packet */
  159. #define IGC_TXD_CMD_TSE 0x04000000 /* TCP Seg enable */
  160. #define IGC_TXD_STAT_TC 0x00000004 /* Tx Underrun */
  161. #define IGC_TXD_EXTCMD_TSTAMP 0x00000010 /* IEEE1588 Timestamp packet */
  162. /* Transmit Control */
  163. #define IGC_TCTL_EN 0x00000002 /* enable Tx */
  164. #define IGC_TCTL_PSP 0x00000008 /* pad short packets */
  165. #define IGC_TCTL_CT 0x00000ff0 /* collision threshold */
  166. #define IGC_TCTL_COLD 0x003ff000 /* collision distance */
  167. #define IGC_TCTL_RTLC 0x01000000 /* Re-transmit on late collision */
  168. #define IGC_TCTL_MULR 0x10000000 /* Multiple request support */
  169. #define IGC_CT_SHIFT 4
  170. #define IGC_COLLISION_THRESHOLD 15
  171. /* Flow Control Constants */
  172. #define FLOW_CONTROL_ADDRESS_LOW 0x00C28001
  173. #define FLOW_CONTROL_ADDRESS_HIGH 0x00000100
  174. #define FLOW_CONTROL_TYPE 0x8808
  175. /* Enable XON frame transmission */
  176. #define IGC_FCRTL_XONE 0x80000000
  177. /* Management Control */
  178. #define IGC_MANC_RCV_TCO_EN 0x00020000 /* Receive TCO Packets Enabled */
  179. /* Receive Control */
  180. #define IGC_RCTL_RST 0x00000001 /* Software reset */
  181. #define IGC_RCTL_EN 0x00000002 /* enable */
  182. #define IGC_RCTL_SBP 0x00000004 /* store bad packet */
  183. #define IGC_RCTL_UPE 0x00000008 /* unicast promisc enable */
  184. #define IGC_RCTL_MPE 0x00000010 /* multicast promisc enable */
  185. #define IGC_RCTL_LPE 0x00000020 /* long packet enable */
  186. #define IGC_RCTL_LBM_MAC 0x00000040 /* MAC loopback mode */
  187. #define IGC_RCTL_LBM_TCVR 0x000000C0 /* tcvr loopback mode */
  188. #define IGC_RCTL_RDMTS_HALF 0x00000000 /* Rx desc min thresh size */
  189. #define IGC_RCTL_BAM 0x00008000 /* broadcast enable */
  190. /* Receive Descriptor bit definitions */
  191. #define IGC_RXD_STAT_EOP 0x02 /* End of Packet */
  192. #define IGC_RXDEXT_STATERR_CE 0x01000000
  193. #define IGC_RXDEXT_STATERR_SE 0x02000000
  194. #define IGC_RXDEXT_STATERR_SEQ 0x04000000
  195. #define IGC_RXDEXT_STATERR_CXE 0x10000000
  196. #define IGC_RXDEXT_STATERR_TCPE 0x20000000
  197. #define IGC_RXDEXT_STATERR_IPE 0x40000000
  198. #define IGC_RXDEXT_STATERR_RXE 0x80000000
  199. /* Same mask, but for extended and packet split descriptors */
  200. #define IGC_RXDEXT_ERR_FRAME_ERR_MASK ( \
  201. IGC_RXDEXT_STATERR_CE | \
  202. IGC_RXDEXT_STATERR_SE | \
  203. IGC_RXDEXT_STATERR_SEQ | \
  204. IGC_RXDEXT_STATERR_CXE | \
  205. IGC_RXDEXT_STATERR_RXE)
  206. /* Header split receive */
  207. #define IGC_RFCTL_IPV6_EX_DIS 0x00010000
  208. #define IGC_RFCTL_LEF 0x00040000
  209. #define IGC_RCTL_SZ_256 0x00030000 /* Rx buffer size 256 */
  210. #define IGC_RCTL_MO_SHIFT 12 /* multicast offset shift */
  211. #define IGC_RCTL_CFIEN 0x00080000 /* canonical form enable */
  212. #define IGC_RCTL_DPF 0x00400000 /* discard pause frames */
  213. #define IGC_RCTL_PMCF 0x00800000 /* pass MAC control frames */
  214. #define IGC_RCTL_SECRC 0x04000000 /* Strip Ethernet CRC */
  215. #define I225_RXPBSIZE_DEFAULT 0x000000A2 /* RXPBSIZE default */
  216. #define I225_TXPBSIZE_DEFAULT 0x04000014 /* TXPBSIZE default */
  217. #define IGC_N0_QUEUE -1
  218. #endif /* _IGC_DEFINES_H_ */