blob: 069ea09185fb0669d5c1f9b1b88f517b2d69c5ed [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,
Eric Dumazetb5a54d92017-03-08 08:17:12 -080056 gfp_t gfp)
Eric Dumazet51151a12013-06-23 08:17:56 -070057{
Eric Dumazet51151a12013-06-23 08:17:56 -070058 struct page *page;
59 dma_addr_t dma;
60
Eric Dumazetb5a54d92017-03-08 08:17:12 -080061 page = alloc_page(gfp);
62 if (unlikely(!page))
63 return -ENOMEM;
64 dma = dma_map_page(priv->ddev, page, 0, PAGE_SIZE, priv->dma_dir);
Tariq Toukande3d6fa2016-09-20 14:39:39 +030065 if (unlikely(dma_mapping_error(priv->ddev, dma))) {
Eric Dumazet51151a12013-06-23 08:17:56 -070066 put_page(page);
67 return -ENOMEM;
68 }
Eric Dumazet51151a12013-06-23 08:17:56 -070069 page_alloc->page = page;
70 page_alloc->dma = dma;
Ido Shamay5f6e9802014-11-02 16:26:15 +020071 page_alloc->page_offset = 0;
Eric Dumazet51151a12013-06-23 08:17:56 -070072 /* Not doing get_page() for each frag is a big win
Eric Dumazet98226202014-10-10 04:48:17 -070073 * on asymetric workloads. Note we can not use atomic_set().
Eric Dumazet51151a12013-06-23 08:17:56 -070074 */
Eric Dumazetb5a54d92017-03-08 08:17:12 -080075 page_ref_add(page, PAGE_SIZE / frag_info->frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -070076 return 0;
77}
78
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000079static int mlx4_en_alloc_frags(struct mlx4_en_priv *priv,
80 struct mlx4_en_rx_desc *rx_desc,
81 struct mlx4_en_rx_alloc *frags,
Eric Dumazet51151a12013-06-23 08:17:56 -070082 struct mlx4_en_rx_alloc *ring_alloc,
83 gfp_t gfp)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000084{
85 struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
Eric Dumazet51151a12013-06-23 08:17:56 -070086 const struct mlx4_en_frag_info *frag_info;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000087 struct page *page;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000088 int i;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070089
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000090 for (i = 0; i < priv->num_frags; i++) {
91 frag_info = &priv->frag_info[i];
Eric Dumazet51151a12013-06-23 08:17:56 -070092 page_alloc[i] = ring_alloc[i];
Amir Vadai70fbe072013-10-07 13:38:12 +020093 page_alloc[i].page_offset += frag_info->frag_stride;
94
95 if (page_alloc[i].page_offset + frag_info->frag_stride <=
Eric Dumazetb5a54d92017-03-08 08:17:12 -080096 PAGE_SIZE)
Eric Dumazet51151a12013-06-23 08:17:56 -070097 continue;
Amir Vadai70fbe072013-10-07 13:38:12 +020098
Tariq Toukande3d6fa2016-09-20 14:39:39 +030099 if (unlikely(mlx4_alloc_pages(priv, &page_alloc[i],
100 frag_info, gfp)))
Eric Dumazet51151a12013-06-23 08:17:56 -0700101 goto out;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000102 }
103
104 for (i = 0; i < priv->num_frags; i++) {
105 frags[i] = ring_alloc[i];
Eric Dumazetd85f6c12017-03-08 08:17:09 -0800106 frags[i].page_offset += priv->rx_headroom;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800107 rx_desc->data[i].addr = cpu_to_be64(frags[i].dma +
108 frags[i].page_offset);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000109 ring_alloc[i] = page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000110 }
111
112 return 0;
113
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000114out:
115 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700116 if (page_alloc[i].page != ring_alloc[i].page) {
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000117 dma_unmap_page(priv->ddev, page_alloc[i].dma,
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800118 PAGE_SIZE, priv->dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700119 page = page_alloc[i].page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300120 /* Revert changes done by mlx4_alloc_pages */
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800121 page_ref_sub(page, PAGE_SIZE /
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300122 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700123 put_page(page);
124 }
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000125 }
126 return -ENOMEM;
127}
128
129static void mlx4_en_free_frag(struct mlx4_en_priv *priv,
130 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700131 int i)
132{
Eric Dumazet51151a12013-06-23 08:17:56 -0700133 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Amir Vadai021f1102013-10-07 13:38:13 +0200134 u32 next_frag_end = frags[i].page_offset + 2 * frag_info->frag_stride;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700135
Amir Vadai021f1102013-10-07 13:38:13 +0200136
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800137 if (next_frag_end > PAGE_SIZE)
138 dma_unmap_page(priv->ddev, frags[i].dma, PAGE_SIZE,
Eric Dumazet69ba9432017-03-08 08:17:06 -0800139 priv->dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700140
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000141 if (frags[i].page)
142 put_page(frags[i].page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700143}
144
145static int mlx4_en_init_allocator(struct mlx4_en_priv *priv,
146 struct mlx4_en_rx_ring *ring)
147{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700148 int i;
Eric Dumazet51151a12013-06-23 08:17:56 -0700149 struct mlx4_en_rx_alloc *page_alloc;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700150
151 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700152 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700153
Eric Dumazet51151a12013-06-23 08:17:56 -0700154 if (mlx4_alloc_pages(priv, &ring->page_alloc[i],
Ido Shamay1ab25f82014-11-02 16:26:16 +0200155 frag_info, GFP_KERNEL | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000156 goto out;
Ido Shamayb110d2c2015-02-03 17:57:19 +0200157
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800158 en_dbg(DRV, priv, " frag %d allocator: - frags:%d\n",
159 i, page_ref_count(ring->page_alloc[i].page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700160 }
161 return 0;
162
163out:
164 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700165 struct page *page;
166
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700167 page_alloc = &ring->page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000168 dma_unmap_page(priv->ddev, page_alloc->dma,
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800169 PAGE_SIZE, priv->dma_dir);
Eric Dumazet51151a12013-06-23 08:17:56 -0700170 page = page_alloc->page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300171 /* Revert changes done by mlx4_alloc_pages */
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800172 page_ref_sub(page, PAGE_SIZE /
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300173 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700174 put_page(page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700175 page_alloc->page = NULL;
176 }
177 return -ENOMEM;
178}
179
180static void mlx4_en_destroy_allocator(struct mlx4_en_priv *priv,
181 struct mlx4_en_rx_ring *ring)
182{
183 struct mlx4_en_rx_alloc *page_alloc;
184 int i;
185
186 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700187 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
188
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700189 page_alloc = &ring->page_alloc[i];
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000190 en_dbg(DRV, priv, "Freeing allocator:%d count:%d\n",
191 i, page_count(page_alloc->page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700192
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000193 dma_unmap_page(priv->ddev, page_alloc->dma,
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800194 PAGE_SIZE, priv->dma_dir);
Amir Vadai70fbe072013-10-07 13:38:12 +0200195 while (page_alloc->page_offset + frag_info->frag_stride <
Eric Dumazetb5a54d92017-03-08 08:17:12 -0800196 PAGE_SIZE) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700197 put_page(page_alloc->page);
Amir Vadai70fbe072013-10-07 13:38:12 +0200198 page_alloc->page_offset += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700199 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700200 page_alloc->page = NULL;
201 }
202}
203
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700204static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv,
205 struct mlx4_en_rx_ring *ring, int index)
206{
207 struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700208 int possible_frags;
209 int i;
210
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700211 /* Set size and memtype fields */
212 for (i = 0; i < priv->num_frags; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700213 rx_desc->data[i].byte_count =
214 cpu_to_be32(priv->frag_info[i].frag_size);
215 rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
216 }
217
218 /* If the number of used fragments does not fill up the ring stride,
219 * remaining (unused) fragments must be padded with null address/size
220 * and a special memory key */
221 possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
222 for (i = priv->num_frags; i < possible_frags; i++) {
223 rx_desc->data[i].byte_count = 0;
224 rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
225 rx_desc->data[i].addr = 0;
226 }
227}
228
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700229static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
Eric Dumazet51151a12013-06-23 08:17:56 -0700230 struct mlx4_en_rx_ring *ring, int index,
231 gfp_t gfp)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700232{
233 struct mlx4_en_rx_desc *rx_desc = ring->buf + (index * ring->stride);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000234 struct mlx4_en_rx_alloc *frags = ring->rx_info +
235 (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700236
Brenden Blancod576acf2016-07-19 12:16:52 -0700237 if (ring->page_cache.index > 0) {
Eric Dumazetacd76282017-03-08 08:17:10 -0800238 ring->page_cache.index--;
239 frags[0].page = ring->page_cache.buf[ring->page_cache.index].page;
240 frags[0].dma = ring->page_cache.buf[ring->page_cache.index].dma;
241 frags[0].page_offset = XDP_PACKET_HEADROOM;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800242 rx_desc->data[0].addr = cpu_to_be64(frags[0].dma +
243 frags[0].page_offset);
Brenden Blancod576acf2016-07-19 12:16:52 -0700244 return 0;
245 }
246
Eric Dumazet51151a12013-06-23 08:17:56 -0700247 return mlx4_en_alloc_frags(priv, rx_desc, frags, ring->page_alloc, gfp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700248}
249
Ido Shamay07841f92015-04-30 17:32:46 +0300250static inline bool mlx4_en_is_ring_empty(struct mlx4_en_rx_ring *ring)
251{
Ido Shamay07841f92015-04-30 17:32:46 +0300252 return ring->prod == ring->cons;
253}
254
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700255static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
256{
257 *ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
258}
259
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000260static void mlx4_en_free_rx_desc(struct mlx4_en_priv *priv,
261 struct mlx4_en_rx_ring *ring,
262 int index)
263{
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000264 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000265 int nr;
266
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000267 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000268 for (nr = 0; nr < priv->num_frags; nr++) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000269 en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000270 mlx4_en_free_frag(priv, frags, nr);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000271 }
272}
273
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700274static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
275{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700276 struct mlx4_en_rx_ring *ring;
277 int ring_ind;
278 int buf_ind;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000279 int new_size;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700280
281 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
282 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200283 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700284
285 if (mlx4_en_prepare_rx_desc(priv, ring,
Eric Dumazet51151a12013-06-23 08:17:56 -0700286 ring->actual_size,
Ido Shamay1ab25f82014-11-02 16:26:16 +0200287 GFP_KERNEL | __GFP_COLD)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700288 if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
Joe Perches1a91de22014-05-07 12:52:57 -0700289 en_err(priv, "Failed to allocate enough rx buffers\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700290 return -ENOMEM;
291 } else {
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000292 new_size = rounddown_pow_of_two(ring->actual_size);
Joe Perches1a91de22014-05-07 12:52:57 -0700293 en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000294 ring->actual_size, new_size);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000295 goto reduce_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700296 }
297 }
298 ring->actual_size++;
299 ring->prod++;
300 }
301 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000302 return 0;
303
304reduce_rings:
305 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200306 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000307 while (ring->actual_size > new_size) {
308 ring->actual_size--;
309 ring->prod--;
310 mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
311 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000312 }
313
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700314 return 0;
315}
316
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700317static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
318 struct mlx4_en_rx_ring *ring)
319{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700320 int index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700321
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000322 en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
323 ring->cons, ring->prod);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700324
325 /* Unmap and free Rx buffers */
Ido Shamay07841f92015-04-30 17:32:46 +0300326 while (!mlx4_en_is_ring_empty(ring)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700327 index = ring->cons & ring->size_mask;
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000328 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000329 mlx4_en_free_rx_desc(priv, ring, index);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700330 ++ring->cons;
331 }
332}
333
Ido Shamay02512482014-02-21 12:39:17 +0200334void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
335{
336 int i;
337 int num_of_eqs;
Ido Shamaybb2146b2014-02-21 12:39:18 +0200338 int num_rx_rings;
Ido Shamay02512482014-02-21 12:39:17 +0200339 struct mlx4_dev *dev = mdev->dev;
340
341 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
Matan Barakc66fa192015-05-31 09:30:16 +0300342 num_of_eqs = max_t(int, MIN_RX_RINGS,
343 min_t(int,
344 mlx4_get_eqs_per_port(mdev->dev, i),
345 DEF_RX_RINGS));
Ido Shamay02512482014-02-21 12:39:17 +0200346
Amir Vadaiea1c1af2014-07-22 15:44:12 +0300347 num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
348 min_t(int, num_of_eqs,
349 netif_get_num_default_rss_queues());
Ido Shamay02512482014-02-21 12:39:17 +0200350 mdev->profile.prof[i].rx_ring_num =
Ido Shamaybb2146b2014-02-21 12:39:18 +0200351 rounddown_pow_of_two(num_rx_rings);
Ido Shamay02512482014-02-21 12:39:17 +0200352 }
353}
354
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700355int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200356 struct mlx4_en_rx_ring **pring,
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200357 u32 size, u16 stride, int node)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700358{
359 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200360 struct mlx4_en_rx_ring *ring;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000361 int err = -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700362 int tmp;
363
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200364 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200365 if (!ring) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200366 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
367 if (!ring) {
368 en_err(priv, "Failed to allocate RX ring structure\n");
369 return -ENOMEM;
370 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200371 }
372
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700373 ring->prod = 0;
374 ring->cons = 0;
375 ring->size = size;
376 ring->size_mask = size - 1;
377 ring->stride = stride;
378 ring->log_stride = ffs(ring->stride) - 1;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700379 ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700380
381 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000382 sizeof(struct mlx4_en_rx_alloc));
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200383 ring->rx_info = vmalloc_node(tmp, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200384 if (!ring->rx_info) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200385 ring->rx_info = vmalloc(tmp);
386 if (!ring->rx_info) {
387 err = -ENOMEM;
388 goto err_ring;
389 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200390 }
Joe Perchese404dec2012-01-29 12:56:23 +0000391
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000392 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700393 ring->rx_info, tmp);
394
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200395 /* Allocate HW buffers on provided NUMA node */
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200396 set_dev_node(&mdev->dev->persist->pdev->dev, node);
Haggai Abramovsky73898db2016-05-04 14:50:15 +0300397 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200398 set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700399 if (err)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200400 goto err_info;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700401
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700402 ring->buf = ring->wqres.buf.direct.buf;
403
Amir Vadaiec693d42013-04-23 06:06:49 +0000404 ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter;
405
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200406 *pring = ring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700407 return 0;
408
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200409err_info:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700410 vfree(ring->rx_info);
411 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200412err_ring:
413 kfree(ring);
414 *pring = NULL;
415
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700416 return err;
417}
418
419int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
420{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700421 struct mlx4_en_rx_ring *ring;
422 int i;
423 int ring_ind;
424 int err;
425 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
426 DS_SIZE * priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700427
428 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200429 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700430
431 ring->prod = 0;
432 ring->cons = 0;
433 ring->actual_size = 0;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200434 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700435
436 ring->stride = stride;
Eugenia Emantayev6496bbf2016-12-29 18:37:10 +0200437 if (ring->stride <= TXBB_SIZE) {
438 /* Stamp first unused send wqe */
439 __be32 *ptr = (__be32 *)ring->buf;
440 __be32 stamp = cpu_to_be32(1 << STAMP_SHIFT);
441 *ptr = stamp;
442 /* Move pointer to start of rx section */
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700443 ring->buf += TXBB_SIZE;
Eugenia Emantayev6496bbf2016-12-29 18:37:10 +0200444 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700445
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700446 ring->log_stride = ffs(ring->stride) - 1;
447 ring->buf_size = ring->size * ring->stride;
448
449 memset(ring->buf, 0, ring->buf_size);
450 mlx4_en_update_rx_prod_db(ring);
451
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000452 /* Initialize all descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700453 for (i = 0; i < ring->size; i++)
454 mlx4_en_init_rx_desc(priv, ring, i);
455
456 /* Initialize page allocators */
457 err = mlx4_en_init_allocator(priv, ring);
458 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000459 en_err(priv, "Failed initializing ring allocator\n");
Yevgeny Petrilin60b18092011-04-06 23:25:45 +0000460 if (ring->stride <= TXBB_SIZE)
461 ring->buf -= TXBB_SIZE;
Yevgeny Petrilin9a4f92a2009-04-20 04:24:28 +0000462 ring_ind--;
463 goto err_allocator;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700464 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700465 }
Ingo Molnarb58515b2008-11-25 16:53:32 -0800466 err = mlx4_en_fill_rx_buffers(priv);
467 if (err)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700468 goto err_buffers;
469
470 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200471 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700472
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +0000473 ring->size_mask = ring->actual_size - 1;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700474 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700475 }
476
477 return 0;
478
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700479err_buffers:
480 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200481 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700482
483 ring_ind = priv->rx_ring_num - 1;
484err_allocator:
485 while (ring_ind >= 0) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200486 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
487 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
488 mlx4_en_destroy_allocator(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700489 ring_ind--;
490 }
491 return err;
492}
493
Ido Shamay07841f92015-04-30 17:32:46 +0300494/* We recover from out of memory by scheduling our napi poll
495 * function (mlx4_en_process_cq), which tries to allocate
496 * all missing RX buffers (call to mlx4_en_refill_rx_buffers).
497 */
498void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv)
499{
500 int ring;
501
502 if (!priv->port_up)
503 return;
504
505 for (ring = 0; ring < priv->rx_ring_num; ring++) {
Benjamin Poirierbd4ce942017-02-06 10:14:31 -0800506 if (mlx4_en_is_ring_empty(priv->rx_ring[ring])) {
507 local_bh_disable();
Ido Shamay07841f92015-04-30 17:32:46 +0300508 napi_reschedule(&priv->rx_cq[ring]->napi);
Benjamin Poirierbd4ce942017-02-06 10:14:31 -0800509 local_bh_enable();
510 }
Ido Shamay07841f92015-04-30 17:32:46 +0300511 }
512}
513
Brenden Blancod576acf2016-07-19 12:16:52 -0700514/* When the rx ring is running in page-per-packet mode, a released frame can go
515 * directly into a small cache, to avoid unmapping or touching the page
516 * allocator. In bpf prog performance scenarios, buffers are either forwarded
517 * or dropped, never converted to skbs, so every page can come directly from
518 * this cache when it is sized to be a multiple of the napi budget.
519 */
520bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring,
521 struct mlx4_en_rx_alloc *frame)
522{
523 struct mlx4_en_page_cache *cache = &ring->page_cache;
524
525 if (cache->index >= MLX4_EN_CACHE_SIZE)
526 return false;
527
Eric Dumazetacd76282017-03-08 08:17:10 -0800528 cache->buf[cache->index].page = frame->page;
529 cache->buf[cache->index].dma = frame->dma;
530 cache->index++;
Brenden Blancod576acf2016-07-19 12:16:52 -0700531 return true;
532}
533
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700534void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200535 struct mlx4_en_rx_ring **pring,
536 u32 size, u16 stride)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700537{
538 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200539 struct mlx4_en_rx_ring *ring = *pring;
Brenden Blancocb7386d2016-07-20 17:22:33 -0700540 struct bpf_prog *old_prog;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700541
Brenden Blanco326fe022016-09-03 21:29:58 -0700542 old_prog = rcu_dereference_protected(
543 ring->xdp_prog,
544 lockdep_is_held(&mdev->state_lock));
Brenden Blancocb7386d2016-07-20 17:22:33 -0700545 if (old_prog)
546 bpf_prog_put(old_prog);
Thadeu Lima de Souza Cascardo68355f72012-02-06 08:39:49 +0000547 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700548 vfree(ring->rx_info);
549 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200550 kfree(ring);
551 *pring = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700552}
553
554void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
555 struct mlx4_en_rx_ring *ring)
556{
Brenden Blancod576acf2016-07-19 12:16:52 -0700557 int i;
558
559 for (i = 0; i < ring->page_cache.index; i++) {
Eric Dumazetacd76282017-03-08 08:17:10 -0800560 dma_unmap_page(priv->ddev, ring->page_cache.buf[i].dma,
561 PAGE_SIZE, priv->dma_dir);
562 put_page(ring->page_cache.buf[i].page);
Brenden Blancod576acf2016-07-19 12:16:52 -0700563 }
564 ring->page_cache.index = 0;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700565 mlx4_en_free_rx_buf(priv, ring);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700566 if (ring->stride <= TXBB_SIZE)
567 ring->buf -= TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700568 mlx4_en_destroy_allocator(priv, ring);
569}
570
571
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700572static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
573 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000574 struct mlx4_en_rx_alloc *frags,
Eric Dumazet90278c92011-10-19 18:49:52 +0000575 struct sk_buff *skb,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700576 int length)
577{
Eric Dumazet90278c92011-10-19 18:49:52 +0000578 struct skb_frag_struct *skb_frags_rx = skb_shinfo(skb)->frags;
Eric Dumazetaaca1212017-03-08 08:17:08 -0800579 struct mlx4_en_frag_info *frag_info = priv->frag_info;
580 int nr, frag_size;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700581 dma_addr_t dma;
582
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000583 /* Collect used fragments while replacing them in the HW descriptors */
Eric Dumazetaaca1212017-03-08 08:17:08 -0800584 for (nr = 0;;) {
585 frag_size = min_t(int, length, frag_info->frag_size);
586
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300587 if (unlikely(!frags[nr].page))
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700588 goto fail;
589
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000590 dma = be64_to_cpu(rx_desc->data[nr].addr);
591 dma_sync_single_for_cpu(priv->ddev, dma, frag_info->frag_size,
592 DMA_FROM_DEVICE);
593
Eric Dumazet7f0137e2017-02-23 12:02:45 +0200594 __skb_fill_page_desc(skb, nr, frags[nr].page,
595 frags[nr].page_offset,
Eric Dumazetaaca1212017-03-08 08:17:08 -0800596 frag_size);
Eric Dumazet7f0137e2017-02-23 12:02:45 +0200597
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000598 skb->truesize += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700599 frags[nr].page = NULL;
Eric Dumazetaaca1212017-03-08 08:17:08 -0800600 nr++;
601 length -= frag_size;
602 if (!length)
603 break;
604 frag_info++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700605 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700606 return nr;
607
608fail:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700609 while (nr > 0) {
610 nr--;
Ian Campbell311761c2011-10-19 23:01:45 +0000611 __skb_frag_unref(&skb_frags_rx[nr]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700612 }
613 return 0;
614}
615
616
617static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv,
618 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000619 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700620 unsigned int length)
621{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700622 struct sk_buff *skb;
623 void *va;
624 int used_frags;
625 dma_addr_t dma;
626
Pradeep A Dalvic056b732012-02-05 02:50:38 +0000627 skb = netdev_alloc_skb(priv->dev, SMALL_PACKET_SIZE + NET_IP_ALIGN);
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300628 if (unlikely(!skb)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000629 en_dbg(RX_ERR, priv, "Failed allocating skb\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700630 return NULL;
631 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700632 skb_reserve(skb, NET_IP_ALIGN);
633 skb->len = length;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700634
635 /* Get pointer to first fragment so we could copy the headers into the
636 * (linear part of the) skb */
Amir Vadai70fbe072013-10-07 13:38:12 +0200637 va = page_address(frags[0].page) + frags[0].page_offset;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700638
639 if (length <= SMALL_PACKET_SIZE) {
640 /* We are copying all relevant data to the skb - temporarily
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000641 * sync buffers for the copy */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700642 dma = be64_to_cpu(rx_desc->data[0].addr);
Yevgeny Petrilinebf8c9a2012-03-06 04:03:34 +0000643 dma_sync_single_for_cpu(priv->ddev, dma, length,
FUJITA Tomonorie4fc8562010-02-04 18:57:42 +0000644 DMA_FROM_DEVICE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700645 skb_copy_to_linear_data(skb, va, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700646 skb->tail += length;
647 } else {
Eric Dumazetcfecec52014-09-05 18:29:45 -0700648 unsigned int pull_len;
649
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700650 /* Move relevant fragments to skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000651 used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, frags,
652 skb, length);
Yevgeny Petrilin785a09822009-04-26 20:42:57 +0000653 if (unlikely(!used_frags)) {
654 kfree_skb(skb);
655 return NULL;
656 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700657 skb_shinfo(skb)->nr_frags = used_frags;
658
Eric Dumazetcfecec52014-09-05 18:29:45 -0700659 pull_len = eth_get_headlen(va, SMALL_PACKET_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700660 /* Copy headers into the skb linear buffer */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700661 memcpy(skb->data, va, pull_len);
662 skb->tail += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700663
664 /* Skip headers in first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700665 skb_shinfo(skb)->frags[0].page_offset += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700666
667 /* Adjust size of first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700668 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], pull_len);
669 skb->data_len = length - pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700670 }
671 return skb;
672}
673
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000674static void validate_loopback(struct mlx4_en_priv *priv, struct sk_buff *skb)
675{
676 int i;
677 int offset = ETH_HLEN;
678
679 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++, offset++) {
680 if (*(skb->data + offset) != (unsigned char) (i & 0xff))
681 goto out_loopback;
682 }
683 /* Loopback found */
684 priv->loopback_ok = 1;
685
686out_loopback:
687 dev_kfree_skb_any(skb);
688}
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700689
Eric Dumazetdad42c32016-11-20 09:24:36 -0800690static bool mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
691 struct mlx4_en_rx_ring *ring)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000692{
Eric Dumazetdad42c32016-11-20 09:24:36 -0800693 u32 missing = ring->actual_size - (ring->prod - ring->cons);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000694
Eric Dumazetdad42c32016-11-20 09:24:36 -0800695 /* Try to batch allocations, but not too much. */
696 if (missing < 8)
697 return false;
698 do {
699 if (mlx4_en_prepare_rx_desc(priv, ring,
700 ring->prod & ring->size_mask,
Eric Dumazetdceeab02017-01-17 20:14:10 -0800701 GFP_ATOMIC | __GFP_COLD |
702 __GFP_MEMALLOC))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000703 break;
704 ring->prod++;
Eric Dumazetdad42c32016-11-20 09:24:36 -0800705 } while (--missing);
706
707 return true;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000708}
709
Shani Michaelif8c64552014-11-09 13:51:53 +0200710/* When hardware doesn't strip the vlan, we need to calculate the checksum
711 * over it and add it to the hardware's checksum calculation
712 */
713static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
714 struct vlan_hdr *vlanh)
715{
716 return csum_add(hw_checksum, *(__wsum *)vlanh);
717}
718
719/* Although the stack expects checksum which doesn't include the pseudo
720 * header, the HW adds it. To address that, we are subtracting the pseudo
721 * header checksum from the checksum value provided by the HW.
722 */
723static void get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
724 struct iphdr *iph)
725{
726 __u16 length_for_csum = 0;
727 __wsum csum_pseudo_header = 0;
728
729 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
730 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
731 length_for_csum, iph->protocol, 0);
732 skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
733}
734
735#if IS_ENABLED(CONFIG_IPV6)
736/* In IPv6 packets, besides subtracting the pseudo header checksum,
737 * we also compute/add the IP header checksum which
738 * is not added by the HW.
739 */
740static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
741 struct ipv6hdr *ipv6h)
742{
743 __wsum csum_pseudo_hdr = 0;
744
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300745 if (unlikely(ipv6h->nexthdr == IPPROTO_FRAGMENT ||
746 ipv6h->nexthdr == IPPROTO_HOPOPTS))
Shani Michaelif8c64552014-11-09 13:51:53 +0200747 return -1;
Daniel Jurgens82d69202016-05-04 15:00:33 +0300748 hw_checksum = csum_add(hw_checksum, (__force __wsum)htons(ipv6h->nexthdr));
Shani Michaelif8c64552014-11-09 13:51:53 +0200749
750 csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
751 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
752 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
753 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ntohs(ipv6h->nexthdr));
754
755 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
756 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
757 return 0;
758}
759#endif
760static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
Ido Shamay79a25852015-06-25 11:29:43 +0300761 netdev_features_t dev_features)
Shani Michaelif8c64552014-11-09 13:51:53 +0200762{
763 __wsum hw_checksum = 0;
764
765 void *hdr = (u8 *)va + sizeof(struct ethhdr);
766
767 hw_checksum = csum_unfold((__force __sum16)cqe->checksum);
768
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300769 if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) &&
Ido Shamay79a25852015-06-25 11:29:43 +0300770 !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200771 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
772 hdr += sizeof(struct vlan_hdr);
773 }
774
775 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
776 get_fixed_ipv4_csum(hw_checksum, skb, hdr);
777#if IS_ENABLED(CONFIG_IPV6)
778 else if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300779 if (unlikely(get_fixed_ipv6_csum(hw_checksum, skb, hdr)))
Shani Michaelif8c64552014-11-09 13:51:53 +0200780 return -1;
781#endif
782 return 0;
783}
784
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700785int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
786{
787 struct mlx4_en_priv *priv = netdev_priv(dev);
Amir Vadaiec693d42013-04-23 06:06:49 +0000788 struct mlx4_en_dev *mdev = priv->mdev;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700789 struct mlx4_cqe *cqe;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200790 struct mlx4_en_rx_ring *ring = priv->rx_ring[cq->ring];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000791 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700792 struct mlx4_en_rx_desc *rx_desc;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700793 struct bpf_prog *xdp_prog;
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700794 int doorbell_pending;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700795 struct sk_buff *skb;
796 int index;
797 int nr;
798 unsigned int length;
799 int polled = 0;
800 int ip_summed;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000801 int factor = priv->cqe_factor;
Amir Vadaiec693d42013-04-23 06:06:49 +0000802 u64 timestamp;
Or Gerlitz837052d2013-12-23 16:09:44 +0200803 bool l2_tunnel;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700804
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300805 if (unlikely(!priv->port_up))
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700806 return 0;
807
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300808 if (unlikely(budget <= 0))
Eric W. Biederman38be0a32014-03-14 18:05:58 -0700809 return polled;
810
Brenden Blanco326fe022016-09-03 21:29:58 -0700811 /* Protect accesses to: ring->xdp_prog, priv->mac_hash list */
812 rcu_read_lock();
813 xdp_prog = rcu_dereference(ring->xdp_prog);
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700814 doorbell_pending = 0;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700815
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700816 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
817 * descriptor offset can be deduced from the CQE index instead of
818 * reading 'cqe->index' */
819 index = cq->mcq.cons_index & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +0300820 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700821
822 /* Process all completed CQEs */
823 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
824 cq->mcq.cons_index & cq->size)) {
825
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000826 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700827 rx_desc = ring->buf + (index << ring->log_stride);
828
829 /*
830 * make sure we read the CQE after we read the ownership bit
831 */
Alexander Duyck12b33752015-04-08 18:49:36 -0700832 dma_rmb();
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700833
834 /* Drop packet on bad receive or bad checksum */
835 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
836 MLX4_CQE_OPCODE_ERROR)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700837 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
838 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
839 ((struct mlx4_err_cqe *)cqe)->syndrome);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700840 goto next;
841 }
842 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000843 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700844 goto next;
845 }
846
Yan Burman79aeacc2013-02-07 02:25:19 +0000847 /* Check if we need to drop the packet if SRIOV is not enabled
848 * and not performing the selftest or flb disabled
849 */
850 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
851 struct ethhdr *ethh;
852 dma_addr_t dma;
Yan Burman79aeacc2013-02-07 02:25:19 +0000853 /* Get pointer to first fragment since we haven't
854 * skb yet and cast it to ethhdr struct
855 */
856 dma = be64_to_cpu(rx_desc->data[0].addr);
857 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
858 DMA_FROM_DEVICE);
859 ethh = (struct ethhdr *)(page_address(frags[0].page) +
Amir Vadai70fbe072013-10-07 13:38:12 +0200860 frags[0].page_offset);
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000861
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000862 if (is_multicast_ether_addr(ethh->h_dest)) {
863 struct mlx4_mac_entry *entry;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000864 struct hlist_head *bucket;
865 unsigned int mac_hash;
866
867 /* Drop the packet, since HW loopback-ed it */
868 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
869 bucket = &priv->mac_hash[mac_hash];
Sasha Levinb67bfe02013-02-27 17:06:00 -0800870 hlist_for_each_entry_rcu(entry, bucket, hlist) {
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000871 if (ether_addr_equal_64bits(entry->mac,
Brenden Blanco326fe022016-09-03 21:29:58 -0700872 ethh->h_source))
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000873 goto next;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000874 }
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000875 }
Yan Burman79aeacc2013-02-07 02:25:19 +0000876 }
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000877
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700878 /*
879 * Packet is OK - process it.
880 */
881 length = be32_to_cpu(cqe->byte_cnt);
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -0500882 length -= ring->fcs_del;
Or Gerlitz837052d2013-12-23 16:09:44 +0200883 l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
884 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700885
Brenden Blanco47a38e12016-07-19 12:16:50 -0700886 /* A bpf program gets first chance to drop the packet. It may
887 * read bytes but not past the end of the frag.
888 */
889 if (xdp_prog) {
890 struct xdp_buff xdp;
891 dma_addr_t dma;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800892 void *orig_data;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700893 u32 act;
894
895 dma = be64_to_cpu(rx_desc->data[0].addr);
896 dma_sync_single_for_cpu(priv->ddev, dma,
897 priv->frag_info[0].frag_size,
898 DMA_FROM_DEVICE);
899
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800900 xdp.data_hard_start = page_address(frags[0].page);
901 xdp.data = xdp.data_hard_start + frags[0].page_offset;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700902 xdp.data_end = xdp.data + length;
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800903 orig_data = xdp.data;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700904
905 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Martin KaFai Lauea3349a2016-12-07 15:53:13 -0800906
907 if (xdp.data != orig_data) {
908 length = xdp.data_end - xdp.data;
909 frags[0].page_offset = xdp.data -
910 xdp.data_hard_start;
911 }
912
Brenden Blanco47a38e12016-07-19 12:16:50 -0700913 switch (act) {
914 case XDP_PASS:
915 break;
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700916 case XDP_TX:
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200917 if (likely(!mlx4_en_xmit_frame(ring, frags, dev,
Tariq Toukan67f8b1d2016-11-02 17:12:24 +0200918 length, cq->ring,
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300919 &doorbell_pending)))
Brenden Blanco9ecc2d82016-07-19 12:16:55 -0700920 goto consumed;
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100921 trace_xdp_exception(dev, xdp_prog, act);
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200922 goto xdp_drop_no_cnt; /* Drop on xmit failure */
Brenden Blanco47a38e12016-07-19 12:16:50 -0700923 default:
924 bpf_warn_invalid_xdp_action(act);
925 case XDP_ABORTED:
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100926 trace_xdp_exception(dev, xdp_prog, act);
Brenden Blanco47a38e12016-07-19 12:16:50 -0700927 case XDP_DROP:
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200928 ring->xdp_drop++;
929xdp_drop_no_cnt:
Tariq Toukande3d6fa2016-09-20 14:39:39 +0300930 if (likely(mlx4_en_rx_recycle(ring, frags)))
Brenden Blancod576acf2016-07-19 12:16:52 -0700931 goto consumed;
Brenden Blanco47a38e12016-07-19 12:16:50 -0700932 goto next;
933 }
934 }
935
Tariq Toukan15fca2c2016-11-02 17:12:25 +0200936 ring->bytes += length;
937 ring->packets++;
938
Michał Mirosławc8c64cf2011-04-15 04:50:49 +0000939 if (likely(dev->features & NETIF_F_RXCSUM)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200940 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
941 MLX4_CQE_STATUS_UDP)) {
942 if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
943 cqe->checksum == cpu_to_be16(0xffff)) {
944 ip_summed = CHECKSUM_UNNECESSARY;
945 ring->csum_ok++;
946 } else {
947 ip_summed = CHECKSUM_NONE;
948 ring->csum_none++;
949 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700950 } else {
Shani Michaelif8c64552014-11-09 13:51:53 +0200951 if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
952 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
953 MLX4_CQE_STATUS_IPV6))) {
954 ip_summed = CHECKSUM_COMPLETE;
955 ring->csum_complete++;
956 } else {
957 ip_summed = CHECKSUM_NONE;
958 ring->csum_none++;
959 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700960 }
961 } else {
962 ip_summed = CHECKSUM_NONE;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000963 ring->csum_none++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700964 }
965
Shani Michaelidd65bea2014-11-09 13:51:52 +0200966 /* This packet is eligible for GRO if it is:
967 * - DIX Ethernet (type interpretation)
968 * - TCP/IP (v4)
969 * - without IP options
970 * - not an IP fragment
Shani Michaelidd65bea2014-11-09 13:51:52 +0200971 */
Eric Dumazet868fdb02015-11-18 06:30:58 -0800972 if (dev->features & NETIF_F_GRO) {
Shani Michaelidd65bea2014-11-09 13:51:52 +0200973 struct sk_buff *gro_skb = napi_get_frags(&cq->napi);
974 if (!gro_skb)
975 goto next;
976
977 nr = mlx4_en_complete_rx_desc(priv,
978 rx_desc, frags, gro_skb,
979 length);
980 if (!nr)
981 goto next;
982
Shani Michaelif8c64552014-11-09 13:51:53 +0200983 if (ip_summed == CHECKSUM_COMPLETE) {
984 void *va = skb_frag_address(skb_shinfo(gro_skb)->frags);
Ido Shamay79a25852015-06-25 11:29:43 +0300985 if (check_csum(cqe, gro_skb, va,
986 dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200987 ip_summed = CHECKSUM_NONE;
988 ring->csum_none++;
989 ring->csum_complete--;
990 }
991 }
992
Shani Michaelidd65bea2014-11-09 13:51:52 +0200993 skb_shinfo(gro_skb)->nr_frags = nr;
994 gro_skb->len = length;
995 gro_skb->data_len = length;
996 gro_skb->ip_summed = ip_summed;
997
998 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
Or Gerlitzc58942f2014-12-11 10:57:51 +0200999 gro_skb->csum_level = 1;
1000
Shani Michaelidd65bea2014-11-09 13:51:52 +02001001 if ((cqe->vlan_my_qpn &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +03001002 cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) &&
Shani Michaelidd65bea2014-11-09 13:51:52 +02001003 (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
1004 u16 vid = be16_to_cpu(cqe->sl_vid);
1005
1006 __vlan_hwaccel_put_tag(gro_skb, htons(ETH_P_8021Q), vid);
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001007 } else if ((be32_to_cpu(cqe->vlan_my_qpn) &
1008 MLX4_CQE_SVLAN_PRESENT_MASK) &&
1009 (dev->features & NETIF_F_HW_VLAN_STAG_RX)) {
1010 __vlan_hwaccel_put_tag(gro_skb,
1011 htons(ETH_P_8021AD),
1012 be16_to_cpu(cqe->sl_vid));
Shani Michaelidd65bea2014-11-09 13:51:52 +02001013 }
1014
1015 if (dev->features & NETIF_F_RXHASH)
1016 skb_set_hash(gro_skb,
1017 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +02001018 (ip_summed == CHECKSUM_UNNECESSARY) ?
1019 PKT_HASH_TYPE_L4 :
1020 PKT_HASH_TYPE_L3);
Shani Michaelidd65bea2014-11-09 13:51:52 +02001021
1022 skb_record_rx_queue(gro_skb, cq->ring);
Shani Michaelidd65bea2014-11-09 13:51:52 +02001023
1024 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
1025 timestamp = mlx4_en_get_cqe_ts(cqe);
1026 mlx4_en_fill_hwtstamps(mdev,
1027 skb_hwtstamps(gro_skb),
1028 timestamp);
1029 }
1030
1031 napi_gro_frags(&cq->napi);
1032 goto next;
1033 }
1034
1035 /* GRO not possible, complete processing here */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001036 skb = mlx4_en_rx_skb(priv, rx_desc, frags, length);
Tariq Toukande3d6fa2016-09-20 14:39:39 +03001037 if (unlikely(!skb)) {
Eran Ben Elishad21ed3a2016-04-20 16:01:18 +03001038 ring->dropped++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001039 goto next;
1040 }
1041
Kamal Heib57c970c2016-09-20 14:39:40 +03001042 if (unlikely(priv->validate_loopback)) {
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +00001043 validate_loopback(priv, skb);
1044 goto next;
1045 }
1046
Shani Michaelif8c64552014-11-09 13:51:53 +02001047 if (ip_summed == CHECKSUM_COMPLETE) {
Ido Shamay79a25852015-06-25 11:29:43 +03001048 if (check_csum(cqe, skb, skb->data, dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +02001049 ip_summed = CHECKSUM_NONE;
1050 ring->csum_complete--;
1051 ring->csum_none++;
1052 }
1053 }
1054
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001055 skb->ip_summed = ip_summed;
1056 skb->protocol = eth_type_trans(skb, dev);
David S. Miller0c8dfc82009-01-27 16:22:32 -08001057 skb_record_rx_queue(skb, cq->ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001058
Tom Herbert9ca86002014-08-27 21:27:53 -07001059 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
1060 skb->csum_level = 1;
Or Gerlitz837052d2013-12-23 16:09:44 +02001061
Yevgeny Petrilinad861072011-10-18 01:51:24 +00001062 if (dev->features & NETIF_F_RXHASH)
Tom Herbert69174412013-12-17 23:31:23 -08001063 skb_set_hash(skb,
1064 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +02001065 (ip_summed == CHECKSUM_UNNECESSARY) ?
1066 PKT_HASH_TYPE_L4 :
1067 PKT_HASH_TYPE_L3);
Yevgeny Petrilinad861072011-10-18 01:51:24 +00001068
Amir Vadaiec693d42013-04-23 06:06:49 +00001069 if ((be32_to_cpu(cqe->vlan_my_qpn) &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +03001070 MLX4_CQE_CVLAN_PRESENT_MASK) &&
Amir Vadaiec693d42013-04-23 06:06:49 +00001071 (dev->features & NETIF_F_HW_VLAN_CTAG_RX))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001072 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), be16_to_cpu(cqe->sl_vid));
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001073 else if ((be32_to_cpu(cqe->vlan_my_qpn) &
1074 MLX4_CQE_SVLAN_PRESENT_MASK) &&
1075 (dev->features & NETIF_F_HW_VLAN_STAG_RX))
1076 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021AD),
1077 be16_to_cpu(cqe->sl_vid));
Jiri Pirkof1b553f2011-07-20 04:54:22 +00001078
Amir Vadaiec693d42013-04-23 06:06:49 +00001079 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
1080 timestamp = mlx4_en_get_cqe_ts(cqe);
1081 mlx4_en_fill_hwtstamps(mdev, skb_hwtstamps(skb),
1082 timestamp);
1083 }
1084
Eric Dumazet868fdb02015-11-18 06:30:58 -08001085 napi_gro_receive(&cq->napi, skb);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001086next:
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001087 for (nr = 0; nr < priv->num_frags; nr++)
1088 mlx4_en_free_frag(priv, frags, nr);
1089
Brenden Blancod576acf2016-07-19 12:16:52 -07001090consumed:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001091 ++cq->mcq.cons_index;
1092 index = (cq->mcq.cons_index) & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +03001093 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Ben Hutchingsf1d29a32012-11-16 12:44:56 +00001094 if (++polled == budget)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001095 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001096 }
1097
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001098out:
Brenden Blanco326fe022016-09-03 21:29:58 -07001099 rcu_read_unlock();
Brenden Blanco9ecc2d82016-07-19 12:16:55 -07001100
Eric Dumazetdad42c32016-11-20 09:24:36 -08001101 if (polled) {
1102 if (doorbell_pending)
1103 mlx4_en_xmit_doorbell(priv->tx_ring[TX_XDP][cq->ring]);
1104
1105 mlx4_cq_set_ci(&cq->mcq);
1106 wmb(); /* ensure HW sees CQ consumer before we post new buffers */
1107 ring->cons = cq->mcq.cons_index;
1108 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001109 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
Eric Dumazetdad42c32016-11-20 09:24:36 -08001110
1111 if (mlx4_en_refill_rx_buffers(priv, ring))
1112 mlx4_en_update_rx_prod_db(ring);
1113
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001114 return polled;
1115}
1116
1117
1118void mlx4_en_rx_irq(struct mlx4_cq *mcq)
1119{
1120 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
1121 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
1122
Eric Dumazet477b35b2014-10-29 16:54:45 -07001123 if (likely(priv->port_up))
1124 napi_schedule_irqoff(&cq->napi);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001125 else
1126 mlx4_en_arm_cq(priv, cq);
1127}
1128
1129/* Rx CQ polling - called by NAPI */
1130int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
1131{
1132 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
1133 struct net_device *dev = cq->dev;
1134 struct mlx4_en_priv *priv = netdev_priv(dev);
1135 int done;
1136
1137 done = mlx4_en_process_rx_cq(dev, cq, budget);
1138
1139 /* If we used up all the quota - we're probably not done yet... */
Yuval Atias2eacc232014-05-14 12:15:10 +03001140 if (done == budget) {
Amir Vadai35f6f452014-06-29 11:54:55 +03001141 const struct cpumask *aff;
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001142 struct irq_data *idata;
1143 int cpu_curr;
Amir Vadai35f6f452014-06-29 11:54:55 +03001144
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001145 INC_PERF_COUNTER(priv->pstats.napi_quota);
Amir Vadai35f6f452014-06-29 11:54:55 +03001146
1147 cpu_curr = smp_processor_id();
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001148 idata = irq_desc_get_irq_data(cq->irq_desc);
1149 aff = irq_data_get_affinity_mask(idata);
Amir Vadai35f6f452014-06-29 11:54:55 +03001150
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001151 if (likely(cpumask_test_cpu(cpu_curr, aff)))
1152 return budget;
1153
1154 /* Current cpu is not according to smp_irq_affinity -
Eric Dumazetdad42c32016-11-20 09:24:36 -08001155 * probably affinity changed. Need to stop this NAPI
1156 * poll, and restart it on the right CPU.
1157 * Try to avoid returning a too small value (like 0),
1158 * to not fool net_rx_action() and its netdev_budget
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001159 */
Eric Dumazetdad42c32016-11-20 09:24:36 -08001160 if (done)
1161 done--;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001162 }
Eric Dumazet1a288172014-11-06 21:10:11 -08001163 /* Done for now */
Eric Dumazet2e713282016-11-15 10:15:14 -08001164 if (napi_complete_done(napi, done))
1165 mlx4_en_arm_cq(priv, cq);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001166 return done;
1167}
1168
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001169void mlx4_en_calc_rx_buf(struct net_device *dev)
1170{
1171 struct mlx4_en_priv *priv = netdev_priv(dev);
Brenden Blanco47a38e12016-07-19 12:16:50 -07001172 int eff_mtu = MLX4_EN_EFF_MTU(dev->mtu);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001173 int i = 0;
1174
Brenden Blancod576acf2016-07-19 12:16:52 -07001175 /* bpf requires buffers to be set up as 1 packet per page.
1176 * This only works when num_frags == 1.
1177 */
Tariq Toukan67f8b1d2016-11-02 17:12:24 +02001178 if (priv->tx_ring_num[TX_XDP]) {
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001179 priv->frag_info[0].frag_size = eff_mtu;
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001180 /* This will gain efficient xdp frame recycling at the
1181 * expense of more costly truesize accounting
Brenden Blancod576acf2016-07-19 12:16:52 -07001182 */
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001183 priv->frag_info[0].frag_stride = PAGE_SIZE;
Eric Dumazet69ba9432017-03-08 08:17:06 -08001184 priv->dma_dir = PCI_DMA_BIDIRECTIONAL;
Eric Dumazetd85f6c12017-03-08 08:17:09 -08001185 priv->rx_headroom = XDP_PACKET_HEADROOM;
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001186 i = 1;
1187 } else {
Eric Dumazetb5a54d92017-03-08 08:17:12 -08001188 int frag_size_max = 2048, buf_size = 0;
1189
1190 /* should not happen, right ? */
1191 if (eff_mtu > PAGE_SIZE + (MLX4_EN_MAX_RX_FRAGS - 1) * 2048)
1192 frag_size_max = PAGE_SIZE;
Brenden Blancod576acf2016-07-19 12:16:52 -07001193
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001194 while (buf_size < eff_mtu) {
Eric Dumazetb5a54d92017-03-08 08:17:12 -08001195 int frag_stride, frag_size = eff_mtu - buf_size;
1196 int pad, nb;
Eric Dumazet60c7f5a2017-03-08 08:17:11 -08001197
1198 if (i < MLX4_EN_MAX_RX_FRAGS - 1)
Eric Dumazetb5a54d92017-03-08 08:17:12 -08001199 frag_size = min(frag_size, frag_size_max);
Eric Dumazet60c7f5a2017-03-08 08:17:11 -08001200
1201 priv->frag_info[i].frag_size = frag_size;
Eric Dumazetb5a54d92017-03-08 08:17:12 -08001202 frag_stride = ALIGN(frag_size, SMP_CACHE_BYTES);
1203 /* We can only pack 2 1536-bytes frames in on 4K page
1204 * Therefore, each frame would consume more bytes (truesize)
1205 */
1206 nb = PAGE_SIZE / frag_stride;
1207 pad = (PAGE_SIZE - nb * frag_stride) / nb;
1208 pad &= ~(SMP_CACHE_BYTES - 1);
1209 priv->frag_info[i].frag_stride = frag_stride + pad;
Eric Dumazet60c7f5a2017-03-08 08:17:11 -08001210
Eric Dumazet60c7f5a2017-03-08 08:17:11 -08001211 buf_size += frag_size;
Martin KaFai Laub45f0672016-12-07 15:53:12 -08001212 i++;
1213 }
Eric Dumazet69ba9432017-03-08 08:17:06 -08001214 priv->dma_dir = PCI_DMA_FROMDEVICE;
Eric Dumazetd85f6c12017-03-08 08:17:09 -08001215 priv->rx_headroom = 0;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001216 }
1217
1218 priv->num_frags = i;
1219 priv->rx_skb_size = eff_mtu;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001220 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001221
Joe Perches1a91de22014-05-07 12:52:57 -07001222 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
1223 eff_mtu, priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001224 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -07001225 en_err(priv,
Eric Dumazetaaca1212017-03-08 08:17:08 -08001226 " frag:%d - size:%d stride:%d\n",
Eric Dumazet51151a12013-06-23 08:17:56 -07001227 i,
1228 priv->frag_info[i].frag_size,
Eric Dumazet51151a12013-06-23 08:17:56 -07001229 priv->frag_info[i].frag_stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001230 }
1231}
1232
1233/* RSS related functions */
1234
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001235static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
1236 struct mlx4_en_rx_ring *ring,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001237 enum mlx4_qp_state *state,
1238 struct mlx4_qp *qp)
1239{
1240 struct mlx4_en_dev *mdev = priv->mdev;
1241 struct mlx4_qp_context *context;
1242 int err = 0;
1243
Joe Perches14f8dc42013-02-07 11:46:27 +00001244 context = kmalloc(sizeof(*context), GFP_KERNEL);
1245 if (!context)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001246 return -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001247
Jiri Kosina40f22872014-05-11 15:15:12 +03001248 err = mlx4_qp_alloc(mdev->dev, qpn, qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001249 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001250 en_err(priv, "Failed to allocate qp #%x\n", qpn);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001251 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001252 }
1253 qp->event = mlx4_en_sqp_event;
1254
1255 memset(context, 0, sizeof *context);
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +00001256 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
Amir Vadai0e98b522012-04-04 21:33:24 +00001257 qpn, ring->cqn, -1, context);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001258 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001259
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001260 /* Cancel FCS removal if FW allows */
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001261 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001262 context->param3 |= cpu_to_be32(1 << 29);
Muhammad Mahajnaf0df3502015-04-02 16:31:21 +03001263 if (priv->dev->features & NETIF_F_RXFCS)
1264 ring->fcs_del = 0;
1265 else
1266 ring->fcs_del = ETH_FCS_LEN;
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001267 } else
1268 ring->fcs_del = 0;
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001269
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001270 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001271 if (err) {
1272 mlx4_qp_remove(mdev->dev, qp);
1273 mlx4_qp_free(mdev->dev, qp);
1274 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001275 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001276out:
1277 kfree(context);
1278 return err;
1279}
1280
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001281int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
1282{
1283 int err;
1284 u32 qpn;
1285
Matan Barakd57febe2014-12-11 10:57:57 +02001286 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn,
1287 MLX4_RESERVE_A0_QP);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001288 if (err) {
1289 en_err(priv, "Failed reserving drop qpn\n");
1290 return err;
1291 }
Jiri Kosina40f22872014-05-11 15:15:12 +03001292 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp, GFP_KERNEL);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001293 if (err) {
1294 en_err(priv, "Failed allocating drop qp\n");
1295 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1296 return err;
1297 }
1298
1299 return 0;
1300}
1301
1302void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
1303{
1304 u32 qpn;
1305
1306 qpn = priv->drop_qp.qpn;
1307 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
1308 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
1309 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1310}
1311
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001312/* Allocate rx qp's and configure them according to rss map */
1313int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
1314{
1315 struct mlx4_en_dev *mdev = priv->mdev;
1316 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1317 struct mlx4_qp_context context;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001318 struct mlx4_rss_context *rss_context;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001319 int rss_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001320 void *ptr;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001321 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
Or Gerlitz1202d462011-11-26 19:55:02 +00001322 MLX4_RSS_TCP_IPV6);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001323 int i, qpn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001324 int err = 0;
1325 int good_qps = 0;
1326
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001327 en_dbg(DRV, priv, "Configuring rss steering\n");
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001328 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
1329 priv->rx_ring_num,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02001330 &rss_map->base_qpn, 0);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001331 if (err) {
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001332 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001333 return err;
1334 }
1335
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001336 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001337 qpn = rss_map->base_qpn + i;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001338 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001339 &rss_map->state[i],
1340 &rss_map->qps[i]);
1341 if (err)
1342 goto rss_err;
1343
1344 ++good_qps;
1345 }
1346
1347 /* Configure RSS indirection qp */
Jiri Kosina40f22872014-05-11 15:15:12 +03001348 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, &rss_map->indir_qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001349 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001350 en_err(priv, "Failed to allocate RSS indirection QP\n");
Yevgeny Petrilin16792002011-03-22 22:38:31 +00001351 goto rss_err;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001352 }
1353 rss_map->indir_qp.event = mlx4_en_sqp_event;
1354 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001355 priv->rx_ring[0]->cqn, -1, &context);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001356
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001357 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1358 rss_rings = priv->rx_ring_num;
1359 else
1360 rss_rings = priv->prof->rss_rings;
1361
Or Gerlitz876f6e62011-11-26 19:54:58 +00001362 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
1363 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
Joe Perches43d620c2011-06-16 19:08:06 +00001364 rss_context = ptr;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001365 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001366 (rss_map->base_qpn));
Yevgeny Petrilin89efea22011-12-19 21:53:38 +00001367 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
Or Gerlitz1202d462011-11-26 19:55:02 +00001368 if (priv->mdev->profile.udp_rss) {
1369 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
1370 rss_context->base_qpn_udp = rss_context->default_qpn;
1371 }
Or Gerlitz837052d2013-12-23 16:09:44 +02001372
1373 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1374 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
1375 rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
1376 }
1377
Yevgeny Petrilin05339432010-08-24 03:46:42 +00001378 rss_context->flags = rss_mask;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001379 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
Eyal Perry947cbb02014-12-02 18:12:11 +02001380 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
1381 rss_context->hash_fn = MLX4_RSS_HASH_XOR;
1382 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
1383 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1384 memcpy(rss_context->rss_key, priv->rss_key,
1385 MLX4_EN_RSS_KEY_SIZE);
Eyal Perry947cbb02014-12-02 18:12:11 +02001386 } else {
1387 en_err(priv, "Unknown RSS hash function requested\n");
1388 err = -EINVAL;
1389 goto indir_err;
1390 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001391 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
1392 &rss_map->indir_qp, &rss_map->indir_state);
1393 if (err)
1394 goto indir_err;
1395
1396 return 0;
1397
1398indir_err:
1399 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1400 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1401 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1402 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001403rss_err:
1404 for (i = 0; i < good_qps; i++) {
1405 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1406 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1407 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1408 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1409 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001410 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001411 return err;
1412}
1413
1414void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
1415{
1416 struct mlx4_en_dev *mdev = priv->mdev;
1417 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1418 int i;
1419
1420 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1421 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1422 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1423 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001424
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001425 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001426 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1427 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1428 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1429 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1430 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001431 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001432}