]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/ethernet/netronome/nfp/nfp_net.h
nfp: store device pointer for the fastpath
[mirror_ubuntu-artful-kernel.git] / drivers / net / ethernet / netronome / nfp / nfp_net.h
CommitLineData
4c352362 1/*
2633beb9 2 * Copyright (C) 2015-2017 Netronome Systems, Inc.
4c352362
JK
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.h
36 * Declarations for Netronome network device driver.
37 * Authors: Jakub Kicinski <jakub.kicinski@netronome.com>
38 * Jason McMullan <jason.mcmullan@netronome.com>
39 * Rolf Neugebauer <rolf.neugebauer@netronome.com>
40 */
41
42#ifndef _NFP_NET_H_
43#define _NFP_NET_H_
44
45#include <linux/interrupt.h>
63461a02 46#include <linux/list.h>
4c352362
JK
47#include <linux/netdevice.h>
48#include <linux/pci.h>
a1cbaad7 49#include <linux/io-64-nonatomic-hi-lo.h>
4c352362
JK
50
51#include "nfp_net_ctrl.h"
52
53#define nn_err(nn, fmt, args...) netdev_err((nn)->netdev, fmt, ## args)
54#define nn_warn(nn, fmt, args...) netdev_warn((nn)->netdev, fmt, ## args)
55#define nn_info(nn, fmt, args...) netdev_info((nn)->netdev, fmt, ## args)
56#define nn_dbg(nn, fmt, args...) netdev_dbg((nn)->netdev, fmt, ## args)
57#define nn_warn_ratelimit(nn, fmt, args...) \
58 do { \
59 if (unlikely(net_ratelimit())) \
60 netdev_warn((nn)->netdev, fmt, ## args); \
61 } while (0)
62
3d780b92
JK
63/* Max time to wait for NFP to respond on updates (in seconds) */
64#define NFP_NET_POLL_TIMEOUT 5
4c352362 65
66860beb
JK
66/* Interval for reading offloaded filter stats */
67#define NFP_NET_STAT_POLL_IVL msecs_to_jiffies(100)
68
4c352362 69/* Bar allocation */
796312cd 70#define NFP_NET_CTRL_BAR 0
4c352362
JK
71#define NFP_NET_Q0_BAR 2
72#define NFP_NET_Q1_BAR 4 /* OBSOLETE */
73
74/* Max bits in DMA address */
75#define NFP_NET_MAX_DMA_BITS 40
76
77/* Default size for MTU and freelist buffer sizes */
78#define NFP_NET_DEFAULT_MTU 1500
4c352362
JK
79
80/* Maximum number of bytes prepended to a packet */
81#define NFP_NET_MAX_PREPEND 64
82
83/* Interrupt definitions */
84#define NFP_NET_NON_Q_VECTORS 2
85#define NFP_NET_IRQ_LSC_IDX 0
86#define NFP_NET_IRQ_EXN_IDX 1
fdace6c2 87#define NFP_NET_MIN_PORT_IRQS (NFP_NET_NON_Q_VECTORS + 1)
4c352362
JK
88
89/* Queue/Ring definitions */
90#define NFP_NET_MAX_TX_RINGS 64 /* Max. # of Tx rings per device */
91#define NFP_NET_MAX_RX_RINGS 64 /* Max. # of Rx rings per device */
23a4e389
JK
92#define NFP_NET_MAX_R_VECS (NFP_NET_MAX_TX_RINGS > NFP_NET_MAX_RX_RINGS ? \
93 NFP_NET_MAX_TX_RINGS : NFP_NET_MAX_RX_RINGS)
94#define NFP_NET_MAX_IRQS (NFP_NET_NON_Q_VECTORS + NFP_NET_MAX_R_VECS)
4c352362
JK
95
96#define NFP_NET_MIN_TX_DESCS 256 /* Min. # of Tx descs per ring */
97#define NFP_NET_MIN_RX_DESCS 256 /* Min. # of Rx descs per ring */
98#define NFP_NET_MAX_TX_DESCS (256 * 1024) /* Max. # of Tx descs per ring */
99#define NFP_NET_MAX_RX_DESCS (256 * 1024) /* Max. # of Rx descs per ring */
100
101#define NFP_NET_TX_DESCS_DEFAULT 4096 /* Default # of Tx descs per ring */
102#define NFP_NET_RX_DESCS_DEFAULT 4096 /* Default # of Rx descs per ring */
103
104#define NFP_NET_FL_BATCH 16 /* Add freelist in this Batch size */
105
106/* Offload definitions */
107#define NFP_NET_N_VXLAN_PORTS (NFP_NET_CFG_VXLAN_SZ / sizeof(__be16))
108
c0f031bc
JK
109#define NFP_NET_RX_BUF_HEADROOM (NET_SKB_PAD + NET_IP_ALIGN)
110#define NFP_NET_RX_BUF_NON_DATA (NFP_NET_RX_BUF_HEADROOM + \
111 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
112
4c352362 113/* Forward declarations */
bd5ca062 114struct nfp_cpp;
47465aed 115struct nfp_eth_table_port;
4c352362
JK
116struct nfp_net;
117struct nfp_net_r_vector;
118
119/* Convenience macro for writing dma address into RX/TX descriptors */
120#define nfp_desc_set_dma_addr(desc, dma_addr) \
121 do { \
122 __typeof(desc) __d = (desc); \
123 dma_addr_t __addr = (dma_addr); \
124 \
125 __d->dma_addr_lo = cpu_to_le32(lower_32_bits(__addr)); \
126 __d->dma_addr_hi = upper_32_bits(__addr) & 0xff; \
127 } while (0)
128
129/* TX descriptor format */
130
131#define PCIE_DESC_TX_EOP BIT(7)
132#define PCIE_DESC_TX_OFFSET_MASK GENMASK(6, 0)
133#define PCIE_DESC_TX_MSS_MASK GENMASK(13, 0)
134
135/* Flags in the host TX descriptor */
136#define PCIE_DESC_TX_CSUM BIT(7)
137#define PCIE_DESC_TX_IP4_CSUM BIT(6)
138#define PCIE_DESC_TX_TCP_CSUM BIT(5)
139#define PCIE_DESC_TX_UDP_CSUM BIT(4)
140#define PCIE_DESC_TX_VLAN BIT(3)
141#define PCIE_DESC_TX_LSO BIT(2)
142#define PCIE_DESC_TX_ENCAP BIT(1)
143#define PCIE_DESC_TX_O_IP4_CSUM BIT(0)
144
145struct nfp_net_tx_desc {
146 union {
147 struct {
148 u8 dma_addr_hi; /* High bits of host buf address */
149 __le16 dma_len; /* Length to DMA for this desc */
150 u8 offset_eop; /* Offset in buf where pkt starts +
151 * highest bit is eop flag.
152 */
153 __le32 dma_addr_lo; /* Low 32bit of host buf addr */
154
155 __le16 mss; /* MSS to be used for LSO */
156 u8 l4_offset; /* LSO, where the L4 data starts */
157 u8 flags; /* TX Flags, see @PCIE_DESC_TX_* */
158
159 __le16 vlan; /* VLAN tag to add if indicated */
160 __le16 data_len; /* Length of frame + meta data */
161 } __packed;
162 __le32 vals[4];
163 };
164};
165
166/**
167 * struct nfp_net_tx_buf - software TX buffer descriptor
168 * @skb: sk_buff associated with this buffer
169 * @dma_addr: DMA mapping address of the buffer
170 * @fidx: Fragment index (-1 for the head and [0..nr_frags-1] for frags)
171 * @pkt_cnt: Number of packets to be produced out of the skb associated
172 * with this buffer (valid only on the head's buffer).
173 * Will be 1 for all non-TSO packets.
174 * @real_len: Number of bytes which to be produced out of the skb (valid only
175 * on the head's buffer). Equal to skb->len for non-TSO packets.
176 */
177struct nfp_net_tx_buf {
ecd63a02
JK
178 union {
179 struct sk_buff *skb;
180 void *frag;
181 };
4c352362
JK
182 dma_addr_t dma_addr;
183 short int fidx;
184 u16 pkt_cnt;
185 u32 real_len;
186};
187
188/**
189 * struct nfp_net_tx_ring - TX ring structure
190 * @r_vec: Back pointer to ring vector structure
191 * @idx: Ring index from Linux's perspective
192 * @qcidx: Queue Controller Peripheral (QCP) queue index for the TX queue
193 * @qcp_q: Pointer to base of the QCP TX queue
194 * @cnt: Size of the queue in number of descriptors
195 * @wr_p: TX ring write pointer (free running)
196 * @rd_p: TX ring read pointer (free running)
197 * @qcp_rd_p: Local copy of QCP TX queue read pointer
198 * @wr_ptr_add: Accumulated number of buffers to add to QCP write pointer
199 * (used for .xmit_more delayed kick)
200 * @txbufs: Array of transmitted TX buffers, to free on transmit
201 * @txds: Virtual address of TX ring in host memory
202 * @dma: DMA address of the TX ring
203 * @size: Size, in bytes, of the TX ring (needed to free)
204 */
205struct nfp_net_tx_ring {
206 struct nfp_net_r_vector *r_vec;
207
208 u32 idx;
209 int qcidx;
210 u8 __iomem *qcp_q;
211
212 u32 cnt;
213 u32 wr_p;
214 u32 rd_p;
215 u32 qcp_rd_p;
216
217 u32 wr_ptr_add;
218
219 struct nfp_net_tx_buf *txbufs;
220 struct nfp_net_tx_desc *txds;
221
222 dma_addr_t dma;
223 unsigned int size;
224} ____cacheline_aligned;
225
226/* RX and freelist descriptor format */
227
228#define PCIE_DESC_RX_DD BIT(7)
229#define PCIE_DESC_RX_META_LEN_MASK GENMASK(6, 0)
230
231/* Flags in the RX descriptor */
232#define PCIE_DESC_RX_RSS cpu_to_le16(BIT(15))
233#define PCIE_DESC_RX_I_IP4_CSUM cpu_to_le16(BIT(14))
234#define PCIE_DESC_RX_I_IP4_CSUM_OK cpu_to_le16(BIT(13))
235#define PCIE_DESC_RX_I_TCP_CSUM cpu_to_le16(BIT(12))
236#define PCIE_DESC_RX_I_TCP_CSUM_OK cpu_to_le16(BIT(11))
237#define PCIE_DESC_RX_I_UDP_CSUM cpu_to_le16(BIT(10))
238#define PCIE_DESC_RX_I_UDP_CSUM_OK cpu_to_le16(BIT(9))
7533fdc0 239#define PCIE_DESC_RX_BPF cpu_to_le16(BIT(8))
4c352362
JK
240#define PCIE_DESC_RX_EOP cpu_to_le16(BIT(7))
241#define PCIE_DESC_RX_IP4_CSUM cpu_to_le16(BIT(6))
242#define PCIE_DESC_RX_IP4_CSUM_OK cpu_to_le16(BIT(5))
243#define PCIE_DESC_RX_TCP_CSUM cpu_to_le16(BIT(4))
244#define PCIE_DESC_RX_TCP_CSUM_OK cpu_to_le16(BIT(3))
245#define PCIE_DESC_RX_UDP_CSUM cpu_to_le16(BIT(2))
246#define PCIE_DESC_RX_UDP_CSUM_OK cpu_to_le16(BIT(1))
247#define PCIE_DESC_RX_VLAN cpu_to_le16(BIT(0))
248
249#define PCIE_DESC_RX_CSUM_ALL (PCIE_DESC_RX_IP4_CSUM | \
250 PCIE_DESC_RX_TCP_CSUM | \
251 PCIE_DESC_RX_UDP_CSUM | \
252 PCIE_DESC_RX_I_IP4_CSUM | \
253 PCIE_DESC_RX_I_TCP_CSUM | \
254 PCIE_DESC_RX_I_UDP_CSUM)
255#define PCIE_DESC_RX_CSUM_OK_SHIFT 1
256#define __PCIE_DESC_RX_CSUM_ALL le16_to_cpu(PCIE_DESC_RX_CSUM_ALL)
257#define __PCIE_DESC_RX_CSUM_ALL_OK (__PCIE_DESC_RX_CSUM_ALL >> \
258 PCIE_DESC_RX_CSUM_OK_SHIFT)
259
260struct nfp_net_rx_desc {
261 union {
262 struct {
263 u8 dma_addr_hi; /* High bits of the buf address */
264 __le16 reserved; /* Must be zero */
265 u8 meta_len_dd; /* Must be zero */
266
267 __le32 dma_addr_lo; /* Low bits of the buffer address */
268 } __packed fld;
269
270 struct {
271 __le16 data_len; /* Length of the frame + meta data */
272 u8 reserved;
273 u8 meta_len_dd; /* Length of meta data prepended +
274 * descriptor done flag.
275 */
276
277 __le16 flags; /* RX flags. See @PCIE_DESC_RX_* */
278 __le16 vlan; /* VLAN if stripped */
279 } __packed rxd;
280
281 __le32 vals[2];
282 };
283};
284
19d0f54e
JK
285#define NFP_NET_META_FIELD_MASK GENMASK(NFP_NET_META_FIELD_SIZE - 1, 0)
286
4c352362
JK
287struct nfp_net_rx_hash {
288 __be32 hash_type;
289 __be32 hash;
290};
291
292/**
293 * struct nfp_net_rx_buf - software RX buffer descriptor
c0f031bc 294 * @frag: page fragment buffer
4c352362
JK
295 * @dma_addr: DMA mapping address of the buffer
296 */
297struct nfp_net_rx_buf {
c0f031bc 298 void *frag;
4c352362
JK
299 dma_addr_t dma_addr;
300};
301
302/**
303 * struct nfp_net_rx_ring - RX ring structure
304 * @r_vec: Back pointer to ring vector structure
305 * @cnt: Size of the queue in number of descriptors
306 * @wr_p: FL/RX ring write pointer (free running)
307 * @rd_p: FL/RX ring read pointer (free running)
308 * @idx: Ring index from Linux's perspective
309 * @fl_qcidx: Queue Controller Peripheral (QCP) queue index for the freelist
310 * @rx_qcidx: Queue Controller Peripheral (QCP) queue index for the RX queue
311 * @qcp_fl: Pointer to base of the QCP freelist queue
312 * @qcp_rx: Pointer to base of the QCP RX queue
313 * @wr_ptr_add: Accumulated number of buffers to add to QCP write pointer
314 * (used for free list batching)
315 * @rxbufs: Array of transmitted FL/RX buffers
316 * @rxds: Virtual address of FL/RX ring in host memory
317 * @dma: DMA address of the FL/RX ring
318 * @size: Size, in bytes, of the FL/RX ring (needed to free)
30d21171
JK
319 * @bufsz: Buffer allocation size for convenience of management routines
320 * (NOTE: this is in second cache line, do not use on fast path!)
4c352362
JK
321 */
322struct nfp_net_rx_ring {
323 struct nfp_net_r_vector *r_vec;
324
325 u32 cnt;
326 u32 wr_p;
327 u32 rd_p;
328
329 u16 idx;
330 u16 wr_ptr_add;
331
332 int fl_qcidx;
333 int rx_qcidx;
334 u8 __iomem *qcp_fl;
335 u8 __iomem *qcp_rx;
336
337 struct nfp_net_rx_buf *rxbufs;
338 struct nfp_net_rx_desc *rxds;
339
340 dma_addr_t dma;
341 unsigned int size;
30d21171 342 unsigned int bufsz;
4c352362
JK
343} ____cacheline_aligned;
344
345/**
346 * struct nfp_net_r_vector - Per ring interrupt vector configuration
347 * @nfp_net: Backpointer to nfp_net structure
348 * @napi: NAPI structure for this ring vec
349 * @tx_ring: Pointer to TX ring
350 * @rx_ring: Pointer to RX ring
ecd63a02 351 * @xdp_ring: Pointer to an extra TX ring for XDP
fdace6c2 352 * @irq_entry: MSI-X table entry (use for talking to the device)
4c352362
JK
353 * @rx_sync: Seqlock for atomic updates of RX stats
354 * @rx_pkts: Number of received packets
355 * @rx_bytes: Number of received bytes
356 * @rx_drops: Number of packets dropped on RX due to lack of resources
357 * @hw_csum_rx_ok: Counter of packets where the HW checksum was OK
358 * @hw_csum_rx_inner_ok: Counter of packets where the inner HW checksum was OK
359 * @hw_csum_rx_error: Counter of packets with bad checksums
360 * @tx_sync: Seqlock for atomic updates of TX stats
361 * @tx_pkts: Number of Transmitted packets
362 * @tx_bytes: Number of Transmitted bytes
363 * @hw_csum_tx: Counter of packets with TX checksum offload requested
364 * @hw_csum_tx_inner: Counter of inner TX checksum offload requests
365 * @tx_gather: Counter of packets with Gather DMA
366 * @tx_lso: Counter of LSO packets sent
367 * @tx_errors: How many TX errors were encountered
368 * @tx_busy: How often was TX busy (no space)?
fdace6c2 369 * @irq_vector: Interrupt vector number (use for talking to the OS)
4c352362
JK
370 * @handler: Interrupt handler for this ring vector
371 * @name: Name of the interrupt vector
372 * @affinity_mask: SMP affinity mask for this vector
373 *
374 * This structure ties RX and TX rings to interrupt vectors and a NAPI
375 * context. This currently only supports one RX and TX ring per
376 * interrupt vector but might be extended in the future to allow
377 * association of multiple rings per vector.
378 */
379struct nfp_net_r_vector {
380 struct nfp_net *nfp_net;
381 struct napi_struct napi;
382
383 struct nfp_net_tx_ring *tx_ring;
384 struct nfp_net_rx_ring *rx_ring;
385
fdace6c2 386 u16 irq_entry;
4c352362
JK
387
388 struct u64_stats_sync rx_sync;
389 u64 rx_pkts;
390 u64 rx_bytes;
391 u64 rx_drops;
392 u64 hw_csum_rx_ok;
393 u64 hw_csum_rx_inner_ok;
394 u64 hw_csum_rx_error;
395
ecd63a02
JK
396 struct nfp_net_tx_ring *xdp_ring;
397
4c352362
JK
398 struct u64_stats_sync tx_sync;
399 u64 tx_pkts;
400 u64 tx_bytes;
401 u64 hw_csum_tx;
402 u64 hw_csum_tx_inner;
403 u64 tx_gather;
404 u64 tx_lso;
405 u64 tx_errors;
406 u64 tx_busy;
407
fdace6c2 408 u32 irq_vector;
4c352362
JK
409 irq_handler_t handler;
410 char name[IFNAMSIZ + 8];
411 cpumask_t affinity_mask;
412} ____cacheline_aligned;
413
414/* Firmware version as it is written in the 32bit value in the BAR */
415struct nfp_net_fw_version {
416 u8 minor;
417 u8 major;
418 u8 class;
419 u8 resv;
420} __packed;
421
422static inline bool nfp_net_fw_ver_eq(struct nfp_net_fw_version *fw_ver,
423 u8 resv, u8 class, u8 major, u8 minor)
424{
425 return fw_ver->resv == resv &&
426 fw_ver->class == class &&
427 fw_ver->major == major &&
428 fw_ver->minor == minor;
429}
430
66860beb
JK
431struct nfp_stat_pair {
432 u64 pkts;
433 u64 bytes;
434};
435
4c352362
JK
436/**
437 * struct nfp_net - NFP network device structure
fa43d2a8 438 * @dev: Backpointer to struct device
4c352362 439 * @netdev: Backpointer to net_device structure
4c352362 440 * @is_vf: Is the driver attached to a VF?
7533fdc0 441 * @bpf_offload_skip_sw: Offloaded BPF program will not be rerun by cls_bpf
6d677075 442 * @bpf_offload_xdp: Offloaded BPF program is XDP
4c352362
JK
443 * @ctrl: Local copy of the control register/word.
444 * @fl_bufsz: Currently configured size of the freelist buffers
445 * @rx_offset: Offset in the RX buffers where packet data starts
ecd63a02 446 * @xdp_prog: Installed XDP program
4c352362
JK
447 * @fw_ver: Firmware version
448 * @cap: Capabilities advertised by the Firmware
449 * @max_mtu: Maximum support MTU advertised by the Firmware
9ff304bf 450 * @rss_hfunc: RSS selected hash function
4c352362
JK
451 * @rss_cfg: RSS configuration
452 * @rss_key: RSS secret key
453 * @rss_itbl: RSS indirection table
66860beb
JK
454 * @rx_filter: Filter offload statistics - dropped packets/bytes
455 * @rx_filter_prev: Filter offload statistics - values from previous update
456 * @rx_filter_change: Jiffies when statistics last changed
457 * @rx_filter_stats_timer: Timer for polling filter offload statistics
458 * @rx_filter_lock: Lock protecting timer state changes (teardown)
4c352362
JK
459 * @max_tx_rings: Maximum number of TX rings supported by the Firmware
460 * @max_rx_rings: Maximum number of RX rings supported by the Firmware
461 * @num_tx_rings: Currently configured number of TX rings
ecd63a02 462 * @num_stack_tx_rings: Number of TX rings used by the stack (not XDP)
4c352362
JK
463 * @num_rx_rings: Currently configured number of RX rings
464 * @txd_cnt: Size of the TX ring in number of descriptors
465 * @rxd_cnt: Size of the RX ring in number of descriptors
466 * @tx_rings: Array of pre-allocated TX ring structures
467 * @rx_rings: Array of pre-allocated RX ring structures
b33ae997 468 * @max_r_vecs: Number of allocated interrupt vectors for RX/TX
4c352362
JK
469 * @num_r_vecs: Number of used ring vectors
470 * @r_vecs: Pre-allocated array of ring vectors
471 * @irq_entries: Pre-allocated array of MSI-X entries
472 * @lsc_handler: Handler for Link State Change interrupt
473 * @lsc_name: Name for Link State Change interrupt
474 * @exn_handler: Handler for Exception interrupt
475 * @exn_name: Name for Exception interrupt
476 * @shared_handler: Handler for shared interrupts
477 * @shared_name: Name for shared interrupt
478 * @me_freq_mhz: ME clock_freq (MHz)
479 * @reconfig_lock: Protects HW reconfiguration request regs/machinery
3d780b92
JK
480 * @reconfig_posted: Pending reconfig bits coming from async sources
481 * @reconfig_timer_active: Timer for reading reconfiguration results is pending
482 * @reconfig_sync_present: Some thread is performing synchronous reconfig
483 * @reconfig_timer: Timer for async reading of reconfig results
4c352362
JK
484 * @link_up: Is the link up?
485 * @link_status_lock: Protects @link_up and ensures atomicity with BAR reading
486 * @rx_coalesce_usecs: RX interrupt moderation usecs delay parameter
487 * @rx_coalesce_max_frames: RX interrupt moderation frame count parameter
488 * @tx_coalesce_usecs: TX interrupt moderation usecs delay parameter
489 * @tx_coalesce_max_frames: TX interrupt moderation frame count parameter
490 * @vxlan_ports: VXLAN ports for RX inner csum offload communicated to HW
491 * @vxlan_usecnt: IPv4/IPv6 VXLAN port use counts
492 * @qcp_cfg: Pointer to QCP queue used for configuration notification
493 * @ctrl_bar: Pointer to mapped control BAR
494 * @tx_bar: Pointer to mapped TX queues
495 * @rx_bar: Pointer to mapped FL/RX queues
496 * @debugfs_dir: Device directory in debugfs
af623682 497 * @ethtool_dump_flag: Ethtool dump flag
63461a02 498 * @port_list: Entry on device port list
fa43d2a8 499 * @pdev: Backpointer to PCI device
bd5ca062 500 * @cpp: CPP device handle if available
47465aed 501 * @eth_port: Translated ETH Table port entry
4c352362
JK
502 */
503struct nfp_net {
fa43d2a8 504 struct device *dev;
4c352362
JK
505 struct net_device *netdev;
506
4c352362 507 unsigned is_vf:1;
7533fdc0 508 unsigned bpf_offload_skip_sw:1;
6d677075 509 unsigned bpf_offload_xdp:1;
4c352362
JK
510
511 u32 ctrl;
512 u32 fl_bufsz;
513
514 u32 rx_offset;
515
ecd63a02
JK
516 struct bpf_prog *xdp_prog;
517
73725d9d
JK
518 struct nfp_net_tx_ring *tx_rings;
519 struct nfp_net_rx_ring *rx_rings;
520
4c352362
JK
521 struct nfp_net_fw_version fw_ver;
522 u32 cap;
523 u32 max_mtu;
524
9ff304bf 525 u8 rss_hfunc;
4c352362
JK
526 u32 rss_cfg;
527 u8 rss_key[NFP_NET_CFG_RSS_KEY_SZ];
528 u8 rss_itbl[NFP_NET_CFG_RSS_ITBL_SZ];
529
66860beb
JK
530 struct nfp_stat_pair rx_filter, rx_filter_prev;
531 unsigned long rx_filter_change;
532 struct timer_list rx_filter_stats_timer;
533 spinlock_t rx_filter_lock;
534
a4b562bb
JK
535 unsigned int max_tx_rings;
536 unsigned int max_rx_rings;
4c352362 537
a4b562bb 538 unsigned int num_tx_rings;
ecd63a02 539 unsigned int num_stack_tx_rings;
a4b562bb 540 unsigned int num_rx_rings;
4c352362
JK
541
542 int stride_tx;
543 int stride_rx;
544
545 int txd_cnt;
546 int rxd_cnt;
547
b33ae997 548 unsigned int max_r_vecs;
a4b562bb 549 unsigned int num_r_vecs;
23a4e389
JK
550 struct nfp_net_r_vector r_vecs[NFP_NET_MAX_R_VECS];
551 struct msix_entry irq_entries[NFP_NET_MAX_IRQS];
4c352362
JK
552
553 irq_handler_t lsc_handler;
554 char lsc_name[IFNAMSIZ + 8];
555
556 irq_handler_t exn_handler;
557 char exn_name[IFNAMSIZ + 8];
558
559 irq_handler_t shared_handler;
560 char shared_name[IFNAMSIZ + 8];
561
562 u32 me_freq_mhz;
563
564 bool link_up;
565 spinlock_t link_status_lock;
566
567 spinlock_t reconfig_lock;
3d780b92
JK
568 u32 reconfig_posted;
569 bool reconfig_timer_active;
570 bool reconfig_sync_present;
571 struct timer_list reconfig_timer;
4c352362
JK
572
573 u32 rx_coalesce_usecs;
574 u32 rx_coalesce_max_frames;
575 u32 tx_coalesce_usecs;
576 u32 tx_coalesce_max_frames;
577
578 __be16 vxlan_ports[NFP_NET_N_VXLAN_PORTS];
579 u8 vxlan_usecnt[NFP_NET_N_VXLAN_PORTS];
580
581 u8 __iomem *qcp_cfg;
582
583 u8 __iomem *ctrl_bar;
4c352362
JK
584 u8 __iomem *tx_bar;
585 u8 __iomem *rx_bar;
586
587 struct dentry *debugfs_dir;
af623682 588 u32 ethtool_dump_flag;
63461a02
JK
589
590 struct list_head port_list;
bd5ca062 591
fa43d2a8 592 struct pci_dev *pdev;
bd5ca062 593 struct nfp_cpp *cpp;
47465aed
JK
594
595 struct nfp_eth_table_port *eth_port;
4c352362
JK
596};
597
68453c7a 598struct nfp_net_ring_set {
164d1e9e 599 unsigned int n_rings;
68453c7a
JK
600 unsigned int mtu;
601 unsigned int dcnt;
602 void *rings;
603};
604
4c352362
JK
605/* Functions to read/write from/to a BAR
606 * Performs any endian conversion necessary.
607 */
7533fdc0
JK
608static inline u16 nn_readb(struct nfp_net *nn, int off)
609{
610 return readb(nn->ctrl_bar + off);
611}
612
4c352362
JK
613static inline void nn_writeb(struct nfp_net *nn, int off, u8 val)
614{
615 writeb(val, nn->ctrl_bar + off);
616}
617
7533fdc0
JK
618static inline u16 nn_readw(struct nfp_net *nn, int off)
619{
7533fdc0
JK
620 return readw(nn->ctrl_bar + off);
621}
622
623static inline void nn_writew(struct nfp_net *nn, int off, u16 val)
624{
7533fdc0
JK
625 writew(val, nn->ctrl_bar + off);
626}
4c352362
JK
627
628static inline u32 nn_readl(struct nfp_net *nn, int off)
629{
630 return readl(nn->ctrl_bar + off);
631}
632
633static inline void nn_writel(struct nfp_net *nn, int off, u32 val)
634{
635 writel(val, nn->ctrl_bar + off);
636}
637
638static inline u64 nn_readq(struct nfp_net *nn, int off)
639{
640 return readq(nn->ctrl_bar + off);
641}
642
643static inline void nn_writeq(struct nfp_net *nn, int off, u64 val)
644{
645 writeq(val, nn->ctrl_bar + off);
646}
647
648/* Flush posted PCI writes by reading something without side effects */
649static inline void nn_pci_flush(struct nfp_net *nn)
650{
651 nn_readl(nn, NFP_NET_CFG_VERSION);
652}
653
654/* Queue Controller Peripheral access functions and definitions.
655 *
656 * Some of the BARs of the NFP are mapped to portions of the Queue
657 * Controller Peripheral (QCP) address space on the NFP. A QCP queue
658 * has a read and a write pointer (as well as a size and flags,
659 * indicating overflow etc). The QCP offers a number of different
660 * operation on queue pointers, but here we only offer function to
661 * either add to a pointer or to read the pointer value.
662 */
663#define NFP_QCP_QUEUE_ADDR_SZ 0x800
664#define NFP_QCP_QUEUE_OFF(_x) ((_x) * NFP_QCP_QUEUE_ADDR_SZ)
665#define NFP_QCP_QUEUE_ADD_RPTR 0x0000
666#define NFP_QCP_QUEUE_ADD_WPTR 0x0004
667#define NFP_QCP_QUEUE_STS_LO 0x0008
668#define NFP_QCP_QUEUE_STS_LO_READPTR_mask 0x3ffff
669#define NFP_QCP_QUEUE_STS_HI 0x000c
670#define NFP_QCP_QUEUE_STS_HI_WRITEPTR_mask 0x3ffff
671
416db5c1 672/* The offset of a QCP queues in the PCIe Target */
4c352362
JK
673#define NFP_PCIE_QUEUE(_q) (0x80000 + (NFP_QCP_QUEUE_ADDR_SZ * ((_q) & 0xff)))
674
675/* nfp_qcp_ptr - Read or Write Pointer of a queue */
676enum nfp_qcp_ptr {
677 NFP_QCP_READ_PTR = 0,
678 NFP_QCP_WRITE_PTR
679};
680
681/* There appear to be an *undocumented* upper limit on the value which
682 * one can add to a queue and that value is either 0x3f or 0x7f. We
683 * go with 0x3f as a conservative measure.
684 */
685#define NFP_QCP_MAX_ADD 0x3f
686
687static inline void _nfp_qcp_ptr_add(u8 __iomem *q,
688 enum nfp_qcp_ptr ptr, u32 val)
689{
690 u32 off;
691
692 if (ptr == NFP_QCP_READ_PTR)
693 off = NFP_QCP_QUEUE_ADD_RPTR;
694 else
695 off = NFP_QCP_QUEUE_ADD_WPTR;
696
697 while (val > NFP_QCP_MAX_ADD) {
698 writel(NFP_QCP_MAX_ADD, q + off);
699 val -= NFP_QCP_MAX_ADD;
700 }
701
702 writel(val, q + off);
703}
704
705/**
706 * nfp_qcp_rd_ptr_add() - Add the value to the read pointer of a queue
707 *
708 * @q: Base address for queue structure
709 * @val: Value to add to the queue pointer
710 *
711 * If @val is greater than @NFP_QCP_MAX_ADD multiple writes are performed.
712 */
713static inline void nfp_qcp_rd_ptr_add(u8 __iomem *q, u32 val)
714{
715 _nfp_qcp_ptr_add(q, NFP_QCP_READ_PTR, val);
716}
717
718/**
719 * nfp_qcp_wr_ptr_add() - Add the value to the write pointer of a queue
720 *
721 * @q: Base address for queue structure
722 * @val: Value to add to the queue pointer
723 *
724 * If @val is greater than @NFP_QCP_MAX_ADD multiple writes are performed.
725 */
726static inline void nfp_qcp_wr_ptr_add(u8 __iomem *q, u32 val)
727{
728 _nfp_qcp_ptr_add(q, NFP_QCP_WRITE_PTR, val);
729}
730
731static inline u32 _nfp_qcp_read(u8 __iomem *q, enum nfp_qcp_ptr ptr)
732{
733 u32 off;
734 u32 val;
735
736 if (ptr == NFP_QCP_READ_PTR)
737 off = NFP_QCP_QUEUE_STS_LO;
738 else
739 off = NFP_QCP_QUEUE_STS_HI;
740
741 val = readl(q + off);
742
743 if (ptr == NFP_QCP_READ_PTR)
744 return val & NFP_QCP_QUEUE_STS_LO_READPTR_mask;
745 else
746 return val & NFP_QCP_QUEUE_STS_HI_WRITEPTR_mask;
747}
748
749/**
750 * nfp_qcp_rd_ptr_read() - Read the current read pointer value for a queue
751 * @q: Base address for queue structure
752 *
753 * Return: Value read.
754 */
755static inline u32 nfp_qcp_rd_ptr_read(u8 __iomem *q)
756{
757 return _nfp_qcp_read(q, NFP_QCP_READ_PTR);
758}
759
760/**
761 * nfp_qcp_wr_ptr_read() - Read the current write pointer value for a queue
762 * @q: Base address for queue structure
763 *
764 * Return: Value read.
765 */
766static inline u32 nfp_qcp_wr_ptr_read(u8 __iomem *q)
767{
768 return _nfp_qcp_read(q, NFP_QCP_WRITE_PTR);
769}
770
771/* Globals */
2633beb9 772extern const char nfp_driver_version[];
4c352362
JK
773
774/* Prototypes */
775void nfp_net_get_fw_version(struct nfp_net_fw_version *fw_ver,
776 void __iomem *ctrl_bar);
777
a4b562bb
JK
778struct nfp_net *
779nfp_net_netdev_alloc(struct pci_dev *pdev,
780 unsigned int max_tx_rings, unsigned int max_rx_rings);
4c352362
JK
781void nfp_net_netdev_free(struct nfp_net *nn);
782int nfp_net_netdev_init(struct net_device *netdev);
783void nfp_net_netdev_clean(struct net_device *netdev);
784void nfp_net_set_ethtool_ops(struct net_device *netdev);
785void nfp_net_info(struct nfp_net *nn);
786int nfp_net_reconfig(struct nfp_net *nn, u32 update);
9ff304bf 787unsigned int nfp_net_rss_key_sz(struct nfp_net *nn);
4c352362
JK
788void nfp_net_rss_write_itbl(struct nfp_net *nn);
789void nfp_net_rss_write_key(struct nfp_net *nn);
790void nfp_net_coalesce_write_cfg(struct nfp_net *nn);
fdace6c2
JK
791
792unsigned int
793nfp_net_irqs_alloc(struct pci_dev *pdev, struct msix_entry *irq_entries,
794 unsigned int min_irqs, unsigned int want_irqs);
795void nfp_net_irqs_disable(struct pci_dev *pdev);
796void
797nfp_net_irqs_assign(struct nfp_net *nn, struct msix_entry *irq_entries,
798 unsigned int n);
68453c7a 799int
ecd63a02
JK
800nfp_net_ring_reconfig(struct nfp_net *nn, struct bpf_prog **xdp_prog,
801 struct nfp_net_ring_set *rx, struct nfp_net_ring_set *tx);
4c352362 802
2633beb9 803#ifdef CONFIG_NFP_DEBUG
4c352362
JK
804void nfp_net_debugfs_create(void);
805void nfp_net_debugfs_destroy(void);
6f1cd5ca
JK
806struct dentry *nfp_net_debugfs_device_add(struct pci_dev *pdev);
807void nfp_net_debugfs_port_add(struct nfp_net *nn, struct dentry *ddir, int id);
808void nfp_net_debugfs_dir_clean(struct dentry **dir);
4c352362
JK
809#else
810static inline void nfp_net_debugfs_create(void)
811{
812}
813
814static inline void nfp_net_debugfs_destroy(void)
815{
816}
817
6f1cd5ca 818static inline struct dentry *nfp_net_debugfs_device_add(struct pci_dev *pdev)
4c352362 819{
6f1cd5ca 820 return NULL;
4c352362
JK
821}
822
6f1cd5ca
JK
823static inline void
824nfp_net_debugfs_port_add(struct nfp_net *nn, struct dentry *ddir, int id)
825{
826}
827
828static inline void nfp_net_debugfs_dir_clean(struct dentry **dir)
4c352362
JK
829{
830}
2633beb9 831#endif /* CONFIG_NFP_DEBUG */
4c352362 832
66860beb 833void nfp_net_filter_stats_timer(unsigned long data);
2e9d594d 834int nfp_net_bpf_offload(struct nfp_net *nn, struct tc_cls_bpf_offload *cls_bpf);
7533fdc0 835
4c352362 836#endif /* _NFP_NET_H_ */