blob: 6183128b2d3d0519b46d14152b15c95ebbf62db7 [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>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010036#include <linux/bpf_trace.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070037#include <linux/mlx4/cq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070039#include <linux/mlx4/qp.h>
40#include <linux/skbuff.h>
Sasha Levinb67bfe02013-02-27 17:06:00 -080041#include <linux/rculist.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070042#include <linux/if_ether.h>
43#include <linux/if_vlan.h>
44#include <linux/vmalloc.h>
Amir Vadai35f6f452014-06-29 11:54:55 +030045#include <linux/irq.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070046
Shani Michaelif8c64552014-11-09 13:51:53 +020047#if IS_ENABLED(CONFIG_IPV6)
48#include <net/ip6_checksum.h>
49#endif
50
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070051#include "mlx4_en.h"
52
Eric Dumazet51151a12013-06-23 08:17:56 -070053static int mlx4_alloc_pages(struct mlx4_en_priv *priv,
54 struct mlx4_en_rx_alloc *page_alloc,
55 const struct mlx4_en_frag_info *frag_info,
56 gfp_t _gfp)
57{
58 int order;
59 struct page *page;
60 dma_addr_t dma;
61
Brenden Blancod576acf2016-07-19 12:16:52 -070062 for (order = frag_info->order; ;) {
Eric Dumazet51151a12013-06-23 08:17:56 -070063 gfp_t gfp = _gfp;
64
65 if (order)
Konstantin Khlebnikov04aeb562016-04-18 14:33:54 +030066 gfp |= __GFP_COMP | __GFP_NOWARN | __GFP_NOMEMALLOC;
Eric Dumazet51151a12013-06-23 08:17:56 -070067 page = alloc_pages(gfp, order);
68 if (likely(page))
69 break;
70 if (--order < 0 ||
71 ((PAGE_SIZE << order) < frag_info->frag_size))
72 return -ENOMEM;
73 }
74 dma = dma_map_page(priv->ddev, page, 0, PAGE_SIZE << order,
Eric Dumazet69ba9432017-03-08 08:17:06 -080075 priv->dma_dir);
Tariq Toukande3d6fa2016-09-20 14:39:39 +030076 if (unlikely(dma_mapping_error(priv->ddev, dma))) {
Eric Dumazet51151a12013-06-23 08:17:56 -070077 put_page(page);
78 return -ENOMEM;
79 }
Amir Vadai70fbe072013-10-07 13:38:12 +020080 page_alloc->page_size = PAGE_SIZE << order;
Eric Dumazet51151a12013-06-23 08:17:56 -070081 page_alloc->page = page;
82 page_alloc->dma = dma;
Ido Shamay5f6e9802014-11-02 16:26:15 +020083 page_alloc->page_offset = 0;
Eric Dumazet51151a12013-06-23 08:17:56 -070084 /* Not doing get_page() for each frag is a big win
Eric Dumazet98226202014-10-10 04:48:17 -070085 * on asymetric workloads. Note we can not use atomic_set().
Eric Dumazet51151a12013-06-23 08:17:56 -070086 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -070087 page_ref_add(page, page_alloc->page_size / frag_info->frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -070088 return 0;
89}
90
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000091static int mlx4_en_alloc_frags(struct mlx4_en_priv *priv,
92 struct mlx4_en_rx_desc *rx_desc,
93 struct mlx4_en_rx_alloc *frags,
Eric Dumazet51151a12013-06-23 08:17:56 -070094 struct mlx4_en_rx_alloc *ring_alloc,
95 gfp_t gfp)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000096{
97 struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
Eric Dumazet51151a12013-06-23 08:17:56 -070098 const struct mlx4_en_frag_info *frag_info;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000099 struct page *page;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000100 int i;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700101
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000102 for (i = 0; i < priv->num_frags; i++) {
103 frag_info = &priv->frag_info[i];
Eric Dumazet51151a12013-06-23 08:17:56 -0700104 page_alloc[i] = ring_alloc[i];
Amir Vadai70fbe072013-10-07 13:38:12 +0200105 page_alloc[i].page_offset += frag_info->frag_stride;
106
107 if (page_alloc[i].page_offset + frag_info->frag_stride <=
108 ring_alloc[i].page_size)
Eric Dumazet51151a12013-06-23 08:17:56 -0700109 continue;
Amir Vadai70fbe072013-10-07 13:38:12 +0200110
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300111 if (unlikely(mlx4_alloc_pages(priv, &page_alloc[i],
112 frag_info, gfp)))
Eric Dumazet51151a12013-06-23 08:17:56 -0700113 goto out;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000114 }
115
116 for (i = 0; i < priv->num_frags; i++) {
117 frags[i] = ring_alloc[i];
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800118 frags[i].page_offset += priv->frag_info[i].rx_headroom;
119 rx_desc->data[i].addr = cpu_to_be64(frags[i].dma +
120 frags[i].page_offset);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000121 ring_alloc[i] = page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000122 }
123
124 return 0;
125
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000126out:
127 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700128 if (page_alloc[i].page != ring_alloc[i].page) {
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000129 dma_unmap_page(priv->ddev, page_alloc[i].dma,
Brenden Blancod576acf2016-07-19 12:16:52 -0700130 page_alloc[i].page_size,
Eric Dumazet69ba9432017-03-08 08:17:06 -0800131 priv->dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700132 page = page_alloc[i].page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300133 /* Revert changes done by mlx4_alloc_pages */
134 page_ref_sub(page, page_alloc[i].page_size /
135 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700136 put_page(page);
137 }
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000138 }
139 return -ENOMEM;
140}
141
142static void mlx4_en_free_frag(struct mlx4_en_priv *priv,
143 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700144 int i)
145{
Eric Dumazet51151a12013-06-23 08:17:56 -0700146 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Amir Vadai021f1102013-10-07 13:38:13 +0200147 u32 next_frag_end = frags[i].page_offset + 2 * frag_info->frag_stride;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700148
Amir Vadai021f1102013-10-07 13:38:13 +0200149
150 if (next_frag_end > frags[i].page_size)
Amir Vadai70fbe072013-10-07 13:38:12 +0200151 dma_unmap_page(priv->ddev, frags[i].dma, frags[i].page_size,
Eric Dumazet69ba9432017-03-08 08:17:06 -0800152 priv->dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700153
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000154 if (frags[i].page)
155 put_page(frags[i].page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700156}
157
158static int mlx4_en_init_allocator(struct mlx4_en_priv *priv,
159 struct mlx4_en_rx_ring *ring)
160{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700161 int i;
Eric Dumazet51151a12013-06-23 08:17:56 -0700162 struct mlx4_en_rx_alloc *page_alloc;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700163
164 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700165 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700166
Eric Dumazet51151a12013-06-23 08:17:56 -0700167 if (mlx4_alloc_pages(priv, &ring->page_alloc[i],
Ido Shamay1ab25f82014-11-02 16:26:16 +0200168 frag_info, GFP_KERNEL | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000169 goto out;
Ido Shamayb110d2c2015-02-03 17:57:19 +0200170
171 en_dbg(DRV, priv, " frag %d allocator: - size:%d frags:%d\n",
172 i, ring->page_alloc[i].page_size,
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700173 page_ref_count(ring->page_alloc[i].page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700174 }
175 return 0;
176
177out:
178 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700179 struct page *page;
180
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700181 page_alloc = &ring->page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000182 dma_unmap_page(priv->ddev, page_alloc->dma,
Brenden Blancod576acf2016-07-19 12:16:52 -0700183 page_alloc->page_size,
Eric Dumazet69ba9432017-03-08 08:17:06 -0800184 priv->dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700185 page = page_alloc->page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300186 /* Revert changes done by mlx4_alloc_pages */
187 page_ref_sub(page, page_alloc->page_size /
188 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700189 put_page(page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700190 page_alloc->page = NULL;
191 }
192 return -ENOMEM;
193}
194
195static void mlx4_en_destroy_allocator(struct mlx4_en_priv *priv,
196 struct mlx4_en_rx_ring *ring)
197{
198 struct mlx4_en_rx_alloc *page_alloc;
199 int i;
200
201 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700202 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
203
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700204 page_alloc = &ring->page_alloc[i];
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000205 en_dbg(DRV, priv, "Freeing allocator:%d count:%d\n",
206 i, page_count(page_alloc->page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700207
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000208 dma_unmap_page(priv->ddev, page_alloc->dma,
Eric Dumazet69ba9432017-03-08 08:17:06 -0800209 page_alloc->page_size, priv->dma_dir);
Amir Vadai70fbe072013-10-07 13:38:12 +0200210 while (page_alloc->page_offset + frag_info->frag_stride <
211 page_alloc->page_size) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700212 put_page(page_alloc->page);
Amir Vadai70fbe072013-10-07 13:38:12 +0200213 page_alloc->page_offset += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700214 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700215 page_alloc->page = NULL;
216 }
217}
218
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700219static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv,
220 struct mlx4_en_rx_ring *ring, int index)
221{
222 struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700223 int possible_frags;
224 int i;
225
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700226 /* Set size and memtype fields */
227 for (i = 0; i < priv->num_frags; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700228 rx_desc->data[i].byte_count =
229 cpu_to_be32(priv->frag_info[i].frag_size);
230 rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
231 }
232
233 /* If the number of used fragments does not fill up the ring stride,
234 * remaining (unused) fragments must be padded with null address/size
235 * and a special memory key */
236 possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
237 for (i = priv->num_frags; i < possible_frags; i++) {
238 rx_desc->data[i].byte_count = 0;
239 rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
240 rx_desc->data[i].addr = 0;
241 }
242}
243
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700244static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
Eric Dumazet51151a12013-06-23 08:17:56 -0700245 struct mlx4_en_rx_ring *ring, int index,
246 gfp_t gfp)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700247{
248 struct mlx4_en_rx_desc *rx_desc = ring->buf + (index * ring->stride);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000249 struct mlx4_en_rx_alloc *frags = ring->rx_info +
250 (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700251
Brenden Blancod576acf2016-07-19 12:16:52 -0700252 if (ring->page_cache.index > 0) {
253 frags[0] = ring->page_cache.buf[--ring->page_cache.index];
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800254 rx_desc->data[0].addr = cpu_to_be64(frags[0].dma +
255 frags[0].page_offset);
Brenden Blancod576acf2016-07-19 12:16:52 -0700256 return 0;
257 }
258
Eric Dumazet51151a12013-06-23 08:17:56 -0700259 return mlx4_en_alloc_frags(priv, rx_desc, frags, ring->page_alloc, gfp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700260}
261
Ido Shamay07841f92015-04-30 17:32:46 +0300262static inline bool mlx4_en_is_ring_empty(struct mlx4_en_rx_ring *ring)
263{
Ido Shamay07841f92015-04-30 17:32:46 +0300264 return ring->prod == ring->cons;
265}
266
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700267static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
268{
269 *ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
270}
271
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000272static void mlx4_en_free_rx_desc(struct mlx4_en_priv *priv,
273 struct mlx4_en_rx_ring *ring,
274 int index)
275{
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000276 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000277 int nr;
278
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000279 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000280 for (nr = 0; nr < priv->num_frags; nr++) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000281 en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000282 mlx4_en_free_frag(priv, frags, nr);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000283 }
284}
285
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700286static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
287{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700288 struct mlx4_en_rx_ring *ring;
289 int ring_ind;
290 int buf_ind;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000291 int new_size;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700292
293 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
294 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200295 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700296
297 if (mlx4_en_prepare_rx_desc(priv, ring,
Eric Dumazet51151a12013-06-23 08:17:56 -0700298 ring->actual_size,
Ido Shamay1ab25f82014-11-02 16:26:16 +0200299 GFP_KERNEL | __GFP_COLD)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700300 if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
Joe Perches1a91de22014-05-07 12:52:57 -0700301 en_err(priv, "Failed to allocate enough rx buffers\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700302 return -ENOMEM;
303 } else {
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000304 new_size = rounddown_pow_of_two(ring->actual_size);
Joe Perches1a91de22014-05-07 12:52:57 -0700305 en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000306 ring->actual_size, new_size);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000307 goto reduce_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700308 }
309 }
310 ring->actual_size++;
311 ring->prod++;
312 }
313 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000314 return 0;
315
316reduce_rings:
317 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200318 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000319 while (ring->actual_size > new_size) {
320 ring->actual_size--;
321 ring->prod--;
322 mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
323 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000324 }
325
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700326 return 0;
327}
328
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700329static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
330 struct mlx4_en_rx_ring *ring)
331{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700332 int index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700333
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000334 en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
335 ring->cons, ring->prod);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700336
337 /* Unmap and free Rx buffers */
Ido Shamay07841f92015-04-30 17:32:46 +0300338 while (!mlx4_en_is_ring_empty(ring)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700339 index = ring->cons & ring->size_mask;
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000340 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000341 mlx4_en_free_rx_desc(priv, ring, index);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700342 ++ring->cons;
343 }
344}
345
Ido Shamay02512482014-02-21 12:39:17 +0200346void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
347{
348 int i;
349 int num_of_eqs;
Ido Shamaybb2146b2014-02-21 12:39:18 +0200350 int num_rx_rings;
Ido Shamay02512482014-02-21 12:39:17 +0200351 struct mlx4_dev *dev = mdev->dev;
352
353 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
Matan Barakc66fa192015-05-31 09:30:16 +0300354 num_of_eqs = max_t(int, MIN_RX_RINGS,
355 min_t(int,
356 mlx4_get_eqs_per_port(mdev->dev, i),
357 DEF_RX_RINGS));
Ido Shamay02512482014-02-21 12:39:17 +0200358
Amir Vadaiea1c1af2014-07-22 15:44:12 +0300359 num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
360 min_t(int, num_of_eqs,
361 netif_get_num_default_rss_queues());
Ido Shamay02512482014-02-21 12:39:17 +0200362 mdev->profile.prof[i].rx_ring_num =
Ido Shamaybb2146b2014-02-21 12:39:18 +0200363 rounddown_pow_of_two(num_rx_rings);
Ido Shamay02512482014-02-21 12:39:17 +0200364 }
365}
366
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700367int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200368 struct mlx4_en_rx_ring **pring,
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200369 u32 size, u16 stride, int node)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700370{
371 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200372 struct mlx4_en_rx_ring *ring;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000373 int err = -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700374 int tmp;
375
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200376 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200377 if (!ring) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200378 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
379 if (!ring) {
380 en_err(priv, "Failed to allocate RX ring structure\n");
381 return -ENOMEM;
382 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200383 }
384
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700385 ring->prod = 0;
386 ring->cons = 0;
387 ring->size = size;
388 ring->size_mask = size - 1;
389 ring->stride = stride;
390 ring->log_stride = ffs(ring->stride) - 1;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700391 ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700392
393 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000394 sizeof(struct mlx4_en_rx_alloc));
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200395 ring->rx_info = vmalloc_node(tmp, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200396 if (!ring->rx_info) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200397 ring->rx_info = vmalloc(tmp);
398 if (!ring->rx_info) {
399 err = -ENOMEM;
400 goto err_ring;
401 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200402 }
Joe Perchese404dec2012-01-29 12:56:23 +0000403
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000404 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700405 ring->rx_info, tmp);
406
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200407 /* Allocate HW buffers on provided NUMA node */
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200408 set_dev_node(&mdev->dev->persist->pdev->dev, node);
Haggai Abramovsky73898db2016-05-04 14:50:15 +0300409 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200410 set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700411 if (err)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200412 goto err_info;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700413
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700414 ring->buf = ring->wqres.buf.direct.buf;
415
Amir Vadaiec693d42013-04-23 06:06:49 +0000416 ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter;
417
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200418 *pring = ring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700419 return 0;
420
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200421err_info:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700422 vfree(ring->rx_info);
423 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200424err_ring:
425 kfree(ring);
426 *pring = NULL;
427
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700428 return err;
429}
430
431int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
432{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700433 struct mlx4_en_rx_ring *ring;
434 int i;
435 int ring_ind;
436 int err;
437 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
438 DS_SIZE * priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700439
440 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200441 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700442
443 ring->prod = 0;
444 ring->cons = 0;
445 ring->actual_size = 0;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200446 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700447
448 ring->stride = stride;
Eugenia Emantayev6496bbf2016-12-29 18:37:10 +0200449 if (ring->stride <= TXBB_SIZE) {
450 /* Stamp first unused send wqe */
451 __be32 *ptr = (__be32 *)ring->buf;
452 __be32 stamp = cpu_to_be32(1 << STAMP_SHIFT);
453 *ptr = stamp;
454 /* Move pointer to start of rx section */
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700455 ring->buf += TXBB_SIZE;
Eugenia Emantayev6496bbf2016-12-29 18:37:10 +0200456 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700457
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700458 ring->log_stride = ffs(ring->stride) - 1;
459 ring->buf_size = ring->size * ring->stride;
460
461 memset(ring->buf, 0, ring->buf_size);
462 mlx4_en_update_rx_prod_db(ring);
463
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000464 /* Initialize all descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700465 for (i = 0; i < ring->size; i++)
466 mlx4_en_init_rx_desc(priv, ring, i);
467
468 /* Initialize page allocators */
469 err = mlx4_en_init_allocator(priv, ring);
470 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000471 en_err(priv, "Failed initializing ring allocator\n");
Yevgeny Petrilin60b18092011-04-06 23:25:45 +0000472 if (ring->stride <= TXBB_SIZE)
473 ring->buf -= TXBB_SIZE;
Yevgeny Petrilin9a4f92a2009-04-20 04:24:28 +0000474 ring_ind--;
475 goto err_allocator;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700476 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700477 }
Ingo Molnarb58515b2008-11-25 16:53:32 -0800478 err = mlx4_en_fill_rx_buffers(priv);
479 if (err)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700480 goto err_buffers;
481
482 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200483 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700484
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +0000485 ring->size_mask = ring->actual_size - 1;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700486 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700487 }
488
489 return 0;
490
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700491err_buffers:
492 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200493 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700494
495 ring_ind = priv->rx_ring_num - 1;
496err_allocator:
497 while (ring_ind >= 0) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200498 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
499 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
500 mlx4_en_destroy_allocator(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700501 ring_ind--;
502 }
503 return err;
504}
505
Ido Shamay07841f92015-04-30 17:32:46 +0300506/* We recover from out of memory by scheduling our napi poll
507 * function (mlx4_en_process_cq), which tries to allocate
508 * all missing RX buffers (call to mlx4_en_refill_rx_buffers).
509 */
510void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv)
511{
512 int ring;
513
514 if (!priv->port_up)
515 return;
516
517 for (ring = 0; ring < priv->rx_ring_num; ring++) {
Benjamin Poirierbd4ce942017-02-06 10:14:31 -0800518 if (mlx4_en_is_ring_empty(priv->rx_ring[ring])) {
519 local_bh_disable();
Ido Shamay07841f92015-04-30 17:32:46 +0300520 napi_reschedule(&priv->rx_cq[ring]->napi);
Benjamin Poirierbd4ce942017-02-06 10:14:31 -0800521 local_bh_enable();
522 }
Ido Shamay07841f92015-04-30 17:32:46 +0300523 }
524}
525
Brenden Blancod576acf2016-07-19 12:16:52 -0700526/* When the rx ring is running in page-per-packet mode, a released frame can go
527 * directly into a small cache, to avoid unmapping or touching the page
528 * allocator. In bpf prog performance scenarios, buffers are either forwarded
529 * or dropped, never converted to skbs, so every page can come directly from
530 * this cache when it is sized to be a multiple of the napi budget.
531 */
532bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring,
533 struct mlx4_en_rx_alloc *frame)
534{
535 struct mlx4_en_page_cache *cache = &ring->page_cache;
536
537 if (cache->index >= MLX4_EN_CACHE_SIZE)
538 return false;
539
540 cache->buf[cache->index++] = *frame;
541 return true;
542}
543
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700544void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200545 struct mlx4_en_rx_ring **pring,
546 u32 size, u16 stride)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700547{
548 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200549 struct mlx4_en_rx_ring *ring = *pring;
Brenden Blancocb7386d2016-07-20 17:22:33 -0700550 struct bpf_prog *old_prog;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700551
Brenden Blanco326fe022016-09-03 21:29:58 -0700552 old_prog = rcu_dereference_protected(
553 ring->xdp_prog,
554 lockdep_is_held(&mdev->state_lock));
Brenden Blancocb7386d2016-07-20 17:22:33 -0700555 if (old_prog)
556 bpf_prog_put(old_prog);
Thadeu Lima de Souza Cascardo68355f72012-02-06 08:39:49 +0000557 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700558 vfree(ring->rx_info);
559 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200560 kfree(ring);
561 *pring = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700562}
563
564void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
565 struct mlx4_en_rx_ring *ring)
566{
Brenden Blancod576acf2016-07-19 12:16:52 -0700567 int i;
568
569 for (i = 0; i < ring->page_cache.index; i++) {
570 struct mlx4_en_rx_alloc *frame = &ring->page_cache.buf[i];
571
572 dma_unmap_page(priv->ddev, frame->dma, frame->page_size,
Eric Dumazet69ba9432017-03-08 08:17:06 -0800573 priv->dma_dir);
Brenden Blancod576acf2016-07-19 12:16:52 -0700574 put_page(frame->page);
575 }
576 ring->page_cache.index = 0;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700577 mlx4_en_free_rx_buf(priv, ring);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700578 if (ring->stride <= TXBB_SIZE)
579 ring->buf -= TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700580 mlx4_en_destroy_allocator(priv, ring);
581}
582
583
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700584static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
585 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000586 struct mlx4_en_rx_alloc *frags,
Eric Dumazet90278c92011-10-19 18:49:52 +0000587 struct sk_buff *skb,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700588 int length)
589{
Eric Dumazet90278c92011-10-19 18:49:52 +0000590 struct skb_frag_struct *skb_frags_rx = skb_shinfo(skb)->frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700591 struct mlx4_en_frag_info *frag_info;
592 int nr;
593 dma_addr_t dma;
594
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000595 /* Collect used fragments while replacing them in the HW descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700596 for (nr = 0; nr < priv->num_frags; nr++) {
597 frag_info = &priv->frag_info[nr];
598 if (length <= frag_info->frag_prefix_size)
599 break;
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300600 if (unlikely(!frags[nr].page))
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700601 goto fail;
602
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000603 dma = be64_to_cpu(rx_desc->data[nr].addr);
604 dma_sync_single_for_cpu(priv->ddev, dma, frag_info->frag_size,
605 DMA_FROM_DEVICE);
606
Eric Dumazet7f0137e2017-02-23 12:02:45 +0200607 __skb_fill_page_desc(skb, nr, frags[nr].page,
608 frags[nr].page_offset,
609 frag_info->frag_size);
610
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000611 skb->truesize += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700612 frags[nr].page = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700613 }
614 /* Adjust size of last fragment to match actual length */
roel kluin973507c2009-08-08 23:54:21 +0000615 if (nr > 0)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000616 skb_frag_size_set(&skb_frags_rx[nr - 1],
617 length - priv->frag_info[nr - 1].frag_prefix_size);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700618 return nr;
619
620fail:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700621 while (nr > 0) {
622 nr--;
Ian Campbell311761c2011-10-19 23:01:45 +0000623 __skb_frag_unref(&skb_frags_rx[nr]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700624 }
625 return 0;
626}
627
628
629static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv,
630 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000631 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700632 unsigned int length)
633{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700634 struct sk_buff *skb;
635 void *va;
636 int used_frags;
637 dma_addr_t dma;
638
Pradeep A Dalvic056b732012-02-05 02:50:38 +0000639 skb = netdev_alloc_skb(priv->dev, SMALL_PACKET_SIZE + NET_IP_ALIGN);
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300640 if (unlikely(!skb)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000641 en_dbg(RX_ERR, priv, "Failed allocating skb\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700642 return NULL;
643 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700644 skb_reserve(skb, NET_IP_ALIGN);
645 skb->len = length;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700646
647 /* Get pointer to first fragment so we could copy the headers into the
648 * (linear part of the) skb */
Amir Vadai70fbe072013-10-07 13:38:12 +0200649 va = page_address(frags[0].page) + frags[0].page_offset;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700650
651 if (length <= SMALL_PACKET_SIZE) {
652 /* We are copying all relevant data to the skb - temporarily
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000653 * sync buffers for the copy */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700654 dma = be64_to_cpu(rx_desc->data[0].addr);
Yevgeny Petrilinebf8c9a2012-03-06 04:03:34 +0000655 dma_sync_single_for_cpu(priv->ddev, dma, length,
FUJITA Tomonorie4fc8562010-02-04 18:57:42 +0000656 DMA_FROM_DEVICE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700657 skb_copy_to_linear_data(skb, va, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700658 skb->tail += length;
659 } else {
Eric Dumazetcfecec52014-09-05 18:29:45 -0700660 unsigned int pull_len;
661
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700662 /* Move relevant fragments to skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000663 used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, frags,
664 skb, length);
Yevgeny Petrilin785a09822009-04-26 20:42:57 +0000665 if (unlikely(!used_frags)) {
666 kfree_skb(skb);
667 return NULL;
668 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700669 skb_shinfo(skb)->nr_frags = used_frags;
670
Eric Dumazetcfecec52014-09-05 18:29:45 -0700671 pull_len = eth_get_headlen(va, SMALL_PACKET_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700672 /* Copy headers into the skb linear buffer */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700673 memcpy(skb->data, va, pull_len);
674 skb->tail += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700675
676 /* Skip headers in first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700677 skb_shinfo(skb)->frags[0].page_offset += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700678
679 /* Adjust size of first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700680 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], pull_len);
681 skb->data_len = length - pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700682 }
683 return skb;
684}
685
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000686static void validate_loopback(struct mlx4_en_priv *priv, struct sk_buff *skb)
687{
688 int i;
689 int offset = ETH_HLEN;
690
691 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++, offset++) {
692 if (*(skb->data + offset) != (unsigned char) (i & 0xff))
693 goto out_loopback;
694 }
695 /* Loopback found */
696 priv->loopback_ok = 1;
697
698out_loopback:
699 dev_kfree_skb_any(skb);
700}
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700701
Eric Dumazetdad42c32016-11-20 09:24:36 -0800702static bool mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
703 struct mlx4_en_rx_ring *ring)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000704{
Eric Dumazetdad42c32016-11-20 09:24:36 -0800705 u32 missing = ring->actual_size - (ring->prod - ring->cons);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000706
Eric Dumazetdad42c32016-11-20 09:24:36 -0800707 /* Try to batch allocations, but not too much. */
708 if (missing < 8)
709 return false;
710 do {
711 if (mlx4_en_prepare_rx_desc(priv, ring,
712 ring->prod & ring->size_mask,
Eric Dumazetdceeab02017-01-17 20:14:10 -0800713 GFP_ATOMIC | __GFP_COLD |
714 __GFP_MEMALLOC))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000715 break;
716 ring->prod++;
Eric Dumazetdad42c32016-11-20 09:24:36 -0800717 } while (--missing);
718
719 return true;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000720}
721
Shani Michaelif8c64552014-11-09 13:51:53 +0200722/* When hardware doesn't strip the vlan, we need to calculate the checksum
723 * over it and add it to the hardware's checksum calculation
724 */
725static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
726 struct vlan_hdr *vlanh)
727{
728 return csum_add(hw_checksum, *(__wsum *)vlanh);
729}
730
731/* Although the stack expects checksum which doesn't include the pseudo
732 * header, the HW adds it. To address that, we are subtracting the pseudo
733 * header checksum from the checksum value provided by the HW.
734 */
735static void get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
736 struct iphdr *iph)
737{
738 __u16 length_for_csum = 0;
739 __wsum csum_pseudo_header = 0;
740
741 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
742 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
743 length_for_csum, iph->protocol, 0);
744 skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
745}
746
747#if IS_ENABLED(CONFIG_IPV6)
748/* In IPv6 packets, besides subtracting the pseudo header checksum,
749 * we also compute/add the IP header checksum which
750 * is not added by the HW.
751 */
752static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
753 struct ipv6hdr *ipv6h)
754{
755 __wsum csum_pseudo_hdr = 0;
756
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300757 if (unlikely(ipv6h->nexthdr == IPPROTO_FRAGMENT ||
758 ipv6h->nexthdr == IPPROTO_HOPOPTS))
Shani Michaelif8c64552014-11-09 13:51:53 +0200759 return -1;
Daniel Jurgens82d69202016-05-04 15:00:33 +0300760 hw_checksum = csum_add(hw_checksum, (__force __wsum)htons(ipv6h->nexthdr));
Shani Michaelif8c64552014-11-09 13:51:53 +0200761
762 csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
763 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
764 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
765 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ntohs(ipv6h->nexthdr));
766
767 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
768 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
769 return 0;
770}
771#endif
772static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
Ido Shamay79a25852015-06-25 11:29:43 +0300773 netdev_features_t dev_features)
Shani Michaelif8c64552014-11-09 13:51:53 +0200774{
775 __wsum hw_checksum = 0;
776
777 void *hdr = (u8 *)va + sizeof(struct ethhdr);
778
779 hw_checksum = csum_unfold((__force __sum16)cqe->checksum);
780
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300781 if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) &&
Ido Shamay79a25852015-06-25 11:29:43 +0300782 !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200783 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
784 hdr += sizeof(struct vlan_hdr);
785 }
786
787 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
788 get_fixed_ipv4_csum(hw_checksum, skb, hdr);
789#if IS_ENABLED(CONFIG_IPV6)
790 else if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300791 if (unlikely(get_fixed_ipv6_csum(hw_checksum, skb, hdr)))
Shani Michaelif8c64552014-11-09 13:51:53 +0200792 return -1;
793#endif
794 return 0;
795}
796
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700797int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
798{
799 struct mlx4_en_priv *priv = netdev_priv(dev);
Amir Vadaiec693d42013-04-23 06:06:49 +0000800 struct mlx4_en_dev *mdev = priv->mdev;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700801 struct mlx4_cqe *cqe;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200802 struct mlx4_en_rx_ring *ring = priv->rx_ring[cq->ring];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000803 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700804 struct mlx4_en_rx_desc *rx_desc;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700805 struct bpf_prog *xdp_prog;
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700806 int doorbell_pending;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700807 struct sk_buff *skb;
808 int index;
809 int nr;
810 unsigned int length;
811 int polled = 0;
812 int ip_summed;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000813 int factor = priv->cqe_factor;
Amir Vadaiec693d42013-04-23 06:06:49 +0000814 u64 timestamp;
Or Gerlitz837052d2013-12-23 16:09:44 +0200815 bool l2_tunnel;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700816
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300817 if (unlikely(!priv->port_up))
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700818 return 0;
819
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300820 if (unlikely(budget <= 0))
Eric W. Biederman38be0a32014-03-14 18:05:58 -0700821 return polled;
822
Brenden Blanco326fe022016-09-03 21:29:58 -0700823 /* Protect accesses to: ring->xdp_prog, priv->mac_hash list */
824 rcu_read_lock();
825 xdp_prog = rcu_dereference(ring->xdp_prog);
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700826 doorbell_pending = 0;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700827
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700828 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
829 * descriptor offset can be deduced from the CQE index instead of
830 * reading 'cqe->index' */
831 index = cq->mcq.cons_index & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +0300832 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700833
834 /* Process all completed CQEs */
835 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
836 cq->mcq.cons_index & cq->size)) {
837
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000838 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700839 rx_desc = ring->buf + (index << ring->log_stride);
840
841 /*
842 * make sure we read the CQE after we read the ownership bit
843 */
Alexander Duyck12b33752015-04-08 18:49:36 -0700844 dma_rmb();
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700845
846 /* Drop packet on bad receive or bad checksum */
847 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
848 MLX4_CQE_OPCODE_ERROR)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700849 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
850 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
851 ((struct mlx4_err_cqe *)cqe)->syndrome);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700852 goto next;
853 }
854 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000855 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700856 goto next;
857 }
858
Yan Burman79aeacc2013-02-07 02:25:19 +0000859 /* Check if we need to drop the packet if SRIOV is not enabled
860 * and not performing the selftest or flb disabled
861 */
862 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
863 struct ethhdr *ethh;
864 dma_addr_t dma;
Yan Burman79aeacc2013-02-07 02:25:19 +0000865 /* Get pointer to first fragment since we haven't
866 * skb yet and cast it to ethhdr struct
867 */
868 dma = be64_to_cpu(rx_desc->data[0].addr);
869 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
870 DMA_FROM_DEVICE);
871 ethh = (struct ethhdr *)(page_address(frags[0].page) +
Amir Vadai70fbe072013-10-07 13:38:12 +0200872 frags[0].page_offset);
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000873
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000874 if (is_multicast_ether_addr(ethh->h_dest)) {
875 struct mlx4_mac_entry *entry;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000876 struct hlist_head *bucket;
877 unsigned int mac_hash;
878
879 /* Drop the packet, since HW loopback-ed it */
880 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
881 bucket = &priv->mac_hash[mac_hash];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800882 hlist_for_each_entry_rcu(entry, bucket, hlist) {
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000883 if (ether_addr_equal_64bits(entry->mac,
Brenden Blanco326fe022016-09-03 21:29:58 -0700884 ethh->h_source))
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000885 goto next;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000886 }
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000887 }
Yan Burman79aeacc2013-02-07 02:25:19 +0000888 }
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000889
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700890 /*
891 * Packet is OK - process it.
892 */
893 length = be32_to_cpu(cqe->byte_cnt);
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -0500894 length -= ring->fcs_del;
Or Gerlitz837052d2013-12-23 16:09:44 +0200895 l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
896 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700897
Brenden Blanco47a38e12016-07-19 12:16:50 -0700898 /* A bpf program gets first chance to drop the packet. It may
899 * read bytes but not past the end of the frag.
900 */
901 if (xdp_prog) {
902 struct xdp_buff xdp;
903 dma_addr_t dma;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800904 void *orig_data;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700905 u32 act;
906
907 dma = be64_to_cpu(rx_desc->data[0].addr);
908 dma_sync_single_for_cpu(priv->ddev, dma,
909 priv->frag_info[0].frag_size,
910 DMA_FROM_DEVICE);
911
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800912 xdp.data_hard_start = page_address(frags[0].page);
913 xdp.data = xdp.data_hard_start + frags[0].page_offset;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700914 xdp.data_end = xdp.data + length;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800915 orig_data = xdp.data;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700916
917 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800918
919 if (xdp.data != orig_data) {
920 length = xdp.data_end - xdp.data;
921 frags[0].page_offset = xdp.data -
922 xdp.data_hard_start;
923 }
924
Brenden Blanco47a38e12016-07-19 12:16:50 -0700925 switch (act) {
926 case XDP_PASS:
927 break;
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700928 case XDP_TX:
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200929 if (likely(!mlx4_en_xmit_frame(ring, frags, dev,
Tariq Toukan67f8b1d2016-11-02 17:12:24 +0200930 length, cq->ring,
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300931 &doorbell_pending)))
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700932 goto consumed;
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100933 trace_xdp_exception(dev, xdp_prog, act);
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200934 goto xdp_drop_no_cnt; /* Drop on xmit failure */
Brenden Blanco47a38e12016-07-19 12:16:50 -0700935 default:
936 bpf_warn_invalid_xdp_action(act);
937 case XDP_ABORTED:
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100938 trace_xdp_exception(dev, xdp_prog, act);
Brenden Blanco47a38e12016-07-19 12:16:50 -0700939 case XDP_DROP:
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200940 ring->xdp_drop++;
941xdp_drop_no_cnt:
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300942 if (likely(mlx4_en_rx_recycle(ring, frags)))
Brenden Blancod576acf2016-07-19 12:16:52 -0700943 goto consumed;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700944 goto next;
945 }
946 }
947
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200948 ring->bytes += length;
949 ring->packets++;
950
Michał Mirosławc8c64cf2011-04-15 04:50:49 +0000951 if (likely(dev->features & NETIF_F_RXCSUM)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200952 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
953 MLX4_CQE_STATUS_UDP)) {
954 if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
955 cqe->checksum == cpu_to_be16(0xffff)) {
956 ip_summed = CHECKSUM_UNNECESSARY;
957 ring->csum_ok++;
958 } else {
959 ip_summed = CHECKSUM_NONE;
960 ring->csum_none++;
961 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700962 } else {
Shani Michaelif8c64552014-11-09 13:51:53 +0200963 if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
964 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
965 MLX4_CQE_STATUS_IPV6))) {
966 ip_summed = CHECKSUM_COMPLETE;
967 ring->csum_complete++;
968 } else {
969 ip_summed = CHECKSUM_NONE;
970 ring->csum_none++;
971 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700972 }
973 } else {
974 ip_summed = CHECKSUM_NONE;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000975 ring->csum_none++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700976 }
977
Shani Michaelidd65bea2014-11-09 13:51:52 +0200978 /* This packet is eligible for GRO if it is:
979 * - DIX Ethernet (type interpretation)
980 * - TCP/IP (v4)
981 * - without IP options
982 * - not an IP fragment
Shani Michaelidd65bea2014-11-09 13:51:52 +0200983 */
Eric Dumazet868fdb02015-11-18 06:30:58 -0800984 if (dev->features & NETIF_F_GRO) {
Shani Michaelidd65bea2014-11-09 13:51:52 +0200985 struct sk_buff *gro_skb = napi_get_frags(&cq->napi);
986 if (!gro_skb)
987 goto next;
988
989 nr = mlx4_en_complete_rx_desc(priv,
990 rx_desc, frags, gro_skb,
991 length);
992 if (!nr)
993 goto next;
994
Shani Michaelif8c64552014-11-09 13:51:53 +0200995 if (ip_summed == CHECKSUM_COMPLETE) {
996 void *va = skb_frag_address(skb_shinfo(gro_skb)->frags);
Ido Shamay79a25852015-06-25 11:29:43 +0300997 if (check_csum(cqe, gro_skb, va,
998 dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200999 ip_summed = CHECKSUM_NONE;
1000 ring->csum_none++;
1001 ring->csum_complete--;
1002 }
1003 }
1004
Shani Michaelidd65bea2014-11-09 13:51:52 +02001005 skb_shinfo(gro_skb)->nr_frags = nr;
1006 gro_skb->len = length;
1007 gro_skb->data_len = length;
1008 gro_skb->ip_summed = ip_summed;
1009
1010 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
Or Gerlitzc58942f2014-12-11 10:57:51 +02001011 gro_skb->csum_level = 1;
1012
Shani Michaelidd65bea2014-11-09 13:51:52 +02001013 if ((cqe->vlan_my_qpn &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +03001014 cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) &&
Shani Michaelidd65bea2014-11-09 13:51:52 +02001015 (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
1016 u16 vid = be16_to_cpu(cqe->sl_vid);
1017
1018 __vlan_hwaccel_put_tag(gro_skb, htons(ETH_P_8021Q), vid);
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001019 } else if ((be32_to_cpu(cqe->vlan_my_qpn) &
1020 MLX4_CQE_SVLAN_PRESENT_MASK) &&
1021 (dev->features & NETIF_F_HW_VLAN_STAG_RX)) {
1022 __vlan_hwaccel_put_tag(gro_skb,
1023 htons(ETH_P_8021AD),
1024 be16_to_cpu(cqe->sl_vid));
Shani Michaelidd65bea2014-11-09 13:51:52 +02001025 }
1026
1027 if (dev->features & NETIF_F_RXHASH)
1028 skb_set_hash(gro_skb,
1029 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +02001030 (ip_summed == CHECKSUM_UNNECESSARY) ?
1031 PKT_HASH_TYPE_L4 :
1032 PKT_HASH_TYPE_L3);
Shani Michaelidd65bea2014-11-09 13:51:52 +02001033
1034 skb_record_rx_queue(gro_skb, cq->ring);
Shani Michaelidd65bea2014-11-09 13:51:52 +02001035
1036 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
1037 timestamp = mlx4_en_get_cqe_ts(cqe);
1038 mlx4_en_fill_hwtstamps(mdev,
1039 skb_hwtstamps(gro_skb),
1040 timestamp);
1041 }
1042
1043 napi_gro_frags(&cq->napi);
1044 goto next;
1045 }
1046
1047 /* GRO not possible, complete processing here */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001048 skb = mlx4_en_rx_skb(priv, rx_desc, frags, length);
Tariq Toukande3d6fa2016-09-20 14:39:39 +03001049 if (unlikely(!skb)) {
Eran Ben Elishad21ed3a2016-04-20 16:01:18 +03001050 ring->dropped++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001051 goto next;
1052 }
1053
Kamal Heib57c970c2016-09-20 14:39:40 +03001054 if (unlikely(priv->validate_loopback)) {
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +00001055 validate_loopback(priv, skb);
1056 goto next;
1057 }
1058
Shani Michaelif8c64552014-11-09 13:51:53 +02001059 if (ip_summed == CHECKSUM_COMPLETE) {
Ido Shamay79a25852015-06-25 11:29:43 +03001060 if (check_csum(cqe, skb, skb->data, dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +02001061 ip_summed = CHECKSUM_NONE;
1062 ring->csum_complete--;
1063 ring->csum_none++;
1064 }
1065 }
1066
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001067 skb->ip_summed = ip_summed;
1068 skb->protocol = eth_type_trans(skb, dev);
David S. Miller0c8dfc82009-01-27 16:22:32 -08001069 skb_record_rx_queue(skb, cq->ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001070
Tom Herbert9ca86002014-08-27 21:27:53 -07001071 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
1072 skb->csum_level = 1;
Or Gerlitz837052d2013-12-23 16:09:44 +02001073
Yevgeny Petrilinad861072011-10-18 01:51:24 +00001074 if (dev->features & NETIF_F_RXHASH)
Tom Herbert69174412013-12-17 23:31:23 -08001075 skb_set_hash(skb,
1076 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +02001077 (ip_summed == CHECKSUM_UNNECESSARY) ?
1078 PKT_HASH_TYPE_L4 :
1079 PKT_HASH_TYPE_L3);
Yevgeny Petrilinad861072011-10-18 01:51:24 +00001080
Amir Vadaiec693d42013-04-23 06:06:49 +00001081 if ((be32_to_cpu(cqe->vlan_my_qpn) &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +03001082 MLX4_CQE_CVLAN_PRESENT_MASK) &&
Amir Vadaiec693d42013-04-23 06:06:49 +00001083 (dev->features & NETIF_F_HW_VLAN_CTAG_RX))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001084 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), be16_to_cpu(cqe->sl_vid));
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001085 else if ((be32_to_cpu(cqe->vlan_my_qpn) &
1086 MLX4_CQE_SVLAN_PRESENT_MASK) &&
1087 (dev->features & NETIF_F_HW_VLAN_STAG_RX))
1088 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021AD),
1089 be16_to_cpu(cqe->sl_vid));
Jiri Pirkof1b553f2011-07-20 04:54:22 +00001090
Amir Vadaiec693d42013-04-23 06:06:49 +00001091 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
1092 timestamp = mlx4_en_get_cqe_ts(cqe);
1093 mlx4_en_fill_hwtstamps(mdev, skb_hwtstamps(skb),
1094 timestamp);
1095 }
1096
Eric Dumazet868fdb02015-11-18 06:30:58 -08001097 napi_gro_receive(&cq->napi, skb);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001098next:
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001099 for (nr = 0; nr < priv->num_frags; nr++)
1100 mlx4_en_free_frag(priv, frags, nr);
1101
Brenden Blancod576acf2016-07-19 12:16:52 -07001102consumed:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001103 ++cq->mcq.cons_index;
1104 index = (cq->mcq.cons_index) & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +03001105 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Ben Hutchingsf1d29a32012-11-16 12:44:56 +00001106 if (++polled == budget)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001107 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001108 }
1109
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001110out:
Brenden Blanco326fe022016-09-03 21:29:58 -07001111 rcu_read_unlock();
Brenden Blanco9ecc2d82016-07-19 12:16:55 -07001112
Eric Dumazetdad42c32016-11-20 09:24:36 -08001113 if (polled) {
1114 if (doorbell_pending)
1115 mlx4_en_xmit_doorbell(priv->tx_ring[TX_XDP][cq->ring]);
1116
1117 mlx4_cq_set_ci(&cq->mcq);
1118 wmb(); /* ensure HW sees CQ consumer before we post new buffers */
1119 ring->cons = cq->mcq.cons_index;
1120 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001121 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
Eric Dumazetdad42c32016-11-20 09:24:36 -08001122
1123 if (mlx4_en_refill_rx_buffers(priv, ring))
1124 mlx4_en_update_rx_prod_db(ring);
1125
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001126 return polled;
1127}
1128
1129
1130void mlx4_en_rx_irq(struct mlx4_cq *mcq)
1131{
1132 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
1133 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
1134
Eric Dumazet477b35b2014-10-29 16:54:45 -07001135 if (likely(priv->port_up))
1136 napi_schedule_irqoff(&cq->napi);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001137 else
1138 mlx4_en_arm_cq(priv, cq);
1139}
1140
1141/* Rx CQ polling - called by NAPI */
1142int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
1143{
1144 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
1145 struct net_device *dev = cq->dev;
1146 struct mlx4_en_priv *priv = netdev_priv(dev);
1147 int done;
1148
1149 done = mlx4_en_process_rx_cq(dev, cq, budget);
1150
1151 /* If we used up all the quota - we're probably not done yet... */
Yuval Atias2eacc232014-05-14 12:15:10 +03001152 if (done == budget) {
Amir Vadai35f6f452014-06-29 11:54:55 +03001153 const struct cpumask *aff;
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001154 struct irq_data *idata;
1155 int cpu_curr;
Amir Vadai35f6f452014-06-29 11:54:55 +03001156
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001157 INC_PERF_COUNTER(priv->pstats.napi_quota);
Amir Vadai35f6f452014-06-29 11:54:55 +03001158
1159 cpu_curr = smp_processor_id();
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001160 idata = irq_desc_get_irq_data(cq->irq_desc);
1161 aff = irq_data_get_affinity_mask(idata);
Amir Vadai35f6f452014-06-29 11:54:55 +03001162
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001163 if (likely(cpumask_test_cpu(cpu_curr, aff)))
1164 return budget;
1165
1166 /* Current cpu is not according to smp_irq_affinity -
Eric Dumazetdad42c32016-11-20 09:24:36 -08001167 * probably affinity changed. Need to stop this NAPI
1168 * poll, and restart it on the right CPU.
1169 * Try to avoid returning a too small value (like 0),
1170 * to not fool net_rx_action() and its netdev_budget
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001171 */
Eric Dumazetdad42c32016-11-20 09:24:36 -08001172 if (done)
1173 done--;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001174 }
Eric Dumazet1a288172014-11-06 21:10:11 -08001175 /* Done for now */
Eric Dumazet2e713282016-11-15 10:15:14 -08001176 if (napi_complete_done(napi, done))
1177 mlx4_en_arm_cq(priv, cq);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001178 return done;
1179}
1180
Eric Dumazet51151a12013-06-23 08:17:56 -07001181static const int frag_sizes[] = {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001182 FRAG_SZ0,
1183 FRAG_SZ1,
1184 FRAG_SZ2,
1185 FRAG_SZ3
1186};
1187
1188void mlx4_en_calc_rx_buf(struct net_device *dev)
1189{
1190 struct mlx4_en_priv *priv = netdev_priv(dev);
Brenden Blanco47a38e12016-07-19 12:16:50 -07001191 int eff_mtu = MLX4_EN_EFF_MTU(dev->mtu);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001192 int i = 0;
1193
Brenden Blancod576acf2016-07-19 12:16:52 -07001194 /* bpf requires buffers to be set up as 1 packet per page.
1195 * This only works when num_frags == 1.
1196 */
Tariq Toukan67f8b1d2016-11-02 17:12:24 +02001197 if (priv->tx_ring_num[TX_XDP]) {
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001198 priv->frag_info[0].order = 0;
1199 priv->frag_info[0].frag_size = eff_mtu;
1200 priv->frag_info[0].frag_prefix_size = 0;
1201 /* This will gain efficient xdp frame recycling at the
1202 * expense of more costly truesize accounting
Brenden Blancod576acf2016-07-19 12:16:52 -07001203 */
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001204 priv->frag_info[0].frag_stride = PAGE_SIZE;
Eric Dumazet69ba9432017-03-08 08:17:06 -08001205 priv->dma_dir = PCI_DMA_BIDIRECTIONAL;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -08001206 priv->frag_info[0].rx_headroom = XDP_PACKET_HEADROOM;
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001207 i = 1;
1208 } else {
1209 int buf_size = 0;
Brenden Blancod576acf2016-07-19 12:16:52 -07001210
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001211 while (buf_size < eff_mtu) {
1212 priv->frag_info[i].order = MLX4_EN_ALLOC_PREFER_ORDER;
1213 priv->frag_info[i].frag_size =
1214 (eff_mtu > buf_size + frag_sizes[i]) ?
1215 frag_sizes[i] : eff_mtu - buf_size;
1216 priv->frag_info[i].frag_prefix_size = buf_size;
1217 priv->frag_info[i].frag_stride =
1218 ALIGN(priv->frag_info[i].frag_size,
1219 SMP_CACHE_BYTES);
Martin KaFai Lauea3349a2016-12-07 15:53:13 -08001220 priv->frag_info[i].rx_headroom = 0;
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001221 buf_size += priv->frag_info[i].frag_size;
1222 i++;
1223 }
Eric Dumazet69ba9432017-03-08 08:17:06 -08001224 priv->dma_dir = PCI_DMA_FROMDEVICE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001225 }
1226
1227 priv->num_frags = i;
1228 priv->rx_skb_size = eff_mtu;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001229 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001230
Joe Perches1a91de22014-05-07 12:52:57 -07001231 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
1232 eff_mtu, priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001233 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -07001234 en_err(priv,
Ido Shamay5f6e9802014-11-02 16:26:15 +02001235 " frag:%d - size:%d prefix:%d stride:%d\n",
Eric Dumazet51151a12013-06-23 08:17:56 -07001236 i,
1237 priv->frag_info[i].frag_size,
1238 priv->frag_info[i].frag_prefix_size,
Eric Dumazet51151a12013-06-23 08:17:56 -07001239 priv->frag_info[i].frag_stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001240 }
1241}
1242
1243/* RSS related functions */
1244
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001245static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
1246 struct mlx4_en_rx_ring *ring,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001247 enum mlx4_qp_state *state,
1248 struct mlx4_qp *qp)
1249{
1250 struct mlx4_en_dev *mdev = priv->mdev;
1251 struct mlx4_qp_context *context;
1252 int err = 0;
1253
Joe Perches14f8dc42013-02-07 11:46:27 +00001254 context = kmalloc(sizeof(*context), GFP_KERNEL);
1255 if (!context)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001256 return -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001257
Jiri Kosina40f22872014-05-11 15:15:12 +03001258 err = mlx4_qp_alloc(mdev->dev, qpn, qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001259 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001260 en_err(priv, "Failed to allocate qp #%x\n", qpn);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001261 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001262 }
1263 qp->event = mlx4_en_sqp_event;
1264
1265 memset(context, 0, sizeof *context);
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +00001266 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
Amir Vadai0e98b522012-04-04 21:33:24 +00001267 qpn, ring->cqn, -1, context);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001268 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001269
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001270 /* Cancel FCS removal if FW allows */
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001271 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001272 context->param3 |= cpu_to_be32(1 << 29);
Muhammad Mahajnaf0df3502015-04-02 16:31:21 +03001273 if (priv->dev->features & NETIF_F_RXFCS)
1274 ring->fcs_del = 0;
1275 else
1276 ring->fcs_del = ETH_FCS_LEN;
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001277 } else
1278 ring->fcs_del = 0;
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001279
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001280 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001281 if (err) {
1282 mlx4_qp_remove(mdev->dev, qp);
1283 mlx4_qp_free(mdev->dev, qp);
1284 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001285 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001286out:
1287 kfree(context);
1288 return err;
1289}
1290
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001291int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
1292{
1293 int err;
1294 u32 qpn;
1295
Matan Barakd57febe2014-12-11 10:57:57 +02001296 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn,
1297 MLX4_RESERVE_A0_QP);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001298 if (err) {
1299 en_err(priv, "Failed reserving drop qpn\n");
1300 return err;
1301 }
Jiri Kosina40f22872014-05-11 15:15:12 +03001302 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp, GFP_KERNEL);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001303 if (err) {
1304 en_err(priv, "Failed allocating drop qp\n");
1305 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1306 return err;
1307 }
1308
1309 return 0;
1310}
1311
1312void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
1313{
1314 u32 qpn;
1315
1316 qpn = priv->drop_qp.qpn;
1317 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
1318 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
1319 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1320}
1321
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001322/* Allocate rx qp's and configure them according to rss map */
1323int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
1324{
1325 struct mlx4_en_dev *mdev = priv->mdev;
1326 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1327 struct mlx4_qp_context context;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001328 struct mlx4_rss_context *rss_context;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001329 int rss_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001330 void *ptr;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001331 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
Or Gerlitz1202d462011-11-26 19:55:02 +00001332 MLX4_RSS_TCP_IPV6);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001333 int i, qpn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001334 int err = 0;
1335 int good_qps = 0;
1336
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001337 en_dbg(DRV, priv, "Configuring rss steering\n");
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001338 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
1339 priv->rx_ring_num,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02001340 &rss_map->base_qpn, 0);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001341 if (err) {
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001342 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001343 return err;
1344 }
1345
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001346 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001347 qpn = rss_map->base_qpn + i;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001348 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001349 &rss_map->state[i],
1350 &rss_map->qps[i]);
1351 if (err)
1352 goto rss_err;
1353
1354 ++good_qps;
1355 }
1356
1357 /* Configure RSS indirection qp */
Jiri Kosina40f22872014-05-11 15:15:12 +03001358 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, &rss_map->indir_qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001359 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001360 en_err(priv, "Failed to allocate RSS indirection QP\n");
Yevgeny Petrilin16792002011-03-22 22:38:31 +00001361 goto rss_err;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001362 }
1363 rss_map->indir_qp.event = mlx4_en_sqp_event;
1364 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001365 priv->rx_ring[0]->cqn, -1, &context);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001366
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001367 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1368 rss_rings = priv->rx_ring_num;
1369 else
1370 rss_rings = priv->prof->rss_rings;
1371
Or Gerlitz876f6e62011-11-26 19:54:58 +00001372 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
1373 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
Joe Perches43d620c2011-06-16 19:08:06 +00001374 rss_context = ptr;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001375 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001376 (rss_map->base_qpn));
Yevgeny Petrilin89efea22011-12-19 21:53:38 +00001377 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
Or Gerlitz1202d462011-11-26 19:55:02 +00001378 if (priv->mdev->profile.udp_rss) {
1379 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
1380 rss_context->base_qpn_udp = rss_context->default_qpn;
1381 }
Or Gerlitz837052d2013-12-23 16:09:44 +02001382
1383 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1384 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
1385 rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
1386 }
1387
Yevgeny Petrilin05339432010-08-24 03:46:42 +00001388 rss_context->flags = rss_mask;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001389 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
Eyal Perry947cbb02014-12-02 18:12:11 +02001390 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
1391 rss_context->hash_fn = MLX4_RSS_HASH_XOR;
1392 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
1393 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1394 memcpy(rss_context->rss_key, priv->rss_key,
1395 MLX4_EN_RSS_KEY_SIZE);
Eyal Perry947cbb02014-12-02 18:12:11 +02001396 } else {
1397 en_err(priv, "Unknown RSS hash function requested\n");
1398 err = -EINVAL;
1399 goto indir_err;
1400 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001401 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
1402 &rss_map->indir_qp, &rss_map->indir_state);
1403 if (err)
1404 goto indir_err;
1405
1406 return 0;
1407
1408indir_err:
1409 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1410 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1411 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1412 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001413rss_err:
1414 for (i = 0; i < good_qps; i++) {
1415 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1416 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1417 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1418 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1419 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001420 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001421 return err;
1422}
1423
1424void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
1425{
1426 struct mlx4_en_dev *mdev = priv->mdev;
1427 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1428 int i;
1429
1430 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1431 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1432 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1433 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001434
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001435 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001436 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1437 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1438 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1439 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1440 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001441 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001442}