nfp_net_ctrl.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. /*
  2. * Copyright (C) 2015-2018 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. #include <linux/types.h>
  44. /**
  45. * Configuration BAR size.
  46. *
  47. * The configuration BAR is 8K in size, but due to
  48. * THB-350, 32k needs to be reserved.
  49. */
  50. #define NFP_NET_CFG_BAR_SZ (32 * 1024)
  51. /**
  52. * Offset in Freelist buffer where packet starts on RX
  53. */
  54. #define NFP_NET_RX_OFFSET 32
  55. /**
  56. * LSO parameters
  57. * %NFP_NET_LSO_MAX_HDR_SZ: Maximum header size supported for LSO frames
  58. * %NFP_NET_LSO_MAX_SEGS: Maximum number of segments LSO frame can produce
  59. */
  60. #define NFP_NET_LSO_MAX_HDR_SZ 255
  61. #define NFP_NET_LSO_MAX_SEGS 64
  62. /**
  63. * Prepend field types
  64. */
  65. #define NFP_NET_META_FIELD_SIZE 4
  66. #define NFP_NET_META_HASH 1 /* next field carries hash type */
  67. #define NFP_NET_META_MARK 2
  68. #define NFP_NET_META_PORTID 5
  69. #define NFP_NET_META_CSUM 6 /* checksum complete type */
  70. #define NFP_META_PORT_ID_CTRL ~0U
  71. /**
  72. * Hash type pre-pended when a RSS hash was computed
  73. */
  74. #define NFP_NET_RSS_NONE 0
  75. #define NFP_NET_RSS_IPV4 1
  76. #define NFP_NET_RSS_IPV6 2
  77. #define NFP_NET_RSS_IPV6_EX 3
  78. #define NFP_NET_RSS_IPV4_TCP 4
  79. #define NFP_NET_RSS_IPV6_TCP 5
  80. #define NFP_NET_RSS_IPV6_EX_TCP 6
  81. #define NFP_NET_RSS_IPV4_UDP 7
  82. #define NFP_NET_RSS_IPV6_UDP 8
  83. #define NFP_NET_RSS_IPV6_EX_UDP 9
  84. /**
  85. * Ring counts
  86. * %NFP_NET_TXR_MAX: Maximum number of TX rings
  87. * %NFP_NET_RXR_MAX: Maximum number of RX rings
  88. */
  89. #define NFP_NET_TXR_MAX 64
  90. #define NFP_NET_RXR_MAX 64
  91. /**
  92. * Read/Write config words (0x0000 - 0x002c)
  93. * %NFP_NET_CFG_CTRL: Global control
  94. * %NFP_NET_CFG_UPDATE: Indicate which fields are updated
  95. * %NFP_NET_CFG_TXRS_ENABLE: Bitmask of enabled TX rings
  96. * %NFP_NET_CFG_RXRS_ENABLE: Bitmask of enabled RX rings
  97. * %NFP_NET_CFG_MTU: Set MTU size
  98. * %NFP_NET_CFG_FLBUFSZ: Set freelist buffer size (must be larger than MTU)
  99. * %NFP_NET_CFG_EXN: MSI-X table entry for exceptions
  100. * %NFP_NET_CFG_LSC: MSI-X table entry for link state changes
  101. * %NFP_NET_CFG_MACADDR: MAC address
  102. *
  103. * TODO:
  104. * - define Error details in UPDATE
  105. */
  106. #define NFP_NET_CFG_CTRL 0x0000
  107. #define NFP_NET_CFG_CTRL_ENABLE (0x1 << 0) /* Global enable */
  108. #define NFP_NET_CFG_CTRL_PROMISC (0x1 << 1) /* Enable Promisc mode */
  109. #define NFP_NET_CFG_CTRL_L2BC (0x1 << 2) /* Allow L2 Broadcast */
  110. #define NFP_NET_CFG_CTRL_L2MC (0x1 << 3) /* Allow L2 Multicast */
  111. #define NFP_NET_CFG_CTRL_RXCSUM (0x1 << 4) /* Enable RX Checksum */
  112. #define NFP_NET_CFG_CTRL_TXCSUM (0x1 << 5) /* Enable TX Checksum */
  113. #define NFP_NET_CFG_CTRL_RXVLAN (0x1 << 6) /* Enable VLAN strip */
  114. #define NFP_NET_CFG_CTRL_TXVLAN (0x1 << 7) /* Enable VLAN insert */
  115. #define NFP_NET_CFG_CTRL_SCATTER (0x1 << 8) /* Scatter DMA */
  116. #define NFP_NET_CFG_CTRL_GATHER (0x1 << 9) /* Gather DMA */
  117. #define NFP_NET_CFG_CTRL_LSO (0x1 << 10) /* LSO/TSO (version 1) */
  118. #define NFP_NET_CFG_CTRL_CTAG_FILTER (0x1 << 11) /* VLAN CTAG filtering */
  119. #define NFP_NET_CFG_CTRL_RINGCFG (0x1 << 16) /* Ring runtime changes */
  120. #define NFP_NET_CFG_CTRL_RSS (0x1 << 17) /* RSS (version 1) */
  121. #define NFP_NET_CFG_CTRL_IRQMOD (0x1 << 18) /* Interrupt moderation */
  122. #define NFP_NET_CFG_CTRL_RINGPRIO (0x1 << 19) /* Ring priorities */
  123. #define NFP_NET_CFG_CTRL_MSIXAUTO (0x1 << 20) /* MSI-X auto-masking */
  124. #define NFP_NET_CFG_CTRL_TXRWB (0x1 << 21) /* Write-back of TX ring*/
  125. #define NFP_NET_CFG_CTRL_L2SWITCH (0x1 << 22) /* L2 Switch */
  126. #define NFP_NET_CFG_CTRL_L2SWITCH_LOCAL (0x1 << 23) /* Switch to local */
  127. #define NFP_NET_CFG_CTRL_VXLAN (0x1 << 24) /* VXLAN tunnel support */
  128. #define NFP_NET_CFG_CTRL_NVGRE (0x1 << 25) /* NVGRE tunnel support */
  129. #define NFP_NET_CFG_CTRL_BPF (0x1 << 27) /* BPF offload capable */
  130. #define NFP_NET_CFG_CTRL_LSO2 (0x1 << 28) /* LSO/TSO (version 2) */
  131. #define NFP_NET_CFG_CTRL_RSS2 (0x1 << 29) /* RSS (version 2) */
  132. #define NFP_NET_CFG_CTRL_CSUM_COMPLETE (0x1 << 30) /* Checksum complete */
  133. #define NFP_NET_CFG_CTRL_LIVE_ADDR (0x1 << 31) /* live MAC addr change */
  134. #define NFP_NET_CFG_CTRL_LSO_ANY (NFP_NET_CFG_CTRL_LSO | \
  135. NFP_NET_CFG_CTRL_LSO2)
  136. #define NFP_NET_CFG_CTRL_RSS_ANY (NFP_NET_CFG_CTRL_RSS | \
  137. NFP_NET_CFG_CTRL_RSS2)
  138. #define NFP_NET_CFG_CTRL_RXCSUM_ANY (NFP_NET_CFG_CTRL_RXCSUM | \
  139. NFP_NET_CFG_CTRL_CSUM_COMPLETE)
  140. #define NFP_NET_CFG_CTRL_CHAIN_META (NFP_NET_CFG_CTRL_RSS2 | \
  141. NFP_NET_CFG_CTRL_CSUM_COMPLETE)
  142. #define NFP_NET_CFG_UPDATE 0x0004
  143. #define NFP_NET_CFG_UPDATE_GEN (0x1 << 0) /* General update */
  144. #define NFP_NET_CFG_UPDATE_RING (0x1 << 1) /* Ring config change */
  145. #define NFP_NET_CFG_UPDATE_RSS (0x1 << 2) /* RSS config change */
  146. #define NFP_NET_CFG_UPDATE_TXRPRIO (0x1 << 3) /* TX Ring prio change */
  147. #define NFP_NET_CFG_UPDATE_RXRPRIO (0x1 << 4) /* RX Ring prio change */
  148. #define NFP_NET_CFG_UPDATE_MSIX (0x1 << 5) /* MSI-X change */
  149. #define NFP_NET_CFG_UPDATE_L2SWITCH (0x1 << 6) /* Switch changes */
  150. #define NFP_NET_CFG_UPDATE_RESET (0x1 << 7) /* Update due to FLR */
  151. #define NFP_NET_CFG_UPDATE_IRQMOD (0x1 << 8) /* IRQ mod change */
  152. #define NFP_NET_CFG_UPDATE_VXLAN (0x1 << 9) /* VXLAN port change */
  153. #define NFP_NET_CFG_UPDATE_BPF (0x1 << 10) /* BPF program load */
  154. #define NFP_NET_CFG_UPDATE_MACADDR (0x1 << 11) /* MAC address change */
  155. #define NFP_NET_CFG_UPDATE_MBOX (0x1 << 12) /* Mailbox update */
  156. #define NFP_NET_CFG_UPDATE_VF (0x1 << 13) /* VF settings change */
  157. #define NFP_NET_CFG_UPDATE_ERR (0x1 << 31) /* A error occurred */
  158. #define NFP_NET_CFG_TXRS_ENABLE 0x0008
  159. #define NFP_NET_CFG_RXRS_ENABLE 0x0010
  160. #define NFP_NET_CFG_MTU 0x0018
  161. #define NFP_NET_CFG_FLBUFSZ 0x001c
  162. #define NFP_NET_CFG_EXN 0x001f
  163. #define NFP_NET_CFG_LSC 0x0020
  164. #define NFP_NET_CFG_MACADDR 0x0024
  165. /**
  166. * Read-only words (0x0030 - 0x0050):
  167. * %NFP_NET_CFG_VERSION: Firmware version number
  168. * %NFP_NET_CFG_STS: Status
  169. * %NFP_NET_CFG_CAP: Capabilities (same bits as %NFP_NET_CFG_CTRL)
  170. * %NFP_NET_CFG_MAX_TXRINGS: Maximum number of TX rings
  171. * %NFP_NET_CFG_MAX_RXRINGS: Maximum number of RX rings
  172. * %NFP_NET_CFG_MAX_MTU: Maximum support MTU
  173. * %NFP_NET_CFG_START_TXQ: Start Queue Control Queue to use for TX (PF only)
  174. * %NFP_NET_CFG_START_RXQ: Start Queue Control Queue to use for RX (PF only)
  175. *
  176. * TODO:
  177. * - define more STS bits
  178. */
  179. #define NFP_NET_CFG_VERSION 0x0030
  180. #define NFP_NET_CFG_VERSION_RESERVED_MASK (0xff << 24)
  181. #define NFP_NET_CFG_VERSION_CLASS_MASK (0xff << 16)
  182. #define NFP_NET_CFG_VERSION_CLASS(x) (((x) & 0xff) << 16)
  183. #define NFP_NET_CFG_VERSION_CLASS_GENERIC 0
  184. #define NFP_NET_CFG_VERSION_MAJOR_MASK (0xff << 8)
  185. #define NFP_NET_CFG_VERSION_MAJOR(x) (((x) & 0xff) << 8)
  186. #define NFP_NET_CFG_VERSION_MINOR_MASK (0xff << 0)
  187. #define NFP_NET_CFG_VERSION_MINOR(x) (((x) & 0xff) << 0)
  188. #define NFP_NET_CFG_STS 0x0034
  189. #define NFP_NET_CFG_STS_LINK (0x1 << 0) /* Link up or down */
  190. /* Link rate */
  191. #define NFP_NET_CFG_STS_LINK_RATE_SHIFT 1
  192. #define NFP_NET_CFG_STS_LINK_RATE_MASK 0xF
  193. #define NFP_NET_CFG_STS_LINK_RATE \
  194. (NFP_NET_CFG_STS_LINK_RATE_MASK << NFP_NET_CFG_STS_LINK_RATE_SHIFT)
  195. #define NFP_NET_CFG_STS_LINK_RATE_UNSUPPORTED 0
  196. #define NFP_NET_CFG_STS_LINK_RATE_UNKNOWN 1
  197. #define NFP_NET_CFG_STS_LINK_RATE_1G 2
  198. #define NFP_NET_CFG_STS_LINK_RATE_10G 3
  199. #define NFP_NET_CFG_STS_LINK_RATE_25G 4
  200. #define NFP_NET_CFG_STS_LINK_RATE_40G 5
  201. #define NFP_NET_CFG_STS_LINK_RATE_50G 6
  202. #define NFP_NET_CFG_STS_LINK_RATE_100G 7
  203. #define NFP_NET_CFG_CAP 0x0038
  204. #define NFP_NET_CFG_MAX_TXRINGS 0x003c
  205. #define NFP_NET_CFG_MAX_RXRINGS 0x0040
  206. #define NFP_NET_CFG_MAX_MTU 0x0044
  207. /* Next two words are being used by VFs for solving THB350 issue */
  208. #define NFP_NET_CFG_START_TXQ 0x0048
  209. #define NFP_NET_CFG_START_RXQ 0x004c
  210. /**
  211. * Prepend configuration
  212. */
  213. #define NFP_NET_CFG_RX_OFFSET 0x0050
  214. #define NFP_NET_CFG_RX_OFFSET_DYNAMIC 0 /* Prepend mode */
  215. /**
  216. * RSS capabilities
  217. * %NFP_NET_CFG_RSS_CAP_HFUNC: supported hash functions (same bits as
  218. * %NFP_NET_CFG_RSS_HFUNC)
  219. */
  220. #define NFP_NET_CFG_RSS_CAP 0x0054
  221. #define NFP_NET_CFG_RSS_CAP_HFUNC 0xff000000
  222. /**
  223. * TLV area start
  224. * %NFP_NET_CFG_TLV_BASE: start anchor of the TLV area
  225. */
  226. #define NFP_NET_CFG_TLV_BASE 0x0058
  227. /**
  228. * VXLAN/UDP encap configuration
  229. * %NFP_NET_CFG_VXLAN_PORT: Base address of table of tunnels' UDP dst ports
  230. * %NFP_NET_CFG_VXLAN_SZ: Size of the UDP port table in bytes
  231. */
  232. #define NFP_NET_CFG_VXLAN_PORT 0x0060
  233. #define NFP_NET_CFG_VXLAN_SZ 0x0008
  234. /**
  235. * BPF section
  236. * %NFP_NET_CFG_BPF_ABI: BPF ABI version
  237. * %NFP_NET_CFG_BPF_CAP: BPF capabilities
  238. * %NFP_NET_CFG_BPF_MAX_LEN: Maximum size of JITed BPF code in bytes
  239. * %NFP_NET_CFG_BPF_START: Offset at which BPF will be loaded
  240. * %NFP_NET_CFG_BPF_DONE: Offset to jump to on exit
  241. * %NFP_NET_CFG_BPF_STACK_SZ: Total size of stack area in 64B chunks
  242. * %NFP_NET_CFG_BPF_INL_MTU: Packet data split offset in 64B chunks
  243. * %NFP_NET_CFG_BPF_SIZE: Size of the JITed BPF code in instructions
  244. * %NFP_NET_CFG_BPF_ADDR: DMA address of the buffer with JITed BPF code
  245. */
  246. #define NFP_NET_CFG_BPF_ABI 0x0080
  247. #define NFP_NET_BPF_ABI 2
  248. #define NFP_NET_CFG_BPF_CAP 0x0081
  249. #define NFP_NET_BPF_CAP_RELO (1 << 0) /* seamless reload */
  250. #define NFP_NET_CFG_BPF_MAX_LEN 0x0082
  251. #define NFP_NET_CFG_BPF_START 0x0084
  252. #define NFP_NET_CFG_BPF_DONE 0x0086
  253. #define NFP_NET_CFG_BPF_STACK_SZ 0x0088
  254. #define NFP_NET_CFG_BPF_INL_MTU 0x0089
  255. #define NFP_NET_CFG_BPF_SIZE 0x008e
  256. #define NFP_NET_CFG_BPF_ADDR 0x0090
  257. #define NFP_NET_CFG_BPF_CFG_8CTX (1 << 0) /* 8ctx mode */
  258. #define NFP_NET_CFG_BPF_CFG_MASK 7ULL
  259. #define NFP_NET_CFG_BPF_ADDR_MASK (~NFP_NET_CFG_BPF_CFG_MASK)
  260. /**
  261. * 40B reserved for future use (0x0098 - 0x00c0)
  262. */
  263. #define NFP_NET_CFG_RESERVED 0x0098
  264. #define NFP_NET_CFG_RESERVED_SZ 0x0028
  265. /**
  266. * RSS configuration (0x0100 - 0x01ac):
  267. * Used only when NFP_NET_CFG_CTRL_RSS is enabled
  268. * %NFP_NET_CFG_RSS_CFG: RSS configuration word
  269. * %NFP_NET_CFG_RSS_KEY: RSS "secret" key
  270. * %NFP_NET_CFG_RSS_ITBL: RSS indirection table
  271. */
  272. #define NFP_NET_CFG_RSS_BASE 0x0100
  273. #define NFP_NET_CFG_RSS_CTRL NFP_NET_CFG_RSS_BASE
  274. #define NFP_NET_CFG_RSS_MASK (0x7f)
  275. #define NFP_NET_CFG_RSS_MASK_of(_x) ((_x) & 0x7f)
  276. #define NFP_NET_CFG_RSS_IPV4 (1 << 8) /* RSS for IPv4 */
  277. #define NFP_NET_CFG_RSS_IPV6 (1 << 9) /* RSS for IPv6 */
  278. #define NFP_NET_CFG_RSS_IPV4_TCP (1 << 10) /* RSS for IPv4/TCP */
  279. #define NFP_NET_CFG_RSS_IPV4_UDP (1 << 11) /* RSS for IPv4/UDP */
  280. #define NFP_NET_CFG_RSS_IPV6_TCP (1 << 12) /* RSS for IPv6/TCP */
  281. #define NFP_NET_CFG_RSS_IPV6_UDP (1 << 13) /* RSS for IPv6/UDP */
  282. #define NFP_NET_CFG_RSS_HFUNC 0xff000000
  283. #define NFP_NET_CFG_RSS_TOEPLITZ (1 << 24) /* Use Toeplitz hash */
  284. #define NFP_NET_CFG_RSS_XOR (1 << 25) /* Use XOR as hash */
  285. #define NFP_NET_CFG_RSS_CRC32 (1 << 26) /* Use CRC32 as hash */
  286. #define NFP_NET_CFG_RSS_HFUNCS 3
  287. #define NFP_NET_CFG_RSS_KEY (NFP_NET_CFG_RSS_BASE + 0x4)
  288. #define NFP_NET_CFG_RSS_KEY_SZ 0x28
  289. #define NFP_NET_CFG_RSS_ITBL (NFP_NET_CFG_RSS_BASE + 0x4 + \
  290. NFP_NET_CFG_RSS_KEY_SZ)
  291. #define NFP_NET_CFG_RSS_ITBL_SZ 0x80
  292. /**
  293. * TX ring configuration (0x200 - 0x800)
  294. * %NFP_NET_CFG_TXR_BASE: Base offset for TX ring configuration
  295. * %NFP_NET_CFG_TXR_ADDR: Per TX ring DMA address (8B entries)
  296. * %NFP_NET_CFG_TXR_WB_ADDR: Per TX ring write back DMA address (8B entries)
  297. * %NFP_NET_CFG_TXR_SZ: Per TX ring ring size (1B entries)
  298. * %NFP_NET_CFG_TXR_VEC: Per TX ring MSI-X table entry (1B entries)
  299. * %NFP_NET_CFG_TXR_PRIO: Per TX ring priority (1B entries)
  300. * %NFP_NET_CFG_TXR_IRQ_MOD: Per TX ring interrupt moderation packet
  301. */
  302. #define NFP_NET_CFG_TXR_BASE 0x0200
  303. #define NFP_NET_CFG_TXR_ADDR(_x) (NFP_NET_CFG_TXR_BASE + ((_x) * 0x8))
  304. #define NFP_NET_CFG_TXR_WB_ADDR(_x) (NFP_NET_CFG_TXR_BASE + 0x200 + \
  305. ((_x) * 0x8))
  306. #define NFP_NET_CFG_TXR_SZ(_x) (NFP_NET_CFG_TXR_BASE + 0x400 + (_x))
  307. #define NFP_NET_CFG_TXR_VEC(_x) (NFP_NET_CFG_TXR_BASE + 0x440 + (_x))
  308. #define NFP_NET_CFG_TXR_PRIO(_x) (NFP_NET_CFG_TXR_BASE + 0x480 + (_x))
  309. #define NFP_NET_CFG_TXR_IRQ_MOD(_x) (NFP_NET_CFG_TXR_BASE + 0x500 + \
  310. ((_x) * 0x4))
  311. /**
  312. * RX ring configuration (0x0800 - 0x0c00)
  313. * %NFP_NET_CFG_RXR_BASE: Base offset for RX ring configuration
  314. * %NFP_NET_CFG_RXR_ADDR: Per RX ring DMA address (8B entries)
  315. * %NFP_NET_CFG_RXR_SZ: Per RX ring ring size (1B entries)
  316. * %NFP_NET_CFG_RXR_VEC: Per RX ring MSI-X table entry (1B entries)
  317. * %NFP_NET_CFG_RXR_PRIO: Per RX ring priority (1B entries)
  318. * %NFP_NET_CFG_RXR_IRQ_MOD: Per RX ring interrupt moderation (4B entries)
  319. */
  320. #define NFP_NET_CFG_RXR_BASE 0x0800
  321. #define NFP_NET_CFG_RXR_ADDR(_x) (NFP_NET_CFG_RXR_BASE + ((_x) * 0x8))
  322. #define NFP_NET_CFG_RXR_SZ(_x) (NFP_NET_CFG_RXR_BASE + 0x200 + (_x))
  323. #define NFP_NET_CFG_RXR_VEC(_x) (NFP_NET_CFG_RXR_BASE + 0x240 + (_x))
  324. #define NFP_NET_CFG_RXR_PRIO(_x) (NFP_NET_CFG_RXR_BASE + 0x280 + (_x))
  325. #define NFP_NET_CFG_RXR_IRQ_MOD(_x) (NFP_NET_CFG_RXR_BASE + 0x300 + \
  326. ((_x) * 0x4))
  327. /**
  328. * Interrupt Control/Cause registers (0x0c00 - 0x0d00)
  329. * These registers are only used when MSI-X auto-masking is not
  330. * enabled (%NFP_NET_CFG_CTRL_MSIXAUTO not set). The array is index
  331. * by MSI-X entry and are 1B in size. If an entry is zero, the
  332. * corresponding entry is enabled. If the FW generates an interrupt,
  333. * it writes a cause into the corresponding field. This also masks
  334. * the MSI-X entry and the host driver must clear the register to
  335. * re-enable the interrupt.
  336. */
  337. #define NFP_NET_CFG_ICR_BASE 0x0c00
  338. #define NFP_NET_CFG_ICR(_x) (NFP_NET_CFG_ICR_BASE + (_x))
  339. #define NFP_NET_CFG_ICR_UNMASKED 0x0
  340. #define NFP_NET_CFG_ICR_RXTX 0x1
  341. #define NFP_NET_CFG_ICR_LSC 0x2
  342. /**
  343. * General device stats (0x0d00 - 0x0d90)
  344. * all counters are 64bit.
  345. */
  346. #define NFP_NET_CFG_STATS_BASE 0x0d00
  347. #define NFP_NET_CFG_STATS_RX_DISCARDS (NFP_NET_CFG_STATS_BASE + 0x00)
  348. #define NFP_NET_CFG_STATS_RX_ERRORS (NFP_NET_CFG_STATS_BASE + 0x08)
  349. #define NFP_NET_CFG_STATS_RX_OCTETS (NFP_NET_CFG_STATS_BASE + 0x10)
  350. #define NFP_NET_CFG_STATS_RX_UC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x18)
  351. #define NFP_NET_CFG_STATS_RX_MC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x20)
  352. #define NFP_NET_CFG_STATS_RX_BC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x28)
  353. #define NFP_NET_CFG_STATS_RX_FRAMES (NFP_NET_CFG_STATS_BASE + 0x30)
  354. #define NFP_NET_CFG_STATS_RX_MC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x38)
  355. #define NFP_NET_CFG_STATS_RX_BC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x40)
  356. #define NFP_NET_CFG_STATS_TX_DISCARDS (NFP_NET_CFG_STATS_BASE + 0x48)
  357. #define NFP_NET_CFG_STATS_TX_ERRORS (NFP_NET_CFG_STATS_BASE + 0x50)
  358. #define NFP_NET_CFG_STATS_TX_OCTETS (NFP_NET_CFG_STATS_BASE + 0x58)
  359. #define NFP_NET_CFG_STATS_TX_UC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x60)
  360. #define NFP_NET_CFG_STATS_TX_MC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x68)
  361. #define NFP_NET_CFG_STATS_TX_BC_OCTETS (NFP_NET_CFG_STATS_BASE + 0x70)
  362. #define NFP_NET_CFG_STATS_TX_FRAMES (NFP_NET_CFG_STATS_BASE + 0x78)
  363. #define NFP_NET_CFG_STATS_TX_MC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x80)
  364. #define NFP_NET_CFG_STATS_TX_BC_FRAMES (NFP_NET_CFG_STATS_BASE + 0x88)
  365. #define NFP_NET_CFG_STATS_APP0_FRAMES (NFP_NET_CFG_STATS_BASE + 0x90)
  366. #define NFP_NET_CFG_STATS_APP0_BYTES (NFP_NET_CFG_STATS_BASE + 0x98)
  367. #define NFP_NET_CFG_STATS_APP1_FRAMES (NFP_NET_CFG_STATS_BASE + 0xa0)
  368. #define NFP_NET_CFG_STATS_APP1_BYTES (NFP_NET_CFG_STATS_BASE + 0xa8)
  369. #define NFP_NET_CFG_STATS_APP2_FRAMES (NFP_NET_CFG_STATS_BASE + 0xb0)
  370. #define NFP_NET_CFG_STATS_APP2_BYTES (NFP_NET_CFG_STATS_BASE + 0xb8)
  371. #define NFP_NET_CFG_STATS_APP3_FRAMES (NFP_NET_CFG_STATS_BASE + 0xc0)
  372. #define NFP_NET_CFG_STATS_APP3_BYTES (NFP_NET_CFG_STATS_BASE + 0xc8)
  373. /**
  374. * Per ring stats (0x1000 - 0x1800)
  375. * options, 64bit per entry
  376. * %NFP_NET_CFG_TXR_STATS: TX ring statistics (Packet and Byte count)
  377. * %NFP_NET_CFG_RXR_STATS: RX ring statistics (Packet and Byte count)
  378. */
  379. #define NFP_NET_CFG_TXR_STATS_BASE 0x1000
  380. #define NFP_NET_CFG_TXR_STATS(_x) (NFP_NET_CFG_TXR_STATS_BASE + \
  381. ((_x) * 0x10))
  382. #define NFP_NET_CFG_RXR_STATS_BASE 0x1400
  383. #define NFP_NET_CFG_RXR_STATS(_x) (NFP_NET_CFG_RXR_STATS_BASE + \
  384. ((_x) * 0x10))
  385. /**
  386. * General use mailbox area (0x1800 - 0x19ff)
  387. * 4B used for update command and 4B return code
  388. * followed by a max of 504B of variable length value
  389. */
  390. #define NFP_NET_CFG_MBOX_BASE 0x1800
  391. #define NFP_NET_CFG_MBOX_VAL_MAX_SZ 0x1F8
  392. #define NFP_NET_CFG_MBOX_SIMPLE_CMD 0x0
  393. #define NFP_NET_CFG_MBOX_SIMPLE_RET 0x4
  394. #define NFP_NET_CFG_MBOX_SIMPLE_VAL 0x8
  395. #define NFP_NET_CFG_MBOX_SIMPLE_LEN 0x12
  396. #define NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_ADD 1
  397. #define NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_KILL 2
  398. /**
  399. * VLAN filtering using general use mailbox
  400. * %NFP_NET_CFG_VLAN_FILTER: Base address of VLAN filter mailbox
  401. * %NFP_NET_CFG_VLAN_FILTER_VID: VLAN ID to filter
  402. * %NFP_NET_CFG_VLAN_FILTER_PROTO: VLAN proto to filter
  403. * %NFP_NET_CFG_VXLAN_SZ: Size of the VLAN filter mailbox in bytes
  404. */
  405. #define NFP_NET_CFG_VLAN_FILTER NFP_NET_CFG_MBOX_SIMPLE_VAL
  406. #define NFP_NET_CFG_VLAN_FILTER_VID NFP_NET_CFG_VLAN_FILTER
  407. #define NFP_NET_CFG_VLAN_FILTER_PROTO (NFP_NET_CFG_VLAN_FILTER + 2)
  408. #define NFP_NET_CFG_VLAN_FILTER_SZ 0x0004
  409. /**
  410. * TLV capabilities
  411. * %NFP_NET_CFG_TLV_TYPE: Offset of type within the TLV
  412. * %NFP_NET_CFG_TLV_TYPE_REQUIRED: Driver must be able to parse the TLV
  413. * %NFP_NET_CFG_TLV_LENGTH: Offset of length within the TLV
  414. * %NFP_NET_CFG_TLV_LENGTH_INC: TLV length increments
  415. * %NFP_NET_CFG_TLV_VALUE: Offset of value with the TLV
  416. *
  417. * List of simple TLV structures, first one starts at %NFP_NET_CFG_TLV_BASE.
  418. * Last structure must be of type %NFP_NET_CFG_TLV_TYPE_END. Presence of TLVs
  419. * is indicated by %NFP_NET_CFG_TLV_BASE being non-zero. TLV structures may
  420. * fill the entire remainder of the BAR or be shorter. FW must make sure TLVs
  421. * don't conflict with other features which allocate space beyond
  422. * %NFP_NET_CFG_TLV_BASE. %NFP_NET_CFG_TLV_TYPE_RESERVED should be used to wrap
  423. * space used by such features.
  424. * Note that the 4 byte TLV header is not counted in %NFP_NET_CFG_TLV_LENGTH.
  425. */
  426. #define NFP_NET_CFG_TLV_TYPE 0x00
  427. #define NFP_NET_CFG_TLV_TYPE_REQUIRED 0x8000
  428. #define NFP_NET_CFG_TLV_LENGTH 0x02
  429. #define NFP_NET_CFG_TLV_LENGTH_INC 4
  430. #define NFP_NET_CFG_TLV_VALUE 0x04
  431. #define NFP_NET_CFG_TLV_HEADER_REQUIRED 0x80000000
  432. #define NFP_NET_CFG_TLV_HEADER_TYPE 0x7fff0000
  433. #define NFP_NET_CFG_TLV_HEADER_LENGTH 0x0000ffff
  434. /**
  435. * Capability TLV types
  436. *
  437. * %NFP_NET_CFG_TLV_TYPE_UNKNOWN:
  438. * Special TLV type to catch bugs, should never be encountered. Drivers should
  439. * treat encountering this type as error and refuse to probe.
  440. *
  441. * %NFP_NET_CFG_TLV_TYPE_RESERVED:
  442. * Reserved space, may contain legacy fixed-offset fields, or be used for
  443. * padding. The use of this type should be otherwise avoided.
  444. *
  445. * %NFP_NET_CFG_TLV_TYPE_END:
  446. * Empty, end of TLV list. Must be the last TLV. Drivers will stop processing
  447. * further TLVs when encountered.
  448. *
  449. * %NFP_NET_CFG_TLV_TYPE_ME_FREQ:
  450. * Single word, ME frequency in MHz as used in calculation for
  451. * %NFP_NET_CFG_RXR_IRQ_MOD and %NFP_NET_CFG_TXR_IRQ_MOD.
  452. *
  453. * %NFP_NET_CFG_TLV_TYPE_MBOX:
  454. * Variable, mailbox area. Overwrites the default location which is
  455. * %NFP_NET_CFG_MBOX_BASE and length %NFP_NET_CFG_MBOX_VAL_MAX_SZ.
  456. */
  457. #define NFP_NET_CFG_TLV_TYPE_UNKNOWN 0
  458. #define NFP_NET_CFG_TLV_TYPE_RESERVED 1
  459. #define NFP_NET_CFG_TLV_TYPE_END 2
  460. #define NFP_NET_CFG_TLV_TYPE_ME_FREQ 3
  461. #define NFP_NET_CFG_TLV_TYPE_MBOX 4
  462. struct device;
  463. /**
  464. * struct nfp_net_tlv_caps - parsed control BAR TLV capabilities
  465. * @me_freq_mhz: ME clock_freq (MHz)
  466. * @mbox_off: vNIC mailbox area offset
  467. * @mbox_len: vNIC mailbox area length
  468. */
  469. struct nfp_net_tlv_caps {
  470. u32 me_freq_mhz;
  471. unsigned int mbox_off;
  472. unsigned int mbox_len;
  473. };
  474. int nfp_net_tlv_caps_parse(struct device *dev, u8 __iomem *ctrl_mem,
  475. struct nfp_net_tlv_caps *caps);
  476. static inline bool nfp_net_has_mbox(struct nfp_net_tlv_caps *caps)
  477. {
  478. return caps->mbox_len >= NFP_NET_CFG_MBOX_SIMPLE_LEN;
  479. }
  480. #endif /* _NFP_NET_CTRL_H_ */