Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 36 | #include <linux/slab.h> |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 37 | #include <linux/mlx4/qp.h> |
| 38 | #include <linux/skbuff.h> |
| 39 | #include <linux/if_vlan.h> |
Eric Dumazet | 29d40c9 | 2014-10-05 12:35:14 +0300 | [diff] [blame] | 40 | #include <linux/prefetch.h> |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 41 | #include <linux/vmalloc.h> |
Yevgeny Petrilin | fa37a95 | 2010-08-24 03:46:46 +0000 | [diff] [blame] | 42 | #include <linux/tcp.h> |
Or Gerlitz | 837052d | 2013-12-23 16:09:44 +0200 | [diff] [blame] | 43 | #include <linux/ip.h> |
Alexander Duyck | 0906712 | 2016-05-02 09:38:37 -0700 | [diff] [blame] | 44 | #include <linux/ipv6.h> |
Paul Gortmaker | 6eb07ca | 2011-09-15 19:46:05 -0400 | [diff] [blame] | 45 | #include <linux/moduleparam.h> |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 46 | |
| 47 | #include "mlx4_en.h" |
| 48 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 49 | int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv, |
Eugenia Emantayev | ddae034 | 2014-12-11 10:57:54 +0200 | [diff] [blame] | 50 | struct mlx4_en_tx_ring **pring, u32 size, |
Ido Shamay | d03a68f | 2013-12-19 21:20:14 +0200 | [diff] [blame] | 51 | u16 stride, int node, int queue_index) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 52 | { |
| 53 | struct mlx4_en_dev *mdev = priv->mdev; |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 54 | struct mlx4_en_tx_ring *ring; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 55 | int tmp; |
| 56 | int err; |
| 57 | |
Eugenia Emantayev | 163561a | 2013-11-07 12:19:54 +0200 | [diff] [blame] | 58 | ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node); |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 59 | if (!ring) { |
Eugenia Emantayev | 163561a | 2013-11-07 12:19:54 +0200 | [diff] [blame] | 60 | ring = kzalloc(sizeof(*ring), GFP_KERNEL); |
| 61 | if (!ring) { |
| 62 | en_err(priv, "Failed allocating TX ring\n"); |
| 63 | return -ENOMEM; |
| 64 | } |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 65 | } |
| 66 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 67 | ring->size = size; |
| 68 | ring->size_mask = size - 1; |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 69 | ring->sp_stride = stride; |
Ido Shamay | 488a9b4 | 2015-06-25 11:29:42 +0300 | [diff] [blame] | 70 | ring->full_size = ring->size - HEADROOM - MAX_DESC_TXBBS; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 71 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 72 | tmp = size * sizeof(struct mlx4_en_tx_info); |
Eric Dumazet | dc9b06d | 2014-10-05 12:35:12 +0300 | [diff] [blame] | 73 | ring->tx_info = kmalloc_node(tmp, GFP_KERNEL | __GFP_NOWARN, node); |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 74 | if (!ring->tx_info) { |
Eugenia Emantayev | 163561a | 2013-11-07 12:19:54 +0200 | [diff] [blame] | 75 | ring->tx_info = vmalloc(tmp); |
| 76 | if (!ring->tx_info) { |
| 77 | err = -ENOMEM; |
| 78 | goto err_ring; |
| 79 | } |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 80 | } |
Joe Perches | e404dec | 2012-01-29 12:56:23 +0000 | [diff] [blame] | 81 | |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 82 | en_dbg(DRV, priv, "Allocated tx_info ring at addr:%p size:%d\n", |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 83 | ring->tx_info, tmp); |
| 84 | |
Eugenia Emantayev | 163561a | 2013-11-07 12:19:54 +0200 | [diff] [blame] | 85 | ring->bounce_buf = kmalloc_node(MAX_DESC_SIZE, GFP_KERNEL, node); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 86 | if (!ring->bounce_buf) { |
Eugenia Emantayev | 163561a | 2013-11-07 12:19:54 +0200 | [diff] [blame] | 87 | ring->bounce_buf = kmalloc(MAX_DESC_SIZE, GFP_KERNEL); |
| 88 | if (!ring->bounce_buf) { |
| 89 | err = -ENOMEM; |
| 90 | goto err_info; |
| 91 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 92 | } |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 93 | ring->buf_size = ALIGN(size * ring->sp_stride, MLX4_EN_PAGE_SIZE); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 94 | |
Eugenia Emantayev | 163561a | 2013-11-07 12:19:54 +0200 | [diff] [blame] | 95 | /* Allocate HW buffers on provided NUMA node */ |
Yishai Hadas | 872bf2f | 2015-01-25 16:59:35 +0200 | [diff] [blame] | 96 | set_dev_node(&mdev->dev->persist->pdev->dev, node); |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 97 | err = mlx4_alloc_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size); |
Yishai Hadas | 872bf2f | 2015-01-25 16:59:35 +0200 | [diff] [blame] | 98 | set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 99 | if (err) { |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 100 | en_err(priv, "Failed allocating hwq resources\n"); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 101 | goto err_bounce; |
| 102 | } |
| 103 | |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 104 | ring->buf = ring->sp_wqres.buf.direct.buf; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 105 | |
Joe Perches | 1a91de2 | 2014-05-07 12:52:57 -0700 | [diff] [blame] | 106 | en_dbg(DRV, priv, "Allocated TX ring (addr:%p) - buf:%p size:%d buf_size:%d dma:%llx\n", |
| 107 | ring, ring->buf, ring->size, ring->buf_size, |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 108 | (unsigned long long) ring->sp_wqres.buf.direct.map); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 109 | |
Eugenia Emantayev | ddae034 | 2014-12-11 10:57:54 +0200 | [diff] [blame] | 110 | err = mlx4_qp_reserve_range(mdev->dev, 1, 1, &ring->qpn, |
| 111 | MLX4_RESERVE_ETH_BF_QP); |
| 112 | if (err) { |
| 113 | en_err(priv, "failed reserving qp for TX ring\n"); |
Haggai Abramovsky | 73898db | 2016-05-04 14:50:15 +0300 | [diff] [blame] | 114 | goto err_hwq_res; |
Eugenia Emantayev | ddae034 | 2014-12-11 10:57:54 +0200 | [diff] [blame] | 115 | } |
| 116 | |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 117 | err = mlx4_qp_alloc(mdev->dev, ring->qpn, &ring->sp_qp, GFP_KERNEL); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 118 | if (err) { |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 119 | en_err(priv, "Failed allocating qp %d\n", ring->qpn); |
Eugenia Emantayev | ddae034 | 2014-12-11 10:57:54 +0200 | [diff] [blame] | 120 | goto err_reserve; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 121 | } |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 122 | ring->sp_qp.event = mlx4_en_sqp_event; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 123 | |
Eugenia Emantayev | 163561a | 2013-11-07 12:19:54 +0200 | [diff] [blame] | 124 | err = mlx4_bf_alloc(mdev->dev, &ring->bf, node); |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 125 | if (err) { |
Joe Perches | 1a91de2 | 2014-05-07 12:52:57 -0700 | [diff] [blame] | 126 | en_dbg(DRV, priv, "working without blueflame (%d)\n", err); |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 127 | ring->bf.uar = &mdev->priv_uar; |
| 128 | ring->bf.uar->map = mdev->uar_map; |
| 129 | ring->bf_enabled = false; |
Amir Vadai | 0fef9d0 | 2014-07-22 15:44:10 +0300 | [diff] [blame] | 130 | ring->bf_alloced = false; |
| 131 | priv->pflags &= ~MLX4_EN_PRIV_FLAGS_BLUEFLAME; |
| 132 | } else { |
| 133 | ring->bf_alloced = true; |
| 134 | ring->bf_enabled = !!(priv->pflags & |
| 135 | MLX4_EN_PRIV_FLAGS_BLUEFLAME); |
| 136 | } |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 137 | |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 138 | ring->hwtstamp_tx_type = priv->hwtstamp_config.tx_type; |
Ido Shamay | d03a68f | 2013-12-19 21:20:14 +0200 | [diff] [blame] | 139 | ring->queue_index = queue_index; |
| 140 | |
Benjamin Poirier | 42eab00 | 2015-04-28 14:49:29 -0700 | [diff] [blame] | 141 | if (queue_index < priv->num_tx_rings_p_up) |
Rusty Russell | f36963c | 2015-05-09 03:14:13 +0930 | [diff] [blame] | 142 | cpumask_set_cpu(cpumask_local_spread(queue_index, |
| 143 | priv->mdev->dev->numa_node), |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 144 | &ring->sp_affinity_mask); |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 145 | |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 146 | *pring = ring; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 147 | return 0; |
| 148 | |
Eugenia Emantayev | ddae034 | 2014-12-11 10:57:54 +0200 | [diff] [blame] | 149 | err_reserve: |
| 150 | mlx4_qp_release_range(mdev->dev, ring->qpn, 1); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 151 | err_hwq_res: |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 152 | mlx4_free_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 153 | err_bounce: |
| 154 | kfree(ring->bounce_buf); |
| 155 | ring->bounce_buf = NULL; |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 156 | err_info: |
Eric Dumazet | dc9b06d | 2014-10-05 12:35:12 +0300 | [diff] [blame] | 157 | kvfree(ring->tx_info); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 158 | ring->tx_info = NULL; |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 159 | err_ring: |
| 160 | kfree(ring); |
| 161 | *pring = NULL; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 162 | return err; |
| 163 | } |
| 164 | |
| 165 | void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv, |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 166 | struct mlx4_en_tx_ring **pring) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 167 | { |
| 168 | struct mlx4_en_dev *mdev = priv->mdev; |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 169 | struct mlx4_en_tx_ring *ring = *pring; |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 170 | en_dbg(DRV, priv, "Destroying tx ring, qpn: %d\n", ring->qpn); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 171 | |
Amir Vadai | 0fef9d0 | 2014-07-22 15:44:10 +0300 | [diff] [blame] | 172 | if (ring->bf_alloced) |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 173 | mlx4_bf_free(mdev->dev, &ring->bf); |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 174 | mlx4_qp_remove(mdev->dev, &ring->sp_qp); |
| 175 | mlx4_qp_free(mdev->dev, &ring->sp_qp); |
Eran Ben Elisha | 0eb0851 | 2015-06-25 11:29:41 +0300 | [diff] [blame] | 176 | mlx4_qp_release_range(priv->mdev->dev, ring->qpn, 1); |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 177 | mlx4_free_hwq_res(mdev->dev, &ring->sp_wqres, ring->buf_size); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 178 | kfree(ring->bounce_buf); |
| 179 | ring->bounce_buf = NULL; |
Eric Dumazet | dc9b06d | 2014-10-05 12:35:12 +0300 | [diff] [blame] | 180 | kvfree(ring->tx_info); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 181 | ring->tx_info = NULL; |
Eugenia Emantayev | 41d942d | 2013-11-07 12:19:52 +0200 | [diff] [blame] | 182 | kfree(ring); |
| 183 | *pring = NULL; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv, |
| 187 | struct mlx4_en_tx_ring *ring, |
Amir Vadai | 0e98b52 | 2012-04-04 21:33:24 +0000 | [diff] [blame] | 188 | int cq, int user_prio) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 189 | { |
| 190 | struct mlx4_en_dev *mdev = priv->mdev; |
| 191 | int err; |
| 192 | |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 193 | ring->sp_cqn = cq; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 194 | ring->prod = 0; |
| 195 | ring->cons = 0xffffffff; |
| 196 | ring->last_nr_txbb = 1; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 197 | memset(ring->tx_info, 0, ring->size * sizeof(struct mlx4_en_tx_info)); |
| 198 | memset(ring->buf, 0, ring->buf_size); |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 199 | ring->free_tx_desc = mlx4_en_free_tx_desc; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 200 | |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 201 | ring->sp_qp_state = MLX4_QP_STATE_RST; |
| 202 | ring->doorbell_qpn = cpu_to_be32(ring->sp_qp.qpn << 8); |
Eric Dumazet | 6a4e812 | 2014-10-05 12:35:11 +0300 | [diff] [blame] | 203 | ring->mr_key = cpu_to_be32(mdev->mr.key); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 204 | |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 205 | mlx4_en_fill_qp_context(priv, ring->size, ring->sp_stride, 1, 0, ring->qpn, |
| 206 | ring->sp_cqn, user_prio, &ring->sp_context); |
Amir Vadai | 0fef9d0 | 2014-07-22 15:44:10 +0300 | [diff] [blame] | 207 | if (ring->bf_alloced) |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 208 | ring->sp_context.usr_page = |
Huy Nguyen | 85743f1 | 2016-02-17 17:24:26 +0200 | [diff] [blame] | 209 | cpu_to_be32(mlx4_to_hw_uar_index(mdev->dev, |
| 210 | ring->bf.uar->index)); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 211 | |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 212 | err = mlx4_qp_to_ready(mdev->dev, &ring->sp_wqres.mtt, &ring->sp_context, |
| 213 | &ring->sp_qp, &ring->sp_qp_state); |
| 214 | if (!cpumask_empty(&ring->sp_affinity_mask)) |
| 215 | netif_set_xps_queue(priv->dev, &ring->sp_affinity_mask, |
Ido Shamay | d03a68f | 2013-12-19 21:20:14 +0200 | [diff] [blame] | 216 | ring->queue_index); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 217 | |
| 218 | return err; |
| 219 | } |
| 220 | |
| 221 | void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv, |
| 222 | struct mlx4_en_tx_ring *ring) |
| 223 | { |
| 224 | struct mlx4_en_dev *mdev = priv->mdev; |
| 225 | |
Eric Dumazet | e3f42f8 | 2016-11-22 15:56:10 -0800 | [diff] [blame] | 226 | mlx4_qp_modify(mdev->dev, NULL, ring->sp_qp_state, |
| 227 | MLX4_QP_STATE_RST, NULL, 0, 0, &ring->sp_qp); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Ido Shamay | 488a9b4 | 2015-06-25 11:29:42 +0300 | [diff] [blame] | 230 | static inline bool mlx4_en_is_tx_ring_full(struct mlx4_en_tx_ring *ring) |
| 231 | { |
| 232 | return ring->prod - ring->cons > ring->full_size; |
| 233 | } |
| 234 | |
Eugenia Emantayev | 2d4b646 | 2013-07-25 19:21:23 +0300 | [diff] [blame] | 235 | static void mlx4_en_stamp_wqe(struct mlx4_en_priv *priv, |
| 236 | struct mlx4_en_tx_ring *ring, int index, |
| 237 | u8 owner) |
| 238 | { |
| 239 | __be32 stamp = cpu_to_be32(STAMP_VAL | (!!owner << STAMP_SHIFT)); |
| 240 | struct mlx4_en_tx_desc *tx_desc = ring->buf + index * TXBB_SIZE; |
| 241 | struct mlx4_en_tx_info *tx_info = &ring->tx_info[index]; |
| 242 | void *end = ring->buf + ring->buf_size; |
| 243 | __be32 *ptr = (__be32 *)tx_desc; |
| 244 | int i; |
| 245 | |
| 246 | /* Optimize the common case when there are no wraparounds */ |
| 247 | if (likely((void *)tx_desc + tx_info->nr_txbb * TXBB_SIZE <= end)) { |
| 248 | /* Stamp the freed descriptor */ |
| 249 | for (i = 0; i < tx_info->nr_txbb * TXBB_SIZE; |
| 250 | i += STAMP_STRIDE) { |
| 251 | *ptr = stamp; |
| 252 | ptr += STAMP_DWORDS; |
| 253 | } |
| 254 | } else { |
| 255 | /* Stamp the freed descriptor */ |
| 256 | for (i = 0; i < tx_info->nr_txbb * TXBB_SIZE; |
| 257 | i += STAMP_STRIDE) { |
| 258 | *ptr = stamp; |
| 259 | ptr += STAMP_DWORDS; |
| 260 | if ((void *)ptr >= end) { |
| 261 | ptr = ring->buf; |
| 262 | stamp ^= cpu_to_be32(0x80000000); |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | } |
| 267 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 268 | |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 269 | u32 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv, |
| 270 | struct mlx4_en_tx_ring *ring, |
| 271 | int index, u8 owner, u64 timestamp, |
| 272 | int napi_mode) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 273 | { |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 274 | struct mlx4_en_tx_info *tx_info = &ring->tx_info[index]; |
| 275 | struct mlx4_en_tx_desc *tx_desc = ring->buf + index * TXBB_SIZE; |
| 276 | struct mlx4_wqe_data_seg *data = (void *) tx_desc + tx_info->data_offset; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 277 | void *end = ring->buf + ring->buf_size; |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 278 | struct sk_buff *skb = tx_info->skb; |
| 279 | int nr_maps = tx_info->nr_maps; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 280 | int i; |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 281 | |
Eric Dumazet | 29d40c9 | 2014-10-05 12:35:14 +0300 | [diff] [blame] | 282 | /* We do not touch skb here, so prefetch skb->users location |
| 283 | * to speedup consume_skb() |
| 284 | */ |
| 285 | prefetchw(&skb->users); |
| 286 | |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 287 | if (unlikely(timestamp)) { |
| 288 | struct skb_shared_hwtstamps hwts; |
| 289 | |
| 290 | mlx4_en_fill_hwtstamps(priv->mdev, &hwts, timestamp); |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 291 | skb_tstamp_tx(skb, &hwts); |
| 292 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 293 | |
| 294 | /* Optimize the common case when there are no wraparounds */ |
| 295 | if (likely((void *) tx_desc + tx_info->nr_txbb * TXBB_SIZE <= end)) { |
Yevgeny Petrilin | 41efea5 | 2009-01-08 10:57:15 -0800 | [diff] [blame] | 296 | if (!tx_info->inl) { |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 297 | if (tx_info->linear) |
Yevgeny Petrilin | ebf8c9a | 2012-03-06 04:03:34 +0000 | [diff] [blame] | 298 | dma_unmap_single(priv->ddev, |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 299 | tx_info->map0_dma, |
| 300 | tx_info->map0_byte_count, |
| 301 | PCI_DMA_TODEVICE); |
| 302 | else |
Yevgeny Petrilin | ebf8c9a | 2012-03-06 04:03:34 +0000 | [diff] [blame] | 303 | dma_unmap_page(priv->ddev, |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 304 | tx_info->map0_dma, |
| 305 | tx_info->map0_byte_count, |
| 306 | PCI_DMA_TODEVICE); |
| 307 | for (i = 1; i < nr_maps; i++) { |
| 308 | data++; |
| 309 | dma_unmap_page(priv->ddev, |
| 310 | (dma_addr_t)be64_to_cpu(data->addr), |
| 311 | be32_to_cpu(data->byte_count), |
| 312 | PCI_DMA_TODEVICE); |
Yevgeny Petrilin | 41efea5 | 2009-01-08 10:57:15 -0800 | [diff] [blame] | 313 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 314 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 315 | } else { |
Yevgeny Petrilin | 41efea5 | 2009-01-08 10:57:15 -0800 | [diff] [blame] | 316 | if (!tx_info->inl) { |
| 317 | if ((void *) data >= end) { |
Joe Perches | 43d620c | 2011-06-16 19:08:06 +0000 | [diff] [blame] | 318 | data = ring->buf + ((void *)data - end); |
Yevgeny Petrilin | 41efea5 | 2009-01-08 10:57:15 -0800 | [diff] [blame] | 319 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 320 | |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 321 | if (tx_info->linear) |
Yevgeny Petrilin | ebf8c9a | 2012-03-06 04:03:34 +0000 | [diff] [blame] | 322 | dma_unmap_single(priv->ddev, |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 323 | tx_info->map0_dma, |
| 324 | tx_info->map0_byte_count, |
| 325 | PCI_DMA_TODEVICE); |
| 326 | else |
| 327 | dma_unmap_page(priv->ddev, |
| 328 | tx_info->map0_dma, |
| 329 | tx_info->map0_byte_count, |
| 330 | PCI_DMA_TODEVICE); |
| 331 | for (i = 1; i < nr_maps; i++) { |
| 332 | data++; |
Yevgeny Petrilin | 41efea5 | 2009-01-08 10:57:15 -0800 | [diff] [blame] | 333 | /* Check for wraparound before unmapping */ |
| 334 | if ((void *) data >= end) |
Joe Perches | 43d620c | 2011-06-16 19:08:06 +0000 | [diff] [blame] | 335 | data = ring->buf; |
Yevgeny Petrilin | ebf8c9a | 2012-03-06 04:03:34 +0000 | [diff] [blame] | 336 | dma_unmap_page(priv->ddev, |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 337 | (dma_addr_t)be64_to_cpu(data->addr), |
| 338 | be32_to_cpu(data->byte_count), |
| 339 | PCI_DMA_TODEVICE); |
Yevgeny Petrilin | 41efea5 | 2009-01-08 10:57:15 -0800 | [diff] [blame] | 340 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 341 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 342 | } |
Jesper Dangaard Brouer | b4a5337 | 2016-03-11 09:44:08 +0100 | [diff] [blame] | 343 | napi_consume_skb(skb, napi_mode); |
| 344 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 345 | return tx_info->nr_txbb; |
| 346 | } |
| 347 | |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 348 | u32 mlx4_en_recycle_tx_desc(struct mlx4_en_priv *priv, |
| 349 | struct mlx4_en_tx_ring *ring, |
| 350 | int index, u8 owner, u64 timestamp, |
| 351 | int napi_mode) |
| 352 | { |
| 353 | struct mlx4_en_tx_info *tx_info = &ring->tx_info[index]; |
| 354 | struct mlx4_en_rx_alloc frame = { |
| 355 | .page = tx_info->page, |
| 356 | .dma = tx_info->map0_dma, |
Martin KaFai Lau | ea3349a | 2016-12-07 15:53:13 -0800 | [diff] [blame] | 357 | .page_offset = XDP_PACKET_HEADROOM, |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 358 | .page_size = PAGE_SIZE, |
| 359 | }; |
| 360 | |
| 361 | if (!mlx4_en_rx_recycle(ring->recycle_ring, &frame)) { |
| 362 | dma_unmap_page(priv->ddev, tx_info->map0_dma, |
| 363 | PAGE_SIZE, priv->frag_info[0].dma_dir); |
| 364 | put_page(tx_info->page); |
| 365 | } |
| 366 | |
| 367 | return tx_info->nr_txbb; |
| 368 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 369 | |
| 370 | int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring) |
| 371 | { |
| 372 | struct mlx4_en_priv *priv = netdev_priv(dev); |
| 373 | int cnt = 0; |
| 374 | |
| 375 | /* Skip last polled descriptor */ |
| 376 | ring->cons += ring->last_nr_txbb; |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 377 | en_dbg(DRV, priv, "Freeing Tx buf - cons:0x%x prod:0x%x\n", |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 378 | ring->cons, ring->prod); |
| 379 | |
| 380 | if ((u32) (ring->prod - ring->cons) > ring->size) { |
| 381 | if (netif_msg_tx_err(priv)) |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 382 | en_warn(priv, "Tx consumer passed producer!\n"); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | while (ring->cons != ring->prod) { |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 387 | ring->last_nr_txbb = ring->free_tx_desc(priv, ring, |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 388 | ring->cons & ring->size_mask, |
Jesper Dangaard Brouer | b4a5337 | 2016-03-11 09:44:08 +0100 | [diff] [blame] | 389 | !!(ring->cons & ring->size), 0, |
| 390 | 0 /* Non-NAPI caller */); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 391 | ring->cons += ring->last_nr_txbb; |
| 392 | cnt++; |
| 393 | } |
| 394 | |
Tariq Toukan | 67f8b1d | 2016-11-02 17:12:24 +0200 | [diff] [blame] | 395 | if (ring->tx_queue) |
| 396 | netdev_tx_reset_queue(ring->tx_queue); |
Tom Herbert | 41b7492 | 2013-02-06 07:58:41 +0000 | [diff] [blame] | 397 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 398 | if (cnt) |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 399 | en_dbg(DRV, priv, "Freed %d uncompleted tx descriptors\n", cnt); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 400 | |
| 401 | return cnt; |
| 402 | } |
| 403 | |
Amir Vadai | fbc6daf | 2014-07-08 11:28:12 +0300 | [diff] [blame] | 404 | static bool mlx4_en_process_tx_cq(struct net_device *dev, |
Jesper Dangaard Brouer | b4a5337 | 2016-03-11 09:44:08 +0100 | [diff] [blame] | 405 | struct mlx4_en_cq *cq, int napi_budget) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 406 | { |
| 407 | struct mlx4_en_priv *priv = netdev_priv(dev); |
| 408 | struct mlx4_cq *mcq = &cq->mcq; |
Tariq Toukan | 67f8b1d | 2016-11-02 17:12:24 +0200 | [diff] [blame] | 409 | struct mlx4_en_tx_ring *ring = priv->tx_ring[cq->type][cq->ring]; |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 410 | struct mlx4_cqe *cqe; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 411 | u16 index; |
Eugenia Emantayev | 2d4b646 | 2013-07-25 19:21:23 +0300 | [diff] [blame] | 412 | u16 new_index, ring_index, stamp_index; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 413 | u32 txbbs_skipped = 0; |
Eugenia Emantayev | 2d4b646 | 2013-07-25 19:21:23 +0300 | [diff] [blame] | 414 | u32 txbbs_stamp = 0; |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 415 | u32 cons_index = mcq->cons_index; |
| 416 | int size = cq->size; |
| 417 | u32 size_mask = ring->size_mask; |
| 418 | struct mlx4_cqe *buf = cq->buf; |
Yevgeny Petrilin | 5b263f5 | 2012-04-23 02:18:50 +0000 | [diff] [blame] | 419 | u32 packets = 0; |
| 420 | u32 bytes = 0; |
Or Gerlitz | 08ff323 | 2012-10-21 14:59:24 +0000 | [diff] [blame] | 421 | int factor = priv->cqe_factor; |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 422 | int done = 0; |
Amir Vadai | fbc6daf | 2014-07-08 11:28:12 +0300 | [diff] [blame] | 423 | int budget = priv->tx_work_limit; |
Eric Dumazet | fb1843e | 2014-10-05 12:35:15 +0300 | [diff] [blame] | 424 | u32 last_nr_txbb; |
| 425 | u32 ring_cons; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 426 | |
| 427 | if (!priv->port_up) |
Amir Vadai | fbc6daf | 2014-07-08 11:28:12 +0300 | [diff] [blame] | 428 | return true; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 429 | |
Eric Dumazet | 5351145 | 2014-10-08 08:19:27 -0700 | [diff] [blame] | 430 | netdev_txq_bql_complete_prefetchw(ring->tx_queue); |
| 431 | |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 432 | index = cons_index & size_mask; |
Ido Shamay | b1b6b4d | 2014-09-18 11:51:01 +0300 | [diff] [blame] | 433 | cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor; |
Eric Dumazet | fb1843e | 2014-10-05 12:35:15 +0300 | [diff] [blame] | 434 | last_nr_txbb = ACCESS_ONCE(ring->last_nr_txbb); |
| 435 | ring_cons = ACCESS_ONCE(ring->cons); |
| 436 | ring_index = ring_cons & size_mask; |
Eugenia Emantayev | 2d4b646 | 2013-07-25 19:21:23 +0300 | [diff] [blame] | 437 | stamp_index = ring_index; |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 438 | |
| 439 | /* Process all completed CQEs */ |
| 440 | while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK, |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 441 | cons_index & size) && (done < budget)) { |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 442 | /* |
| 443 | * make sure we read the CQE after we read the |
| 444 | * ownership bit |
| 445 | */ |
Alexander Duyck | 12b3375 | 2015-04-08 18:49:36 -0700 | [diff] [blame] | 446 | dma_rmb(); |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 447 | |
Amir Vadai | bd2f631 | 2013-08-21 10:08:57 +0300 | [diff] [blame] | 448 | if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) == |
| 449 | MLX4_CQE_OPCODE_ERROR)) { |
| 450 | struct mlx4_err_cqe *cqe_err = (struct mlx4_err_cqe *)cqe; |
| 451 | |
| 452 | en_err(priv, "CQE error - vendor syndrome: 0x%x syndrome: 0x%x\n", |
| 453 | cqe_err->vendor_err_syndrome, |
| 454 | cqe_err->syndrome); |
| 455 | } |
| 456 | |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 457 | /* Skip over last polled CQE */ |
| 458 | new_index = be16_to_cpu(cqe->wqe_index) & size_mask; |
| 459 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 460 | do { |
Eric Dumazet | fc96256 | 2016-04-23 11:35:46 -0700 | [diff] [blame] | 461 | u64 timestamp = 0; |
| 462 | |
Eric Dumazet | fb1843e | 2014-10-05 12:35:15 +0300 | [diff] [blame] | 463 | txbbs_skipped += last_nr_txbb; |
| 464 | ring_index = (ring_index + last_nr_txbb) & size_mask; |
Eric Dumazet | fc96256 | 2016-04-23 11:35:46 -0700 | [diff] [blame] | 465 | |
| 466 | if (unlikely(ring->tx_info[ring_index].ts_requested)) |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 467 | timestamp = mlx4_en_get_cqe_ts(cqe); |
| 468 | |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 469 | /* free next descriptor */ |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 470 | last_nr_txbb = ring->free_tx_desc( |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 471 | priv, ring, ring_index, |
Eric Dumazet | fb1843e | 2014-10-05 12:35:15 +0300 | [diff] [blame] | 472 | !!((ring_cons + txbbs_skipped) & |
Jesper Dangaard Brouer | b4a5337 | 2016-03-11 09:44:08 +0100 | [diff] [blame] | 473 | ring->size), timestamp, napi_budget); |
Eugenia Emantayev | 2d4b646 | 2013-07-25 19:21:23 +0300 | [diff] [blame] | 474 | |
| 475 | mlx4_en_stamp_wqe(priv, ring, stamp_index, |
Eric Dumazet | fb1843e | 2014-10-05 12:35:15 +0300 | [diff] [blame] | 476 | !!((ring_cons + txbbs_stamp) & |
Eugenia Emantayev | 2d4b646 | 2013-07-25 19:21:23 +0300 | [diff] [blame] | 477 | ring->size)); |
| 478 | stamp_index = ring_index; |
| 479 | txbbs_stamp = txbbs_skipped; |
Yevgeny Petrilin | 5b263f5 | 2012-04-23 02:18:50 +0000 | [diff] [blame] | 480 | packets++; |
| 481 | bytes += ring->tx_info[ring_index].nr_bytes; |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 482 | } while ((++done < budget) && (ring_index != new_index)); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 483 | |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 484 | ++cons_index; |
| 485 | index = cons_index & size_mask; |
Ido Shamay | b1b6b4d | 2014-09-18 11:51:01 +0300 | [diff] [blame] | 486 | cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor; |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 487 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 488 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 489 | |
| 490 | /* |
| 491 | * To prevent CQ overflow we first update CQ consumer and only then |
| 492 | * the ring consumer. |
| 493 | */ |
Yevgeny Petrilin | f0ab34f | 2011-11-26 19:55:10 +0000 | [diff] [blame] | 494 | mcq->cons_index = cons_index; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 495 | mlx4_cq_set_ci(mcq); |
| 496 | wmb(); |
Eric Dumazet | fb1843e | 2014-10-05 12:35:15 +0300 | [diff] [blame] | 497 | |
| 498 | /* we want to dirty this cache line once */ |
| 499 | ACCESS_ONCE(ring->last_nr_txbb) = last_nr_txbb; |
| 500 | ACCESS_ONCE(ring->cons) = ring_cons + txbbs_skipped; |
| 501 | |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 502 | if (ring->free_tx_desc == mlx4_en_recycle_tx_desc) |
| 503 | return done < budget; |
| 504 | |
Yevgeny Petrilin | 5b263f5 | 2012-04-23 02:18:50 +0000 | [diff] [blame] | 505 | netdev_tx_completed_queue(ring->tx_queue, packets, bytes); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 506 | |
Ido Shamay | 488a9b4 | 2015-06-25 11:29:42 +0300 | [diff] [blame] | 507 | /* Wakeup Tx queue if this stopped, and ring is not full. |
Yevgeny Petrilin | c18520b | 2012-08-03 00:38:37 +0000 | [diff] [blame] | 508 | */ |
Ido Shamay | 488a9b4 | 2015-06-25 11:29:42 +0300 | [diff] [blame] | 509 | if (netif_tx_queue_stopped(ring->tx_queue) && |
| 510 | !mlx4_en_is_tx_ring_full(ring)) { |
Yevgeny Petrilin | c18520b | 2012-08-03 00:38:37 +0000 | [diff] [blame] | 511 | netif_tx_wake_queue(ring->tx_queue); |
Eugenia Emantayev | 15bffdf | 2014-03-02 10:25:00 +0200 | [diff] [blame] | 512 | ring->wake_queue++; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 513 | } |
Amir Vadai | fbc6daf | 2014-07-08 11:28:12 +0300 | [diff] [blame] | 514 | return done < budget; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | void mlx4_en_tx_irq(struct mlx4_cq *mcq) |
| 518 | { |
| 519 | struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq); |
| 520 | struct mlx4_en_priv *priv = netdev_priv(cq->dev); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 521 | |
Eric Dumazet | 477b35b | 2014-10-29 16:54:45 -0700 | [diff] [blame] | 522 | if (likely(priv->port_up)) |
| 523 | napi_schedule_irqoff(&cq->napi); |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 524 | else |
| 525 | mlx4_en_arm_cq(priv, cq); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 528 | /* TX CQ polling - called by NAPI */ |
| 529 | int mlx4_en_poll_tx_cq(struct napi_struct *napi, int budget) |
| 530 | { |
| 531 | struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi); |
| 532 | struct net_device *dev = cq->dev; |
| 533 | struct mlx4_en_priv *priv = netdev_priv(dev); |
Amir Vadai | fbc6daf | 2014-07-08 11:28:12 +0300 | [diff] [blame] | 534 | int clean_complete; |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 535 | |
Jesper Dangaard Brouer | b4a5337 | 2016-03-11 09:44:08 +0100 | [diff] [blame] | 536 | clean_complete = mlx4_en_process_tx_cq(dev, cq, budget); |
Amir Vadai | fbc6daf | 2014-07-08 11:28:12 +0300 | [diff] [blame] | 537 | if (!clean_complete) |
| 538 | return budget; |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 539 | |
Amir Vadai | fbc6daf | 2014-07-08 11:28:12 +0300 | [diff] [blame] | 540 | napi_complete(napi); |
| 541 | mlx4_en_arm_cq(priv, cq); |
| 542 | |
| 543 | return 0; |
Eugenia Emantayev | 0276a33 | 2013-12-19 21:20:17 +0200 | [diff] [blame] | 544 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 545 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 546 | static struct mlx4_en_tx_desc *mlx4_en_bounce_to_desc(struct mlx4_en_priv *priv, |
| 547 | struct mlx4_en_tx_ring *ring, |
| 548 | u32 index, |
| 549 | unsigned int desc_size) |
| 550 | { |
| 551 | u32 copy = (ring->size - index) * TXBB_SIZE; |
| 552 | int i; |
| 553 | |
| 554 | for (i = desc_size - copy - 4; i >= 0; i -= 4) { |
| 555 | if ((i & (TXBB_SIZE - 1)) == 0) |
| 556 | wmb(); |
| 557 | |
| 558 | *((u32 *) (ring->buf + i)) = |
| 559 | *((u32 *) (ring->bounce_buf + copy + i)); |
| 560 | } |
| 561 | |
| 562 | for (i = copy - 4; i >= 4 ; i -= 4) { |
| 563 | if ((i & (TXBB_SIZE - 1)) == 0) |
| 564 | wmb(); |
| 565 | |
| 566 | *((u32 *) (ring->buf + index * TXBB_SIZE + i)) = |
| 567 | *((u32 *) (ring->bounce_buf + i)); |
| 568 | } |
| 569 | |
| 570 | /* Return real descriptor location */ |
| 571 | return ring->buf + index * TXBB_SIZE; |
| 572 | } |
| 573 | |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 574 | /* Decide if skb can be inlined in tx descriptor to avoid dma mapping |
| 575 | * |
| 576 | * It seems strange we do not simply use skb_copy_bits(). |
| 577 | * This would allow to inline all skbs iff skb->len <= inline_thold |
| 578 | * |
| 579 | * Note that caller already checked skb was not a gso packet |
| 580 | */ |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 581 | static bool is_inline(int inline_thold, const struct sk_buff *skb, |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 582 | const struct skb_shared_info *shinfo, |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 583 | void **pfrag) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 584 | { |
| 585 | void *ptr; |
| 586 | |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 587 | if (skb->len > inline_thold || !inline_thold) |
| 588 | return false; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 589 | |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 590 | if (shinfo->nr_frags == 1) { |
| 591 | ptr = skb_frag_address_safe(&shinfo->frags[0]); |
| 592 | if (unlikely(!ptr)) |
| 593 | return false; |
| 594 | *pfrag = ptr; |
| 595 | return true; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 596 | } |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 597 | if (shinfo->nr_frags) |
| 598 | return false; |
| 599 | return true; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 600 | } |
| 601 | |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 602 | static int inline_size(const struct sk_buff *skb) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 603 | { |
| 604 | if (skb->len + CTRL_SIZE + sizeof(struct mlx4_wqe_inline_seg) |
| 605 | <= MLX4_INLINE_ALIGN) |
| 606 | return ALIGN(skb->len + CTRL_SIZE + |
| 607 | sizeof(struct mlx4_wqe_inline_seg), 16); |
| 608 | else |
| 609 | return ALIGN(skb->len + CTRL_SIZE + 2 * |
| 610 | sizeof(struct mlx4_wqe_inline_seg), 16); |
| 611 | } |
| 612 | |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 613 | static int get_real_size(const struct sk_buff *skb, |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 614 | const struct skb_shared_info *shinfo, |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 615 | struct net_device *dev, |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 616 | int *lso_header_size, |
| 617 | bool *inline_ok, |
| 618 | void **pfrag) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 619 | { |
| 620 | struct mlx4_en_priv *priv = netdev_priv(dev); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 621 | int real_size; |
| 622 | |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 623 | if (shinfo->gso_size) { |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 624 | *inline_ok = false; |
Or Gerlitz | 837052d | 2013-12-23 16:09:44 +0200 | [diff] [blame] | 625 | if (skb->encapsulation) |
| 626 | *lso_header_size = (skb_inner_transport_header(skb) - skb->data) + inner_tcp_hdrlen(skb); |
| 627 | else |
| 628 | *lso_header_size = skb_transport_offset(skb) + tcp_hdrlen(skb); |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 629 | real_size = CTRL_SIZE + shinfo->nr_frags * DS_SIZE + |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 630 | ALIGN(*lso_header_size + 4, DS_SIZE); |
| 631 | if (unlikely(*lso_header_size != skb_headlen(skb))) { |
| 632 | /* We add a segment for the skb linear buffer only if |
| 633 | * it contains data */ |
| 634 | if (*lso_header_size < skb_headlen(skb)) |
| 635 | real_size += DS_SIZE; |
| 636 | else { |
| 637 | if (netif_msg_tx_err(priv)) |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 638 | en_warn(priv, "Non-linear headers\n"); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 639 | return 0; |
| 640 | } |
| 641 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 642 | } else { |
| 643 | *lso_header_size = 0; |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 644 | *inline_ok = is_inline(priv->prof->inline_thold, skb, |
| 645 | shinfo, pfrag); |
| 646 | |
| 647 | if (*inline_ok) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 648 | real_size = inline_size(skb); |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 649 | else |
| 650 | real_size = CTRL_SIZE + |
| 651 | (shinfo->nr_frags + 1) * DS_SIZE; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | return real_size; |
| 655 | } |
| 656 | |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 657 | static void build_inline_wqe(struct mlx4_en_tx_desc *tx_desc, |
| 658 | const struct sk_buff *skb, |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 659 | const struct skb_shared_info *shinfo, |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 660 | void *fragptr) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 661 | { |
| 662 | struct mlx4_wqe_inline_seg *inl = &tx_desc->inl; |
| 663 | int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - sizeof *inl; |
Eric Dumazet | e533ac7 | 2014-10-05 12:35:18 +0300 | [diff] [blame] | 664 | unsigned int hlen = skb_headlen(skb); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 665 | |
| 666 | if (skb->len <= spc) { |
Eugenia Emantayev | 93591aa | 2014-03-02 10:24:59 +0200 | [diff] [blame] | 667 | if (likely(skb->len >= MIN_PKT_LEN)) { |
| 668 | inl->byte_count = cpu_to_be32(1 << 31 | skb->len); |
| 669 | } else { |
| 670 | inl->byte_count = cpu_to_be32(1 << 31 | MIN_PKT_LEN); |
| 671 | memset(((void *)(inl + 1)) + skb->len, 0, |
| 672 | MIN_PKT_LEN - skb->len); |
| 673 | } |
Eric Dumazet | e533ac7 | 2014-10-05 12:35:18 +0300 | [diff] [blame] | 674 | skb_copy_from_linear_data(skb, inl + 1, hlen); |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 675 | if (shinfo->nr_frags) |
Eric Dumazet | e533ac7 | 2014-10-05 12:35:18 +0300 | [diff] [blame] | 676 | memcpy(((void *)(inl + 1)) + hlen, fragptr, |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 677 | skb_frag_size(&shinfo->frags[0])); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 678 | |
| 679 | } else { |
| 680 | inl->byte_count = cpu_to_be32(1 << 31 | spc); |
Eric Dumazet | e533ac7 | 2014-10-05 12:35:18 +0300 | [diff] [blame] | 681 | if (hlen <= spc) { |
| 682 | skb_copy_from_linear_data(skb, inl + 1, hlen); |
| 683 | if (hlen < spc) { |
| 684 | memcpy(((void *)(inl + 1)) + hlen, |
| 685 | fragptr, spc - hlen); |
| 686 | fragptr += spc - hlen; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 687 | } |
| 688 | inl = (void *) (inl + 1) + spc; |
| 689 | memcpy(((void *)(inl + 1)), fragptr, skb->len - spc); |
| 690 | } else { |
| 691 | skb_copy_from_linear_data(skb, inl + 1, spc); |
| 692 | inl = (void *) (inl + 1) + spc; |
| 693 | skb_copy_from_linear_data_offset(skb, spc, inl + 1, |
Eric Dumazet | e533ac7 | 2014-10-05 12:35:18 +0300 | [diff] [blame] | 694 | hlen - spc); |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 695 | if (shinfo->nr_frags) |
Eric Dumazet | e533ac7 | 2014-10-05 12:35:18 +0300 | [diff] [blame] | 696 | memcpy(((void *)(inl + 1)) + hlen - spc, |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 697 | fragptr, |
| 698 | skb_frag_size(&shinfo->frags[0])); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 699 | } |
| 700 | |
Alexander Duyck | 12b3375 | 2015-04-08 18:49:36 -0700 | [diff] [blame] | 701 | dma_wmb(); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 702 | inl->byte_count = cpu_to_be32(1 << 31 | (skb->len - spc)); |
| 703 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Jason Wang | f663dd9 | 2014-01-10 16:18:26 +0800 | [diff] [blame] | 706 | u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb, |
Daniel Borkmann | 99932d4 | 2014-02-16 15:55:20 +0100 | [diff] [blame] | 707 | void *accel_priv, select_queue_fallback_t fallback) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 708 | { |
Amir Vadai | bc6a474 | 2012-05-17 00:58:10 +0000 | [diff] [blame] | 709 | struct mlx4_en_priv *priv = netdev_priv(dev); |
Amir Vadai | d317966 | 2012-12-02 03:49:23 +0000 | [diff] [blame] | 710 | u16 rings_p_up = priv->num_tx_rings_p_up; |
Amir Vadai | bc6a474 | 2012-05-17 00:58:10 +0000 | [diff] [blame] | 711 | u8 up = 0; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 712 | |
Alaa Hleihel | 4b5e5b7 | 2017-01-29 18:56:16 +0200 | [diff] [blame^] | 713 | if (netdev_get_num_tc(dev)) |
Amir Vadai | bc6a474 | 2012-05-17 00:58:10 +0000 | [diff] [blame] | 714 | return skb_tx_hash(dev, skb); |
Yevgeny Petrilin | f813cad | 2009-06-01 23:24:07 +0000 | [diff] [blame] | 715 | |
Jiri Pirko | df8a39d | 2015-01-13 17:13:44 +0100 | [diff] [blame] | 716 | if (skb_vlan_tag_present(skb)) |
| 717 | up = skb_vlan_tag_get(skb) >> VLAN_PRIO_SHIFT; |
Amir Vadai | bc6a474 | 2012-05-17 00:58:10 +0000 | [diff] [blame] | 718 | |
Daniel Borkmann | 99932d4 | 2014-02-16 15:55:20 +0100 | [diff] [blame] | 719 | return fallback(dev, skb) % rings_p_up + up * rings_p_up; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 722 | static void mlx4_bf_copy(void __iomem *dst, const void *src, |
| 723 | unsigned int bytecnt) |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 724 | { |
| 725 | __iowrite64_copy(dst, src, bytecnt / 8); |
| 726 | } |
| 727 | |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 728 | void mlx4_en_xmit_doorbell(struct mlx4_en_tx_ring *ring) |
| 729 | { |
| 730 | wmb(); |
| 731 | /* Since there is no iowrite*_native() that writes the |
| 732 | * value as is, without byteswapping - using the one |
| 733 | * the doesn't do byteswapping in the relevant arch |
| 734 | * endianness. |
| 735 | */ |
| 736 | #if defined(__LITTLE_ENDIAN) |
| 737 | iowrite32( |
| 738 | #else |
| 739 | iowrite32be( |
| 740 | #endif |
| 741 | ring->doorbell_qpn, |
| 742 | ring->bf.uar->map + MLX4_SEND_DOORBELL); |
| 743 | } |
| 744 | |
| 745 | static void mlx4_en_tx_write_desc(struct mlx4_en_tx_ring *ring, |
| 746 | struct mlx4_en_tx_desc *tx_desc, |
| 747 | union mlx4_wqe_qpn_vlan qpn_vlan, |
| 748 | int desc_size, int bf_index, |
| 749 | __be32 op_own, bool bf_ok, |
| 750 | bool send_doorbell) |
| 751 | { |
| 752 | tx_desc->ctrl.qpn_vlan = qpn_vlan; |
| 753 | |
| 754 | if (bf_ok) { |
| 755 | op_own |= htonl((bf_index & 0xffff) << 8); |
| 756 | /* Ensure new descriptor hits memory |
| 757 | * before setting ownership of this descriptor to HW |
| 758 | */ |
| 759 | dma_wmb(); |
| 760 | tx_desc->ctrl.owner_opcode = op_own; |
| 761 | |
| 762 | wmb(); |
| 763 | |
| 764 | mlx4_bf_copy(ring->bf.reg + ring->bf.offset, &tx_desc->ctrl, |
| 765 | desc_size); |
| 766 | |
| 767 | wmb(); |
| 768 | |
| 769 | ring->bf.offset ^= ring->bf.buf_size; |
| 770 | } else { |
| 771 | /* Ensure new descriptor hits memory |
| 772 | * before setting ownership of this descriptor to HW |
| 773 | */ |
| 774 | dma_wmb(); |
| 775 | tx_desc->ctrl.owner_opcode = op_own; |
| 776 | if (send_doorbell) |
| 777 | mlx4_en_xmit_doorbell(ring); |
| 778 | else |
| 779 | ring->xmit_more++; |
| 780 | } |
| 781 | } |
| 782 | |
Stephen Hemminger | 61357325 | 2009-08-31 19:50:58 +0000 | [diff] [blame] | 783 | netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 784 | { |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 785 | struct skb_shared_info *shinfo = skb_shinfo(skb); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 786 | struct mlx4_en_priv *priv = netdev_priv(dev); |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 787 | union mlx4_wqe_qpn_vlan qpn_vlan = {}; |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 788 | struct device *ddev = priv->ddev; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 789 | struct mlx4_en_tx_ring *ring; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 790 | struct mlx4_en_tx_desc *tx_desc; |
| 791 | struct mlx4_wqe_data_seg *data; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 792 | struct mlx4_en_tx_info *tx_info; |
| 793 | int tx_ind = 0; |
| 794 | int nr_txbb; |
| 795 | int desc_size; |
| 796 | int real_size; |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 797 | u32 index, bf_index; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 798 | __be32 op_own; |
Hadar Hen Zion | e38af4f | 2015-07-27 14:46:34 +0300 | [diff] [blame] | 799 | u16 vlan_proto = 0; |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 800 | int i_frag; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 801 | int lso_header_size; |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 802 | void *fragptr = NULL; |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 803 | bool bounce = false; |
Eric Dumazet | 5804283 | 2014-09-25 07:17:49 -0700 | [diff] [blame] | 804 | bool send_doorbell; |
Eric Dumazet | fe971b9 | 2014-10-06 09:30:35 -0700 | [diff] [blame] | 805 | bool stop_queue; |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 806 | bool inline_ok; |
Eric Dumazet | f905c79 | 2014-10-05 12:35:16 +0300 | [diff] [blame] | 807 | u32 ring_cons; |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 808 | bool bf_ok; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 809 | |
Eric Dumazet | f905c79 | 2014-10-05 12:35:16 +0300 | [diff] [blame] | 810 | tx_ind = skb_get_queue_mapping(skb); |
Tariq Toukan | 67f8b1d | 2016-11-02 17:12:24 +0200 | [diff] [blame] | 811 | ring = priv->tx_ring[TX][tx_ind]; |
Eric Dumazet | f905c79 | 2014-10-05 12:35:16 +0300 | [diff] [blame] | 812 | |
Eric Dumazet | 63a664b | 2016-05-25 09:50:36 -0700 | [diff] [blame] | 813 | if (!priv->port_up) |
| 814 | goto tx_drop; |
| 815 | |
Eric Dumazet | f905c79 | 2014-10-05 12:35:16 +0300 | [diff] [blame] | 816 | /* fetch ring->cons far ahead before needing it to avoid stall */ |
| 817 | ring_cons = ACCESS_ONCE(ring->cons); |
| 818 | |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 819 | real_size = get_real_size(skb, shinfo, dev, &lso_header_size, |
| 820 | &inline_ok, &fragptr); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 821 | if (unlikely(!real_size)) |
Moshe Shemesh | 7a61fc8 | 2016-09-11 10:56:20 +0300 | [diff] [blame] | 822 | goto tx_drop_count; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 823 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 824 | /* Align descriptor to TXBB size */ |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 825 | desc_size = ALIGN(real_size, TXBB_SIZE); |
| 826 | nr_txbb = desc_size / TXBB_SIZE; |
| 827 | if (unlikely(nr_txbb > MAX_DESC_TXBBS)) { |
| 828 | if (netif_msg_tx_err(priv)) |
Yevgeny Petrilin | 453a608 | 2009-06-01 20:27:13 +0000 | [diff] [blame] | 829 | en_warn(priv, "Oversized header or SG list\n"); |
Moshe Shemesh | 7a61fc8 | 2016-09-11 10:56:20 +0300 | [diff] [blame] | 830 | goto tx_drop_count; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 831 | } |
| 832 | |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 833 | bf_ok = ring->bf_enabled; |
Hadar Hen Zion | e38af4f | 2015-07-27 14:46:34 +0300 | [diff] [blame] | 834 | if (skb_vlan_tag_present(skb)) { |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 835 | qpn_vlan.vlan_tag = cpu_to_be16(skb_vlan_tag_get(skb)); |
Hadar Hen Zion | e38af4f | 2015-07-27 14:46:34 +0300 | [diff] [blame] | 836 | vlan_proto = be16_to_cpu(skb->vlan_proto); |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 837 | if (vlan_proto == ETH_P_8021AD) |
| 838 | qpn_vlan.ins_vlan = MLX4_WQE_CTRL_INS_SVLAN; |
| 839 | else if (vlan_proto == ETH_P_8021Q) |
| 840 | qpn_vlan.ins_vlan = MLX4_WQE_CTRL_INS_CVLAN; |
| 841 | else |
| 842 | qpn_vlan.ins_vlan = 0; |
| 843 | bf_ok = false; |
Hadar Hen Zion | e38af4f | 2015-07-27 14:46:34 +0300 | [diff] [blame] | 844 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 845 | |
Eric Dumazet | 5351145 | 2014-10-08 08:19:27 -0700 | [diff] [blame] | 846 | netdev_txq_bql_enqueue_prefetchw(ring->tx_queue); |
Eric Dumazet | 29d40c9 | 2014-10-05 12:35:14 +0300 | [diff] [blame] | 847 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 848 | /* Track current inflight packets for performance analysis */ |
| 849 | AVG_PERF_COUNTER(priv->pstats.inflight_avg, |
Eric Dumazet | f905c79 | 2014-10-05 12:35:16 +0300 | [diff] [blame] | 850 | (u32)(ring->prod - ring_cons - 1)); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 851 | |
| 852 | /* Packet is good - grab an index and transmit it */ |
| 853 | index = ring->prod & ring->size_mask; |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 854 | bf_index = ring->prod; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 855 | |
| 856 | /* See if we have enough space for whole descriptor TXBB for setting |
| 857 | * SW ownership on next descriptor; if not, use a bounce buffer. */ |
| 858 | if (likely(index + nr_txbb <= ring->size)) |
| 859 | tx_desc = ring->buf + index * TXBB_SIZE; |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 860 | else { |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 861 | tx_desc = (struct mlx4_en_tx_desc *) ring->bounce_buf; |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 862 | bounce = true; |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 863 | bf_ok = false; |
Yevgeny Petrilin | 87a5c38 | 2011-03-22 22:38:52 +0000 | [diff] [blame] | 864 | } |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 865 | |
| 866 | /* Save skb in tx_info ring */ |
| 867 | tx_info = &ring->tx_info[index]; |
| 868 | tx_info->skb = skb; |
| 869 | tx_info->nr_txbb = nr_txbb; |
| 870 | |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 871 | data = &tx_desc->data; |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 872 | if (lso_header_size) |
| 873 | data = ((void *)&tx_desc->lso + ALIGN(lso_header_size + 4, |
| 874 | DS_SIZE)); |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 875 | |
| 876 | /* valid only for none inline segments */ |
| 877 | tx_info->data_offset = (void *)data - (void *)tx_desc; |
| 878 | |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 879 | tx_info->inl = inline_ok; |
| 880 | |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 881 | tx_info->linear = (lso_header_size < skb_headlen(skb) && |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 882 | !inline_ok) ? 1 : 0; |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 883 | |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 884 | tx_info->nr_maps = shinfo->nr_frags + tx_info->linear; |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 885 | data += tx_info->nr_maps - 1; |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 886 | |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 887 | if (!tx_info->inl) { |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 888 | dma_addr_t dma = 0; |
| 889 | u32 byte_count = 0; |
| 890 | |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 891 | /* Map fragments if any */ |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 892 | for (i_frag = shinfo->nr_frags - 1; i_frag >= 0; i_frag--) { |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 893 | const struct skb_frag_struct *frag; |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 894 | |
| 895 | frag = &shinfo->frags[i_frag]; |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 896 | byte_count = skb_frag_size(frag); |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 897 | dma = skb_frag_dma_map(ddev, frag, |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 898 | 0, byte_count, |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 899 | DMA_TO_DEVICE); |
| 900 | if (dma_mapping_error(ddev, dma)) |
| 901 | goto tx_drop_unmap; |
| 902 | |
| 903 | data->addr = cpu_to_be64(dma); |
Eric Dumazet | 6a4e812 | 2014-10-05 12:35:11 +0300 | [diff] [blame] | 904 | data->lkey = ring->mr_key; |
Alexander Duyck | 12b3375 | 2015-04-08 18:49:36 -0700 | [diff] [blame] | 905 | dma_wmb(); |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 906 | data->byte_count = cpu_to_be32(byte_count); |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 907 | --data; |
| 908 | } |
| 909 | |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 910 | /* Map linear part if needed */ |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 911 | if (tx_info->linear) { |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 912 | byte_count = skb_headlen(skb) - lso_header_size; |
Amir Vadai | 5f1cd20 | 2013-08-21 10:08:59 +0300 | [diff] [blame] | 913 | |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 914 | dma = dma_map_single(ddev, skb->data + |
| 915 | lso_header_size, byte_count, |
| 916 | PCI_DMA_TODEVICE); |
| 917 | if (dma_mapping_error(ddev, dma)) |
| 918 | goto tx_drop_unmap; |
| 919 | |
| 920 | data->addr = cpu_to_be64(dma); |
Eric Dumazet | 6a4e812 | 2014-10-05 12:35:11 +0300 | [diff] [blame] | 921 | data->lkey = ring->mr_key; |
Alexander Duyck | 12b3375 | 2015-04-08 18:49:36 -0700 | [diff] [blame] | 922 | dma_wmb(); |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 923 | data->byte_count = cpu_to_be32(byte_count); |
| 924 | } |
Eric Dumazet | 3d03641 | 2014-10-05 12:35:13 +0300 | [diff] [blame] | 925 | /* tx completion can avoid cache line miss for common cases */ |
| 926 | tx_info->map0_dma = dma; |
| 927 | tx_info->map0_byte_count = byte_count; |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 928 | } |
| 929 | |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 930 | /* |
| 931 | * For timestamping add flag to skb_shinfo and |
| 932 | * set flag for further reference |
| 933 | */ |
Eric Dumazet | e70602a | 2014-10-05 12:35:19 +0300 | [diff] [blame] | 934 | tx_info->ts_requested = 0; |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 935 | if (unlikely(ring->hwtstamp_tx_type == HWTSTAMP_TX_ON && |
| 936 | shinfo->tx_flags & SKBTX_HW_TSTAMP)) { |
| 937 | shinfo->tx_flags |= SKBTX_IN_PROGRESS; |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 938 | tx_info->ts_requested = 1; |
| 939 | } |
| 940 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 941 | /* Prepare ctrl segement apart opcode+ownership, which depends on |
| 942 | * whether LSO is used */ |
Amir Vadai | 60d6fe9 | 2011-11-26 19:55:19 +0000 | [diff] [blame] | 943 | tx_desc->ctrl.srcrb_flags = priv->ctrl_flags; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 944 | if (likely(skb->ip_summed == CHECKSUM_PARTIAL)) { |
Or Gerlitz | a4f2dac | 2014-10-30 15:59:27 +0200 | [diff] [blame] | 945 | if (!skb->encapsulation) |
| 946 | tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM | |
| 947 | MLX4_WQE_CTRL_TCP_UDP_CSUM); |
| 948 | else |
| 949 | tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM); |
Yevgeny Petrilin | ad04378 | 2011-10-18 01:50:56 +0000 | [diff] [blame] | 950 | ring->tx_csum++; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Yan Burman | 79aeacc | 2013-02-07 02:25:19 +0000 | [diff] [blame] | 953 | if (priv->flags & MLX4_EN_FLAG_ENABLE_HW_LOOPBACK) { |
Amir Vadai | 5f1cd20 | 2013-08-21 10:08:59 +0300 | [diff] [blame] | 954 | struct ethhdr *ethh; |
| 955 | |
Yan Burman | 213815a | 2013-01-17 05:30:42 +0000 | [diff] [blame] | 956 | /* Copy dst mac address to wqe. This allows loopback in eSwitch, |
| 957 | * so that VFs and PF can communicate with each other |
| 958 | */ |
| 959 | ethh = (struct ethhdr *)skb->data; |
| 960 | tx_desc->ctrl.srcrb_flags16[0] = get_unaligned((__be16 *)ethh->h_dest); |
| 961 | tx_desc->ctrl.imm = get_unaligned((__be32 *)(ethh->h_dest + 2)); |
| 962 | } |
| 963 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 964 | /* Handle LSO (TSO) packets */ |
| 965 | if (lso_header_size) { |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 966 | int i; |
| 967 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 968 | /* Mark opcode as LSO */ |
| 969 | op_own = cpu_to_be32(MLX4_OPCODE_LSO | (1 << 6)) | |
| 970 | ((ring->prod & ring->size) ? |
| 971 | cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0); |
| 972 | |
| 973 | /* Fill in the LSO prefix */ |
| 974 | tx_desc->lso.mss_hdr_size = cpu_to_be32( |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 975 | shinfo->gso_size << 16 | lso_header_size); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 976 | |
| 977 | /* Copy headers; |
| 978 | * note that we already verified that it is linear */ |
| 979 | memcpy(tx_desc->lso.header, skb->data, lso_header_size); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 980 | |
Eric Dumazet | 9fab426 | 2014-10-02 08:24:21 -0700 | [diff] [blame] | 981 | ring->tso_packets++; |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 982 | |
| 983 | i = ((skb->len - lso_header_size) / shinfo->gso_size) + |
| 984 | !!((skb->len - lso_header_size) % shinfo->gso_size); |
Yevgeny Petrilin | 5b263f5 | 2012-04-23 02:18:50 +0000 | [diff] [blame] | 985 | tx_info->nr_bytes = skb->len + (i - 1) * lso_header_size; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 986 | ring->packets += i; |
| 987 | } else { |
| 988 | /* Normal (Non LSO) packet */ |
| 989 | op_own = cpu_to_be32(MLX4_OPCODE_SEND) | |
| 990 | ((ring->prod & ring->size) ? |
| 991 | cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0); |
Yevgeny Petrilin | 5b263f5 | 2012-04-23 02:18:50 +0000 | [diff] [blame] | 992 | tx_info->nr_bytes = max_t(unsigned int, skb->len, ETH_ZLEN); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 993 | ring->packets++; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 994 | } |
Yevgeny Petrilin | 5b263f5 | 2012-04-23 02:18:50 +0000 | [diff] [blame] | 995 | ring->bytes += tx_info->nr_bytes; |
| 996 | netdev_tx_sent_queue(ring->tx_queue, tx_info->nr_bytes); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 997 | AVG_PERF_COUNTER(priv->pstats.tx_pktsz_avg, skb->len); |
| 998 | |
Eric Dumazet | acea73d | 2014-10-05 12:35:20 +0300 | [diff] [blame] | 999 | if (tx_info->inl) |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 1000 | build_inline_wqe(tx_desc, skb, shinfo, fragptr); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 1001 | |
Or Gerlitz | 837052d | 2013-12-23 16:09:44 +0200 | [diff] [blame] | 1002 | if (skb->encapsulation) { |
Alexander Duyck | 0906712 | 2016-05-02 09:38:37 -0700 | [diff] [blame] | 1003 | union { |
| 1004 | struct iphdr *v4; |
| 1005 | struct ipv6hdr *v6; |
| 1006 | unsigned char *hdr; |
| 1007 | } ip; |
| 1008 | u8 proto; |
| 1009 | |
| 1010 | ip.hdr = skb_inner_network_header(skb); |
| 1011 | proto = (ip.v4->version == 4) ? ip.v4->protocol : |
| 1012 | ip.v6->nexthdr; |
| 1013 | |
| 1014 | if (proto == IPPROTO_TCP || proto == IPPROTO_UDP) |
Or Gerlitz | 837052d | 2013-12-23 16:09:44 +0200 | [diff] [blame] | 1015 | op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP | MLX4_WQE_CTRL_ILP); |
| 1016 | else |
| 1017 | op_own |= cpu_to_be32(MLX4_WQE_CTRL_IIP); |
| 1018 | } |
| 1019 | |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 1020 | ring->prod += nr_txbb; |
| 1021 | |
| 1022 | /* If we used a bounce buffer then copy descriptor back into place */ |
Eric Dumazet | 7dfa4b4 | 2014-10-05 12:35:09 +0300 | [diff] [blame] | 1023 | if (unlikely(bounce)) |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 1024 | tx_desc = mlx4_en_bounce_to_desc(priv, ring, index, desc_size); |
| 1025 | |
Amir Vadai | eb0cabb | 2013-04-23 06:06:50 +0000 | [diff] [blame] | 1026 | skb_tx_timestamp(skb); |
| 1027 | |
Eric Dumazet | fe971b9 | 2014-10-06 09:30:35 -0700 | [diff] [blame] | 1028 | /* Check available TXBBs And 2K spare for prefetch */ |
Ido Shamay | 488a9b4 | 2015-06-25 11:29:42 +0300 | [diff] [blame] | 1029 | stop_queue = mlx4_en_is_tx_ring_full(ring); |
Eric Dumazet | fe971b9 | 2014-10-06 09:30:35 -0700 | [diff] [blame] | 1030 | if (unlikely(stop_queue)) { |
| 1031 | netif_tx_stop_queue(ring->tx_queue); |
| 1032 | ring->queue_stopped++; |
| 1033 | } |
Eric Dumazet | 5804283 | 2014-09-25 07:17:49 -0700 | [diff] [blame] | 1034 | send_doorbell = !skb->xmit_more || netif_xmit_stopped(ring->tx_queue); |
| 1035 | |
Eric Dumazet | 6a4e812 | 2014-10-05 12:35:11 +0300 | [diff] [blame] | 1036 | real_size = (real_size / 16) & 0x3f; |
| 1037 | |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 1038 | bf_ok &= desc_size <= MAX_BF && send_doorbell; |
Amir Vadai | ec57094 | 2014-03-02 10:25:04 +0200 | [diff] [blame] | 1039 | |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 1040 | if (bf_ok) |
| 1041 | qpn_vlan.bf_qpn = ring->doorbell_qpn | cpu_to_be32(real_size); |
| 1042 | else |
| 1043 | qpn_vlan.fence_size = real_size; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 1044 | |
Brenden Blanco | 224e92e | 2016-07-19 12:16:54 -0700 | [diff] [blame] | 1045 | mlx4_en_tx_write_desc(ring, tx_desc, qpn_vlan, desc_size, bf_index, |
| 1046 | op_own, bf_ok, send_doorbell); |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 1047 | |
Eric Dumazet | fe971b9 | 2014-10-06 09:30:35 -0700 | [diff] [blame] | 1048 | if (unlikely(stop_queue)) { |
| 1049 | /* If queue was emptied after the if (stop_queue) , and before |
| 1050 | * the netif_tx_stop_queue() - need to wake the queue, |
| 1051 | * or else it will remain stopped forever. |
| 1052 | * Need a memory barrier to make sure ring->cons was not |
| 1053 | * updated before queue was stopped. |
| 1054 | */ |
| 1055 | smp_rmb(); |
| 1056 | |
| 1057 | ring_cons = ACCESS_ONCE(ring->cons); |
Ido Shamay | 488a9b4 | 2015-06-25 11:29:42 +0300 | [diff] [blame] | 1058 | if (unlikely(!mlx4_en_is_tx_ring_full(ring))) { |
Eric Dumazet | fe971b9 | 2014-10-06 09:30:35 -0700 | [diff] [blame] | 1059 | netif_tx_wake_queue(ring->tx_queue); |
| 1060 | ring->wake_queue++; |
| 1061 | } |
| 1062 | } |
Patrick McHardy | ec634fe | 2009-07-05 19:23:38 -0700 | [diff] [blame] | 1063 | return NETDEV_TX_OK; |
Yevgeny Petrilin | 7e23091 | 2009-06-20 22:15:31 +0000 | [diff] [blame] | 1064 | |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 1065 | tx_drop_unmap: |
| 1066 | en_err(priv, "DMA mapping error\n"); |
| 1067 | |
Eric Dumazet | b9d8839 | 2014-10-05 12:35:17 +0300 | [diff] [blame] | 1068 | while (++i_frag < shinfo->nr_frags) { |
| 1069 | ++data; |
Amir Vadai | 237a3a3 | 2013-08-21 10:08:58 +0300 | [diff] [blame] | 1070 | dma_unmap_page(ddev, (dma_addr_t) be64_to_cpu(data->addr), |
| 1071 | be32_to_cpu(data->byte_count), |
| 1072 | PCI_DMA_TODEVICE); |
| 1073 | } |
| 1074 | |
Moshe Shemesh | 7a61fc8 | 2016-09-11 10:56:20 +0300 | [diff] [blame] | 1075 | tx_drop_count: |
| 1076 | ring->tx_dropped++; |
Yevgeny Petrilin | 7e23091 | 2009-06-20 22:15:31 +0000 | [diff] [blame] | 1077 | tx_drop: |
| 1078 | dev_kfree_skb_any(skb); |
Yevgeny Petrilin | 7e23091 | 2009-06-20 22:15:31 +0000 | [diff] [blame] | 1079 | return NETDEV_TX_OK; |
Yevgeny Petrilin | c27a02c | 2008-10-22 15:47:49 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
Tariq Toukan | 15fca2c | 2016-11-02 17:12:25 +0200 | [diff] [blame] | 1082 | netdev_tx_t mlx4_en_xmit_frame(struct mlx4_en_rx_ring *rx_ring, |
| 1083 | struct mlx4_en_rx_alloc *frame, |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1084 | struct net_device *dev, unsigned int length, |
| 1085 | int tx_ind, int *doorbell_pending) |
| 1086 | { |
| 1087 | struct mlx4_en_priv *priv = netdev_priv(dev); |
| 1088 | union mlx4_wqe_qpn_vlan qpn_vlan = {}; |
| 1089 | struct mlx4_en_tx_ring *ring; |
| 1090 | struct mlx4_en_tx_desc *tx_desc; |
| 1091 | struct mlx4_wqe_data_seg *data; |
| 1092 | struct mlx4_en_tx_info *tx_info; |
| 1093 | int index, bf_index; |
| 1094 | bool send_doorbell; |
| 1095 | int nr_txbb = 1; |
| 1096 | bool stop_queue; |
| 1097 | dma_addr_t dma; |
| 1098 | int real_size; |
| 1099 | __be32 op_own; |
| 1100 | u32 ring_cons; |
| 1101 | bool bf_ok; |
| 1102 | |
| 1103 | BUILD_BUG_ON_MSG(ALIGN(CTRL_SIZE + DS_SIZE, TXBB_SIZE) != TXBB_SIZE, |
| 1104 | "mlx4_en_xmit_frame requires minimum size tx desc"); |
| 1105 | |
Tariq Toukan | 67f8b1d | 2016-11-02 17:12:24 +0200 | [diff] [blame] | 1106 | ring = priv->tx_ring[TX_XDP][tx_ind]; |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1107 | |
| 1108 | if (!priv->port_up) |
| 1109 | goto tx_drop; |
| 1110 | |
| 1111 | if (mlx4_en_is_tx_ring_full(ring)) |
Moshe Shemesh | 7a61fc8 | 2016-09-11 10:56:20 +0300 | [diff] [blame] | 1112 | goto tx_drop_count; |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1113 | |
| 1114 | /* fetch ring->cons far ahead before needing it to avoid stall */ |
| 1115 | ring_cons = READ_ONCE(ring->cons); |
| 1116 | |
| 1117 | index = ring->prod & ring->size_mask; |
| 1118 | tx_info = &ring->tx_info[index]; |
| 1119 | |
| 1120 | bf_ok = ring->bf_enabled; |
| 1121 | |
| 1122 | /* Track current inflight packets for performance analysis */ |
| 1123 | AVG_PERF_COUNTER(priv->pstats.inflight_avg, |
| 1124 | (u32)(ring->prod - ring_cons - 1)); |
| 1125 | |
| 1126 | bf_index = ring->prod; |
| 1127 | tx_desc = ring->buf + index * TXBB_SIZE; |
| 1128 | data = &tx_desc->data; |
| 1129 | |
| 1130 | dma = frame->dma; |
| 1131 | |
| 1132 | tx_info->page = frame->page; |
| 1133 | frame->page = NULL; |
| 1134 | tx_info->map0_dma = dma; |
Martin KaFai Lau | ea3349a | 2016-12-07 15:53:13 -0800 | [diff] [blame] | 1135 | tx_info->map0_byte_count = PAGE_SIZE; |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1136 | tx_info->nr_txbb = nr_txbb; |
| 1137 | tx_info->nr_bytes = max_t(unsigned int, length, ETH_ZLEN); |
| 1138 | tx_info->data_offset = (void *)data - (void *)tx_desc; |
| 1139 | tx_info->ts_requested = 0; |
| 1140 | tx_info->nr_maps = 1; |
| 1141 | tx_info->linear = 1; |
| 1142 | tx_info->inl = 0; |
| 1143 | |
Martin KaFai Lau | ea3349a | 2016-12-07 15:53:13 -0800 | [diff] [blame] | 1144 | dma_sync_single_range_for_device(priv->ddev, dma, frame->page_offset, |
| 1145 | length, PCI_DMA_TODEVICE); |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1146 | |
Martin KaFai Lau | ea3349a | 2016-12-07 15:53:13 -0800 | [diff] [blame] | 1147 | data->addr = cpu_to_be64(dma + frame->page_offset); |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1148 | data->lkey = ring->mr_key; |
| 1149 | dma_wmb(); |
| 1150 | data->byte_count = cpu_to_be32(length); |
| 1151 | |
| 1152 | /* tx completion can avoid cache line miss for common cases */ |
| 1153 | tx_desc->ctrl.srcrb_flags = priv->ctrl_flags; |
| 1154 | |
| 1155 | op_own = cpu_to_be32(MLX4_OPCODE_SEND) | |
| 1156 | ((ring->prod & ring->size) ? |
| 1157 | cpu_to_be32(MLX4_EN_BIT_DESC_OWN) : 0); |
| 1158 | |
Tariq Toukan | 15fca2c | 2016-11-02 17:12:25 +0200 | [diff] [blame] | 1159 | rx_ring->xdp_tx++; |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1160 | AVG_PERF_COUNTER(priv->pstats.tx_pktsz_avg, length); |
| 1161 | |
| 1162 | ring->prod += nr_txbb; |
| 1163 | |
| 1164 | stop_queue = mlx4_en_is_tx_ring_full(ring); |
| 1165 | send_doorbell = stop_queue || |
| 1166 | *doorbell_pending > MLX4_EN_DOORBELL_BUDGET; |
| 1167 | bf_ok &= send_doorbell; |
| 1168 | |
| 1169 | real_size = ((CTRL_SIZE + nr_txbb * DS_SIZE) / 16) & 0x3f; |
| 1170 | |
| 1171 | if (bf_ok) |
| 1172 | qpn_vlan.bf_qpn = ring->doorbell_qpn | cpu_to_be32(real_size); |
| 1173 | else |
| 1174 | qpn_vlan.fence_size = real_size; |
| 1175 | |
| 1176 | mlx4_en_tx_write_desc(ring, tx_desc, qpn_vlan, TXBB_SIZE, bf_index, |
| 1177 | op_own, bf_ok, send_doorbell); |
| 1178 | *doorbell_pending = send_doorbell ? 0 : *doorbell_pending + 1; |
| 1179 | |
| 1180 | return NETDEV_TX_OK; |
| 1181 | |
Moshe Shemesh | 7a61fc8 | 2016-09-11 10:56:20 +0300 | [diff] [blame] | 1182 | tx_drop_count: |
Tariq Toukan | 15fca2c | 2016-11-02 17:12:25 +0200 | [diff] [blame] | 1183 | rx_ring->xdp_tx_full++; |
Moshe Shemesh | 7a61fc8 | 2016-09-11 10:56:20 +0300 | [diff] [blame] | 1184 | tx_drop: |
Brenden Blanco | 9ecc2d8 | 2016-07-19 12:16:55 -0700 | [diff] [blame] | 1185 | return NETDEV_TX_BUSY; |
| 1186 | } |