blob: 4ca396e3168f848fd44d3dcc910909147ceaa1aa [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;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700165 }
166 return 0;
167
168out:
169 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700170 struct page *page;
171
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700172 page_alloc = &ring->page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000173 dma_unmap_page(priv->ddev, page_alloc->dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200174 page_alloc->page_size, PCI_DMA_FROMDEVICE);
Eric Dumazet51151a12013-06-23 08:17:56 -0700175 page = page_alloc->page;
176 atomic_set(&page->_count, 1);
177 put_page(page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700178 page_alloc->page = NULL;
179 }
180 return -ENOMEM;
181}
182
183static void mlx4_en_destroy_allocator(struct mlx4_en_priv *priv,
184 struct mlx4_en_rx_ring *ring)
185{
186 struct mlx4_en_rx_alloc *page_alloc;
187 int i;
188
189 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700190 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
191
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700192 page_alloc = &ring->page_alloc[i];
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000193 en_dbg(DRV, priv, "Freeing allocator:%d count:%d\n",
194 i, page_count(page_alloc->page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700195
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000196 dma_unmap_page(priv->ddev, page_alloc->dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200197 page_alloc->page_size, PCI_DMA_FROMDEVICE);
198 while (page_alloc->page_offset + frag_info->frag_stride <
199 page_alloc->page_size) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700200 put_page(page_alloc->page);
Amir Vadai70fbe072013-10-07 13:38:12 +0200201 page_alloc->page_offset += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700202 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700203 page_alloc->page = NULL;
204 }
205}
206
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700207static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv,
208 struct mlx4_en_rx_ring *ring, int index)
209{
210 struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700211 int possible_frags;
212 int i;
213
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700214 /* Set size and memtype fields */
215 for (i = 0; i < priv->num_frags; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700216 rx_desc->data[i].byte_count =
217 cpu_to_be32(priv->frag_info[i].frag_size);
218 rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
219 }
220
221 /* If the number of used fragments does not fill up the ring stride,
222 * remaining (unused) fragments must be padded with null address/size
223 * and a special memory key */
224 possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
225 for (i = priv->num_frags; i < possible_frags; i++) {
226 rx_desc->data[i].byte_count = 0;
227 rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
228 rx_desc->data[i].addr = 0;
229 }
230}
231
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700232static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
Eric Dumazet51151a12013-06-23 08:17:56 -0700233 struct mlx4_en_rx_ring *ring, int index,
234 gfp_t gfp)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700235{
236 struct mlx4_en_rx_desc *rx_desc = ring->buf + (index * ring->stride);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000237 struct mlx4_en_rx_alloc *frags = ring->rx_info +
238 (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700239
Eric Dumazet51151a12013-06-23 08:17:56 -0700240 return mlx4_en_alloc_frags(priv, rx_desc, frags, ring->page_alloc, gfp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700241}
242
243static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
244{
245 *ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
246}
247
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000248static void mlx4_en_free_rx_desc(struct mlx4_en_priv *priv,
249 struct mlx4_en_rx_ring *ring,
250 int index)
251{
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000252 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000253 int nr;
254
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000255 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000256 for (nr = 0; nr < priv->num_frags; nr++) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000257 en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000258 mlx4_en_free_frag(priv, frags, nr);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000259 }
260}
261
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700262static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
263{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700264 struct mlx4_en_rx_ring *ring;
265 int ring_ind;
266 int buf_ind;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000267 int new_size;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700268
269 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
270 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200271 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700272
273 if (mlx4_en_prepare_rx_desc(priv, ring,
Eric Dumazet51151a12013-06-23 08:17:56 -0700274 ring->actual_size,
Ido Shamay1ab25f82014-11-02 16:26:16 +0200275 GFP_KERNEL | __GFP_COLD)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700276 if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
Joe Perches1a91de22014-05-07 12:52:57 -0700277 en_err(priv, "Failed to allocate enough rx buffers\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700278 return -ENOMEM;
279 } else {
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000280 new_size = rounddown_pow_of_two(ring->actual_size);
Joe Perches1a91de22014-05-07 12:52:57 -0700281 en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000282 ring->actual_size, new_size);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000283 goto reduce_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700284 }
285 }
286 ring->actual_size++;
287 ring->prod++;
288 }
289 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000290 return 0;
291
292reduce_rings:
293 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200294 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000295 while (ring->actual_size > new_size) {
296 ring->actual_size--;
297 ring->prod--;
298 mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
299 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000300 }
301
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700302 return 0;
303}
304
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700305static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
306 struct mlx4_en_rx_ring *ring)
307{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700308 int index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700309
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000310 en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
311 ring->cons, ring->prod);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700312
313 /* Unmap and free Rx buffers */
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000314 BUG_ON((u32) (ring->prod - ring->cons) > ring->actual_size);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700315 while (ring->cons != ring->prod) {
316 index = ring->cons & ring->size_mask;
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000317 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000318 mlx4_en_free_rx_desc(priv, ring, index);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700319 ++ring->cons;
320 }
321}
322
Ido Shamay02512482014-02-21 12:39:17 +0200323void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
324{
325 int i;
326 int num_of_eqs;
Ido Shamaybb2146b2014-02-21 12:39:18 +0200327 int num_rx_rings;
Ido Shamay02512482014-02-21 12:39:17 +0200328 struct mlx4_dev *dev = mdev->dev;
329
330 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
331 if (!dev->caps.comp_pool)
332 num_of_eqs = max_t(int, MIN_RX_RINGS,
333 min_t(int,
334 dev->caps.num_comp_vectors,
335 DEF_RX_RINGS));
336 else
337 num_of_eqs = min_t(int, MAX_MSIX_P_PORT,
338 dev->caps.comp_pool/
339 dev->caps.num_ports) - 1;
340
Amir Vadaiea1c1af2014-07-22 15:44:12 +0300341 num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
342 min_t(int, num_of_eqs,
343 netif_get_num_default_rss_queues());
Ido Shamay02512482014-02-21 12:39:17 +0200344 mdev->profile.prof[i].rx_ring_num =
Ido Shamaybb2146b2014-02-21 12:39:18 +0200345 rounddown_pow_of_two(num_rx_rings);
Ido Shamay02512482014-02-21 12:39:17 +0200346 }
347}
348
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700349int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200350 struct mlx4_en_rx_ring **pring,
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200351 u32 size, u16 stride, int node)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700352{
353 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200354 struct mlx4_en_rx_ring *ring;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000355 int err = -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700356 int tmp;
357
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200358 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200359 if (!ring) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200360 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
361 if (!ring) {
362 en_err(priv, "Failed to allocate RX ring structure\n");
363 return -ENOMEM;
364 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200365 }
366
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700367 ring->prod = 0;
368 ring->cons = 0;
369 ring->size = size;
370 ring->size_mask = size - 1;
371 ring->stride = stride;
372 ring->log_stride = ffs(ring->stride) - 1;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700373 ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700374
375 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000376 sizeof(struct mlx4_en_rx_alloc));
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200377 ring->rx_info = vmalloc_node(tmp, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200378 if (!ring->rx_info) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200379 ring->rx_info = vmalloc(tmp);
380 if (!ring->rx_info) {
381 err = -ENOMEM;
382 goto err_ring;
383 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200384 }
Joe Perchese404dec2012-01-29 12:56:23 +0000385
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000386 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700387 ring->rx_info, tmp);
388
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200389 /* Allocate HW buffers on provided NUMA node */
390 set_dev_node(&mdev->dev->pdev->dev, node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700391 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres,
392 ring->buf_size, 2 * PAGE_SIZE);
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200393 set_dev_node(&mdev->dev->pdev->dev, mdev->dev->numa_node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700394 if (err)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200395 goto err_info;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700396
397 err = mlx4_en_map_buffer(&ring->wqres.buf);
398 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000399 en_err(priv, "Failed to map RX buffer\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700400 goto err_hwq;
401 }
402 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
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700409err_hwq:
410 mlx4_free_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200411err_info:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700412 vfree(ring->rx_info);
413 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200414err_ring:
415 kfree(ring);
416 *pring = NULL;
417
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700418 return err;
419}
420
421int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
422{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700423 struct mlx4_en_rx_ring *ring;
424 int i;
425 int ring_ind;
426 int err;
427 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
428 DS_SIZE * priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700429
430 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200431 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700432
433 ring->prod = 0;
434 ring->cons = 0;
435 ring->actual_size = 0;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200436 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700437
438 ring->stride = stride;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700439 if (ring->stride <= TXBB_SIZE)
440 ring->buf += TXBB_SIZE;
441
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700442 ring->log_stride = ffs(ring->stride) - 1;
443 ring->buf_size = ring->size * ring->stride;
444
445 memset(ring->buf, 0, ring->buf_size);
446 mlx4_en_update_rx_prod_db(ring);
447
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000448 /* Initialize all descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700449 for (i = 0; i < ring->size; i++)
450 mlx4_en_init_rx_desc(priv, ring, i);
451
452 /* Initialize page allocators */
453 err = mlx4_en_init_allocator(priv, ring);
454 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000455 en_err(priv, "Failed initializing ring allocator\n");
Yevgeny Petrilin60b18092011-04-06 23:25:45 +0000456 if (ring->stride <= TXBB_SIZE)
457 ring->buf -= TXBB_SIZE;
Yevgeny Petrilin9a4f92a2009-04-20 04:24:28 +0000458 ring_ind--;
459 goto err_allocator;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700460 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700461 }
Ingo Molnarb58515b2008-11-25 16:53:32 -0800462 err = mlx4_en_fill_rx_buffers(priv);
463 if (err)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700464 goto err_buffers;
465
466 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200467 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700468
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +0000469 ring->size_mask = ring->actual_size - 1;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700470 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700471 }
472
473 return 0;
474
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700475err_buffers:
476 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200477 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700478
479 ring_ind = priv->rx_ring_num - 1;
480err_allocator:
481 while (ring_ind >= 0) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200482 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
483 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
484 mlx4_en_destroy_allocator(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700485 ring_ind--;
486 }
487 return err;
488}
489
490void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200491 struct mlx4_en_rx_ring **pring,
492 u32 size, u16 stride)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700493{
494 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200495 struct mlx4_en_rx_ring *ring = *pring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700496
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700497 mlx4_en_unmap_buffer(&ring->wqres.buf);
Thadeu Lima de Souza Cascardo68355f72012-02-06 08:39:49 +0000498 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700499 vfree(ring->rx_info);
500 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200501 kfree(ring);
502 *pring = NULL;
Amir Vadai1eb8c692012-07-18 22:33:52 +0000503#ifdef CONFIG_RFS_ACCEL
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200504 mlx4_en_cleanup_filters(priv);
Amir Vadai1eb8c692012-07-18 22:33:52 +0000505#endif
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700506}
507
508void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
509 struct mlx4_en_rx_ring *ring)
510{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700511 mlx4_en_free_rx_buf(priv, ring);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700512 if (ring->stride <= TXBB_SIZE)
513 ring->buf -= TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700514 mlx4_en_destroy_allocator(priv, ring);
515}
516
517
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700518static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
519 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000520 struct mlx4_en_rx_alloc *frags,
Eric Dumazet90278c92011-10-19 18:49:52 +0000521 struct sk_buff *skb,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700522 int length)
523{
Eric Dumazet90278c92011-10-19 18:49:52 +0000524 struct skb_frag_struct *skb_frags_rx = skb_shinfo(skb)->frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700525 struct mlx4_en_frag_info *frag_info;
526 int nr;
527 dma_addr_t dma;
528
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000529 /* Collect used fragments while replacing them in the HW descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700530 for (nr = 0; nr < priv->num_frags; nr++) {
531 frag_info = &priv->frag_info[nr];
532 if (length <= frag_info->frag_prefix_size)
533 break;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000534 if (!frags[nr].page)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700535 goto fail;
536
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000537 dma = be64_to_cpu(rx_desc->data[nr].addr);
538 dma_sync_single_for_cpu(priv->ddev, dma, frag_info->frag_size,
539 DMA_FROM_DEVICE);
540
541 /* Save page reference in skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000542 __skb_frag_set_page(&skb_frags_rx[nr], frags[nr].page);
543 skb_frag_size_set(&skb_frags_rx[nr], frag_info->frag_size);
Amir Vadai70fbe072013-10-07 13:38:12 +0200544 skb_frags_rx[nr].page_offset = frags[nr].page_offset;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000545 skb->truesize += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700546 frags[nr].page = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700547 }
548 /* Adjust size of last fragment to match actual length */
roel kluin973507c2009-08-08 23:54:21 +0000549 if (nr > 0)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000550 skb_frag_size_set(&skb_frags_rx[nr - 1],
551 length - priv->frag_info[nr - 1].frag_prefix_size);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700552 return nr;
553
554fail:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700555 while (nr > 0) {
556 nr--;
Ian Campbell311761c2011-10-19 23:01:45 +0000557 __skb_frag_unref(&skb_frags_rx[nr]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700558 }
559 return 0;
560}
561
562
563static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv,
564 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000565 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700566 unsigned int length)
567{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700568 struct sk_buff *skb;
569 void *va;
570 int used_frags;
571 dma_addr_t dma;
572
Pradeep A Dalvic056b732012-02-05 02:50:38 +0000573 skb = netdev_alloc_skb(priv->dev, SMALL_PACKET_SIZE + NET_IP_ALIGN);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700574 if (!skb) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000575 en_dbg(RX_ERR, priv, "Failed allocating skb\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700576 return NULL;
577 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700578 skb_reserve(skb, NET_IP_ALIGN);
579 skb->len = length;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700580
581 /* Get pointer to first fragment so we could copy the headers into the
582 * (linear part of the) skb */
Amir Vadai70fbe072013-10-07 13:38:12 +0200583 va = page_address(frags[0].page) + frags[0].page_offset;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700584
585 if (length <= SMALL_PACKET_SIZE) {
586 /* We are copying all relevant data to the skb - temporarily
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000587 * sync buffers for the copy */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700588 dma = be64_to_cpu(rx_desc->data[0].addr);
Yevgeny Petrilinebf8c9a2012-03-06 04:03:34 +0000589 dma_sync_single_for_cpu(priv->ddev, dma, length,
FUJITA Tomonorie4fc8562010-02-04 18:57:42 +0000590 DMA_FROM_DEVICE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700591 skb_copy_to_linear_data(skb, va, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700592 skb->tail += length;
593 } else {
Eric Dumazetcfecec52014-09-05 18:29:45 -0700594 unsigned int pull_len;
595
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700596 /* Move relevant fragments to skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000597 used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, frags,
598 skb, length);
Yevgeny Petrilin785a09822009-04-26 20:42:57 +0000599 if (unlikely(!used_frags)) {
600 kfree_skb(skb);
601 return NULL;
602 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700603 skb_shinfo(skb)->nr_frags = used_frags;
604
Eric Dumazetcfecec52014-09-05 18:29:45 -0700605 pull_len = eth_get_headlen(va, SMALL_PACKET_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700606 /* Copy headers into the skb linear buffer */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700607 memcpy(skb->data, va, pull_len);
608 skb->tail += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700609
610 /* Skip headers in first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700611 skb_shinfo(skb)->frags[0].page_offset += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700612
613 /* Adjust size of first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700614 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], pull_len);
615 skb->data_len = length - pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700616 }
617 return skb;
618}
619
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000620static void validate_loopback(struct mlx4_en_priv *priv, struct sk_buff *skb)
621{
622 int i;
623 int offset = ETH_HLEN;
624
625 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++, offset++) {
626 if (*(skb->data + offset) != (unsigned char) (i & 0xff))
627 goto out_loopback;
628 }
629 /* Loopback found */
630 priv->loopback_ok = 1;
631
632out_loopback:
633 dev_kfree_skb_any(skb);
634}
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700635
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000636static void mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
637 struct mlx4_en_rx_ring *ring)
638{
639 int index = ring->prod & ring->size_mask;
640
641 while ((u32) (ring->prod - ring->cons) < ring->actual_size) {
Ido Shamay1ab25f82014-11-02 16:26:16 +0200642 if (mlx4_en_prepare_rx_desc(priv, ring, index,
643 GFP_ATOMIC | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000644 break;
645 ring->prod++;
646 index = ring->prod & ring->size_mask;
647 }
648}
649
Shani Michaelif8c64552014-11-09 13:51:53 +0200650/* When hardware doesn't strip the vlan, we need to calculate the checksum
651 * over it and add it to the hardware's checksum calculation
652 */
653static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
654 struct vlan_hdr *vlanh)
655{
656 return csum_add(hw_checksum, *(__wsum *)vlanh);
657}
658
659/* Although the stack expects checksum which doesn't include the pseudo
660 * header, the HW adds it. To address that, we are subtracting the pseudo
661 * header checksum from the checksum value provided by the HW.
662 */
663static void get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
664 struct iphdr *iph)
665{
666 __u16 length_for_csum = 0;
667 __wsum csum_pseudo_header = 0;
668
669 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
670 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
671 length_for_csum, iph->protocol, 0);
672 skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
673}
674
675#if IS_ENABLED(CONFIG_IPV6)
676/* In IPv6 packets, besides subtracting the pseudo header checksum,
677 * we also compute/add the IP header checksum which
678 * is not added by the HW.
679 */
680static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
681 struct ipv6hdr *ipv6h)
682{
683 __wsum csum_pseudo_hdr = 0;
684
685 if (ipv6h->nexthdr == IPPROTO_FRAGMENT || ipv6h->nexthdr == IPPROTO_HOPOPTS)
686 return -1;
687 hw_checksum = csum_add(hw_checksum, (__force __wsum)(ipv6h->nexthdr << 8));
688
689 csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
690 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
691 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
692 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ntohs(ipv6h->nexthdr));
693
694 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
695 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
696 return 0;
697}
698#endif
699static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
700 int hwtstamp_rx_filter)
701{
702 __wsum hw_checksum = 0;
703
704 void *hdr = (u8 *)va + sizeof(struct ethhdr);
705
706 hw_checksum = csum_unfold((__force __sum16)cqe->checksum);
707
708 if (((struct ethhdr *)va)->h_proto == htons(ETH_P_8021Q) &&
709 hwtstamp_rx_filter != HWTSTAMP_FILTER_NONE) {
710 /* next protocol non IPv4 or IPv6 */
711 if (((struct vlan_hdr *)hdr)->h_vlan_encapsulated_proto
712 != htons(ETH_P_IP) &&
713 ((struct vlan_hdr *)hdr)->h_vlan_encapsulated_proto
714 != htons(ETH_P_IPV6))
715 return -1;
716 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
717 hdr += sizeof(struct vlan_hdr);
718 }
719
720 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
721 get_fixed_ipv4_csum(hw_checksum, skb, hdr);
722#if IS_ENABLED(CONFIG_IPV6)
723 else if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
724 if (get_fixed_ipv6_csum(hw_checksum, skb, hdr))
725 return -1;
726#endif
727 return 0;
728}
729
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700730int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
731{
732 struct mlx4_en_priv *priv = netdev_priv(dev);
Amir Vadaiec693d42013-04-23 06:06:49 +0000733 struct mlx4_en_dev *mdev = priv->mdev;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700734 struct mlx4_cqe *cqe;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200735 struct mlx4_en_rx_ring *ring = priv->rx_ring[cq->ring];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000736 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700737 struct mlx4_en_rx_desc *rx_desc;
738 struct sk_buff *skb;
739 int index;
740 int nr;
741 unsigned int length;
742 int polled = 0;
743 int ip_summed;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000744 int factor = priv->cqe_factor;
Amir Vadaiec693d42013-04-23 06:06:49 +0000745 u64 timestamp;
Or Gerlitz837052d2013-12-23 16:09:44 +0200746 bool l2_tunnel;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700747
748 if (!priv->port_up)
749 return 0;
750
Eric W. Biederman38be0a32014-03-14 18:05:58 -0700751 if (budget <= 0)
752 return polled;
753
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700754 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
755 * descriptor offset can be deduced from the CQE index instead of
756 * reading 'cqe->index' */
757 index = cq->mcq.cons_index & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +0300758 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700759
760 /* Process all completed CQEs */
761 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
762 cq->mcq.cons_index & cq->size)) {
763
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000764 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700765 rx_desc = ring->buf + (index << ring->log_stride);
766
767 /*
768 * make sure we read the CQE after we read the ownership bit
769 */
770 rmb();
771
772 /* Drop packet on bad receive or bad checksum */
773 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
774 MLX4_CQE_OPCODE_ERROR)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700775 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
776 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
777 ((struct mlx4_err_cqe *)cqe)->syndrome);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700778 goto next;
779 }
780 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000781 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700782 goto next;
783 }
784
Yan Burman79aeacc2013-02-07 02:25:19 +0000785 /* Check if we need to drop the packet if SRIOV is not enabled
786 * and not performing the selftest or flb disabled
787 */
788 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
789 struct ethhdr *ethh;
790 dma_addr_t dma;
Yan Burman79aeacc2013-02-07 02:25:19 +0000791 /* Get pointer to first fragment since we haven't
792 * skb yet and cast it to ethhdr struct
793 */
794 dma = be64_to_cpu(rx_desc->data[0].addr);
795 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
796 DMA_FROM_DEVICE);
797 ethh = (struct ethhdr *)(page_address(frags[0].page) +
Amir Vadai70fbe072013-10-07 13:38:12 +0200798 frags[0].page_offset);
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000799
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000800 if (is_multicast_ether_addr(ethh->h_dest)) {
801 struct mlx4_mac_entry *entry;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000802 struct hlist_head *bucket;
803 unsigned int mac_hash;
804
805 /* Drop the packet, since HW loopback-ed it */
806 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
807 bucket = &priv->mac_hash[mac_hash];
808 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800809 hlist_for_each_entry_rcu(entry, bucket, hlist) {
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000810 if (ether_addr_equal_64bits(entry->mac,
811 ethh->h_source)) {
812 rcu_read_unlock();
813 goto next;
814 }
815 }
816 rcu_read_unlock();
817 }
Yan Burman79aeacc2013-02-07 02:25:19 +0000818 }
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000819
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700820 /*
821 * Packet is OK - process it.
822 */
823 length = be32_to_cpu(cqe->byte_cnt);
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -0500824 length -= ring->fcs_del;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700825 ring->bytes += length;
826 ring->packets++;
Or Gerlitz837052d2013-12-23 16:09:44 +0200827 l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
828 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700829
Michał Mirosławc8c64cf2011-04-15 04:50:49 +0000830 if (likely(dev->features & NETIF_F_RXCSUM)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200831 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
832 MLX4_CQE_STATUS_UDP)) {
833 if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
834 cqe->checksum == cpu_to_be16(0xffff)) {
835 ip_summed = CHECKSUM_UNNECESSARY;
836 ring->csum_ok++;
837 } else {
838 ip_summed = CHECKSUM_NONE;
839 ring->csum_none++;
840 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700841 } else {
Shani Michaelif8c64552014-11-09 13:51:53 +0200842 if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
843 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
844 MLX4_CQE_STATUS_IPV6))) {
845 ip_summed = CHECKSUM_COMPLETE;
846 ring->csum_complete++;
847 } else {
848 ip_summed = CHECKSUM_NONE;
849 ring->csum_none++;
850 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700851 }
852 } else {
853 ip_summed = CHECKSUM_NONE;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000854 ring->csum_none++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700855 }
856
Shani Michaelidd65bea2014-11-09 13:51:52 +0200857 /* This packet is eligible for GRO if it is:
858 * - DIX Ethernet (type interpretation)
859 * - TCP/IP (v4)
860 * - without IP options
861 * - not an IP fragment
862 * - no LLS polling in progress
863 */
864 if (!mlx4_en_cq_busy_polling(cq) &&
865 (dev->features & NETIF_F_GRO)) {
866 struct sk_buff *gro_skb = napi_get_frags(&cq->napi);
867 if (!gro_skb)
868 goto next;
869
870 nr = mlx4_en_complete_rx_desc(priv,
871 rx_desc, frags, gro_skb,
872 length);
873 if (!nr)
874 goto next;
875
Shani Michaelif8c64552014-11-09 13:51:53 +0200876 if (ip_summed == CHECKSUM_COMPLETE) {
877 void *va = skb_frag_address(skb_shinfo(gro_skb)->frags);
878 if (check_csum(cqe, gro_skb, va, ring->hwtstamp_rx_filter)) {
879 ip_summed = CHECKSUM_NONE;
880 ring->csum_none++;
881 ring->csum_complete--;
882 }
883 }
884
Shani Michaelidd65bea2014-11-09 13:51:52 +0200885 skb_shinfo(gro_skb)->nr_frags = nr;
886 gro_skb->len = length;
887 gro_skb->data_len = length;
888 gro_skb->ip_summed = ip_summed;
889
890 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
891 gro_skb->encapsulation = 1;
892 if ((cqe->vlan_my_qpn &
893 cpu_to_be32(MLX4_CQE_VLAN_PRESENT_MASK)) &&
894 (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
895 u16 vid = be16_to_cpu(cqe->sl_vid);
896
897 __vlan_hwaccel_put_tag(gro_skb, htons(ETH_P_8021Q), vid);
898 }
899
900 if (dev->features & NETIF_F_RXHASH)
901 skb_set_hash(gro_skb,
902 be32_to_cpu(cqe->immed_rss_invalid),
903 PKT_HASH_TYPE_L3);
904
905 skb_record_rx_queue(gro_skb, cq->ring);
906 skb_mark_napi_id(gro_skb, &cq->napi);
907
908 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
909 timestamp = mlx4_en_get_cqe_ts(cqe);
910 mlx4_en_fill_hwtstamps(mdev,
911 skb_hwtstamps(gro_skb),
912 timestamp);
913 }
914
915 napi_gro_frags(&cq->napi);
916 goto next;
917 }
918
919 /* GRO not possible, complete processing here */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000920 skb = mlx4_en_rx_skb(priv, rx_desc, frags, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700921 if (!skb) {
922 priv->stats.rx_dropped++;
923 goto next;
924 }
925
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000926 if (unlikely(priv->validate_loopback)) {
927 validate_loopback(priv, skb);
928 goto next;
929 }
930
Shani Michaelif8c64552014-11-09 13:51:53 +0200931 if (ip_summed == CHECKSUM_COMPLETE) {
932 if (check_csum(cqe, skb, skb->data, ring->hwtstamp_rx_filter)) {
933 ip_summed = CHECKSUM_NONE;
934 ring->csum_complete--;
935 ring->csum_none++;
936 }
937 }
938
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700939 skb->ip_summed = ip_summed;
940 skb->protocol = eth_type_trans(skb, dev);
David S. Miller0c8dfc82009-01-27 16:22:32 -0800941 skb_record_rx_queue(skb, cq->ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700942
Tom Herbert9ca86002014-08-27 21:27:53 -0700943 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
944 skb->csum_level = 1;
Or Gerlitz837052d2013-12-23 16:09:44 +0200945
Yevgeny Petrilinad861072011-10-18 01:51:24 +0000946 if (dev->features & NETIF_F_RXHASH)
Tom Herbert69174412013-12-17 23:31:23 -0800947 skb_set_hash(skb,
948 be32_to_cpu(cqe->immed_rss_invalid),
949 PKT_HASH_TYPE_L3);
Yevgeny Petrilinad861072011-10-18 01:51:24 +0000950
Amir Vadaiec693d42013-04-23 06:06:49 +0000951 if ((be32_to_cpu(cqe->vlan_my_qpn) &
952 MLX4_CQE_VLAN_PRESENT_MASK) &&
953 (dev->features & NETIF_F_HW_VLAN_CTAG_RX))
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000954 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), be16_to_cpu(cqe->sl_vid));
Jiri Pirkof1b553f2011-07-20 04:54:22 +0000955
Amir Vadaiec693d42013-04-23 06:06:49 +0000956 if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
957 timestamp = mlx4_en_get_cqe_ts(cqe);
958 mlx4_en_fill_hwtstamps(mdev, skb_hwtstamps(skb),
959 timestamp);
960 }
961
Eliezer Tamir8b80cda2013-07-10 17:13:26 +0300962 skb_mark_napi_id(skb, &cq->napi);
Amir Vadai9e77a2b2013-06-18 16:18:27 +0300963
Eric Dumazete6a76752014-01-09 10:30:13 -0800964 if (!mlx4_en_cq_busy_polling(cq))
965 napi_gro_receive(&cq->napi, skb);
966 else
967 netif_receive_skb(skb);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700968
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700969next:
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000970 for (nr = 0; nr < priv->num_frags; nr++)
971 mlx4_en_free_frag(priv, frags, nr);
972
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700973 ++cq->mcq.cons_index;
974 index = (cq->mcq.cons_index) & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +0300975 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Ben Hutchingsf1d29a32012-11-16 12:44:56 +0000976 if (++polled == budget)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700977 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700978 }
979
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700980out:
981 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
982 mlx4_cq_set_ci(&cq->mcq);
983 wmb(); /* ensure HW sees CQ consumer before we post new buffers */
984 ring->cons = cq->mcq.cons_index;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000985 mlx4_en_refill_rx_buffers(priv, ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700986 mlx4_en_update_rx_prod_db(ring);
987 return polled;
988}
989
990
991void mlx4_en_rx_irq(struct mlx4_cq *mcq)
992{
993 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
994 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
995
Eric Dumazet477b35b2014-10-29 16:54:45 -0700996 if (likely(priv->port_up))
997 napi_schedule_irqoff(&cq->napi);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700998 else
999 mlx4_en_arm_cq(priv, cq);
1000}
1001
1002/* Rx CQ polling - called by NAPI */
1003int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
1004{
1005 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
1006 struct net_device *dev = cq->dev;
1007 struct mlx4_en_priv *priv = netdev_priv(dev);
1008 int done;
1009
Amir Vadai9e77a2b2013-06-18 16:18:27 +03001010 if (!mlx4_en_cq_lock_napi(cq))
1011 return budget;
1012
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001013 done = mlx4_en_process_rx_cq(dev, cq, budget);
1014
Amir Vadai9e77a2b2013-06-18 16:18:27 +03001015 mlx4_en_cq_unlock_napi(cq);
1016
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001017 /* If we used up all the quota - we're probably not done yet... */
Yuval Atias2eacc232014-05-14 12:15:10 +03001018 if (done == budget) {
Amir Vadai35f6f452014-06-29 11:54:55 +03001019 int cpu_curr;
1020 const struct cpumask *aff;
1021
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001022 INC_PERF_COUNTER(priv->pstats.napi_quota);
Amir Vadai35f6f452014-06-29 11:54:55 +03001023
1024 cpu_curr = smp_processor_id();
1025 aff = irq_desc_get_irq_data(cq->irq_desc)->affinity;
1026
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001027 if (likely(cpumask_test_cpu(cpu_curr, aff)))
1028 return budget;
1029
1030 /* Current cpu is not according to smp_irq_affinity -
1031 * probably affinity changed. need to stop this NAPI
1032 * poll, and restart it on the right CPU
1033 */
1034 done = 0;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001035 }
Eric Dumazet1a288172014-11-06 21:10:11 -08001036 /* Done for now */
1037 napi_complete_done(napi, done);
1038 mlx4_en_arm_cq(priv, cq);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001039 return done;
1040}
1041
Eric Dumazet51151a12013-06-23 08:17:56 -07001042static const int frag_sizes[] = {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001043 FRAG_SZ0,
1044 FRAG_SZ1,
1045 FRAG_SZ2,
1046 FRAG_SZ3
1047};
1048
1049void mlx4_en_calc_rx_buf(struct net_device *dev)
1050{
1051 struct mlx4_en_priv *priv = netdev_priv(dev);
Yishai Hadasd5b8dff2014-07-08 11:25:23 +03001052 int eff_mtu = dev->mtu + ETH_HLEN + VLAN_HLEN;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001053 int buf_size = 0;
1054 int i = 0;
1055
1056 while (buf_size < eff_mtu) {
1057 priv->frag_info[i].frag_size =
1058 (eff_mtu > buf_size + frag_sizes[i]) ?
1059 frag_sizes[i] : eff_mtu - buf_size;
1060 priv->frag_info[i].frag_prefix_size = buf_size;
Ido Shamay5f6e9802014-11-02 16:26:15 +02001061 priv->frag_info[i].frag_stride = ALIGN(frag_sizes[i],
1062 SMP_CACHE_BYTES);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001063 buf_size += priv->frag_info[i].frag_size;
1064 i++;
1065 }
1066
1067 priv->num_frags = i;
1068 priv->rx_skb_size = eff_mtu;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001069 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001070
Joe Perches1a91de22014-05-07 12:52:57 -07001071 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
1072 eff_mtu, priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001073 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -07001074 en_err(priv,
Ido Shamay5f6e9802014-11-02 16:26:15 +02001075 " frag:%d - size:%d prefix:%d stride:%d\n",
Eric Dumazet51151a12013-06-23 08:17:56 -07001076 i,
1077 priv->frag_info[i].frag_size,
1078 priv->frag_info[i].frag_prefix_size,
Eric Dumazet51151a12013-06-23 08:17:56 -07001079 priv->frag_info[i].frag_stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001080 }
1081}
1082
1083/* RSS related functions */
1084
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001085static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
1086 struct mlx4_en_rx_ring *ring,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001087 enum mlx4_qp_state *state,
1088 struct mlx4_qp *qp)
1089{
1090 struct mlx4_en_dev *mdev = priv->mdev;
1091 struct mlx4_qp_context *context;
1092 int err = 0;
1093
Joe Perches14f8dc42013-02-07 11:46:27 +00001094 context = kmalloc(sizeof(*context), GFP_KERNEL);
1095 if (!context)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001096 return -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001097
Jiri Kosina40f22872014-05-11 15:15:12 +03001098 err = mlx4_qp_alloc(mdev->dev, qpn, qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001099 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001100 en_err(priv, "Failed to allocate qp #%x\n", qpn);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001101 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001102 }
1103 qp->event = mlx4_en_sqp_event;
1104
1105 memset(context, 0, sizeof *context);
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +00001106 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
Amir Vadai0e98b522012-04-04 21:33:24 +00001107 qpn, ring->cqn, -1, context);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001108 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001109
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001110 /* Cancel FCS removal if FW allows */
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001111 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001112 context->param3 |= cpu_to_be32(1 << 29);
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001113 ring->fcs_del = ETH_FCS_LEN;
1114 } else
1115 ring->fcs_del = 0;
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001116
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001117 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001118 if (err) {
1119 mlx4_qp_remove(mdev->dev, qp);
1120 mlx4_qp_free(mdev->dev, qp);
1121 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001122 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001123out:
1124 kfree(context);
1125 return err;
1126}
1127
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001128int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
1129{
1130 int err;
1131 u32 qpn;
1132
1133 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn);
1134 if (err) {
1135 en_err(priv, "Failed reserving drop qpn\n");
1136 return err;
1137 }
Jiri Kosina40f22872014-05-11 15:15:12 +03001138 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp, GFP_KERNEL);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001139 if (err) {
1140 en_err(priv, "Failed allocating drop qp\n");
1141 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1142 return err;
1143 }
1144
1145 return 0;
1146}
1147
1148void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
1149{
1150 u32 qpn;
1151
1152 qpn = priv->drop_qp.qpn;
1153 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
1154 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
1155 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1156}
1157
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001158/* Allocate rx qp's and configure them according to rss map */
1159int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
1160{
1161 struct mlx4_en_dev *mdev = priv->mdev;
1162 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1163 struct mlx4_qp_context context;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001164 struct mlx4_rss_context *rss_context;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001165 int rss_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001166 void *ptr;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001167 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
Or Gerlitz1202d462011-11-26 19:55:02 +00001168 MLX4_RSS_TCP_IPV6);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001169 int i, qpn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001170 int err = 0;
1171 int good_qps = 0;
1172
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001173 en_dbg(DRV, priv, "Configuring rss steering\n");
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001174 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
1175 priv->rx_ring_num,
1176 &rss_map->base_qpn);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001177 if (err) {
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001178 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001179 return err;
1180 }
1181
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001182 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001183 qpn = rss_map->base_qpn + i;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001184 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001185 &rss_map->state[i],
1186 &rss_map->qps[i]);
1187 if (err)
1188 goto rss_err;
1189
1190 ++good_qps;
1191 }
1192
1193 /* Configure RSS indirection qp */
Jiri Kosina40f22872014-05-11 15:15:12 +03001194 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, &rss_map->indir_qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001195 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001196 en_err(priv, "Failed to allocate RSS indirection QP\n");
Yevgeny Petrilin16792002011-03-22 22:38:31 +00001197 goto rss_err;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001198 }
1199 rss_map->indir_qp.event = mlx4_en_sqp_event;
1200 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001201 priv->rx_ring[0]->cqn, -1, &context);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001202
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001203 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1204 rss_rings = priv->rx_ring_num;
1205 else
1206 rss_rings = priv->prof->rss_rings;
1207
Or Gerlitz876f6e62011-11-26 19:54:58 +00001208 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
1209 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
Joe Perches43d620c2011-06-16 19:08:06 +00001210 rss_context = ptr;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001211 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001212 (rss_map->base_qpn));
Yevgeny Petrilin89efea22011-12-19 21:53:38 +00001213 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
Or Gerlitz1202d462011-11-26 19:55:02 +00001214 if (priv->mdev->profile.udp_rss) {
1215 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
1216 rss_context->base_qpn_udp = rss_context->default_qpn;
1217 }
Or Gerlitz837052d2013-12-23 16:09:44 +02001218
1219 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1220 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
1221 rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
1222 }
1223
Yevgeny Petrilin05339432010-08-24 03:46:42 +00001224 rss_context->flags = rss_mask;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001225 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
Eyal Perry947cbb02014-12-02 18:12:11 +02001226 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
1227 rss_context->hash_fn = MLX4_RSS_HASH_XOR;
1228 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
1229 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1230 memcpy(rss_context->rss_key, priv->rss_key,
1231 MLX4_EN_RSS_KEY_SIZE);
1232 netdev_rss_key_fill(rss_context->rss_key,
1233 MLX4_EN_RSS_KEY_SIZE);
1234 } else {
1235 en_err(priv, "Unknown RSS hash function requested\n");
1236 err = -EINVAL;
1237 goto indir_err;
1238 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001239 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
1240 &rss_map->indir_qp, &rss_map->indir_state);
1241 if (err)
1242 goto indir_err;
1243
1244 return 0;
1245
1246indir_err:
1247 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1248 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1249 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1250 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001251rss_err:
1252 for (i = 0; i < good_qps; i++) {
1253 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1254 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1255 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1256 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1257 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001258 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001259 return err;
1260}
1261
1262void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
1263{
1264 struct mlx4_en_dev *mdev = priv->mdev;
1265 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1266 int i;
1267
1268 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1269 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1270 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1271 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001272
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001273 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001274 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1275 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1276 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1277 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1278 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001279 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001280}