]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/net/ethernet/mellanox/mlx4/en_tx.c
drop_monitor: convert to modular building
[mirror_ubuntu-eoan-kernel.git] / drivers / net / ethernet / mellanox / mlx4 / en_tx.c
CommitLineData
c27a02cd
YP
1/*
2 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33
34#include <asm/page.h>
35#include <linux/mlx4/cq.h>
5a0e3ad6 36#include <linux/slab.h>
c27a02cd
YP
37#include <linux/mlx4/qp.h>
38#include <linux/skbuff.h>
39#include <linux/if_vlan.h>
40#include <linux/vmalloc.h>
fa37a958 41#include <linux/tcp.h>
6eb07caf 42#include <linux/moduleparam.h>
c27a02cd
YP
43
44#include "mlx4_en.h"
45
46enum {
47 MAX_INLINE = 104, /* 128 - 16 - 4 - 4 */
87a5c389 48 MAX_BF = 256,
c27a02cd
YP
49};
50
51static int inline_thold __read_mostly = MAX_INLINE;
52
53module_param_named(inline_thold, inline_thold, int, 0444);
af901ca1 54MODULE_PARM_DESC(inline_thold, "threshold for using inline data");
c27a02cd
YP
55
56int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,
87a5c389 57 struct mlx4_en_tx_ring *ring, int qpn, u32 size,
c27a02cd
YP
58 u16 stride)
59{
60 struct mlx4_en_dev *mdev = priv->mdev;
61 int tmp;
62 int err;
63
64 ring->size = size;
65 ring->size_mask = size - 1;
66 ring->stride = stride;
67
68 inline_thold = min(inline_thold, MAX_INLINE);
69
c27a02cd
YP
70 tmp = size * sizeof(struct mlx4_en_tx_info);
71 ring->tx_info = vmalloc(tmp);
e404decb 72 if (!ring->tx_info)
c27a02cd 73 return -ENOMEM;
e404decb 74
453a6082 75 en_dbg(DRV, priv, "Allocated tx_info ring at addr:%p size:%d\n",
c27a02cd
YP
76 ring->tx_info, tmp);
77
78 ring->bounce_buf = kmalloc(MAX_DESC_SIZE, GFP_KERNEL);
79 if (!ring->bounce_buf) {
c27a02cd
YP
80 err = -ENOMEM;
81 goto err_tx;
82 }
83 ring->buf_size = ALIGN(size * ring->stride, MLX4_EN_PAGE_SIZE);
84
85 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size,
86 2 * PAGE_SIZE);
87 if (err) {
453a6082 88 en_err(priv, "Failed allocating hwq resources\n");
c27a02cd
YP
89 goto err_bounce;
90 }
91
92 err = mlx4_en_map_buffer(&ring->wqres.buf);
93 if (err) {
453a6082 94 en_err(priv, "Failed to map TX buffer\n");
c27a02cd
YP
95 goto err_hwq_res;
96 }
97
98 ring->buf = ring->wqres.buf.direct.buf;
99
453a6082
YP
100 en_dbg(DRV, priv, "Allocated TX ring (addr:%p) - buf:%p size:%d "
101 "buf_size:%d dma:%llx\n", ring, ring->buf, ring->size,
102 ring->buf_size, (unsigned long long) ring->wqres.buf.direct.map);
c27a02cd 103
87a5c389 104 ring->qpn = qpn;
c27a02cd
YP
105 err = mlx4_qp_alloc(mdev->dev, ring->qpn, &ring->qp);
106 if (err) {
453a6082 107 en_err(priv, "Failed allocating qp %d\n", ring->qpn);
87a5c389 108 goto err_map;
c27a02cd 109 }
966508f7 110 ring->qp.event = mlx4_en_sqp_event;
c27a02cd 111
87a5c389
YP
112 err = mlx4_bf_alloc(mdev->dev, &ring->bf);
113 if (err) {
114 en_dbg(DRV, priv, "working without blueflame (%d)", err);
115 ring->bf.uar = &mdev->priv_uar;
116 ring->bf.uar->map = mdev->uar_map;
117 ring->bf_enabled = false;
118 } else
119 ring->bf_enabled = true;
120
c27a02cd
YP
121 return 0;
122
c27a02cd
YP
123err_map:
124 mlx4_en_unmap_buffer(&ring->wqres.buf);
125err_hwq_res:
126 mlx4_free_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
127err_bounce:
128 kfree(ring->bounce_buf);
129 ring->bounce_buf = NULL;
130err_tx:
131 vfree(ring->tx_info);
132 ring->tx_info = NULL;
133 return err;
134}
135
136void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv,
137 struct mlx4_en_tx_ring *ring)
138{
139 struct mlx4_en_dev *mdev = priv->mdev;
453a6082 140 en_dbg(DRV, priv, "Destroying tx ring, qpn: %d\n", ring->qpn);
c27a02cd 141
87a5c389
YP
142 if (ring->bf_enabled)
143 mlx4_bf_free(mdev->dev, &ring->bf);
c27a02cd
YP
144 mlx4_qp_remove(mdev->dev, &ring->qp);
145 mlx4_qp_free(mdev->dev, &ring->qp);
146 mlx4_qp_release_range(mdev->dev, ring->qpn, 1);
147 mlx4_en_unmap_buffer(&ring->wqres.buf);
148 mlx4_free_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
149 kfree(ring->bounce_buf);
150 ring->bounce_buf = NULL;
151 vfree(ring->tx_info);
152 ring->tx_info = NULL;
153}
154
155int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
156 struct mlx4_en_tx_ring *ring,
0e98b523 157 int cq, int user_prio)
c27a02cd
YP
158{
159 struct mlx4_en_dev *mdev = priv->mdev;
160 int err;
161
162 ring->cqn = cq;
163 ring->prod = 0;
164 ring->cons = 0xffffffff;
165 ring->last_nr_txbb = 1;
166 ring->poll_cnt = 0;
167 ring->blocked = 0;
168 memset(ring->tx_info, 0, ring->size * sizeof(struct mlx4_en_tx_info));
169 memset(ring->buf, 0, ring->buf_size);
170
171 ring->qp_state = MLX4_QP_STATE_RST;
c5d6136e 172 ring->doorbell_qpn = ring->qp.qpn << 8;
c27a02cd
YP
173
174 mlx4_en_fill_qp_context(priv, ring->size, ring->stride, 1, 0, ring->qpn,
0e98b523 175 ring->cqn, user_prio, &ring->context);
87a5c389
YP
176 if (ring->bf_enabled)
177 ring->context.usr_page = cpu_to_be32(ring->bf.uar->index);
c27a02cd
YP
178
179 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, &ring->context,
180 &ring->qp, &ring->qp_state);
181
182 return err;
183}
184
185void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
186 struct mlx4_en_tx_ring *ring)
187{
188 struct mlx4_en_dev *mdev = priv->mdev;
189
190 mlx4_qp_modify(mdev->dev, NULL, ring->qp_state,
191 MLX4_QP_STATE_RST, NULL, 0, 0, &ring->qp);
192}
193
194
195static u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
196 struct mlx4_en_tx_ring *ring,
197 int index, u8 owner)
198{
c27a02cd
YP
199 struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
200 struct mlx4_en_tx_desc *tx_desc = ring->buf + index * TXBB_SIZE;
201 struct mlx4_wqe_data_seg *data = (void *) tx_desc + tx_info->data_offset;
202 struct sk_buff *skb = tx_info->skb;
203 struct skb_frag_struct *frag;
204 void *end = ring->buf + ring->buf_size;
205 int frags = skb_shinfo(skb)->nr_frags;
206 int i;
207 __be32 *ptr = (__be32 *)tx_desc;
208 __be32 stamp = cpu_to_be32(STAMP_VAL | (!!owner << STAMP_SHIFT));
209
210 /* Optimize the common case when there are no wraparounds */
211 if (likely((void *) tx_desc + tx_info->nr_txbb * TXBB_SIZE <= end)) {
41efea5a
YP
212 if (!tx_info->inl) {
213 if (tx_info->linear) {
ebf8c9aa 214 dma_unmap_single(priv->ddev,
41efea5a 215 (dma_addr_t) be64_to_cpu(data->addr),
c27a02cd
YP
216 be32_to_cpu(data->byte_count),
217 PCI_DMA_TODEVICE);
41efea5a
YP
218 ++data;
219 }
c27a02cd 220
41efea5a
YP
221 for (i = 0; i < frags; i++) {
222 frag = &skb_shinfo(skb)->frags[i];
ebf8c9aa 223 dma_unmap_page(priv->ddev,
41efea5a 224 (dma_addr_t) be64_to_cpu(data[i].addr),
9e903e08 225 skb_frag_size(frag), PCI_DMA_TODEVICE);
41efea5a 226 }
c27a02cd
YP
227 }
228 /* Stamp the freed descriptor */
229 for (i = 0; i < tx_info->nr_txbb * TXBB_SIZE; i += STAMP_STRIDE) {
230 *ptr = stamp;
231 ptr += STAMP_DWORDS;
232 }
233
234 } else {
41efea5a
YP
235 if (!tx_info->inl) {
236 if ((void *) data >= end) {
43d620c8 237 data = ring->buf + ((void *)data - end);
41efea5a 238 }
c27a02cd 239
41efea5a 240 if (tx_info->linear) {
ebf8c9aa 241 dma_unmap_single(priv->ddev,
41efea5a 242 (dma_addr_t) be64_to_cpu(data->addr),
c27a02cd
YP
243 be32_to_cpu(data->byte_count),
244 PCI_DMA_TODEVICE);
41efea5a
YP
245 ++data;
246 }
c27a02cd 247
41efea5a
YP
248 for (i = 0; i < frags; i++) {
249 /* Check for wraparound before unmapping */
250 if ((void *) data >= end)
43d620c8 251 data = ring->buf;
41efea5a 252 frag = &skb_shinfo(skb)->frags[i];
ebf8c9aa 253 dma_unmap_page(priv->ddev,
c27a02cd 254 (dma_addr_t) be64_to_cpu(data->addr),
9e903e08 255 skb_frag_size(frag), PCI_DMA_TODEVICE);
eb4ad826 256 ++data;
41efea5a 257 }
c27a02cd
YP
258 }
259 /* Stamp the freed descriptor */
260 for (i = 0; i < tx_info->nr_txbb * TXBB_SIZE; i += STAMP_STRIDE) {
261 *ptr = stamp;
262 ptr += STAMP_DWORDS;
263 if ((void *) ptr >= end) {
264 ptr = ring->buf;
265 stamp ^= cpu_to_be32(0x80000000);
266 }
267 }
268
269 }
270 dev_kfree_skb_any(skb);
271 return tx_info->nr_txbb;
272}
273
274
275int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring)
276{
277 struct mlx4_en_priv *priv = netdev_priv(dev);
278 int cnt = 0;
279
280 /* Skip last polled descriptor */
281 ring->cons += ring->last_nr_txbb;
453a6082 282 en_dbg(DRV, priv, "Freeing Tx buf - cons:0x%x prod:0x%x\n",
c27a02cd
YP
283 ring->cons, ring->prod);
284
285 if ((u32) (ring->prod - ring->cons) > ring->size) {
286 if (netif_msg_tx_err(priv))
453a6082 287 en_warn(priv, "Tx consumer passed producer!\n");
c27a02cd
YP
288 return 0;
289 }
290
291 while (ring->cons != ring->prod) {
292 ring->last_nr_txbb = mlx4_en_free_tx_desc(priv, ring,
293 ring->cons & ring->size_mask,
294 !!(ring->cons & ring->size));
295 ring->cons += ring->last_nr_txbb;
296 cnt++;
297 }
298
299 if (cnt)
453a6082 300 en_dbg(DRV, priv, "Freed %d uncompleted tx descriptors\n", cnt);
c27a02cd
YP
301
302 return cnt;
303}
304
c27a02cd
YP
305static void mlx4_en_process_tx_cq(struct net_device *dev, struct mlx4_en_cq *cq)
306{
307 struct mlx4_en_priv *priv = netdev_priv(dev);
308 struct mlx4_cq *mcq = &cq->mcq;
309 struct mlx4_en_tx_ring *ring = &priv->tx_ring[cq->ring];
f0ab34f0 310 struct mlx4_cqe *cqe;
c27a02cd 311 u16 index;
f0ab34f0 312 u16 new_index, ring_index;
c27a02cd 313 u32 txbbs_skipped = 0;
f0ab34f0
YP
314 u32 cons_index = mcq->cons_index;
315 int size = cq->size;
316 u32 size_mask = ring->size_mask;
317 struct mlx4_cqe *buf = cq->buf;
5b263f53
YP
318 u32 packets = 0;
319 u32 bytes = 0;
c27a02cd
YP
320
321 if (!priv->port_up)
322 return;
323
f0ab34f0
YP
324 index = cons_index & size_mask;
325 cqe = &buf[index];
326 ring_index = ring->cons & size_mask;
327
328 /* Process all completed CQEs */
329 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
330 cons_index & size)) {
331 /*
332 * make sure we read the CQE after we read the
333 * ownership bit
334 */
335 rmb();
336
337 /* Skip over last polled CQE */
338 new_index = be16_to_cpu(cqe->wqe_index) & size_mask;
339
c27a02cd 340 do {
c27a02cd 341 txbbs_skipped += ring->last_nr_txbb;
f0ab34f0
YP
342 ring_index = (ring_index + ring->last_nr_txbb) & size_mask;
343 /* free next descriptor */
c27a02cd 344 ring->last_nr_txbb = mlx4_en_free_tx_desc(
f0ab34f0
YP
345 priv, ring, ring_index,
346 !!((ring->cons + txbbs_skipped) &
347 ring->size));
5b263f53
YP
348 packets++;
349 bytes += ring->tx_info[ring_index].nr_bytes;
f0ab34f0
YP
350 } while (ring_index != new_index);
351
352 ++cons_index;
353 index = cons_index & size_mask;
354 cqe = &buf[index];
355 }
c27a02cd 356
c27a02cd
YP
357
358 /*
359 * To prevent CQ overflow we first update CQ consumer and only then
360 * the ring consumer.
361 */
f0ab34f0 362 mcq->cons_index = cons_index;
c27a02cd
YP
363 mlx4_cq_set_ci(mcq);
364 wmb();
365 ring->cons += txbbs_skipped;
5b263f53 366 netdev_tx_completed_queue(ring->tx_queue, packets, bytes);
c27a02cd
YP
367
368 /* Wakeup Tx queue if this ring stopped it */
369 if (unlikely(ring->blocked)) {
c03ea21f
YP
370 if ((u32) (ring->prod - ring->cons) <=
371 ring->size - HEADROOM - MAX_DESC_TXBBS) {
c27a02cd 372 ring->blocked = 0;
5b263f53 373 netif_tx_wake_queue(ring->tx_queue);
c27a02cd
YP
374 priv->port_stats.wake_queue++;
375 }
376 }
377}
378
379void mlx4_en_tx_irq(struct mlx4_cq *mcq)
380{
381 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
382 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
c27a02cd 383
c27a02cd 384 mlx4_en_process_tx_cq(cq->dev, cq);
e22979d9 385 mlx4_en_arm_cq(priv, cq);
c27a02cd
YP
386}
387
388
c27a02cd
YP
389static struct mlx4_en_tx_desc *mlx4_en_bounce_to_desc(struct mlx4_en_priv *priv,
390 struct mlx4_en_tx_ring *ring,
391 u32 index,
392 unsigned int desc_size)
393{
394 u32 copy = (ring->size - index) * TXBB_SIZE;
395 int i;
396
397 for (i = desc_size - copy - 4; i >= 0; i -= 4) {
398 if ((i & (TXBB_SIZE - 1)) == 0)
399 wmb();
400
401 *((u32 *) (ring->buf + i)) =
402 *((u32 *) (ring->bounce_buf + copy + i));
403 }
404
405 for (i = copy - 4; i >= 4 ; i -= 4) {
406 if ((i & (TXBB_SIZE - 1)) == 0)
407 wmb();
408
409 *((u32 *) (ring->buf + index * TXBB_SIZE + i)) =
410 *((u32 *) (ring->bounce_buf + i));
411 }
412
413 /* Return real descriptor location */
414 return ring->buf + index * TXBB_SIZE;
415}
416
c27a02cd
YP
417static int is_inline(struct sk_buff *skb, void **pfrag)
418{
419 void *ptr;
420
421 if (inline_thold && !skb_is_gso(skb) && skb->len <= inline_thold) {
422 if (skb_shinfo(skb)->nr_frags == 1) {
311761c8 423 ptr = skb_frag_address_safe(&skb_shinfo(skb)->frags[0]);
c27a02cd
YP
424 if (unlikely(!ptr))
425 return 0;
426
427 if (pfrag)
428 *pfrag = ptr;
429
430 return 1;
431 } else if (unlikely(skb_shinfo(skb)->nr_frags))
432 return 0;
433 else
434 return 1;
435 }
436
437 return 0;
438}
439
440static int inline_size(struct sk_buff *skb)
441{
442 if (skb->len + CTRL_SIZE + sizeof(struct mlx4_wqe_inline_seg)
443 <= MLX4_INLINE_ALIGN)
444 return ALIGN(skb->len + CTRL_SIZE +
445 sizeof(struct mlx4_wqe_inline_seg), 16);
446 else
447 return ALIGN(skb->len + CTRL_SIZE + 2 *
448 sizeof(struct mlx4_wqe_inline_seg), 16);
449}
450
451static int get_real_size(struct sk_buff *skb, struct net_device *dev,
452 int *lso_header_size)
453{
454 struct mlx4_en_priv *priv = netdev_priv(dev);
c27a02cd
YP
455 int real_size;
456
457 if (skb_is_gso(skb)) {
458 *lso_header_size = skb_transport_offset(skb) + tcp_hdrlen(skb);
459 real_size = CTRL_SIZE + skb_shinfo(skb)->nr_frags * DS_SIZE +
460 ALIGN(*lso_header_size + 4, DS_SIZE);
461 if (unlikely(*lso_header_size != skb_headlen(skb))) {
462 /* We add a segment for the skb linear buffer only if
463 * it contains data */
464 if (*lso_header_size < skb_headlen(skb))
465 real_size += DS_SIZE;
466 else {
467 if (netif_msg_tx_err(priv))
453a6082 468 en_warn(priv, "Non-linear headers\n");
c27a02cd
YP
469 return 0;
470 }
471 }
c27a02cd
YP
472 } else {
473 *lso_header_size = 0;
474 if (!is_inline(skb, NULL))
475 real_size = CTRL_SIZE + (skb_shinfo(skb)->nr_frags + 1) * DS_SIZE;
476 else
477 real_size = inline_size(skb);
478 }
479
480 return real_size;
481}
482
483static void build_inline_wqe(struct mlx4_en_tx_desc *tx_desc, struct sk_buff *skb,
484 int real_size, u16 *vlan_tag, int tx_ind, void *fragptr)
485{
486 struct mlx4_wqe_inline_seg *inl = &tx_desc->inl;
487 int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - sizeof *inl;
488
489 if (skb->len <= spc) {
490 inl->byte_count = cpu_to_be32(1 << 31 | skb->len);
491 skb_copy_from_linear_data(skb, inl + 1, skb_headlen(skb));
492 if (skb_shinfo(skb)->nr_frags)
493 memcpy(((void *)(inl + 1)) + skb_headlen(skb), fragptr,
9e903e08 494 skb_frag_size(&skb_shinfo(skb)->frags[0]));
c27a02cd
YP
495
496 } else {
497 inl->byte_count = cpu_to_be32(1 << 31 | spc);
498 if (skb_headlen(skb) <= spc) {
499 skb_copy_from_linear_data(skb, inl + 1, skb_headlen(skb));
500 if (skb_headlen(skb) < spc) {
501 memcpy(((void *)(inl + 1)) + skb_headlen(skb),
502 fragptr, spc - skb_headlen(skb));
503 fragptr += spc - skb_headlen(skb);
504 }
505 inl = (void *) (inl + 1) + spc;
506 memcpy(((void *)(inl + 1)), fragptr, skb->len - spc);
507 } else {
508 skb_copy_from_linear_data(skb, inl + 1, spc);
509 inl = (void *) (inl + 1) + spc;
510 skb_copy_from_linear_data_offset(skb, spc, inl + 1,
511 skb_headlen(skb) - spc);
512 if (skb_shinfo(skb)->nr_frags)
513 memcpy(((void *)(inl + 1)) + skb_headlen(skb) - spc,
9e903e08 514 fragptr, skb_frag_size(&skb_shinfo(skb)->frags[0]));
c27a02cd
YP
515 }
516
517 wmb();
518 inl->byte_count = cpu_to_be32(1 << 31 | (skb->len - spc));
519 }
520 tx_desc->ctrl.vlan_tag = cpu_to_be16(*vlan_tag);
c140d769
AV
521 tx_desc->ctrl.ins_vlan = MLX4_WQE_CTRL_INS_VLAN *
522 (!!vlan_tx_tag_present(skb));
c27a02cd
YP
523 tx_desc->ctrl.fence_size = (real_size / 16) & 0x3f;
524}
525
f813cad8 526u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb)
c27a02cd 527{
f813cad8 528 u16 vlan_tag = 0;
c27a02cd 529
0e98b523 530 if (vlan_tx_tag_present(skb)) {
f813cad8
YP
531 vlan_tag = vlan_tx_tag_get(skb);
532 return MLX4_EN_NUM_TX_RINGS + (vlan_tag >> 13);
c27a02cd 533 }
f813cad8 534
897d7846 535 return skb_tx_hash(dev, skb);
c27a02cd
YP
536}
537
966684d5 538static void mlx4_bf_copy(void __iomem *dst, unsigned long *src, unsigned bytecnt)
87a5c389
YP
539{
540 __iowrite64_copy(dst, src, bytecnt / 8);
541}
542
61357325 543netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev)
c27a02cd
YP
544{
545 struct mlx4_en_priv *priv = netdev_priv(dev);
546 struct mlx4_en_dev *mdev = priv->mdev;
547 struct mlx4_en_tx_ring *ring;
c27a02cd
YP
548 struct mlx4_en_tx_desc *tx_desc;
549 struct mlx4_wqe_data_seg *data;
550 struct skb_frag_struct *frag;
551 struct mlx4_en_tx_info *tx_info;
e7c1c2c4 552 struct ethhdr *ethh;
c27a02cd
YP
553 int tx_ind = 0;
554 int nr_txbb;
555 int desc_size;
556 int real_size;
557 dma_addr_t dma;
87a5c389 558 u32 index, bf_index;
c27a02cd 559 __be32 op_own;
f813cad8 560 u16 vlan_tag = 0;
c27a02cd
YP
561 int i;
562 int lso_header_size;
563 void *fragptr;
87a5c389 564 bool bounce = false;
c27a02cd 565
3005ad40
YP
566 if (!priv->port_up)
567 goto tx_drop;
568
c27a02cd
YP
569 real_size = get_real_size(skb, dev, &lso_header_size);
570 if (unlikely(!real_size))
7e230913 571 goto tx_drop;
c27a02cd 572
25985edc 573 /* Align descriptor to TXBB size */
c27a02cd
YP
574 desc_size = ALIGN(real_size, TXBB_SIZE);
575 nr_txbb = desc_size / TXBB_SIZE;
576 if (unlikely(nr_txbb > MAX_DESC_TXBBS)) {
577 if (netif_msg_tx_err(priv))
453a6082 578 en_warn(priv, "Oversized header or SG list\n");
7e230913 579 goto tx_drop;
c27a02cd
YP
580 }
581
f813cad8 582 tx_ind = skb->queue_mapping;
c27a02cd 583 ring = &priv->tx_ring[tx_ind];
eab6d18d 584 if (vlan_tx_tag_present(skb))
f813cad8 585 vlan_tag = vlan_tx_tag_get(skb);
c27a02cd
YP
586
587 /* Check available TXBBs And 2K spare for prefetch */
588 if (unlikely(((int)(ring->prod - ring->cons)) >
589 ring->size - HEADROOM - MAX_DESC_TXBBS)) {
f813cad8 590 /* every full Tx ring stops queue */
5b263f53 591 netif_tx_stop_queue(ring->tx_queue);
c27a02cd
YP
592 ring->blocked = 1;
593 priv->port_stats.queue_stopped++;
594
c27a02cd
YP
595 return NETDEV_TX_BUSY;
596 }
597
c27a02cd
YP
598 /* Track current inflight packets for performance analysis */
599 AVG_PERF_COUNTER(priv->pstats.inflight_avg,
600 (u32) (ring->prod - ring->cons - 1));
601
602 /* Packet is good - grab an index and transmit it */
603 index = ring->prod & ring->size_mask;
87a5c389 604 bf_index = ring->prod;
c27a02cd
YP
605
606 /* See if we have enough space for whole descriptor TXBB for setting
607 * SW ownership on next descriptor; if not, use a bounce buffer. */
608 if (likely(index + nr_txbb <= ring->size))
609 tx_desc = ring->buf + index * TXBB_SIZE;
87a5c389 610 else {
c27a02cd 611 tx_desc = (struct mlx4_en_tx_desc *) ring->bounce_buf;
87a5c389
YP
612 bounce = true;
613 }
c27a02cd
YP
614
615 /* Save skb in tx_info ring */
616 tx_info = &ring->tx_info[index];
617 tx_info->skb = skb;
618 tx_info->nr_txbb = nr_txbb;
619
620 /* Prepare ctrl segement apart opcode+ownership, which depends on
621 * whether LSO is used */
622 tx_desc->ctrl.vlan_tag = cpu_to_be16(vlan_tag);
c140d769
AV
623 tx_desc->ctrl.ins_vlan = MLX4_WQE_CTRL_INS_VLAN *
624 !!vlan_tx_tag_present(skb);
c27a02cd 625 tx_desc->ctrl.fence_size = (real_size / 16) & 0x3f;
60d6fe99 626 tx_desc->ctrl.srcrb_flags = priv->ctrl_flags;
c27a02cd
YP
627 if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
628 tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
629 MLX4_WQE_CTRL_TCP_UDP_CSUM);
ad04378c 630 ring->tx_csum++;
c27a02cd
YP
631 }
632
5b4c4d36 633 /* Copy dst mac address to wqe */
62212171 634 ethh = (struct ethhdr *)skb->data;
18f973af
ED
635 tx_desc->ctrl.srcrb_flags16[0] = get_unaligned((__be16 *)ethh->h_dest);
636 tx_desc->ctrl.imm = get_unaligned((__be32 *)(ethh->h_dest + 2));
c27a02cd
YP
637 /* Handle LSO (TSO) packets */
638 if (lso_header_size) {
639 /* Mark opcode as LSO */
640 op_own = cpu_to_be32(MLX4_OPCODE_LSO | (1 << 6)) |
641 ((ring->prod & ring->size) ?
642 cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
643
644 /* Fill in the LSO prefix */
645 tx_desc->lso.mss_hdr_size = cpu_to_be32(
646 skb_shinfo(skb)->gso_size << 16 | lso_header_size);
647
648 /* Copy headers;
649 * note that we already verified that it is linear */
650 memcpy(tx_desc->lso.header, skb->data, lso_header_size);
651 data = ((void *) &tx_desc->lso +
652 ALIGN(lso_header_size + 4, DS_SIZE));
653
654 priv->port_stats.tso_packets++;
655 i = ((skb->len - lso_header_size) / skb_shinfo(skb)->gso_size) +
656 !!((skb->len - lso_header_size) % skb_shinfo(skb)->gso_size);
5b263f53 657 tx_info->nr_bytes = skb->len + (i - 1) * lso_header_size;
c27a02cd
YP
658 ring->packets += i;
659 } else {
660 /* Normal (Non LSO) packet */
661 op_own = cpu_to_be32(MLX4_OPCODE_SEND) |
662 ((ring->prod & ring->size) ?
663 cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
664 data = &tx_desc->data;
5b263f53 665 tx_info->nr_bytes = max_t(unsigned int, skb->len, ETH_ZLEN);
c27a02cd
YP
666 ring->packets++;
667
668 }
5b263f53
YP
669 ring->bytes += tx_info->nr_bytes;
670 netdev_tx_sent_queue(ring->tx_queue, tx_info->nr_bytes);
c27a02cd
YP
671 AVG_PERF_COUNTER(priv->pstats.tx_pktsz_avg, skb->len);
672
673
674 /* valid only for none inline segments */
675 tx_info->data_offset = (void *) data - (void *) tx_desc;
676
677 tx_info->linear = (lso_header_size < skb_headlen(skb) && !is_inline(skb, NULL)) ? 1 : 0;
678 data += skb_shinfo(skb)->nr_frags + tx_info->linear - 1;
679
680 if (!is_inline(skb, &fragptr)) {
681 /* Map fragments */
682 for (i = skb_shinfo(skb)->nr_frags - 1; i >= 0; i--) {
683 frag = &skb_shinfo(skb)->frags[i];
ebf8c9aa 684 dma = skb_frag_dma_map(priv->ddev, frag,
311761c8
IC
685 0, skb_frag_size(frag),
686 DMA_TO_DEVICE);
c27a02cd
YP
687 data->addr = cpu_to_be64(dma);
688 data->lkey = cpu_to_be32(mdev->mr.key);
689 wmb();
9e903e08 690 data->byte_count = cpu_to_be32(skb_frag_size(frag));
c27a02cd
YP
691 --data;
692 }
693
694 /* Map linear part */
695 if (tx_info->linear) {
ebf8c9aa 696 dma = dma_map_single(priv->ddev, skb->data + lso_header_size,
c27a02cd
YP
697 skb_headlen(skb) - lso_header_size, PCI_DMA_TODEVICE);
698 data->addr = cpu_to_be64(dma);
699 data->lkey = cpu_to_be32(mdev->mr.key);
700 wmb();
701 data->byte_count = cpu_to_be32(skb_headlen(skb) - lso_header_size);
702 }
41efea5a
YP
703 tx_info->inl = 0;
704 } else {
c27a02cd 705 build_inline_wqe(tx_desc, skb, real_size, &vlan_tag, tx_ind, fragptr);
41efea5a
YP
706 tx_info->inl = 1;
707 }
c27a02cd
YP
708
709 ring->prod += nr_txbb;
710
711 /* If we used a bounce buffer then copy descriptor back into place */
87a5c389 712 if (bounce)
c27a02cd
YP
713 tx_desc = mlx4_en_bounce_to_desc(priv, ring, index, desc_size);
714
715 /* Run destructor before passing skb to HW */
716 if (likely(!skb_shared(skb)))
717 skb_orphan(skb);
718
87a5c389 719 if (ring->bf_enabled && desc_size <= MAX_BF && !bounce && !vlan_tag) {
c5d6136e 720 *(__be32 *) (&tx_desc->ctrl.vlan_tag) |= cpu_to_be32(ring->doorbell_qpn);
87a5c389
YP
721 op_own |= htonl((bf_index & 0xffff) << 8);
722 /* Ensure new descirptor hits memory
723 * before setting ownership of this descriptor to HW */
724 wmb();
725 tx_desc->ctrl.owner_opcode = op_own;
c27a02cd 726
87a5c389
YP
727 wmb();
728
729 mlx4_bf_copy(ring->bf.reg + ring->bf.offset, (unsigned long *) &tx_desc->ctrl,
730 desc_size);
731
732 wmb();
733
734 ring->bf.offset ^= ring->bf.buf_size;
735 } else {
736 /* Ensure new descirptor hits memory
737 * before setting ownership of this descriptor to HW */
738 wmb();
739 tx_desc->ctrl.owner_opcode = op_own;
740 wmb();
c5d6136e 741 iowrite32be(ring->doorbell_qpn, ring->bf.uar->map + MLX4_SEND_DOORBELL);
87a5c389 742 }
c27a02cd 743
ec634fe3 744 return NETDEV_TX_OK;
7e230913
YP
745
746tx_drop:
747 dev_kfree_skb_any(skb);
748 priv->stats.tx_dropped++;
749 return NETDEV_TX_OK;
c27a02cd
YP
750}
751