net/mlx5e: Disable async events before unregister_netdev()
[deliverable/linux.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
45#define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x7
46#define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
47#define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
48
49#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE 0x7
50#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
51#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE 0xd
52
53#define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (16 * 1024)
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
59#define MLX5E_PARAMS_DEFAULT_RX_HASH_LOG_TBL_SZ 0x7
f62b8bb8
AV
60
61#define MLX5E_TX_CQ_POLL_BUDGET 128
62#define MLX5E_UPDATE_STATS_INTERVAL 200 /* msecs */
88a85f99 63#define MLX5E_SQ_BF_BUDGET 16
f62b8bb8
AV
64
65static const char vport_strings[][ETH_GSTRING_LEN] = {
66 /* vport statistics */
67 "rx_packets",
68 "rx_bytes",
69 "tx_packets",
70 "tx_bytes",
71 "rx_error_packets",
72 "rx_error_bytes",
73 "tx_error_packets",
74 "tx_error_bytes",
75 "rx_unicast_packets",
76 "rx_unicast_bytes",
77 "tx_unicast_packets",
78 "tx_unicast_bytes",
79 "rx_multicast_packets",
80 "rx_multicast_bytes",
81 "tx_multicast_packets",
82 "tx_multicast_bytes",
83 "rx_broadcast_packets",
84 "rx_broadcast_bytes",
85 "tx_broadcast_packets",
86 "tx_broadcast_bytes",
87
88 /* SW counters */
89 "tso_packets",
90 "tso_bytes",
91 "lro_packets",
92 "lro_bytes",
93 "rx_csum_good",
94 "rx_csum_none",
95 "tx_csum_offload",
96 "tx_queue_stopped",
97 "tx_queue_wake",
98 "tx_queue_dropped",
99 "rx_wqe_err",
100};
101
102struct mlx5e_vport_stats {
103 /* HW counters */
104 u64 rx_packets;
105 u64 rx_bytes;
106 u64 tx_packets;
107 u64 tx_bytes;
108 u64 rx_error_packets;
109 u64 rx_error_bytes;
110 u64 tx_error_packets;
111 u64 tx_error_bytes;
112 u64 rx_unicast_packets;
113 u64 rx_unicast_bytes;
114 u64 tx_unicast_packets;
115 u64 tx_unicast_bytes;
116 u64 rx_multicast_packets;
117 u64 rx_multicast_bytes;
118 u64 tx_multicast_packets;
119 u64 tx_multicast_bytes;
120 u64 rx_broadcast_packets;
121 u64 rx_broadcast_bytes;
122 u64 tx_broadcast_packets;
123 u64 tx_broadcast_bytes;
124
125 /* SW counters */
126 u64 tso_packets;
127 u64 tso_bytes;
128 u64 lro_packets;
129 u64 lro_bytes;
130 u64 rx_csum_good;
131 u64 rx_csum_none;
132 u64 tx_csum_offload;
133 u64 tx_queue_stopped;
134 u64 tx_queue_wake;
135 u64 tx_queue_dropped;
136 u64 rx_wqe_err;
137
138#define NUM_VPORT_COUNTERS 31
139};
140
141static const char rq_stats_strings[][ETH_GSTRING_LEN] = {
142 "packets",
143 "csum_none",
144 "lro_packets",
145 "lro_bytes",
146 "wqe_err"
147};
148
149struct mlx5e_rq_stats {
150 u64 packets;
151 u64 csum_none;
152 u64 lro_packets;
153 u64 lro_bytes;
154 u64 wqe_err;
155#define NUM_RQ_STATS 5
156};
157
158static const char sq_stats_strings[][ETH_GSTRING_LEN] = {
159 "packets",
160 "tso_packets",
161 "tso_bytes",
162 "csum_offload_none",
163 "stopped",
164 "wake",
165 "dropped",
166 "nop"
167};
168
169struct mlx5e_sq_stats {
170 u64 packets;
171 u64 tso_packets;
172 u64 tso_bytes;
173 u64 csum_offload_none;
174 u64 stopped;
175 u64 wake;
176 u64 dropped;
177 u64 nop;
178#define NUM_SQ_STATS 8
179};
180
181struct mlx5e_stats {
182 struct mlx5e_vport_stats vport;
183};
184
185struct mlx5e_params {
186 u8 log_sq_size;
187 u8 log_rq_size;
188 u16 num_channels;
189 u8 default_vlan_prio;
190 u8 num_tc;
191 u16 rx_cq_moderation_usec;
192 u16 rx_cq_moderation_pkts;
193 u16 tx_cq_moderation_usec;
194 u16 tx_cq_moderation_pkts;
195 u16 min_rx_wqes;
196 u16 rx_hash_log_tbl_sz;
197 bool lro_en;
198 u32 lro_wqe_sz;
2be6967c 199 u8 rss_hfunc;
58d52291 200 u16 tx_max_inline;
f62b8bb8
AV
201};
202
203enum {
204 MLX5E_RQ_STATE_POST_WQES_ENABLE,
205};
206
207enum cq_flags {
208 MLX5E_CQ_HAS_CQES = 1,
209};
210
211struct mlx5e_cq {
212 /* data path - accessed per cqe */
213 struct mlx5_cqwq wq;
f62b8bb8
AV
214 unsigned long flags;
215
216 /* data path - accessed per napi poll */
217 struct napi_struct *napi;
218 struct mlx5_core_cq mcq;
219 struct mlx5e_channel *channel;
50cfa25a 220 struct mlx5e_priv *priv;
f62b8bb8
AV
221
222 /* control */
223 struct mlx5_wq_ctrl wq_ctrl;
224} ____cacheline_aligned_in_smp;
225
226struct mlx5e_rq {
227 /* data path */
228 struct mlx5_wq_ll wq;
229 u32 wqe_sz;
230 struct sk_buff **skb;
231
232 struct device *pdev;
233 struct net_device *netdev;
234 struct mlx5e_rq_stats stats;
235 struct mlx5e_cq cq;
236
237 unsigned long state;
238 int ix;
239
240 /* control */
241 struct mlx5_wq_ctrl wq_ctrl;
242 u32 rqn;
243 struct mlx5e_channel *channel;
50cfa25a 244 struct mlx5e_priv *priv;
f62b8bb8
AV
245} ____cacheline_aligned_in_smp;
246
247struct mlx5e_tx_skb_cb {
248 u32 num_bytes;
249 u8 num_wqebbs;
250 u8 num_dma;
251};
252
253#define MLX5E_TX_SKB_CB(__skb) ((struct mlx5e_tx_skb_cb *)__skb->cb)
254
255struct mlx5e_sq_dma {
256 dma_addr_t addr;
257 u32 size;
258};
259
260enum {
261 MLX5E_SQ_STATE_WAKE_TXQ_ENABLE,
262};
263
264struct mlx5e_sq {
265 /* data path */
266
267 /* dirtied @completion */
268 u16 cc;
269 u32 dma_fifo_cc;
270
271 /* dirtied @xmit */
272 u16 pc ____cacheline_aligned_in_smp;
273 u32 dma_fifo_pc;
88a85f99
AS
274 u16 bf_offset;
275 u16 prev_cc;
276 u8 bf_budget;
f62b8bb8
AV
277 struct mlx5e_sq_stats stats;
278
279 struct mlx5e_cq cq;
280
281 /* pointers to per packet info: write@xmit, read@completion */
282 struct sk_buff **skb;
283 struct mlx5e_sq_dma *dma_fifo;
284
285 /* read only */
286 struct mlx5_wq_cyc wq;
287 u32 dma_fifo_mask;
288 void __iomem *uar_map;
88a85f99 289 void __iomem *uar_bf_map;
f62b8bb8
AV
290 struct netdev_queue *txq;
291 u32 sqn;
88a85f99 292 u16 bf_buf_size;
12be4b21
SM
293 u16 max_inline;
294 u16 edge;
f62b8bb8
AV
295 struct device *pdev;
296 __be32 mkey_be;
297 unsigned long state;
298
299 /* control path */
300 struct mlx5_wq_ctrl wq_ctrl;
301 struct mlx5_uar uar;
302 struct mlx5e_channel *channel;
303 int tc;
304} ____cacheline_aligned_in_smp;
305
306static inline bool mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
307{
308 return (((sq->wq.sz_m1 & (sq->cc - sq->pc)) >= n) ||
309 (sq->cc == sq->pc));
310}
311
312enum channel_flags {
313 MLX5E_CHANNEL_NAPI_SCHED = 1,
314};
315
316struct mlx5e_channel {
317 /* data path */
318 struct mlx5e_rq rq;
319 struct mlx5e_sq sq[MLX5E_MAX_NUM_TC];
320 struct napi_struct napi;
321 struct device *pdev;
322 struct net_device *netdev;
323 __be32 mkey_be;
324 u8 num_tc;
325 unsigned long flags;
03289b88 326 int tc_to_txq_map[MLX5E_MAX_NUM_TC];
f62b8bb8
AV
327
328 /* control */
329 struct mlx5e_priv *priv;
330 int ix;
331 int cpu;
332};
333
334enum mlx5e_traffic_types {
5a6f8aef
AS
335 MLX5E_TT_IPV4_TCP,
336 MLX5E_TT_IPV6_TCP,
337 MLX5E_TT_IPV4_UDP,
338 MLX5E_TT_IPV6_UDP,
a741749f
AS
339 MLX5E_TT_IPV4_IPSEC_AH,
340 MLX5E_TT_IPV6_IPSEC_AH,
341 MLX5E_TT_IPV4_IPSEC_ESP,
342 MLX5E_TT_IPV6_IPSEC_ESP,
5a6f8aef
AS
343 MLX5E_TT_IPV4,
344 MLX5E_TT_IPV6,
345 MLX5E_TT_ANY,
346 MLX5E_NUM_TT,
f62b8bb8
AV
347};
348
4cbeaff5
AS
349enum mlx5e_rqt_ix {
350 MLX5E_INDIRECTION_RQT,
351 MLX5E_SINGLE_RQ_RQT,
352 MLX5E_NUM_RQT,
f62b8bb8
AV
353};
354
355struct mlx5e_eth_addr_info {
356 u8 addr[ETH_ALEN + 2];
357 u32 tt_vec;
358 u32 ft_ix[MLX5E_NUM_TT]; /* flow table index per traffic type */
359};
360
361#define MLX5E_ETH_ADDR_HASH_SIZE (1 << BITS_PER_BYTE)
362
363struct mlx5e_eth_addr_db {
364 struct hlist_head netdev_uc[MLX5E_ETH_ADDR_HASH_SIZE];
365 struct hlist_head netdev_mc[MLX5E_ETH_ADDR_HASH_SIZE];
366 struct mlx5e_eth_addr_info broadcast;
367 struct mlx5e_eth_addr_info allmulti;
368 struct mlx5e_eth_addr_info promisc;
369 bool broadcast_enabled;
370 bool allmulti_enabled;
371 bool promisc_enabled;
372};
373
374enum {
375 MLX5E_STATE_ASYNC_EVENTS_ENABLE,
376 MLX5E_STATE_OPENED,
377};
378
379struct mlx5e_vlan_db {
380 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
381 u32 active_vlans_ft_ix[VLAN_N_VID];
382 u32 untagged_rule_ft_ix;
383 u32 any_vlan_rule_ft_ix;
384 bool filter_disabled;
385};
386
387struct mlx5e_flow_table {
388 void *vlan;
389 void *main;
390};
391
392struct mlx5e_priv {
393 /* priv data path fields - start */
f62b8bb8 394 int default_vlan_prio;
03289b88 395 struct mlx5e_sq **txq_to_sq_map;
f62b8bb8
AV
396 /* priv data path fields - end */
397
398 unsigned long state;
399 struct mutex state_lock; /* Protects Interface state */
400 struct mlx5_uar cq_uar;
401 u32 pdn;
3191e05f 402 u32 tdn;
f62b8bb8 403 struct mlx5_core_mr mr;
50cfa25a 404 struct mlx5e_rq drop_rq;
f62b8bb8
AV
405
406 struct mlx5e_channel **channel;
407 u32 tisn[MLX5E_MAX_NUM_TC];
4cbeaff5 408 u32 rqtn[MLX5E_NUM_RQT];
f62b8bb8
AV
409 u32 tirn[MLX5E_NUM_TT];
410
411 struct mlx5e_flow_table ft;
412 struct mlx5e_eth_addr_db eth_addr;
413 struct mlx5e_vlan_db vlan;
414
415 struct mlx5e_params params;
416 spinlock_t async_events_spinlock; /* sync hw events */
417 struct work_struct update_carrier_work;
418 struct work_struct set_rx_mode_work;
419 struct delayed_work update_stats_work;
420
421 struct mlx5_core_dev *mdev;
422 struct net_device *netdev;
423 struct mlx5e_stats stats;
424};
425
426#define MLX5E_NET_IP_ALIGN 2
427
428struct mlx5e_tx_wqe {
429 struct mlx5_wqe_ctrl_seg ctrl;
430 struct mlx5_wqe_eth_seg eth;
431};
432
433struct mlx5e_rx_wqe {
434 struct mlx5_wqe_srq_next_seg next;
435 struct mlx5_wqe_data_seg data;
436};
437
438enum mlx5e_link_mode {
439 MLX5E_1000BASE_CX_SGMII = 0,
440 MLX5E_1000BASE_KX = 1,
441 MLX5E_10GBASE_CX4 = 2,
442 MLX5E_10GBASE_KX4 = 3,
443 MLX5E_10GBASE_KR = 4,
444 MLX5E_20GBASE_KR2 = 5,
445 MLX5E_40GBASE_CR4 = 6,
446 MLX5E_40GBASE_KR4 = 7,
447 MLX5E_56GBASE_R4 = 8,
448 MLX5E_10GBASE_CR = 12,
449 MLX5E_10GBASE_SR = 13,
450 MLX5E_10GBASE_ER = 14,
451 MLX5E_40GBASE_SR4 = 15,
452 MLX5E_40GBASE_LR4 = 16,
453 MLX5E_100GBASE_CR4 = 20,
454 MLX5E_100GBASE_SR4 = 21,
455 MLX5E_100GBASE_KR4 = 22,
456 MLX5E_100GBASE_LR4 = 23,
457 MLX5E_100BASE_TX = 24,
458 MLX5E_100BASE_T = 25,
459 MLX5E_10GBASE_T = 26,
460 MLX5E_25GBASE_CR = 27,
461 MLX5E_25GBASE_KR = 28,
462 MLX5E_25GBASE_SR = 29,
463 MLX5E_50GBASE_CR2 = 30,
464 MLX5E_50GBASE_KR2 = 31,
465 MLX5E_LINK_MODES_NUMBER,
466};
467
468#define MLX5E_PROT_MASK(link_mode) (1 << link_mode)
469
12be4b21 470void mlx5e_send_nop(struct mlx5e_sq *sq, bool notify_hw);
f62b8bb8
AV
471u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
472 void *accel_priv, select_queue_fallback_t fallback);
473netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
f62b8bb8
AV
474
475void mlx5e_completion_event(struct mlx5_core_cq *mcq);
476void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
477int mlx5e_napi_poll(struct napi_struct *napi, int budget);
478bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq);
479bool mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
480bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
481struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
482
483void mlx5e_update_stats(struct mlx5e_priv *priv);
484
40ab6a6e
AS
485int mlx5e_create_flow_tables(struct mlx5e_priv *priv);
486void mlx5e_destroy_flow_tables(struct mlx5e_priv *priv);
f62b8bb8
AV
487void mlx5e_init_eth_addr(struct mlx5e_priv *priv);
488void mlx5e_set_rx_mode_core(struct mlx5e_priv *priv);
489void mlx5e_set_rx_mode_work(struct work_struct *work);
490
491int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
492 u16 vid);
493int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
494 u16 vid);
495void mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
496void mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
497int mlx5e_add_all_vlan_rules(struct mlx5e_priv *priv);
498void mlx5e_del_all_vlan_rules(struct mlx5e_priv *priv);
499
500int mlx5e_open_locked(struct net_device *netdev);
501int mlx5e_close_locked(struct net_device *netdev);
f62b8bb8
AV
502
503static inline void mlx5e_tx_notify_hw(struct mlx5e_sq *sq,
88a85f99 504 struct mlx5e_tx_wqe *wqe, int bf_sz)
f62b8bb8 505{
88a85f99
AS
506 u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
507
f62b8bb8
AV
508 /* ensure wqe is visible to device before updating doorbell record */
509 dma_wmb();
510
511 *sq->wq.db = cpu_to_be32(sq->pc);
512
513 /* ensure doorbell record is visible to device before ringing the
514 * doorbell
515 */
516 wmb();
517
88a85f99
AS
518 if (bf_sz) {
519 __iowrite64_copy(sq->uar_bf_map + ofst, &wqe->ctrl, bf_sz);
520
521 /* flush the write-combining mapped buffer */
522 wmb();
523
524 } else {
525 mlx5_write64((__be32 *)&wqe->ctrl, sq->uar_map + ofst, NULL);
526 }
f62b8bb8
AV
527
528 sq->bf_offset ^= sq->bf_buf_size;
529}
530
531static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
532{
533 struct mlx5_core_cq *mcq;
534
535 mcq = &cq->mcq;
536 mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, NULL, cq->wq.cc);
537}
538
539extern const struct ethtool_ops mlx5e_ethtool_ops;
58d52291 540u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev);
This page took 0.064228 seconds and 5 git commands to generate.