blob: ca3a38421ee74789abda598bc96c0b904095b8f2 [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)
Konstantin Khlebnikov04aeb562016-04-18 14:33:54 +030064 gfp |= __GFP_COMP | __GFP_NOWARN | __GFP_NOMEMALLOC;
Eric Dumazet51151a12013-06-23 08:17:56 -070065 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 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -070085 page_ref_add(page, page_alloc->page_size / frag_info->frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -070086 return 0;
87}
88
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000089static int mlx4_en_alloc_frags(struct mlx4_en_priv *priv,
90 struct mlx4_en_rx_desc *rx_desc,
91 struct mlx4_en_rx_alloc *frags,
Eric Dumazet51151a12013-06-23 08:17:56 -070092 struct mlx4_en_rx_alloc *ring_alloc,
93 gfp_t gfp)
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000094{
95 struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
Eric Dumazet51151a12013-06-23 08:17:56 -070096 const struct mlx4_en_frag_info *frag_info;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +000097 struct page *page;
98 dma_addr_t dma;
99 int i;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700100
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000101 for (i = 0; i < priv->num_frags; i++) {
102 frag_info = &priv->frag_info[i];
Eric Dumazet51151a12013-06-23 08:17:56 -0700103 page_alloc[i] = ring_alloc[i];
Amir Vadai70fbe072013-10-07 13:38:12 +0200104 page_alloc[i].page_offset += frag_info->frag_stride;
105
106 if (page_alloc[i].page_offset + frag_info->frag_stride <=
107 ring_alloc[i].page_size)
Eric Dumazet51151a12013-06-23 08:17:56 -0700108 continue;
Amir Vadai70fbe072013-10-07 13:38:12 +0200109
Eric Dumazet51151a12013-06-23 08:17:56 -0700110 if (mlx4_alloc_pages(priv, &page_alloc[i], frag_info, gfp))
111 goto out;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000112 }
113
114 for (i = 0; i < priv->num_frags; i++) {
115 frags[i] = ring_alloc[i];
Amir Vadai70fbe072013-10-07 13:38:12 +0200116 dma = ring_alloc[i].dma + ring_alloc[i].page_offset;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000117 ring_alloc[i] = page_alloc[i];
118 rx_desc->data[i].addr = cpu_to_be64(dma);
119 }
120
121 return 0;
122
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000123out:
124 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700125 if (page_alloc[i].page != ring_alloc[i].page) {
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000126 dma_unmap_page(priv->ddev, page_alloc[i].dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200127 page_alloc[i].page_size, PCI_DMA_FROMDEVICE);
Eric Dumazet51151a12013-06-23 08:17:56 -0700128 page = page_alloc[i].page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300129 /* Revert changes done by mlx4_alloc_pages */
130 page_ref_sub(page, page_alloc[i].page_size /
131 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700132 put_page(page);
133 }
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000134 }
135 return -ENOMEM;
136}
137
138static void mlx4_en_free_frag(struct mlx4_en_priv *priv,
139 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700140 int i)
141{
Eric Dumazet51151a12013-06-23 08:17:56 -0700142 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Amir Vadai021f1102013-10-07 13:38:13 +0200143 u32 next_frag_end = frags[i].page_offset + 2 * frag_info->frag_stride;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700144
Amir Vadai021f1102013-10-07 13:38:13 +0200145
146 if (next_frag_end > frags[i].page_size)
Amir Vadai70fbe072013-10-07 13:38:12 +0200147 dma_unmap_page(priv->ddev, frags[i].dma, frags[i].page_size,
148 PCI_DMA_FROMDEVICE);
Eric Dumazet51151a12013-06-23 08:17:56 -0700149
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000150 if (frags[i].page)
151 put_page(frags[i].page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700152}
153
154static int mlx4_en_init_allocator(struct mlx4_en_priv *priv,
155 struct mlx4_en_rx_ring *ring)
156{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700157 int i;
Eric Dumazet51151a12013-06-23 08:17:56 -0700158 struct mlx4_en_rx_alloc *page_alloc;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700159
160 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700161 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700162
Eric Dumazet51151a12013-06-23 08:17:56 -0700163 if (mlx4_alloc_pages(priv, &ring->page_alloc[i],
Ido Shamay1ab25f82014-11-02 16:26:16 +0200164 frag_info, GFP_KERNEL | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000165 goto out;
Ido Shamayb110d2c2015-02-03 17:57:19 +0200166
167 en_dbg(DRV, priv, " frag %d allocator: - size:%d frags:%d\n",
168 i, ring->page_alloc[i].page_size,
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700169 page_ref_count(ring->page_alloc[i].page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700170 }
171 return 0;
172
173out:
174 while (i--) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700175 struct page *page;
176
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700177 page_alloc = &ring->page_alloc[i];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000178 dma_unmap_page(priv->ddev, page_alloc->dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200179 page_alloc->page_size, PCI_DMA_FROMDEVICE);
Eric Dumazet51151a12013-06-23 08:17:56 -0700180 page = page_alloc->page;
Konstantin Khlebnikov851b10d2016-04-18 14:34:05 +0300181 /* Revert changes done by mlx4_alloc_pages */
182 page_ref_sub(page, page_alloc->page_size /
183 priv->frag_info[i].frag_stride - 1);
Eric Dumazet51151a12013-06-23 08:17:56 -0700184 put_page(page);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700185 page_alloc->page = NULL;
186 }
187 return -ENOMEM;
188}
189
190static void mlx4_en_destroy_allocator(struct mlx4_en_priv *priv,
191 struct mlx4_en_rx_ring *ring)
192{
193 struct mlx4_en_rx_alloc *page_alloc;
194 int i;
195
196 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700197 const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
198
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700199 page_alloc = &ring->page_alloc[i];
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000200 en_dbg(DRV, priv, "Freeing allocator:%d count:%d\n",
201 i, page_count(page_alloc->page));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700202
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000203 dma_unmap_page(priv->ddev, page_alloc->dma,
Amir Vadai70fbe072013-10-07 13:38:12 +0200204 page_alloc->page_size, PCI_DMA_FROMDEVICE);
205 while (page_alloc->page_offset + frag_info->frag_stride <
206 page_alloc->page_size) {
Eric Dumazet51151a12013-06-23 08:17:56 -0700207 put_page(page_alloc->page);
Amir Vadai70fbe072013-10-07 13:38:12 +0200208 page_alloc->page_offset += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700209 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700210 page_alloc->page = NULL;
211 }
212}
213
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700214static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv,
215 struct mlx4_en_rx_ring *ring, int index)
216{
217 struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700218 int possible_frags;
219 int i;
220
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700221 /* Set size and memtype fields */
222 for (i = 0; i < priv->num_frags; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700223 rx_desc->data[i].byte_count =
224 cpu_to_be32(priv->frag_info[i].frag_size);
225 rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
226 }
227
228 /* If the number of used fragments does not fill up the ring stride,
229 * remaining (unused) fragments must be padded with null address/size
230 * and a special memory key */
231 possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
232 for (i = priv->num_frags; i < possible_frags; i++) {
233 rx_desc->data[i].byte_count = 0;
234 rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
235 rx_desc->data[i].addr = 0;
236 }
237}
238
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700239static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
Eric Dumazet51151a12013-06-23 08:17:56 -0700240 struct mlx4_en_rx_ring *ring, int index,
241 gfp_t gfp)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700242{
243 struct mlx4_en_rx_desc *rx_desc = ring->buf + (index * ring->stride);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000244 struct mlx4_en_rx_alloc *frags = ring->rx_info +
245 (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700246
Eric Dumazet51151a12013-06-23 08:17:56 -0700247 return mlx4_en_alloc_frags(priv, rx_desc, frags, ring->page_alloc, gfp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700248}
249
Ido Shamay07841f92015-04-30 17:32:46 +0300250static inline bool mlx4_en_is_ring_empty(struct mlx4_en_rx_ring *ring)
251{
Ido Shamay07841f92015-04-30 17:32:46 +0300252 return ring->prod == ring->cons;
253}
254
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700255static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
256{
257 *ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
258}
259
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000260static void mlx4_en_free_rx_desc(struct mlx4_en_priv *priv,
261 struct mlx4_en_rx_ring *ring,
262 int index)
263{
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000264 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000265 int nr;
266
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000267 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000268 for (nr = 0; nr < priv->num_frags; nr++) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000269 en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000270 mlx4_en_free_frag(priv, frags, nr);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000271 }
272}
273
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700274static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
275{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700276 struct mlx4_en_rx_ring *ring;
277 int ring_ind;
278 int buf_ind;
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000279 int new_size;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700280
281 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
282 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200283 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700284
285 if (mlx4_en_prepare_rx_desc(priv, ring,
Eric Dumazet51151a12013-06-23 08:17:56 -0700286 ring->actual_size,
Ido Shamay1ab25f82014-11-02 16:26:16 +0200287 GFP_KERNEL | __GFP_COLD)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700288 if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
Joe Perches1a91de22014-05-07 12:52:57 -0700289 en_err(priv, "Failed to allocate enough rx buffers\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700290 return -ENOMEM;
291 } else {
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000292 new_size = rounddown_pow_of_two(ring->actual_size);
Joe Perches1a91de22014-05-07 12:52:57 -0700293 en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000294 ring->actual_size, new_size);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000295 goto reduce_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700296 }
297 }
298 ring->actual_size++;
299 ring->prod++;
300 }
301 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000302 return 0;
303
304reduce_rings:
305 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200306 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000307 while (ring->actual_size > new_size) {
308 ring->actual_size--;
309 ring->prod--;
310 mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
311 }
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000312 }
313
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700314 return 0;
315}
316
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700317static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
318 struct mlx4_en_rx_ring *ring)
319{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700320 int index;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700321
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000322 en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
323 ring->cons, ring->prod);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700324
325 /* Unmap and free Rx buffers */
Ido Shamay07841f92015-04-30 17:32:46 +0300326 while (!mlx4_en_is_ring_empty(ring)) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700327 index = ring->cons & ring->size_mask;
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000328 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
Yevgeny Petrilin38aab072009-05-24 03:17:11 +0000329 mlx4_en_free_rx_desc(priv, ring, index);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700330 ++ring->cons;
331 }
332}
333
Ido Shamay02512482014-02-21 12:39:17 +0200334void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
335{
336 int i;
337 int num_of_eqs;
Ido Shamaybb2146b2014-02-21 12:39:18 +0200338 int num_rx_rings;
Ido Shamay02512482014-02-21 12:39:17 +0200339 struct mlx4_dev *dev = mdev->dev;
340
341 mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
Matan Barakc66fa192015-05-31 09:30:16 +0300342 num_of_eqs = max_t(int, MIN_RX_RINGS,
343 min_t(int,
344 mlx4_get_eqs_per_port(mdev->dev, i),
345 DEF_RX_RINGS));
Ido Shamay02512482014-02-21 12:39:17 +0200346
Amir Vadaiea1c1af2014-07-22 15:44:12 +0300347 num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
348 min_t(int, num_of_eqs,
349 netif_get_num_default_rss_queues());
Ido Shamay02512482014-02-21 12:39:17 +0200350 mdev->profile.prof[i].rx_ring_num =
Ido Shamaybb2146b2014-02-21 12:39:18 +0200351 rounddown_pow_of_two(num_rx_rings);
Ido Shamay02512482014-02-21 12:39:17 +0200352 }
353}
354
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700355int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200356 struct mlx4_en_rx_ring **pring,
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200357 u32 size, u16 stride, int node)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700358{
359 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200360 struct mlx4_en_rx_ring *ring;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000361 int err = -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700362 int tmp;
363
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200364 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200365 if (!ring) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200366 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
367 if (!ring) {
368 en_err(priv, "Failed to allocate RX ring structure\n");
369 return -ENOMEM;
370 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200371 }
372
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700373 ring->prod = 0;
374 ring->cons = 0;
375 ring->size = size;
376 ring->size_mask = size - 1;
377 ring->stride = stride;
378 ring->log_stride = ffs(ring->stride) - 1;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700379 ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700380
381 tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000382 sizeof(struct mlx4_en_rx_alloc));
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200383 ring->rx_info = vmalloc_node(tmp, node);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200384 if (!ring->rx_info) {
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200385 ring->rx_info = vmalloc(tmp);
386 if (!ring->rx_info) {
387 err = -ENOMEM;
388 goto err_ring;
389 }
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200390 }
Joe Perchese404dec2012-01-29 12:56:23 +0000391
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000392 en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700393 ring->rx_info, tmp);
394
Eugenia Emantayev163561a2013-11-07 12:19:54 +0200395 /* Allocate HW buffers on provided NUMA node */
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200396 set_dev_node(&mdev->dev->persist->pdev->dev, node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700397 err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres,
398 ring->buf_size, 2 * PAGE_SIZE);
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200399 set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700400 if (err)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200401 goto err_info;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700402
403 err = mlx4_en_map_buffer(&ring->wqres.buf);
404 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000405 en_err(priv, "Failed to map RX buffer\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700406 goto err_hwq;
407 }
408 ring->buf = ring->wqres.buf.direct.buf;
409
Amir Vadaiec693d42013-04-23 06:06:49 +0000410 ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter;
411
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200412 *pring = ring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700413 return 0;
414
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700415err_hwq:
416 mlx4_free_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200417err_info:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700418 vfree(ring->rx_info);
419 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200420err_ring:
421 kfree(ring);
422 *pring = NULL;
423
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700424 return err;
425}
426
427int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
428{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700429 struct mlx4_en_rx_ring *ring;
430 int i;
431 int ring_ind;
432 int err;
433 int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
434 DS_SIZE * priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700435
436 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200437 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700438
439 ring->prod = 0;
440 ring->cons = 0;
441 ring->actual_size = 0;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200442 ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700443
444 ring->stride = stride;
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700445 if (ring->stride <= TXBB_SIZE)
446 ring->buf += TXBB_SIZE;
447
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700448 ring->log_stride = ffs(ring->stride) - 1;
449 ring->buf_size = ring->size * ring->stride;
450
451 memset(ring->buf, 0, ring->buf_size);
452 mlx4_en_update_rx_prod_db(ring);
453
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000454 /* Initialize all descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700455 for (i = 0; i < ring->size; i++)
456 mlx4_en_init_rx_desc(priv, ring, i);
457
458 /* Initialize page allocators */
459 err = mlx4_en_init_allocator(priv, ring);
460 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000461 en_err(priv, "Failed initializing ring allocator\n");
Yevgeny Petrilin60b18092011-04-06 23:25:45 +0000462 if (ring->stride <= TXBB_SIZE)
463 ring->buf -= TXBB_SIZE;
Yevgeny Petrilin9a4f92a2009-04-20 04:24:28 +0000464 ring_ind--;
465 goto err_allocator;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700466 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700467 }
Ingo Molnarb58515b2008-11-25 16:53:32 -0800468 err = mlx4_en_fill_rx_buffers(priv);
469 if (err)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700470 goto err_buffers;
471
472 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200473 ring = priv->rx_ring[ring_ind];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700474
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +0000475 ring->size_mask = ring->actual_size - 1;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700476 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700477 }
478
479 return 0;
480
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700481err_buffers:
482 for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200483 mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700484
485 ring_ind = priv->rx_ring_num - 1;
486err_allocator:
487 while (ring_ind >= 0) {
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200488 if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
489 priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
490 mlx4_en_destroy_allocator(priv, priv->rx_ring[ring_ind]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700491 ring_ind--;
492 }
493 return err;
494}
495
Ido Shamay07841f92015-04-30 17:32:46 +0300496/* We recover from out of memory by scheduling our napi poll
497 * function (mlx4_en_process_cq), which tries to allocate
498 * all missing RX buffers (call to mlx4_en_refill_rx_buffers).
499 */
500void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv)
501{
502 int ring;
503
504 if (!priv->port_up)
505 return;
506
507 for (ring = 0; ring < priv->rx_ring_num; ring++) {
508 if (mlx4_en_is_ring_empty(priv->rx_ring[ring]))
509 napi_reschedule(&priv->rx_cq[ring]->napi);
510 }
511}
512
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700513void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200514 struct mlx4_en_rx_ring **pring,
515 u32 size, u16 stride)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700516{
517 struct mlx4_en_dev *mdev = priv->mdev;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200518 struct mlx4_en_rx_ring *ring = *pring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700519
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700520 mlx4_en_unmap_buffer(&ring->wqres.buf);
Thadeu Lima de Souza Cascardo68355f72012-02-06 08:39:49 +0000521 mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700522 vfree(ring->rx_info);
523 ring->rx_info = NULL;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200524 kfree(ring);
525 *pring = NULL;
Amir Vadai1eb8c692012-07-18 22:33:52 +0000526#ifdef CONFIG_RFS_ACCEL
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200527 mlx4_en_cleanup_filters(priv);
Amir Vadai1eb8c692012-07-18 22:33:52 +0000528#endif
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700529}
530
531void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
532 struct mlx4_en_rx_ring *ring)
533{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700534 mlx4_en_free_rx_buf(priv, ring);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -0700535 if (ring->stride <= TXBB_SIZE)
536 ring->buf -= TXBB_SIZE;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700537 mlx4_en_destroy_allocator(priv, ring);
538}
539
540
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700541static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
542 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000543 struct mlx4_en_rx_alloc *frags,
Eric Dumazet90278c92011-10-19 18:49:52 +0000544 struct sk_buff *skb,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700545 int length)
546{
Eric Dumazet90278c92011-10-19 18:49:52 +0000547 struct skb_frag_struct *skb_frags_rx = skb_shinfo(skb)->frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700548 struct mlx4_en_frag_info *frag_info;
549 int nr;
550 dma_addr_t dma;
551
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000552 /* Collect used fragments while replacing them in the HW descriptors */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700553 for (nr = 0; nr < priv->num_frags; nr++) {
554 frag_info = &priv->frag_info[nr];
555 if (length <= frag_info->frag_prefix_size)
556 break;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000557 if (!frags[nr].page)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700558 goto fail;
559
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000560 dma = be64_to_cpu(rx_desc->data[nr].addr);
561 dma_sync_single_for_cpu(priv->ddev, dma, frag_info->frag_size,
562 DMA_FROM_DEVICE);
563
564 /* Save page reference in skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000565 __skb_frag_set_page(&skb_frags_rx[nr], frags[nr].page);
566 skb_frag_size_set(&skb_frags_rx[nr], frag_info->frag_size);
Amir Vadai70fbe072013-10-07 13:38:12 +0200567 skb_frags_rx[nr].page_offset = frags[nr].page_offset;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000568 skb->truesize += frag_info->frag_stride;
Eric Dumazet51151a12013-06-23 08:17:56 -0700569 frags[nr].page = NULL;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700570 }
571 /* Adjust size of last fragment to match actual length */
roel kluin973507c2009-08-08 23:54:21 +0000572 if (nr > 0)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000573 skb_frag_size_set(&skb_frags_rx[nr - 1],
574 length - priv->frag_info[nr - 1].frag_prefix_size);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700575 return nr;
576
577fail:
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700578 while (nr > 0) {
579 nr--;
Ian Campbell311761c2011-10-19 23:01:45 +0000580 __skb_frag_unref(&skb_frags_rx[nr]);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700581 }
582 return 0;
583}
584
585
586static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv,
587 struct mlx4_en_rx_desc *rx_desc,
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000588 struct mlx4_en_rx_alloc *frags,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700589 unsigned int length)
590{
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700591 struct sk_buff *skb;
592 void *va;
593 int used_frags;
594 dma_addr_t dma;
595
Pradeep A Dalvic056b732012-02-05 02:50:38 +0000596 skb = netdev_alloc_skb(priv->dev, SMALL_PACKET_SIZE + NET_IP_ALIGN);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700597 if (!skb) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000598 en_dbg(RX_ERR, priv, "Failed allocating skb\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700599 return NULL;
600 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700601 skb_reserve(skb, NET_IP_ALIGN);
602 skb->len = length;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700603
604 /* Get pointer to first fragment so we could copy the headers into the
605 * (linear part of the) skb */
Amir Vadai70fbe072013-10-07 13:38:12 +0200606 va = page_address(frags[0].page) + frags[0].page_offset;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700607
608 if (length <= SMALL_PACKET_SIZE) {
609 /* We are copying all relevant data to the skb - temporarily
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000610 * sync buffers for the copy */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700611 dma = be64_to_cpu(rx_desc->data[0].addr);
Yevgeny Petrilinebf8c9a2012-03-06 04:03:34 +0000612 dma_sync_single_for_cpu(priv->ddev, dma, length,
FUJITA Tomonorie4fc8562010-02-04 18:57:42 +0000613 DMA_FROM_DEVICE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700614 skb_copy_to_linear_data(skb, va, length);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700615 skb->tail += length;
616 } else {
Eric Dumazetcfecec52014-09-05 18:29:45 -0700617 unsigned int pull_len;
618
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700619 /* Move relevant fragments to skb */
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000620 used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, frags,
621 skb, length);
Yevgeny Petrilin785a09822009-04-26 20:42:57 +0000622 if (unlikely(!used_frags)) {
623 kfree_skb(skb);
624 return NULL;
625 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700626 skb_shinfo(skb)->nr_frags = used_frags;
627
Eric Dumazetcfecec52014-09-05 18:29:45 -0700628 pull_len = eth_get_headlen(va, SMALL_PACKET_SIZE);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700629 /* Copy headers into the skb linear buffer */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700630 memcpy(skb->data, va, pull_len);
631 skb->tail += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700632
633 /* Skip headers in first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700634 skb_shinfo(skb)->frags[0].page_offset += pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700635
636 /* Adjust size of first fragment */
Eric Dumazetcfecec52014-09-05 18:29:45 -0700637 skb_frag_size_sub(&skb_shinfo(skb)->frags[0], pull_len);
638 skb->data_len = length - pull_len;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700639 }
640 return skb;
641}
642
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000643static void validate_loopback(struct mlx4_en_priv *priv, struct sk_buff *skb)
644{
645 int i;
646 int offset = ETH_HLEN;
647
648 for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++, offset++) {
649 if (*(skb->data + offset) != (unsigned char) (i & 0xff))
650 goto out_loopback;
651 }
652 /* Loopback found */
653 priv->loopback_ok = 1;
654
655out_loopback:
656 dev_kfree_skb_any(skb);
657}
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700658
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000659static void mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
660 struct mlx4_en_rx_ring *ring)
661{
662 int index = ring->prod & ring->size_mask;
663
664 while ((u32) (ring->prod - ring->cons) < ring->actual_size) {
Ido Shamay1ab25f82014-11-02 16:26:16 +0200665 if (mlx4_en_prepare_rx_desc(priv, ring, index,
666 GFP_ATOMIC | __GFP_COLD))
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000667 break;
668 ring->prod++;
669 index = ring->prod & ring->size_mask;
670 }
671}
672
Shani Michaelif8c64552014-11-09 13:51:53 +0200673/* When hardware doesn't strip the vlan, we need to calculate the checksum
674 * over it and add it to the hardware's checksum calculation
675 */
676static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
677 struct vlan_hdr *vlanh)
678{
679 return csum_add(hw_checksum, *(__wsum *)vlanh);
680}
681
682/* Although the stack expects checksum which doesn't include the pseudo
683 * header, the HW adds it. To address that, we are subtracting the pseudo
684 * header checksum from the checksum value provided by the HW.
685 */
686static void get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
687 struct iphdr *iph)
688{
689 __u16 length_for_csum = 0;
690 __wsum csum_pseudo_header = 0;
691
692 length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
693 csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
694 length_for_csum, iph->protocol, 0);
695 skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
696}
697
698#if IS_ENABLED(CONFIG_IPV6)
699/* In IPv6 packets, besides subtracting the pseudo header checksum,
700 * we also compute/add the IP header checksum which
701 * is not added by the HW.
702 */
703static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
704 struct ipv6hdr *ipv6h)
705{
706 __wsum csum_pseudo_hdr = 0;
707
708 if (ipv6h->nexthdr == IPPROTO_FRAGMENT || ipv6h->nexthdr == IPPROTO_HOPOPTS)
709 return -1;
Daniel Jurgens82d69202016-05-04 15:00:33 +0300710 hw_checksum = csum_add(hw_checksum, (__force __wsum)htons(ipv6h->nexthdr));
Shani Michaelif8c64552014-11-09 13:51:53 +0200711
712 csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
713 sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
714 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
715 csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ntohs(ipv6h->nexthdr));
716
717 skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
718 skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
719 return 0;
720}
721#endif
722static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
Ido Shamay79a25852015-06-25 11:29:43 +0300723 netdev_features_t dev_features)
Shani Michaelif8c64552014-11-09 13:51:53 +0200724{
725 __wsum hw_checksum = 0;
726
727 void *hdr = (u8 *)va + sizeof(struct ethhdr);
728
729 hw_checksum = csum_unfold((__force __sum16)cqe->checksum);
730
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300731 if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) &&
Ido Shamay79a25852015-06-25 11:29:43 +0300732 !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200733 hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
734 hdr += sizeof(struct vlan_hdr);
735 }
736
737 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
738 get_fixed_ipv4_csum(hw_checksum, skb, hdr);
739#if IS_ENABLED(CONFIG_IPV6)
740 else if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
741 if (get_fixed_ipv6_csum(hw_checksum, skb, hdr))
742 return -1;
743#endif
744 return 0;
745}
746
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700747int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
748{
749 struct mlx4_en_priv *priv = netdev_priv(dev);
Amir Vadaiec693d42013-04-23 06:06:49 +0000750 struct mlx4_en_dev *mdev = priv->mdev;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700751 struct mlx4_cqe *cqe;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +0200752 struct mlx4_en_rx_ring *ring = priv->rx_ring[cq->ring];
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000753 struct mlx4_en_rx_alloc *frags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700754 struct mlx4_en_rx_desc *rx_desc;
755 struct sk_buff *skb;
756 int index;
757 int nr;
758 unsigned int length;
759 int polled = 0;
760 int ip_summed;
Or Gerlitz08ff3232012-10-21 14:59:24 +0000761 int factor = priv->cqe_factor;
Amir Vadaiec693d42013-04-23 06:06:49 +0000762 u64 timestamp;
Or Gerlitz837052d2013-12-23 16:09:44 +0200763 bool l2_tunnel;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700764
765 if (!priv->port_up)
766 return 0;
767
Eric W. Biederman38be0a32014-03-14 18:05:58 -0700768 if (budget <= 0)
769 return polled;
770
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700771 /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
772 * descriptor offset can be deduced from the CQE index instead of
773 * reading 'cqe->index' */
774 index = cq->mcq.cons_index & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +0300775 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700776
777 /* Process all completed CQEs */
778 while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
779 cq->mcq.cons_index & cq->size)) {
780
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000781 frags = ring->rx_info + (index << priv->log_rx_info);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700782 rx_desc = ring->buf + (index << ring->log_stride);
783
784 /*
785 * make sure we read the CQE after we read the ownership bit
786 */
Alexander Duyck12b33752015-04-08 18:49:36 -0700787 dma_rmb();
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700788
789 /* Drop packet on bad receive or bad checksum */
790 if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
791 MLX4_CQE_OPCODE_ERROR)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700792 en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
793 ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
794 ((struct mlx4_err_cqe *)cqe)->syndrome);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700795 goto next;
796 }
797 if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +0000798 en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700799 goto next;
800 }
801
Yan Burman79aeacc2013-02-07 02:25:19 +0000802 /* Check if we need to drop the packet if SRIOV is not enabled
803 * and not performing the selftest or flb disabled
804 */
805 if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
806 struct ethhdr *ethh;
807 dma_addr_t dma;
Yan Burman79aeacc2013-02-07 02:25:19 +0000808 /* Get pointer to first fragment since we haven't
809 * skb yet and cast it to ethhdr struct
810 */
811 dma = be64_to_cpu(rx_desc->data[0].addr);
812 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
813 DMA_FROM_DEVICE);
814 ethh = (struct ethhdr *)(page_address(frags[0].page) +
Amir Vadai70fbe072013-10-07 13:38:12 +0200815 frags[0].page_offset);
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000816
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000817 if (is_multicast_ether_addr(ethh->h_dest)) {
818 struct mlx4_mac_entry *entry;
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000819 struct hlist_head *bucket;
820 unsigned int mac_hash;
821
822 /* Drop the packet, since HW loopback-ed it */
823 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
824 bucket = &priv->mac_hash[mac_hash];
825 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800826 hlist_for_each_entry_rcu(entry, bucket, hlist) {
Yan Burmanc07cb4b2013-02-07 02:25:25 +0000827 if (ether_addr_equal_64bits(entry->mac,
828 ethh->h_source)) {
829 rcu_read_unlock();
830 goto next;
831 }
832 }
833 rcu_read_unlock();
834 }
Yan Burman79aeacc2013-02-07 02:25:19 +0000835 }
Eugenia Emantayev5b4c4d32011-12-13 04:16:38 +0000836
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700837 /*
838 * Packet is OK - process it.
839 */
840 length = be32_to_cpu(cqe->byte_cnt);
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -0500841 length -= ring->fcs_del;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700842 ring->bytes += length;
843 ring->packets++;
Or Gerlitz837052d2013-12-23 16:09:44 +0200844 l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
845 (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700846
Michał Mirosławc8c64cf2011-04-15 04:50:49 +0000847 if (likely(dev->features & NETIF_F_RXCSUM)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200848 if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
849 MLX4_CQE_STATUS_UDP)) {
850 if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
851 cqe->checksum == cpu_to_be16(0xffff)) {
852 ip_summed = CHECKSUM_UNNECESSARY;
853 ring->csum_ok++;
854 } else {
855 ip_summed = CHECKSUM_NONE;
856 ring->csum_none++;
857 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700858 } else {
Shani Michaelif8c64552014-11-09 13:51:53 +0200859 if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
860 (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
861 MLX4_CQE_STATUS_IPV6))) {
862 ip_summed = CHECKSUM_COMPLETE;
863 ring->csum_complete++;
864 } else {
865 ip_summed = CHECKSUM_NONE;
866 ring->csum_none++;
867 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700868 }
869 } else {
870 ip_summed = CHECKSUM_NONE;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000871 ring->csum_none++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700872 }
873
Shani Michaelidd65bea2014-11-09 13:51:52 +0200874 /* This packet is eligible for GRO if it is:
875 * - DIX Ethernet (type interpretation)
876 * - TCP/IP (v4)
877 * - without IP options
878 * - not an IP fragment
Shani Michaelidd65bea2014-11-09 13:51:52 +0200879 */
Eric Dumazet868fdb02015-11-18 06:30:58 -0800880 if (dev->features & NETIF_F_GRO) {
Shani Michaelidd65bea2014-11-09 13:51:52 +0200881 struct sk_buff *gro_skb = napi_get_frags(&cq->napi);
882 if (!gro_skb)
883 goto next;
884
885 nr = mlx4_en_complete_rx_desc(priv,
886 rx_desc, frags, gro_skb,
887 length);
888 if (!nr)
889 goto next;
890
Shani Michaelif8c64552014-11-09 13:51:53 +0200891 if (ip_summed == CHECKSUM_COMPLETE) {
892 void *va = skb_frag_address(skb_shinfo(gro_skb)->frags);
Ido Shamay79a25852015-06-25 11:29:43 +0300893 if (check_csum(cqe, gro_skb, va,
894 dev->features)) {
Shani Michaelif8c64552014-11-09 13:51:53 +0200895 ip_summed = CHECKSUM_NONE;
896 ring->csum_none++;
897 ring->csum_complete--;
898 }
899 }
900
Shani Michaelidd65bea2014-11-09 13:51:52 +0200901 skb_shinfo(gro_skb)->nr_frags = nr;
902 gro_skb->len = length;
903 gro_skb->data_len = length;
904 gro_skb->ip_summed = ip_summed;
905
906 if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
Or Gerlitzc58942f2014-12-11 10:57:51 +0200907 gro_skb->csum_level = 1;
908
Shani Michaelidd65bea2014-11-09 13:51:52 +0200909 if ((cqe->vlan_my_qpn &
Hadar Hen Zione802f8e2015-07-27 14:46:33 +0300910 cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) &&
Shani Michaelidd65bea2014-11-09 13:51:52 +0200911 (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
912 u16 vid = be16_to_cpu(cqe->sl_vid);
913
914 __vlan_hwaccel_put_tag(gro_skb, htons(ETH_P_8021Q), vid);
Hadar Hen Zione38af4f2015-07-27 14:46:34 +0300915 } else if ((be32_to_cpu(cqe->vlan_my_qpn) &
916 MLX4_CQE_SVLAN_PRESENT_MASK) &&
917 (dev->features & NETIF_F_HW_VLAN_STAG_RX)) {
918 __vlan_hwaccel_put_tag(gro_skb,
919 htons(ETH_P_8021AD),
920 be16_to_cpu(cqe->sl_vid));
Shani Michaelidd65bea2014-11-09 13:51:52 +0200921 }
922
923 if (dev->features & NETIF_F_RXHASH)
924 skb_set_hash(gro_skb,
925 be32_to_cpu(cqe->immed_rss_invalid),
Eric Dumazet0a6d4242015-07-02 13:24:44 +0200926 (ip_summed == CHECKSUM_UNNECESSARY) ?
927 PKT_HASH_TYPE_L4 :
928 PKT_HASH_TYPE_L3);
Shani Michaelidd65bea2014-11-09 13:51:52 +0200929
930 skb_record_rx_queue(gro_skb, cq->ring);
Shani Michaelidd65bea2014-11-09 13:51:52 +0200931
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) {
Eran Ben Elishad21ed3a2016-04-20 16:01:18 +0300946 ring->dropped++;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700947 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
Eric Dumazet868fdb02015-11-18 06:30:58 -0800993 napi_gro_receive(&cq->napi, skb);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700994next:
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000995 for (nr = 0; nr < priv->num_frags; nr++)
996 mlx4_en_free_frag(priv, frags, nr);
997
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700998 ++cq->mcq.cons_index;
999 index = (cq->mcq.cons_index) & ring->size_mask;
Ido Shamayb1b6b4d2014-09-18 11:51:01 +03001000 cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
Ben Hutchingsf1d29a32012-11-16 12:44:56 +00001001 if (++polled == budget)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001002 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001003 }
1004
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001005out:
1006 AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
1007 mlx4_cq_set_ci(&cq->mcq);
1008 wmb(); /* ensure HW sees CQ consumer before we post new buffers */
1009 ring->cons = cq->mcq.cons_index;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001010 mlx4_en_refill_rx_buffers(priv, ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001011 mlx4_en_update_rx_prod_db(ring);
1012 return polled;
1013}
1014
1015
1016void mlx4_en_rx_irq(struct mlx4_cq *mcq)
1017{
1018 struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
1019 struct mlx4_en_priv *priv = netdev_priv(cq->dev);
1020
Eric Dumazet477b35b2014-10-29 16:54:45 -07001021 if (likely(priv->port_up))
1022 napi_schedule_irqoff(&cq->napi);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001023 else
1024 mlx4_en_arm_cq(priv, cq);
1025}
1026
1027/* Rx CQ polling - called by NAPI */
1028int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
1029{
1030 struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
1031 struct net_device *dev = cq->dev;
1032 struct mlx4_en_priv *priv = netdev_priv(dev);
1033 int done;
1034
1035 done = mlx4_en_process_rx_cq(dev, cq, budget);
1036
1037 /* If we used up all the quota - we're probably not done yet... */
Yuval Atias2eacc232014-05-14 12:15:10 +03001038 if (done == budget) {
Amir Vadai35f6f452014-06-29 11:54:55 +03001039 const struct cpumask *aff;
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001040 struct irq_data *idata;
1041 int cpu_curr;
Amir Vadai35f6f452014-06-29 11:54:55 +03001042
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001043 INC_PERF_COUNTER(priv->pstats.napi_quota);
Amir Vadai35f6f452014-06-29 11:54:55 +03001044
1045 cpu_curr = smp_processor_id();
Thomas Gleixnerdc2ec622015-09-15 13:34:05 +02001046 idata = irq_desc_get_irq_data(cq->irq_desc);
1047 aff = irq_data_get_affinity_mask(idata);
Amir Vadai35f6f452014-06-29 11:54:55 +03001048
Eric Dumazet2e1af7d2014-11-10 14:07:20 -08001049 if (likely(cpumask_test_cpu(cpu_curr, aff)))
1050 return budget;
1051
1052 /* Current cpu is not according to smp_irq_affinity -
1053 * probably affinity changed. need to stop this NAPI
1054 * poll, and restart it on the right CPU
1055 */
1056 done = 0;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001057 }
Eric Dumazet1a288172014-11-06 21:10:11 -08001058 /* Done for now */
1059 napi_complete_done(napi, done);
1060 mlx4_en_arm_cq(priv, cq);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001061 return done;
1062}
1063
Eric Dumazet51151a12013-06-23 08:17:56 -07001064static const int frag_sizes[] = {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001065 FRAG_SZ0,
1066 FRAG_SZ1,
1067 FRAG_SZ2,
1068 FRAG_SZ3
1069};
1070
1071void mlx4_en_calc_rx_buf(struct net_device *dev)
1072{
1073 struct mlx4_en_priv *priv = netdev_priv(dev);
Hadar Hen Zione38af4f2015-07-27 14:46:34 +03001074 /* VLAN_HLEN is added twice,to support skb vlan tagged with multiple
1075 * headers. (For example: ETH_P_8021Q and ETH_P_8021AD).
1076 */
1077 int eff_mtu = dev->mtu + ETH_HLEN + (2 * VLAN_HLEN);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001078 int buf_size = 0;
1079 int i = 0;
1080
1081 while (buf_size < eff_mtu) {
1082 priv->frag_info[i].frag_size =
1083 (eff_mtu > buf_size + frag_sizes[i]) ?
1084 frag_sizes[i] : eff_mtu - buf_size;
1085 priv->frag_info[i].frag_prefix_size = buf_size;
Ido Shamaye8e7f012015-02-03 17:57:20 +02001086 priv->frag_info[i].frag_stride =
1087 ALIGN(priv->frag_info[i].frag_size,
1088 SMP_CACHE_BYTES);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001089 buf_size += priv->frag_info[i].frag_size;
1090 i++;
1091 }
1092
1093 priv->num_frags = i;
1094 priv->rx_skb_size = eff_mtu;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +00001095 priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001096
Joe Perches1a91de22014-05-07 12:52:57 -07001097 en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
1098 eff_mtu, priv->num_frags);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001099 for (i = 0; i < priv->num_frags; i++) {
Eric Dumazet51151a12013-06-23 08:17:56 -07001100 en_err(priv,
Ido Shamay5f6e9802014-11-02 16:26:15 +02001101 " frag:%d - size:%d prefix:%d stride:%d\n",
Eric Dumazet51151a12013-06-23 08:17:56 -07001102 i,
1103 priv->frag_info[i].frag_size,
1104 priv->frag_info[i].frag_prefix_size,
Eric Dumazet51151a12013-06-23 08:17:56 -07001105 priv->frag_info[i].frag_stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001106 }
1107}
1108
1109/* RSS related functions */
1110
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001111static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
1112 struct mlx4_en_rx_ring *ring,
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001113 enum mlx4_qp_state *state,
1114 struct mlx4_qp *qp)
1115{
1116 struct mlx4_en_dev *mdev = priv->mdev;
1117 struct mlx4_qp_context *context;
1118 int err = 0;
1119
Joe Perches14f8dc42013-02-07 11:46:27 +00001120 context = kmalloc(sizeof(*context), GFP_KERNEL);
1121 if (!context)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001122 return -ENOMEM;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001123
Jiri Kosina40f22872014-05-11 15:15:12 +03001124 err = mlx4_qp_alloc(mdev->dev, qpn, qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001125 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001126 en_err(priv, "Failed to allocate qp #%x\n", qpn);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001127 goto out;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001128 }
1129 qp->event = mlx4_en_sqp_event;
1130
1131 memset(context, 0, sizeof *context);
Yevgeny Petrilin00d7d7b2010-08-24 03:45:20 +00001132 mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
Amir Vadai0e98b522012-04-04 21:33:24 +00001133 qpn, ring->cqn, -1, context);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001134 context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001135
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001136 /* Cancel FCS removal if FW allows */
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001137 if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001138 context->param3 |= cpu_to_be32(1 << 29);
Muhammad Mahajnaf0df3502015-04-02 16:31:21 +03001139 if (priv->dev->features & NETIF_F_RXFCS)
1140 ring->fcs_del = 0;
1141 else
1142 ring->fcs_del = ETH_FCS_LEN;
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -05001143 } else
1144 ring->fcs_del = 0;
Yevgeny Petrilinf3a9d1f2011-10-18 01:50:42 +00001145
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001146 err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001147 if (err) {
1148 mlx4_qp_remove(mdev->dev, qp);
1149 mlx4_qp_free(mdev->dev, qp);
1150 }
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001151 mlx4_en_update_rx_prod_db(ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001152out:
1153 kfree(context);
1154 return err;
1155}
1156
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001157int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
1158{
1159 int err;
1160 u32 qpn;
1161
Matan Barakd57febe2014-12-11 10:57:57 +02001162 err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn,
1163 MLX4_RESERVE_A0_QP);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001164 if (err) {
1165 en_err(priv, "Failed reserving drop qpn\n");
1166 return err;
1167 }
Jiri Kosina40f22872014-05-11 15:15:12 +03001168 err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp, GFP_KERNEL);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +00001169 if (err) {
1170 en_err(priv, "Failed allocating drop qp\n");
1171 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1172 return err;
1173 }
1174
1175 return 0;
1176}
1177
1178void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
1179{
1180 u32 qpn;
1181
1182 qpn = priv->drop_qp.qpn;
1183 mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
1184 mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
1185 mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
1186}
1187
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001188/* Allocate rx qp's and configure them according to rss map */
1189int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
1190{
1191 struct mlx4_en_dev *mdev = priv->mdev;
1192 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1193 struct mlx4_qp_context context;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001194 struct mlx4_rss_context *rss_context;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001195 int rss_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001196 void *ptr;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001197 u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
Or Gerlitz1202d462011-11-26 19:55:02 +00001198 MLX4_RSS_TCP_IPV6);
Yevgeny Petrilin9f519f62009-08-06 19:28:18 -07001199 int i, qpn;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001200 int err = 0;
1201 int good_qps = 0;
1202
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001203 en_dbg(DRV, priv, "Configuring rss steering\n");
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001204 err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
1205 priv->rx_ring_num,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02001206 &rss_map->base_qpn, 0);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001207 if (err) {
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001208 en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001209 return err;
1210 }
1211
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001212 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001213 qpn = rss_map->base_qpn + i;
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001214 err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001215 &rss_map->state[i],
1216 &rss_map->qps[i]);
1217 if (err)
1218 goto rss_err;
1219
1220 ++good_qps;
1221 }
1222
1223 /* Configure RSS indirection qp */
Jiri Kosina40f22872014-05-11 15:15:12 +03001224 err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, &rss_map->indir_qp, GFP_KERNEL);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001225 if (err) {
Yevgeny Petrilin453a6082009-06-01 20:27:13 +00001226 en_err(priv, "Failed to allocate RSS indirection QP\n");
Yevgeny Petrilin16792002011-03-22 22:38:31 +00001227 goto rss_err;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001228 }
1229 rss_map->indir_qp.event = mlx4_en_sqp_event;
1230 mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
Eugenia Emantayev41d942d2013-11-07 12:19:52 +02001231 priv->rx_ring[0]->cqn, -1, &context);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001232
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001233 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1234 rss_rings = priv->rx_ring_num;
1235 else
1236 rss_rings = priv->prof->rss_rings;
1237
Or Gerlitz876f6e62011-11-26 19:54:58 +00001238 ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
1239 + MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
Joe Perches43d620c2011-06-16 19:08:06 +00001240 rss_context = ptr;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +00001241 rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001242 (rss_map->base_qpn));
Yevgeny Petrilin89efea22011-12-19 21:53:38 +00001243 rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
Or Gerlitz1202d462011-11-26 19:55:02 +00001244 if (priv->mdev->profile.udp_rss) {
1245 rss_mask |= MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
1246 rss_context->base_qpn_udp = rss_context->default_qpn;
1247 }
Or Gerlitz837052d2013-12-23 16:09:44 +02001248
1249 if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
1250 en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
1251 rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
1252 }
1253
Yevgeny Petrilin05339432010-08-24 03:46:42 +00001254 rss_context->flags = rss_mask;
Or Gerlitz876f6e62011-11-26 19:54:58 +00001255 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
Eyal Perry947cbb02014-12-02 18:12:11 +02001256 if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
1257 rss_context->hash_fn = MLX4_RSS_HASH_XOR;
1258 } else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
1259 rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1260 memcpy(rss_context->rss_key, priv->rss_key,
1261 MLX4_EN_RSS_KEY_SIZE);
Eyal Perry947cbb02014-12-02 18:12:11 +02001262 } else {
1263 en_err(priv, "Unknown RSS hash function requested\n");
1264 err = -EINVAL;
1265 goto indir_err;
1266 }
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001267 err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
1268 &rss_map->indir_qp, &rss_map->indir_state);
1269 if (err)
1270 goto indir_err;
1271
1272 return 0;
1273
1274indir_err:
1275 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1276 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1277 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1278 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001279rss_err:
1280 for (i = 0; i < good_qps; i++) {
1281 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1282 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1283 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1284 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1285 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001286 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001287 return err;
1288}
1289
1290void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
1291{
1292 struct mlx4_en_dev *mdev = priv->mdev;
1293 struct mlx4_en_rss_map *rss_map = &priv->rss_map;
1294 int i;
1295
1296 mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
1297 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
1298 mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
1299 mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001300
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001301 for (i = 0; i < priv->rx_ring_num; i++) {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001302 mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
1303 MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
1304 mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
1305 mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
1306 }
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -07001307 mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001308}