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/mlx5/flow_table.h>
34 #include "en.h"
35
36 struct mlx5e_rq_param {
37 u32 rqc[MLX5_ST_SZ_DW(rqc)];
38 struct mlx5_wq_param wq;
39 };
40
41 struct mlx5e_sq_param {
42 u32 sqc[MLX5_ST_SZ_DW(sqc)];
43 struct mlx5_wq_param wq;
44 u16 max_inline;
45 };
46
47 struct mlx5e_cq_param {
48 u32 cqc[MLX5_ST_SZ_DW(cqc)];
49 struct mlx5_wq_param wq;
50 u16 eq_ix;
51 };
52
53 struct mlx5e_channel_param {
54 struct mlx5e_rq_param rq;
55 struct mlx5e_sq_param sq;
56 struct mlx5e_cq_param rx_cq;
57 struct mlx5e_cq_param tx_cq;
58 };
59
mlx5e_update_carrier(struct mlx5e_priv * priv)60 static void mlx5e_update_carrier(struct mlx5e_priv *priv)
61 {
62 struct mlx5_core_dev *mdev = priv->mdev;
63 u8 port_state;
64
65 port_state = mlx5_query_vport_state(mdev,
66 MLX5_QUERY_VPORT_STATE_IN_OP_MOD_VNIC_VPORT);
67
68 if (port_state == VPORT_STATE_UP)
69 netif_carrier_on(priv->netdev);
70 else
71 netif_carrier_off(priv->netdev);
72 }
73
mlx5e_update_carrier_work(struct work_struct * work)74 static void mlx5e_update_carrier_work(struct work_struct *work)
75 {
76 struct mlx5e_priv *priv = container_of(work, struct mlx5e_priv,
77 update_carrier_work);
78
79 mutex_lock(&priv->state_lock);
80 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
81 mlx5e_update_carrier(priv);
82 mutex_unlock(&priv->state_lock);
83 }
84
mlx5e_update_pport_counters(struct mlx5e_priv * priv)85 static void mlx5e_update_pport_counters(struct mlx5e_priv *priv)
86 {
87 struct mlx5_core_dev *mdev = priv->mdev;
88 struct mlx5e_pport_stats *s = &priv->stats.pport;
89 u32 *in;
90 u32 *out;
91 int sz = MLX5_ST_SZ_BYTES(ppcnt_reg);
92
93 in = mlx5_vzalloc(sz);
94 out = mlx5_vzalloc(sz);
95 if (!in || !out)
96 goto free_out;
97
98 MLX5_SET(ppcnt_reg, in, local_port, 1);
99
100 MLX5_SET(ppcnt_reg, in, grp, MLX5_IEEE_802_3_COUNTERS_GROUP);
101 mlx5_core_access_reg(mdev, in, sz, out,
102 sz, MLX5_REG_PPCNT, 0, 0);
103 memcpy(s->IEEE_802_3_counters,
104 MLX5_ADDR_OF(ppcnt_reg, out, counter_set),
105 sizeof(s->IEEE_802_3_counters));
106
107 MLX5_SET(ppcnt_reg, in, grp, MLX5_RFC_2863_COUNTERS_GROUP);
108 mlx5_core_access_reg(mdev, in, sz, out,
109 sz, MLX5_REG_PPCNT, 0, 0);
110 memcpy(s->RFC_2863_counters,
111 MLX5_ADDR_OF(ppcnt_reg, out, counter_set),
112 sizeof(s->RFC_2863_counters));
113
114 MLX5_SET(ppcnt_reg, in, grp, MLX5_RFC_2819_COUNTERS_GROUP);
115 mlx5_core_access_reg(mdev, in, sz, out,
116 sz, MLX5_REG_PPCNT, 0, 0);
117 memcpy(s->RFC_2819_counters,
118 MLX5_ADDR_OF(ppcnt_reg, out, counter_set),
119 sizeof(s->RFC_2819_counters));
120
121 free_out:
122 kvfree(in);
123 kvfree(out);
124 }
125
mlx5e_update_stats(struct mlx5e_priv * priv)126 void mlx5e_update_stats(struct mlx5e_priv *priv)
127 {
128 struct mlx5_core_dev *mdev = priv->mdev;
129 struct mlx5e_vport_stats *s = &priv->stats.vport;
130 struct mlx5e_rq_stats *rq_stats;
131 struct mlx5e_sq_stats *sq_stats;
132 u32 in[MLX5_ST_SZ_DW(query_vport_counter_in)];
133 u32 *out;
134 int outlen = MLX5_ST_SZ_BYTES(query_vport_counter_out);
135 u64 tx_offload_none;
136 int i, j;
137
138 out = mlx5_vzalloc(outlen);
139 if (!out)
140 return;
141
142 /* Collect firts the SW counters and then HW for consistency */
143 s->tso_packets = 0;
144 s->tso_bytes = 0;
145 s->tx_queue_stopped = 0;
146 s->tx_queue_wake = 0;
147 s->tx_queue_dropped = 0;
148 tx_offload_none = 0;
149 s->lro_packets = 0;
150 s->lro_bytes = 0;
151 s->rx_csum_none = 0;
152 s->rx_csum_sw = 0;
153 s->rx_wqe_err = 0;
154 for (i = 0; i < priv->params.num_channels; i++) {
155 rq_stats = &priv->channel[i]->rq.stats;
156
157 s->lro_packets += rq_stats->lro_packets;
158 s->lro_bytes += rq_stats->lro_bytes;
159 s->rx_csum_none += rq_stats->csum_none;
160 s->rx_csum_sw += rq_stats->csum_sw;
161 s->rx_wqe_err += rq_stats->wqe_err;
162
163 for (j = 0; j < priv->params.num_tc; j++) {
164 sq_stats = &priv->channel[i]->sq[j].stats;
165
166 s->tso_packets += sq_stats->tso_packets;
167 s->tso_bytes += sq_stats->tso_bytes;
168 s->tx_queue_stopped += sq_stats->stopped;
169 s->tx_queue_wake += sq_stats->wake;
170 s->tx_queue_dropped += sq_stats->dropped;
171 tx_offload_none += sq_stats->csum_offload_none;
172 }
173 }
174
175 /* HW counters */
176 memset(in, 0, sizeof(in));
177
178 MLX5_SET(query_vport_counter_in, in, opcode,
179 MLX5_CMD_OP_QUERY_VPORT_COUNTER);
180 MLX5_SET(query_vport_counter_in, in, op_mod, 0);
181 MLX5_SET(query_vport_counter_in, in, other_vport, 0);
182
183 memset(out, 0, outlen);
184
185 if (mlx5_cmd_exec(mdev, in, sizeof(in), out, outlen))
186 goto free_out;
187
188 #define MLX5_GET_CTR(p, x) \
189 MLX5_GET64(query_vport_counter_out, p, x)
190
191 s->rx_error_packets =
192 MLX5_GET_CTR(out, received_errors.packets);
193 s->rx_error_bytes =
194 MLX5_GET_CTR(out, received_errors.octets);
195 s->tx_error_packets =
196 MLX5_GET_CTR(out, transmit_errors.packets);
197 s->tx_error_bytes =
198 MLX5_GET_CTR(out, transmit_errors.octets);
199
200 s->rx_unicast_packets =
201 MLX5_GET_CTR(out, received_eth_unicast.packets);
202 s->rx_unicast_bytes =
203 MLX5_GET_CTR(out, received_eth_unicast.octets);
204 s->tx_unicast_packets =
205 MLX5_GET_CTR(out, transmitted_eth_unicast.packets);
206 s->tx_unicast_bytes =
207 MLX5_GET_CTR(out, transmitted_eth_unicast.octets);
208
209 s->rx_multicast_packets =
210 MLX5_GET_CTR(out, received_eth_multicast.packets);
211 s->rx_multicast_bytes =
212 MLX5_GET_CTR(out, received_eth_multicast.octets);
213 s->tx_multicast_packets =
214 MLX5_GET_CTR(out, transmitted_eth_multicast.packets);
215 s->tx_multicast_bytes =
216 MLX5_GET_CTR(out, transmitted_eth_multicast.octets);
217
218 s->rx_broadcast_packets =
219 MLX5_GET_CTR(out, received_eth_broadcast.packets);
220 s->rx_broadcast_bytes =
221 MLX5_GET_CTR(out, received_eth_broadcast.octets);
222 s->tx_broadcast_packets =
223 MLX5_GET_CTR(out, transmitted_eth_broadcast.packets);
224 s->tx_broadcast_bytes =
225 MLX5_GET_CTR(out, transmitted_eth_broadcast.octets);
226
227 s->rx_packets =
228 s->rx_unicast_packets +
229 s->rx_multicast_packets +
230 s->rx_broadcast_packets;
231 s->rx_bytes =
232 s->rx_unicast_bytes +
233 s->rx_multicast_bytes +
234 s->rx_broadcast_bytes;
235 s->tx_packets =
236 s->tx_unicast_packets +
237 s->tx_multicast_packets +
238 s->tx_broadcast_packets;
239 s->tx_bytes =
240 s->tx_unicast_bytes +
241 s->tx_multicast_bytes +
242 s->tx_broadcast_bytes;
243
244 /* Update calculated offload counters */
245 s->tx_csum_offload = s->tx_packets - tx_offload_none;
246 s->rx_csum_good = s->rx_packets - s->rx_csum_none -
247 s->rx_csum_sw;
248
249 mlx5e_update_pport_counters(priv);
250 free_out:
251 kvfree(out);
252 }
253
mlx5e_update_stats_work(struct work_struct * work)254 static void mlx5e_update_stats_work(struct work_struct *work)
255 {
256 struct delayed_work *dwork = to_delayed_work(work);
257 struct mlx5e_priv *priv = container_of(dwork, struct mlx5e_priv,
258 update_stats_work);
259 mutex_lock(&priv->state_lock);
260 if (test_bit(MLX5E_STATE_OPENED, &priv->state)) {
261 mlx5e_update_stats(priv);
262 schedule_delayed_work(dwork,
263 msecs_to_jiffies(
264 MLX5E_UPDATE_STATS_INTERVAL));
265 }
266 mutex_unlock(&priv->state_lock);
267 }
268
__mlx5e_async_event(struct mlx5e_priv * priv,enum mlx5_dev_event event)269 static void __mlx5e_async_event(struct mlx5e_priv *priv,
270 enum mlx5_dev_event event)
271 {
272 switch (event) {
273 case MLX5_DEV_EVENT_PORT_UP:
274 case MLX5_DEV_EVENT_PORT_DOWN:
275 schedule_work(&priv->update_carrier_work);
276 break;
277
278 default:
279 break;
280 }
281 }
282
mlx5e_async_event(struct mlx5_core_dev * mdev,void * vpriv,enum mlx5_dev_event event,unsigned long param)283 static void mlx5e_async_event(struct mlx5_core_dev *mdev, void *vpriv,
284 enum mlx5_dev_event event, unsigned long param)
285 {
286 struct mlx5e_priv *priv = vpriv;
287
288 spin_lock(&priv->async_events_spinlock);
289 if (test_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLE, &priv->state))
290 __mlx5e_async_event(priv, event);
291 spin_unlock(&priv->async_events_spinlock);
292 }
293
mlx5e_enable_async_events(struct mlx5e_priv * priv)294 static void mlx5e_enable_async_events(struct mlx5e_priv *priv)
295 {
296 set_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLE, &priv->state);
297 }
298
mlx5e_disable_async_events(struct mlx5e_priv * priv)299 static void mlx5e_disable_async_events(struct mlx5e_priv *priv)
300 {
301 spin_lock_irq(&priv->async_events_spinlock);
302 clear_bit(MLX5E_STATE_ASYNC_EVENTS_ENABLE, &priv->state);
303 spin_unlock_irq(&priv->async_events_spinlock);
304 }
305
306 #define MLX5E_HW2SW_MTU(hwmtu) (hwmtu - (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN))
307 #define MLX5E_SW2HW_MTU(swmtu) (swmtu + (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN))
308
mlx5e_create_rq(struct mlx5e_channel * c,struct mlx5e_rq_param * param,struct mlx5e_rq * rq)309 static int mlx5e_create_rq(struct mlx5e_channel *c,
310 struct mlx5e_rq_param *param,
311 struct mlx5e_rq *rq)
312 {
313 struct mlx5e_priv *priv = c->priv;
314 struct mlx5_core_dev *mdev = priv->mdev;
315 void *rqc = param->rqc;
316 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
317 int wq_sz;
318 int err;
319 int i;
320
321 param->wq.db_numa_node = cpu_to_node(c->cpu);
322
323 err = mlx5_wq_ll_create(mdev, ¶m->wq, rqc_wq, &rq->wq,
324 &rq->wq_ctrl);
325 if (err)
326 return err;
327
328 rq->wq.db = &rq->wq.db[MLX5_RCV_DBR];
329
330 wq_sz = mlx5_wq_ll_get_size(&rq->wq);
331 rq->skb = kzalloc_node(wq_sz * sizeof(*rq->skb), GFP_KERNEL,
332 cpu_to_node(c->cpu));
333 if (!rq->skb) {
334 err = -ENOMEM;
335 goto err_rq_wq_destroy;
336 }
337
338 rq->wqe_sz = (priv->params.lro_en) ? priv->params.lro_wqe_sz :
339 MLX5E_SW2HW_MTU(priv->netdev->mtu);
340 rq->wqe_sz = SKB_DATA_ALIGN(rq->wqe_sz + MLX5E_NET_IP_ALIGN);
341
342 for (i = 0; i < wq_sz; i++) {
343 struct mlx5e_rx_wqe *wqe = mlx5_wq_ll_get_wqe(&rq->wq, i);
344 u32 byte_count = rq->wqe_sz - MLX5E_NET_IP_ALIGN;
345
346 wqe->data.lkey = c->mkey_be;
347 wqe->data.byte_count =
348 cpu_to_be32(byte_count | MLX5_HW_START_PADDING);
349 }
350
351 rq->pdev = c->pdev;
352 rq->netdev = c->netdev;
353 rq->channel = c;
354 rq->ix = c->ix;
355 rq->priv = c->priv;
356
357 return 0;
358
359 err_rq_wq_destroy:
360 mlx5_wq_destroy(&rq->wq_ctrl);
361
362 return err;
363 }
364
mlx5e_destroy_rq(struct mlx5e_rq * rq)365 static void mlx5e_destroy_rq(struct mlx5e_rq *rq)
366 {
367 kfree(rq->skb);
368 mlx5_wq_destroy(&rq->wq_ctrl);
369 }
370
mlx5e_enable_rq(struct mlx5e_rq * rq,struct mlx5e_rq_param * param)371 static int mlx5e_enable_rq(struct mlx5e_rq *rq, struct mlx5e_rq_param *param)
372 {
373 struct mlx5e_priv *priv = rq->priv;
374 struct mlx5_core_dev *mdev = priv->mdev;
375
376 void *in;
377 void *rqc;
378 void *wq;
379 int inlen;
380 int err;
381
382 inlen = MLX5_ST_SZ_BYTES(create_rq_in) +
383 sizeof(u64) * rq->wq_ctrl.buf.npages;
384 in = mlx5_vzalloc(inlen);
385 if (!in)
386 return -ENOMEM;
387
388 rqc = MLX5_ADDR_OF(create_rq_in, in, ctx);
389 wq = MLX5_ADDR_OF(rqc, rqc, wq);
390
391 memcpy(rqc, param->rqc, sizeof(param->rqc));
392
393 MLX5_SET(rqc, rqc, cqn, rq->cq.mcq.cqn);
394 MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RST);
395 MLX5_SET(rqc, rqc, flush_in_error_en, 1);
396 MLX5_SET(wq, wq, log_wq_pg_sz, rq->wq_ctrl.buf.page_shift -
397 MLX5_ADAPTER_PAGE_SHIFT);
398 MLX5_SET64(wq, wq, dbr_addr, rq->wq_ctrl.db.dma);
399
400 mlx5_fill_page_array(&rq->wq_ctrl.buf,
401 (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
402
403 err = mlx5_core_create_rq(mdev, in, inlen, &rq->rqn);
404
405 kvfree(in);
406
407 return err;
408 }
409
mlx5e_modify_rq(struct mlx5e_rq * rq,int curr_state,int next_state)410 static int mlx5e_modify_rq(struct mlx5e_rq *rq, int curr_state, int next_state)
411 {
412 struct mlx5e_channel *c = rq->channel;
413 struct mlx5e_priv *priv = c->priv;
414 struct mlx5_core_dev *mdev = priv->mdev;
415
416 void *in;
417 void *rqc;
418 int inlen;
419 int err;
420
421 inlen = MLX5_ST_SZ_BYTES(modify_rq_in);
422 in = mlx5_vzalloc(inlen);
423 if (!in)
424 return -ENOMEM;
425
426 rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx);
427
428 MLX5_SET(modify_rq_in, in, rq_state, curr_state);
429 MLX5_SET(rqc, rqc, state, next_state);
430
431 err = mlx5_core_modify_rq(mdev, rq->rqn, in, inlen);
432
433 kvfree(in);
434
435 return err;
436 }
437
mlx5e_disable_rq(struct mlx5e_rq * rq)438 static void mlx5e_disable_rq(struct mlx5e_rq *rq)
439 {
440 mlx5_core_destroy_rq(rq->priv->mdev, rq->rqn);
441 }
442
mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq * rq)443 static int mlx5e_wait_for_min_rx_wqes(struct mlx5e_rq *rq)
444 {
445 unsigned long exp_time = jiffies + msecs_to_jiffies(20000);
446 struct mlx5e_channel *c = rq->channel;
447 struct mlx5e_priv *priv = c->priv;
448 struct mlx5_wq_ll *wq = &rq->wq;
449
450 while (time_before(jiffies, exp_time)) {
451 if (wq->cur_sz >= priv->params.min_rx_wqes)
452 return 0;
453
454 msleep(20);
455 }
456
457 return -ETIMEDOUT;
458 }
459
mlx5e_open_rq(struct mlx5e_channel * c,struct mlx5e_rq_param * param,struct mlx5e_rq * rq)460 static int mlx5e_open_rq(struct mlx5e_channel *c,
461 struct mlx5e_rq_param *param,
462 struct mlx5e_rq *rq)
463 {
464 int err;
465
466 err = mlx5e_create_rq(c, param, rq);
467 if (err)
468 return err;
469
470 err = mlx5e_enable_rq(rq, param);
471 if (err)
472 goto err_destroy_rq;
473
474 err = mlx5e_modify_rq(rq, MLX5_RQC_STATE_RST, MLX5_RQC_STATE_RDY);
475 if (err)
476 goto err_disable_rq;
477
478 set_bit(MLX5E_RQ_STATE_POST_WQES_ENABLE, &rq->state);
479 mlx5e_send_nop(&c->sq[0], true); /* trigger mlx5e_post_rx_wqes() */
480
481 return 0;
482
483 err_disable_rq:
484 mlx5e_disable_rq(rq);
485 err_destroy_rq:
486 mlx5e_destroy_rq(rq);
487
488 return err;
489 }
490
mlx5e_close_rq(struct mlx5e_rq * rq)491 static void mlx5e_close_rq(struct mlx5e_rq *rq)
492 {
493 clear_bit(MLX5E_RQ_STATE_POST_WQES_ENABLE, &rq->state);
494 napi_synchronize(&rq->channel->napi); /* prevent mlx5e_post_rx_wqes */
495
496 mlx5e_modify_rq(rq, MLX5_RQC_STATE_RDY, MLX5_RQC_STATE_ERR);
497 while (!mlx5_wq_ll_is_empty(&rq->wq))
498 msleep(20);
499
500 /* avoid destroying rq before mlx5e_poll_rx_cq() is done with it */
501 napi_synchronize(&rq->channel->napi);
502
503 mlx5e_disable_rq(rq);
504 mlx5e_destroy_rq(rq);
505 }
506
mlx5e_free_sq_db(struct mlx5e_sq * sq)507 static void mlx5e_free_sq_db(struct mlx5e_sq *sq)
508 {
509 kfree(sq->dma_fifo);
510 kfree(sq->skb);
511 }
512
mlx5e_alloc_sq_db(struct mlx5e_sq * sq,int numa)513 static int mlx5e_alloc_sq_db(struct mlx5e_sq *sq, int numa)
514 {
515 int wq_sz = mlx5_wq_cyc_get_size(&sq->wq);
516 int df_sz = wq_sz * MLX5_SEND_WQEBB_NUM_DS;
517
518 sq->skb = kzalloc_node(wq_sz * sizeof(*sq->skb), GFP_KERNEL, numa);
519 sq->dma_fifo = kzalloc_node(df_sz * sizeof(*sq->dma_fifo), GFP_KERNEL,
520 numa);
521
522 if (!sq->skb || !sq->dma_fifo) {
523 mlx5e_free_sq_db(sq);
524 return -ENOMEM;
525 }
526
527 sq->dma_fifo_mask = df_sz - 1;
528
529 return 0;
530 }
531
mlx5e_create_sq(struct mlx5e_channel * c,int tc,struct mlx5e_sq_param * param,struct mlx5e_sq * sq)532 static int mlx5e_create_sq(struct mlx5e_channel *c,
533 int tc,
534 struct mlx5e_sq_param *param,
535 struct mlx5e_sq *sq)
536 {
537 struct mlx5e_priv *priv = c->priv;
538 struct mlx5_core_dev *mdev = priv->mdev;
539
540 void *sqc = param->sqc;
541 void *sqc_wq = MLX5_ADDR_OF(sqc, sqc, wq);
542 int txq_ix;
543 int err;
544
545 err = mlx5_alloc_map_uar(mdev, &sq->uar);
546 if (err)
547 return err;
548
549 param->wq.db_numa_node = cpu_to_node(c->cpu);
550
551 err = mlx5_wq_cyc_create(mdev, ¶m->wq, sqc_wq, &sq->wq,
552 &sq->wq_ctrl);
553 if (err)
554 goto err_unmap_free_uar;
555
556 sq->wq.db = &sq->wq.db[MLX5_SND_DBR];
557 sq->uar_map = sq->uar.map;
558 sq->uar_bf_map = sq->uar.bf_map;
559 sq->bf_buf_size = (1 << MLX5_CAP_GEN(mdev, log_bf_reg_size)) / 2;
560 sq->max_inline = param->max_inline;
561
562 err = mlx5e_alloc_sq_db(sq, cpu_to_node(c->cpu));
563 if (err)
564 goto err_sq_wq_destroy;
565
566 txq_ix = c->ix + tc * priv->params.num_channels;
567 sq->txq = netdev_get_tx_queue(priv->netdev, txq_ix);
568
569 sq->pdev = c->pdev;
570 sq->mkey_be = c->mkey_be;
571 sq->channel = c;
572 sq->tc = tc;
573 sq->edge = (sq->wq.sz_m1 + 1) - MLX5_SEND_WQE_MAX_WQEBBS;
574 sq->bf_budget = MLX5E_SQ_BF_BUDGET;
575 priv->txq_to_sq_map[txq_ix] = sq;
576
577 return 0;
578
579 err_sq_wq_destroy:
580 mlx5_wq_destroy(&sq->wq_ctrl);
581
582 err_unmap_free_uar:
583 mlx5_unmap_free_uar(mdev, &sq->uar);
584
585 return err;
586 }
587
mlx5e_destroy_sq(struct mlx5e_sq * sq)588 static void mlx5e_destroy_sq(struct mlx5e_sq *sq)
589 {
590 struct mlx5e_channel *c = sq->channel;
591 struct mlx5e_priv *priv = c->priv;
592
593 mlx5e_free_sq_db(sq);
594 mlx5_wq_destroy(&sq->wq_ctrl);
595 mlx5_unmap_free_uar(priv->mdev, &sq->uar);
596 }
597
mlx5e_enable_sq(struct mlx5e_sq * sq,struct mlx5e_sq_param * param)598 static int mlx5e_enable_sq(struct mlx5e_sq *sq, struct mlx5e_sq_param *param)
599 {
600 struct mlx5e_channel *c = sq->channel;
601 struct mlx5e_priv *priv = c->priv;
602 struct mlx5_core_dev *mdev = priv->mdev;
603
604 void *in;
605 void *sqc;
606 void *wq;
607 int inlen;
608 int err;
609
610 inlen = MLX5_ST_SZ_BYTES(create_sq_in) +
611 sizeof(u64) * sq->wq_ctrl.buf.npages;
612 in = mlx5_vzalloc(inlen);
613 if (!in)
614 return -ENOMEM;
615
616 sqc = MLX5_ADDR_OF(create_sq_in, in, ctx);
617 wq = MLX5_ADDR_OF(sqc, sqc, wq);
618
619 memcpy(sqc, param->sqc, sizeof(param->sqc));
620
621 MLX5_SET(sqc, sqc, tis_num_0, priv->tisn[sq->tc]);
622 MLX5_SET(sqc, sqc, cqn, c->sq[sq->tc].cq.mcq.cqn);
623 MLX5_SET(sqc, sqc, state, MLX5_SQC_STATE_RST);
624 MLX5_SET(sqc, sqc, tis_lst_sz, 1);
625 MLX5_SET(sqc, sqc, flush_in_error_en, 1);
626
627 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_CYCLIC);
628 MLX5_SET(wq, wq, uar_page, sq->uar.index);
629 MLX5_SET(wq, wq, log_wq_pg_sz, sq->wq_ctrl.buf.page_shift -
630 MLX5_ADAPTER_PAGE_SHIFT);
631 MLX5_SET64(wq, wq, dbr_addr, sq->wq_ctrl.db.dma);
632
633 mlx5_fill_page_array(&sq->wq_ctrl.buf,
634 (__be64 *)MLX5_ADDR_OF(wq, wq, pas));
635
636 err = mlx5_core_create_sq(mdev, in, inlen, &sq->sqn);
637
638 kvfree(in);
639
640 return err;
641 }
642
mlx5e_modify_sq(struct mlx5e_sq * sq,int curr_state,int next_state)643 static int mlx5e_modify_sq(struct mlx5e_sq *sq, int curr_state, int next_state)
644 {
645 struct mlx5e_channel *c = sq->channel;
646 struct mlx5e_priv *priv = c->priv;
647 struct mlx5_core_dev *mdev = priv->mdev;
648
649 void *in;
650 void *sqc;
651 int inlen;
652 int err;
653
654 inlen = MLX5_ST_SZ_BYTES(modify_sq_in);
655 in = mlx5_vzalloc(inlen);
656 if (!in)
657 return -ENOMEM;
658
659 sqc = MLX5_ADDR_OF(modify_sq_in, in, ctx);
660
661 MLX5_SET(modify_sq_in, in, sq_state, curr_state);
662 MLX5_SET(sqc, sqc, state, next_state);
663
664 err = mlx5_core_modify_sq(mdev, sq->sqn, in, inlen);
665
666 kvfree(in);
667
668 return err;
669 }
670
mlx5e_disable_sq(struct mlx5e_sq * sq)671 static void mlx5e_disable_sq(struct mlx5e_sq *sq)
672 {
673 struct mlx5e_channel *c = sq->channel;
674 struct mlx5e_priv *priv = c->priv;
675 struct mlx5_core_dev *mdev = priv->mdev;
676
677 mlx5_core_destroy_sq(mdev, sq->sqn);
678 }
679
mlx5e_open_sq(struct mlx5e_channel * c,int tc,struct mlx5e_sq_param * param,struct mlx5e_sq * sq)680 static int mlx5e_open_sq(struct mlx5e_channel *c,
681 int tc,
682 struct mlx5e_sq_param *param,
683 struct mlx5e_sq *sq)
684 {
685 int err;
686
687 err = mlx5e_create_sq(c, tc, param, sq);
688 if (err)
689 return err;
690
691 err = mlx5e_enable_sq(sq, param);
692 if (err)
693 goto err_destroy_sq;
694
695 err = mlx5e_modify_sq(sq, MLX5_SQC_STATE_RST, MLX5_SQC_STATE_RDY);
696 if (err)
697 goto err_disable_sq;
698
699 set_bit(MLX5E_SQ_STATE_WAKE_TXQ_ENABLE, &sq->state);
700 netdev_tx_reset_queue(sq->txq);
701 netif_tx_start_queue(sq->txq);
702
703 return 0;
704
705 err_disable_sq:
706 mlx5e_disable_sq(sq);
707 err_destroy_sq:
708 mlx5e_destroy_sq(sq);
709
710 return err;
711 }
712
netif_tx_disable_queue(struct netdev_queue * txq)713 static inline void netif_tx_disable_queue(struct netdev_queue *txq)
714 {
715 __netif_tx_lock_bh(txq);
716 netif_tx_stop_queue(txq);
717 __netif_tx_unlock_bh(txq);
718 }
719
mlx5e_close_sq(struct mlx5e_sq * sq)720 static void mlx5e_close_sq(struct mlx5e_sq *sq)
721 {
722 clear_bit(MLX5E_SQ_STATE_WAKE_TXQ_ENABLE, &sq->state);
723 napi_synchronize(&sq->channel->napi); /* prevent netif_tx_wake_queue */
724 netif_tx_disable_queue(sq->txq);
725
726 /* ensure hw is notified of all pending wqes */
727 if (mlx5e_sq_has_room_for(sq, 1))
728 mlx5e_send_nop(sq, true);
729
730 mlx5e_modify_sq(sq, MLX5_SQC_STATE_RDY, MLX5_SQC_STATE_ERR);
731 while (sq->cc != sq->pc) /* wait till sq is empty */
732 msleep(20);
733
734 /* avoid destroying sq before mlx5e_poll_tx_cq() is done with it */
735 napi_synchronize(&sq->channel->napi);
736
737 mlx5e_disable_sq(sq);
738 mlx5e_destroy_sq(sq);
739 }
740
mlx5e_create_cq(struct mlx5e_channel * c,struct mlx5e_cq_param * param,struct mlx5e_cq * cq)741 static int mlx5e_create_cq(struct mlx5e_channel *c,
742 struct mlx5e_cq_param *param,
743 struct mlx5e_cq *cq)
744 {
745 struct mlx5e_priv *priv = c->priv;
746 struct mlx5_core_dev *mdev = priv->mdev;
747 struct mlx5_core_cq *mcq = &cq->mcq;
748 int eqn_not_used;
749 unsigned int irqn;
750 int err;
751 u32 i;
752
753 param->wq.buf_numa_node = cpu_to_node(c->cpu);
754 param->wq.db_numa_node = cpu_to_node(c->cpu);
755 param->eq_ix = c->ix;
756
757 err = mlx5_cqwq_create(mdev, ¶m->wq, param->cqc, &cq->wq,
758 &cq->wq_ctrl);
759 if (err)
760 return err;
761
762 mlx5_vector2eqn(mdev, param->eq_ix, &eqn_not_used, &irqn);
763
764 cq->napi = &c->napi;
765
766 mcq->cqe_sz = 64;
767 mcq->set_ci_db = cq->wq_ctrl.db.db;
768 mcq->arm_db = cq->wq_ctrl.db.db + 1;
769 *mcq->set_ci_db = 0;
770 *mcq->arm_db = 0;
771 mcq->vector = param->eq_ix;
772 mcq->comp = mlx5e_completion_event;
773 mcq->event = mlx5e_cq_error_event;
774 mcq->irqn = irqn;
775 mcq->uar = &priv->cq_uar;
776
777 for (i = 0; i < mlx5_cqwq_get_size(&cq->wq); i++) {
778 struct mlx5_cqe64 *cqe = mlx5_cqwq_get_wqe(&cq->wq, i);
779
780 cqe->op_own = 0xf1;
781 }
782
783 cq->channel = c;
784 cq->priv = priv;
785
786 return 0;
787 }
788
mlx5e_destroy_cq(struct mlx5e_cq * cq)789 static void mlx5e_destroy_cq(struct mlx5e_cq *cq)
790 {
791 mlx5_wq_destroy(&cq->wq_ctrl);
792 }
793
mlx5e_enable_cq(struct mlx5e_cq * cq,struct mlx5e_cq_param * param)794 static int mlx5e_enable_cq(struct mlx5e_cq *cq, struct mlx5e_cq_param *param)
795 {
796 struct mlx5e_priv *priv = cq->priv;
797 struct mlx5_core_dev *mdev = priv->mdev;
798 struct mlx5_core_cq *mcq = &cq->mcq;
799
800 void *in;
801 void *cqc;
802 int inlen;
803 unsigned int irqn_not_used;
804 int eqn;
805 int err;
806
807 inlen = MLX5_ST_SZ_BYTES(create_cq_in) +
808 sizeof(u64) * cq->wq_ctrl.buf.npages;
809 in = mlx5_vzalloc(inlen);
810 if (!in)
811 return -ENOMEM;
812
813 cqc = MLX5_ADDR_OF(create_cq_in, in, cq_context);
814
815 memcpy(cqc, param->cqc, sizeof(param->cqc));
816
817 mlx5_fill_page_array(&cq->wq_ctrl.buf,
818 (__be64 *)MLX5_ADDR_OF(create_cq_in, in, pas));
819
820 mlx5_vector2eqn(mdev, param->eq_ix, &eqn, &irqn_not_used);
821
822 MLX5_SET(cqc, cqc, c_eqn, eqn);
823 MLX5_SET(cqc, cqc, uar_page, mcq->uar->index);
824 MLX5_SET(cqc, cqc, log_page_size, cq->wq_ctrl.buf.page_shift -
825 MLX5_ADAPTER_PAGE_SHIFT);
826 MLX5_SET64(cqc, cqc, dbr_addr, cq->wq_ctrl.db.dma);
827
828 err = mlx5_core_create_cq(mdev, mcq, in, inlen);
829
830 kvfree(in);
831
832 if (err)
833 return err;
834
835 mlx5e_cq_arm(cq);
836
837 return 0;
838 }
839
mlx5e_disable_cq(struct mlx5e_cq * cq)840 static void mlx5e_disable_cq(struct mlx5e_cq *cq)
841 {
842 struct mlx5e_priv *priv = cq->priv;
843 struct mlx5_core_dev *mdev = priv->mdev;
844
845 mlx5_core_destroy_cq(mdev, &cq->mcq);
846 }
847
mlx5e_open_cq(struct mlx5e_channel * c,struct mlx5e_cq_param * param,struct mlx5e_cq * cq,u16 moderation_usecs,u16 moderation_frames)848 static int mlx5e_open_cq(struct mlx5e_channel *c,
849 struct mlx5e_cq_param *param,
850 struct mlx5e_cq *cq,
851 u16 moderation_usecs,
852 u16 moderation_frames)
853 {
854 int err;
855 struct mlx5e_priv *priv = c->priv;
856 struct mlx5_core_dev *mdev = priv->mdev;
857
858 err = mlx5e_create_cq(c, param, cq);
859 if (err)
860 return err;
861
862 err = mlx5e_enable_cq(cq, param);
863 if (err)
864 goto err_destroy_cq;
865
866 err = mlx5_core_modify_cq_moderation(mdev, &cq->mcq,
867 moderation_usecs,
868 moderation_frames);
869 if (err)
870 goto err_destroy_cq;
871
872 return 0;
873
874 err_destroy_cq:
875 mlx5e_destroy_cq(cq);
876
877 return err;
878 }
879
mlx5e_close_cq(struct mlx5e_cq * cq)880 static void mlx5e_close_cq(struct mlx5e_cq *cq)
881 {
882 mlx5e_disable_cq(cq);
883 mlx5e_destroy_cq(cq);
884 }
885
mlx5e_get_cpu(struct mlx5e_priv * priv,int ix)886 static int mlx5e_get_cpu(struct mlx5e_priv *priv, int ix)
887 {
888 return cpumask_first(priv->mdev->priv.irq_info[ix].mask);
889 }
890
mlx5e_open_tx_cqs(struct mlx5e_channel * c,struct mlx5e_channel_param * cparam)891 static int mlx5e_open_tx_cqs(struct mlx5e_channel *c,
892 struct mlx5e_channel_param *cparam)
893 {
894 struct mlx5e_priv *priv = c->priv;
895 int err;
896 int tc;
897
898 for (tc = 0; tc < c->num_tc; tc++) {
899 err = mlx5e_open_cq(c, &cparam->tx_cq, &c->sq[tc].cq,
900 priv->params.tx_cq_moderation_usec,
901 priv->params.tx_cq_moderation_pkts);
902 if (err)
903 goto err_close_tx_cqs;
904 }
905
906 return 0;
907
908 err_close_tx_cqs:
909 for (tc--; tc >= 0; tc--)
910 mlx5e_close_cq(&c->sq[tc].cq);
911
912 return err;
913 }
914
mlx5e_close_tx_cqs(struct mlx5e_channel * c)915 static void mlx5e_close_tx_cqs(struct mlx5e_channel *c)
916 {
917 int tc;
918
919 for (tc = 0; tc < c->num_tc; tc++)
920 mlx5e_close_cq(&c->sq[tc].cq);
921 }
922
mlx5e_open_sqs(struct mlx5e_channel * c,struct mlx5e_channel_param * cparam)923 static int mlx5e_open_sqs(struct mlx5e_channel *c,
924 struct mlx5e_channel_param *cparam)
925 {
926 int err;
927 int tc;
928
929 for (tc = 0; tc < c->num_tc; tc++) {
930 err = mlx5e_open_sq(c, tc, &cparam->sq, &c->sq[tc]);
931 if (err)
932 goto err_close_sqs;
933 }
934
935 return 0;
936
937 err_close_sqs:
938 for (tc--; tc >= 0; tc--)
939 mlx5e_close_sq(&c->sq[tc]);
940
941 return err;
942 }
943
mlx5e_close_sqs(struct mlx5e_channel * c)944 static void mlx5e_close_sqs(struct mlx5e_channel *c)
945 {
946 int tc;
947
948 for (tc = 0; tc < c->num_tc; tc++)
949 mlx5e_close_sq(&c->sq[tc]);
950 }
951
mlx5e_build_channeltc_to_txq_map(struct mlx5e_priv * priv,int ix)952 static void mlx5e_build_channeltc_to_txq_map(struct mlx5e_priv *priv, int ix)
953 {
954 int i;
955
956 for (i = 0; i < MLX5E_MAX_NUM_TC; i++)
957 priv->channeltc_to_txq_map[ix][i] =
958 ix + i * priv->params.num_channels;
959 }
960
mlx5e_open_channel(struct mlx5e_priv * priv,int ix,struct mlx5e_channel_param * cparam,struct mlx5e_channel ** cp)961 static int mlx5e_open_channel(struct mlx5e_priv *priv, int ix,
962 struct mlx5e_channel_param *cparam,
963 struct mlx5e_channel **cp)
964 {
965 struct net_device *netdev = priv->netdev;
966 int cpu = mlx5e_get_cpu(priv, ix);
967 struct mlx5e_channel *c;
968 int err;
969
970 c = kzalloc_node(sizeof(*c), GFP_KERNEL, cpu_to_node(cpu));
971 if (!c)
972 return -ENOMEM;
973
974 c->priv = priv;
975 c->ix = ix;
976 c->cpu = cpu;
977 c->pdev = &priv->mdev->pdev->dev;
978 c->netdev = priv->netdev;
979 c->mkey_be = cpu_to_be32(priv->mr.key);
980 c->num_tc = priv->params.num_tc;
981
982 mlx5e_build_channeltc_to_txq_map(priv, ix);
983
984 netif_napi_add(netdev, &c->napi, mlx5e_napi_poll, 64);
985
986 err = mlx5e_open_tx_cqs(c, cparam);
987 if (err)
988 goto err_napi_del;
989
990 err = mlx5e_open_cq(c, &cparam->rx_cq, &c->rq.cq,
991 priv->params.rx_cq_moderation_usec,
992 priv->params.rx_cq_moderation_pkts);
993 if (err)
994 goto err_close_tx_cqs;
995
996 napi_enable(&c->napi);
997
998 err = mlx5e_open_sqs(c, cparam);
999 if (err)
1000 goto err_disable_napi;
1001
1002 err = mlx5e_open_rq(c, &cparam->rq, &c->rq);
1003 if (err)
1004 goto err_close_sqs;
1005
1006 netif_set_xps_queue(netdev, get_cpu_mask(c->cpu), ix);
1007 *cp = c;
1008
1009 return 0;
1010
1011 err_close_sqs:
1012 mlx5e_close_sqs(c);
1013
1014 err_disable_napi:
1015 napi_disable(&c->napi);
1016 mlx5e_close_cq(&c->rq.cq);
1017
1018 err_close_tx_cqs:
1019 mlx5e_close_tx_cqs(c);
1020
1021 err_napi_del:
1022 netif_napi_del(&c->napi);
1023 kfree(c);
1024
1025 return err;
1026 }
1027
mlx5e_close_channel(struct mlx5e_channel * c)1028 static void mlx5e_close_channel(struct mlx5e_channel *c)
1029 {
1030 mlx5e_close_rq(&c->rq);
1031 mlx5e_close_sqs(c);
1032 napi_disable(&c->napi);
1033 mlx5e_close_cq(&c->rq.cq);
1034 mlx5e_close_tx_cqs(c);
1035 netif_napi_del(&c->napi);
1036 kfree(c);
1037 }
1038
mlx5e_build_rq_param(struct mlx5e_priv * priv,struct mlx5e_rq_param * param)1039 static void mlx5e_build_rq_param(struct mlx5e_priv *priv,
1040 struct mlx5e_rq_param *param)
1041 {
1042 void *rqc = param->rqc;
1043 void *wq = MLX5_ADDR_OF(rqc, rqc, wq);
1044
1045 MLX5_SET(wq, wq, wq_type, MLX5_WQ_TYPE_LINKED_LIST);
1046 MLX5_SET(wq, wq, end_padding_mode, MLX5_WQ_END_PAD_MODE_ALIGN);
1047 MLX5_SET(wq, wq, log_wq_stride, ilog2(sizeof(struct mlx5e_rx_wqe)));
1048 MLX5_SET(wq, wq, log_wq_sz, priv->params.log_rq_size);
1049 MLX5_SET(wq, wq, pd, priv->pdn);
1050
1051 param->wq.buf_numa_node = dev_to_node(&priv->mdev->pdev->dev);
1052 param->wq.linear = 1;
1053 }
1054
mlx5e_build_sq_param(struct mlx5e_priv * priv,struct mlx5e_sq_param * param)1055 static void mlx5e_build_sq_param(struct mlx5e_priv *priv,
1056 struct mlx5e_sq_param *param)
1057 {
1058 void *sqc = param->sqc;
1059 void *wq = MLX5_ADDR_OF(sqc, sqc, wq);
1060
1061 MLX5_SET(wq, wq, log_wq_sz, priv->params.log_sq_size);
1062 MLX5_SET(wq, wq, log_wq_stride, ilog2(MLX5_SEND_WQE_BB));
1063 MLX5_SET(wq, wq, pd, priv->pdn);
1064
1065 param->wq.buf_numa_node = dev_to_node(&priv->mdev->pdev->dev);
1066 param->max_inline = priv->params.tx_max_inline;
1067 }
1068
mlx5e_build_common_cq_param(struct mlx5e_priv * priv,struct mlx5e_cq_param * param)1069 static void mlx5e_build_common_cq_param(struct mlx5e_priv *priv,
1070 struct mlx5e_cq_param *param)
1071 {
1072 void *cqc = param->cqc;
1073
1074 MLX5_SET(cqc, cqc, uar_page, priv->cq_uar.index);
1075 }
1076
mlx5e_build_rx_cq_param(struct mlx5e_priv * priv,struct mlx5e_cq_param * param)1077 static void mlx5e_build_rx_cq_param(struct mlx5e_priv *priv,
1078 struct mlx5e_cq_param *param)
1079 {
1080 void *cqc = param->cqc;
1081
1082 MLX5_SET(cqc, cqc, log_cq_size, priv->params.log_rq_size);
1083
1084 mlx5e_build_common_cq_param(priv, param);
1085 }
1086
mlx5e_build_tx_cq_param(struct mlx5e_priv * priv,struct mlx5e_cq_param * param)1087 static void mlx5e_build_tx_cq_param(struct mlx5e_priv *priv,
1088 struct mlx5e_cq_param *param)
1089 {
1090 void *cqc = param->cqc;
1091
1092 MLX5_SET(cqc, cqc, log_cq_size, priv->params.log_sq_size);
1093
1094 mlx5e_build_common_cq_param(priv, param);
1095 }
1096
mlx5e_build_channel_param(struct mlx5e_priv * priv,struct mlx5e_channel_param * cparam)1097 static void mlx5e_build_channel_param(struct mlx5e_priv *priv,
1098 struct mlx5e_channel_param *cparam)
1099 {
1100 memset(cparam, 0, sizeof(*cparam));
1101
1102 mlx5e_build_rq_param(priv, &cparam->rq);
1103 mlx5e_build_sq_param(priv, &cparam->sq);
1104 mlx5e_build_rx_cq_param(priv, &cparam->rx_cq);
1105 mlx5e_build_tx_cq_param(priv, &cparam->tx_cq);
1106 }
1107
mlx5e_open_channels(struct mlx5e_priv * priv)1108 static int mlx5e_open_channels(struct mlx5e_priv *priv)
1109 {
1110 struct mlx5e_channel_param cparam;
1111 int nch = priv->params.num_channels;
1112 int err = -ENOMEM;
1113 int i;
1114 int j;
1115
1116 priv->channel = kcalloc(nch, sizeof(struct mlx5e_channel *),
1117 GFP_KERNEL);
1118
1119 priv->txq_to_sq_map = kcalloc(nch * priv->params.num_tc,
1120 sizeof(struct mlx5e_sq *), GFP_KERNEL);
1121
1122 if (!priv->channel || !priv->txq_to_sq_map)
1123 goto err_free_txq_to_sq_map;
1124
1125 mlx5e_build_channel_param(priv, &cparam);
1126 for (i = 0; i < nch; i++) {
1127 err = mlx5e_open_channel(priv, i, &cparam, &priv->channel[i]);
1128 if (err)
1129 goto err_close_channels;
1130 }
1131
1132 for (j = 0; j < nch; j++) {
1133 err = mlx5e_wait_for_min_rx_wqes(&priv->channel[j]->rq);
1134 if (err)
1135 goto err_close_channels;
1136 }
1137
1138 return 0;
1139
1140 err_close_channels:
1141 for (i--; i >= 0; i--)
1142 mlx5e_close_channel(priv->channel[i]);
1143
1144 err_free_txq_to_sq_map:
1145 kfree(priv->txq_to_sq_map);
1146 kfree(priv->channel);
1147
1148 return err;
1149 }
1150
mlx5e_close_channels(struct mlx5e_priv * priv)1151 static void mlx5e_close_channels(struct mlx5e_priv *priv)
1152 {
1153 int i;
1154
1155 for (i = 0; i < priv->params.num_channels; i++)
1156 mlx5e_close_channel(priv->channel[i]);
1157
1158 kfree(priv->txq_to_sq_map);
1159 kfree(priv->channel);
1160 }
1161
mlx5e_rx_hash_fn(int hfunc)1162 static int mlx5e_rx_hash_fn(int hfunc)
1163 {
1164 return (hfunc == ETH_RSS_HASH_TOP) ?
1165 MLX5_RX_HASH_FN_TOEPLITZ :
1166 MLX5_RX_HASH_FN_INVERTED_XOR8;
1167 }
1168
mlx5e_bits_invert(unsigned long a,int size)1169 static int mlx5e_bits_invert(unsigned long a, int size)
1170 {
1171 int inv = 0;
1172 int i;
1173
1174 for (i = 0; i < size; i++)
1175 inv |= (test_bit(size - i - 1, &a) ? 1 : 0) << i;
1176
1177 return inv;
1178 }
1179
mlx5e_fill_indir_rqt_rqns(struct mlx5e_priv * priv,void * rqtc)1180 static void mlx5e_fill_indir_rqt_rqns(struct mlx5e_priv *priv, void *rqtc)
1181 {
1182 int i;
1183
1184 for (i = 0; i < MLX5E_INDIR_RQT_SIZE; i++) {
1185 int ix = i;
1186
1187 if (priv->params.rss_hfunc == ETH_RSS_HASH_XOR)
1188 ix = mlx5e_bits_invert(i, MLX5E_LOG_INDIR_RQT_SIZE);
1189
1190 ix = priv->params.indirection_rqt[ix];
1191 ix = ix % priv->params.num_channels;
1192 MLX5_SET(rqtc, rqtc, rq_num[i],
1193 test_bit(MLX5E_STATE_OPENED, &priv->state) ?
1194 priv->channel[ix]->rq.rqn :
1195 priv->drop_rq.rqn);
1196 }
1197 }
1198
mlx5e_fill_rqt_rqns(struct mlx5e_priv * priv,void * rqtc,enum mlx5e_rqt_ix rqt_ix)1199 static void mlx5e_fill_rqt_rqns(struct mlx5e_priv *priv, void *rqtc,
1200 enum mlx5e_rqt_ix rqt_ix)
1201 {
1202
1203 switch (rqt_ix) {
1204 case MLX5E_INDIRECTION_RQT:
1205 mlx5e_fill_indir_rqt_rqns(priv, rqtc);
1206
1207 break;
1208
1209 default: /* MLX5E_SINGLE_RQ_RQT */
1210 MLX5_SET(rqtc, rqtc, rq_num[0],
1211 test_bit(MLX5E_STATE_OPENED, &priv->state) ?
1212 priv->channel[0]->rq.rqn :
1213 priv->drop_rq.rqn);
1214
1215 break;
1216 }
1217 }
1218
mlx5e_create_rqt(struct mlx5e_priv * priv,enum mlx5e_rqt_ix rqt_ix)1219 static int mlx5e_create_rqt(struct mlx5e_priv *priv, enum mlx5e_rqt_ix rqt_ix)
1220 {
1221 struct mlx5_core_dev *mdev = priv->mdev;
1222 u32 *in;
1223 void *rqtc;
1224 int inlen;
1225 int sz;
1226 int err;
1227
1228 sz = (rqt_ix == MLX5E_SINGLE_RQ_RQT) ? 1 : MLX5E_INDIR_RQT_SIZE;
1229
1230 inlen = MLX5_ST_SZ_BYTES(create_rqt_in) + sizeof(u32) * sz;
1231 in = mlx5_vzalloc(inlen);
1232 if (!in)
1233 return -ENOMEM;
1234
1235 rqtc = MLX5_ADDR_OF(create_rqt_in, in, rqt_context);
1236
1237 MLX5_SET(rqtc, rqtc, rqt_actual_size, sz);
1238 MLX5_SET(rqtc, rqtc, rqt_max_size, sz);
1239
1240 mlx5e_fill_rqt_rqns(priv, rqtc, rqt_ix);
1241
1242 err = mlx5_core_create_rqt(mdev, in, inlen, &priv->rqtn[rqt_ix]);
1243
1244 kvfree(in);
1245
1246 return err;
1247 }
1248
mlx5e_redirect_rqt(struct mlx5e_priv * priv,enum mlx5e_rqt_ix rqt_ix)1249 int mlx5e_redirect_rqt(struct mlx5e_priv *priv, enum mlx5e_rqt_ix rqt_ix)
1250 {
1251 struct mlx5_core_dev *mdev = priv->mdev;
1252 u32 *in;
1253 void *rqtc;
1254 int inlen;
1255 int sz;
1256 int err;
1257
1258 sz = (rqt_ix == MLX5E_SINGLE_RQ_RQT) ? 1 : MLX5E_INDIR_RQT_SIZE;
1259
1260 inlen = MLX5_ST_SZ_BYTES(modify_rqt_in) + sizeof(u32) * sz;
1261 in = mlx5_vzalloc(inlen);
1262 if (!in)
1263 return -ENOMEM;
1264
1265 rqtc = MLX5_ADDR_OF(modify_rqt_in, in, ctx);
1266
1267 MLX5_SET(rqtc, rqtc, rqt_actual_size, sz);
1268
1269 mlx5e_fill_rqt_rqns(priv, rqtc, rqt_ix);
1270
1271 MLX5_SET(modify_rqt_in, in, bitmask.rqn_list, 1);
1272
1273 err = mlx5_core_modify_rqt(mdev, priv->rqtn[rqt_ix], in, inlen);
1274
1275 kvfree(in);
1276
1277 return err;
1278 }
1279
mlx5e_destroy_rqt(struct mlx5e_priv * priv,enum mlx5e_rqt_ix rqt_ix)1280 static void mlx5e_destroy_rqt(struct mlx5e_priv *priv, enum mlx5e_rqt_ix rqt_ix)
1281 {
1282 mlx5_core_destroy_rqt(priv->mdev, priv->rqtn[rqt_ix]);
1283 }
1284
mlx5e_redirect_rqts(struct mlx5e_priv * priv)1285 static void mlx5e_redirect_rqts(struct mlx5e_priv *priv)
1286 {
1287 mlx5e_redirect_rqt(priv, MLX5E_INDIRECTION_RQT);
1288 mlx5e_redirect_rqt(priv, MLX5E_SINGLE_RQ_RQT);
1289 }
1290
mlx5e_build_tir_ctx_lro(void * tirc,struct mlx5e_priv * priv)1291 static void mlx5e_build_tir_ctx_lro(void *tirc, struct mlx5e_priv *priv)
1292 {
1293 if (!priv->params.lro_en)
1294 return;
1295
1296 #define ROUGH_MAX_L2_L3_HDR_SZ 256
1297
1298 MLX5_SET(tirc, tirc, lro_enable_mask,
1299 MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO |
1300 MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO);
1301 MLX5_SET(tirc, tirc, lro_max_ip_payload_size,
1302 (priv->params.lro_wqe_sz -
1303 ROUGH_MAX_L2_L3_HDR_SZ) >> 8);
1304 MLX5_SET(tirc, tirc, lro_timeout_period_usecs,
1305 MLX5_CAP_ETH(priv->mdev,
1306 lro_timer_supported_periods[2]));
1307 }
1308
mlx5e_modify_tir_lro(struct mlx5e_priv * priv,int tt)1309 static int mlx5e_modify_tir_lro(struct mlx5e_priv *priv, int tt)
1310 {
1311 struct mlx5_core_dev *mdev = priv->mdev;
1312
1313 void *in;
1314 void *tirc;
1315 int inlen;
1316 int err;
1317
1318 inlen = MLX5_ST_SZ_BYTES(modify_tir_in);
1319 in = mlx5_vzalloc(inlen);
1320 if (!in)
1321 return -ENOMEM;
1322
1323 MLX5_SET(modify_tir_in, in, bitmask.lro, 1);
1324 tirc = MLX5_ADDR_OF(modify_tir_in, in, ctx);
1325
1326 mlx5e_build_tir_ctx_lro(tirc, priv);
1327
1328 err = mlx5_core_modify_tir(mdev, priv->tirn[tt], in, inlen);
1329
1330 kvfree(in);
1331
1332 return err;
1333 }
1334
mlx5e_refresh_tir_self_loopback_enable(struct mlx5_core_dev * mdev,u32 tirn)1335 static int mlx5e_refresh_tir_self_loopback_enable(struct mlx5_core_dev *mdev,
1336 u32 tirn)
1337 {
1338 void *in;
1339 int inlen;
1340 int err;
1341
1342 inlen = MLX5_ST_SZ_BYTES(modify_tir_in);
1343 in = mlx5_vzalloc(inlen);
1344 if (!in)
1345 return -ENOMEM;
1346
1347 MLX5_SET(modify_tir_in, in, bitmask.self_lb_en, 1);
1348
1349 err = mlx5_core_modify_tir(mdev, tirn, in, inlen);
1350
1351 kvfree(in);
1352
1353 return err;
1354 }
1355
mlx5e_refresh_tirs_self_loopback_enable(struct mlx5e_priv * priv)1356 static int mlx5e_refresh_tirs_self_loopback_enable(struct mlx5e_priv *priv)
1357 {
1358 int err;
1359 int i;
1360
1361 for (i = 0; i < MLX5E_NUM_TT; i++) {
1362 err = mlx5e_refresh_tir_self_loopback_enable(priv->mdev,
1363 priv->tirn[i]);
1364 if (err)
1365 return err;
1366 }
1367
1368 return 0;
1369 }
1370
mlx5e_set_dev_port_mtu(struct net_device * netdev)1371 static int mlx5e_set_dev_port_mtu(struct net_device *netdev)
1372 {
1373 struct mlx5e_priv *priv = netdev_priv(netdev);
1374 struct mlx5_core_dev *mdev = priv->mdev;
1375 u16 hw_mtu;
1376 int err;
1377
1378 err = mlx5_set_port_mtu(mdev, MLX5E_SW2HW_MTU(netdev->mtu), 1);
1379 if (err)
1380 return err;
1381
1382 mlx5_query_port_oper_mtu(mdev, &hw_mtu, 1);
1383
1384 if (MLX5E_HW2SW_MTU(hw_mtu) != netdev->mtu)
1385 netdev_warn(netdev, "%s: Port MTU %d is different than netdev mtu %d\n",
1386 __func__, MLX5E_HW2SW_MTU(hw_mtu), netdev->mtu);
1387
1388 netdev->mtu = MLX5E_HW2SW_MTU(hw_mtu);
1389 return 0;
1390 }
1391
mlx5e_open_locked(struct net_device * netdev)1392 int mlx5e_open_locked(struct net_device *netdev)
1393 {
1394 struct mlx5e_priv *priv = netdev_priv(netdev);
1395 int num_txqs;
1396 int err;
1397
1398 set_bit(MLX5E_STATE_OPENED, &priv->state);
1399
1400 num_txqs = priv->params.num_channels * priv->params.num_tc;
1401 netif_set_real_num_tx_queues(netdev, num_txqs);
1402 netif_set_real_num_rx_queues(netdev, priv->params.num_channels);
1403
1404 err = mlx5e_set_dev_port_mtu(netdev);
1405 if (err)
1406 goto err_clear_state_opened_flag;
1407
1408 err = mlx5e_open_channels(priv);
1409 if (err) {
1410 netdev_err(netdev, "%s: mlx5e_open_channels failed, %d\n",
1411 __func__, err);
1412 goto err_clear_state_opened_flag;
1413 }
1414
1415 err = mlx5e_refresh_tirs_self_loopback_enable(priv);
1416 if (err) {
1417 netdev_err(netdev, "%s: mlx5e_refresh_tirs_self_loopback_enable failed, %d\n",
1418 __func__, err);
1419 goto err_close_channels;
1420 }
1421
1422 mlx5e_update_carrier(priv);
1423 mlx5e_redirect_rqts(priv);
1424
1425 schedule_delayed_work(&priv->update_stats_work, 0);
1426
1427 return 0;
1428
1429 err_close_channels:
1430 mlx5e_close_channels(priv);
1431 err_clear_state_opened_flag:
1432 clear_bit(MLX5E_STATE_OPENED, &priv->state);
1433 return err;
1434 }
1435
mlx5e_open(struct net_device * netdev)1436 static int mlx5e_open(struct net_device *netdev)
1437 {
1438 struct mlx5e_priv *priv = netdev_priv(netdev);
1439 int err;
1440
1441 mutex_lock(&priv->state_lock);
1442 err = mlx5e_open_locked(netdev);
1443 mutex_unlock(&priv->state_lock);
1444
1445 return err;
1446 }
1447
mlx5e_close_locked(struct net_device * netdev)1448 int mlx5e_close_locked(struct net_device *netdev)
1449 {
1450 struct mlx5e_priv *priv = netdev_priv(netdev);
1451
1452 /* May already be CLOSED in case a previous configuration operation
1453 * (e.g RX/TX queue size change) that involves close&open failed.
1454 */
1455 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
1456 return 0;
1457
1458 clear_bit(MLX5E_STATE_OPENED, &priv->state);
1459
1460 mlx5e_redirect_rqts(priv);
1461 netif_carrier_off(priv->netdev);
1462 mlx5e_close_channels(priv);
1463
1464 return 0;
1465 }
1466
mlx5e_close(struct net_device * netdev)1467 static int mlx5e_close(struct net_device *netdev)
1468 {
1469 struct mlx5e_priv *priv = netdev_priv(netdev);
1470 int err;
1471
1472 mutex_lock(&priv->state_lock);
1473 err = mlx5e_close_locked(netdev);
1474 mutex_unlock(&priv->state_lock);
1475
1476 return err;
1477 }
1478
mlx5e_create_drop_rq(struct mlx5e_priv * priv,struct mlx5e_rq * rq,struct mlx5e_rq_param * param)1479 static int mlx5e_create_drop_rq(struct mlx5e_priv *priv,
1480 struct mlx5e_rq *rq,
1481 struct mlx5e_rq_param *param)
1482 {
1483 struct mlx5_core_dev *mdev = priv->mdev;
1484 void *rqc = param->rqc;
1485 void *rqc_wq = MLX5_ADDR_OF(rqc, rqc, wq);
1486 int err;
1487
1488 param->wq.db_numa_node = param->wq.buf_numa_node;
1489
1490 err = mlx5_wq_ll_create(mdev, ¶m->wq, rqc_wq, &rq->wq,
1491 &rq->wq_ctrl);
1492 if (err)
1493 return err;
1494
1495 rq->priv = priv;
1496
1497 return 0;
1498 }
1499
mlx5e_create_drop_cq(struct mlx5e_priv * priv,struct mlx5e_cq * cq,struct mlx5e_cq_param * param)1500 static int mlx5e_create_drop_cq(struct mlx5e_priv *priv,
1501 struct mlx5e_cq *cq,
1502 struct mlx5e_cq_param *param)
1503 {
1504 struct mlx5_core_dev *mdev = priv->mdev;
1505 struct mlx5_core_cq *mcq = &cq->mcq;
1506 int eqn_not_used;
1507 unsigned int irqn;
1508 int err;
1509
1510 err = mlx5_cqwq_create(mdev, ¶m->wq, param->cqc, &cq->wq,
1511 &cq->wq_ctrl);
1512 if (err)
1513 return err;
1514
1515 mlx5_vector2eqn(mdev, param->eq_ix, &eqn_not_used, &irqn);
1516
1517 mcq->cqe_sz = 64;
1518 mcq->set_ci_db = cq->wq_ctrl.db.db;
1519 mcq->arm_db = cq->wq_ctrl.db.db + 1;
1520 *mcq->set_ci_db = 0;
1521 *mcq->arm_db = 0;
1522 mcq->vector = param->eq_ix;
1523 mcq->comp = mlx5e_completion_event;
1524 mcq->event = mlx5e_cq_error_event;
1525 mcq->irqn = irqn;
1526 mcq->uar = &priv->cq_uar;
1527
1528 cq->priv = priv;
1529
1530 return 0;
1531 }
1532
mlx5e_open_drop_rq(struct mlx5e_priv * priv)1533 static int mlx5e_open_drop_rq(struct mlx5e_priv *priv)
1534 {
1535 struct mlx5e_cq_param cq_param;
1536 struct mlx5e_rq_param rq_param;
1537 struct mlx5e_rq *rq = &priv->drop_rq;
1538 struct mlx5e_cq *cq = &priv->drop_rq.cq;
1539 int err;
1540
1541 memset(&cq_param, 0, sizeof(cq_param));
1542 memset(&rq_param, 0, sizeof(rq_param));
1543 mlx5e_build_rx_cq_param(priv, &cq_param);
1544 mlx5e_build_rq_param(priv, &rq_param);
1545
1546 err = mlx5e_create_drop_cq(priv, cq, &cq_param);
1547 if (err)
1548 return err;
1549
1550 err = mlx5e_enable_cq(cq, &cq_param);
1551 if (err)
1552 goto err_destroy_cq;
1553
1554 err = mlx5e_create_drop_rq(priv, rq, &rq_param);
1555 if (err)
1556 goto err_disable_cq;
1557
1558 err = mlx5e_enable_rq(rq, &rq_param);
1559 if (err)
1560 goto err_destroy_rq;
1561
1562 return 0;
1563
1564 err_destroy_rq:
1565 mlx5e_destroy_rq(&priv->drop_rq);
1566
1567 err_disable_cq:
1568 mlx5e_disable_cq(&priv->drop_rq.cq);
1569
1570 err_destroy_cq:
1571 mlx5e_destroy_cq(&priv->drop_rq.cq);
1572
1573 return err;
1574 }
1575
mlx5e_close_drop_rq(struct mlx5e_priv * priv)1576 static void mlx5e_close_drop_rq(struct mlx5e_priv *priv)
1577 {
1578 mlx5e_disable_rq(&priv->drop_rq);
1579 mlx5e_destroy_rq(&priv->drop_rq);
1580 mlx5e_disable_cq(&priv->drop_rq.cq);
1581 mlx5e_destroy_cq(&priv->drop_rq.cq);
1582 }
1583
mlx5e_create_tis(struct mlx5e_priv * priv,int tc)1584 static int mlx5e_create_tis(struct mlx5e_priv *priv, int tc)
1585 {
1586 struct mlx5_core_dev *mdev = priv->mdev;
1587 u32 in[MLX5_ST_SZ_DW(create_tis_in)];
1588 void *tisc = MLX5_ADDR_OF(create_tis_in, in, ctx);
1589
1590 memset(in, 0, sizeof(in));
1591
1592 MLX5_SET(tisc, tisc, prio, tc);
1593 MLX5_SET(tisc, tisc, transport_domain, priv->tdn);
1594
1595 return mlx5_core_create_tis(mdev, in, sizeof(in), &priv->tisn[tc]);
1596 }
1597
mlx5e_destroy_tis(struct mlx5e_priv * priv,int tc)1598 static void mlx5e_destroy_tis(struct mlx5e_priv *priv, int tc)
1599 {
1600 mlx5_core_destroy_tis(priv->mdev, priv->tisn[tc]);
1601 }
1602
mlx5e_create_tises(struct mlx5e_priv * priv)1603 static int mlx5e_create_tises(struct mlx5e_priv *priv)
1604 {
1605 int err;
1606 int tc;
1607
1608 for (tc = 0; tc < priv->params.num_tc; tc++) {
1609 err = mlx5e_create_tis(priv, tc);
1610 if (err)
1611 goto err_close_tises;
1612 }
1613
1614 return 0;
1615
1616 err_close_tises:
1617 for (tc--; tc >= 0; tc--)
1618 mlx5e_destroy_tis(priv, tc);
1619
1620 return err;
1621 }
1622
mlx5e_destroy_tises(struct mlx5e_priv * priv)1623 static void mlx5e_destroy_tises(struct mlx5e_priv *priv)
1624 {
1625 int tc;
1626
1627 for (tc = 0; tc < priv->params.num_tc; tc++)
1628 mlx5e_destroy_tis(priv, tc);
1629 }
1630
mlx5e_build_tir_ctx(struct mlx5e_priv * priv,u32 * tirc,int tt)1631 static void mlx5e_build_tir_ctx(struct mlx5e_priv *priv, u32 *tirc, int tt)
1632 {
1633 void *hfso = MLX5_ADDR_OF(tirc, tirc, rx_hash_field_selector_outer);
1634
1635 MLX5_SET(tirc, tirc, transport_domain, priv->tdn);
1636
1637 #define MLX5_HASH_IP (MLX5_HASH_FIELD_SEL_SRC_IP |\
1638 MLX5_HASH_FIELD_SEL_DST_IP)
1639
1640 #define MLX5_HASH_IP_L4PORTS (MLX5_HASH_FIELD_SEL_SRC_IP |\
1641 MLX5_HASH_FIELD_SEL_DST_IP |\
1642 MLX5_HASH_FIELD_SEL_L4_SPORT |\
1643 MLX5_HASH_FIELD_SEL_L4_DPORT)
1644
1645 #define MLX5_HASH_IP_IPSEC_SPI (MLX5_HASH_FIELD_SEL_SRC_IP |\
1646 MLX5_HASH_FIELD_SEL_DST_IP |\
1647 MLX5_HASH_FIELD_SEL_IPSEC_SPI)
1648
1649 mlx5e_build_tir_ctx_lro(tirc, priv);
1650
1651 MLX5_SET(tirc, tirc, disp_type, MLX5_TIRC_DISP_TYPE_INDIRECT);
1652
1653 switch (tt) {
1654 case MLX5E_TT_ANY:
1655 MLX5_SET(tirc, tirc, indirect_table,
1656 priv->rqtn[MLX5E_SINGLE_RQ_RQT]);
1657 MLX5_SET(tirc, tirc, rx_hash_fn, MLX5_RX_HASH_FN_INVERTED_XOR8);
1658 break;
1659 default:
1660 MLX5_SET(tirc, tirc, indirect_table,
1661 priv->rqtn[MLX5E_INDIRECTION_RQT]);
1662 MLX5_SET(tirc, tirc, rx_hash_fn,
1663 mlx5e_rx_hash_fn(priv->params.rss_hfunc));
1664 if (priv->params.rss_hfunc == ETH_RSS_HASH_TOP) {
1665 void *rss_key = MLX5_ADDR_OF(tirc, tirc,
1666 rx_hash_toeplitz_key);
1667 size_t len = MLX5_FLD_SZ_BYTES(tirc,
1668 rx_hash_toeplitz_key);
1669
1670 MLX5_SET(tirc, tirc, rx_hash_symmetric, 1);
1671 memcpy(rss_key, priv->params.toeplitz_hash_key, len);
1672 }
1673 break;
1674 }
1675
1676 switch (tt) {
1677 case MLX5E_TT_IPV4_TCP:
1678 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1679 MLX5_L3_PROT_TYPE_IPV4);
1680 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
1681 MLX5_L4_PROT_TYPE_TCP);
1682 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1683 MLX5_HASH_IP_L4PORTS);
1684 break;
1685
1686 case MLX5E_TT_IPV6_TCP:
1687 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1688 MLX5_L3_PROT_TYPE_IPV6);
1689 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
1690 MLX5_L4_PROT_TYPE_TCP);
1691 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1692 MLX5_HASH_IP_L4PORTS);
1693 break;
1694
1695 case MLX5E_TT_IPV4_UDP:
1696 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1697 MLX5_L3_PROT_TYPE_IPV4);
1698 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
1699 MLX5_L4_PROT_TYPE_UDP);
1700 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1701 MLX5_HASH_IP_L4PORTS);
1702 break;
1703
1704 case MLX5E_TT_IPV6_UDP:
1705 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1706 MLX5_L3_PROT_TYPE_IPV6);
1707 MLX5_SET(rx_hash_field_select, hfso, l4_prot_type,
1708 MLX5_L4_PROT_TYPE_UDP);
1709 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1710 MLX5_HASH_IP_L4PORTS);
1711 break;
1712
1713 case MLX5E_TT_IPV4_IPSEC_AH:
1714 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1715 MLX5_L3_PROT_TYPE_IPV4);
1716 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1717 MLX5_HASH_IP_IPSEC_SPI);
1718 break;
1719
1720 case MLX5E_TT_IPV6_IPSEC_AH:
1721 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1722 MLX5_L3_PROT_TYPE_IPV6);
1723 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1724 MLX5_HASH_IP_IPSEC_SPI);
1725 break;
1726
1727 case MLX5E_TT_IPV4_IPSEC_ESP:
1728 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1729 MLX5_L3_PROT_TYPE_IPV4);
1730 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1731 MLX5_HASH_IP_IPSEC_SPI);
1732 break;
1733
1734 case MLX5E_TT_IPV6_IPSEC_ESP:
1735 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1736 MLX5_L3_PROT_TYPE_IPV6);
1737 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1738 MLX5_HASH_IP_IPSEC_SPI);
1739 break;
1740
1741 case MLX5E_TT_IPV4:
1742 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1743 MLX5_L3_PROT_TYPE_IPV4);
1744 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1745 MLX5_HASH_IP);
1746 break;
1747
1748 case MLX5E_TT_IPV6:
1749 MLX5_SET(rx_hash_field_select, hfso, l3_prot_type,
1750 MLX5_L3_PROT_TYPE_IPV6);
1751 MLX5_SET(rx_hash_field_select, hfso, selected_fields,
1752 MLX5_HASH_IP);
1753 break;
1754 }
1755 }
1756
mlx5e_create_tir(struct mlx5e_priv * priv,int tt)1757 static int mlx5e_create_tir(struct mlx5e_priv *priv, int tt)
1758 {
1759 struct mlx5_core_dev *mdev = priv->mdev;
1760 u32 *in;
1761 void *tirc;
1762 int inlen;
1763 int err;
1764
1765 inlen = MLX5_ST_SZ_BYTES(create_tir_in);
1766 in = mlx5_vzalloc(inlen);
1767 if (!in)
1768 return -ENOMEM;
1769
1770 tirc = MLX5_ADDR_OF(create_tir_in, in, ctx);
1771
1772 mlx5e_build_tir_ctx(priv, tirc, tt);
1773
1774 err = mlx5_core_create_tir(mdev, in, inlen, &priv->tirn[tt]);
1775
1776 kvfree(in);
1777
1778 return err;
1779 }
1780
mlx5e_destroy_tir(struct mlx5e_priv * priv,int tt)1781 static void mlx5e_destroy_tir(struct mlx5e_priv *priv, int tt)
1782 {
1783 mlx5_core_destroy_tir(priv->mdev, priv->tirn[tt]);
1784 }
1785
mlx5e_create_tirs(struct mlx5e_priv * priv)1786 static int mlx5e_create_tirs(struct mlx5e_priv *priv)
1787 {
1788 int err;
1789 int i;
1790
1791 for (i = 0; i < MLX5E_NUM_TT; i++) {
1792 err = mlx5e_create_tir(priv, i);
1793 if (err)
1794 goto err_destroy_tirs;
1795 }
1796
1797 return 0;
1798
1799 err_destroy_tirs:
1800 for (i--; i >= 0; i--)
1801 mlx5e_destroy_tir(priv, i);
1802
1803 return err;
1804 }
1805
mlx5e_destroy_tirs(struct mlx5e_priv * priv)1806 static void mlx5e_destroy_tirs(struct mlx5e_priv *priv)
1807 {
1808 int i;
1809
1810 for (i = 0; i < MLX5E_NUM_TT; i++)
1811 mlx5e_destroy_tir(priv, i);
1812 }
1813
1814 static struct rtnl_link_stats64 *
mlx5e_get_stats(struct net_device * dev,struct rtnl_link_stats64 * stats)1815 mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats)
1816 {
1817 struct mlx5e_priv *priv = netdev_priv(dev);
1818 struct mlx5e_vport_stats *vstats = &priv->stats.vport;
1819
1820 stats->rx_packets = vstats->rx_packets;
1821 stats->rx_bytes = vstats->rx_bytes;
1822 stats->tx_packets = vstats->tx_packets;
1823 stats->tx_bytes = vstats->tx_bytes;
1824 stats->multicast = vstats->rx_multicast_packets +
1825 vstats->tx_multicast_packets;
1826 stats->tx_errors = vstats->tx_error_packets;
1827 stats->rx_errors = vstats->rx_error_packets;
1828 stats->tx_dropped = vstats->tx_queue_dropped;
1829 stats->rx_crc_errors = 0;
1830 stats->rx_length_errors = 0;
1831
1832 return stats;
1833 }
1834
mlx5e_set_rx_mode(struct net_device * dev)1835 static void mlx5e_set_rx_mode(struct net_device *dev)
1836 {
1837 struct mlx5e_priv *priv = netdev_priv(dev);
1838
1839 schedule_work(&priv->set_rx_mode_work);
1840 }
1841
mlx5e_set_mac(struct net_device * netdev,void * addr)1842 static int mlx5e_set_mac(struct net_device *netdev, void *addr)
1843 {
1844 struct mlx5e_priv *priv = netdev_priv(netdev);
1845 struct sockaddr *saddr = addr;
1846
1847 if (!is_valid_ether_addr(saddr->sa_data))
1848 return -EADDRNOTAVAIL;
1849
1850 netif_addr_lock_bh(netdev);
1851 ether_addr_copy(netdev->dev_addr, saddr->sa_data);
1852 netif_addr_unlock_bh(netdev);
1853
1854 schedule_work(&priv->set_rx_mode_work);
1855
1856 return 0;
1857 }
1858
mlx5e_set_features(struct net_device * netdev,netdev_features_t features)1859 static int mlx5e_set_features(struct net_device *netdev,
1860 netdev_features_t features)
1861 {
1862 struct mlx5e_priv *priv = netdev_priv(netdev);
1863 int err = 0;
1864 netdev_features_t changes = features ^ netdev->features;
1865
1866 mutex_lock(&priv->state_lock);
1867
1868 if (changes & NETIF_F_LRO) {
1869 bool was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
1870
1871 if (was_opened)
1872 mlx5e_close_locked(priv->netdev);
1873
1874 priv->params.lro_en = !!(features & NETIF_F_LRO);
1875 mlx5e_modify_tir_lro(priv, MLX5E_TT_IPV4_TCP);
1876 mlx5e_modify_tir_lro(priv, MLX5E_TT_IPV6_TCP);
1877
1878 if (was_opened)
1879 err = mlx5e_open_locked(priv->netdev);
1880 }
1881
1882 mutex_unlock(&priv->state_lock);
1883
1884 if (changes & NETIF_F_HW_VLAN_CTAG_FILTER) {
1885 if (features & NETIF_F_HW_VLAN_CTAG_FILTER)
1886 mlx5e_enable_vlan_filter(priv);
1887 else
1888 mlx5e_disable_vlan_filter(priv);
1889 }
1890
1891 return err;
1892 }
1893
1894 #define MXL5_HW_MIN_MTU 64
1895 #define MXL5E_MIN_MTU (MXL5_HW_MIN_MTU + ETH_FCS_LEN)
1896
mlx5e_change_mtu(struct net_device * netdev,int new_mtu)1897 static int mlx5e_change_mtu(struct net_device *netdev, int new_mtu)
1898 {
1899 struct mlx5e_priv *priv = netdev_priv(netdev);
1900 struct mlx5_core_dev *mdev = priv->mdev;
1901 bool was_opened;
1902 u16 max_mtu;
1903 u16 min_mtu;
1904 int err = 0;
1905
1906 mlx5_query_port_max_mtu(mdev, &max_mtu, 1);
1907
1908 max_mtu = MLX5E_HW2SW_MTU(max_mtu);
1909 min_mtu = MLX5E_HW2SW_MTU(MXL5E_MIN_MTU);
1910
1911 if (new_mtu > max_mtu || new_mtu < min_mtu) {
1912 netdev_err(netdev,
1913 "%s: Bad MTU (%d), valid range is: [%d..%d]\n",
1914 __func__, new_mtu, min_mtu, max_mtu);
1915 return -EINVAL;
1916 }
1917
1918 mutex_lock(&priv->state_lock);
1919
1920 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
1921 if (was_opened)
1922 mlx5e_close_locked(netdev);
1923
1924 netdev->mtu = new_mtu;
1925
1926 if (was_opened)
1927 err = mlx5e_open_locked(netdev);
1928
1929 mutex_unlock(&priv->state_lock);
1930
1931 return err;
1932 }
1933
1934 static struct net_device_ops mlx5e_netdev_ops = {
1935 .ndo_open = mlx5e_open,
1936 .ndo_stop = mlx5e_close,
1937 .ndo_start_xmit = mlx5e_xmit,
1938 .ndo_get_stats64 = mlx5e_get_stats,
1939 .ndo_set_rx_mode = mlx5e_set_rx_mode,
1940 .ndo_set_mac_address = mlx5e_set_mac,
1941 .ndo_vlan_rx_add_vid = mlx5e_vlan_rx_add_vid,
1942 .ndo_vlan_rx_kill_vid = mlx5e_vlan_rx_kill_vid,
1943 .ndo_set_features = mlx5e_set_features,
1944 .ndo_change_mtu = mlx5e_change_mtu,
1945 };
1946
mlx5e_check_required_hca_cap(struct mlx5_core_dev * mdev)1947 static int mlx5e_check_required_hca_cap(struct mlx5_core_dev *mdev)
1948 {
1949 if (MLX5_CAP_GEN(mdev, port_type) != MLX5_CAP_PORT_TYPE_ETH)
1950 return -ENOTSUPP;
1951 if (!MLX5_CAP_GEN(mdev, eth_net_offloads) ||
1952 !MLX5_CAP_GEN(mdev, nic_flow_table) ||
1953 !MLX5_CAP_ETH(mdev, csum_cap) ||
1954 !MLX5_CAP_ETH(mdev, max_lso_cap) ||
1955 !MLX5_CAP_ETH(mdev, vlan_cap) ||
1956 !MLX5_CAP_ETH(mdev, rss_ind_tbl_cap) ||
1957 MLX5_CAP_FLOWTABLE(mdev,
1958 flow_table_properties_nic_receive.max_ft_level)
1959 < 3) {
1960 mlx5_core_warn(mdev,
1961 "Not creating net device, some required device capabilities are missing\n");
1962 return -ENOTSUPP;
1963 }
1964 if (!MLX5_CAP_ETH(mdev, self_lb_en_modifiable))
1965 mlx5_core_warn(mdev, "Self loop back prevention is not supported\n");
1966
1967 return 0;
1968 }
1969
mlx5e_get_max_inline_cap(struct mlx5_core_dev * mdev)1970 u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev)
1971 {
1972 int bf_buf_size = (1 << MLX5_CAP_GEN(mdev, log_bf_reg_size)) / 2;
1973
1974 return bf_buf_size -
1975 sizeof(struct mlx5e_tx_wqe) +
1976 2 /*sizeof(mlx5e_tx_wqe.inline_hdr_start)*/;
1977 }
1978
mlx5e_build_netdev_priv(struct mlx5_core_dev * mdev,struct net_device * netdev,int num_channels)1979 static void mlx5e_build_netdev_priv(struct mlx5_core_dev *mdev,
1980 struct net_device *netdev,
1981 int num_channels)
1982 {
1983 struct mlx5e_priv *priv = netdev_priv(netdev);
1984 int i;
1985
1986 priv->params.log_sq_size =
1987 MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE;
1988 priv->params.log_rq_size =
1989 MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE;
1990 priv->params.rx_cq_moderation_usec =
1991 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC;
1992 priv->params.rx_cq_moderation_pkts =
1993 MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS;
1994 priv->params.tx_cq_moderation_usec =
1995 MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC;
1996 priv->params.tx_cq_moderation_pkts =
1997 MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS;
1998 priv->params.tx_max_inline = mlx5e_get_max_inline_cap(mdev);
1999 priv->params.min_rx_wqes =
2000 MLX5E_PARAMS_DEFAULT_MIN_RX_WQES;
2001 priv->params.num_tc = 1;
2002 priv->params.default_vlan_prio = 0;
2003 priv->params.rss_hfunc = ETH_RSS_HASH_XOR;
2004
2005 netdev_rss_key_fill(priv->params.toeplitz_hash_key,
2006 sizeof(priv->params.toeplitz_hash_key));
2007
2008 for (i = 0; i < MLX5E_INDIR_RQT_SIZE; i++)
2009 priv->params.indirection_rqt[i] = i % num_channels;
2010
2011 priv->params.lro_wqe_sz =
2012 MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ;
2013
2014 priv->mdev = mdev;
2015 priv->netdev = netdev;
2016 priv->params.num_channels = num_channels;
2017 priv->default_vlan_prio = priv->params.default_vlan_prio;
2018
2019 spin_lock_init(&priv->async_events_spinlock);
2020 mutex_init(&priv->state_lock);
2021
2022 INIT_WORK(&priv->update_carrier_work, mlx5e_update_carrier_work);
2023 INIT_WORK(&priv->set_rx_mode_work, mlx5e_set_rx_mode_work);
2024 INIT_DELAYED_WORK(&priv->update_stats_work, mlx5e_update_stats_work);
2025 }
2026
mlx5e_set_netdev_dev_addr(struct net_device * netdev)2027 static void mlx5e_set_netdev_dev_addr(struct net_device *netdev)
2028 {
2029 struct mlx5e_priv *priv = netdev_priv(netdev);
2030
2031 mlx5_query_nic_vport_mac_address(priv->mdev, netdev->dev_addr);
2032 }
2033
mlx5e_build_netdev(struct net_device * netdev)2034 static void mlx5e_build_netdev(struct net_device *netdev)
2035 {
2036 struct mlx5e_priv *priv = netdev_priv(netdev);
2037 struct mlx5_core_dev *mdev = priv->mdev;
2038
2039 SET_NETDEV_DEV(netdev, &mdev->pdev->dev);
2040
2041 if (priv->params.num_tc > 1)
2042 mlx5e_netdev_ops.ndo_select_queue = mlx5e_select_queue;
2043
2044 netdev->netdev_ops = &mlx5e_netdev_ops;
2045 netdev->watchdog_timeo = 15 * HZ;
2046
2047 netdev->ethtool_ops = &mlx5e_ethtool_ops;
2048
2049 netdev->vlan_features |= NETIF_F_SG;
2050 netdev->vlan_features |= NETIF_F_IP_CSUM;
2051 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
2052 netdev->vlan_features |= NETIF_F_GRO;
2053 netdev->vlan_features |= NETIF_F_TSO;
2054 netdev->vlan_features |= NETIF_F_TSO6;
2055 netdev->vlan_features |= NETIF_F_RXCSUM;
2056 netdev->vlan_features |= NETIF_F_RXHASH;
2057
2058 if (!!MLX5_CAP_ETH(mdev, lro_cap))
2059 netdev->vlan_features |= NETIF_F_LRO;
2060
2061 netdev->hw_features = netdev->vlan_features;
2062 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX;
2063 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX;
2064 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
2065
2066 netdev->features = netdev->hw_features;
2067 if (!priv->params.lro_en)
2068 netdev->features &= ~NETIF_F_LRO;
2069
2070 netdev->features |= NETIF_F_HIGHDMA;
2071
2072 netdev->priv_flags |= IFF_UNICAST_FLT;
2073
2074 mlx5e_set_netdev_dev_addr(netdev);
2075 }
2076
mlx5e_create_mkey(struct mlx5e_priv * priv,u32 pdn,struct mlx5_core_mr * mr)2077 static int mlx5e_create_mkey(struct mlx5e_priv *priv, u32 pdn,
2078 struct mlx5_core_mr *mr)
2079 {
2080 struct mlx5_core_dev *mdev = priv->mdev;
2081 struct mlx5_create_mkey_mbox_in *in;
2082 int err;
2083
2084 in = mlx5_vzalloc(sizeof(*in));
2085 if (!in)
2086 return -ENOMEM;
2087
2088 in->seg.flags = MLX5_PERM_LOCAL_WRITE |
2089 MLX5_PERM_LOCAL_READ |
2090 MLX5_ACCESS_MODE_PA;
2091 in->seg.flags_pd = cpu_to_be32(pdn | MLX5_MKEY_LEN64);
2092 in->seg.qpn_mkey7_0 = cpu_to_be32(0xffffff << 8);
2093
2094 err = mlx5_core_create_mkey(mdev, mr, in, sizeof(*in), NULL, NULL,
2095 NULL);
2096
2097 kvfree(in);
2098
2099 return err;
2100 }
2101
mlx5e_create_netdev(struct mlx5_core_dev * mdev)2102 static void *mlx5e_create_netdev(struct mlx5_core_dev *mdev)
2103 {
2104 struct net_device *netdev;
2105 struct mlx5e_priv *priv;
2106 int nch = mlx5e_get_max_num_channels(mdev);
2107 int err;
2108
2109 if (mlx5e_check_required_hca_cap(mdev))
2110 return NULL;
2111
2112 netdev = alloc_etherdev_mqs(sizeof(struct mlx5e_priv), nch, nch);
2113 if (!netdev) {
2114 mlx5_core_err(mdev, "alloc_etherdev_mqs() failed\n");
2115 return NULL;
2116 }
2117
2118 mlx5e_build_netdev_priv(mdev, netdev, nch);
2119 mlx5e_build_netdev(netdev);
2120
2121 netif_carrier_off(netdev);
2122
2123 priv = netdev_priv(netdev);
2124
2125 err = mlx5_alloc_map_uar(mdev, &priv->cq_uar);
2126 if (err) {
2127 mlx5_core_err(mdev, "alloc_map uar failed, %d\n", err);
2128 goto err_free_netdev;
2129 }
2130
2131 err = mlx5_core_alloc_pd(mdev, &priv->pdn);
2132 if (err) {
2133 mlx5_core_err(mdev, "alloc pd failed, %d\n", err);
2134 goto err_unmap_free_uar;
2135 }
2136
2137 err = mlx5_alloc_transport_domain(mdev, &priv->tdn);
2138 if (err) {
2139 mlx5_core_err(mdev, "alloc td failed, %d\n", err);
2140 goto err_dealloc_pd;
2141 }
2142
2143 err = mlx5e_create_mkey(priv, priv->pdn, &priv->mr);
2144 if (err) {
2145 mlx5_core_err(mdev, "create mkey failed, %d\n", err);
2146 goto err_dealloc_transport_domain;
2147 }
2148
2149 err = mlx5e_create_tises(priv);
2150 if (err) {
2151 mlx5_core_warn(mdev, "create tises failed, %d\n", err);
2152 goto err_destroy_mkey;
2153 }
2154
2155 err = mlx5e_open_drop_rq(priv);
2156 if (err) {
2157 mlx5_core_err(mdev, "open drop rq failed, %d\n", err);
2158 goto err_destroy_tises;
2159 }
2160
2161 err = mlx5e_create_rqt(priv, MLX5E_INDIRECTION_RQT);
2162 if (err) {
2163 mlx5_core_warn(mdev, "create rqt(INDIR) failed, %d\n", err);
2164 goto err_close_drop_rq;
2165 }
2166
2167 err = mlx5e_create_rqt(priv, MLX5E_SINGLE_RQ_RQT);
2168 if (err) {
2169 mlx5_core_warn(mdev, "create rqt(SINGLE) failed, %d\n", err);
2170 goto err_destroy_rqt_indir;
2171 }
2172
2173 err = mlx5e_create_tirs(priv);
2174 if (err) {
2175 mlx5_core_warn(mdev, "create tirs failed, %d\n", err);
2176 goto err_destroy_rqt_single;
2177 }
2178
2179 err = mlx5e_create_flow_tables(priv);
2180 if (err) {
2181 mlx5_core_warn(mdev, "create flow tables failed, %d\n", err);
2182 goto err_destroy_tirs;
2183 }
2184
2185 mlx5e_init_eth_addr(priv);
2186
2187 err = register_netdev(netdev);
2188 if (err) {
2189 mlx5_core_err(mdev, "register_netdev failed, %d\n", err);
2190 goto err_destroy_flow_tables;
2191 }
2192
2193 mlx5e_enable_async_events(priv);
2194 schedule_work(&priv->set_rx_mode_work);
2195
2196 return priv;
2197
2198 err_destroy_flow_tables:
2199 mlx5e_destroy_flow_tables(priv);
2200
2201 err_destroy_tirs:
2202 mlx5e_destroy_tirs(priv);
2203
2204 err_destroy_rqt_single:
2205 mlx5e_destroy_rqt(priv, MLX5E_SINGLE_RQ_RQT);
2206
2207 err_destroy_rqt_indir:
2208 mlx5e_destroy_rqt(priv, MLX5E_INDIRECTION_RQT);
2209
2210 err_close_drop_rq:
2211 mlx5e_close_drop_rq(priv);
2212
2213 err_destroy_tises:
2214 mlx5e_destroy_tises(priv);
2215
2216 err_destroy_mkey:
2217 mlx5_core_destroy_mkey(mdev, &priv->mr);
2218
2219 err_dealloc_transport_domain:
2220 mlx5_dealloc_transport_domain(mdev, priv->tdn);
2221
2222 err_dealloc_pd:
2223 mlx5_core_dealloc_pd(mdev, priv->pdn);
2224
2225 err_unmap_free_uar:
2226 mlx5_unmap_free_uar(mdev, &priv->cq_uar);
2227
2228 err_free_netdev:
2229 free_netdev(netdev);
2230
2231 return NULL;
2232 }
2233
mlx5e_destroy_netdev(struct mlx5_core_dev * mdev,void * vpriv)2234 static void mlx5e_destroy_netdev(struct mlx5_core_dev *mdev, void *vpriv)
2235 {
2236 struct mlx5e_priv *priv = vpriv;
2237 struct net_device *netdev = priv->netdev;
2238
2239 set_bit(MLX5E_STATE_DESTROYING, &priv->state);
2240
2241 schedule_work(&priv->set_rx_mode_work);
2242 mlx5e_disable_async_events(priv);
2243 flush_scheduled_work();
2244 unregister_netdev(netdev);
2245 mlx5e_destroy_flow_tables(priv);
2246 mlx5e_destroy_tirs(priv);
2247 mlx5e_destroy_rqt(priv, MLX5E_SINGLE_RQ_RQT);
2248 mlx5e_destroy_rqt(priv, MLX5E_INDIRECTION_RQT);
2249 mlx5e_close_drop_rq(priv);
2250 mlx5e_destroy_tises(priv);
2251 mlx5_core_destroy_mkey(priv->mdev, &priv->mr);
2252 mlx5_dealloc_transport_domain(priv->mdev, priv->tdn);
2253 mlx5_core_dealloc_pd(priv->mdev, priv->pdn);
2254 mlx5_unmap_free_uar(priv->mdev, &priv->cq_uar);
2255 free_netdev(netdev);
2256 }
2257
mlx5e_get_netdev(void * vpriv)2258 static void *mlx5e_get_netdev(void *vpriv)
2259 {
2260 struct mlx5e_priv *priv = vpriv;
2261
2262 return priv->netdev;
2263 }
2264
2265 static struct mlx5_interface mlx5e_interface = {
2266 .add = mlx5e_create_netdev,
2267 .remove = mlx5e_destroy_netdev,
2268 .event = mlx5e_async_event,
2269 .protocol = MLX5_INTERFACE_PROTOCOL_ETH,
2270 .get_dev = mlx5e_get_netdev,
2271 };
2272
mlx5e_init(void)2273 void mlx5e_init(void)
2274 {
2275 mlx5_register_interface(&mlx5e_interface);
2276 }
2277
mlx5e_cleanup(void)2278 void mlx5e_cleanup(void)
2279 {
2280 mlx5_unregister_interface(&mlx5e_interface);
2281 }
2282