nfp_net_ctrl.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. /*
  2. * Copyright (C) 2015 Netronome Systems, Inc.
  3. *
  4. * This software is dual licensed under the GNU General License Version 2,
  5. * June 1991 as shown in the file COPYING in the top-level directory of this
  6. * source tree or the BSD 2-Clause License provided below. You have the
  7. * option to license this software under the complete terms of either license.
  8. *
  9. * The BSD 2-Clause License:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * 1. Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * 2. Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. */
  33. /*
  34. * nfp_net_ctrl.h
  35. * Netronome network device driver: Control BAR layout
  36. * Authors: Jakub Kicinski <jakub.kicinski@netronome.com>
  37. * Jason McMullan <jason.mcmullan@netronome.com>
  38. * Rolf Neugebauer <rolf.neugebauer@netronome.com>
  39. * Brad Petrus <brad.petrus@netronome.com>
  40. */
  41. #ifndef _NFP_NET_CTRL_H_
  42. #define _NFP_NET_CTRL_H_
  43. /* IMPORTANT: This header file is shared with the FW,
  44. * no OS specific constructs, please!
  45. */
  46. /**
  47. * Configuration BAR size.
  48. *
  49. * The configuration BAR is 8K in size, but on the NFP6000, due to
  50. * THB-350, 32k needs to be reserved.
  51. */
  52. #define NFP_NET_CFG_BAR_SZ (32 * 1024)
  53. /**
  54. * Offset in Freelist buffer where packet starts on RX
  55. */
  56. #define NFP_NET_RX_OFFSET 32
  57. /**
  58. * Maximum header size supported for LSO frames
  59. */
  60. #define NFP_NET_LSO_MAX_HDR_SZ 255
  61. /**
  62. * Prepend field types
  63. */
  64. #define NFP_NET_META_FIELD_SIZE 4
  65. #define NFP_NET_META_HASH 1 /* next field carries hash type */
  66. #define NFP_NET_META_MARK 2
  67. /**
  68. * Hash type pre-pended when a RSS hash was computed
  69. */
  70. #define NFP_NET_RSS_NONE 0
  71. #define NFP_NET_RSS_IPV4 1
  72. #define NFP_NET_RSS_IPV6 2
  73. #define NFP_NET_RSS_IPV6_EX 3
  74. #define NFP_NET_RSS_IPV4_TCP 4
  75. #define NFP_NET_RSS_IPV6_TCP 5
  76. #define NFP_NET_RSS_IPV6_EX_TCP 6
  77. #define NFP_NET_RSS_IPV4_UDP 7
  78. #define NFP_NET_RSS_IPV6_UDP 8
  79. #define NFP_NET_RSS_IPV6_EX_UDP 9
  80. /**
  81. * @NFP_NET_TXR_MAX: Maximum number of TX rings
  82. * @NFP_NET_RXR_MAX: Maximum number of RX rings
  83. */
  84. #define NFP_NET_TXR_MAX 64
  85. #define NFP_NET_RXR_MAX 64
  86. /**
  87. * Read/Write config words (0x0000 - 0x002c)
  88. * @NFP_NET_CFG_CTRL: Global control
  89. * @NFP_NET_CFG_UPDATE: Indicate which fields are updated
  90. * @NFP_NET_CFG_TXRS_ENABLE: Bitmask of enabled TX rings
  91. * @NFP_NET_CFG_RXRS_ENABLE: Bitmask of enabled RX rings
  92. * @NFP_NET_CFG_MTU: Set MTU size
  93. * @NFP_NET_CFG_FLBUFSZ: Set freelist buffer size (must be larger than MTU)
  94. * @NFP_NET_CFG_EXN: MSI-X table entry for exceptions
  95. * @NFP_NET_CFG_LSC: MSI-X table entry for link state changes
  96. * @NFP_NET_CFG_MACADDR: MAC address
  97. *
  98. * TODO:
  99. * - define Error details in UPDATE
  100. */
  101. #define NFP_NET_CFG_CTRL 0x0000
  102. #define NFP_NET_CFG_CTRL_ENABLE (0x1 << 0) /* Global enable */
  103. #define NFP_NET_CFG_CTRL_PROMISC (0x1 << 1) /* Enable Promisc mode */
  104. #define NFP_NET_CFG_CTRL_L2BC (0x1 << 2) /* Allow L2 Broadcast */
  105. #define NFP_NET_CFG_CTRL_L2MC (0x1 << 3) /* Allow L2 Multicast */
  106. #define NFP_NET_CFG_CTRL_RXCSUM (0x1 << 4) /* Enable RX Checksum */
  107. #define NFP_NET_CFG_CTRL_TXCSUM (0x1 << 5) /* Enable TX Checksum */
  108. #define NFP_NET_CFG_CTRL_RXVLAN (0x1 << 6) /* Enable VLAN strip */
  109. #define NFP_NET_CFG_CTRL_TXVLAN (0x1 << 7) /* Enable VLAN insert */
  110. #define NFP_NET_CFG_CTRL_SCATTER (0x1 << 8) /* Scatter DMA */
  111. #define NFP_NET_CFG_CTRL_GATHER (0x1 << 9) /* Gather DMA */
  112. #define NFP_NET_CFG_CTRL_LSO (0x1 << 10) /* LSO/TSO */
  113. #define NFP_NET_CFG_CTRL_RINGCFG (0x1 << 16) /* Ring runtime changes */
  114. #define NFP_NET_CFG_CTRL_RSS (0x1 << 17) /* RSS */
  115. #define NFP_NET_CFG_CTRL_IRQMOD (0x1 << 18) /* Interrupt moderation */
  116. #define NFP_NET_CFG_CTRL_RINGPRIO (0x1 << 19) /* Ring priorities */
  117. #define NFP_NET_CFG_CTRL_MSIXAUTO (0x1 << 20) /* MSI-X auto-masking */
  118. #define NFP_NET_CFG_CTRL_TXRWB (0x1 << 21) /* Write-back of TX ring*/
  119. #define NFP_NET_CFG_CTRL_L2SWITCH (0x1 << 22) /* L2 Switch */
  120. #define NFP_NET_CFG_CTRL_L2SWITCH_LOCAL (0x1 << 23) /* Switch to local */
  121. #define NFP_NET_CFG_CTRL_VXLAN (0x1 << 24) /* VXLAN tunnel support */
  122. #define NFP_NET_CFG_CTRL_NVGRE (0x1 << 25) /* NVGRE tunnel support */
  123. #define NFP_NET_CFG_CTRL_BPF (0x1 << 27) /* BPF offload capable */
  124. #define NFP_NET_CFG_UPDATE 0x0004
  125. #define NFP_NET_CFG_UPDATE_GEN (0x1 << 0) /* General update */
  126. #define NFP_NET_CFG_UPDATE_RING (0x1 << 1) /* Ring config change */
  127. #define NFP_NET_CFG_UPDATE_RSS (0x1 << 2) /* RSS config change */
  128. #define NFP_NET_CFG_UPDATE_TXRPRIO (0x1 << 3) /* TX Ring prio change */
  129. #define NFP_NET_CFG_UPDATE_RXRPRIO (0x1 << 4) /* RX Ring prio change */
  130. #define NFP_NET_CFG_UPDATE_MSIX (0x1 << 5) /* MSI-X change */
  131. #define NFP_NET_CFG_UPDATE_L2SWITCH (0x1 << 6) /* Switch changes */
  132. #define NFP_NET_CFG_UPDATE_RESET (0x1 << 7) /* Update due to FLR */
  133. #define NFP_NET_CFG_UPDATE_IRQMOD (0x1 << 8) /* IRQ mod change */
  134. #define NFP_NET_CFG_UPDATE_VXLAN (0x1 << 9) /* VXLAN port change */
  135. #define NFP_NET_CFG_UPDATE_BPF (0x1 << 10) /* BPF program load */
  136. #define NFP_NET_CFG_UPDATE_ERR (0x1 << 31) /* A error occurred */
  137. #define NFP_NET_CFG_TXRS_ENABLE 0x0008
  138. #define NFP_NET_CFG_RXRS_ENABLE 0x0010
  139. #define NFP_NET_CFG_MTU 0x0018
  140. #define NFP_NET_CFG_FLBUFSZ 0x001c
  141. #define NFP_NET_CFG_EXN 0x001f
  142. #define NFP_NET_CFG_LSC 0x0020
  143. #define NFP_NET_CFG_MACADDR 0x0024
  144. /**
  145. * Read-only words (0x0030 - 0x0050):
  146. * @NFP_NET_CFG_VERSION: Firmware version number
  147. * @NFP_NET_CFG_STS: Status
  148. * @NFP_NET_CFG_CAP: Capabilities (same bits as @NFP_NET_CFG_CTRL)
  149. * @NFP_NET_CFG_MAX_TXRINGS: Maximum number of TX rings
  150. * @NFP_NET_CFG_MAX_RXRINGS: Maximum number of RX rings
  151. * @NFP_NET_CFG_MAX_MTU: Maximum support MTU
  152. * @NFP_NET_CFG_START_TXQ: Start Queue Control Queue to use for TX (PF only)
  153. * @NFP_NET_CFG_START_RXQ: Start Queue Control Queue to use for RX (PF only)
  154. *
  155. * TODO:
  156. * - define more STS bits
  157. */
  158. #define NFP_NET_CFG_VERSION 0x0030
  159. #define NFP_NET_CFG_VERSION_RESERVED_MASK (0xff << 24)
  160. #define NFP_NET_CFG_VERSION_CLASS_MASK (0xff << 16)
  161. #define NFP_NET_CFG_VERSION_CLASS(x) (((x) & 0xff) << 16)
  162. #define NFP_NET_CFG_VERSION_CLASS_GENERIC 0
  163. #define NFP_NET_CFG_VERSION_MAJOR_MASK (0xff << 8)
  164. #define NFP_NET_CFG_VERSION_MAJOR(x) (((x) & 0xff) << 8)
  165. #define NFP_NET_CFG_VERSION_MINOR_MASK (0xff << 0)
  166. #define NFP_NET_CFG_VERSION_MINOR(x) (((x) & 0xff) << 0)
  167. #define NFP_NET_CFG_STS 0x0034
  168. #define NFP_NET_CFG_STS_LINK (0x1 << 0) /* Link up or down */
  169. #define NFP_NET_CFG_CAP 0x0038
  170. #define NFP_NET_CFG_MAX_TXRINGS 0x003c
  171. #define NFP_NET_CFG_MAX_RXRINGS 0x0040
  172. #define NFP_NET_CFG_MAX_MTU 0x0044
  173. /* Next two words are being used by VFs for solving THB350 issue */
  174. #define NFP_NET_CFG_START_TXQ 0x0048
  175. #define NFP_NET_CFG_START_RXQ 0x004c
  176. /**
  177. * NFP-3200 workaround (0x0050 - 0x0058)
  178. * @NFP_NET_CFG_SPARE_ADDR: DMA address for ME code to use (e.g. YDS-155 fix)
  179. */
  180. #define NFP_NET_CFG_SPARE_ADDR 0x0050
  181. /**
  182. * NFP6000/NFP4000 - Prepend configuration
  183. */
  184. #define NFP_NET_CFG_RX_OFFSET 0x0050
  185. #define NFP_NET_CFG_RX_OFFSET_DYNAMIC 0 /* Prepend mode */
  186. /**
  187. * NFP6000/NFP4000 - VXLAN/UDP encap configuration
  188. * @NFP_NET_CFG_VXLAN_PORT: Base address of table of tunnels' UDP dst ports
  189. * @NFP_NET_CFG_VXLAN_SZ: Size of the UDP port table in bytes
  190. */
  191. #define NFP_NET_CFG_VXLAN_PORT 0x0060
  192. #define NFP_NET_CFG_VXLAN_SZ 0x0008
  193. /**
  194. * NFP6000 - BPF section
  195. * @NFP_NET_CFG_BPF_ABI: BPF ABI version
  196. * @NFP_NET_CFG_BPF_CAP: BPF capabilities
  197. * @NFP_NET_CFG_BPF_MAX_LEN: Maximum size of JITed BPF code in bytes
  198. * @NFP_NET_CFG_BPF_START: Offset at which BPF will be loaded
  199. * @NFP_NET_CFG_BPF_DONE: Offset to jump to on exit
  200. * @NFP_NET_CFG_BPF_STACK_SZ: Total size of stack area in 64B chunks
  201. * @NFP_NET_CFG_BPF_INL_MTU: Packet data split offset in 64B chunks
  202. * @NFP_NET_CFG_BPF_SIZE: Size of the JITed BPF code in instructions
  203. * @NFP_NET_CFG_BPF_ADDR: DMA address of the buffer with JITed BPF code
  204. */
  205. #define NFP_NET_CFG_BPF_ABI 0x0080
  206. #define NFP_NET_BPF_ABI 1
  207. #define NFP_NET_CFG_BPF_CAP 0x0081
  208. #define NFP_NET_BPF_CAP_RELO (1 << 0) /* seamless reload */
  209. #define NFP_NET_CFG_BPF_MAX_LEN 0x0082
  210. #define NFP_NET_CFG_BPF_START 0x0084
  211. #define NFP_NET_CFG_BPF_DONE 0x0086
  212. #define NFP_NET_CFG_BPF_STACK_SZ 0x0088
  213. #define NFP_NET_CFG_BPF_INL_MTU 0x0089
  214. #define NFP_NET_CFG_BPF_SIZE 0x008e
  215. #define NFP_NET_CFG_BPF_ADDR 0x0090
  216. #define NFP_NET_CFG_BPF_CFG_8CTX (1 << 0) /* 8ctx mode */
  217. #define NFP_NET_CFG_BPF_CFG_MASK 7ULL
  218. #define NFP_NET_CFG_BPF_ADDR_MASK (~NFP_NET_CFG_BPF_CFG_MASK)
  219. /**
  220. * 40B reserved for future use (0x0098 - 0x00c0)
  221. */
  222. #define NFP_NET_CFG_RESERVED 0x0098
  223. #define NFP_NET_CFG_RESERVED_SZ 0x0028
  224. /**
  225. * RSS configuration (0x0100 - 0x01ac):
  226. * Used only when NFP_NET_CFG_CTRL_RSS is enabled
  227. * @NFP_NET_CFG_RSS_CFG: RSS configuration word
  228. * @NFP_NET_CFG_RSS_KEY: RSS "secret" key
  229. * @NFP_NET_CFG_RSS_ITBL: RSS indirection table
  230. */
  231. #define NFP_NET_CFG_RSS_BASE 0x0100
  232. #define NFP_NET_CFG_RSS_CTRL NFP_NET_CFG_RSS_BASE
  233. #define NFP_NET_CFG_RSS_MASK (0x7f)
  234. #define NFP_NET_CFG_RSS_MASK_of(_x) ((_x) & 0x7f)
  235. #define NFP_NET_CFG_RSS_IPV4 (1 << 8) /* RSS for IPv4 */
  236. #define NFP_NET_CFG_RSS_IPV6 (1 << 9) /* RSS for IPv6 */
  237. #define NFP_NET_CFG_RSS_IPV4_TCP (1 << 10) /* RSS for IPv4/TCP */
  238. #define NFP_NET_CFG_RSS_IPV4_UDP (1 << 11) /* RSS for IPv4/UDP */
  239. #define NFP_NET_CFG_RSS_IPV6_TCP (1 << 12) /* RSS for IPv6/TCP */
  240. #define NFP_NET_CFG_RSS_IPV6_UDP (1 << 13) /* RSS for IPv6/UDP */
  241. #define NFP_NET_CFG_RSS_TOEPLITZ (1 << 24) /* Use Toeplitz hash */
  242. #define NFP_NET_CFG_RSS_KEY (NFP_NET_CFG_RSS_BASE + 0x4)
  243. #define NFP_NET_CFG_RSS_KEY_SZ 0x28
  244. #define NFP_NET_CFG_RSS_ITBL (NFP_NET_CFG_RSS_BASE + 0x4 + \
  245. NFP_NET_CFG_RSS_KEY_SZ)
  246. #define NFP_NET_CFG_RSS_ITBL_SZ 0x80
  247. /**
  248. * TX ring configuration (0x200 - 0x800)
  249. * @NFP_NET_CFG_TXR_BASE: Base offset for TX ring configuration
  250. * @NFP_NET_CFG_TXR_ADDR: Per TX ring DMA address (8B entries)
  251. * @NFP_NET_CFG_TXR_WB_ADDR: Per TX ring write back DMA address (8B entries)
  252. * @NFP_NET_CFG_TXR_SZ: Per TX ring ring size (1B entries)
  253. * @NFP_NET_CFG_TXR_VEC: Per TX ring MSI-X table entry (1B entries)
  254. * @NFP_NET_CFG_TXR_PRIO: Per TX ring priority (1B entries)
  255. * @NFP_NET_CFG_TXR_IRQ_MOD: Per TX ring interrupt moderation packet
  256. */
  257. #define NFP_NET_CFG_TXR_BASE 0x0200
  258. #define NFP_NET_CFG_TXR_ADDR(_x) (NFP_NET_CFG_TXR_BASE + ((_x) * 0x8))
  259. #define NFP_NET_CFG_TXR_WB_ADDR(_x) (NFP_NET_CFG_TXR_BASE + 0x200 + \
  260. ((_x) * 0x8))
  261. #define NFP_NET_CFG_TXR_SZ(_x) (NFP_NET_CFG_TXR_BASE + 0x400 + (_x))
  262. #define NFP_NET_CFG_TXR_VEC(_x) (NFP_NET_CFG_TXR_BASE + 0x440 + (_x))
  263. #define NFP_NET_CFG_TXR_PRIO(_x) (NFP_NET_CFG_TXR_BASE + 0x480 + (_x))
  264. #define NFP_NET_CFG_TXR_IRQ_MOD(_x) (NFP_NET_CFG_TXR_BASE + 0x500 + \
  265. ((_x) * 0x4))
  266. /**
  267. * RX ring configuration (0x0800 - 0x0c00)
  268. * @NFP_NET_CFG_RXR_BASE: Base offset for RX ring configuration
  269. * @NFP_NET_CFG_RXR_ADDR: Per RX ring DMA address (8B entries)
  270. * @NFP_NET_CFG_RXR_SZ: Per RX ring ring size (1B entries)
  271. * @NFP_NET_CFG_RXR_VEC: Per RX ring MSI-X table entry (1B entries)
  272. * @NFP_NET_CFG_RXR_PRIO: Per RX ring priority (1B entries)
  273. * @NFP_NET_CFG_RXR_IRQ_MOD: Per RX ring interrupt moderation (4B entries)
  274. */
  275. #define NFP_NET_CFG_RXR_BASE 0x0800
  276. #define NFP_NET_CFG_RXR_ADDR(_x) (NFP_NET_CFG_RXR_BASE + ((_x) * 0x8))
  277. #define NFP_NET_CFG_RXR_SZ(_x) (NFP_NET_CFG_RXR_BASE + 0x200 + (_x))
  278. #define NFP_NET_CFG_RXR_VEC(_x) (NFP_NET_CFG_RXR_BASE + 0x240 + (_x))
  279. #define NFP_NET_CFG_RXR_PRIO(_x) (NFP_NET_CFG_RXR_BASE + 0x280 + (_x))
  280. #define NFP_NET_CFG_RXR_IRQ_MOD(_x) (NFP_NET_CFG_RXR_BASE + 0x300 + \
  281. ((_x) * 0x4))
  282. /**
  283. * Interrupt Control/Cause registers (0x0c00 - 0x0d00)
  284. * These registers are only used when MSI-X auto-masking is not
  285. * enabled (@NFP_NET_CFG_CTRL_MSIXAUTO not set). The array is index
  286. * by MSI-X entry and are 1B in size. If an entry is zero, the
  287. * corresponding entry is enabled. If the FW generates an interrupt,
  288. * it writes a cause into the corresponding field. This also masks
  289. * the MSI-X entry and the host driver must clear the register to
  290. * re-enable the interrupt.
  291. */
  292. #define NFP_NET_CFG_ICR_BASE 0x0c00
  293. #define NFP_NET_CFG_ICR(_x) (NFP_NET_CFG_ICR_BASE + (_x))
  294. #define NFP_NET_CFG_ICR_UNMASKED 0x0
  295. #define NFP_NET_CFG_ICR_RXTX 0x1
  296. #define NFP_NET_CFG_ICR_LSC 0x2
  297. /**
  298. * General device stats (0x0d00 - 0x0d90)
  299. * all counters are 64bit.
  300. */
  301. #define NFP_NET_CFG_STATS_BASE 0x0d00
  302. #define NFP_NET_CFG_STATS_RX_DISCARDS (NFP_NET_CFG_STATS_BASE + 0x00)
  303. #define NFP_NET_CFG_STATS_RX_ERRORS (NFP_NET_CFG_STATS_BASE + 0x08)
  304. #define NFP_NET_CFG_STATS_RX_OCTETS (NFP_NET_CFG_STATS_BASE + 0x10)
  305. #define NFP_NET_CFG_STATS_RX_UC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x18)
  306. #define NFP_NET_CFG_STATS_RX_MC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x20)
  307. #define NFP_NET_CFG_STATS_RX_BC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x28)
  308. #define NFP_NET_CFG_STATS_RX_FRAMES (NFP_NET_CFG_STATS_BASE + 0x30)
  309. #define NFP_NET_CFG_STATS_RX_MC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x38)
  310. #define NFP_NET_CFG_STATS_RX_BC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x40)
  311. #define NFP_NET_CFG_STATS_TX_DISCARDS (NFP_NET_CFG_STATS_BASE + 0x48)
  312. #define NFP_NET_CFG_STATS_TX_ERRORS (NFP_NET_CFG_STATS_BASE + 0x50)
  313. #define NFP_NET_CFG_STATS_TX_OCTETS (NFP_NET_CFG_STATS_BASE + 0x58)
  314. #define NFP_NET_CFG_STATS_TX_UC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x60)
  315. #define NFP_NET_CFG_STATS_TX_MC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x68)
  316. #define NFP_NET_CFG_STATS_TX_BC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x70)
  317. #define NFP_NET_CFG_STATS_TX_FRAMES (NFP_NET_CFG_STATS_BASE + 0x78)
  318. #define NFP_NET_CFG_STATS_TX_MC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x80)
  319. #define NFP_NET_CFG_STATS_TX_BC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x88)
  320. #define NFP_NET_CFG_STATS_APP0_FRAMES (NFP_NET_CFG_STATS_BASE + 0x90)
  321. #define NFP_NET_CFG_STATS_APP0_BYTES (NFP_NET_CFG_STATS_BASE + 0x98)
  322. #define NFP_NET_CFG_STATS_APP1_FRAMES (NFP_NET_CFG_STATS_BASE + 0xa0)
  323. #define NFP_NET_CFG_STATS_APP1_BYTES (NFP_NET_CFG_STATS_BASE + 0xa8)
  324. #define NFP_NET_CFG_STATS_APP2_FRAMES (NFP_NET_CFG_STATS_BASE + 0xb0)
  325. #define NFP_NET_CFG_STATS_APP2_BYTES (NFP_NET_CFG_STATS_BASE + 0xb8)
  326. #define NFP_NET_CFG_STATS_APP3_FRAMES (NFP_NET_CFG_STATS_BASE + 0xc0)
  327. #define NFP_NET_CFG_STATS_APP3_BYTES (NFP_NET_CFG_STATS_BASE + 0xc8)
  328. /**
  329. * Per ring stats (0x1000 - 0x1800)
  330. * options, 64bit per entry
  331. * @NFP_NET_CFG_TXR_STATS: TX ring statistics (Packet and Byte count)
  332. * @NFP_NET_CFG_RXR_STATS: RX ring statistics (Packet and Byte count)
  333. */
  334. #define NFP_NET_CFG_TXR_STATS_BASE 0x1000
  335. #define NFP_NET_CFG_TXR_STATS(_x) (NFP_NET_CFG_TXR_STATS_BASE + \
  336. ((_x) * 0x10))
  337. #define NFP_NET_CFG_RXR_STATS_BASE 0x1400
  338. #define NFP_NET_CFG_RXR_STATS(_x) (NFP_NET_CFG_RXR_STATS_BASE + \
  339. ((_x) * 0x10))
  340. #endif /* _NFP_NET_CTRL_H_ */