blob: 4402a1e48c9bb9d8153df9e9f9378d5e4ece38b3 [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>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070035#include <linux/mlx4/cq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070037#include <linux/mlx4/qp.h>
38#include <linux/skbuff.h>
Sasha Levinb67bfe02013-02-27 17:06:00 -080039#include <linux/rculist.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070040#include <linux/if_ether.h>
41#include <linux/if_vlan.h>
42#include <linux/vmalloc.h>
Amir Vadai35f6f452014-06-29 11:54:55 +030043#include <linux/irq.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070044
Shani Michaelif8c64552014-11-09 13:51:53 +020045#if IS_ENABLED(CONFIG_IPV6)
46#include <net/ip6_checksum.h>
47#endif
48
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070049#include "mlx4_en.h"
50
Eric Dumazet51151a12013-06-23 08:17:56 -070051static int mlx4_alloc_pages(struct mlx4_en_priv *priv,
52 struct mlx4_en_rx_alloc *page_alloc,
53 const struct mlx4_en_frag_info *frag_info,
54 gfp_t _gfp)
55{
56 int order;
57 struct page *page;
58 dma_addr_t dma;
59
60 for (order = MLX4_EN_ALLOC_PREFER_ORDER; ;) {
61 gfp_t gfp = _gfp;
62
63 if (order)
64 gfp |= __GFP_COMP | __GFP_NOWARN;
65 page = alloc_pages(gfp, order);
66 if (likely(page))
67 break;
68 if (--order < 0 ||
69 ((PAGE_SIZE << order) < frag_info->frag_size))
70 return -ENOMEM;
71 }
72 dma = dma_map_page(priv->ddev, page, 0, PAGE_SIZE << order,
73 PCI_DMA_FROMDEVICE);
74 if (dma_mapping_error(priv->ddev, dma)) {
75 put_page(page);
76 return -ENOMEM;
77 }
Amir Vadai70fbe072013-10-07 13:38:12 +020078 page_alloc->page_size = PAGE_SIZE << order;
Eric Dumazet51151a12013-06-23 08:17:56 -070079 page_alloc->page = page;
80 page_alloc->dma = dma;
Ido Shamay5f6e9802014-11-02 16:26:15 +020081 page_alloc->page_offset = 0;
Eric Dumazet51151a12013-06-23 08:17:56 -070082 /* Not doing get_page() for each frag is a big win
Eric Dumazet98226202014-10-10 04:48:17 -070083 * on asymetric workloads. Note we can not use atomic_set().
Eric Dumazet51151a12013-06-23 08:17:56 -070084 */
Eric Dumazet98226202014-10-10 04:48:17 -070085 atomic_add(page_alloc->page_size / frag_info->frag_stride - 1,
86 &page->_count);
Eric Dumazet51151a12013-06-23 08:17:56 -070087 return 0;
88}
89
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000090static int mlx4_en_alloc_frags(struct mlx4_en_priv *priv,
91 struct mlx4_en_rx_desc *rx_desc,
92 struct mlx4_en_rx_alloc *frags,
Eric Dumazet51151a12013-06-23 08:17:56 -070093 struct mlx4_en_rx_alloc *ring_alloc,
94 gfp_t gfp)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000095{
96 struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
Eric Dumazet51151a12013-06-23 08:17:56 -070097 const struct mlx4_en_frag_info *frag_info;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000098 struct page *page;
99 dma_addr_t dma;
100 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
Eric Dumazet51151a12013-06-23 08:17:56 -0700111 if (mlx4_alloc_pages(priv, &page_alloc[i], frag_info, gfp))
112 goto out;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000113 }
114
115 for (i = 0; i < priv->num_frags; i++) {
116 frags[i] = ring_alloc[i];
Amir Vadai70fbe072013-10-07 13:38:12 +0200117 dma = ring_alloc[i].dma + ring_alloc[i].page_offset;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000118 ring_alloc[i] = page_alloc[i];
119 rx_desc->data[i].addr = cpu_to_be64(dma);
120 }
121
122 return 0;
123
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000124out:
125 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700126 if (page_alloc[i].page != ring_alloc[i].page) {
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000127 dma_unmap_page(priv->ddev, page_alloc[i].dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200128 page_alloc[i].page_size, PCI_DMA_FROMDEVICE);
Eric Dumazet51151a12013-06-23 08:17:56 -0700129 page = page_alloc[i].page;
130 atomic_set(&page->_count, 1);
131 put_page(page);
132 }
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000133 }
134 return -ENOMEM;
135}
136
137static void mlx4_en_free_frag(struct mlx4_en_priv *priv,
138 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700139 int i)
140{
Eric Dumazet51151a12013-06-23 08:17:56 -0700141 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Amir Vadai021f1102013-10-07 13:38:13 +0200142 u32 next_frag_end = frags[i].page_offset + 2 * frag_info->frag_stride;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700143
Amir Vadai021f1102013-10-07 13:38:13 +0200144
145 if (next_frag_end > frags[i].page_size)
Amir Vadai70fbe072013-10-07 13:38:12 +0200146 dma_unmap_page(priv->ddev, frags[i].dma, frags[i].page_size,
147 PCI_DMA_FROMDEVICE);
Eric Dumazet51151a12013-06-23 08:17:56 -0700148
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000149 if (frags[i].page)
150 put_page(frags[i].page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700151}
152
153static int mlx4_en_init_allocator(struct mlx4_en_priv *priv,
154 struct mlx4_en_rx_ring *ring)
155{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700156 int i;
Eric Dumazet51151a12013-06-23 08:17:56 -0700157 struct mlx4_en_rx_alloc *page_alloc;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700158
159 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700160 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700161
Eric Dumazet51151a12013-06-23 08:17:56 -0700162 if (mlx4_alloc_pages(priv, &ring->page_alloc[i],
Ido Shamay1ab25f82014-11-02 16:26:16 +0200163 frag_info, GFP_KERNEL | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000164 goto out;
Ido Shamayb110d2c2015-02-03 17:57:19 +0200165
166 en_dbg(DRV, priv, " frag %d allocator: - size:%d frags:%d\n",
167 i, ring->page_alloc[i].page_size,
168 atomic_read(&ring->page_alloc[i].page->_count));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700169 }
170 return 0;
171
172out:
173 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700174 struct page *page;
175
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700176 page_alloc = &ring->page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000177 dma_unmap_page(priv->ddev, page_alloc->dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200178 page_alloc->page_size, PCI_DMA_FROMDEVICE);
Eric Dumazet51151a12013-06-23 08:17:56 -0700179 page = page_alloc->page;
180 atomic_set(&page->_count, 1);
181 put_page(page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700182 page_alloc->page = NULL;
183 }
184 return -ENOMEM;
185}
186
187static void mlx4_en_destroy_allocator(struct mlx4_en_priv *priv,
188 struct mlx4_en_rx_ring *ring)
189{
190 struct mlx4_en_rx_alloc *page_alloc;
191 int i;
192
193 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700194 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
195
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700196 page_alloc = &ring->page_alloc[i];
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000197 en_dbg(DRV, priv, "Freeing allocator:%d count:%d\n",
198 i, page_count(page_alloc->page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700199
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000200 dma_unmap_page(priv->ddev, page_alloc->dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200201 page_alloc->page_size, PCI_DMA_FROMDEVICE);
202 while (page_alloc->page_offset + frag_info->frag_stride <
203 page_alloc->page_size) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700204 put_page(page_alloc->page);
Amir Vadai70fbe072013-10-07 13:38:12 +0200205 page_alloc->page_offset += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700206 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700207 page_alloc->page = NULL;
208 }
209}
210
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700211static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv,
212 struct mlx4_en_rx_ring *ring, int index)
213{
214 struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700215 int possible_frags;
216 int i;
217
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700218 /* Set size and memtype fields */
219 for (i = 0; i < priv->num_frags; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700220 rx_desc->data[i].byte_count =
221 cpu_to_be32(priv->frag_info[i].frag_size);
222 rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
223 }
224
225 /* If the number of used fragments does not fill up the ring stride,
226 * remaining (unused) fragments must be padded with null address/size
227 * and a special memory key */
228 possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
229 for (i = priv->num_frags; i < possible_frags; i++) {
230 rx_desc->data[i].byte_count = 0;
231 rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
232 rx_desc->data[i].addr = 0;
233 }
234}
235
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700236static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
Eric Dumazet51151a12013-06-23 08:17:56 -0700237 struct mlx4_en_rx_ring *ring, int index,
238 gfp_t gfp)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700239{
240 struct mlx4_en_rx_desc *rx_desc = ring->buf + (index * ring->stride);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000241 struct mlx4_en_rx_alloc *frags = ring->rx_info +
242 (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700243
Eric Dumazet51151a12013-06-23 08:17:56 -0700244 return mlx4_en_alloc_frags(priv, rx_desc, frags, ring->page_alloc, gfp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700245}
246
Ido Shamay07841f92015-04-30 17:32:46 +0300247static inline bool mlx4_en_is_ring_empty(struct mlx4_en_rx_ring *ring)
248{
Ido Shamay07841f92015-04-30 17:32:46 +0300249 return ring->prod == ring->cons;
250}
251
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700252static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
253{
254 *ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
255}
256
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000257static void mlx4_en_free_rx_desc(struct mlx4_en_priv *priv,
258 struct mlx4_en_rx_ring *ring,
259 int index)
260{
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000261 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000262 int nr;
263
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000264 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000265 for (nr = 0; nr < priv->num_frags; nr++) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000266 en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000267 mlx4_en_free_frag(priv, frags, nr);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000268 }
269}
270
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700271static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
272{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700273 struct mlx4_en_rx_ring *ring;
274 int ring_ind;
275 int buf_ind;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000276 int new_size;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700277
278 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
279 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200280 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700281
282 if (mlx4_en_prepare_rx_desc(priv, ring,
Eric Dumazet51151a12013-06-23 08:17:56 -0700283 ring->actual_size,
Ido Shamay1ab25f82014-11-02 16:26:16 +0200284 GFP_KERNEL | __GFP_COLD)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700285 if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
Joe Perches1a91de22014-05-07 12:52:57 -0700286 en_err(priv, "Failed to allocate enough rx buffers\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700287 return -ENOMEM;
288 } else {
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000289 new_size = rounddown_pow_of_two(ring->actual_size);
Joe Perches1a91de22014-05-07 12:52:57 -0700290 en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000291 ring->actual_size, new_size);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000292 goto reduce_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700293 }
294 }
295 ring->actual_size++;
296 ring->prod++;
297 }
298 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000299 return 0;
300
301reduce_rings:
302 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200303 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000304 while (ring->actual_size > new_size) {
305 ring->actual_size--;
306 ring->prod--;
307 mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
308 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000309 }
310
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700311 return 0;
312}
313
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700314static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
315 struct mlx4_en_rx_ring *ring)
316{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700317 int index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700318
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000319 en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
320 ring->cons, ring->prod);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700321
322 /* Unmap and free Rx buffers */
Ido Shamay07841f92015-04-30 17:32:46 +0300323 while (!mlx4_en_is_ring_empty(ring)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700324 index = ring->cons & ring->size_mask;
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000325 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000326 mlx4_en_free_rx_desc(priv, ring, index);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700327 ++ring->cons;
328 }
329}
330
Ido Shamay02512482014-02-21 12:39:17 +0200331void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
332{
333 int i;
334 int num_of_eqs;
Ido Shamaybb2146b2014-02-21 12:39:18 +0200335 int num_rx_rings;
Ido Shamay02512482014-02-21 12:39:17 +0200336 struct mlx4_dev *dev = mdev->dev;
337
338 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
Matan Barakc66fa192015-05-31 09:30:16 +0300339 num_of_eqs = max_t(int, MIN_RX_RINGS,
340 min_t(int,
341 mlx4_get_eqs_per_port(mdev->dev, i),
342 DEF_RX_RINGS));
Ido Shamay02512482014-02-21 12:39:17 +0200343
Amir Vadaiea1c1af2014-07-22 15:44:12 +0300344 num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
345 min_t(int, num_of_eqs,
346 netif_get_num_default_rss_queues());
Ido Shamay02512482014-02-21 12:39:17 +0200347 mdev->profile.prof[i].rx_ring_num =
Ido Shamaybb2146b2014-02-21 12:39:18 +0200348 rounddown_pow_of_two(num_rx_rings);
Ido Shamay02512482014-02-21 12:39:17 +0200349 }
350}
351
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700352int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200353 struct mlx4_en_rx_ring **pring,
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200354 u32 size, u16 stride, int node)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700355{
356 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200357 struct mlx4_en_rx_ring *ring;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000358 int err = -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700359 int tmp;
360
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200361 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200362 if (!ring) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200363 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
364 if (!ring) {
365 en_err(priv, "Failed to allocate RX ring structure\n");
366 return -ENOMEM;
367 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200368 }
369
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700370 ring->prod = 0;
371 ring->cons = 0;
372 ring->size = size;
373 ring->size_mask = size - 1;
374 ring->stride = stride;
375 ring->log_stride = ffs(ring->stride) - 1;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700376 ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700377
378 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000379 sizeof(struct mlx4_en_rx_alloc));
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200380 ring->rx_info = vmalloc_node(tmp, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200381 if (!ring->rx_info) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200382 ring->rx_info = vmalloc(tmp);
383 if (!ring->rx_info) {
384 err = -ENOMEM;
385 goto err_ring;
386 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200387 }
Joe Perchese404dec2012-01-29 12:56:23 +0000388
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000389 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700390 ring->rx_info, tmp);
391
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200392 /* Allocate HW buffers on provided NUMA node */
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200393 set_dev_node(&mdev->dev->persist->pdev->dev, node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700394 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres,
395 ring->buf_size, 2 * PAGE_SIZE);
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200396 set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700397 if (err)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200398 goto err_info;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700399
400 err = mlx4_en_map_buffer(&ring->wqres.buf);
401 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000402 en_err(priv, "Failed to map RX buffer\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700403 goto err_hwq;
404 }
405 ring->buf = ring->wqres.buf.direct.buf;
406
Amir Vadaiec693d42013-04-23 06:06:49 +0000407 ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter;
408
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200409 *pring = ring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700410 return 0;
411
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700412err_hwq:
413 mlx4_free_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200414err_info:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700415 vfree(ring->rx_info);
416 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200417err_ring:
418 kfree(ring);
419 *pring = NULL;
420
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700421 return err;
422}
423
424int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
425{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700426 struct mlx4_en_rx_ring *ring;
427 int i;
428 int ring_ind;
429 int err;
430 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
431 DS_SIZE * priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700432
433 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200434 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700435
436 ring->prod = 0;
437 ring->cons = 0;
438 ring->actual_size = 0;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200439 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700440
441 ring->stride = stride;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700442 if (ring->stride <= TXBB_SIZE)
443 ring->buf += TXBB_SIZE;
444
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700445 ring->log_stride = ffs(ring->stride) - 1;
446 ring->buf_size = ring->size * ring->stride;
447
448 memset(ring->buf, 0, ring->buf_size);
449 mlx4_en_update_rx_prod_db(ring);
450
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000451 /* Initialize all descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700452 for (i = 0; i < ring->size; i++)
453 mlx4_en_init_rx_desc(priv, ring, i);
454
455 /* Initialize page allocators */
456 err = mlx4_en_init_allocator(priv, ring);
457 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000458 en_err(priv, "Failed initializing ring allocator\n");
Yevgeny Petrilin60b18092011-04-06 23:25:45 +0000459 if (ring->stride <= TXBB_SIZE)
460 ring->buf -= TXBB_SIZE;
Yevgeny Petrilin9a4f92a2009-04-20 04:24:28 +0000461 ring_ind--;
462 goto err_allocator;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700463 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700464 }
Ingo Molnarb58515b2008-11-25 16:53:32 -0800465 err = mlx4_en_fill_rx_buffers(priv);
466 if (err)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700467 goto err_buffers;
468
469 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200470 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700471
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +0000472 ring->size_mask = ring->actual_size - 1;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700473 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700474 }
475
476 return 0;
477
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700478err_buffers:
479 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200480 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700481
482 ring_ind = priv->rx_ring_num - 1;
483err_allocator:
484 while (ring_ind >= 0) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200485 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
486 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
487 mlx4_en_destroy_allocator(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700488 ring_ind--;
489 }
490 return err;
491}
492
Ido Shamay07841f92015-04-30 17:32:46 +0300493/* We recover from out of memory by scheduling our napi poll
494 * function (mlx4_en_process_cq), which tries to allocate
495 * all missing RX buffers (call to mlx4_en_refill_rx_buffers).
496 */
497void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv)
498{
499 int ring;
500
501 if (!priv->port_up)
502 return;
503
504 for (ring = 0; ring < priv->rx_ring_num; ring++) {
505 if (mlx4_en_is_ring_empty(priv->rx_ring[ring]))
506 napi_reschedule(&priv->rx_cq[ring]->napi);
507 }
508}
509
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700510void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200511 struct mlx4_en_rx_ring **pring,
512 u32 size, u16 stride)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700513{
514 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200515 struct mlx4_en_rx_ring *ring = *pring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700516
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700517 mlx4_en_unmap_buffer(&ring->wqres.buf);
Thadeu Lima de Souza Cascardo68355f72012-02-06 08:39:49 +0000518 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700519 vfree(ring->rx_info);
520 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200521 kfree(ring);
522 *pring = NULL;
Amir Vadai1eb8c692012-07-18 22:33:52 +0000523#ifdef CONFIG_RFS_ACCEL
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200524 mlx4_en_cleanup_filters(priv);
Amir Vadai1eb8c692012-07-18 22:33:52 +0000525#endif
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700526}
527
528void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
529 struct mlx4_en_rx_ring *ring)
530{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700531 mlx4_en_free_rx_buf(priv, ring);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700532 if (ring->stride <= TXBB_SIZE)
533 ring->buf -= TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700534 mlx4_en_destroy_allocator(priv, ring);
535}
536
537
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700538static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
539 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000540 struct mlx4_en_rx_alloc *frags,
Eric Dumazet90278c92011-10-19 18:49:52 +0000541 struct sk_buff *skb,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700542 int length)
543{
Eric Dumazet90278c92011-10-19 18:49:52 +0000544 struct skb_frag_struct *skb_frags_rx = skb_shinfo(skb)->frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700545 struct mlx4_en_frag_info *frag_info;
546 int nr;
547 dma_addr_t dma;
548
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000549 /* Collect used fragments while replacing them in the HW descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700550 for (nr = 0; nr < priv->num_frags; nr++) {
551 frag_info = &priv->frag_info[nr];
552 if (length <= frag_info->frag_prefix_size)
553 break;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000554 if (!frags[nr].page)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700555 goto fail;
556
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000557 dma = be64_to_cpu(rx_desc->data[nr].addr);
558 dma_sync_single_for_cpu(priv->ddev, dma, frag_info->frag_size,
559 DMA_FROM_DEVICE);
560
561 /* Save page reference in skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000562 __skb_frag_set_page(&skb_frags_rx[nr], frags[nr].page);
563 skb_frag_size_set(&skb_frags_rx[nr], frag_info->frag_size);
Amir Vadai70fbe072013-10-07 13:38:12 +0200564 skb_frags_rx[nr].page_offset = frags[nr].page_offset;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000565 skb->truesize += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700566 frags[nr].page = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700567 }
568 /* Adjust size of last fragment to match actual length */
roel kluin973507c2009-08-08 23:54:21 +0000569 if (nr > 0)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000570 skb_frag_size_set(&skb_frags_rx[nr - 1],
571 length - priv->frag_info[nr - 1].frag_prefix_size);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700572 return nr;
573
574fail:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700575 while (nr > 0) {
576 nr--;
Ian Campbell311761c2011-10-19 23:01:45 +0000577 __skb_frag_unref(&skb_frags_rx[nr]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700578 }
579 return 0;
580}
581
582
583static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv,
584 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000585 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700586 unsigned int length)
587{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700588 struct sk_buff *skb;
589 void *va;
590 int used_frags;
591 dma_addr_t dma;
592
Pradeep A Dalvic056b732012-02-05 02:50:38 +0000593 skb = netdev_alloc_skb(priv->dev, SMALL_PACKET_SIZE + NET_IP_ALIGN);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700594 if (!skb) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000595 en_dbg(RX_ERR, priv, "Failed allocating skb\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700596 return NULL;
597 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700598 skb_reserve(skb, NET_IP_ALIGN);
599 skb->len = length;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700600
601 /* Get pointer to first fragment so we could copy the headers into the
602 * (linear part of the) skb */
Amir Vadai70fbe072013-10-07 13:38:12 +0200603 va = page_address(frags[0].page) + frags[0].page_offset;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700604
605 if (length <= SMALL_PACKET_SIZE) {
606 /* We are copying all relevant data to the skb - temporarily
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000607 * sync buffers for the copy */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700608 dma = be64_to_cpu(rx_desc->data[0].addr);
Yevgeny Petrilinebf8c9a2012-03-06 04:03:34 +0000609 dma_sync_single_for_cpu(priv->ddev, dma, length,
FUJITA Tomonorie4fc8562010-02-04 18:57:42 +0000610 DMA_FROM_DEVICE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700611 skb_copy_to_linear_data(skb, va, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700612 skb->tail += length;
613 } else {
Eric Dumazetcfecec52014-09-05 18:29:45 -0700614 unsigned int pull_len;
615
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700616 /* Move relevant fragments to skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000617 used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, frags,
618 skb, length);
Yevgeny Petrilin785a09822009-04-26 20:42:57 +0000619 if (unlikely(!used_frags)) {
620 kfree_skb(skb);
621 return NULL;
622 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700623 skb_shinfo(skb)->nr_frags = used_frags;
624
Eric Dumazetcfecec52014-09-05 18:29:45 -0700625 pull_len = eth_get_headlen(va, SMALL_PACKET_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700626 /* Copy headers into the skb linear buffer */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700627 memcpy(skb->data, va, pull_len);
628 skb->tail += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700629
630 /* Skip headers in first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700631 skb_shinfo(skb)->frags[0].page_offset += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700632
633 /* Adjust size of first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700634 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], pull_len);
635 skb->data_len = length - pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700636 }
637 return skb;
638}
639
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000640static void validate_loopback(struct mlx4_en_priv *priv, struct sk_buff *skb)
641{
642 int i;
643 int offset = ETH_HLEN;
644
645 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++, offset++) {
646 if (*(skb->data + offset) != (unsigned char) (i & 0xff))
647 goto out_loopback;
648 }
649 /* Loopback found */
650 priv->loopback_ok = 1;
651
652out_loopback:
653 dev_kfree_skb_any(skb);
654}
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700655
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000656static void mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
657 struct mlx4_en_rx_ring *ring)
658{
659 int index = ring->prod & ring->size_mask;
660
661 while ((u32) (ring->prod - ring->cons) < ring->actual_size) {
Ido Shamay1ab25f82014-11-02 16:26:16 +0200662 if (mlx4_en_prepare_rx_desc(priv, ring, index,
663 GFP_ATOMIC | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000664 break;
665 ring->prod++;
666 index = ring->prod & ring->size_mask;
667 }
668}
669
Shani Michaelif8c64552014-11-09 13:51:53 +0200670/* When hardware doesn't strip the vlan, we need to calculate the checksum
671 * over it and add it to the hardware's checksum calculation
672 */
673static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
674 struct vlan_hdr *vlanh)
675{
676 return csum_add(hw_checksum, *(__wsum *)vlanh);
677}
678
679/* Although the stack expects checksum which doesn't include the pseudo
680 * header, the HW adds it. To address that, we are subtracting the pseudo
681 * header checksum from the checksum value provided by the HW.
682 */
683static void get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
684 struct iphdr *iph)
685{
686 __u16 length_for_csum = 0;
687 __wsum csum_pseudo_header = 0;
688
689 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
690 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
691 length_for_csum, iph->protocol, 0);
692 skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
693}
694
695#if IS_ENABLED(CONFIG_IPV6)
696/* In IPv6 packets, besides subtracting the pseudo header checksum,
697 * we also compute/add the IP header checksum which
698 * is not added by the HW.
699 */
700static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
701 struct ipv6hdr *ipv6h)
702{
703 __wsum csum_pseudo_hdr = 0;
704
705 if (ipv6h->nexthdr == IPPROTO_FRAGMENT || ipv6h->nexthdr == IPPROTO_HOPOPTS)
706 return -1;
707 hw_checksum = csum_add(hw_checksum, (__force __wsum)(ipv6h->nexthdr << 8));
708
709 csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
710 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
711 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
712 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ntohs(ipv6h->nexthdr));
713
714 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
715 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
716 return 0;
717}
718#endif
719static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
Ido Shamay79a25852015-06-25 11:29:43 +0300720 netdev_features_t dev_features)
Shani Michaelif8c64552014-11-09 13:51:53 +0200721{
722 __wsum hw_checksum = 0;
723
724 void *hdr = (u8 *)va + sizeof(struct ethhdr);
725
726 hw_checksum = csum_unfold((__force __sum16)cqe->checksum);
727
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300728 if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) &&
Ido Shamay79a25852015-06-25 11:29:43 +0300729 !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200730 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
731 hdr += sizeof(struct vlan_hdr);
732 }
733
734 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
735 get_fixed_ipv4_csum(hw_checksum, skb, hdr);
736#if IS_ENABLED(CONFIG_IPV6)
737 else if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
738 if (get_fixed_ipv6_csum(hw_checksum, skb, hdr))
739 return -1;
740#endif
741 return 0;
742}
743
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700744int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
745{
746 struct mlx4_en_priv *priv = netdev_priv(dev);
Amir Vadaiec693d42013-04-23 06:06:49 +0000747 struct mlx4_en_dev *mdev = priv->mdev;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700748 struct mlx4_cqe *cqe;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200749 struct mlx4_en_rx_ring *ring = priv->rx_ring[cq->ring];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000750 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700751 struct mlx4_en_rx_desc *rx_desc;
752 struct sk_buff *skb;
753 int index;
754 int nr;
755 unsigned int length;
756 int polled = 0;
757 int ip_summed;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000758 int factor = priv->cqe_factor;
Amir Vadaiec693d42013-04-23 06:06:49 +0000759 u64 timestamp;
Or Gerlitz837052d2013-12-23 16:09:44 +0200760 bool l2_tunnel;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700761
762 if (!priv->port_up)
763 return 0;
764
Eric W. Biederman38be0a32014-03-14 18:05:58 -0700765 if (budget <= 0)
766 return polled;
767
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700768 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
769 * descriptor offset can be deduced from the CQE index instead of
770 * reading 'cqe->index' */
771 index = cq->mcq.cons_index & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +0300772 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700773
774 /* Process all completed CQEs */
775 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
776 cq->mcq.cons_index & cq->size)) {
777
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000778 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700779 rx_desc = ring->buf + (index << ring->log_stride);
780
781 /*
782 * make sure we read the CQE after we read the ownership bit
783 */
Alexander Duyck12b33752015-04-08 18:49:36 -0700784 dma_rmb();
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700785
786 /* Drop packet on bad receive or bad checksum */
787 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
788 MLX4_CQE_OPCODE_ERROR)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700789 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
790 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
791 ((struct mlx4_err_cqe *)cqe)->syndrome);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700792 goto next;
793 }
794 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000795 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700796 goto next;
797 }
798
Yan Burman79aeacc2013-02-07 02:25:19 +0000799 /* Check if we need to drop the packet if SRIOV is not enabled
800 * and not performing the selftest or flb disabled
801 */
802 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
803 struct ethhdr *ethh;
804 dma_addr_t dma;
Yan Burman79aeacc2013-02-07 02:25:19 +0000805 /* Get pointer to first fragment since we haven't
806 * skb yet and cast it to ethhdr struct
807 */
808 dma = be64_to_cpu(rx_desc->data[0].addr);
809 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
810 DMA_FROM_DEVICE);
811 ethh = (struct ethhdr *)(page_address(frags[0].page) +
Amir Vadai70fbe072013-10-07 13:38:12 +0200812 frags[0].page_offset);
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000813
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000814 if (is_multicast_ether_addr(ethh->h_dest)) {
815 struct mlx4_mac_entry *entry;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000816 struct hlist_head *bucket;
817 unsigned int mac_hash;
818
819 /* Drop the packet, since HW loopback-ed it */
820 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
821 bucket = &priv->mac_hash[mac_hash];
822 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800823 hlist_for_each_entry_rcu(entry, bucket, hlist) {
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000824 if (ether_addr_equal_64bits(entry->mac,
825 ethh->h_source)) {
826 rcu_read_unlock();
827 goto next;
828 }
829 }
830 rcu_read_unlock();
831 }
Yan Burman79aeacc2013-02-07 02:25:19 +0000832 }
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000833
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700834 /*
835 * Packet is OK - process it.
836 */
837 length = be32_to_cpu(cqe->byte_cnt);
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -0500838 length -= ring->fcs_del;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700839 ring->bytes += length;
840 ring->packets++;
Or Gerlitz837052d2013-12-23 16:09:44 +0200841 l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
842 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700843
Michał Mirosławc8c64cf2011-04-15 04:50:49 +0000844 if (likely(dev->features & NETIF_F_RXCSUM)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200845 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
846 MLX4_CQE_STATUS_UDP)) {
847 if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
848 cqe->checksum == cpu_to_be16(0xffff)) {
849 ip_summed = CHECKSUM_UNNECESSARY;
850 ring->csum_ok++;
851 } else {
852 ip_summed = CHECKSUM_NONE;
853 ring->csum_none++;
854 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700855 } else {
Shani Michaelif8c64552014-11-09 13:51:53 +0200856 if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
857 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
858 MLX4_CQE_STATUS_IPV6))) {
859 ip_summed = CHECKSUM_COMPLETE;
860 ring->csum_complete++;
861 } else {
862 ip_summed = CHECKSUM_NONE;
863 ring->csum_none++;
864 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700865 }
866 } else {
867 ip_summed = CHECKSUM_NONE;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000868 ring->csum_none++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700869 }
870
Shani Michaelidd65bea2014-11-09 13:51:52 +0200871 /* This packet is eligible for GRO if it is:
872 * - DIX Ethernet (type interpretation)
873 * - TCP/IP (v4)
874 * - without IP options
875 * - not an IP fragment
876 * - no LLS polling in progress
877 */
878 if (!mlx4_en_cq_busy_polling(cq) &&
879 (dev->features & NETIF_F_GRO)) {
880 struct sk_buff *gro_skb = napi_get_frags(&cq->napi);
881 if (!gro_skb)
882 goto next;
883
884 nr = mlx4_en_complete_rx_desc(priv,
885 rx_desc, frags, gro_skb,
886 length);
887 if (!nr)
888 goto next;
889
Shani Michaelif8c64552014-11-09 13:51:53 +0200890 if (ip_summed == CHECKSUM_COMPLETE) {
891 void *va = skb_frag_address(skb_shinfo(gro_skb)->frags);
Ido Shamay79a25852015-06-25 11:29:43 +0300892 if (check_csum(cqe, gro_skb, va,
893 dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200894 ip_summed = CHECKSUM_NONE;
895 ring->csum_none++;
896 ring->csum_complete--;
897 }
898 }
899
Shani Michaelidd65bea2014-11-09 13:51:52 +0200900 skb_shinfo(gro_skb)->nr_frags = nr;
901 gro_skb->len = length;
902 gro_skb->data_len = length;
903 gro_skb->ip_summed = ip_summed;
904
905 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
Or Gerlitzc58942f2014-12-11 10:57:51 +0200906 gro_skb->csum_level = 1;
907
Shani Michaelidd65bea2014-11-09 13:51:52 +0200908 if ((cqe->vlan_my_qpn &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300909 cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) &&
Shani Michaelidd65bea2014-11-09 13:51:52 +0200910 (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
911 u16 vid = be16_to_cpu(cqe->sl_vid);
912
913 __vlan_hwaccel_put_tag(gro_skb, htons(ETH_P_8021Q), vid);
Hadar Hen Zione38af4f2015-07-27 14:46:34 +0300914 } else if ((be32_to_cpu(cqe->vlan_my_qpn) &
915 MLX4_CQE_SVLAN_PRESENT_MASK) &&
916 (dev->features & NETIF_F_HW_VLAN_STAG_RX)) {
917 __vlan_hwaccel_put_tag(gro_skb,
918 htons(ETH_P_8021AD),
919 be16_to_cpu(cqe->sl_vid));
Shani Michaelidd65bea2014-11-09 13:51:52 +0200920 }
921
922 if (dev->features & NETIF_F_RXHASH)
923 skb_set_hash(gro_skb,
924 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +0200925 (ip_summed == CHECKSUM_UNNECESSARY) ?
926 PKT_HASH_TYPE_L4 :
927 PKT_HASH_TYPE_L3);
Shani Michaelidd65bea2014-11-09 13:51:52 +0200928
929 skb_record_rx_queue(gro_skb, cq->ring);
930 skb_mark_napi_id(gro_skb, &cq->napi);
931
932 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
933 timestamp = mlx4_en_get_cqe_ts(cqe);
934 mlx4_en_fill_hwtstamps(mdev,
935 skb_hwtstamps(gro_skb),
936 timestamp);
937 }
938
939 napi_gro_frags(&cq->napi);
940 goto next;
941 }
942
943 /* GRO not possible, complete processing here */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000944 skb = mlx4_en_rx_skb(priv, rx_desc, frags, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700945 if (!skb) {
946 priv->stats.rx_dropped++;
947 goto next;
948 }
949
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000950 if (unlikely(priv->validate_loopback)) {
951 validate_loopback(priv, skb);
952 goto next;
953 }
954
Shani Michaelif8c64552014-11-09 13:51:53 +0200955 if (ip_summed == CHECKSUM_COMPLETE) {
Ido Shamay79a25852015-06-25 11:29:43 +0300956 if (check_csum(cqe, skb, skb->data, dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200957 ip_summed = CHECKSUM_NONE;
958 ring->csum_complete--;
959 ring->csum_none++;
960 }
961 }
962
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700963 skb->ip_summed = ip_summed;
964 skb->protocol = eth_type_trans(skb, dev);
David S. Miller0c8dfc82009-01-27 16:22:32 -0800965 skb_record_rx_queue(skb, cq->ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700966
Tom Herbert9ca86002014-08-27 21:27:53 -0700967 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
968 skb->csum_level = 1;
Or Gerlitz837052d2013-12-23 16:09:44 +0200969
Yevgeny Petrilinad861072011-10-18 01:51:24 +0000970 if (dev->features & NETIF_F_RXHASH)
Tom Herbert69174412013-12-17 23:31:23 -0800971 skb_set_hash(skb,
972 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +0200973 (ip_summed == CHECKSUM_UNNECESSARY) ?
974 PKT_HASH_TYPE_L4 :
975 PKT_HASH_TYPE_L3);
Yevgeny Petrilinad861072011-10-18 01:51:24 +0000976
Amir Vadaiec693d42013-04-23 06:06:49 +0000977 if ((be32_to_cpu(cqe->vlan_my_qpn) &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300978 MLX4_CQE_CVLAN_PRESENT_MASK) &&
Amir Vadaiec693d42013-04-23 06:06:49 +0000979 (dev->features & NETIF_F_HW_VLAN_CTAG_RX))
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000980 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), be16_to_cpu(cqe->sl_vid));
Hadar Hen Zione38af4f2015-07-27 14:46:34 +0300981 else if ((be32_to_cpu(cqe->vlan_my_qpn) &
982 MLX4_CQE_SVLAN_PRESENT_MASK) &&
983 (dev->features & NETIF_F_HW_VLAN_STAG_RX))
984 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021AD),
985 be16_to_cpu(cqe->sl_vid));
Jiri Pirkof1b553f2011-07-20 04:54:22 +0000986
Amir Vadaiec693d42013-04-23 06:06:49 +0000987 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
988 timestamp = mlx4_en_get_cqe_ts(cqe);
989 mlx4_en_fill_hwtstamps(mdev, skb_hwtstamps(skb),
990 timestamp);
991 }
992
Eliezer Tamir8b80cda2013-07-10 17:13:26 +0300993 skb_mark_napi_id(skb, &cq->napi);
Amir Vadai9e77a2b2013-06-18 16:18:27 +0300994
Eric Dumazete6a76752014-01-09 10:30:13 -0800995 if (!mlx4_en_cq_busy_polling(cq))
996 napi_gro_receive(&cq->napi, skb);
997 else
998 netif_receive_skb(skb);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700999
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001000next:
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001001 for (nr = 0; nr < priv->num_frags; nr++)
1002 mlx4_en_free_frag(priv, frags, nr);
1003
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001004 ++cq->mcq.cons_index;
1005 index = (cq->mcq.cons_index) & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +03001006 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Ben Hutchingsf1d29a32012-11-16 12:44:56 +00001007 if (++polled == budget)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001008 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001009 }
1010
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001011out:
1012 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
1013 mlx4_cq_set_ci(&cq->mcq);
1014 wmb(); /* ensure HW sees CQ consumer before we post new buffers */
1015 ring->cons = cq->mcq.cons_index;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001016 mlx4_en_refill_rx_buffers(priv, ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001017 mlx4_en_update_rx_prod_db(ring);
1018 return polled;
1019}
1020
1021
1022void mlx4_en_rx_irq(struct mlx4_cq *mcq)
1023{
1024 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
1025 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
1026
Eric Dumazet477b35b2014-10-29 16:54:45 -07001027 if (likely(priv->port_up))
1028 napi_schedule_irqoff(&cq->napi);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001029 else
1030 mlx4_en_arm_cq(priv, cq);
1031}
1032
1033/* Rx CQ polling - called by NAPI */
1034int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
1035{
1036 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
1037 struct net_device *dev = cq->dev;
1038 struct mlx4_en_priv *priv = netdev_priv(dev);
1039 int done;
1040
Amir Vadai9e77a2b2013-06-18 16:18:27 +03001041 if (!mlx4_en_cq_lock_napi(cq))
1042 return budget;
1043
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001044 done = mlx4_en_process_rx_cq(dev, cq, budget);
1045
Amir Vadai9e77a2b2013-06-18 16:18:27 +03001046 mlx4_en_cq_unlock_napi(cq);
1047
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001048 /* If we used up all the quota - we're probably not done yet... */
Yuval Atias2eacc232014-05-14 12:15:10 +03001049 if (done == budget) {
Amir Vadai35f6f452014-06-29 11:54:55 +03001050 int cpu_curr;
1051 const struct cpumask *aff;
1052
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001053 INC_PERF_COUNTER(priv->pstats.napi_quota);
Amir Vadai35f6f452014-06-29 11:54:55 +03001054
1055 cpu_curr = smp_processor_id();
1056 aff = irq_desc_get_irq_data(cq->irq_desc)->affinity;
1057
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001058 if (likely(cpumask_test_cpu(cpu_curr, aff)))
1059 return budget;
1060
1061 /* Current cpu is not according to smp_irq_affinity -
1062 * probably affinity changed. need to stop this NAPI
1063 * poll, and restart it on the right CPU
1064 */
1065 done = 0;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001066 }
Eric Dumazet1a288172014-11-06 21:10:11 -08001067 /* Done for now */
1068 napi_complete_done(napi, done);
1069 mlx4_en_arm_cq(priv, cq);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001070 return done;
1071}
1072
Eric Dumazet51151a12013-06-23 08:17:56 -07001073static const int frag_sizes[] = {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001074 FRAG_SZ0,
1075 FRAG_SZ1,
1076 FRAG_SZ2,
1077 FRAG_SZ3
1078};
1079
1080void mlx4_en_calc_rx_buf(struct net_device *dev)
1081{
1082 struct mlx4_en_priv *priv = netdev_priv(dev);
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001083 /* VLAN_HLEN is added twice,to support skb vlan tagged with multiple
1084 * headers. (For example: ETH_P_8021Q and ETH_P_8021AD).
1085 */
1086 int eff_mtu = dev->mtu + ETH_HLEN + (2 * VLAN_HLEN);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001087 int buf_size = 0;
1088 int i = 0;
1089
1090 while (buf_size < eff_mtu) {
1091 priv->frag_info[i].frag_size =
1092 (eff_mtu > buf_size + frag_sizes[i]) ?
1093 frag_sizes[i] : eff_mtu - buf_size;
1094 priv->frag_info[i].frag_prefix_size = buf_size;
Ido Shamaye8e7f012015-02-03 17:57:20 +02001095 priv->frag_info[i].frag_stride =
1096 ALIGN(priv->frag_info[i].frag_size,
1097 SMP_CACHE_BYTES);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001098 buf_size += priv->frag_info[i].frag_size;
1099 i++;
1100 }
1101
1102 priv->num_frags = i;
1103 priv->rx_skb_size = eff_mtu;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001104 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001105
Joe Perches1a91de22014-05-07 12:52:57 -07001106 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
1107 eff_mtu, priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001108 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -07001109 en_err(priv,
Ido Shamay5f6e9802014-11-02 16:26:15 +02001110 " frag:%d - size:%d prefix:%d stride:%d\n",
Eric Dumazet51151a12013-06-23 08:17:56 -07001111 i,
1112 priv->frag_info[i].frag_size,
1113 priv->frag_info[i].frag_prefix_size,
Eric Dumazet51151a12013-06-23 08:17:56 -07001114 priv->frag_info[i].frag_stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001115 }
1116}
1117
1118/* RSS related functions */
1119
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001120static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
1121 struct mlx4_en_rx_ring *ring,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001122 enum mlx4_qp_state *state,
1123 struct mlx4_qp *qp)
1124{
1125 struct mlx4_en_dev *mdev = priv->mdev;
1126 struct mlx4_qp_context *context;
1127 int err = 0;
1128
Joe Perches14f8dc42013-02-07 11:46:27 +00001129 context = kmalloc(sizeof(*context), GFP_KERNEL);
1130 if (!context)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001131 return -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001132
Jiri Kosina40f22872014-05-11 15:15:12 +03001133 err = mlx4_qp_alloc(mdev->dev, qpn, qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001134 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001135 en_err(priv, "Failed to allocate qp #%x\n", qpn);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001136 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001137 }
1138 qp->event = mlx4_en_sqp_event;
1139
1140 memset(context, 0, sizeof *context);
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +00001141 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
Amir Vadai0e98b522012-04-04 21:33:24 +00001142 qpn, ring->cqn, -1, context);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001143 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001144
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001145 /* Cancel FCS removal if FW allows */
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001146 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001147 context->param3 |= cpu_to_be32(1 << 29);
Muhammad Mahajnaf0df3502015-04-02 16:31:21 +03001148 if (priv->dev->features & NETIF_F_RXFCS)
1149 ring->fcs_del = 0;
1150 else
1151 ring->fcs_del = ETH_FCS_LEN;
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001152 } else
1153 ring->fcs_del = 0;
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001154
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001155 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001156 if (err) {
1157 mlx4_qp_remove(mdev->dev, qp);
1158 mlx4_qp_free(mdev->dev, qp);
1159 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001160 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001161out:
1162 kfree(context);
1163 return err;
1164}
1165
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001166int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
1167{
1168 int err;
1169 u32 qpn;
1170
Matan Barakd57febe2014-12-11 10:57:57 +02001171 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn,
1172 MLX4_RESERVE_A0_QP);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001173 if (err) {
1174 en_err(priv, "Failed reserving drop qpn\n");
1175 return err;
1176 }
Jiri Kosina40f22872014-05-11 15:15:12 +03001177 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp, GFP_KERNEL);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001178 if (err) {
1179 en_err(priv, "Failed allocating drop qp\n");
1180 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1181 return err;
1182 }
1183
1184 return 0;
1185}
1186
1187void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
1188{
1189 u32 qpn;
1190
1191 qpn = priv->drop_qp.qpn;
1192 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
1193 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
1194 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1195}
1196
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001197/* Allocate rx qp's and configure them according to rss map */
1198int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
1199{
1200 struct mlx4_en_dev *mdev = priv->mdev;
1201 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1202 struct mlx4_qp_context context;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001203 struct mlx4_rss_context *rss_context;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001204 int rss_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001205 void *ptr;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001206 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
Or Gerlitz1202d462011-11-26 19:55:02 +00001207 MLX4_RSS_TCP_IPV6);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001208 int i, qpn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001209 int err = 0;
1210 int good_qps = 0;
1211
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001212 en_dbg(DRV, priv, "Configuring rss steering\n");
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001213 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
1214 priv->rx_ring_num,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02001215 &rss_map->base_qpn, 0);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001216 if (err) {
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001217 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001218 return err;
1219 }
1220
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001221 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001222 qpn = rss_map->base_qpn + i;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001223 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001224 &rss_map->state[i],
1225 &rss_map->qps[i]);
1226 if (err)
1227 goto rss_err;
1228
1229 ++good_qps;
1230 }
1231
1232 /* Configure RSS indirection qp */
Jiri Kosina40f22872014-05-11 15:15:12 +03001233 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, &rss_map->indir_qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001234 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001235 en_err(priv, "Failed to allocate RSS indirection QP\n");
Yevgeny Petrilin16792002011-03-22 22:38:31 +00001236 goto rss_err;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001237 }
1238 rss_map->indir_qp.event = mlx4_en_sqp_event;
1239 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001240 priv->rx_ring[0]->cqn, -1, &context);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001241
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001242 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1243 rss_rings = priv->rx_ring_num;
1244 else
1245 rss_rings = priv->prof->rss_rings;
1246
Or Gerlitz876f6e62011-11-26 19:54:58 +00001247 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
1248 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
Joe Perches43d620c2011-06-16 19:08:06 +00001249 rss_context = ptr;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001250 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001251 (rss_map->base_qpn));
Yevgeny Petrilin89efea22011-12-19 21:53:38 +00001252 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
Or Gerlitz1202d462011-11-26 19:55:02 +00001253 if (priv->mdev->profile.udp_rss) {
1254 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
1255 rss_context->base_qpn_udp = rss_context->default_qpn;
1256 }
Or Gerlitz837052d2013-12-23 16:09:44 +02001257
1258 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1259 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
1260 rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
1261 }
1262
Yevgeny Petrilin05339432010-08-24 03:46:42 +00001263 rss_context->flags = rss_mask;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001264 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
Eyal Perry947cbb02014-12-02 18:12:11 +02001265 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
1266 rss_context->hash_fn = MLX4_RSS_HASH_XOR;
1267 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
1268 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1269 memcpy(rss_context->rss_key, priv->rss_key,
1270 MLX4_EN_RSS_KEY_SIZE);
1271 netdev_rss_key_fill(rss_context->rss_key,
1272 MLX4_EN_RSS_KEY_SIZE);
1273 } else {
1274 en_err(priv, "Unknown RSS hash function requested\n");
1275 err = -EINVAL;
1276 goto indir_err;
1277 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001278 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
1279 &rss_map->indir_qp, &rss_map->indir_state);
1280 if (err)
1281 goto indir_err;
1282
1283 return 0;
1284
1285indir_err:
1286 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1287 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1288 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1289 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001290rss_err:
1291 for (i = 0; i < good_qps; i++) {
1292 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1293 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1294 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1295 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1296 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001297 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001298 return err;
1299}
1300
1301void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
1302{
1303 struct mlx4_en_dev *mdev = priv->mdev;
1304 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1305 int i;
1306
1307 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1308 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1309 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1310 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001311
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001312 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001313 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1314 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1315 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1316 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1317 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001318 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001319}