net/mlx5e: Protect en header file from redefinitions
[linux-2.6-block.git] / drivers / net / ethernet / mellanox / mlx5 / core / en.h
CommitLineData
f62b8bb8 1/*
1afff42c 2 * Copyright (c) 2015-2016, Mellanox Technologies. All rights reserved.
f62b8bb8
AV
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 */
1afff42c
MF
32#ifndef __MLX5_EN_H__
33#define __MLX5_EN_H__
f62b8bb8
AV
34
35#include <linux/if_vlan.h>
36#include <linux/etherdevice.h>
ef9814de
EBE
37#include <linux/timecounter.h>
38#include <linux/net_tstamp.h>
3d8c38af 39#include <linux/ptp_clock_kernel.h>
f62b8bb8
AV
40#include <linux/mlx5/driver.h>
41#include <linux/mlx5/qp.h>
42#include <linux/mlx5/cq.h>
ada68c31 43#include <linux/mlx5/port.h>
d18a9470 44#include <linux/mlx5/vport.h>
8d7f9ecb 45#include <linux/mlx5/transobj.h>
f62b8bb8 46#include "wq.h"
f62b8bb8
AV
47#include "mlx5_core.h"
48
49#define MLX5E_MAX_NUM_TC 8
50
e842b100 51#define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6
f62b8bb8
AV
52#define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
53#define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
54
e842b100 55#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE 0x1
f62b8bb8
AV
56#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
57#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE 0xd
58
d9a40271 59#define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
f62b8bb8
AV
60#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
61#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
62#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
63#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
64#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
f62b8bb8 65
936896e9
AS
66#define MLX5E_LOG_INDIR_RQT_SIZE 0x7
67#define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
68#define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1)
f62b8bb8
AV
69#define MLX5E_TX_CQ_POLL_BUDGET 128
70#define MLX5E_UPDATE_STATS_INTERVAL 200 /* msecs */
88a85f99 71#define MLX5E_SQ_BF_BUDGET 16
f62b8bb8 72
86d722ad
MG
73#define MLX5E_NUM_MAIN_GROUPS 9
74
08fb1dac
SM
75#ifdef CONFIG_MLX5_CORE_EN_DCB
76#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
77#define MLX5E_MIN_BW_ALLOC 1 /* Min percentage of BW allocation */
78#endif
79
f62b8bb8
AV
80static const char vport_strings[][ETH_GSTRING_LEN] = {
81 /* vport statistics */
82 "rx_packets",
83 "rx_bytes",
84 "tx_packets",
85 "tx_bytes",
86 "rx_error_packets",
87 "rx_error_bytes",
88 "tx_error_packets",
89 "tx_error_bytes",
90 "rx_unicast_packets",
91 "rx_unicast_bytes",
92 "tx_unicast_packets",
93 "tx_unicast_bytes",
94 "rx_multicast_packets",
95 "rx_multicast_bytes",
96 "tx_multicast_packets",
97 "tx_multicast_bytes",
98 "rx_broadcast_packets",
99 "rx_broadcast_bytes",
100 "tx_broadcast_packets",
101 "tx_broadcast_bytes",
102
103 /* SW counters */
104 "tso_packets",
105 "tso_bytes",
106 "lro_packets",
107 "lro_bytes",
108 "rx_csum_good",
109 "rx_csum_none",
bbceefce 110 "rx_csum_sw",
f62b8bb8
AV
111 "tx_csum_offload",
112 "tx_queue_stopped",
113 "tx_queue_wake",
114 "tx_queue_dropped",
115 "rx_wqe_err",
116};
117
118struct mlx5e_vport_stats {
119 /* HW counters */
120 u64 rx_packets;
121 u64 rx_bytes;
122 u64 tx_packets;
123 u64 tx_bytes;
124 u64 rx_error_packets;
125 u64 rx_error_bytes;
126 u64 tx_error_packets;
127 u64 tx_error_bytes;
128 u64 rx_unicast_packets;
129 u64 rx_unicast_bytes;
130 u64 tx_unicast_packets;
131 u64 tx_unicast_bytes;
132 u64 rx_multicast_packets;
133 u64 rx_multicast_bytes;
134 u64 tx_multicast_packets;
135 u64 tx_multicast_bytes;
136 u64 rx_broadcast_packets;
137 u64 rx_broadcast_bytes;
138 u64 tx_broadcast_packets;
139 u64 tx_broadcast_bytes;
140
141 /* SW counters */
142 u64 tso_packets;
143 u64 tso_bytes;
144 u64 lro_packets;
145 u64 lro_bytes;
146 u64 rx_csum_good;
147 u64 rx_csum_none;
bbceefce 148 u64 rx_csum_sw;
f62b8bb8
AV
149 u64 tx_csum_offload;
150 u64 tx_queue_stopped;
151 u64 tx_queue_wake;
152 u64 tx_queue_dropped;
153 u64 rx_wqe_err;
154
bbceefce 155#define NUM_VPORT_COUNTERS 32
f62b8bb8
AV
156};
157
efea389d
GP
158static const char pport_strings[][ETH_GSTRING_LEN] = {
159 /* IEEE802.3 counters */
160 "frames_tx",
161 "frames_rx",
162 "check_seq_err",
163 "alignment_err",
164 "octets_tx",
165 "octets_received",
166 "multicast_xmitted",
167 "broadcast_xmitted",
168 "multicast_rx",
169 "broadcast_rx",
170 "in_range_len_errors",
171 "out_of_range_len",
172 "too_long_errors",
173 "symbol_err",
174 "mac_control_tx",
175 "mac_control_rx",
176 "unsupported_op_rx",
177 "pause_ctrl_rx",
178 "pause_ctrl_tx",
179
180 /* RFC2863 counters */
181 "in_octets",
182 "in_ucast_pkts",
183 "in_discards",
184 "in_errors",
185 "in_unknown_protos",
186 "out_octets",
187 "out_ucast_pkts",
188 "out_discards",
189 "out_errors",
190 "in_multicast_pkts",
191 "in_broadcast_pkts",
192 "out_multicast_pkts",
193 "out_broadcast_pkts",
194
195 /* RFC2819 counters */
196 "drop_events",
197 "octets",
198 "pkts",
199 "broadcast_pkts",
200 "multicast_pkts",
201 "crc_align_errors",
202 "undersize_pkts",
203 "oversize_pkts",
204 "fragments",
205 "jabbers",
206 "collisions",
207 "p64octets",
208 "p65to127octets",
209 "p128to255octets",
210 "p256to511octets",
211 "p512to1023octets",
212 "p1024to1518octets",
213 "p1519to2047octets",
214 "p2048to4095octets",
215 "p4096to8191octets",
216 "p8192to10239octets",
217};
218
219#define NUM_IEEE_802_3_COUNTERS 19
220#define NUM_RFC_2863_COUNTERS 13
221#define NUM_RFC_2819_COUNTERS 21
222#define NUM_PPORT_COUNTERS (NUM_IEEE_802_3_COUNTERS + \
223 NUM_RFC_2863_COUNTERS + \
224 NUM_RFC_2819_COUNTERS)
225
226struct mlx5e_pport_stats {
227 __be64 IEEE_802_3_counters[NUM_IEEE_802_3_COUNTERS];
228 __be64 RFC_2863_counters[NUM_RFC_2863_COUNTERS];
229 __be64 RFC_2819_counters[NUM_RFC_2819_COUNTERS];
230};
231
f62b8bb8
AV
232static const char rq_stats_strings[][ETH_GSTRING_LEN] = {
233 "packets",
234 "csum_none",
bbceefce 235 "csum_sw",
f62b8bb8
AV
236 "lro_packets",
237 "lro_bytes",
238 "wqe_err"
239};
240
241struct mlx5e_rq_stats {
242 u64 packets;
243 u64 csum_none;
bbceefce 244 u64 csum_sw;
f62b8bb8
AV
245 u64 lro_packets;
246 u64 lro_bytes;
247 u64 wqe_err;
bbceefce 248#define NUM_RQ_STATS 6
f62b8bb8
AV
249};
250
251static const char sq_stats_strings[][ETH_GSTRING_LEN] = {
252 "packets",
253 "tso_packets",
254 "tso_bytes",
255 "csum_offload_none",
256 "stopped",
257 "wake",
258 "dropped",
259 "nop"
260};
261
262struct mlx5e_sq_stats {
263 u64 packets;
264 u64 tso_packets;
265 u64 tso_bytes;
266 u64 csum_offload_none;
267 u64 stopped;
268 u64 wake;
269 u64 dropped;
270 u64 nop;
271#define NUM_SQ_STATS 8
272};
273
274struct mlx5e_stats {
275 struct mlx5e_vport_stats vport;
efea389d 276 struct mlx5e_pport_stats pport;
f62b8bb8
AV
277};
278
279struct mlx5e_params {
280 u8 log_sq_size;
281 u8 log_rq_size;
282 u16 num_channels;
f62b8bb8
AV
283 u8 num_tc;
284 u16 rx_cq_moderation_usec;
285 u16 rx_cq_moderation_pkts;
286 u16 tx_cq_moderation_usec;
287 u16 tx_cq_moderation_pkts;
288 u16 min_rx_wqes;
f62b8bb8
AV
289 bool lro_en;
290 u32 lro_wqe_sz;
58d52291 291 u16 tx_max_inline;
2d75b2bc
AS
292 u8 rss_hfunc;
293 u8 toeplitz_hash_key[40];
294 u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
08fb1dac
SM
295#ifdef CONFIG_MLX5_CORE_EN_DCB
296 struct ieee_ets ets;
297#endif
f62b8bb8
AV
298};
299
ef9814de
EBE
300struct mlx5e_tstamp {
301 rwlock_t lock;
302 struct cyclecounter cycles;
303 struct timecounter clock;
304 struct hwtstamp_config hwtstamp_config;
305 u32 nominal_c_mult;
306 unsigned long overflow_period;
307 struct delayed_work overflow_work;
308 struct mlx5_core_dev *mdev;
3d8c38af
EBE
309 struct ptp_clock *ptp;
310 struct ptp_clock_info ptp_info;
ef9814de
EBE
311};
312
f62b8bb8
AV
313enum {
314 MLX5E_RQ_STATE_POST_WQES_ENABLE,
315};
316
317enum cq_flags {
318 MLX5E_CQ_HAS_CQES = 1,
319};
320
321struct mlx5e_cq {
322 /* data path - accessed per cqe */
323 struct mlx5_cqwq wq;
f62b8bb8
AV
324 unsigned long flags;
325
326 /* data path - accessed per napi poll */
327 struct napi_struct *napi;
328 struct mlx5_core_cq mcq;
329 struct mlx5e_channel *channel;
50cfa25a 330 struct mlx5e_priv *priv;
f62b8bb8
AV
331
332 /* control */
333 struct mlx5_wq_ctrl wq_ctrl;
334} ____cacheline_aligned_in_smp;
335
336struct mlx5e_rq {
337 /* data path */
338 struct mlx5_wq_ll wq;
339 u32 wqe_sz;
340 struct sk_buff **skb;
341
342 struct device *pdev;
343 struct net_device *netdev;
ef9814de 344 struct mlx5e_tstamp *tstamp;
f62b8bb8
AV
345 struct mlx5e_rq_stats stats;
346 struct mlx5e_cq cq;
347
348 unsigned long state;
349 int ix;
350
351 /* control */
352 struct mlx5_wq_ctrl wq_ctrl;
353 u32 rqn;
354 struct mlx5e_channel *channel;
50cfa25a 355 struct mlx5e_priv *priv;
f62b8bb8
AV
356} ____cacheline_aligned_in_smp;
357
34802a42 358struct mlx5e_tx_wqe_info {
f62b8bb8
AV
359 u32 num_bytes;
360 u8 num_wqebbs;
361 u8 num_dma;
362};
363
d4e28cbd
AS
364enum mlx5e_dma_map_type {
365 MLX5E_DMA_MAP_SINGLE,
366 MLX5E_DMA_MAP_PAGE
367};
368
f62b8bb8 369struct mlx5e_sq_dma {
d4e28cbd
AS
370 dma_addr_t addr;
371 u32 size;
372 enum mlx5e_dma_map_type type;
f62b8bb8
AV
373};
374
375enum {
376 MLX5E_SQ_STATE_WAKE_TXQ_ENABLE,
377};
378
379struct mlx5e_sq {
380 /* data path */
381
382 /* dirtied @completion */
383 u16 cc;
384 u32 dma_fifo_cc;
385
386 /* dirtied @xmit */
387 u16 pc ____cacheline_aligned_in_smp;
388 u32 dma_fifo_pc;
88a85f99
AS
389 u16 bf_offset;
390 u16 prev_cc;
391 u8 bf_budget;
f62b8bb8
AV
392 struct mlx5e_sq_stats stats;
393
394 struct mlx5e_cq cq;
395
396 /* pointers to per packet info: write@xmit, read@completion */
397 struct sk_buff **skb;
398 struct mlx5e_sq_dma *dma_fifo;
34802a42 399 struct mlx5e_tx_wqe_info *wqe_info;
f62b8bb8
AV
400
401 /* read only */
402 struct mlx5_wq_cyc wq;
403 u32 dma_fifo_mask;
404 void __iomem *uar_map;
88a85f99 405 void __iomem *uar_bf_map;
f62b8bb8
AV
406 struct netdev_queue *txq;
407 u32 sqn;
88a85f99 408 u16 bf_buf_size;
12be4b21
SM
409 u16 max_inline;
410 u16 edge;
f62b8bb8 411 struct device *pdev;
ef9814de 412 struct mlx5e_tstamp *tstamp;
f62b8bb8
AV
413 __be32 mkey_be;
414 unsigned long state;
415
416 /* control path */
417 struct mlx5_wq_ctrl wq_ctrl;
418 struct mlx5_uar uar;
419 struct mlx5e_channel *channel;
420 int tc;
421} ____cacheline_aligned_in_smp;
422
423static inline bool mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
424{
425 return (((sq->wq.sz_m1 & (sq->cc - sq->pc)) >= n) ||
426 (sq->cc == sq->pc));
427}
428
429enum channel_flags {
430 MLX5E_CHANNEL_NAPI_SCHED = 1,
431};
432
433struct mlx5e_channel {
434 /* data path */
435 struct mlx5e_rq rq;
436 struct mlx5e_sq sq[MLX5E_MAX_NUM_TC];
437 struct napi_struct napi;
438 struct device *pdev;
439 struct net_device *netdev;
440 __be32 mkey_be;
441 u8 num_tc;
442 unsigned long flags;
443
444 /* control */
445 struct mlx5e_priv *priv;
446 int ix;
447 int cpu;
448};
449
450enum mlx5e_traffic_types {
5a6f8aef
AS
451 MLX5E_TT_IPV4_TCP,
452 MLX5E_TT_IPV6_TCP,
453 MLX5E_TT_IPV4_UDP,
454 MLX5E_TT_IPV6_UDP,
a741749f
AS
455 MLX5E_TT_IPV4_IPSEC_AH,
456 MLX5E_TT_IPV6_IPSEC_AH,
457 MLX5E_TT_IPV4_IPSEC_ESP,
458 MLX5E_TT_IPV6_IPSEC_ESP,
5a6f8aef
AS
459 MLX5E_TT_IPV4,
460 MLX5E_TT_IPV6,
461 MLX5E_TT_ANY,
462 MLX5E_NUM_TT,
f62b8bb8
AV
463};
464
4cbeaff5
AS
465enum mlx5e_rqt_ix {
466 MLX5E_INDIRECTION_RQT,
467 MLX5E_SINGLE_RQ_RQT,
468 MLX5E_NUM_RQT,
f62b8bb8
AV
469};
470
471struct mlx5e_eth_addr_info {
472 u8 addr[ETH_ALEN + 2];
473 u32 tt_vec;
86d722ad 474 struct mlx5_flow_rule *ft_rule[MLX5E_NUM_TT];
f62b8bb8
AV
475};
476
477#define MLX5E_ETH_ADDR_HASH_SIZE (1 << BITS_PER_BYTE)
478
479struct mlx5e_eth_addr_db {
480 struct hlist_head netdev_uc[MLX5E_ETH_ADDR_HASH_SIZE];
481 struct hlist_head netdev_mc[MLX5E_ETH_ADDR_HASH_SIZE];
482 struct mlx5e_eth_addr_info broadcast;
483 struct mlx5e_eth_addr_info allmulti;
484 struct mlx5e_eth_addr_info promisc;
485 bool broadcast_enabled;
486 bool allmulti_enabled;
487 bool promisc_enabled;
488};
489
490enum {
491 MLX5E_STATE_ASYNC_EVENTS_ENABLE,
492 MLX5E_STATE_OPENED,
9b37b07f 493 MLX5E_STATE_DESTROYING,
f62b8bb8
AV
494};
495
496struct mlx5e_vlan_db {
aad9e6e4 497 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
86d722ad
MG
498 struct mlx5_flow_rule *active_vlans_rule[VLAN_N_VID];
499 struct mlx5_flow_rule *untagged_rule;
500 struct mlx5_flow_rule *any_vlan_rule;
f62b8bb8
AV
501 bool filter_disabled;
502};
503
504struct mlx5e_flow_table {
86d722ad
MG
505 int num_groups;
506 struct mlx5_flow_table *t;
507 struct mlx5_flow_group **g;
508};
509
510struct mlx5e_flow_tables {
511 struct mlx5_flow_namespace *ns;
512 struct mlx5e_flow_table vlan;
513 struct mlx5e_flow_table main;
f62b8bb8
AV
514};
515
516struct mlx5e_priv {
517 /* priv data path fields - start */
03289b88 518 struct mlx5e_sq **txq_to_sq_map;
5283af89 519 int channeltc_to_txq_map[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
f62b8bb8
AV
520 /* priv data path fields - end */
521
522 unsigned long state;
523 struct mutex state_lock; /* Protects Interface state */
524 struct mlx5_uar cq_uar;
525 u32 pdn;
3191e05f 526 u32 tdn;
f62b8bb8 527 struct mlx5_core_mr mr;
50cfa25a 528 struct mlx5e_rq drop_rq;
f62b8bb8
AV
529
530 struct mlx5e_channel **channel;
531 u32 tisn[MLX5E_MAX_NUM_TC];
4cbeaff5 532 u32 rqtn[MLX5E_NUM_RQT];
f62b8bb8
AV
533 u32 tirn[MLX5E_NUM_TT];
534
86d722ad 535 struct mlx5e_flow_tables fts;
f62b8bb8
AV
536 struct mlx5e_eth_addr_db eth_addr;
537 struct mlx5e_vlan_db vlan;
538
539 struct mlx5e_params params;
540 spinlock_t async_events_spinlock; /* sync hw events */
541 struct work_struct update_carrier_work;
542 struct work_struct set_rx_mode_work;
543 struct delayed_work update_stats_work;
544
545 struct mlx5_core_dev *mdev;
546 struct net_device *netdev;
547 struct mlx5e_stats stats;
ef9814de 548 struct mlx5e_tstamp tstamp;
f62b8bb8
AV
549};
550
551#define MLX5E_NET_IP_ALIGN 2
552
553struct mlx5e_tx_wqe {
554 struct mlx5_wqe_ctrl_seg ctrl;
555 struct mlx5_wqe_eth_seg eth;
556};
557
558struct mlx5e_rx_wqe {
559 struct mlx5_wqe_srq_next_seg next;
560 struct mlx5_wqe_data_seg data;
561};
562
563enum mlx5e_link_mode {
564 MLX5E_1000BASE_CX_SGMII = 0,
565 MLX5E_1000BASE_KX = 1,
566 MLX5E_10GBASE_CX4 = 2,
567 MLX5E_10GBASE_KX4 = 3,
568 MLX5E_10GBASE_KR = 4,
569 MLX5E_20GBASE_KR2 = 5,
570 MLX5E_40GBASE_CR4 = 6,
571 MLX5E_40GBASE_KR4 = 7,
572 MLX5E_56GBASE_R4 = 8,
573 MLX5E_10GBASE_CR = 12,
574 MLX5E_10GBASE_SR = 13,
575 MLX5E_10GBASE_ER = 14,
576 MLX5E_40GBASE_SR4 = 15,
577 MLX5E_40GBASE_LR4 = 16,
578 MLX5E_100GBASE_CR4 = 20,
579 MLX5E_100GBASE_SR4 = 21,
580 MLX5E_100GBASE_KR4 = 22,
581 MLX5E_100GBASE_LR4 = 23,
582 MLX5E_100BASE_TX = 24,
583 MLX5E_100BASE_T = 25,
584 MLX5E_10GBASE_T = 26,
585 MLX5E_25GBASE_CR = 27,
586 MLX5E_25GBASE_KR = 28,
587 MLX5E_25GBASE_SR = 29,
588 MLX5E_50GBASE_CR2 = 30,
589 MLX5E_50GBASE_KR2 = 31,
590 MLX5E_LINK_MODES_NUMBER,
591};
592
593#define MLX5E_PROT_MASK(link_mode) (1 << link_mode)
594
12be4b21 595void mlx5e_send_nop(struct mlx5e_sq *sq, bool notify_hw);
f62b8bb8
AV
596u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
597 void *accel_priv, select_queue_fallback_t fallback);
598netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
f62b8bb8
AV
599
600void mlx5e_completion_event(struct mlx5_core_cq *mcq);
601void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
602int mlx5e_napi_poll(struct napi_struct *napi, int budget);
603bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq);
44fb6fbb 604int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
f62b8bb8
AV
605bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
606struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
607
608void mlx5e_update_stats(struct mlx5e_priv *priv);
609
40ab6a6e
AS
610int mlx5e_create_flow_tables(struct mlx5e_priv *priv);
611void mlx5e_destroy_flow_tables(struct mlx5e_priv *priv);
f62b8bb8 612void mlx5e_init_eth_addr(struct mlx5e_priv *priv);
f62b8bb8
AV
613void mlx5e_set_rx_mode_work(struct work_struct *work);
614
ef9814de
EBE
615void mlx5e_fill_hwstamp(struct mlx5e_tstamp *clock, u64 timestamp,
616 struct skb_shared_hwtstamps *hwts);
617void mlx5e_timestamp_init(struct mlx5e_priv *priv);
618void mlx5e_timestamp_cleanup(struct mlx5e_priv *priv);
619int mlx5e_hwstamp_set(struct net_device *dev, struct ifreq *ifr);
620int mlx5e_hwstamp_get(struct net_device *dev, struct ifreq *ifr);
621
f62b8bb8
AV
622int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
623 u16 vid);
624int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
625 u16 vid);
626void mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
627void mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
f62b8bb8 628
2d75b2bc
AS
629int mlx5e_redirect_rqt(struct mlx5e_priv *priv, enum mlx5e_rqt_ix rqt_ix);
630
f62b8bb8
AV
631int mlx5e_open_locked(struct net_device *netdev);
632int mlx5e_close_locked(struct net_device *netdev);
f62b8bb8
AV
633
634static inline void mlx5e_tx_notify_hw(struct mlx5e_sq *sq,
88a85f99 635 struct mlx5e_tx_wqe *wqe, int bf_sz)
f62b8bb8 636{
88a85f99
AS
637 u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
638
f62b8bb8
AV
639 /* ensure wqe is visible to device before updating doorbell record */
640 dma_wmb();
641
642 *sq->wq.db = cpu_to_be32(sq->pc);
643
644 /* ensure doorbell record is visible to device before ringing the
645 * doorbell
646 */
647 wmb();
648
88a85f99
AS
649 if (bf_sz) {
650 __iowrite64_copy(sq->uar_bf_map + ofst, &wqe->ctrl, bf_sz);
651
652 /* flush the write-combining mapped buffer */
653 wmb();
654
655 } else {
656 mlx5_write64((__be32 *)&wqe->ctrl, sq->uar_map + ofst, NULL);
657 }
f62b8bb8
AV
658
659 sq->bf_offset ^= sq->bf_buf_size;
660}
661
662static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
663{
664 struct mlx5_core_cq *mcq;
665
666 mcq = &cq->mcq;
667 mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, NULL, cq->wq.cc);
668}
669
3435ab59
AS
670static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
671{
672 return min_t(int, mdev->priv.eq_table.num_comp_vectors,
673 MLX5E_MAX_NUM_CHANNELS);
674}
675
f62b8bb8 676extern const struct ethtool_ops mlx5e_ethtool_ops;
08fb1dac
SM
677#ifdef CONFIG_MLX5_CORE_EN_DCB
678extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
679int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
680#endif
681
58d52291 682u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev);
1afff42c
MF
683
684#endif /* __MLX5_EN_H__ */