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