t4_hw.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * This file is part of the Chelsio T4 Ethernet driver for Linux.
  3. *
  4. * Copyright (c) 2003-2010 Chelsio Communications, Inc. All rights reserved.
  5. *
  6. * This software is available to you under a choice of one of two
  7. * licenses. You may choose to be licensed under the terms of the GNU
  8. * General Public License (GPL) Version 2, available from the file
  9. * COPYING in the main directory of this source tree, or the
  10. * OpenIB.org BSD license below:
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above
  17. * copyright notice, this list of conditions and the following
  18. * disclaimer.
  19. *
  20. * - Redistributions in binary form must reproduce the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer in the documentation and/or other materials
  23. * provided with the distribution.
  24. *
  25. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  29. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  30. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  31. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  32. * SOFTWARE.
  33. */
  34. #ifndef __T4_HW_H
  35. #define __T4_HW_H
  36. #include <linux/types.h>
  37. enum {
  38. NCHAN = 4, /* # of HW channels */
  39. MAX_MTU = 9600, /* max MAC MTU, excluding header + FCS */
  40. EEPROMSIZE = 17408, /* Serial EEPROM physical size */
  41. EEPROMVSIZE = 32768, /* Serial EEPROM virtual address space size */
  42. EEPROMPFSIZE = 1024, /* EEPROM writable area size for PFn, n>0 */
  43. RSS_NENTRIES = 2048, /* # of entries in RSS mapping table */
  44. TCB_SIZE = 128, /* TCB size */
  45. NMTUS = 16, /* size of MTU table */
  46. NCCTRL_WIN = 32, /* # of congestion control windows */
  47. L2T_SIZE = 4096, /* # of L2T entries */
  48. MBOX_LEN = 64, /* mailbox size in bytes */
  49. TRACE_LEN = 112, /* length of trace data and mask */
  50. FILTER_OPT_LEN = 36, /* filter tuple width for optional components */
  51. NWOL_PAT = 8, /* # of WoL patterns */
  52. WOL_PAT_LEN = 128, /* length of WoL patterns */
  53. };
  54. enum {
  55. SF_PAGE_SIZE = 256, /* serial flash page size */
  56. SF_SEC_SIZE = 64 * 1024, /* serial flash sector size */
  57. };
  58. enum { RSP_TYPE_FLBUF, RSP_TYPE_CPL, RSP_TYPE_INTR }; /* response entry types */
  59. enum { MBOX_OWNER_NONE, MBOX_OWNER_FW, MBOX_OWNER_DRV }; /* mailbox owners */
  60. enum {
  61. SGE_MAX_WR_LEN = 512, /* max WR size in bytes */
  62. SGE_NTIMERS = 6, /* # of interrupt holdoff timer values */
  63. SGE_NCOUNTERS = 4, /* # of interrupt packet counter values */
  64. SGE_TIMER_RSTRT_CNTR = 6, /* restart RX packet threshold counter */
  65. SGE_TIMER_UPD_CIDX = 7, /* update cidx only */
  66. SGE_EQ_IDXSIZE = 64, /* egress queue pidx/cidx unit size */
  67. SGE_INTRDST_PCI = 0, /* interrupt destination is PCI-E */
  68. SGE_INTRDST_IQ = 1, /* destination is an ingress queue */
  69. SGE_UPDATEDEL_NONE = 0, /* ingress queue pidx update delivery */
  70. SGE_UPDATEDEL_INTR = 1, /* interrupt */
  71. SGE_UPDATEDEL_STPG = 2, /* status page */
  72. SGE_UPDATEDEL_BOTH = 3, /* interrupt and status page */
  73. SGE_HOSTFCMODE_NONE = 0, /* egress queue cidx updates */
  74. SGE_HOSTFCMODE_IQ = 1, /* sent to ingress queue */
  75. SGE_HOSTFCMODE_STPG = 2, /* sent to status page */
  76. SGE_HOSTFCMODE_BOTH = 3, /* ingress queue and status page */
  77. SGE_FETCHBURSTMIN_16B = 0,/* egress queue descriptor fetch minimum */
  78. SGE_FETCHBURSTMIN_32B = 1,
  79. SGE_FETCHBURSTMIN_64B = 2,
  80. SGE_FETCHBURSTMIN_128B = 3,
  81. SGE_FETCHBURSTMAX_64B = 0,/* egress queue descriptor fetch maximum */
  82. SGE_FETCHBURSTMAX_128B = 1,
  83. SGE_FETCHBURSTMAX_256B = 2,
  84. SGE_FETCHBURSTMAX_512B = 3,
  85. SGE_CIDXFLUSHTHRESH_1 = 0,/* egress queue cidx flush threshold */
  86. SGE_CIDXFLUSHTHRESH_2 = 1,
  87. SGE_CIDXFLUSHTHRESH_4 = 2,
  88. SGE_CIDXFLUSHTHRESH_8 = 3,
  89. SGE_CIDXFLUSHTHRESH_16 = 4,
  90. SGE_CIDXFLUSHTHRESH_32 = 5,
  91. SGE_CIDXFLUSHTHRESH_64 = 6,
  92. SGE_CIDXFLUSHTHRESH_128 = 7,
  93. SGE_INGPADBOUNDARY_SHIFT = 5,/* ingress queue pad boundary */
  94. };
  95. struct sge_qstat { /* data written to SGE queue status entries */
  96. __be32 qid;
  97. __be16 cidx;
  98. __be16 pidx;
  99. };
  100. /*
  101. * Structure for last 128 bits of response descriptors
  102. */
  103. struct rsp_ctrl {
  104. __be32 hdrbuflen_pidx;
  105. __be32 pldbuflen_qid;
  106. union {
  107. u8 type_gen;
  108. __be64 last_flit;
  109. };
  110. };
  111. #define RSPD_NEWBUF 0x80000000U
  112. #define RSPD_LEN(x) (((x) >> 0) & 0x7fffffffU)
  113. #define RSPD_QID(x) RSPD_LEN(x)
  114. #define RSPD_GEN(x) ((x) >> 7)
  115. #define RSPD_TYPE(x) (((x) >> 4) & 3)
  116. #define QINTR_CNT_EN 0x1
  117. #define QINTR_TIMER_IDX(x) ((x) << 1)
  118. #define QINTR_TIMER_IDX_GET(x) (((x) >> 1) & 0x7)
  119. /*
  120. * Flash layout.
  121. */
  122. #define FLASH_START(start) ((start) * SF_SEC_SIZE)
  123. #define FLASH_MAX_SIZE(nsecs) ((nsecs) * SF_SEC_SIZE)
  124. enum {
  125. /*
  126. * Various Expansion-ROM boot images, etc.
  127. */
  128. FLASH_EXP_ROM_START_SEC = 0,
  129. FLASH_EXP_ROM_NSECS = 6,
  130. FLASH_EXP_ROM_START = FLASH_START(FLASH_EXP_ROM_START_SEC),
  131. FLASH_EXP_ROM_MAX_SIZE = FLASH_MAX_SIZE(FLASH_EXP_ROM_NSECS),
  132. /*
  133. * iSCSI Boot Firmware Table (iBFT) and other driver-related
  134. * parameters ...
  135. */
  136. FLASH_IBFT_START_SEC = 6,
  137. FLASH_IBFT_NSECS = 1,
  138. FLASH_IBFT_START = FLASH_START(FLASH_IBFT_START_SEC),
  139. FLASH_IBFT_MAX_SIZE = FLASH_MAX_SIZE(FLASH_IBFT_NSECS),
  140. /*
  141. * Boot configuration data.
  142. */
  143. FLASH_BOOTCFG_START_SEC = 7,
  144. FLASH_BOOTCFG_NSECS = 1,
  145. FLASH_BOOTCFG_START = FLASH_START(FLASH_BOOTCFG_START_SEC),
  146. FLASH_BOOTCFG_MAX_SIZE = FLASH_MAX_SIZE(FLASH_BOOTCFG_NSECS),
  147. /*
  148. * Location of firmware image in FLASH.
  149. */
  150. FLASH_FW_START_SEC = 8,
  151. FLASH_FW_NSECS = 8,
  152. FLASH_FW_START = FLASH_START(FLASH_FW_START_SEC),
  153. FLASH_FW_MAX_SIZE = FLASH_MAX_SIZE(FLASH_FW_NSECS),
  154. /*
  155. * iSCSI persistent/crash information.
  156. */
  157. FLASH_ISCSI_CRASH_START_SEC = 29,
  158. FLASH_ISCSI_CRASH_NSECS = 1,
  159. FLASH_ISCSI_CRASH_START = FLASH_START(FLASH_ISCSI_CRASH_START_SEC),
  160. FLASH_ISCSI_CRASH_MAX_SIZE = FLASH_MAX_SIZE(FLASH_ISCSI_CRASH_NSECS),
  161. /*
  162. * FCoE persistent/crash information.
  163. */
  164. FLASH_FCOE_CRASH_START_SEC = 30,
  165. FLASH_FCOE_CRASH_NSECS = 1,
  166. FLASH_FCOE_CRASH_START = FLASH_START(FLASH_FCOE_CRASH_START_SEC),
  167. FLASH_FCOE_CRASH_MAX_SIZE = FLASH_MAX_SIZE(FLASH_FCOE_CRASH_NSECS),
  168. /*
  169. * Location of Firmware Configuration File in FLASH. Since the FPGA
  170. * "FLASH" is smaller we need to store the Configuration File in a
  171. * different location -- which will overlap the end of the firmware
  172. * image if firmware ever gets that large ...
  173. */
  174. FLASH_CFG_START_SEC = 31,
  175. FLASH_CFG_NSECS = 1,
  176. FLASH_CFG_START = FLASH_START(FLASH_CFG_START_SEC),
  177. FLASH_CFG_MAX_SIZE = FLASH_MAX_SIZE(FLASH_CFG_NSECS),
  178. FLASH_FPGA_CFG_START_SEC = 15,
  179. FLASH_FPGA_CFG_START = FLASH_START(FLASH_FPGA_CFG_START_SEC),
  180. /*
  181. * Sectors 32-63 are reserved for FLASH failover.
  182. */
  183. };
  184. #undef FLASH_START
  185. #undef FLASH_MAX_SIZE
  186. #endif /* __T4_HW_H */