blob: cc003fdf0ed929a981b1403f6a7d0099825fec4b [file] [log] [blame]
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001/*
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
Eliezer Tamir076bb0c2013-07-10 17:13:17 +030034#include <net/busy_poll.h>
Brenden Blanco47a38e12016-07-19 12:16:50 -070035#include <linux/bpf.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070036#include <linux/mlx4/cq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070038#include <linux/mlx4/qp.h>
39#include <linux/skbuff.h>
Sasha Levinb67bfe02013-02-27 17:06:00 -080040#include <linux/rculist.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070041#include <linux/if_ether.h>
42#include <linux/if_vlan.h>
43#include <linux/vmalloc.h>
Amir Vadai35f6f452014-06-29 11:54:55 +030044#include <linux/irq.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070045
Shani Michaelif8c64552014-11-09 13:51:53 +020046#if IS_ENABLED(CONFIG_IPV6)
47#include <net/ip6_checksum.h>
48#endif
49
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070050#include "mlx4_en.h"
51
Eric Dumazet51151a12013-06-23 08:17:56 -070052static int mlx4_alloc_pages(struct mlx4_en_priv *priv,
53 struct mlx4_en_rx_alloc *page_alloc,
54 const struct mlx4_en_frag_info *frag_info,
55 gfp_t _gfp)
56{
57 int order;
58 struct page *page;
59 dma_addr_t dma;
60
Brenden Blancod576acf2016-07-19 12:16:52 -070061 for (order = frag_info->order; ;) {
Eric Dumazet51151a12013-06-23 08:17:56 -070062 gfp_t gfp = _gfp;
63
64 if (order)
Konstantin Khlebnikov04aeb562016-04-18 14:33:54 +030065 gfp |= __GFP_COMP | __GFP_NOWARN | __GFP_NOMEMALLOC;
Eric Dumazet51151a12013-06-23 08:17:56 -070066 page = alloc_pages(gfp, order);
67 if (likely(page))
68 break;
69 if (--order < 0 ||
70 ((PAGE_SIZE << order) < frag_info->frag_size))
71 return -ENOMEM;
72 }
73 dma = dma_map_page(priv->ddev, page, 0, PAGE_SIZE << order,
Brenden Blancod576acf2016-07-19 12:16:52 -070074 frag_info->dma_dir);
Tariq Toukande3d6fa2016-09-20 14:39:39 +030075 if (unlikely(dma_mapping_error(priv->ddev, dma))) {
Eric Dumazet51151a12013-06-23 08:17:56 -070076 put_page(page);
77 return -ENOMEM;
78 }
Amir Vadai70fbe072013-10-07 13:38:12 +020079 page_alloc->page_size = PAGE_SIZE << order;
Eric Dumazet51151a12013-06-23 08:17:56 -070080 page_alloc->page = page;
81 page_alloc->dma = dma;
Ido Shamay5f6e9802014-11-02 16:26:15 +020082 page_alloc->page_offset = 0;
Eric Dumazet51151a12013-06-23 08:17:56 -070083 /* Not doing get_page() for each frag is a big win
Eric Dumazet98226202014-10-10 04:48:17 -070084 * on asymetric workloads. Note we can not use atomic_set().
Eric Dumazet51151a12013-06-23 08:17:56 -070085 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -070086 page_ref_add(page, page_alloc->page_size / frag_info->frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -070087 return 0;
88}
89
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000090static int mlx4_en_alloc_frags(struct mlx4_en_priv *priv,
91 struct mlx4_en_rx_desc *rx_desc,
92 struct mlx4_en_rx_alloc *frags,
Eric Dumazet51151a12013-06-23 08:17:56 -070093 struct mlx4_en_rx_alloc *ring_alloc,
94 gfp_t gfp)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000095{
96 struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
Eric Dumazet51151a12013-06-23 08:17:56 -070097 const struct mlx4_en_frag_info *frag_info;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000098 struct page *page;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000099 int i;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700100
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000101 for (i = 0; i < priv->num_frags; i++) {
102 frag_info = &priv->frag_info[i];
Eric Dumazet51151a12013-06-23 08:17:56 -0700103 page_alloc[i] = ring_alloc[i];
Amir Vadai70fbe072013-10-07 13:38:12 +0200104 page_alloc[i].page_offset += frag_info->frag_stride;
105
106 if (page_alloc[i].page_offset + frag_info->frag_stride <=
107 ring_alloc[i].page_size)
Eric Dumazet51151a12013-06-23 08:17:56 -0700108 continue;
Amir Vadai70fbe072013-10-07 13:38:12 +0200109
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300110 if (unlikely(mlx4_alloc_pages(priv, &page_alloc[i],
111 frag_info, gfp)))
Eric Dumazet51151a12013-06-23 08:17:56 -0700112 goto out;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000113 }
114
115 for (i = 0; i < priv->num_frags; i++) {
116 frags[i] = ring_alloc[i];
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800117 frags[i].page_offset += priv->frag_info[i].rx_headroom;
118 rx_desc->data[i].addr = cpu_to_be64(frags[i].dma +
119 frags[i].page_offset);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000120 ring_alloc[i] = page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000121 }
122
123 return 0;
124
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000125out:
126 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700127 if (page_alloc[i].page != ring_alloc[i].page) {
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000128 dma_unmap_page(priv->ddev, page_alloc[i].dma,
Brenden Blancod576acf2016-07-19 12:16:52 -0700129 page_alloc[i].page_size,
130 priv->frag_info[i].dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700131 page = page_alloc[i].page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300132 /* Revert changes done by mlx4_alloc_pages */
133 page_ref_sub(page, page_alloc[i].page_size /
134 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700135 put_page(page);
136 }
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000137 }
138 return -ENOMEM;
139}
140
141static void mlx4_en_free_frag(struct mlx4_en_priv *priv,
142 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700143 int i)
144{
Eric Dumazet51151a12013-06-23 08:17:56 -0700145 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Amir Vadai021f1102013-10-07 13:38:13 +0200146 u32 next_frag_end = frags[i].page_offset + 2 * frag_info->frag_stride;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700147
Amir Vadai021f1102013-10-07 13:38:13 +0200148
149 if (next_frag_end > frags[i].page_size)
Amir Vadai70fbe072013-10-07 13:38:12 +0200150 dma_unmap_page(priv->ddev, frags[i].dma, frags[i].page_size,
Brenden Blancod576acf2016-07-19 12:16:52 -0700151 frag_info->dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700152
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000153 if (frags[i].page)
154 put_page(frags[i].page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700155}
156
157static int mlx4_en_init_allocator(struct mlx4_en_priv *priv,
158 struct mlx4_en_rx_ring *ring)
159{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700160 int i;
Eric Dumazet51151a12013-06-23 08:17:56 -0700161 struct mlx4_en_rx_alloc *page_alloc;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700162
163 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700164 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700165
Eric Dumazet51151a12013-06-23 08:17:56 -0700166 if (mlx4_alloc_pages(priv, &ring->page_alloc[i],
Ido Shamay1ab25f82014-11-02 16:26:16 +0200167 frag_info, GFP_KERNEL | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000168 goto out;
Ido Shamayb110d2c2015-02-03 17:57:19 +0200169
170 en_dbg(DRV, priv, " frag %d allocator: - size:%d frags:%d\n",
171 i, ring->page_alloc[i].page_size,
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700172 page_ref_count(ring->page_alloc[i].page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700173 }
174 return 0;
175
176out:
177 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700178 struct page *page;
179
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700180 page_alloc = &ring->page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000181 dma_unmap_page(priv->ddev, page_alloc->dma,
Brenden Blancod576acf2016-07-19 12:16:52 -0700182 page_alloc->page_size,
183 priv->frag_info[i].dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700184 page = page_alloc->page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300185 /* Revert changes done by mlx4_alloc_pages */
186 page_ref_sub(page, page_alloc->page_size /
187 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700188 put_page(page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700189 page_alloc->page = NULL;
190 }
191 return -ENOMEM;
192}
193
194static void mlx4_en_destroy_allocator(struct mlx4_en_priv *priv,
195 struct mlx4_en_rx_ring *ring)
196{
197 struct mlx4_en_rx_alloc *page_alloc;
198 int i;
199
200 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700201 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
202
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700203 page_alloc = &ring->page_alloc[i];
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000204 en_dbg(DRV, priv, "Freeing allocator:%d count:%d\n",
205 i, page_count(page_alloc->page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700206
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000207 dma_unmap_page(priv->ddev, page_alloc->dma,
Brenden Blancod576acf2016-07-19 12:16:52 -0700208 page_alloc->page_size, frag_info->dma_dir);
Amir Vadai70fbe072013-10-07 13:38:12 +0200209 while (page_alloc->page_offset + frag_info->frag_stride <
210 page_alloc->page_size) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700211 put_page(page_alloc->page);
Amir Vadai70fbe072013-10-07 13:38:12 +0200212 page_alloc->page_offset += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700213 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700214 page_alloc->page = NULL;
215 }
216}
217
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700218static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv,
219 struct mlx4_en_rx_ring *ring, int index)
220{
221 struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700222 int possible_frags;
223 int i;
224
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700225 /* Set size and memtype fields */
226 for (i = 0; i < priv->num_frags; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700227 rx_desc->data[i].byte_count =
228 cpu_to_be32(priv->frag_info[i].frag_size);
229 rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
230 }
231
232 /* If the number of used fragments does not fill up the ring stride,
233 * remaining (unused) fragments must be padded with null address/size
234 * and a special memory key */
235 possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
236 for (i = priv->num_frags; i < possible_frags; i++) {
237 rx_desc->data[i].byte_count = 0;
238 rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
239 rx_desc->data[i].addr = 0;
240 }
241}
242
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700243static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
Eric Dumazet51151a12013-06-23 08:17:56 -0700244 struct mlx4_en_rx_ring *ring, int index,
245 gfp_t gfp)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700246{
247 struct mlx4_en_rx_desc *rx_desc = ring->buf + (index * ring->stride);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000248 struct mlx4_en_rx_alloc *frags = ring->rx_info +
249 (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700250
Brenden Blancod576acf2016-07-19 12:16:52 -0700251 if (ring->page_cache.index > 0) {
252 frags[0] = ring->page_cache.buf[--ring->page_cache.index];
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800253 rx_desc->data[0].addr = cpu_to_be64(frags[0].dma +
254 frags[0].page_offset);
Brenden Blancod576acf2016-07-19 12:16:52 -0700255 return 0;
256 }
257
Eric Dumazet51151a12013-06-23 08:17:56 -0700258 return mlx4_en_alloc_frags(priv, rx_desc, frags, ring->page_alloc, gfp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700259}
260
Ido Shamay07841f92015-04-30 17:32:46 +0300261static inline bool mlx4_en_is_ring_empty(struct mlx4_en_rx_ring *ring)
262{
Ido Shamay07841f92015-04-30 17:32:46 +0300263 return ring->prod == ring->cons;
264}
265
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700266static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
267{
268 *ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
269}
270
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000271static void mlx4_en_free_rx_desc(struct mlx4_en_priv *priv,
272 struct mlx4_en_rx_ring *ring,
273 int index)
274{
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000275 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000276 int nr;
277
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000278 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000279 for (nr = 0; nr < priv->num_frags; nr++) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000280 en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000281 mlx4_en_free_frag(priv, frags, nr);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000282 }
283}
284
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700285static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
286{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700287 struct mlx4_en_rx_ring *ring;
288 int ring_ind;
289 int buf_ind;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000290 int new_size;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700291
292 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
293 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200294 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700295
296 if (mlx4_en_prepare_rx_desc(priv, ring,
Eric Dumazet51151a12013-06-23 08:17:56 -0700297 ring->actual_size,
Ido Shamay1ab25f82014-11-02 16:26:16 +0200298 GFP_KERNEL | __GFP_COLD)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700299 if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
Joe Perches1a91de22014-05-07 12:52:57 -0700300 en_err(priv, "Failed to allocate enough rx buffers\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700301 return -ENOMEM;
302 } else {
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000303 new_size = rounddown_pow_of_two(ring->actual_size);
Joe Perches1a91de22014-05-07 12:52:57 -0700304 en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000305 ring->actual_size, new_size);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000306 goto reduce_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700307 }
308 }
309 ring->actual_size++;
310 ring->prod++;
311 }
312 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000313 return 0;
314
315reduce_rings:
316 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200317 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000318 while (ring->actual_size > new_size) {
319 ring->actual_size--;
320 ring->prod--;
321 mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
322 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000323 }
324
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700325 return 0;
326}
327
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700328static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
329 struct mlx4_en_rx_ring *ring)
330{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700331 int index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700332
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000333 en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
334 ring->cons, ring->prod);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700335
336 /* Unmap and free Rx buffers */
Ido Shamay07841f92015-04-30 17:32:46 +0300337 while (!mlx4_en_is_ring_empty(ring)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700338 index = ring->cons & ring->size_mask;
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000339 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000340 mlx4_en_free_rx_desc(priv, ring, index);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700341 ++ring->cons;
342 }
343}
344
Ido Shamay02512482014-02-21 12:39:17 +0200345void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
346{
347 int i;
348 int num_of_eqs;
Ido Shamaybb2146b2014-02-21 12:39:18 +0200349 int num_rx_rings;
Ido Shamay02512482014-02-21 12:39:17 +0200350 struct mlx4_dev *dev = mdev->dev;
351
352 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
Matan Barakc66fa192015-05-31 09:30:16 +0300353 num_of_eqs = max_t(int, MIN_RX_RINGS,
354 min_t(int,
355 mlx4_get_eqs_per_port(mdev->dev, i),
356 DEF_RX_RINGS));
Ido Shamay02512482014-02-21 12:39:17 +0200357
Amir Vadaiea1c1af2014-07-22 15:44:12 +0300358 num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
359 min_t(int, num_of_eqs,
360 netif_get_num_default_rss_queues());
Ido Shamay02512482014-02-21 12:39:17 +0200361 mdev->profile.prof[i].rx_ring_num =
Ido Shamaybb2146b2014-02-21 12:39:18 +0200362 rounddown_pow_of_two(num_rx_rings);
Ido Shamay02512482014-02-21 12:39:17 +0200363 }
364}
365
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700366int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200367 struct mlx4_en_rx_ring **pring,
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200368 u32 size, u16 stride, int node)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700369{
370 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200371 struct mlx4_en_rx_ring *ring;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000372 int err = -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700373 int tmp;
374
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200375 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200376 if (!ring) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200377 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
378 if (!ring) {
379 en_err(priv, "Failed to allocate RX ring structure\n");
380 return -ENOMEM;
381 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200382 }
383
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700384 ring->prod = 0;
385 ring->cons = 0;
386 ring->size = size;
387 ring->size_mask = size - 1;
388 ring->stride = stride;
389 ring->log_stride = ffs(ring->stride) - 1;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700390 ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700391
392 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000393 sizeof(struct mlx4_en_rx_alloc));
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200394 ring->rx_info = vmalloc_node(tmp, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200395 if (!ring->rx_info) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200396 ring->rx_info = vmalloc(tmp);
397 if (!ring->rx_info) {
398 err = -ENOMEM;
399 goto err_ring;
400 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200401 }
Joe Perchese404dec2012-01-29 12:56:23 +0000402
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000403 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700404 ring->rx_info, tmp);
405
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200406 /* Allocate HW buffers on provided NUMA node */
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200407 set_dev_node(&mdev->dev->persist->pdev->dev, node);
Haggai Abramovsky73898db2016-05-04 14:50:15 +0300408 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200409 set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700410 if (err)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200411 goto err_info;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700412
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700413 ring->buf = ring->wqres.buf.direct.buf;
414
Amir Vadaiec693d42013-04-23 06:06:49 +0000415 ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter;
416
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200417 *pring = ring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700418 return 0;
419
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200420err_info:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700421 vfree(ring->rx_info);
422 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200423err_ring:
424 kfree(ring);
425 *pring = NULL;
426
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700427 return err;
428}
429
430int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
431{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700432 struct mlx4_en_rx_ring *ring;
433 int i;
434 int ring_ind;
435 int err;
436 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
437 DS_SIZE * priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700438
439 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200440 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700441
442 ring->prod = 0;
443 ring->cons = 0;
444 ring->actual_size = 0;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200445 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700446
447 ring->stride = stride;
Eugenia Emantayev6496bbf2016-12-29 18:37:10 +0200448 if (ring->stride <= TXBB_SIZE) {
449 /* Stamp first unused send wqe */
450 __be32 *ptr = (__be32 *)ring->buf;
451 __be32 stamp = cpu_to_be32(1 << STAMP_SHIFT);
452 *ptr = stamp;
453 /* Move pointer to start of rx section */
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700454 ring->buf += TXBB_SIZE;
Eugenia Emantayev6496bbf2016-12-29 18:37:10 +0200455 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700456
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700457 ring->log_stride = ffs(ring->stride) - 1;
458 ring->buf_size = ring->size * ring->stride;
459
460 memset(ring->buf, 0, ring->buf_size);
461 mlx4_en_update_rx_prod_db(ring);
462
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000463 /* Initialize all descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700464 for (i = 0; i < ring->size; i++)
465 mlx4_en_init_rx_desc(priv, ring, i);
466
467 /* Initialize page allocators */
468 err = mlx4_en_init_allocator(priv, ring);
469 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000470 en_err(priv, "Failed initializing ring allocator\n");
Yevgeny Petrilin60b18092011-04-06 23:25:45 +0000471 if (ring->stride <= TXBB_SIZE)
472 ring->buf -= TXBB_SIZE;
Yevgeny Petrilin9a4f92a2009-04-20 04:24:28 +0000473 ring_ind--;
474 goto err_allocator;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700475 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700476 }
Ingo Molnarb58515b2008-11-25 16:53:32 -0800477 err = mlx4_en_fill_rx_buffers(priv);
478 if (err)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700479 goto err_buffers;
480
481 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200482 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700483
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +0000484 ring->size_mask = ring->actual_size - 1;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700485 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700486 }
487
488 return 0;
489
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700490err_buffers:
491 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200492 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700493
494 ring_ind = priv->rx_ring_num - 1;
495err_allocator:
496 while (ring_ind >= 0) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200497 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
498 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
499 mlx4_en_destroy_allocator(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700500 ring_ind--;
501 }
502 return err;
503}
504
Ido Shamay07841f92015-04-30 17:32:46 +0300505/* We recover from out of memory by scheduling our napi poll
506 * function (mlx4_en_process_cq), which tries to allocate
507 * all missing RX buffers (call to mlx4_en_refill_rx_buffers).
508 */
509void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv)
510{
511 int ring;
512
513 if (!priv->port_up)
514 return;
515
516 for (ring = 0; ring < priv->rx_ring_num; ring++) {
Benjamin Poirierbd4ce942017-02-06 10:14:31 -0800517 if (mlx4_en_is_ring_empty(priv->rx_ring[ring])) {
518 local_bh_disable();
Ido Shamay07841f92015-04-30 17:32:46 +0300519 napi_reschedule(&priv->rx_cq[ring]->napi);
Benjamin Poirierbd4ce942017-02-06 10:14:31 -0800520 local_bh_enable();
521 }
Ido Shamay07841f92015-04-30 17:32:46 +0300522 }
523}
524
Brenden Blancod576acf2016-07-19 12:16:52 -0700525/* When the rx ring is running in page-per-packet mode, a released frame can go
526 * directly into a small cache, to avoid unmapping or touching the page
527 * allocator. In bpf prog performance scenarios, buffers are either forwarded
528 * or dropped, never converted to skbs, so every page can come directly from
529 * this cache when it is sized to be a multiple of the napi budget.
530 */
531bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring,
532 struct mlx4_en_rx_alloc *frame)
533{
534 struct mlx4_en_page_cache *cache = &ring->page_cache;
535
536 if (cache->index >= MLX4_EN_CACHE_SIZE)
537 return false;
538
539 cache->buf[cache->index++] = *frame;
540 return true;
541}
542
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700543void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200544 struct mlx4_en_rx_ring **pring,
545 u32 size, u16 stride)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700546{
547 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200548 struct mlx4_en_rx_ring *ring = *pring;
Brenden Blancocb7386d2016-07-20 17:22:33 -0700549 struct bpf_prog *old_prog;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700550
Brenden Blanco326fe022016-09-03 21:29:58 -0700551 old_prog = rcu_dereference_protected(
552 ring->xdp_prog,
553 lockdep_is_held(&mdev->state_lock));
Brenden Blancocb7386d2016-07-20 17:22:33 -0700554 if (old_prog)
555 bpf_prog_put(old_prog);
Thadeu Lima de Souza Cascardo68355f72012-02-06 08:39:49 +0000556 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700557 vfree(ring->rx_info);
558 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200559 kfree(ring);
560 *pring = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700561}
562
563void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
564 struct mlx4_en_rx_ring *ring)
565{
Brenden Blancod576acf2016-07-19 12:16:52 -0700566 int i;
567
568 for (i = 0; i < ring->page_cache.index; i++) {
569 struct mlx4_en_rx_alloc *frame = &ring->page_cache.buf[i];
570
571 dma_unmap_page(priv->ddev, frame->dma, frame->page_size,
572 priv->frag_info[0].dma_dir);
573 put_page(frame->page);
574 }
575 ring->page_cache.index = 0;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700576 mlx4_en_free_rx_buf(priv, ring);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700577 if (ring->stride <= TXBB_SIZE)
578 ring->buf -= TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700579 mlx4_en_destroy_allocator(priv, ring);
580}
581
582
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700583static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
584 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000585 struct mlx4_en_rx_alloc *frags,
Eric Dumazet90278c92011-10-19 18:49:52 +0000586 struct sk_buff *skb,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700587 int length)
588{
Eric Dumazet90278c92011-10-19 18:49:52 +0000589 struct skb_frag_struct *skb_frags_rx = skb_shinfo(skb)->frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700590 struct mlx4_en_frag_info *frag_info;
591 int nr;
592 dma_addr_t dma;
593
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000594 /* Collect used fragments while replacing them in the HW descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700595 for (nr = 0; nr < priv->num_frags; nr++) {
596 frag_info = &priv->frag_info[nr];
597 if (length <= frag_info->frag_prefix_size)
598 break;
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300599 if (unlikely(!frags[nr].page))
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700600 goto fail;
601
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000602 dma = be64_to_cpu(rx_desc->data[nr].addr);
603 dma_sync_single_for_cpu(priv->ddev, dma, frag_info->frag_size,
604 DMA_FROM_DEVICE);
605
606 /* Save page reference in skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000607 __skb_frag_set_page(&skb_frags_rx[nr], frags[nr].page);
608 skb_frag_size_set(&skb_frags_rx[nr], frag_info->frag_size);
Amir Vadai70fbe072013-10-07 13:38:12 +0200609 skb_frags_rx[nr].page_offset = frags[nr].page_offset;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000610 skb->truesize += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700611 frags[nr].page = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700612 }
613 /* Adjust size of last fragment to match actual length */
roel kluin973507c2009-08-08 23:54:21 +0000614 if (nr > 0)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000615 skb_frag_size_set(&skb_frags_rx[nr - 1],
616 length - priv->frag_info[nr - 1].frag_prefix_size);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700617 return nr;
618
619fail:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700620 while (nr > 0) {
621 nr--;
Ian Campbell311761c2011-10-19 23:01:45 +0000622 __skb_frag_unref(&skb_frags_rx[nr]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700623 }
624 return 0;
625}
626
627
628static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv,
629 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000630 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700631 unsigned int length)
632{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700633 struct sk_buff *skb;
634 void *va;
635 int used_frags;
636 dma_addr_t dma;
637
Pradeep A Dalvic056b732012-02-05 02:50:38 +0000638 skb = netdev_alloc_skb(priv->dev, SMALL_PACKET_SIZE + NET_IP_ALIGN);
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300639 if (unlikely(!skb)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000640 en_dbg(RX_ERR, priv, "Failed allocating skb\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700641 return NULL;
642 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700643 skb_reserve(skb, NET_IP_ALIGN);
644 skb->len = length;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700645
646 /* Get pointer to first fragment so we could copy the headers into the
647 * (linear part of the) skb */
Amir Vadai70fbe072013-10-07 13:38:12 +0200648 va = page_address(frags[0].page) + frags[0].page_offset;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700649
650 if (length <= SMALL_PACKET_SIZE) {
651 /* We are copying all relevant data to the skb - temporarily
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000652 * sync buffers for the copy */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700653 dma = be64_to_cpu(rx_desc->data[0].addr);
Yevgeny Petrilinebf8c9a2012-03-06 04:03:34 +0000654 dma_sync_single_for_cpu(priv->ddev, dma, length,
FUJITA Tomonorie4fc8562010-02-04 18:57:42 +0000655 DMA_FROM_DEVICE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700656 skb_copy_to_linear_data(skb, va, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700657 skb->tail += length;
658 } else {
Eric Dumazetcfecec52014-09-05 18:29:45 -0700659 unsigned int pull_len;
660
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700661 /* Move relevant fragments to skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000662 used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, frags,
663 skb, length);
Yevgeny Petrilin785a09822009-04-26 20:42:57 +0000664 if (unlikely(!used_frags)) {
665 kfree_skb(skb);
666 return NULL;
667 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700668 skb_shinfo(skb)->nr_frags = used_frags;
669
Eric Dumazetcfecec52014-09-05 18:29:45 -0700670 pull_len = eth_get_headlen(va, SMALL_PACKET_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700671 /* Copy headers into the skb linear buffer */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700672 memcpy(skb->data, va, pull_len);
673 skb->tail += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700674
675 /* Skip headers in first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700676 skb_shinfo(skb)->frags[0].page_offset += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700677
678 /* Adjust size of first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700679 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], pull_len);
680 skb->data_len = length - pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700681 }
682 return skb;
683}
684
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000685static void validate_loopback(struct mlx4_en_priv *priv, struct sk_buff *skb)
686{
687 int i;
688 int offset = ETH_HLEN;
689
690 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++, offset++) {
691 if (*(skb->data + offset) != (unsigned char) (i & 0xff))
692 goto out_loopback;
693 }
694 /* Loopback found */
695 priv->loopback_ok = 1;
696
697out_loopback:
698 dev_kfree_skb_any(skb);
699}
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700700
Eric Dumazetdad42c32016-11-20 09:24:36 -0800701static bool mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
702 struct mlx4_en_rx_ring *ring)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000703{
Eric Dumazetdad42c32016-11-20 09:24:36 -0800704 u32 missing = ring->actual_size - (ring->prod - ring->cons);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000705
Eric Dumazetdad42c32016-11-20 09:24:36 -0800706 /* Try to batch allocations, but not too much. */
707 if (missing < 8)
708 return false;
709 do {
710 if (mlx4_en_prepare_rx_desc(priv, ring,
711 ring->prod & ring->size_mask,
Ido Shamay1ab25f82014-11-02 16:26:16 +0200712 GFP_ATOMIC | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000713 break;
714 ring->prod++;
Eric Dumazetdad42c32016-11-20 09:24:36 -0800715 } while (--missing);
716
717 return true;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000718}
719
Shani Michaelif8c64552014-11-09 13:51:53 +0200720/* When hardware doesn't strip the vlan, we need to calculate the checksum
721 * over it and add it to the hardware's checksum calculation
722 */
723static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
724 struct vlan_hdr *vlanh)
725{
726 return csum_add(hw_checksum, *(__wsum *)vlanh);
727}
728
729/* Although the stack expects checksum which doesn't include the pseudo
730 * header, the HW adds it. To address that, we are subtracting the pseudo
731 * header checksum from the checksum value provided by the HW.
732 */
733static void get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
734 struct iphdr *iph)
735{
736 __u16 length_for_csum = 0;
737 __wsum csum_pseudo_header = 0;
738
739 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
740 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
741 length_for_csum, iph->protocol, 0);
742 skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
743}
744
745#if IS_ENABLED(CONFIG_IPV6)
746/* In IPv6 packets, besides subtracting the pseudo header checksum,
747 * we also compute/add the IP header checksum which
748 * is not added by the HW.
749 */
750static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
751 struct ipv6hdr *ipv6h)
752{
753 __wsum csum_pseudo_hdr = 0;
754
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300755 if (unlikely(ipv6h->nexthdr == IPPROTO_FRAGMENT ||
756 ipv6h->nexthdr == IPPROTO_HOPOPTS))
Shani Michaelif8c64552014-11-09 13:51:53 +0200757 return -1;
Daniel Jurgens82d69202016-05-04 15:00:33 +0300758 hw_checksum = csum_add(hw_checksum, (__force __wsum)htons(ipv6h->nexthdr));
Shani Michaelif8c64552014-11-09 13:51:53 +0200759
760 csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
761 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
762 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
763 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ntohs(ipv6h->nexthdr));
764
765 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
766 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
767 return 0;
768}
769#endif
770static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
Ido Shamay79a25852015-06-25 11:29:43 +0300771 netdev_features_t dev_features)
Shani Michaelif8c64552014-11-09 13:51:53 +0200772{
773 __wsum hw_checksum = 0;
774
775 void *hdr = (u8 *)va + sizeof(struct ethhdr);
776
777 hw_checksum = csum_unfold((__force __sum16)cqe->checksum);
778
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300779 if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) &&
Ido Shamay79a25852015-06-25 11:29:43 +0300780 !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200781 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
782 hdr += sizeof(struct vlan_hdr);
783 }
784
785 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
786 get_fixed_ipv4_csum(hw_checksum, skb, hdr);
787#if IS_ENABLED(CONFIG_IPV6)
788 else if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300789 if (unlikely(get_fixed_ipv6_csum(hw_checksum, skb, hdr)))
Shani Michaelif8c64552014-11-09 13:51:53 +0200790 return -1;
791#endif
792 return 0;
793}
794
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700795int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
796{
797 struct mlx4_en_priv *priv = netdev_priv(dev);
Amir Vadaiec693d42013-04-23 06:06:49 +0000798 struct mlx4_en_dev *mdev = priv->mdev;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700799 struct mlx4_cqe *cqe;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200800 struct mlx4_en_rx_ring *ring = priv->rx_ring[cq->ring];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000801 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700802 struct mlx4_en_rx_desc *rx_desc;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700803 struct bpf_prog *xdp_prog;
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700804 int doorbell_pending;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700805 struct sk_buff *skb;
806 int index;
807 int nr;
808 unsigned int length;
809 int polled = 0;
810 int ip_summed;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000811 int factor = priv->cqe_factor;
Amir Vadaiec693d42013-04-23 06:06:49 +0000812 u64 timestamp;
Or Gerlitz837052d2013-12-23 16:09:44 +0200813 bool l2_tunnel;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700814
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300815 if (unlikely(!priv->port_up))
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700816 return 0;
817
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300818 if (unlikely(budget <= 0))
Eric W. Biederman38be0a32014-03-14 18:05:58 -0700819 return polled;
820
Brenden Blanco326fe022016-09-03 21:29:58 -0700821 /* Protect accesses to: ring->xdp_prog, priv->mac_hash list */
822 rcu_read_lock();
823 xdp_prog = rcu_dereference(ring->xdp_prog);
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700824 doorbell_pending = 0;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700825
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700826 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
827 * descriptor offset can be deduced from the CQE index instead of
828 * reading 'cqe->index' */
829 index = cq->mcq.cons_index & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +0300830 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700831
832 /* Process all completed CQEs */
833 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
834 cq->mcq.cons_index & cq->size)) {
835
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000836 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700837 rx_desc = ring->buf + (index << ring->log_stride);
838
839 /*
840 * make sure we read the CQE after we read the ownership bit
841 */
Alexander Duyck12b33752015-04-08 18:49:36 -0700842 dma_rmb();
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700843
844 /* Drop packet on bad receive or bad checksum */
845 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
846 MLX4_CQE_OPCODE_ERROR)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700847 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
848 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
849 ((struct mlx4_err_cqe *)cqe)->syndrome);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700850 goto next;
851 }
852 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000853 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700854 goto next;
855 }
856
Yan Burman79aeacc2013-02-07 02:25:19 +0000857 /* Check if we need to drop the packet if SRIOV is not enabled
858 * and not performing the selftest or flb disabled
859 */
860 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
861 struct ethhdr *ethh;
862 dma_addr_t dma;
Yan Burman79aeacc2013-02-07 02:25:19 +0000863 /* Get pointer to first fragment since we haven't
864 * skb yet and cast it to ethhdr struct
865 */
866 dma = be64_to_cpu(rx_desc->data[0].addr);
867 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
868 DMA_FROM_DEVICE);
869 ethh = (struct ethhdr *)(page_address(frags[0].page) +
Amir Vadai70fbe072013-10-07 13:38:12 +0200870 frags[0].page_offset);
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000871
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000872 if (is_multicast_ether_addr(ethh->h_dest)) {
873 struct mlx4_mac_entry *entry;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000874 struct hlist_head *bucket;
875 unsigned int mac_hash;
876
877 /* Drop the packet, since HW loopback-ed it */
878 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
879 bucket = &priv->mac_hash[mac_hash];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800880 hlist_for_each_entry_rcu(entry, bucket, hlist) {
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000881 if (ether_addr_equal_64bits(entry->mac,
Brenden Blanco326fe022016-09-03 21:29:58 -0700882 ethh->h_source))
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000883 goto next;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000884 }
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000885 }
Yan Burman79aeacc2013-02-07 02:25:19 +0000886 }
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000887
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700888 /*
889 * Packet is OK - process it.
890 */
891 length = be32_to_cpu(cqe->byte_cnt);
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -0500892 length -= ring->fcs_del;
Or Gerlitz837052d2013-12-23 16:09:44 +0200893 l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
894 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700895
Brenden Blanco47a38e12016-07-19 12:16:50 -0700896 /* A bpf program gets first chance to drop the packet. It may
897 * read bytes but not past the end of the frag.
898 */
899 if (xdp_prog) {
900 struct xdp_buff xdp;
901 dma_addr_t dma;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800902 void *orig_data;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700903 u32 act;
904
905 dma = be64_to_cpu(rx_desc->data[0].addr);
906 dma_sync_single_for_cpu(priv->ddev, dma,
907 priv->frag_info[0].frag_size,
908 DMA_FROM_DEVICE);
909
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800910 xdp.data_hard_start = page_address(frags[0].page);
911 xdp.data = xdp.data_hard_start + frags[0].page_offset;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700912 xdp.data_end = xdp.data + length;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800913 orig_data = xdp.data;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700914
915 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800916
917 if (xdp.data != orig_data) {
918 length = xdp.data_end - xdp.data;
919 frags[0].page_offset = xdp.data -
920 xdp.data_hard_start;
921 }
922
Brenden Blanco47a38e12016-07-19 12:16:50 -0700923 switch (act) {
924 case XDP_PASS:
925 break;
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700926 case XDP_TX:
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200927 if (likely(!mlx4_en_xmit_frame(ring, frags, dev,
Tariq Toukan67f8b1d2016-11-02 17:12:24 +0200928 length, cq->ring,
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300929 &doorbell_pending)))
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700930 goto consumed;
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200931 goto xdp_drop_no_cnt; /* Drop on xmit failure */
Brenden Blanco47a38e12016-07-19 12:16:50 -0700932 default:
933 bpf_warn_invalid_xdp_action(act);
934 case XDP_ABORTED:
935 case XDP_DROP:
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200936 ring->xdp_drop++;
937xdp_drop_no_cnt:
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300938 if (likely(mlx4_en_rx_recycle(ring, frags)))
Brenden Blancod576acf2016-07-19 12:16:52 -0700939 goto consumed;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700940 goto next;
941 }
942 }
943
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200944 ring->bytes += length;
945 ring->packets++;
946
Michał Mirosławc8c64cf2011-04-15 04:50:49 +0000947 if (likely(dev->features & NETIF_F_RXCSUM)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200948 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
949 MLX4_CQE_STATUS_UDP)) {
950 if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
951 cqe->checksum == cpu_to_be16(0xffff)) {
952 ip_summed = CHECKSUM_UNNECESSARY;
953 ring->csum_ok++;
954 } else {
955 ip_summed = CHECKSUM_NONE;
956 ring->csum_none++;
957 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700958 } else {
Shani Michaelif8c64552014-11-09 13:51:53 +0200959 if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
960 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
961 MLX4_CQE_STATUS_IPV6))) {
962 ip_summed = CHECKSUM_COMPLETE;
963 ring->csum_complete++;
964 } else {
965 ip_summed = CHECKSUM_NONE;
966 ring->csum_none++;
967 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700968 }
969 } else {
970 ip_summed = CHECKSUM_NONE;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000971 ring->csum_none++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700972 }
973
Shani Michaelidd65bea2014-11-09 13:51:52 +0200974 /* This packet is eligible for GRO if it is:
975 * - DIX Ethernet (type interpretation)
976 * - TCP/IP (v4)
977 * - without IP options
978 * - not an IP fragment
Shani Michaelidd65bea2014-11-09 13:51:52 +0200979 */
Eric Dumazet868fdb02015-11-18 06:30:58 -0800980 if (dev->features & NETIF_F_GRO) {
Shani Michaelidd65bea2014-11-09 13:51:52 +0200981 struct sk_buff *gro_skb = napi_get_frags(&cq->napi);
982 if (!gro_skb)
983 goto next;
984
985 nr = mlx4_en_complete_rx_desc(priv,
986 rx_desc, frags, gro_skb,
987 length);
988 if (!nr)
989 goto next;
990
Shani Michaelif8c64552014-11-09 13:51:53 +0200991 if (ip_summed == CHECKSUM_COMPLETE) {
992 void *va = skb_frag_address(skb_shinfo(gro_skb)->frags);
Ido Shamay79a25852015-06-25 11:29:43 +0300993 if (check_csum(cqe, gro_skb, va,
994 dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200995 ip_summed = CHECKSUM_NONE;
996 ring->csum_none++;
997 ring->csum_complete--;
998 }
999 }
1000
Shani Michaelidd65bea2014-11-09 13:51:52 +02001001 skb_shinfo(gro_skb)->nr_frags = nr;
1002 gro_skb->len = length;
1003 gro_skb->data_len = length;
1004 gro_skb->ip_summed = ip_summed;
1005
1006 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
Or Gerlitzc58942f2014-12-11 10:57:51 +02001007 gro_skb->csum_level = 1;
1008
Shani Michaelidd65bea2014-11-09 13:51:52 +02001009 if ((cqe->vlan_my_qpn &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +03001010 cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) &&
Shani Michaelidd65bea2014-11-09 13:51:52 +02001011 (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
1012 u16 vid = be16_to_cpu(cqe->sl_vid);
1013
1014 __vlan_hwaccel_put_tag(gro_skb, htons(ETH_P_8021Q), vid);
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001015 } else if ((be32_to_cpu(cqe->vlan_my_qpn) &
1016 MLX4_CQE_SVLAN_PRESENT_MASK) &&
1017 (dev->features & NETIF_F_HW_VLAN_STAG_RX)) {
1018 __vlan_hwaccel_put_tag(gro_skb,
1019 htons(ETH_P_8021AD),
1020 be16_to_cpu(cqe->sl_vid));
Shani Michaelidd65bea2014-11-09 13:51:52 +02001021 }
1022
1023 if (dev->features & NETIF_F_RXHASH)
1024 skb_set_hash(gro_skb,
1025 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +02001026 (ip_summed == CHECKSUM_UNNECESSARY) ?
1027 PKT_HASH_TYPE_L4 :
1028 PKT_HASH_TYPE_L3);
Shani Michaelidd65bea2014-11-09 13:51:52 +02001029
1030 skb_record_rx_queue(gro_skb, cq->ring);
Shani Michaelidd65bea2014-11-09 13:51:52 +02001031
1032 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
1033 timestamp = mlx4_en_get_cqe_ts(cqe);
1034 mlx4_en_fill_hwtstamps(mdev,
1035 skb_hwtstamps(gro_skb),
1036 timestamp);
1037 }
1038
1039 napi_gro_frags(&cq->napi);
1040 goto next;
1041 }
1042
1043 /* GRO not possible, complete processing here */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001044 skb = mlx4_en_rx_skb(priv, rx_desc, frags, length);
Tariq Toukande3d6fa2016-09-20 14:39:39 +03001045 if (unlikely(!skb)) {
Eran Ben Elishad21ed3a2016-04-20 16:01:18 +03001046 ring->dropped++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001047 goto next;
1048 }
1049
Kamal Heib57c970c2016-09-20 14:39:40 +03001050 if (unlikely(priv->validate_loopback)) {
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +00001051 validate_loopback(priv, skb);
1052 goto next;
1053 }
1054
Shani Michaelif8c64552014-11-09 13:51:53 +02001055 if (ip_summed == CHECKSUM_COMPLETE) {
Ido Shamay79a25852015-06-25 11:29:43 +03001056 if (check_csum(cqe, skb, skb->data, dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +02001057 ip_summed = CHECKSUM_NONE;
1058 ring->csum_complete--;
1059 ring->csum_none++;
1060 }
1061 }
1062
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001063 skb->ip_summed = ip_summed;
1064 skb->protocol = eth_type_trans(skb, dev);
David S. Miller0c8dfc82009-01-27 16:22:32 -08001065 skb_record_rx_queue(skb, cq->ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001066
Tom Herbert9ca86002014-08-27 21:27:53 -07001067 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
1068 skb->csum_level = 1;
Or Gerlitz837052d2013-12-23 16:09:44 +02001069
Yevgeny Petrilinad861072011-10-18 01:51:24 +00001070 if (dev->features & NETIF_F_RXHASH)
Tom Herbert69174412013-12-17 23:31:23 -08001071 skb_set_hash(skb,
1072 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +02001073 (ip_summed == CHECKSUM_UNNECESSARY) ?
1074 PKT_HASH_TYPE_L4 :
1075 PKT_HASH_TYPE_L3);
Yevgeny Petrilinad861072011-10-18 01:51:24 +00001076
Amir Vadaiec693d42013-04-23 06:06:49 +00001077 if ((be32_to_cpu(cqe->vlan_my_qpn) &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +03001078 MLX4_CQE_CVLAN_PRESENT_MASK) &&
Amir Vadaiec693d42013-04-23 06:06:49 +00001079 (dev->features & NETIF_F_HW_VLAN_CTAG_RX))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001080 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), be16_to_cpu(cqe->sl_vid));
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001081 else if ((be32_to_cpu(cqe->vlan_my_qpn) &
1082 MLX4_CQE_SVLAN_PRESENT_MASK) &&
1083 (dev->features & NETIF_F_HW_VLAN_STAG_RX))
1084 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021AD),
1085 be16_to_cpu(cqe->sl_vid));
Jiri Pirkof1b553f2011-07-20 04:54:22 +00001086
Amir Vadaiec693d42013-04-23 06:06:49 +00001087 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
1088 timestamp = mlx4_en_get_cqe_ts(cqe);
1089 mlx4_en_fill_hwtstamps(mdev, skb_hwtstamps(skb),
1090 timestamp);
1091 }
1092
Eric Dumazet868fdb02015-11-18 06:30:58 -08001093 napi_gro_receive(&cq->napi, skb);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001094next:
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001095 for (nr = 0; nr < priv->num_frags; nr++)
1096 mlx4_en_free_frag(priv, frags, nr);
1097
Brenden Blancod576acf2016-07-19 12:16:52 -07001098consumed:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001099 ++cq->mcq.cons_index;
1100 index = (cq->mcq.cons_index) & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +03001101 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Ben Hutchingsf1d29a32012-11-16 12:44:56 +00001102 if (++polled == budget)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001103 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001104 }
1105
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001106out:
Brenden Blanco326fe022016-09-03 21:29:58 -07001107 rcu_read_unlock();
Brenden Blanco9ecc2d82016-07-19 12:16:55 -07001108
Eric Dumazetdad42c32016-11-20 09:24:36 -08001109 if (polled) {
1110 if (doorbell_pending)
1111 mlx4_en_xmit_doorbell(priv->tx_ring[TX_XDP][cq->ring]);
1112
1113 mlx4_cq_set_ci(&cq->mcq);
1114 wmb(); /* ensure HW sees CQ consumer before we post new buffers */
1115 ring->cons = cq->mcq.cons_index;
1116 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001117 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
Eric Dumazetdad42c32016-11-20 09:24:36 -08001118
1119 if (mlx4_en_refill_rx_buffers(priv, ring))
1120 mlx4_en_update_rx_prod_db(ring);
1121
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001122 return polled;
1123}
1124
1125
1126void mlx4_en_rx_irq(struct mlx4_cq *mcq)
1127{
1128 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
1129 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
1130
Eric Dumazet477b35b2014-10-29 16:54:45 -07001131 if (likely(priv->port_up))
1132 napi_schedule_irqoff(&cq->napi);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001133 else
1134 mlx4_en_arm_cq(priv, cq);
1135}
1136
1137/* Rx CQ polling - called by NAPI */
1138int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
1139{
1140 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
1141 struct net_device *dev = cq->dev;
1142 struct mlx4_en_priv *priv = netdev_priv(dev);
1143 int done;
1144
1145 done = mlx4_en_process_rx_cq(dev, cq, budget);
1146
1147 /* If we used up all the quota - we're probably not done yet... */
Yuval Atias2eacc232014-05-14 12:15:10 +03001148 if (done == budget) {
Amir Vadai35f6f452014-06-29 11:54:55 +03001149 const struct cpumask *aff;
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001150 struct irq_data *idata;
1151 int cpu_curr;
Amir Vadai35f6f452014-06-29 11:54:55 +03001152
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001153 INC_PERF_COUNTER(priv->pstats.napi_quota);
Amir Vadai35f6f452014-06-29 11:54:55 +03001154
1155 cpu_curr = smp_processor_id();
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001156 idata = irq_desc_get_irq_data(cq->irq_desc);
1157 aff = irq_data_get_affinity_mask(idata);
Amir Vadai35f6f452014-06-29 11:54:55 +03001158
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001159 if (likely(cpumask_test_cpu(cpu_curr, aff)))
1160 return budget;
1161
1162 /* Current cpu is not according to smp_irq_affinity -
Eric Dumazetdad42c32016-11-20 09:24:36 -08001163 * probably affinity changed. Need to stop this NAPI
1164 * poll, and restart it on the right CPU.
1165 * Try to avoid returning a too small value (like 0),
1166 * to not fool net_rx_action() and its netdev_budget
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001167 */
Eric Dumazetdad42c32016-11-20 09:24:36 -08001168 if (done)
1169 done--;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001170 }
Eric Dumazet1a288172014-11-06 21:10:11 -08001171 /* Done for now */
Eric Dumazet2e713282016-11-15 10:15:14 -08001172 if (napi_complete_done(napi, done))
1173 mlx4_en_arm_cq(priv, cq);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001174 return done;
1175}
1176
Eric Dumazet51151a12013-06-23 08:17:56 -07001177static const int frag_sizes[] = {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001178 FRAG_SZ0,
1179 FRAG_SZ1,
1180 FRAG_SZ2,
1181 FRAG_SZ3
1182};
1183
1184void mlx4_en_calc_rx_buf(struct net_device *dev)
1185{
1186 struct mlx4_en_priv *priv = netdev_priv(dev);
Brenden Blanco47a38e12016-07-19 12:16:50 -07001187 int eff_mtu = MLX4_EN_EFF_MTU(dev->mtu);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001188 int i = 0;
1189
Brenden Blancod576acf2016-07-19 12:16:52 -07001190 /* bpf requires buffers to be set up as 1 packet per page.
1191 * This only works when num_frags == 1.
1192 */
Tariq Toukan67f8b1d2016-11-02 17:12:24 +02001193 if (priv->tx_ring_num[TX_XDP]) {
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001194 priv->frag_info[0].order = 0;
1195 priv->frag_info[0].frag_size = eff_mtu;
1196 priv->frag_info[0].frag_prefix_size = 0;
1197 /* This will gain efficient xdp frame recycling at the
1198 * expense of more costly truesize accounting
Brenden Blancod576acf2016-07-19 12:16:52 -07001199 */
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001200 priv->frag_info[0].frag_stride = PAGE_SIZE;
1201 priv->frag_info[0].dma_dir = PCI_DMA_BIDIRECTIONAL;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -08001202 priv->frag_info[0].rx_headroom = XDP_PACKET_HEADROOM;
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001203 i = 1;
1204 } else {
1205 int buf_size = 0;
Brenden Blancod576acf2016-07-19 12:16:52 -07001206
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001207 while (buf_size < eff_mtu) {
1208 priv->frag_info[i].order = MLX4_EN_ALLOC_PREFER_ORDER;
1209 priv->frag_info[i].frag_size =
1210 (eff_mtu > buf_size + frag_sizes[i]) ?
1211 frag_sizes[i] : eff_mtu - buf_size;
1212 priv->frag_info[i].frag_prefix_size = buf_size;
1213 priv->frag_info[i].frag_stride =
1214 ALIGN(priv->frag_info[i].frag_size,
1215 SMP_CACHE_BYTES);
1216 priv->frag_info[i].dma_dir = PCI_DMA_FROMDEVICE;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -08001217 priv->frag_info[i].rx_headroom = 0;
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001218 buf_size += priv->frag_info[i].frag_size;
1219 i++;
1220 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001221 }
1222
1223 priv->num_frags = i;
1224 priv->rx_skb_size = eff_mtu;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001225 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001226
Joe Perches1a91de22014-05-07 12:52:57 -07001227 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
1228 eff_mtu, priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001229 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -07001230 en_err(priv,
Ido Shamay5f6e9802014-11-02 16:26:15 +02001231 " frag:%d - size:%d prefix:%d stride:%d\n",
Eric Dumazet51151a12013-06-23 08:17:56 -07001232 i,
1233 priv->frag_info[i].frag_size,
1234 priv->frag_info[i].frag_prefix_size,
Eric Dumazet51151a12013-06-23 08:17:56 -07001235 priv->frag_info[i].frag_stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001236 }
1237}
1238
1239/* RSS related functions */
1240
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001241static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
1242 struct mlx4_en_rx_ring *ring,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001243 enum mlx4_qp_state *state,
1244 struct mlx4_qp *qp)
1245{
1246 struct mlx4_en_dev *mdev = priv->mdev;
1247 struct mlx4_qp_context *context;
1248 int err = 0;
1249
Joe Perches14f8dc42013-02-07 11:46:27 +00001250 context = kmalloc(sizeof(*context), GFP_KERNEL);
1251 if (!context)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001252 return -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001253
Jiri Kosina40f22872014-05-11 15:15:12 +03001254 err = mlx4_qp_alloc(mdev->dev, qpn, qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001255 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001256 en_err(priv, "Failed to allocate qp #%x\n", qpn);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001257 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001258 }
1259 qp->event = mlx4_en_sqp_event;
1260
1261 memset(context, 0, sizeof *context);
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +00001262 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
Amir Vadai0e98b522012-04-04 21:33:24 +00001263 qpn, ring->cqn, -1, context);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001264 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001265
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001266 /* Cancel FCS removal if FW allows */
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001267 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001268 context->param3 |= cpu_to_be32(1 << 29);
Muhammad Mahajnaf0df3502015-04-02 16:31:21 +03001269 if (priv->dev->features & NETIF_F_RXFCS)
1270 ring->fcs_del = 0;
1271 else
1272 ring->fcs_del = ETH_FCS_LEN;
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001273 } else
1274 ring->fcs_del = 0;
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001275
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001276 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001277 if (err) {
1278 mlx4_qp_remove(mdev->dev, qp);
1279 mlx4_qp_free(mdev->dev, qp);
1280 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001281 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001282out:
1283 kfree(context);
1284 return err;
1285}
1286
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001287int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
1288{
1289 int err;
1290 u32 qpn;
1291
Matan Barakd57febe2014-12-11 10:57:57 +02001292 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn,
1293 MLX4_RESERVE_A0_QP);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001294 if (err) {
1295 en_err(priv, "Failed reserving drop qpn\n");
1296 return err;
1297 }
Jiri Kosina40f22872014-05-11 15:15:12 +03001298 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp, GFP_KERNEL);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001299 if (err) {
1300 en_err(priv, "Failed allocating drop qp\n");
1301 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1302 return err;
1303 }
1304
1305 return 0;
1306}
1307
1308void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
1309{
1310 u32 qpn;
1311
1312 qpn = priv->drop_qp.qpn;
1313 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
1314 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
1315 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1316}
1317
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001318/* Allocate rx qp's and configure them according to rss map */
1319int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
1320{
1321 struct mlx4_en_dev *mdev = priv->mdev;
1322 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1323 struct mlx4_qp_context context;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001324 struct mlx4_rss_context *rss_context;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001325 int rss_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001326 void *ptr;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001327 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
Or Gerlitz1202d462011-11-26 19:55:02 +00001328 MLX4_RSS_TCP_IPV6);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001329 int i, qpn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001330 int err = 0;
1331 int good_qps = 0;
1332
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001333 en_dbg(DRV, priv, "Configuring rss steering\n");
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001334 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
1335 priv->rx_ring_num,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02001336 &rss_map->base_qpn, 0);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001337 if (err) {
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001338 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001339 return err;
1340 }
1341
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001342 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001343 qpn = rss_map->base_qpn + i;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001344 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001345 &rss_map->state[i],
1346 &rss_map->qps[i]);
1347 if (err)
1348 goto rss_err;
1349
1350 ++good_qps;
1351 }
1352
1353 /* Configure RSS indirection qp */
Jiri Kosina40f22872014-05-11 15:15:12 +03001354 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, &rss_map->indir_qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001355 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001356 en_err(priv, "Failed to allocate RSS indirection QP\n");
Yevgeny Petrilin16792002011-03-22 22:38:31 +00001357 goto rss_err;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001358 }
1359 rss_map->indir_qp.event = mlx4_en_sqp_event;
1360 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001361 priv->rx_ring[0]->cqn, -1, &context);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001362
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001363 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1364 rss_rings = priv->rx_ring_num;
1365 else
1366 rss_rings = priv->prof->rss_rings;
1367
Or Gerlitz876f6e62011-11-26 19:54:58 +00001368 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
1369 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
Joe Perches43d620c2011-06-16 19:08:06 +00001370 rss_context = ptr;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001371 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001372 (rss_map->base_qpn));
Yevgeny Petrilin89efea22011-12-19 21:53:38 +00001373 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
Or Gerlitz1202d462011-11-26 19:55:02 +00001374 if (priv->mdev->profile.udp_rss) {
1375 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
1376 rss_context->base_qpn_udp = rss_context->default_qpn;
1377 }
Or Gerlitz837052d2013-12-23 16:09:44 +02001378
1379 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1380 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
1381 rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
1382 }
1383
Yevgeny Petrilin05339432010-08-24 03:46:42 +00001384 rss_context->flags = rss_mask;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001385 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
Eyal Perry947cbb02014-12-02 18:12:11 +02001386 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
1387 rss_context->hash_fn = MLX4_RSS_HASH_XOR;
1388 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
1389 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1390 memcpy(rss_context->rss_key, priv->rss_key,
1391 MLX4_EN_RSS_KEY_SIZE);
Eyal Perry947cbb02014-12-02 18:12:11 +02001392 } else {
1393 en_err(priv, "Unknown RSS hash function requested\n");
1394 err = -EINVAL;
1395 goto indir_err;
1396 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001397 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
1398 &rss_map->indir_qp, &rss_map->indir_state);
1399 if (err)
1400 goto indir_err;
1401
1402 return 0;
1403
1404indir_err:
1405 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1406 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1407 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1408 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001409rss_err:
1410 for (i = 0; i < good_qps; i++) {
1411 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1412 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1413 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1414 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1415 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001416 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001417 return err;
1418}
1419
1420void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
1421{
1422 struct mlx4_en_dev *mdev = priv->mdev;
1423 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1424 int i;
1425
1426 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1427 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1428 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1429 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001430
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001431 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001432 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1433 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1434 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1435 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1436 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001437 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001438}