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