]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/ethernet/mellanox/mlx4/mlx4_en.h
Merge tag 'spi-v4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
[mirror_ubuntu-artful-kernel.git] / drivers / net / ethernet / mellanox / mlx4 / mlx4_en.h
CommitLineData
c27a02cd
YP
1/*
2 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33
34#ifndef _MLX4_EN_H_
35#define _MLX4_EN_H_
36
f1b553fb 37#include <linux/bitops.h>
c27a02cd
YP
38#include <linux/compiler.h>
39#include <linux/list.h>
40#include <linux/mutex.h>
41#include <linux/netdevice.h>
f1b553fb 42#include <linux/if_vlan.h>
ec693d47 43#include <linux/net_tstamp.h>
564c274c
AV
44#ifdef CONFIG_MLX4_EN_DCB
45#include <linux/dcbnl.h>
46#endif
1eb8c695 47#include <linux/cpu_rmap.h>
ad7d4eae 48#include <linux/ptp_clock_kernel.h>
c27a02cd
YP
49
50#include <linux/mlx4/device.h>
51#include <linux/mlx4/qp.h>
52#include <linux/mlx4/cq.h>
53#include <linux/mlx4/srq.h>
54#include <linux/mlx4/doorbell.h>
e7c1c2c4 55#include <linux/mlx4/cmd.h>
c27a02cd
YP
56
57#include "en_port.h"
b4b6e842 58#include "mlx4_stats.h"
c27a02cd
YP
59
60#define DRV_NAME "mlx4_en"
169a1d85
AV
61#define DRV_VERSION "2.2-1"
62#define DRV_RELDATE "Feb 2014"
c27a02cd 63
c27a02cd
YP
64#define MLX4_EN_MSG_LEVEL (NETIF_MSG_LINK | NETIF_MSG_IFDOWN)
65
c27a02cd
YP
66/*
67 * Device constants
68 */
69
70
71#define MLX4_EN_PAGE_SHIFT 12
72#define MLX4_EN_PAGE_SIZE (1 << MLX4_EN_PAGE_SHIFT)
d317966b
AV
73#define DEF_RX_RINGS 16
74#define MAX_RX_RINGS 128
1fb9876e 75#define MIN_RX_RINGS 4
c27a02cd
YP
76#define TXBB_SIZE 64
77#define HEADROOM (2048 / TXBB_SIZE + 1)
c27a02cd
YP
78#define STAMP_STRIDE 64
79#define STAMP_DWORDS (STAMP_STRIDE / 4)
80#define STAMP_SHIFT 31
81#define STAMP_VAL 0x7fffffff
82#define STATS_DELAY (HZ / 4)
b6c39bfc 83#define SERVICE_TASK_DELAY (HZ / 4)
82067281 84#define MAX_NUM_OF_FS_RULES 256
c27a02cd 85
1eb8c695
AV
86#define MLX4_EN_FILTER_HASH_SHIFT 4
87#define MLX4_EN_FILTER_EXPIRY_QUOTA 60
88
c27a02cd
YP
89/* Typical TSO descriptor with 16 gather entries is 352 bytes... */
90#define MAX_DESC_SIZE 512
91#define MAX_DESC_TXBBS (MAX_DESC_SIZE / TXBB_SIZE)
92
93/*
94 * OS related constants and tunables
95 */
96
0fef9d03 97#define MLX4_EN_PRIV_FLAGS_BLUEFLAME 1
e38af4fa 98#define MLX4_EN_PRIV_FLAGS_PHV 2
0fef9d03 99
c27a02cd
YP
100#define MLX4_EN_WATCHDOG_TIMEOUT (15 * HZ)
101
117980c4
TLSC
102/* Use the maximum between 16384 and a single page */
103#define MLX4_EN_ALLOC_SIZE PAGE_ALIGN(16384)
51151a16
ED
104
105#define MLX4_EN_ALLOC_PREFER_ORDER PAGE_ALLOC_COSTLY_ORDER
c27a02cd 106
e6309cff 107/* Receive fragment sizes; we use at most 3 fragments (for 9600 byte MTU
c27a02cd
YP
108 * and 4K allocations) */
109enum {
e6309cff
ED
110 FRAG_SZ0 = 1536 - NET_IP_ALIGN,
111 FRAG_SZ1 = 4096,
c27a02cd
YP
112 FRAG_SZ2 = 4096,
113 FRAG_SZ3 = MLX4_EN_ALLOC_SIZE
114};
115#define MLX4_EN_MAX_RX_FRAGS 4
116
bd531e36
YP
117/* Maximum ring sizes */
118#define MLX4_EN_MAX_TX_SIZE 8192
119#define MLX4_EN_MAX_RX_SIZE 8192
120
4cce66cd 121/* Minimum ring size for our page-allocation scheme to work */
c27a02cd
YP
122#define MLX4_EN_MIN_RX_SIZE (MLX4_EN_ALLOC_SIZE / SMP_CACHE_BYTES)
123#define MLX4_EN_MIN_TX_SIZE (4096 / TXBB_SIZE)
124
f813cad8 125#define MLX4_EN_SMALL_PKT_SIZE 64
ea1c1af1 126#define MLX4_EN_MIN_TX_RING_P_UP 1
bc6a4744 127#define MLX4_EN_MAX_TX_RING_P_UP 32
564c274c 128#define MLX4_EN_NUM_UP 8
f813cad8 129#define MLX4_EN_DEF_TX_RING_SIZE 512
c27a02cd 130#define MLX4_EN_DEF_RX_RING_SIZE 1024
d317966b
AV
131#define MAX_TX_RINGS (MLX4_EN_MAX_TX_RING_P_UP * \
132 MLX4_EN_NUM_UP)
c27a02cd 133
fbc6daf1 134#define MLX4_EN_DEFAULT_TX_WORK 256
9ecc2d86 135#define MLX4_EN_DOORBELL_BUDGET 8
fbc6daf1 136
3db36fb2
YP
137/* Target number of packets to coalesce with interrupt moderation */
138#define MLX4_EN_RX_COAL_TARGET 44
c27a02cd
YP
139#define MLX4_EN_RX_COAL_TIME 0x10
140
e22979d9 141#define MLX4_EN_TX_COAL_PKTS 16
ecfd2ce1 142#define MLX4_EN_TX_COAL_TIME 0x10
c27a02cd
YP
143
144#define MLX4_EN_RX_RATE_LOW 400000
145#define MLX4_EN_RX_COAL_TIME_LOW 0
146#define MLX4_EN_RX_RATE_HIGH 450000
147#define MLX4_EN_RX_COAL_TIME_HIGH 128
148#define MLX4_EN_RX_SIZE_THRESH 1024
149#define MLX4_EN_RX_RATE_THRESH (1000000 / MLX4_EN_RX_COAL_TIME_HIGH)
150#define MLX4_EN_SAMPLE_INTERVAL 0
46afd0fb 151#define MLX4_EN_AVG_PKT_SMALL 256
c27a02cd
YP
152
153#define MLX4_EN_AUTO_CONF 0xffff
154
155#define MLX4_EN_DEF_RX_PAUSE 1
156#define MLX4_EN_DEF_TX_PAUSE 1
157
af901ca1 158/* Interval between successive polls in the Tx routine when polling is used
c27a02cd
YP
159 instead of interrupts (in per-core Tx rings) - should be power of 2 */
160#define MLX4_EN_TX_POLL_MODER 16
161#define MLX4_EN_TX_POLL_TIMEOUT (HZ / 4)
162
c27a02cd
YP
163#define SMALL_PACKET_SIZE (256 - NET_IP_ALIGN)
164#define HEADER_COPY_SIZE (128 - NET_IP_ALIGN)
e7c1c2c4 165#define MLX4_LOOPBACK_TEST_PAYLOAD (HEADER_COPY_SIZE - ETH_HLEN)
c27a02cd
YP
166
167#define MLX4_EN_MIN_MTU 46
47a38e15
BB
168/* VLAN_HLEN is added twice,to support skb vlan tagged with multiple
169 * headers. (For example: ETH_P_8021Q and ETH_P_8021AD).
170 */
171#define MLX4_EN_EFF_MTU(mtu) ((mtu) + ETH_HLEN + (2 * VLAN_HLEN))
c27a02cd
YP
172#define ETH_BCAST 0xffffffffffffULL
173
e7c1c2c4
YP
174#define MLX4_EN_LOOPBACK_RETRIES 5
175#define MLX4_EN_LOOPBACK_TIMEOUT 100
176
c27a02cd
YP
177#ifdef MLX4_EN_PERF_STAT
178/* Number of samples to 'average' */
179#define AVG_SIZE 128
180#define AVG_FACTOR 1024
c27a02cd
YP
181
182#define INC_PERF_COUNTER(cnt) (++(cnt))
183#define ADD_PERF_COUNTER(cnt, add) ((cnt) += (add))
184#define AVG_PERF_COUNTER(cnt, sample) \
185 ((cnt) = ((cnt) * (AVG_SIZE - 1) + (sample) * AVG_FACTOR) / AVG_SIZE)
186#define GET_PERF_COUNTER(cnt) (cnt)
187#define GET_AVG_PERF_COUNTER(cnt) ((cnt) / AVG_FACTOR)
188
189#else
190
c27a02cd
YP
191#define INC_PERF_COUNTER(cnt) do {} while (0)
192#define ADD_PERF_COUNTER(cnt, add) do {} while (0)
193#define AVG_PERF_COUNTER(cnt, sample) do {} while (0)
194#define GET_PERF_COUNTER(cnt) (0)
195#define GET_AVG_PERF_COUNTER(cnt) (0)
196#endif /* MLX4_EN_PERF_STAT */
197
b97b33a3
EE
198/* Constants for TX flow */
199enum {
200 MAX_INLINE = 104, /* 128 - 16 - 4 - 4 */
201 MAX_BF = 256,
202 MIN_PKT_LEN = 17,
203};
204
c27a02cd
YP
205/*
206 * Configurables
207 */
208
209enum cq_type {
67f8b1dc 210 /* keep tx types first */
ccc109b8
TT
211 TX,
212 TX_XDP,
67f8b1dc 213#define MLX4_EN_NUM_TX_TYPES (TX_XDP + 1)
ccc109b8 214 RX,
c27a02cd
YP
215};
216
217
218/*
219 * Useful macros
220 */
221#define ROUNDUP_LOG2(x) ilog2(roundup_pow_of_two(x))
222#define XNOR(x, y) (!(x) == !(y))
c27a02cd
YP
223
224
225struct mlx4_en_tx_info {
9ecc2d86
BB
226 union {
227 struct sk_buff *skb;
228 struct page *page;
229 };
3d03641c
ED
230 dma_addr_t map0_dma;
231 u32 map0_byte_count;
98b16349
ED
232 u32 nr_txbb;
233 u32 nr_bytes;
234 u8 linear;
235 u8 data_offset;
236 u8 inl;
237 u8 ts_requested;
3d03641c 238 u8 nr_maps;
98b16349 239} ____cacheline_aligned_in_smp;
c27a02cd
YP
240
241
242#define MLX4_EN_BIT_DESC_OWN 0x80000000
243#define CTRL_SIZE sizeof(struct mlx4_wqe_ctrl_seg)
244#define MLX4_EN_MEMTYPE_PAD 0x100
245#define DS_SIZE sizeof(struct mlx4_wqe_data_seg)
246
247
248struct mlx4_en_tx_desc {
249 struct mlx4_wqe_ctrl_seg ctrl;
250 union {
251 struct mlx4_wqe_data_seg data; /* at least one data segment */
252 struct mlx4_wqe_lso_seg lso;
253 struct mlx4_wqe_inline_seg inl;
254 };
255};
256
257#define MLX4_EN_USE_SRQ 0x01000000
258
725c8999
YP
259#define MLX4_EN_CX3_LOW_ID 0x1000
260#define MLX4_EN_CX3_HIGH_ID 0x1005
261
c27a02cd 262struct mlx4_en_rx_alloc {
51151a16
ED
263 struct page *page;
264 dma_addr_t dma;
70fbe079
AV
265 u32 page_offset;
266 u32 page_size;
c27a02cd
YP
267};
268
d576acf0
BB
269#define MLX4_EN_CACHE_SIZE (2 * NAPI_POLL_WEIGHT)
270struct mlx4_en_page_cache {
271 u32 index;
272 struct mlx4_en_rx_alloc buf[MLX4_EN_CACHE_SIZE];
273};
274
9ecc2d86
BB
275struct mlx4_en_priv;
276
c27a02cd 277struct mlx4_en_tx_ring {
98b16349
ED
278 /* cache line used and dirtied in tx completion
279 * (mlx4_en_free_tx_buf())
280 */
281 u32 last_nr_txbb;
282 u32 cons;
283 unsigned long wake_queue;
e3f42f84
ED
284 struct netdev_queue *tx_queue;
285 u32 (*free_tx_desc)(struct mlx4_en_priv *priv,
286 struct mlx4_en_tx_ring *ring,
287 int index, u8 owner,
288 u64 timestamp, int napi_mode);
289 struct mlx4_en_rx_ring *recycle_ring;
98b16349
ED
290
291 /* cache line used and dirtied in mlx4_en_xmit() */
292 u32 prod ____cacheline_aligned_in_smp;
e3f42f84 293 unsigned int tx_dropped;
98b16349
ED
294 unsigned long bytes;
295 unsigned long packets;
296 unsigned long tx_csum;
297 unsigned long tso_packets;
298 unsigned long xmit_more;
299 struct mlx4_bf bf;
98b16349
ED
300
301 /* Following part should be mostly read */
e3f42f84
ED
302 __be32 doorbell_qpn;
303 __be32 mr_key;
98b16349
ED
304 u32 size; /* number of TXBBs */
305 u32 size_mask;
488a9b48 306 u32 full_size;
98b16349 307 u32 buf_size;
98b16349
ED
308 void *buf;
309 struct mlx4_en_tx_info *tx_info;
98b16349 310 int qpn;
98b16349
ED
311 u8 queue_index;
312 bool bf_enabled;
313 bool bf_alloced;
e3f42f84
ED
314 u8 hwtstamp_tx_type;
315 u8 *bounce_buf;
316
317 /* Not used in fast path
318 * Only queue_stopped might be used if BQL is not properly working.
319 */
320 unsigned long queue_stopped;
321 struct mlx4_hwq_resources sp_wqres;
322 struct mlx4_qp sp_qp;
323 struct mlx4_qp_context sp_context;
324 cpumask_t sp_affinity_mask;
325 enum mlx4_qp_state sp_qp_state;
326 u16 sp_stride;
327 u16 sp_cqn; /* index of port CQ associated with this ring */
98b16349 328} ____cacheline_aligned_in_smp;
c27a02cd
YP
329
330struct mlx4_en_rx_desc {
c27a02cd
YP
331 /* actual number of entries depends on rx ring stride */
332 struct mlx4_wqe_data_seg data[0];
333};
334
335struct mlx4_en_rx_ring {
c27a02cd
YP
336 struct mlx4_hwq_resources wqres;
337 struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
c27a02cd
YP
338 u32 size ; /* number of Rx descs*/
339 u32 actual_size;
340 u32 size_mask;
341 u16 stride;
342 u16 log_stride;
343 u16 cqn; /* index of port CQ associated with this ring */
344 u32 prod;
345 u32 cons;
346 u32 buf_size;
4a5f4dd8 347 u8 fcs_del;
c27a02cd
YP
348 void *buf;
349 void *rx_info;
326fe02d 350 struct bpf_prog __rcu *xdp_prog;
d576acf0 351 struct mlx4_en_page_cache page_cache;
c27a02cd
YP
352 unsigned long bytes;
353 unsigned long packets;
ad04378c
YP
354 unsigned long csum_ok;
355 unsigned long csum_none;
f8c6455b 356 unsigned long csum_complete;
15fca2c8
TT
357 unsigned long xdp_drop;
358 unsigned long xdp_tx;
359 unsigned long xdp_tx_full;
d21ed3a3 360 unsigned long dropped;
ec693d47 361 int hwtstamp_rx_filter;
9e311e77 362 cpumask_var_t affinity_mask;
c27a02cd
YP
363};
364
c27a02cd
YP
365struct mlx4_en_cq {
366 struct mlx4_cq mcq;
367 struct mlx4_hwq_resources wqres;
368 int ring;
c27a02cd
YP
369 struct net_device *dev;
370 struct napi_struct napi;
c27a02cd
YP
371 int size;
372 int buf_size;
c66fa19c 373 int vector;
ccc109b8 374 enum cq_type type;
c27a02cd
YP
375 u16 moder_time;
376 u16 moder_cnt;
c27a02cd
YP
377 struct mlx4_cqe *buf;
378#define MLX4_EN_OPCODE_ERROR 0x1e
9e77a2b8 379
35f6f453 380 struct irq_desc *irq_desc;
c27a02cd
YP
381};
382
383struct mlx4_en_port_profile {
384 u32 flags;
67f8b1dc 385 u32 tx_ring_num[MLX4_EN_NUM_TX_TYPES];
c27a02cd
YP
386 u32 rx_ring_num;
387 u32 tx_ring_size;
388 u32 rx_ring_size;
ec25bc04 389 u8 num_tx_rings_p_up;
d53b93f2
YP
390 u8 rx_pause;
391 u8 rx_ppp;
392 u8 tx_pause;
393 u8 tx_ppp;
93d3e367 394 int rss_rings;
b97b33a3 395 int inline_thold;
ec25bc04 396 struct hwtstamp_config hwtstamp_config;
c27a02cd
YP
397};
398
399struct mlx4_en_profile {
0533943c 400 int udp_rss;
c27a02cd
YP
401 u8 rss_mask;
402 u32 active_ports;
403 u32 small_pkt_int;
c27a02cd 404 u8 no_reset;
bc6a4744 405 u8 num_tx_rings_p_up;
c27a02cd
YP
406 struct mlx4_en_port_profile prof[MLX4_MAX_PORTS + 1];
407};
408
409struct mlx4_en_dev {
410 struct mlx4_dev *dev;
411 struct pci_dev *pdev;
412 struct mutex state_lock;
413 struct net_device *pndev[MLX4_MAX_PORTS + 1];
5da03547 414 struct net_device *upper[MLX4_MAX_PORTS + 1];
c27a02cd
YP
415 u32 port_cnt;
416 bool device_up;
417 struct mlx4_en_profile profile;
418 u32 LSO_support;
419 struct workqueue_struct *workqueue;
420 struct device *dma_device;
421 void __iomem *uar_map;
422 struct mlx4_uar priv_uar;
423 struct mlx4_mr mr;
424 u32 priv_pdn;
425 spinlock_t uar_lock;
d7e1a487 426 u8 mac_removed[MLX4_MAX_PORTS + 1];
ad7d4eae
SB
427 rwlock_t clock_lock;
428 u32 nominal_c_mult;
ec693d47
AV
429 struct cyclecounter cycles;
430 struct timecounter clock;
431 unsigned long last_overflow_check;
b6c39bfc 432 unsigned long overflow_period;
ad7d4eae
SB
433 struct ptp_clock *ptp_clock;
434 struct ptp_clock_info ptp_clock_info;
5da03547 435 struct notifier_block nb;
c27a02cd
YP
436};
437
438
439struct mlx4_en_rss_map {
c27a02cd 440 int base_qpn;
b6b912e0
YP
441 struct mlx4_qp qps[MAX_RX_RINGS];
442 enum mlx4_qp_state state[MAX_RX_RINGS];
c27a02cd
YP
443 struct mlx4_qp indir_qp;
444 enum mlx4_qp_state indir_state;
445};
446
2c762679
SM
447enum mlx4_en_port_flag {
448 MLX4_EN_PORT_ANC = 1<<0, /* Auto-negotiation complete */
449 MLX4_EN_PORT_ANE = 1<<1, /* Auto-negotiation enabled */
450};
451
e7c1c2c4
YP
452struct mlx4_en_port_state {
453 int link_state;
454 int link_speed;
2c762679
SM
455 int transceiver;
456 u32 flags;
e7c1c2c4
YP
457};
458
6d199937
YP
459enum mlx4_en_mclist_act {
460 MCLIST_NONE,
461 MCLIST_REM,
462 MCLIST_ADD,
463};
464
465struct mlx4_en_mc_list {
466 struct list_head list;
467 enum mlx4_en_mclist_act action;
468 u8 addr[ETH_ALEN];
0ff1fb65 469 u64 reg_id;
837052d0 470 u64 tunnel_reg_id;
6d199937
YP
471};
472
c27a02cd
YP
473struct mlx4_en_frag_info {
474 u16 frag_size;
475 u16 frag_prefix_size;
d576acf0
BB
476 u32 frag_stride;
477 enum dma_data_direction dma_dir;
ea3349a0
MKL
478 u16 order;
479 u16 rx_headroom;
c27a02cd
YP
480};
481
564c274c
AV
482#ifdef CONFIG_MLX4_EN_DCB
483/* Minimal TC BW - setting to 0 will block traffic */
484#define MLX4_EN_BW_MIN 1
485#define MLX4_EN_BW_MAX 100 /* Utilize 100% of the line */
486
487#define MLX4_EN_TC_ETS 7
488
af7d5185
RS
489enum dcb_pfc_type {
490 pfc_disabled = 0,
491 pfc_enabled_full,
492 pfc_enabled_tx,
493 pfc_enabled_rx
494};
495
af7d5185
RS
496struct mlx4_en_cee_config {
497 bool pfc_state;
564ed9b1 498 enum dcb_pfc_type dcb_pfc[MLX4_EN_NUM_UP];
af7d5185 499};
564c274c
AV
500#endif
501
82067281 502struct ethtool_flow_id {
0d256c0e 503 struct list_head list;
82067281
HHZ
504 struct ethtool_rx_flow_spec flow_spec;
505 u64 id;
506};
507
79aeaccd
YB
508enum {
509 MLX4_EN_FLAG_PROMISC = (1 << 0),
510 MLX4_EN_FLAG_MC_PROMISC = (1 << 1),
511 /* whether we need to enable hardware loopback by putting dmac
512 * in Tx WQE
513 */
514 MLX4_EN_FLAG_ENABLE_HW_LOOPBACK = (1 << 2),
515 /* whether we need to drop packets that hardware loopback-ed */
cc5387f7 516 MLX4_EN_FLAG_RX_FILTER_NEEDED = (1 << 3),
f8c6455b
SM
517 MLX4_EN_FLAG_FORCE_PROMISC = (1 << 4),
518 MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP = (1 << 5),
af7d5185
RS
519#ifdef CONFIG_MLX4_EN_DCB
520 MLX4_EN_FLAG_DCB_ENABLED = (1 << 6),
521#endif
79aeaccd
YB
522};
523
51af33cf 524#define PORT_BEACON_MAX_LIMIT (65535)
c07cb4b0
YB
525#define MLX4_EN_MAC_HASH_SIZE (1 << BITS_PER_BYTE)
526#define MLX4_EN_MAC_HASH_IDX 5
527
3da8a36c
EBE
528struct mlx4_en_stats_bitmap {
529 DECLARE_BITMAP(bitmap, NUM_ALL_STATS);
530 struct mutex mutex; /* for mutual access to stats bitmap */
531};
532
c27a02cd
YP
533struct mlx4_en_priv {
534 struct mlx4_en_dev *mdev;
535 struct mlx4_en_port_profile *prof;
536 struct net_device *dev;
f1b553fb 537 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
e7c1c2c4 538 struct mlx4_en_port_state port_state;
c27a02cd 539 spinlock_t stats_lock;
82067281 540 struct ethtool_flow_id ethtool_rules[MAX_NUM_OF_FS_RULES];
0d256c0e
HHZ
541 /* To allow rules removal while port is going down */
542 struct list_head ethtool_list;
c27a02cd 543
6b4d8d9f 544 unsigned long last_moder_packets[MAX_RX_RINGS];
c27a02cd 545 unsigned long last_moder_tx_packets;
6b4d8d9f 546 unsigned long last_moder_bytes[MAX_RX_RINGS];
c27a02cd 547 unsigned long last_moder_jiffies;
6b4d8d9f 548 int last_moder_time[MAX_RX_RINGS];
c27a02cd
YP
549 u16 rx_usecs;
550 u16 rx_frames;
551 u16 tx_usecs;
552 u16 tx_frames;
553 u32 pkt_rate_low;
554 u16 rx_usecs_low;
555 u32 pkt_rate_high;
556 u16 rx_usecs_high;
557 u16 sample_interval;
558 u16 adaptive_rx_coal;
559 u32 msg_enable;
e7c1c2c4
YP
560 u32 loopback_ok;
561 u32 validate_loopback;
c27a02cd
YP
562
563 struct mlx4_hwq_resources res;
564 int link_state;
565 int last_link_state;
566 bool port_up;
567 int port;
568 int registered;
569 int allocated;
570 int stride;
2695bab2 571 unsigned char current_mac[ETH_ALEN + 2];
c27a02cd
YP
572 int mac_index;
573 unsigned max_mtu;
574 int base_qpn;
08ff3235 575 int cqe_factor;
b1b6b4da 576 int cqe_size;
c27a02cd
YP
577
578 struct mlx4_en_rss_map rss_map;
4ef2a435 579 __be32 ctrl_flags;
c27a02cd 580 u32 flags;
d317966b 581 u8 num_tx_rings_p_up;
fbc6daf1 582 u32 tx_work_limit;
67f8b1dc 583 u32 tx_ring_num[MLX4_EN_NUM_TX_TYPES];
c27a02cd
YP
584 u32 rx_ring_num;
585 u32 rx_skb_size;
586 struct mlx4_en_frag_info frag_info[MLX4_EN_MAX_RX_FRAGS];
587 u16 num_frags;
588 u16 log_rx_info;
589
67f8b1dc 590 struct mlx4_en_tx_ring **tx_ring[MLX4_EN_NUM_TX_TYPES];
41d942d5 591 struct mlx4_en_rx_ring *rx_ring[MAX_RX_RINGS];
67f8b1dc 592 struct mlx4_en_cq **tx_cq[MLX4_EN_NUM_TX_TYPES];
41d942d5 593 struct mlx4_en_cq *rx_cq[MAX_RX_RINGS];
cabdc8ee 594 struct mlx4_qp drop_qp;
0eb74fdd 595 struct work_struct rx_mode_task;
c27a02cd
YP
596 struct work_struct watchdog_task;
597 struct work_struct linkstate_task;
598 struct delayed_work stats_task;
b6c39bfc 599 struct delayed_work service_task;
1b136de1
OG
600 struct work_struct vxlan_add_task;
601 struct work_struct vxlan_del_task;
c27a02cd
YP
602 struct mlx4_en_perf_stats pstats;
603 struct mlx4_en_pkt_stats pkstats;
b42de4d0 604 struct mlx4_en_counter_stats pf_stats;
0b131561
MB
605 struct mlx4_en_flow_stats_rx rx_priority_flowstats[MLX4_NUM_PRIORITIES];
606 struct mlx4_en_flow_stats_tx tx_priority_flowstats[MLX4_NUM_PRIORITIES];
607 struct mlx4_en_flow_stats_rx rx_flowstats;
608 struct mlx4_en_flow_stats_tx tx_flowstats;
c27a02cd 609 struct mlx4_en_port_stats port_stats;
15fca2c8 610 struct mlx4_en_xdp_stats xdp_stats;
3da8a36c 611 struct mlx4_en_stats_bitmap stats_bitmap;
6d199937
YP
612 struct list_head mc_list;
613 struct list_head curr_list;
0ff1fb65 614 u64 broadcast_id;
c27a02cd 615 struct mlx4_en_stat_out_mbox hw_stats;
4c3eb3ca 616 int vids[128];
14c07b13 617 bool wol;
ebf8c9aa 618 struct device *ddev;
c07cb4b0 619 struct hlist_head mac_hash[MLX4_EN_MAC_HASH_SIZE];
ec693d47 620 struct hwtstamp_config hwtstamp_config;
6de5f7f6 621 u32 counter_index;
564c274c
AV
622
623#ifdef CONFIG_MLX4_EN_DCB
af7d5185 624#define MLX4_EN_DCB_ENABLED 0x3
564c274c 625 struct ieee_ets ets;
109d2446 626 u16 maxrate[IEEE_8021QAZ_MAX_TCS];
708b869b 627 enum dcbnl_cndd_states cndd_state[IEEE_8021QAZ_MAX_TCS];
564ed9b1
TT
628 struct mlx4_en_cee_config cee_config;
629 u8 dcbx_cap;
564c274c 630#endif
1eb8c695
AV
631#ifdef CONFIG_RFS_ACCEL
632 spinlock_t filters_lock;
633 int last_filter_id;
634 struct list_head filters;
635 struct hlist_head filter_hash[1 << MLX4_EN_FILTER_HASH_SHIFT];
636#endif
837052d0 637 u64 tunnel_reg_id;
1b136de1 638 __be16 vxlan_port;
0fef9d03
AV
639
640 u32 pflags;
bd635c35 641 u8 rss_key[MLX4_EN_RSS_KEY_SIZE];
947cbb0a 642 u8 rss_hash_fn;
14c07b13
YP
643};
644
645enum mlx4_en_wol {
646 MLX4_EN_WOL_MAGIC = (1ULL << 61),
647 MLX4_EN_WOL_ENABLED = (1ULL << 62),
c27a02cd
YP
648};
649
16a10ffd 650struct mlx4_mac_entry {
c07cb4b0 651 struct hlist_node hlist;
16a10ffd
YB
652 unsigned char mac[ETH_ALEN + 2];
653 u64 reg_id;
c07cb4b0 654 struct rcu_head rcu;
16a10ffd
YB
655};
656
b1b6b4da
IS
657static inline struct mlx4_cqe *mlx4_en_get_cqe(void *buf, int idx, int cqe_sz)
658{
659 return buf + idx * cqe_sz;
660}
661
0d9fdaa9 662#define MLX4_EN_WOL_DO_MODIFY (1ULL << 63)
c27a02cd 663
3d8f7cc7 664void mlx4_en_init_ptys2ethtool_map(void);
79aeaccd
YB
665void mlx4_en_update_loopback_state(struct net_device *dev,
666 netdev_features_t features);
667
c27a02cd
YP
668void mlx4_en_destroy_netdev(struct net_device *dev);
669int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
670 struct mlx4_en_port_profile *prof);
671
18cc42a3 672int mlx4_en_start_port(struct net_device *dev);
3484aac1 673void mlx4_en_stop_port(struct net_device *dev, int detach);
18cc42a3 674
6fcd2735 675void mlx4_en_set_stats_bitmap(struct mlx4_dev *dev,
0b131561
MB
676 struct mlx4_en_stats_bitmap *stats_bitmap,
677 u8 rx_ppp, u8 rx_pause,
678 u8 tx_ppp, u8 tx_pause);
ffa88f37 679
ec25bc04
EE
680int mlx4_en_try_alloc_resources(struct mlx4_en_priv *priv,
681 struct mlx4_en_priv *tmp,
770f8225
MKL
682 struct mlx4_en_port_profile *prof,
683 bool carry_xdp_prog);
ec25bc04
EE
684void mlx4_en_safe_replace_resources(struct mlx4_en_priv *priv,
685 struct mlx4_en_priv *tmp);
18cc42a3 686
41d942d5 687int mlx4_en_create_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq **pcq,
163561a4 688 int entries, int ring, enum cq_type mode, int node);
41d942d5 689void mlx4_en_destroy_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq **pcq);
76532d0c
AG
690int mlx4_en_activate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
691 int cq_idx);
c27a02cd
YP
692void mlx4_en_deactivate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
693int mlx4_en_set_cq_moder(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
694int mlx4_en_arm_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
695
c27a02cd 696void mlx4_en_tx_irq(struct mlx4_cq *mcq);
f663dd9a 697u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb,
99932d4f 698 void *accel_priv, select_queue_fallback_t fallback);
61357325 699netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev);
15fca2c8
TT
700netdev_tx_t mlx4_en_xmit_frame(struct mlx4_en_rx_ring *rx_ring,
701 struct mlx4_en_rx_alloc *frame,
9ecc2d86
BB
702 struct net_device *dev, unsigned int length,
703 int tx_ind, int *doorbell_pending);
704void mlx4_en_xmit_doorbell(struct mlx4_en_tx_ring *ring);
705bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring,
706 struct mlx4_en_rx_alloc *frame);
c27a02cd 707
41d942d5
EE
708int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,
709 struct mlx4_en_tx_ring **pring,
ddae0349 710 u32 size, u16 stride,
d03a68f8 711 int node, int queue_index);
41d942d5
EE
712void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv,
713 struct mlx4_en_tx_ring **pring);
c27a02cd
YP
714int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
715 struct mlx4_en_tx_ring *ring,
0e98b523 716 int cq, int user_prio);
c27a02cd
YP
717void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
718 struct mlx4_en_tx_ring *ring);
02512482 719void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev);
07841f9d 720void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv);
c27a02cd 721int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
41d942d5 722 struct mlx4_en_rx_ring **pring,
163561a4 723 u32 size, u16 stride, int node);
c27a02cd 724void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
41d942d5 725 struct mlx4_en_rx_ring **pring,
68355f71 726 u32 size, u16 stride);
c27a02cd
YP
727int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv);
728void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
729 struct mlx4_en_rx_ring *ring);
730int mlx4_en_process_rx_cq(struct net_device *dev,
731 struct mlx4_en_cq *cq,
732 int budget);
733int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget);
0276a330 734int mlx4_en_poll_tx_cq(struct napi_struct *napi, int budget);
9ecc2d86
BB
735u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
736 struct mlx4_en_tx_ring *ring,
737 int index, u8 owner, u64 timestamp,
738 int napi_mode);
739u32 mlx4_en_recycle_tx_desc(struct mlx4_en_priv *priv,
740 struct mlx4_en_tx_ring *ring,
741 int index, u8 owner, u64 timestamp,
742 int napi_mode);
c27a02cd 743void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride,
0e98b523
AV
744 int is_tx, int rss, int qpn, int cqn, int user_prio,
745 struct mlx4_qp_context *context);
966508f7 746void mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event);
74194fb9
MG
747int mlx4_en_change_mcast_lb(struct mlx4_en_priv *priv, struct mlx4_qp *qp,
748 int loopback);
c27a02cd 749void mlx4_en_calc_rx_buf(struct net_device *dev);
c27a02cd
YP
750int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv);
751void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv);
cabdc8ee
HHZ
752int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv);
753void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv);
c27a02cd 754int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring);
c27a02cd
YP
755void mlx4_en_rx_irq(struct mlx4_cq *mcq);
756
757int mlx4_SET_MCAST_FLTR(struct mlx4_dev *dev, u8 port, u64 mac, u64 clear, u8 mode);
f1b553fb 758int mlx4_SET_VLAN_FLTR(struct mlx4_dev *dev, struct mlx4_en_priv *priv);
c27a02cd 759
40931b85 760void mlx4_en_fold_software_stats(struct net_device *dev);
c27a02cd 761int mlx4_en_DUMP_ETH_STATS(struct mlx4_en_dev *mdev, u8 port, u8 reset);
e7c1c2c4
YP
762int mlx4_en_QUERY_PORT(struct mlx4_en_dev *mdev, u8 port);
763
564c274c
AV
764#ifdef CONFIG_MLX4_EN_DCB
765extern const struct dcbnl_rtnl_ops mlx4_en_dcbnl_ops;
540b3a39 766extern const struct dcbnl_rtnl_ops mlx4_en_dcbnl_pfc_ops;
564c274c
AV
767#endif
768
d317966b
AV
769int mlx4_en_setup_tc(struct net_device *dev, u8 up);
770
1eb8c695 771#ifdef CONFIG_RFS_ACCEL
41d942d5 772void mlx4_en_cleanup_filters(struct mlx4_en_priv *priv);
1eb8c695
AV
773#endif
774
e7c1c2c4
YP
775#define MLX4_EN_NUM_SELF_TEST 5
776void mlx4_en_ex_selftest(struct net_device *dev, u32 *flags, u64 *buf);
b6c39bfc 777void mlx4_en_ptp_overflow_check(struct mlx4_en_dev *mdev);
c27a02cd 778
7787fa66
SM
779#define DEV_FEATURE_CHANGED(dev, new_features, feature) \
780 ((dev->features & feature) ^ (new_features & feature))
781
782int mlx4_en_reset_config(struct net_device *dev,
783 struct hwtstamp_config ts_config,
784 netdev_features_t new_features);
0b131561
MB
785void mlx4_en_update_pfc_stats_bitmap(struct mlx4_dev *dev,
786 struct mlx4_en_stats_bitmap *stats_bitmap,
787 u8 rx_ppp, u8 rx_pause,
788 u8 tx_ppp, u8 tx_pause);
5da03547
MS
789int mlx4_en_netdev_event(struct notifier_block *this,
790 unsigned long event, void *ptr);
791
c27a02cd 792/*
ec693d47
AV
793 * Functions for time stamping
794 */
795u64 mlx4_en_get_cqe_ts(struct mlx4_cqe *cqe);
796void mlx4_en_fill_hwtstamps(struct mlx4_en_dev *mdev,
797 struct skb_shared_hwtstamps *hwts,
798 u64 timestamp);
799void mlx4_en_init_timestamp(struct mlx4_en_dev *mdev);
ad7d4eae 800void mlx4_en_remove_timestamp(struct mlx4_en_dev *mdev);
ec693d47
AV
801
802/* Globals
c27a02cd
YP
803 */
804extern const struct ethtool_ops mlx4_en_ethtool_ops;
0a645e80
JP
805
806
807
808/*
809 * printk / logging functions
810 */
811
b9075fa9 812__printf(3, 4)
0c87b29c
JP
813void en_print(const char *level, const struct mlx4_en_priv *priv,
814 const char *format, ...);
0a645e80 815
1a91de28
JP
816#define en_dbg(mlevel, priv, format, ...) \
817do { \
818 if (NETIF_MSG_##mlevel & (priv)->msg_enable) \
819 en_print(KERN_DEBUG, priv, format, ##__VA_ARGS__); \
0a645e80 820} while (0)
1a91de28
JP
821#define en_warn(priv, format, ...) \
822 en_print(KERN_WARNING, priv, format, ##__VA_ARGS__)
823#define en_err(priv, format, ...) \
824 en_print(KERN_ERR, priv, format, ##__VA_ARGS__)
825#define en_info(priv, format, ...) \
826 en_print(KERN_INFO, priv, format, ##__VA_ARGS__)
827
828#define mlx4_err(mdev, format, ...) \
829 pr_err(DRV_NAME " %s: " format, \
830 dev_name(&(mdev)->pdev->dev), ##__VA_ARGS__)
831#define mlx4_info(mdev, format, ...) \
832 pr_info(DRV_NAME " %s: " format, \
833 dev_name(&(mdev)->pdev->dev), ##__VA_ARGS__)
834#define mlx4_warn(mdev, format, ...) \
835 pr_warn(DRV_NAME " %s: " format, \
836 dev_name(&(mdev)->pdev->dev), ##__VA_ARGS__)
0a645e80 837
c27a02cd 838#endif