322cda32ef808c3d896841943619d87ea87ebeb0
[linux-2.6-microblaze.git] / drivers / net / ethernet / mellanox / mlx4 / en_tx.c
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>
36 #include <linux/slab.h>
37 #include <linux/mlx4/qp.h>
38 #include <linux/skbuff.h>
39 #include <linux/if_vlan.h>
40 #include <linux/vmalloc.h>
41 #include <linux/tcp.h>
42 #include <linux/ip.h>
43 #include <linux/moduleparam.h>
44
45 #include "mlx4_en.h"
46
47 int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,
48                            struct mlx4_en_tx_ring **pring, int qpn, u32 size,
49                            u16 stride, int node, int queue_index)
50 {
51         struct mlx4_en_dev *mdev = priv->mdev;
52         struct mlx4_en_tx_ring *ring;
53         int tmp;
54         int err;
55
56         ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
57         if (!ring) {
58                 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
59                 if (!ring) {
60                         en_err(priv, "Failed allocating TX ring\n");
61                         return -ENOMEM;
62                 }
63         }
64
65         ring->size = size;
66         ring->size_mask = size - 1;
67         ring->stride = stride;
68         ring->inline_thold = priv->prof->inline_thold;
69
70         tmp = size * sizeof(struct mlx4_en_tx_info);
71         ring->tx_info = vmalloc_node(tmp, node);
72         if (!ring->tx_info) {
73                 ring->tx_info = vmalloc(tmp);
74                 if (!ring->tx_info) {
75                         err = -ENOMEM;
76                         goto err_ring;
77                 }
78         }
79
80         en_dbg(DRV, priv, "Allocated tx_info ring at addr:%p size:%d\n",
81                  ring->tx_info, tmp);
82
83         ring->bounce_buf = kmalloc_node(MAX_DESC_SIZE, GFP_KERNEL, node);
84         if (!ring->bounce_buf) {
85                 ring->bounce_buf = kmalloc(MAX_DESC_SIZE, GFP_KERNEL);
86                 if (!ring->bounce_buf) {
87                         err = -ENOMEM;
88                         goto err_info;
89                 }
90         }
91         ring->buf_size = ALIGN(size * ring->stride, MLX4_EN_PAGE_SIZE);
92
93         /* Allocate HW buffers on provided NUMA node */
94         set_dev_node(&mdev->dev->pdev->dev, node);
95         err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size,
96                                  2 * PAGE_SIZE);
97         set_dev_node(&mdev->dev->pdev->dev, mdev->dev->numa_node);
98         if (err) {
99                 en_err(priv, "Failed allocating hwq resources\n");
100                 goto err_bounce;
101         }
102
103         err = mlx4_en_map_buffer(&ring->wqres.buf);
104         if (err) {
105                 en_err(priv, "Failed to map TX buffer\n");
106                 goto err_hwq_res;
107         }
108
109         ring->buf = ring->wqres.buf.direct.buf;
110
111         en_dbg(DRV, priv, "Allocated TX ring (addr:%p) - buf:%p size:%d buf_size:%d dma:%llx\n",
112                ring, ring->buf, ring->size, ring->buf_size,
113                (unsigned long long) ring->wqres.buf.direct.map);
114
115         ring->qpn = qpn;
116         err = mlx4_qp_alloc(mdev->dev, ring->qpn, &ring->qp, GFP_KERNEL);
117         if (err) {
118                 en_err(priv, "Failed allocating qp %d\n", ring->qpn);
119                 goto err_map;
120         }
121         ring->qp.event = mlx4_en_sqp_event;
122
123         err = mlx4_bf_alloc(mdev->dev, &ring->bf, node);
124         if (err) {
125                 en_dbg(DRV, priv, "working without blueflame (%d)\n", err);
126                 ring->bf.uar = &mdev->priv_uar;
127                 ring->bf.uar->map = mdev->uar_map;
128                 ring->bf_enabled = false;
129                 ring->bf_alloced = false;
130                 priv->pflags &= ~MLX4_EN_PRIV_FLAGS_BLUEFLAME;
131         } else {
132                 ring->bf_alloced = true;
133                 ring->bf_enabled = !!(priv->pflags &
134                                       MLX4_EN_PRIV_FLAGS_BLUEFLAME);
135         }
136
137         ring->hwtstamp_tx_type = priv->hwtstamp_config.tx_type;
138         ring->queue_index = queue_index;
139
140         if (queue_index < priv->num_tx_rings_p_up && cpu_online(queue_index))
141                 cpumask_set_cpu(queue_index, &ring->affinity_mask);
142
143         *pring = ring;
144         return 0;
145
146 err_map:
147         mlx4_en_unmap_buffer(&ring->wqres.buf);
148 err_hwq_res:
149         mlx4_free_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
150 err_bounce:
151         kfree(ring->bounce_buf);
152         ring->bounce_buf = NULL;
153 err_info:
154         vfree(ring->tx_info);
155         ring->tx_info = NULL;
156 err_ring:
157         kfree(ring);
158         *pring = NULL;
159         return err;
160 }
161
162 void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv,
163                              struct mlx4_en_tx_ring **pring)
164 {
165         struct mlx4_en_dev *mdev = priv->mdev;
166         struct mlx4_en_tx_ring *ring = *pring;
167         en_dbg(DRV, priv, "Destroying tx ring, qpn: %d\n", ring->qpn);
168
169         if (ring->bf_alloced)
170                 mlx4_bf_free(mdev->dev, &ring->bf);
171         mlx4_qp_remove(mdev->dev, &ring->qp);
172         mlx4_qp_free(mdev->dev, &ring->qp);
173         mlx4_en_unmap_buffer(&ring->wqres.buf);
174         mlx4_free_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
175         kfree(ring->bounce_buf);
176         ring->bounce_buf = NULL;
177         vfree(ring->tx_info);
178         ring->tx_info = NULL;
179         kfree(ring);
180         *pring = NULL;
181 }
182
183 int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
184                              struct mlx4_en_tx_ring *ring,
185                              int cq, int user_prio)
186 {
187         struct mlx4_en_dev *mdev = priv->mdev;
188         int err;
189
190         ring->cqn = cq;
191         ring->prod = 0;
192         ring->cons = 0xffffffff;
193         ring->last_nr_txbb = 1;
194         memset(ring->tx_info, 0, ring->size * sizeof(struct mlx4_en_tx_info));
195         memset(ring->buf, 0, ring->buf_size);
196
197         ring->qp_state = MLX4_QP_STATE_RST;
198         ring->doorbell_qpn = cpu_to_be32(ring->qp.qpn << 8);
199         ring->mr_key = cpu_to_be32(mdev->mr.key);
200
201         mlx4_en_fill_qp_context(priv, ring->size, ring->stride, 1, 0, ring->qpn,
202                                 ring->cqn, user_prio, &ring->context);
203         if (ring->bf_alloced)
204                 ring->context.usr_page = cpu_to_be32(ring->bf.uar->index);
205
206         err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, &ring->context,
207                                &ring->qp, &ring->qp_state);
208         if (!user_prio && cpu_online(ring->queue_index))
209                 netif_set_xps_queue(priv->dev, &ring->affinity_mask,
210                                     ring->queue_index);
211
212         return err;
213 }
214
215 void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
216                                 struct mlx4_en_tx_ring *ring)
217 {
218         struct mlx4_en_dev *mdev = priv->mdev;
219
220         mlx4_qp_modify(mdev->dev, NULL, ring->qp_state,
221                        MLX4_QP_STATE_RST, NULL, 0, 0, &ring->qp);
222 }
223
224 static void mlx4_en_stamp_wqe(struct mlx4_en_priv *priv,
225                               struct mlx4_en_tx_ring *ring, int index,
226                               u8 owner)
227 {
228         __be32 stamp = cpu_to_be32(STAMP_VAL | (!!owner << STAMP_SHIFT));
229         struct mlx4_en_tx_desc *tx_desc = ring->buf + index * TXBB_SIZE;
230         struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
231         void *end = ring->buf + ring->buf_size;
232         __be32 *ptr = (__be32 *)tx_desc;
233         int i;
234
235         /* Optimize the common case when there are no wraparounds */
236         if (likely((void *)tx_desc + tx_info->nr_txbb * TXBB_SIZE <= end)) {
237                 /* Stamp the freed descriptor */
238                 for (i = 0; i < tx_info->nr_txbb * TXBB_SIZE;
239                      i += STAMP_STRIDE) {
240                         *ptr = stamp;
241                         ptr += STAMP_DWORDS;
242                 }
243         } else {
244                 /* Stamp the freed descriptor */
245                 for (i = 0; i < tx_info->nr_txbb * TXBB_SIZE;
246                      i += STAMP_STRIDE) {
247                         *ptr = stamp;
248                         ptr += STAMP_DWORDS;
249                         if ((void *)ptr >= end) {
250                                 ptr = ring->buf;
251                                 stamp ^= cpu_to_be32(0x80000000);
252                         }
253                 }
254         }
255 }
256
257
258 static u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv,
259                                 struct mlx4_en_tx_ring *ring,
260                                 int index, u8 owner, u64 timestamp)
261 {
262         struct mlx4_en_dev *mdev = priv->mdev;
263         struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
264         struct mlx4_en_tx_desc *tx_desc = ring->buf + index * TXBB_SIZE;
265         struct mlx4_wqe_data_seg *data = (void *) tx_desc + tx_info->data_offset;
266         struct sk_buff *skb = tx_info->skb;
267         struct skb_frag_struct *frag;
268         void *end = ring->buf + ring->buf_size;
269         int frags = skb_shinfo(skb)->nr_frags;
270         int i;
271         struct skb_shared_hwtstamps hwts;
272
273         if (timestamp) {
274                 mlx4_en_fill_hwtstamps(mdev, &hwts, timestamp);
275                 skb_tstamp_tx(skb, &hwts);
276         }
277
278         /* Optimize the common case when there are no wraparounds */
279         if (likely((void *) tx_desc + tx_info->nr_txbb * TXBB_SIZE <= end)) {
280                 if (!tx_info->inl) {
281                         if (tx_info->linear) {
282                                 dma_unmap_single(priv->ddev,
283                                         (dma_addr_t) be64_to_cpu(data->addr),
284                                          be32_to_cpu(data->byte_count),
285                                          PCI_DMA_TODEVICE);
286                                 ++data;
287                         }
288
289                         for (i = 0; i < frags; i++) {
290                                 frag = &skb_shinfo(skb)->frags[i];
291                                 dma_unmap_page(priv->ddev,
292                                         (dma_addr_t) be64_to_cpu(data[i].addr),
293                                         skb_frag_size(frag), PCI_DMA_TODEVICE);
294                         }
295                 }
296         } else {
297                 if (!tx_info->inl) {
298                         if ((void *) data >= end) {
299                                 data = ring->buf + ((void *)data - end);
300                         }
301
302                         if (tx_info->linear) {
303                                 dma_unmap_single(priv->ddev,
304                                         (dma_addr_t) be64_to_cpu(data->addr),
305                                          be32_to_cpu(data->byte_count),
306                                          PCI_DMA_TODEVICE);
307                                 ++data;
308                         }
309
310                         for (i = 0; i < frags; i++) {
311                                 /* Check for wraparound before unmapping */
312                                 if ((void *) data >= end)
313                                         data = ring->buf;
314                                 frag = &skb_shinfo(skb)->frags[i];
315                                 dma_unmap_page(priv->ddev,
316                                         (dma_addr_t) be64_to_cpu(data->addr),
317                                          skb_frag_size(frag), PCI_DMA_TODEVICE);
318                                 ++data;
319                         }
320                 }
321         }
322         dev_consume_skb_any(skb);
323         return tx_info->nr_txbb;
324 }
325
326
327 int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring)
328 {
329         struct mlx4_en_priv *priv = netdev_priv(dev);
330         int cnt = 0;
331
332         /* Skip last polled descriptor */
333         ring->cons += ring->last_nr_txbb;
334         en_dbg(DRV, priv, "Freeing Tx buf - cons:0x%x prod:0x%x\n",
335                  ring->cons, ring->prod);
336
337         if ((u32) (ring->prod - ring->cons) > ring->size) {
338                 if (netif_msg_tx_err(priv))
339                         en_warn(priv, "Tx consumer passed producer!\n");
340                 return 0;
341         }
342
343         while (ring->cons != ring->prod) {
344                 ring->last_nr_txbb = mlx4_en_free_tx_desc(priv, ring,
345                                                 ring->cons & ring->size_mask,
346                                                 !!(ring->cons & ring->size), 0);
347                 ring->cons += ring->last_nr_txbb;
348                 cnt++;
349         }
350
351         netdev_tx_reset_queue(ring->tx_queue);
352
353         if (cnt)
354                 en_dbg(DRV, priv, "Freed %d uncompleted tx descriptors\n", cnt);
355
356         return cnt;
357 }
358
359 static bool mlx4_en_process_tx_cq(struct net_device *dev,
360                                  struct mlx4_en_cq *cq)
361 {
362         struct mlx4_en_priv *priv = netdev_priv(dev);
363         struct mlx4_cq *mcq = &cq->mcq;
364         struct mlx4_en_tx_ring *ring = priv->tx_ring[cq->ring];
365         struct mlx4_cqe *cqe;
366         u16 index;
367         u16 new_index, ring_index, stamp_index;
368         u32 txbbs_skipped = 0;
369         u32 txbbs_stamp = 0;
370         u32 cons_index = mcq->cons_index;
371         int size = cq->size;
372         u32 size_mask = ring->size_mask;
373         struct mlx4_cqe *buf = cq->buf;
374         u32 packets = 0;
375         u32 bytes = 0;
376         int factor = priv->cqe_factor;
377         u64 timestamp = 0;
378         int done = 0;
379         int budget = priv->tx_work_limit;
380
381         if (!priv->port_up)
382                 return true;
383
384         index = cons_index & size_mask;
385         cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
386         ring_index = ring->cons & size_mask;
387         stamp_index = ring_index;
388
389         /* Process all completed CQEs */
390         while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
391                         cons_index & size) && (done < budget)) {
392                 /*
393                  * make sure we read the CQE after we read the
394                  * ownership bit
395                  */
396                 rmb();
397
398                 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
399                              MLX4_CQE_OPCODE_ERROR)) {
400                         struct mlx4_err_cqe *cqe_err = (struct mlx4_err_cqe *)cqe;
401
402                         en_err(priv, "CQE error - vendor syndrome: 0x%x syndrome: 0x%x\n",
403                                cqe_err->vendor_err_syndrome,
404                                cqe_err->syndrome);
405                 }
406
407                 /* Skip over last polled CQE */
408                 new_index = be16_to_cpu(cqe->wqe_index) & size_mask;
409
410                 do {
411                         txbbs_skipped += ring->last_nr_txbb;
412                         ring_index = (ring_index + ring->last_nr_txbb) & size_mask;
413                         if (ring->tx_info[ring_index].ts_requested)
414                                 timestamp = mlx4_en_get_cqe_ts(cqe);
415
416                         /* free next descriptor */
417                         ring->last_nr_txbb = mlx4_en_free_tx_desc(
418                                         priv, ring, ring_index,
419                                         !!((ring->cons + txbbs_skipped) &
420                                         ring->size), timestamp);
421
422                         mlx4_en_stamp_wqe(priv, ring, stamp_index,
423                                           !!((ring->cons + txbbs_stamp) &
424                                                 ring->size));
425                         stamp_index = ring_index;
426                         txbbs_stamp = txbbs_skipped;
427                         packets++;
428                         bytes += ring->tx_info[ring_index].nr_bytes;
429                 } while ((++done < budget) && (ring_index != new_index));
430
431                 ++cons_index;
432                 index = cons_index & size_mask;
433                 cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
434         }
435
436
437         /*
438          * To prevent CQ overflow we first update CQ consumer and only then
439          * the ring consumer.
440          */
441         mcq->cons_index = cons_index;
442         mlx4_cq_set_ci(mcq);
443         wmb();
444         ring->cons += txbbs_skipped;
445         netdev_tx_completed_queue(ring->tx_queue, packets, bytes);
446
447         /*
448          * Wakeup Tx queue if this stopped, and at least 1 packet
449          * was completed
450          */
451         if (netif_tx_queue_stopped(ring->tx_queue) && txbbs_skipped > 0) {
452                 netif_tx_wake_queue(ring->tx_queue);
453                 ring->wake_queue++;
454         }
455         return done < budget;
456 }
457
458 void mlx4_en_tx_irq(struct mlx4_cq *mcq)
459 {
460         struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
461         struct mlx4_en_priv *priv = netdev_priv(cq->dev);
462
463         if (priv->port_up)
464                 napi_schedule(&cq->napi);
465         else
466                 mlx4_en_arm_cq(priv, cq);
467 }
468
469 /* TX CQ polling - called by NAPI */
470 int mlx4_en_poll_tx_cq(struct napi_struct *napi, int budget)
471 {
472         struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
473         struct net_device *dev = cq->dev;
474         struct mlx4_en_priv *priv = netdev_priv(dev);
475         int clean_complete;
476
477         clean_complete = mlx4_en_process_tx_cq(dev, cq);
478         if (!clean_complete)
479                 return budget;
480
481         napi_complete(napi);
482         mlx4_en_arm_cq(priv, cq);
483
484         return 0;
485 }
486
487 static struct mlx4_en_tx_desc *mlx4_en_bounce_to_desc(struct mlx4_en_priv *priv,
488                                                       struct mlx4_en_tx_ring *ring,
489                                                       u32 index,
490                                                       unsigned int desc_size)
491 {
492         u32 copy = (ring->size - index) * TXBB_SIZE;
493         int i;
494
495         for (i = desc_size - copy - 4; i >= 0; i -= 4) {
496                 if ((i & (TXBB_SIZE - 1)) == 0)
497                         wmb();
498
499                 *((u32 *) (ring->buf + i)) =
500                         *((u32 *) (ring->bounce_buf + copy + i));
501         }
502
503         for (i = copy - 4; i >= 4 ; i -= 4) {
504                 if ((i & (TXBB_SIZE - 1)) == 0)
505                         wmb();
506
507                 *((u32 *) (ring->buf + index * TXBB_SIZE + i)) =
508                         *((u32 *) (ring->bounce_buf + i));
509         }
510
511         /* Return real descriptor location */
512         return ring->buf + index * TXBB_SIZE;
513 }
514
515 static bool is_inline(int inline_thold, const struct sk_buff *skb,
516                       void **pfrag)
517 {
518         void *ptr;
519
520         if (inline_thold && !skb_is_gso(skb) && skb->len <= inline_thold) {
521                 if (skb_shinfo(skb)->nr_frags == 1) {
522                         ptr = skb_frag_address_safe(&skb_shinfo(skb)->frags[0]);
523                         if (unlikely(!ptr))
524                                 return 0;
525
526                         if (pfrag)
527                                 *pfrag = ptr;
528
529                         return 1;
530                 } else if (unlikely(skb_shinfo(skb)->nr_frags))
531                         return 0;
532                 else
533                         return 1;
534         }
535
536         return 0;
537 }
538
539 static int inline_size(const struct sk_buff *skb)
540 {
541         if (skb->len + CTRL_SIZE + sizeof(struct mlx4_wqe_inline_seg)
542             <= MLX4_INLINE_ALIGN)
543                 return ALIGN(skb->len + CTRL_SIZE +
544                              sizeof(struct mlx4_wqe_inline_seg), 16);
545         else
546                 return ALIGN(skb->len + CTRL_SIZE + 2 *
547                              sizeof(struct mlx4_wqe_inline_seg), 16);
548 }
549
550 static int get_real_size(const struct sk_buff *skb,
551                          struct net_device *dev,
552                          int *lso_header_size)
553 {
554         struct mlx4_en_priv *priv = netdev_priv(dev);
555         int real_size;
556
557         if (skb_is_gso(skb)) {
558                 if (skb->encapsulation)
559                         *lso_header_size = (skb_inner_transport_header(skb) - skb->data) + inner_tcp_hdrlen(skb);
560                 else
561                         *lso_header_size = skb_transport_offset(skb) + tcp_hdrlen(skb);
562                 real_size = CTRL_SIZE + skb_shinfo(skb)->nr_frags * DS_SIZE +
563                         ALIGN(*lso_header_size + 4, DS_SIZE);
564                 if (unlikely(*lso_header_size != skb_headlen(skb))) {
565                         /* We add a segment for the skb linear buffer only if
566                          * it contains data */
567                         if (*lso_header_size < skb_headlen(skb))
568                                 real_size += DS_SIZE;
569                         else {
570                                 if (netif_msg_tx_err(priv))
571                                         en_warn(priv, "Non-linear headers\n");
572                                 return 0;
573                         }
574                 }
575         } else {
576                 *lso_header_size = 0;
577                 if (!is_inline(priv->prof->inline_thold, skb, NULL))
578                         real_size = CTRL_SIZE + (skb_shinfo(skb)->nr_frags + 1) * DS_SIZE;
579                 else
580                         real_size = inline_size(skb);
581         }
582
583         return real_size;
584 }
585
586 static void build_inline_wqe(struct mlx4_en_tx_desc *tx_desc,
587                              const struct sk_buff *skb,
588                              int real_size, u16 *vlan_tag,
589                              int tx_ind, void *fragptr)
590 {
591         struct mlx4_wqe_inline_seg *inl = &tx_desc->inl;
592         int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - sizeof *inl;
593
594         if (skb->len <= spc) {
595                 if (likely(skb->len >= MIN_PKT_LEN)) {
596                         inl->byte_count = cpu_to_be32(1 << 31 | skb->len);
597                 } else {
598                         inl->byte_count = cpu_to_be32(1 << 31 | MIN_PKT_LEN);
599                         memset(((void *)(inl + 1)) + skb->len, 0,
600                                MIN_PKT_LEN - skb->len);
601                 }
602                 skb_copy_from_linear_data(skb, inl + 1, skb_headlen(skb));
603                 if (skb_shinfo(skb)->nr_frags)
604                         memcpy(((void *)(inl + 1)) + skb_headlen(skb), fragptr,
605                                skb_frag_size(&skb_shinfo(skb)->frags[0]));
606
607         } else {
608                 inl->byte_count = cpu_to_be32(1 << 31 | spc);
609                 if (skb_headlen(skb) <= spc) {
610                         skb_copy_from_linear_data(skb, inl + 1, skb_headlen(skb));
611                         if (skb_headlen(skb) < spc) {
612                                 memcpy(((void *)(inl + 1)) + skb_headlen(skb),
613                                         fragptr, spc - skb_headlen(skb));
614                                 fragptr +=  spc - skb_headlen(skb);
615                         }
616                         inl = (void *) (inl + 1) + spc;
617                         memcpy(((void *)(inl + 1)), fragptr, skb->len - spc);
618                 } else {
619                         skb_copy_from_linear_data(skb, inl + 1, spc);
620                         inl = (void *) (inl + 1) + spc;
621                         skb_copy_from_linear_data_offset(skb, spc, inl + 1,
622                                         skb_headlen(skb) - spc);
623                         if (skb_shinfo(skb)->nr_frags)
624                                 memcpy(((void *)(inl + 1)) + skb_headlen(skb) - spc,
625                                         fragptr, skb_frag_size(&skb_shinfo(skb)->frags[0]));
626                 }
627
628                 wmb();
629                 inl->byte_count = cpu_to_be32(1 << 31 | (skb->len - spc));
630         }
631 }
632
633 u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb,
634                          void *accel_priv, select_queue_fallback_t fallback)
635 {
636         struct mlx4_en_priv *priv = netdev_priv(dev);
637         u16 rings_p_up = priv->num_tx_rings_p_up;
638         u8 up = 0;
639
640         if (dev->num_tc)
641                 return skb_tx_hash(dev, skb);
642
643         if (vlan_tx_tag_present(skb))
644                 up = vlan_tx_tag_get(skb) >> VLAN_PRIO_SHIFT;
645
646         return fallback(dev, skb) % rings_p_up + up * rings_p_up;
647 }
648
649 static void mlx4_bf_copy(void __iomem *dst, const void *src,
650                          unsigned int bytecnt)
651 {
652         __iowrite64_copy(dst, src, bytecnt / 8);
653 }
654
655 netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev)
656 {
657         struct mlx4_en_priv *priv = netdev_priv(dev);
658         struct device *ddev = priv->ddev;
659         struct mlx4_en_tx_ring *ring;
660         struct mlx4_en_tx_desc *tx_desc;
661         struct mlx4_wqe_data_seg *data;
662         struct mlx4_en_tx_info *tx_info;
663         int tx_ind = 0;
664         int nr_txbb;
665         int desc_size;
666         int real_size;
667         u32 index, bf_index;
668         __be32 op_own;
669         u16 vlan_tag = 0;
670         int i;
671         int lso_header_size;
672         void *fragptr;
673         bool bounce = false;
674         bool send_doorbell;
675
676         if (!priv->port_up)
677                 goto tx_drop;
678
679         real_size = get_real_size(skb, dev, &lso_header_size);
680         if (unlikely(!real_size))
681                 goto tx_drop;
682
683         /* Align descriptor to TXBB size */
684         desc_size = ALIGN(real_size, TXBB_SIZE);
685         nr_txbb = desc_size / TXBB_SIZE;
686         if (unlikely(nr_txbb > MAX_DESC_TXBBS)) {
687                 if (netif_msg_tx_err(priv))
688                         en_warn(priv, "Oversized header or SG list\n");
689                 goto tx_drop;
690         }
691
692         tx_ind = skb->queue_mapping;
693         ring = priv->tx_ring[tx_ind];
694         if (vlan_tx_tag_present(skb))
695                 vlan_tag = vlan_tx_tag_get(skb);
696
697         /* Check available TXBBs And 2K spare for prefetch */
698         if (unlikely(((int)(ring->prod - ring->cons)) >
699                      ring->size - HEADROOM - MAX_DESC_TXBBS)) {
700                 /* every full Tx ring stops queue */
701                 netif_tx_stop_queue(ring->tx_queue);
702                 ring->queue_stopped++;
703
704                 /* If queue was emptied after the if, and before the
705                  * stop_queue - need to wake the queue, or else it will remain
706                  * stopped forever.
707                  * Need a memory barrier to make sure ring->cons was not
708                  * updated before queue was stopped.
709                  */
710                 wmb();
711
712                 if (unlikely(((int)(ring->prod - ring->cons)) <=
713                              ring->size - HEADROOM - MAX_DESC_TXBBS)) {
714                         netif_tx_wake_queue(ring->tx_queue);
715                         ring->wake_queue++;
716                 } else {
717                         return NETDEV_TX_BUSY;
718                 }
719         }
720
721         /* Track current inflight packets for performance analysis */
722         AVG_PERF_COUNTER(priv->pstats.inflight_avg,
723                          (u32) (ring->prod - ring->cons - 1));
724
725         /* Packet is good - grab an index and transmit it */
726         index = ring->prod & ring->size_mask;
727         bf_index = ring->prod;
728
729         /* See if we have enough space for whole descriptor TXBB for setting
730          * SW ownership on next descriptor; if not, use a bounce buffer. */
731         if (likely(index + nr_txbb <= ring->size))
732                 tx_desc = ring->buf + index * TXBB_SIZE;
733         else {
734                 tx_desc = (struct mlx4_en_tx_desc *) ring->bounce_buf;
735                 bounce = true;
736         }
737
738         /* Save skb in tx_info ring */
739         tx_info = &ring->tx_info[index];
740         tx_info->skb = skb;
741         tx_info->nr_txbb = nr_txbb;
742
743         data = &tx_desc->data;
744         if (lso_header_size)
745                 data = ((void *)&tx_desc->lso + ALIGN(lso_header_size + 4,
746                                                       DS_SIZE));
747
748         /* valid only for none inline segments */
749         tx_info->data_offset = (void *)data - (void *)tx_desc;
750
751         tx_info->linear = (lso_header_size < skb_headlen(skb) &&
752                            !is_inline(ring->inline_thold, skb, NULL)) ? 1 : 0;
753
754         data += skb_shinfo(skb)->nr_frags + tx_info->linear - 1;
755
756         if (is_inline(ring->inline_thold, skb, &fragptr)) {
757                 tx_info->inl = 1;
758         } else {
759                 /* Map fragments if any */
760                 for (i = skb_shinfo(skb)->nr_frags - 1; i >= 0; i--) {
761                         const struct skb_frag_struct *frag;
762                         dma_addr_t dma;
763
764                         frag = &skb_shinfo(skb)->frags[i];
765                         dma = skb_frag_dma_map(ddev, frag,
766                                                0, skb_frag_size(frag),
767                                                DMA_TO_DEVICE);
768                         if (dma_mapping_error(ddev, dma))
769                                 goto tx_drop_unmap;
770
771                         data->addr = cpu_to_be64(dma);
772                         data->lkey = ring->mr_key;
773                         wmb();
774                         data->byte_count = cpu_to_be32(skb_frag_size(frag));
775                         --data;
776                 }
777
778                 /* Map linear part if needed */
779                 if (tx_info->linear) {
780                         u32 byte_count = skb_headlen(skb) - lso_header_size;
781                         dma_addr_t dma;
782
783                         dma = dma_map_single(ddev, skb->data +
784                                              lso_header_size, byte_count,
785                                              PCI_DMA_TODEVICE);
786                         if (dma_mapping_error(ddev, dma))
787                                 goto tx_drop_unmap;
788
789                         data->addr = cpu_to_be64(dma);
790                         data->lkey = ring->mr_key;
791                         wmb();
792                         data->byte_count = cpu_to_be32(byte_count);
793                 }
794                 tx_info->inl = 0;
795         }
796
797         /*
798          * For timestamping add flag to skb_shinfo and
799          * set flag for further reference
800          */
801         if (unlikely(ring->hwtstamp_tx_type == HWTSTAMP_TX_ON &&
802                      shinfo->tx_flags & SKBTX_HW_TSTAMP)) {
803                 shinfo->tx_flags |= SKBTX_IN_PROGRESS;
804                 tx_info->ts_requested = 1;
805         }
806
807         /* Prepare ctrl segement apart opcode+ownership, which depends on
808          * whether LSO is used */
809         tx_desc->ctrl.srcrb_flags = priv->ctrl_flags;
810         if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) {
811                 tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM |
812                                                          MLX4_WQE_CTRL_TCP_UDP_CSUM);
813                 ring->tx_csum++;
814         }
815
816         if (priv->flags & MLX4_EN_FLAG_ENABLE_HW_LOOPBACK) {
817                 struct ethhdr *ethh;
818
819                 /* Copy dst mac address to wqe. This allows loopback in eSwitch,
820                  * so that VFs and PF can communicate with each other
821                  */
822                 ethh = (struct ethhdr *)skb->data;
823                 tx_desc->ctrl.srcrb_flags16[0] = get_unaligned((__be16 *)ethh->h_dest);
824                 tx_desc->ctrl.imm = get_unaligned((__be32 *)(ethh->h_dest + 2));
825         }
826
827         /* Handle LSO (TSO) packets */
828         if (lso_header_size) {
829                 /* Mark opcode as LSO */
830                 op_own = cpu_to_be32(MLX4_OPCODE_LSO | (1 << 6)) |
831                         ((ring->prod & ring->size) ?
832                                 cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
833
834                 /* Fill in the LSO prefix */
835                 tx_desc->lso.mss_hdr_size = cpu_to_be32(
836                         skb_shinfo(skb)->gso_size << 16 | lso_header_size);
837
838                 /* Copy headers;
839                  * note that we already verified that it is linear */
840                 memcpy(tx_desc->lso.header, skb->data, lso_header_size);
841
842                 ring->tso_packets++;
843                 i = ((skb->len - lso_header_size) / skb_shinfo(skb)->gso_size) +
844                         !!((skb->len - lso_header_size) % skb_shinfo(skb)->gso_size);
845                 tx_info->nr_bytes = skb->len + (i - 1) * lso_header_size;
846                 ring->packets += i;
847         } else {
848                 /* Normal (Non LSO) packet */
849                 op_own = cpu_to_be32(MLX4_OPCODE_SEND) |
850                         ((ring->prod & ring->size) ?
851                          cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0);
852                 tx_info->nr_bytes = max_t(unsigned int, skb->len, ETH_ZLEN);
853                 ring->packets++;
854         }
855         ring->bytes += tx_info->nr_bytes;
856         netdev_tx_sent_queue(ring->tx_queue, tx_info->nr_bytes);
857         AVG_PERF_COUNTER(priv->pstats.tx_pktsz_avg, skb->len);
858
859         if (tx_info->inl) {
860                 build_inline_wqe(tx_desc, skb, real_size, &vlan_tag, tx_ind, fragptr);
861                 tx_info->inl = 1;
862         }
863
864         if (skb->encapsulation) {
865                 struct iphdr *ipv4 = (struct iphdr *)skb_inner_network_header(skb);
866                 if (ipv4->protocol == IPPROTO_TCP || ipv4->protocol == IPPROTO_UDP)
867                         op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP | MLX4_WQE_CTRL_ILP);
868                 else
869                         op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP);
870         }
871
872         ring->prod += nr_txbb;
873
874         /* If we used a bounce buffer then copy descriptor back into place */
875         if (unlikely(bounce))
876                 tx_desc = mlx4_en_bounce_to_desc(priv, ring, index, desc_size);
877
878         skb_tx_timestamp(skb);
879
880         send_doorbell = !skb->xmit_more || netif_xmit_stopped(ring->tx_queue);
881
882         real_size = (real_size / 16) & 0x3f;
883
884         if (ring->bf_enabled && desc_size <= MAX_BF && !bounce &&
885             !vlan_tx_tag_present(skb) && send_doorbell) {
886                 tx_desc->ctrl.bf_qpn = ring->doorbell_qpn |
887                                        cpu_to_be32(real_size);
888
889                 op_own |= htonl((bf_index & 0xffff) << 8);
890                 /* Ensure new descriptor hits memory
891                  * before setting ownership of this descriptor to HW
892                  */
893                 wmb();
894                 tx_desc->ctrl.owner_opcode = op_own;
895
896                 wmb();
897
898                 mlx4_bf_copy(ring->bf.reg + ring->bf.offset, &tx_desc->ctrl,
899                              desc_size);
900
901                 wmb();
902
903                 ring->bf.offset ^= ring->bf.buf_size;
904         } else {
905                 tx_desc->ctrl.vlan_tag = cpu_to_be16(vlan_tag);
906                 tx_desc->ctrl.ins_vlan = MLX4_WQE_CTRL_INS_VLAN *
907                         !!vlan_tx_tag_present(skb);
908                 tx_desc->ctrl.fence_size = real_size;
909
910                 /* Ensure new descriptor hits memory
911                  * before setting ownership of this descriptor to HW
912                  */
913                 wmb();
914                 tx_desc->ctrl.owner_opcode = op_own;
915                 if (send_doorbell) {
916                         wmb();
917                         iowrite32(ring->doorbell_qpn,
918                                   ring->bf.uar->map + MLX4_SEND_DOORBELL);
919                 } else {
920                         ring->xmit_more++;
921                 }
922         }
923
924         return NETDEV_TX_OK;
925
926 tx_drop_unmap:
927         en_err(priv, "DMA mapping error\n");
928
929         for (i++; i < skb_shinfo(skb)->nr_frags; i++) {
930                 data++;
931                 dma_unmap_page(ddev, (dma_addr_t) be64_to_cpu(data->addr),
932                                be32_to_cpu(data->byte_count),
933                                PCI_DMA_TODEVICE);
934         }
935
936 tx_drop:
937         dev_kfree_skb_any(skb);
938         priv->stats.tx_dropped++;
939         return NETDEV_TX_OK;
940 }
941