t4_hw.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. /*
  2. * This file is part of the Chelsio T4 Ethernet driver for Linux.
  3. *
  4. * Copyright (c) 2003-2014 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. T6_RSS_NENTRIES = 4096, /* # of entries in RSS mapping table */
  45. TCB_SIZE = 128, /* TCB size */
  46. NMTUS = 16, /* size of MTU table */
  47. NCCTRL_WIN = 32, /* # of congestion control windows */
  48. NTX_SCHED = 8, /* # of HW Tx scheduling queues */
  49. PM_NSTATS = 5, /* # of PM stats */
  50. T6_PM_NSTATS = 7, /* # of PM stats in T6 */
  51. MBOX_LEN = 64, /* mailbox size in bytes */
  52. TRACE_LEN = 112, /* length of trace data and mask */
  53. FILTER_OPT_LEN = 36, /* filter tuple width for optional components */
  54. };
  55. enum {
  56. CIM_NUM_IBQ = 6, /* # of CIM IBQs */
  57. CIM_NUM_OBQ = 6, /* # of CIM OBQs */
  58. CIM_NUM_OBQ_T5 = 8, /* # of CIM OBQs for T5 adapter */
  59. CIMLA_SIZE = 2048, /* # of 32-bit words in CIM LA */
  60. CIM_PIFLA_SIZE = 64, /* # of 192-bit words in CIM PIF LA */
  61. CIM_MALA_SIZE = 64, /* # of 160-bit words in CIM MA LA */
  62. CIM_IBQ_SIZE = 128, /* # of 128-bit words in a CIM IBQ */
  63. CIM_OBQ_SIZE = 128, /* # of 128-bit words in a CIM OBQ */
  64. TPLA_SIZE = 128, /* # of 64-bit words in TP LA */
  65. ULPRX_LA_SIZE = 512, /* # of 256-bit words in ULP_RX LA */
  66. };
  67. /* SGE context types */
  68. enum ctxt_type {
  69. CTXT_EGRESS,
  70. CTXT_INGRESS,
  71. CTXT_FLM,
  72. CTXT_CNM,
  73. };
  74. enum {
  75. SF_PAGE_SIZE = 256, /* serial flash page size */
  76. SF_SEC_SIZE = 64 * 1024, /* serial flash sector size */
  77. };
  78. enum { RSP_TYPE_FLBUF, RSP_TYPE_CPL, RSP_TYPE_INTR }; /* response entry types */
  79. enum { MBOX_OWNER_NONE, MBOX_OWNER_FW, MBOX_OWNER_DRV }; /* mailbox owners */
  80. enum {
  81. SGE_MAX_WR_LEN = 512, /* max WR size in bytes */
  82. SGE_CTXT_SIZE = 24, /* size of SGE context */
  83. SGE_NTIMERS = 6, /* # of interrupt holdoff timer values */
  84. SGE_NCOUNTERS = 4, /* # of interrupt packet counter values */
  85. SGE_MAX_IQ_SIZE = 65520,
  86. SGE_TIMER_RSTRT_CNTR = 6, /* restart RX packet threshold counter */
  87. SGE_TIMER_UPD_CIDX = 7, /* update cidx only */
  88. SGE_EQ_IDXSIZE = 64, /* egress queue pidx/cidx unit size */
  89. SGE_INTRDST_PCI = 0, /* interrupt destination is PCI-E */
  90. SGE_INTRDST_IQ = 1, /* destination is an ingress queue */
  91. SGE_UPDATEDEL_NONE = 0, /* ingress queue pidx update delivery */
  92. SGE_UPDATEDEL_INTR = 1, /* interrupt */
  93. SGE_UPDATEDEL_STPG = 2, /* status page */
  94. SGE_UPDATEDEL_BOTH = 3, /* interrupt and status page */
  95. SGE_HOSTFCMODE_NONE = 0, /* egress queue cidx updates */
  96. SGE_HOSTFCMODE_IQ = 1, /* sent to ingress queue */
  97. SGE_HOSTFCMODE_STPG = 2, /* sent to status page */
  98. SGE_HOSTFCMODE_BOTH = 3, /* ingress queue and status page */
  99. SGE_FETCHBURSTMIN_16B = 0,/* egress queue descriptor fetch minimum */
  100. SGE_FETCHBURSTMIN_32B = 1,
  101. SGE_FETCHBURSTMIN_64B = 2,
  102. SGE_FETCHBURSTMIN_128B = 3,
  103. SGE_FETCHBURSTMAX_64B = 0,/* egress queue descriptor fetch maximum */
  104. SGE_FETCHBURSTMAX_128B = 1,
  105. SGE_FETCHBURSTMAX_256B = 2,
  106. SGE_FETCHBURSTMAX_512B = 3,
  107. SGE_CIDXFLUSHTHRESH_1 = 0,/* egress queue cidx flush threshold */
  108. SGE_CIDXFLUSHTHRESH_2 = 1,
  109. SGE_CIDXFLUSHTHRESH_4 = 2,
  110. SGE_CIDXFLUSHTHRESH_8 = 3,
  111. SGE_CIDXFLUSHTHRESH_16 = 4,
  112. SGE_CIDXFLUSHTHRESH_32 = 5,
  113. SGE_CIDXFLUSHTHRESH_64 = 6,
  114. SGE_CIDXFLUSHTHRESH_128 = 7,
  115. SGE_INGPADBOUNDARY_SHIFT = 5,/* ingress queue pad boundary */
  116. };
  117. /* PCI-e memory window access */
  118. enum pcie_memwin {
  119. MEMWIN_NIC = 0,
  120. MEMWIN_RSVD1 = 1,
  121. MEMWIN_RSVD2 = 2,
  122. MEMWIN_RDMA = 3,
  123. MEMWIN_RSVD4 = 4,
  124. MEMWIN_FOISCSI = 5,
  125. MEMWIN_CSIOSTOR = 6,
  126. MEMWIN_RSVD7 = 7,
  127. };
  128. struct sge_qstat { /* data written to SGE queue status entries */
  129. __be32 qid;
  130. __be16 cidx;
  131. __be16 pidx;
  132. };
  133. /*
  134. * Structure for last 128 bits of response descriptors
  135. */
  136. struct rsp_ctrl {
  137. __be32 hdrbuflen_pidx;
  138. __be32 pldbuflen_qid;
  139. union {
  140. u8 type_gen;
  141. __be64 last_flit;
  142. };
  143. };
  144. #define RSPD_NEWBUF_S 31
  145. #define RSPD_NEWBUF_V(x) ((x) << RSPD_NEWBUF_S)
  146. #define RSPD_NEWBUF_F RSPD_NEWBUF_V(1U)
  147. #define RSPD_LEN_S 0
  148. #define RSPD_LEN_M 0x7fffffff
  149. #define RSPD_LEN_G(x) (((x) >> RSPD_LEN_S) & RSPD_LEN_M)
  150. #define RSPD_QID_S RSPD_LEN_S
  151. #define RSPD_QID_M RSPD_LEN_M
  152. #define RSPD_QID_G(x) RSPD_LEN_G(x)
  153. #define RSPD_GEN_S 7
  154. #define RSPD_TYPE_S 4
  155. #define RSPD_TYPE_M 0x3
  156. #define RSPD_TYPE_G(x) (((x) >> RSPD_TYPE_S) & RSPD_TYPE_M)
  157. /* Rx queue interrupt deferral fields: counter enable and timer index */
  158. #define QINTR_CNT_EN_S 0
  159. #define QINTR_CNT_EN_V(x) ((x) << QINTR_CNT_EN_S)
  160. #define QINTR_CNT_EN_F QINTR_CNT_EN_V(1U)
  161. #define QINTR_TIMER_IDX_S 1
  162. #define QINTR_TIMER_IDX_M 0x7
  163. #define QINTR_TIMER_IDX_V(x) ((x) << QINTR_TIMER_IDX_S)
  164. #define QINTR_TIMER_IDX_G(x) (((x) >> QINTR_TIMER_IDX_S) & QINTR_TIMER_IDX_M)
  165. /*
  166. * Flash layout.
  167. */
  168. #define FLASH_START(start) ((start) * SF_SEC_SIZE)
  169. #define FLASH_MAX_SIZE(nsecs) ((nsecs) * SF_SEC_SIZE)
  170. enum {
  171. /*
  172. * Various Expansion-ROM boot images, etc.
  173. */
  174. FLASH_EXP_ROM_START_SEC = 0,
  175. FLASH_EXP_ROM_NSECS = 6,
  176. FLASH_EXP_ROM_START = FLASH_START(FLASH_EXP_ROM_START_SEC),
  177. FLASH_EXP_ROM_MAX_SIZE = FLASH_MAX_SIZE(FLASH_EXP_ROM_NSECS),
  178. /*
  179. * iSCSI Boot Firmware Table (iBFT) and other driver-related
  180. * parameters ...
  181. */
  182. FLASH_IBFT_START_SEC = 6,
  183. FLASH_IBFT_NSECS = 1,
  184. FLASH_IBFT_START = FLASH_START(FLASH_IBFT_START_SEC),
  185. FLASH_IBFT_MAX_SIZE = FLASH_MAX_SIZE(FLASH_IBFT_NSECS),
  186. /*
  187. * Boot configuration data.
  188. */
  189. FLASH_BOOTCFG_START_SEC = 7,
  190. FLASH_BOOTCFG_NSECS = 1,
  191. FLASH_BOOTCFG_START = FLASH_START(FLASH_BOOTCFG_START_SEC),
  192. FLASH_BOOTCFG_MAX_SIZE = FLASH_MAX_SIZE(FLASH_BOOTCFG_NSECS),
  193. /*
  194. * Location of firmware image in FLASH.
  195. */
  196. FLASH_FW_START_SEC = 8,
  197. FLASH_FW_NSECS = 16,
  198. FLASH_FW_START = FLASH_START(FLASH_FW_START_SEC),
  199. FLASH_FW_MAX_SIZE = FLASH_MAX_SIZE(FLASH_FW_NSECS),
  200. /* Location of bootstrap firmware image in FLASH.
  201. */
  202. FLASH_FWBOOTSTRAP_START_SEC = 27,
  203. FLASH_FWBOOTSTRAP_NSECS = 1,
  204. FLASH_FWBOOTSTRAP_START = FLASH_START(FLASH_FWBOOTSTRAP_START_SEC),
  205. FLASH_FWBOOTSTRAP_MAX_SIZE = FLASH_MAX_SIZE(FLASH_FWBOOTSTRAP_NSECS),
  206. /*
  207. * iSCSI persistent/crash information.
  208. */
  209. FLASH_ISCSI_CRASH_START_SEC = 29,
  210. FLASH_ISCSI_CRASH_NSECS = 1,
  211. FLASH_ISCSI_CRASH_START = FLASH_START(FLASH_ISCSI_CRASH_START_SEC),
  212. FLASH_ISCSI_CRASH_MAX_SIZE = FLASH_MAX_SIZE(FLASH_ISCSI_CRASH_NSECS),
  213. /*
  214. * FCoE persistent/crash information.
  215. */
  216. FLASH_FCOE_CRASH_START_SEC = 30,
  217. FLASH_FCOE_CRASH_NSECS = 1,
  218. FLASH_FCOE_CRASH_START = FLASH_START(FLASH_FCOE_CRASH_START_SEC),
  219. FLASH_FCOE_CRASH_MAX_SIZE = FLASH_MAX_SIZE(FLASH_FCOE_CRASH_NSECS),
  220. /*
  221. * Location of Firmware Configuration File in FLASH. Since the FPGA
  222. * "FLASH" is smaller we need to store the Configuration File in a
  223. * different location -- which will overlap the end of the firmware
  224. * image if firmware ever gets that large ...
  225. */
  226. FLASH_CFG_START_SEC = 31,
  227. FLASH_CFG_NSECS = 1,
  228. FLASH_CFG_START = FLASH_START(FLASH_CFG_START_SEC),
  229. FLASH_CFG_MAX_SIZE = FLASH_MAX_SIZE(FLASH_CFG_NSECS),
  230. /* We don't support FLASH devices which can't support the full
  231. * standard set of sections which we need for normal
  232. * operations.
  233. */
  234. FLASH_MIN_SIZE = FLASH_CFG_START + FLASH_CFG_MAX_SIZE,
  235. FLASH_FPGA_CFG_START_SEC = 15,
  236. FLASH_FPGA_CFG_START = FLASH_START(FLASH_FPGA_CFG_START_SEC),
  237. /*
  238. * Sectors 32-63 are reserved for FLASH failover.
  239. */
  240. };
  241. #undef FLASH_START
  242. #undef FLASH_MAX_SIZE
  243. #define SGE_TIMESTAMP_S 0
  244. #define SGE_TIMESTAMP_M 0xfffffffffffffffULL
  245. #define SGE_TIMESTAMP_V(x) ((__u64)(x) << SGE_TIMESTAMP_S)
  246. #define SGE_TIMESTAMP_G(x) (((__u64)(x) >> SGE_TIMESTAMP_S) & SGE_TIMESTAMP_M)
  247. #define I2C_DEV_ADDR_A0 0xa0
  248. #define I2C_DEV_ADDR_A2 0xa2
  249. #define I2C_PAGE_SIZE 0x100
  250. #define SFP_DIAG_TYPE_ADDR 0x5c
  251. #define SFP_DIAG_TYPE_LEN 0x1
  252. #define SFF_8472_COMP_ADDR 0x5e
  253. #define SFF_8472_COMP_LEN 0x1
  254. #define SFF_REV_ADDR 0x1
  255. #define SFF_REV_LEN 0x1
  256. #endif /* __T4_HW_H */