en_rx.c 39.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/*
 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */

34
#include <net/busy_poll.h>
35
#include <linux/bpf.h>
36
#include <linux/bpf_trace.h>
37
#include <linux/mlx4/cq.h>
38
#include <linux/slab.h>
39 40
#include <linux/mlx4/qp.h>
#include <linux/skbuff.h>
41
#include <linux/rculist.h>
42 43 44
#include <linux/if_ether.h>
#include <linux/if_vlan.h>
#include <linux/vmalloc.h>
45
#include <linux/irq.h>
46

47 48 49 50
#if IS_ENABLED(CONFIG_IPV6)
#include <net/ip6_checksum.h>
#endif

51 52
#include "mlx4_en.h"

53 54 55 56 57 58 59 60 61
static int mlx4_alloc_pages(struct mlx4_en_priv *priv,
			    struct mlx4_en_rx_alloc *page_alloc,
			    const struct mlx4_en_frag_info *frag_info,
			    gfp_t _gfp)
{
	int order;
	struct page *page;
	dma_addr_t dma;

62
	for (order = priv->rx_page_order; ;) {
63 64 65
		gfp_t gfp = _gfp;

		if (order)
66
			gfp |= __GFP_COMP | __GFP_NOWARN | __GFP_NOMEMALLOC;
67 68 69 70 71 72 73 74
		page = alloc_pages(gfp, order);
		if (likely(page))
			break;
		if (--order < 0 ||
		    ((PAGE_SIZE << order) < frag_info->frag_size))
			return -ENOMEM;
	}
	dma = dma_map_page(priv->ddev, page, 0, PAGE_SIZE << order,
75
			   priv->dma_dir);
76
	if (unlikely(dma_mapping_error(priv->ddev, dma))) {
77 78 79
		put_page(page);
		return -ENOMEM;
	}
80
	page_alloc->page_size = PAGE_SIZE << order;
81 82
	page_alloc->page = page;
	page_alloc->dma = dma;
83
	page_alloc->page_offset = 0;
84
	/* Not doing get_page() for each frag is a big win
85
	 * on asymetric workloads. Note we can not use atomic_set().
86
	 */
87
	page_ref_add(page, page_alloc->page_size / frag_info->frag_stride - 1);
88 89 90
	return 0;
}

91 92 93
static int mlx4_en_alloc_frags(struct mlx4_en_priv *priv,
			       struct mlx4_en_rx_desc *rx_desc,
			       struct mlx4_en_rx_alloc *frags,
94 95
			       struct mlx4_en_rx_alloc *ring_alloc,
			       gfp_t gfp)
96
{
97
	struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
98
	const struct mlx4_en_frag_info *frag_info;
99
	struct page *page;
100
	int i;
101

102 103
	for (i = 0; i < priv->num_frags; i++) {
		frag_info = &priv->frag_info[i];
104
		page_alloc[i] = ring_alloc[i];
105 106 107 108
		page_alloc[i].page_offset += frag_info->frag_stride;

		if (page_alloc[i].page_offset + frag_info->frag_stride <=
		    ring_alloc[i].page_size)
109
			continue;
110

111 112
		if (unlikely(mlx4_alloc_pages(priv, &page_alloc[i],
					      frag_info, gfp)))
113
			goto out;
114
	}
115

116 117
	for (i = 0; i < priv->num_frags; i++) {
		frags[i] = ring_alloc[i];
118
		frags[i].page_offset += priv->rx_headroom;
119 120
		rx_desc->data[i].addr = cpu_to_be64(frags[i].dma +
						    frags[i].page_offset);
121
		ring_alloc[i] = page_alloc[i];
122
	}
123

124
	return 0;
125 126 127

out:
	while (i--) {
128
		if (page_alloc[i].page != ring_alloc[i].page) {
129
			dma_unmap_page(priv->ddev, page_alloc[i].dma,
130
				page_alloc[i].page_size,
131
				priv->dma_dir);
132
			page = page_alloc[i].page;
133 134 135
			/* Revert changes done by mlx4_alloc_pages */
			page_ref_sub(page, page_alloc[i].page_size /
					   priv->frag_info[i].frag_stride - 1);
136 137
			put_page(page);
		}
138 139 140 141 142 143 144 145
	}
	return -ENOMEM;
}

static void mlx4_en_free_frag(struct mlx4_en_priv *priv,
			      struct mlx4_en_rx_alloc *frags,
			      int i)
{
146
	const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
147
	u32 next_frag_end = frags[i].page_offset + 2 * frag_info->frag_stride;
148

149 150

	if (next_frag_end > frags[i].page_size)
151
		dma_unmap_page(priv->ddev, frags[i].dma, frags[i].page_size,
152
			       priv->dma_dir);
153

154 155
	if (frags[i].page)
		put_page(frags[i].page);
156 157 158 159 160 161
}

static int mlx4_en_init_allocator(struct mlx4_en_priv *priv,
				  struct mlx4_en_rx_ring *ring)
{
	int i;
162
	struct mlx4_en_rx_alloc *page_alloc;
163 164

	for (i = 0; i < priv->num_frags; i++) {
165
		const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];
166

167
		if (mlx4_alloc_pages(priv, &ring->page_alloc[i],
168
				     frag_info, GFP_KERNEL | __GFP_COLD))
169
			goto out;
170 171 172

		en_dbg(DRV, priv, "  frag %d allocator: - size:%d frags:%d\n",
		       i, ring->page_alloc[i].page_size,
173
		       page_ref_count(ring->page_alloc[i].page));
174 175 176 177 178
	}
	return 0;

out:
	while (i--) {
179 180
		struct page *page;

181
		page_alloc = &ring->page_alloc[i];
182
		dma_unmap_page(priv->ddev, page_alloc->dma,
183
			       page_alloc->page_size,
184
			       priv->dma_dir);
185
		page = page_alloc->page;
186 187 188
		/* Revert changes done by mlx4_alloc_pages */
		page_ref_sub(page, page_alloc->page_size /
				   priv->frag_info[i].frag_stride - 1);
189
		put_page(page);
190 191 192 193 194 195 196 197 198 199 200 201
		page_alloc->page = NULL;
	}
	return -ENOMEM;
}

static void mlx4_en_destroy_allocator(struct mlx4_en_priv *priv,
				      struct mlx4_en_rx_ring *ring)
{
	struct mlx4_en_rx_alloc *page_alloc;
	int i;

	for (i = 0; i < priv->num_frags; i++) {
202 203
		const struct mlx4_en_frag_info *frag_info = &priv->frag_info[i];

204
		page_alloc = &ring->page_alloc[i];
205 206
		en_dbg(DRV, priv, "Freeing allocator:%d count:%d\n",
		       i, page_count(page_alloc->page));
207

208
		dma_unmap_page(priv->ddev, page_alloc->dma,
209
				page_alloc->page_size, priv->dma_dir);
210 211
		while (page_alloc->page_offset + frag_info->frag_stride <
		       page_alloc->page_size) {
212
			put_page(page_alloc->page);
213
			page_alloc->page_offset += frag_info->frag_stride;
214
		}
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
		page_alloc->page = NULL;
	}
}

static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv,
				 struct mlx4_en_rx_ring *ring, int index)
{
	struct mlx4_en_rx_desc *rx_desc = ring->buf + ring->stride * index;
	int possible_frags;
	int i;

	/* Set size and memtype fields */
	for (i = 0; i < priv->num_frags; i++) {
		rx_desc->data[i].byte_count =
			cpu_to_be32(priv->frag_info[i].frag_size);
		rx_desc->data[i].lkey = cpu_to_be32(priv->mdev->mr.key);
	}

	/* If the number of used fragments does not fill up the ring stride,
	 * remaining (unused) fragments must be padded with null address/size
	 * and a special memory key */
	possible_frags = (ring->stride - sizeof(struct mlx4_en_rx_desc)) / DS_SIZE;
	for (i = priv->num_frags; i < possible_frags; i++) {
		rx_desc->data[i].byte_count = 0;
		rx_desc->data[i].lkey = cpu_to_be32(MLX4_EN_MEMTYPE_PAD);
		rx_desc->data[i].addr = 0;
	}
}

static int mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv,
245 246
				   struct mlx4_en_rx_ring *ring, int index,
				   gfp_t gfp)
247 248
{
	struct mlx4_en_rx_desc *rx_desc = ring->buf + (index * ring->stride);
249 250
	struct mlx4_en_rx_alloc *frags = ring->rx_info +
					(index << priv->log_rx_info);
251

252
	if (ring->page_cache.index > 0) {
253 254 255 256
		ring->page_cache.index--;
		frags[0].page = ring->page_cache.buf[ring->page_cache.index].page;
		frags[0].dma  = ring->page_cache.buf[ring->page_cache.index].dma;
		frags[0].page_offset = XDP_PACKET_HEADROOM;
257 258
		rx_desc->data[0].addr = cpu_to_be64(frags[0].dma +
						    frags[0].page_offset);
259 260 261
		return 0;
	}

262
	return mlx4_en_alloc_frags(priv, rx_desc, frags, ring->page_alloc, gfp);
263 264
}

265 266 267 268 269
static inline bool mlx4_en_is_ring_empty(struct mlx4_en_rx_ring *ring)
{
	return ring->prod == ring->cons;
}

270 271 272 273 274
static inline void mlx4_en_update_rx_prod_db(struct mlx4_en_rx_ring *ring)
{
	*ring->wqres.db.db = cpu_to_be32(ring->prod & 0xffff);
}

275 276 277 278
static void mlx4_en_free_rx_desc(struct mlx4_en_priv *priv,
				 struct mlx4_en_rx_ring *ring,
				 int index)
{
279
	struct mlx4_en_rx_alloc *frags;
280 281
	int nr;

282
	frags = ring->rx_info + (index << priv->log_rx_info);
283
	for (nr = 0; nr < priv->num_frags; nr++) {
284
		en_dbg(DRV, priv, "Freeing fragment:%d\n", nr);
285
		mlx4_en_free_frag(priv, frags, nr);
286 287 288
	}
}

289 290 291 292 293
static int mlx4_en_fill_rx_buffers(struct mlx4_en_priv *priv)
{
	struct mlx4_en_rx_ring *ring;
	int ring_ind;
	int buf_ind;
294
	int new_size;
295 296 297

	for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
		for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
298
			ring = priv->rx_ring[ring_ind];
299 300

			if (mlx4_en_prepare_rx_desc(priv, ring,
301
						    ring->actual_size,
302
						    GFP_KERNEL | __GFP_COLD)) {
303
				if (ring->actual_size < MLX4_EN_MIN_RX_SIZE) {
J
Joe Perches 已提交
304
					en_err(priv, "Failed to allocate enough rx buffers\n");
305 306
					return -ENOMEM;
				} else {
307
					new_size = rounddown_pow_of_two(ring->actual_size);
J
Joe Perches 已提交
308
					en_warn(priv, "Only %d buffers allocated reducing ring size to %d\n",
309
						ring->actual_size, new_size);
310
					goto reduce_rings;
311 312 313 314 315 316
				}
			}
			ring->actual_size++;
			ring->prod++;
		}
	}
317 318 319 320
	return 0;

reduce_rings:
	for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
321
		ring = priv->rx_ring[ring_ind];
322 323 324 325 326 327 328
		while (ring->actual_size > new_size) {
			ring->actual_size--;
			ring->prod--;
			mlx4_en_free_rx_desc(priv, ring, ring->actual_size);
		}
	}

329 330 331 332 333 334 335 336
	return 0;
}

static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv,
				struct mlx4_en_rx_ring *ring)
{
	int index;

337 338
	en_dbg(DRV, priv, "Freeing Rx buf - cons:%d prod:%d\n",
	       ring->cons, ring->prod);
339 340

	/* Unmap and free Rx buffers */
341
	while (!mlx4_en_is_ring_empty(ring)) {
342
		index = ring->cons & ring->size_mask;
343
		en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
344
		mlx4_en_free_rx_desc(priv, ring, index);
345 346 347 348
		++ring->cons;
	}
}

349 350 351 352
void mlx4_en_set_num_rx_rings(struct mlx4_en_dev *mdev)
{
	int i;
	int num_of_eqs;
353
	int num_rx_rings;
354 355 356
	struct mlx4_dev *dev = mdev->dev;

	mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_ETH) {
M
Matan Barak 已提交
357 358 359 360
		num_of_eqs = max_t(int, MIN_RX_RINGS,
				   min_t(int,
					 mlx4_get_eqs_per_port(mdev->dev, i),
					 DEF_RX_RINGS));
361

362 363 364
		num_rx_rings = mlx4_low_memory_profile() ? MIN_RX_RINGS :
			min_t(int, num_of_eqs,
			      netif_get_num_default_rss_queues());
365
		mdev->profile.prof[i].rx_ring_num =
366
			rounddown_pow_of_two(num_rx_rings);
367 368 369
	}
}

370
int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
371
			   struct mlx4_en_rx_ring **pring,
372
			   u32 size, u16 stride, int node)
373 374
{
	struct mlx4_en_dev *mdev = priv->mdev;
375
	struct mlx4_en_rx_ring *ring;
376
	int err = -ENOMEM;
377 378
	int tmp;

379
	ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, node);
380
	if (!ring) {
381 382 383 384 385
		ring = kzalloc(sizeof(*ring), GFP_KERNEL);
		if (!ring) {
			en_err(priv, "Failed to allocate RX ring structure\n");
			return -ENOMEM;
		}
386 387
	}

388 389 390 391 392 393
	ring->prod = 0;
	ring->cons = 0;
	ring->size = size;
	ring->size_mask = size - 1;
	ring->stride = stride;
	ring->log_stride = ffs(ring->stride) - 1;
394
	ring->buf_size = ring->size * ring->stride + TXBB_SIZE;
395 396

	tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
397
					sizeof(struct mlx4_en_rx_alloc));
398
	ring->rx_info = vmalloc_node(tmp, node);
399
	if (!ring->rx_info) {
400 401 402 403 404
		ring->rx_info = vmalloc(tmp);
		if (!ring->rx_info) {
			err = -ENOMEM;
			goto err_ring;
		}
405
	}
406

407
	en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
408 409
		 ring->rx_info, tmp);

410
	/* Allocate HW buffers on provided NUMA node */
411
	set_dev_node(&mdev->dev->persist->pdev->dev, node);
412
	err = mlx4_alloc_hwq_res(mdev->dev, &ring->wqres, ring->buf_size);
413
	set_dev_node(&mdev->dev->persist->pdev->dev, mdev->dev->numa_node);
414
	if (err)
415
		goto err_info;
416 417 418

	ring->buf = ring->wqres.buf.direct.buf;

419 420
	ring->hwtstamp_rx_filter = priv->hwtstamp_config.rx_filter;

421
	*pring = ring;
422 423
	return 0;

424
err_info:
425 426
	vfree(ring->rx_info);
	ring->rx_info = NULL;
427 428 429 430
err_ring:
	kfree(ring);
	*pring = NULL;

431 432 433 434 435 436 437 438 439 440 441 442 443
	return err;
}

int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv)
{
	struct mlx4_en_rx_ring *ring;
	int i;
	int ring_ind;
	int err;
	int stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
					DS_SIZE * priv->num_frags);

	for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
444
		ring = priv->rx_ring[ring_ind];
445 446 447 448

		ring->prod = 0;
		ring->cons = 0;
		ring->actual_size = 0;
449
		ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn;
450 451

		ring->stride = stride;
E
Eugenia Emantayev 已提交
452 453 454 455 456 457
		if (ring->stride <= TXBB_SIZE) {
			/* Stamp first unused send wqe */
			__be32 *ptr = (__be32 *)ring->buf;
			__be32 stamp = cpu_to_be32(1 << STAMP_SHIFT);
			*ptr = stamp;
			/* Move pointer to start of rx section */
458
			ring->buf += TXBB_SIZE;
E
Eugenia Emantayev 已提交
459
		}
460

461 462 463 464 465 466
		ring->log_stride = ffs(ring->stride) - 1;
		ring->buf_size = ring->size * ring->stride;

		memset(ring->buf, 0, ring->buf_size);
		mlx4_en_update_rx_prod_db(ring);

467
		/* Initialize all descriptors */
468 469 470 471 472 473
		for (i = 0; i < ring->size; i++)
			mlx4_en_init_rx_desc(priv, ring, i);

		/* Initialize page allocators */
		err = mlx4_en_init_allocator(priv, ring);
		if (err) {
474
			en_err(priv, "Failed initializing ring allocator\n");
475 476
			if (ring->stride <= TXBB_SIZE)
				ring->buf -= TXBB_SIZE;
477 478
			ring_ind--;
			goto err_allocator;
479 480
		}
	}
481 482
	err = mlx4_en_fill_rx_buffers(priv);
	if (err)
483 484 485
		goto err_buffers;

	for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++) {
486
		ring = priv->rx_ring[ring_ind];
487

488
		ring->size_mask = ring->actual_size - 1;
489 490 491 492 493 494 495
		mlx4_en_update_rx_prod_db(ring);
	}

	return 0;

err_buffers:
	for (ring_ind = 0; ring_ind < priv->rx_ring_num; ring_ind++)
496
		mlx4_en_free_rx_buf(priv, priv->rx_ring[ring_ind]);
497 498 499 500

	ring_ind = priv->rx_ring_num - 1;
err_allocator:
	while (ring_ind >= 0) {
501 502 503
		if (priv->rx_ring[ring_ind]->stride <= TXBB_SIZE)
			priv->rx_ring[ring_ind]->buf -= TXBB_SIZE;
		mlx4_en_destroy_allocator(priv, priv->rx_ring[ring_ind]);
504 505 506 507 508
		ring_ind--;
	}
	return err;
}

509 510 511 512 513 514 515 516 517 518 519 520
/* We recover from out of memory by scheduling our napi poll
 * function (mlx4_en_process_cq), which tries to allocate
 * all missing RX buffers (call to mlx4_en_refill_rx_buffers).
 */
void mlx4_en_recover_from_oom(struct mlx4_en_priv *priv)
{
	int ring;

	if (!priv->port_up)
		return;

	for (ring = 0; ring < priv->rx_ring_num; ring++) {
521 522
		if (mlx4_en_is_ring_empty(priv->rx_ring[ring])) {
			local_bh_disable();
523
			napi_reschedule(&priv->rx_cq[ring]->napi);
524 525
			local_bh_enable();
		}
526 527 528
	}
}

529 530 531 532 533 534 535 536 537 538 539 540 541 542
/* When the rx ring is running in page-per-packet mode, a released frame can go
 * directly into a small cache, to avoid unmapping or touching the page
 * allocator. In bpf prog performance scenarios, buffers are either forwarded
 * or dropped, never converted to skbs, so every page can come directly from
 * this cache when it is sized to be a multiple of the napi budget.
 */
bool mlx4_en_rx_recycle(struct mlx4_en_rx_ring *ring,
			struct mlx4_en_rx_alloc *frame)
{
	struct mlx4_en_page_cache *cache = &ring->page_cache;

	if (cache->index >= MLX4_EN_CACHE_SIZE)
		return false;

543 544 545
	cache->buf[cache->index].page = frame->page;
	cache->buf[cache->index].dma = frame->dma;
	cache->index++;
546 547 548
	return true;
}

549
void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
550 551
			     struct mlx4_en_rx_ring **pring,
			     u32 size, u16 stride)
552 553
{
	struct mlx4_en_dev *mdev = priv->mdev;
554
	struct mlx4_en_rx_ring *ring = *pring;
555
	struct bpf_prog *old_prog;
556

557 558 559
	old_prog = rcu_dereference_protected(
					ring->xdp_prog,
					lockdep_is_held(&mdev->state_lock));
560 561
	if (old_prog)
		bpf_prog_put(old_prog);
562
	mlx4_free_hwq_res(mdev->dev, &ring->wqres, size * stride + TXBB_SIZE);
563 564
	vfree(ring->rx_info);
	ring->rx_info = NULL;
565 566
	kfree(ring);
	*pring = NULL;
567 568 569 570 571
}

void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
				struct mlx4_en_rx_ring *ring)
{
572 573 574
	int i;

	for (i = 0; i < ring->page_cache.index; i++) {
575 576 577
		dma_unmap_page(priv->ddev, ring->page_cache.buf[i].dma,
			       PAGE_SIZE, priv->dma_dir);
		put_page(ring->page_cache.buf[i].page);
578 579
	}
	ring->page_cache.index = 0;
580
	mlx4_en_free_rx_buf(priv, ring);
581 582
	if (ring->stride <= TXBB_SIZE)
		ring->buf -= TXBB_SIZE;
583 584 585 586 587 588
	mlx4_en_destroy_allocator(priv, ring);
}


static int mlx4_en_complete_rx_desc(struct mlx4_en_priv *priv,
				    struct mlx4_en_rx_desc *rx_desc,
589
				    struct mlx4_en_rx_alloc *frags,
590
				    struct sk_buff *skb,
591 592
				    int length)
{
593
	struct skb_frag_struct *skb_frags_rx = skb_shinfo(skb)->frags;
E
Eric Dumazet 已提交
594 595
	struct mlx4_en_frag_info *frag_info = priv->frag_info;
	int nr, frag_size;
596 597
	dma_addr_t dma;

598
	/* Collect used fragments while replacing them in the HW descriptors */
E
Eric Dumazet 已提交
599 600 601
	for (nr = 0;;) {
		frag_size = min_t(int, length, frag_info->frag_size);

602
		if (unlikely(!frags[nr].page))
603
			goto fail;
604 605

		dma = be64_to_cpu(rx_desc->data[nr].addr);
606 607
		dma_sync_single_for_cpu(priv->ddev, dma, frag_info->frag_size,
					DMA_FROM_DEVICE);
608

609 610
		__skb_fill_page_desc(skb, nr, frags[nr].page,
				     frags[nr].page_offset,
E
Eric Dumazet 已提交
611
				     frag_size);
612

613
		skb->truesize += frag_info->frag_stride;
614
		frags[nr].page = NULL;
E
Eric Dumazet 已提交
615 616 617 618 619
		nr++;
		length -= frag_size;
		if (!length)
			break;
		frag_info++;
620 621 622 623 624 625
	}
	return nr;

fail:
	while (nr > 0) {
		nr--;
626
		__skb_frag_unref(&skb_frags_rx[nr]);
627 628 629 630 631 632 633
	}
	return 0;
}


static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv,
				      struct mlx4_en_rx_desc *rx_desc,
634
				      struct mlx4_en_rx_alloc *frags,
635 636 637 638 639 640 641
				      unsigned int length)
{
	struct sk_buff *skb;
	void *va;
	int used_frags;
	dma_addr_t dma;

642
	skb = netdev_alloc_skb(priv->dev, SMALL_PACKET_SIZE + NET_IP_ALIGN);
643
	if (unlikely(!skb)) {
644
		en_dbg(RX_ERR, priv, "Failed allocating skb\n");
645 646 647 648 649 650 651
		return NULL;
	}
	skb_reserve(skb, NET_IP_ALIGN);
	skb->len = length;

	/* Get pointer to first fragment so we could copy the headers into the
	 * (linear part of the) skb */
652
	va = page_address(frags[0].page) + frags[0].page_offset;
653 654 655

	if (length <= SMALL_PACKET_SIZE) {
		/* We are copying all relevant data to the skb - temporarily
656
		 * sync buffers for the copy */
657
		dma = be64_to_cpu(rx_desc->data[0].addr);
658
		dma_sync_single_for_cpu(priv->ddev, dma, length,
659
					DMA_FROM_DEVICE);
660 661 662
		skb_copy_to_linear_data(skb, va, length);
		skb->tail += length;
	} else {
663 664
		unsigned int pull_len;

665
		/* Move relevant fragments to skb */
666 667
		used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, frags,
							skb, length);
668 669 670 671
		if (unlikely(!used_frags)) {
			kfree_skb(skb);
			return NULL;
		}
672 673
		skb_shinfo(skb)->nr_frags = used_frags;

674
		pull_len = eth_get_headlen(va, SMALL_PACKET_SIZE);
675
		/* Copy headers into the skb linear buffer */
676 677
		memcpy(skb->data, va, pull_len);
		skb->tail += pull_len;
678 679

		/* Skip headers in first fragment */
680
		skb_shinfo(skb)->frags[0].page_offset += pull_len;
681 682

		/* Adjust size of first fragment */
683 684
		skb_frag_size_sub(&skb_shinfo(skb)->frags[0], pull_len);
		skb->data_len = length - pull_len;
685 686 687 688
	}
	return skb;
}

689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
static void validate_loopback(struct mlx4_en_priv *priv, struct sk_buff *skb)
{
	int i;
	int offset = ETH_HLEN;

	for (i = 0; i < MLX4_LOOPBACK_TEST_PAYLOAD; i++, offset++) {
		if (*(skb->data + offset) != (unsigned char) (i & 0xff))
			goto out_loopback;
	}
	/* Loopback found */
	priv->loopback_ok = 1;

out_loopback:
	dev_kfree_skb_any(skb);
}
704

705 706
static bool mlx4_en_refill_rx_buffers(struct mlx4_en_priv *priv,
				      struct mlx4_en_rx_ring *ring)
707
{
708
	u32 missing = ring->actual_size - (ring->prod - ring->cons);
709

710 711 712 713 714 715
	/* Try to batch allocations, but not too much. */
	if (missing < 8)
		return false;
	do {
		if (mlx4_en_prepare_rx_desc(priv, ring,
					    ring->prod & ring->size_mask,
716 717
					    GFP_ATOMIC | __GFP_COLD |
					    __GFP_MEMALLOC))
718 719
			break;
		ring->prod++;
720 721 722
	} while (--missing);

	return true;
723 724
}

725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
/* When hardware doesn't strip the vlan, we need to calculate the checksum
 * over it and add it to the hardware's checksum calculation
 */
static inline __wsum get_fixed_vlan_csum(__wsum hw_checksum,
					 struct vlan_hdr *vlanh)
{
	return csum_add(hw_checksum, *(__wsum *)vlanh);
}

/* Although the stack expects checksum which doesn't include the pseudo
 * header, the HW adds it. To address that, we are subtracting the pseudo
 * header checksum from the checksum value provided by the HW.
 */
static void get_fixed_ipv4_csum(__wsum hw_checksum, struct sk_buff *skb,
				struct iphdr *iph)
{
	__u16 length_for_csum = 0;
	__wsum csum_pseudo_header = 0;

	length_for_csum = (be16_to_cpu(iph->tot_len) - (iph->ihl << 2));
	csum_pseudo_header = csum_tcpudp_nofold(iph->saddr, iph->daddr,
						length_for_csum, iph->protocol, 0);
	skb->csum = csum_sub(hw_checksum, csum_pseudo_header);
}

#if IS_ENABLED(CONFIG_IPV6)
/* In IPv6 packets, besides subtracting the pseudo header checksum,
 * we also compute/add the IP header checksum which
 * is not added by the HW.
 */
static int get_fixed_ipv6_csum(__wsum hw_checksum, struct sk_buff *skb,
			       struct ipv6hdr *ipv6h)
{
	__wsum csum_pseudo_hdr = 0;

760 761
	if (unlikely(ipv6h->nexthdr == IPPROTO_FRAGMENT ||
		     ipv6h->nexthdr == IPPROTO_HOPOPTS))
762
		return -1;
763
	hw_checksum = csum_add(hw_checksum, (__force __wsum)htons(ipv6h->nexthdr));
764 765 766 767 768 769 770 771 772 773 774 775

	csum_pseudo_hdr = csum_partial(&ipv6h->saddr,
				       sizeof(ipv6h->saddr) + sizeof(ipv6h->daddr), 0);
	csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ipv6h->payload_len);
	csum_pseudo_hdr = csum_add(csum_pseudo_hdr, (__force __wsum)ntohs(ipv6h->nexthdr));

	skb->csum = csum_sub(hw_checksum, csum_pseudo_hdr);
	skb->csum = csum_add(skb->csum, csum_partial(ipv6h, sizeof(struct ipv6hdr), 0));
	return 0;
}
#endif
static int check_csum(struct mlx4_cqe *cqe, struct sk_buff *skb, void *va,
776
		      netdev_features_t dev_features)
777 778 779 780 781 782 783
{
	__wsum hw_checksum = 0;

	void *hdr = (u8 *)va + sizeof(struct ethhdr);

	hw_checksum = csum_unfold((__force __sum16)cqe->checksum);

784
	if (cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK) &&
785
	    !(dev_features & NETIF_F_HW_VLAN_CTAG_RX)) {
786 787 788 789 790 791 792 793
		hw_checksum = get_fixed_vlan_csum(hw_checksum, hdr);
		hdr += sizeof(struct vlan_hdr);
	}

	if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4))
		get_fixed_ipv4_csum(hw_checksum, skb, hdr);
#if IS_ENABLED(CONFIG_IPV6)
	else if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV6))
794
		if (unlikely(get_fixed_ipv6_csum(hw_checksum, skb, hdr)))
795 796 797 798 799
			return -1;
#endif
	return 0;
}

800 801 802
int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int budget)
{
	struct mlx4_en_priv *priv = netdev_priv(dev);
803
	struct mlx4_en_dev *mdev = priv->mdev;
804
	struct mlx4_cqe *cqe;
805
	struct mlx4_en_rx_ring *ring = priv->rx_ring[cq->ring];
806
	struct mlx4_en_rx_alloc *frags;
807
	struct mlx4_en_rx_desc *rx_desc;
808
	struct bpf_prog *xdp_prog;
809
	int doorbell_pending;
810 811 812 813 814 815
	struct sk_buff *skb;
	int index;
	int nr;
	unsigned int length;
	int polled = 0;
	int ip_summed;
O
Or Gerlitz 已提交
816
	int factor = priv->cqe_factor;
817
	u64 timestamp;
818
	bool l2_tunnel;
819

820
	if (unlikely(!priv->port_up))
821 822
		return 0;

823
	if (unlikely(budget <= 0))
824 825
		return polled;

826 827 828
	/* Protect accesses to: ring->xdp_prog, priv->mac_hash list */
	rcu_read_lock();
	xdp_prog = rcu_dereference(ring->xdp_prog);
829
	doorbell_pending = 0;
830

831 832 833 834
	/* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
	 * descriptor offset can be deduced from the CQE index instead of
	 * reading 'cqe->index' */
	index = cq->mcq.cons_index & ring->size_mask;
835
	cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
836 837 838 839 840

	/* Process all completed CQEs */
	while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
		    cq->mcq.cons_index & cq->size)) {

841
		frags = ring->rx_info + (index << priv->log_rx_info);
842 843 844 845 846
		rx_desc = ring->buf + (index << ring->log_stride);

		/*
		 * make sure we read the CQE after we read the ownership bit
		 */
847
		dma_rmb();
848 849 850 851

		/* Drop packet on bad receive or bad checksum */
		if (unlikely((cqe->owner_sr_opcode & MLX4_CQE_OPCODE_MASK) ==
						MLX4_CQE_OPCODE_ERROR)) {
J
Joe Perches 已提交
852 853 854
			en_err(priv, "CQE completed in error - vendor syndrom:%d syndrom:%d\n",
			       ((struct mlx4_err_cqe *)cqe)->vendor_err_syndrome,
			       ((struct mlx4_err_cqe *)cqe)->syndrome);
855 856 857
			goto next;
		}
		if (unlikely(cqe->badfcs_enc & MLX4_CQE_BAD_FCS)) {
858
			en_dbg(RX_ERR, priv, "Accepted frame with bad FCS\n");
859 860 861
			goto next;
		}

862 863 864 865 866 867 868 869 870 871 872 873 874
		/* Check if we need to drop the packet if SRIOV is not enabled
		 * and not performing the selftest or flb disabled
		 */
		if (priv->flags & MLX4_EN_FLAG_RX_FILTER_NEEDED) {
			struct ethhdr *ethh;
			dma_addr_t dma;
			/* Get pointer to first fragment since we haven't
			 * skb yet and cast it to ethhdr struct
			 */
			dma = be64_to_cpu(rx_desc->data[0].addr);
			dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh),
						DMA_FROM_DEVICE);
			ethh = (struct ethhdr *)(page_address(frags[0].page) +
875
						 frags[0].page_offset);
876

877 878 879 880 881 882 883 884
			if (is_multicast_ether_addr(ethh->h_dest)) {
				struct mlx4_mac_entry *entry;
				struct hlist_head *bucket;
				unsigned int mac_hash;

				/* Drop the packet, since HW loopback-ed it */
				mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX];
				bucket = &priv->mac_hash[mac_hash];
885
				hlist_for_each_entry_rcu(entry, bucket, hlist) {
886
					if (ether_addr_equal_64bits(entry->mac,
887
								    ethh->h_source))
888 889 890
						goto next;
				}
			}
891
		}
892

893 894 895 896
		/*
		 * Packet is OK - process it.
		 */
		length = be32_to_cpu(cqe->byte_cnt);
897
		length -= ring->fcs_del;
898 899
		l2_tunnel = (dev->hw_enc_features & NETIF_F_RXCSUM) &&
			(cqe->vlan_my_qpn & cpu_to_be32(MLX4_CQE_L2_TUNNEL));
900

901 902 903 904 905 906
		/* A bpf program gets first chance to drop the packet. It may
		 * read bytes but not past the end of the frag.
		 */
		if (xdp_prog) {
			struct xdp_buff xdp;
			dma_addr_t dma;
907
			void *orig_data;
908 909 910 911 912 913 914
			u32 act;

			dma = be64_to_cpu(rx_desc->data[0].addr);
			dma_sync_single_for_cpu(priv->ddev, dma,
						priv->frag_info[0].frag_size,
						DMA_FROM_DEVICE);

915 916
			xdp.data_hard_start = page_address(frags[0].page);
			xdp.data = xdp.data_hard_start + frags[0].page_offset;
917
			xdp.data_end = xdp.data + length;
918
			orig_data = xdp.data;
919 920

			act = bpf_prog_run_xdp(xdp_prog, &xdp);
921 922 923 924 925 926 927

			if (xdp.data != orig_data) {
				length = xdp.data_end - xdp.data;
				frags[0].page_offset = xdp.data -
					xdp.data_hard_start;
			}

928 929 930
			switch (act) {
			case XDP_PASS:
				break;
931
			case XDP_TX:
932
				if (likely(!mlx4_en_xmit_frame(ring, frags, dev,
933
							length, cq->ring,
934
							&doorbell_pending)))
935
					goto consumed;
936
				trace_xdp_exception(dev, xdp_prog, act);
937
				goto xdp_drop_no_cnt; /* Drop on xmit failure */
938 939 940
			default:
				bpf_warn_invalid_xdp_action(act);
			case XDP_ABORTED:
941
				trace_xdp_exception(dev, xdp_prog, act);
942
			case XDP_DROP:
943 944
				ring->xdp_drop++;
xdp_drop_no_cnt:
945
				if (likely(mlx4_en_rx_recycle(ring, frags)))
946
					goto consumed;
947 948 949 950
				goto next;
			}
		}

951 952 953
		ring->bytes += length;
		ring->packets++;

954
		if (likely(dev->features & NETIF_F_RXCSUM)) {
955 956 957 958 959 960 961 962 963 964
			if (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_TCP |
						      MLX4_CQE_STATUS_UDP)) {
				if ((cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPOK)) &&
				    cqe->checksum == cpu_to_be16(0xffff)) {
					ip_summed = CHECKSUM_UNNECESSARY;
					ring->csum_ok++;
				} else {
					ip_summed = CHECKSUM_NONE;
					ring->csum_none++;
				}
965
			} else {
966 967 968 969 970 971 972 973 974
				if (priv->flags & MLX4_EN_FLAG_RX_CSUM_NON_TCP_UDP &&
				    (cqe->status & cpu_to_be16(MLX4_CQE_STATUS_IPV4 |
							       MLX4_CQE_STATUS_IPV6))) {
					ip_summed = CHECKSUM_COMPLETE;
					ring->csum_complete++;
				} else {
					ip_summed = CHECKSUM_NONE;
					ring->csum_none++;
				}
975 976 977
			}
		} else {
			ip_summed = CHECKSUM_NONE;
978
			ring->csum_none++;
979 980
		}

981 982 983 984 985 986
		/* This packet is eligible for GRO if it is:
		 * - DIX Ethernet (type interpretation)
		 * - TCP/IP (v4)
		 * - without IP options
		 * - not an IP fragment
		 */
987
		if (dev->features & NETIF_F_GRO) {
988 989 990 991 992 993 994 995 996 997
			struct sk_buff *gro_skb = napi_get_frags(&cq->napi);
			if (!gro_skb)
				goto next;

			nr = mlx4_en_complete_rx_desc(priv,
				rx_desc, frags, gro_skb,
				length);
			if (!nr)
				goto next;

998 999
			if (ip_summed == CHECKSUM_COMPLETE) {
				void *va = skb_frag_address(skb_shinfo(gro_skb)->frags);
1000 1001
				if (check_csum(cqe, gro_skb, va,
					       dev->features)) {
1002 1003 1004 1005 1006 1007
					ip_summed = CHECKSUM_NONE;
					ring->csum_none++;
					ring->csum_complete--;
				}
			}

1008 1009 1010 1011 1012 1013
			skb_shinfo(gro_skb)->nr_frags = nr;
			gro_skb->len = length;
			gro_skb->data_len = length;
			gro_skb->ip_summed = ip_summed;

			if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
1014 1015
				gro_skb->csum_level = 1;

1016
			if ((cqe->vlan_my_qpn &
1017
			    cpu_to_be32(MLX4_CQE_CVLAN_PRESENT_MASK)) &&
1018 1019 1020 1021
			    (dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
				u16 vid = be16_to_cpu(cqe->sl_vid);

				__vlan_hwaccel_put_tag(gro_skb, htons(ETH_P_8021Q), vid);
1022 1023 1024 1025 1026 1027
			} else if ((be32_to_cpu(cqe->vlan_my_qpn) &
				  MLX4_CQE_SVLAN_PRESENT_MASK) &&
				 (dev->features & NETIF_F_HW_VLAN_STAG_RX)) {
				__vlan_hwaccel_put_tag(gro_skb,
						       htons(ETH_P_8021AD),
						       be16_to_cpu(cqe->sl_vid));
1028 1029 1030 1031 1032
			}

			if (dev->features & NETIF_F_RXHASH)
				skb_set_hash(gro_skb,
					     be32_to_cpu(cqe->immed_rss_invalid),
1033 1034 1035
					     (ip_summed == CHECKSUM_UNNECESSARY) ?
						PKT_HASH_TYPE_L4 :
						PKT_HASH_TYPE_L3);
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050

			skb_record_rx_queue(gro_skb, cq->ring);

			if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
				timestamp = mlx4_en_get_cqe_ts(cqe);
				mlx4_en_fill_hwtstamps(mdev,
						       skb_hwtstamps(gro_skb),
						       timestamp);
			}

			napi_gro_frags(&cq->napi);
			goto next;
		}

		/* GRO not possible, complete processing here */
1051
		skb = mlx4_en_rx_skb(priv, rx_desc, frags, length);
1052
		if (unlikely(!skb)) {
1053
			ring->dropped++;
1054 1055 1056
			goto next;
		}

K
Kamal Heib 已提交
1057
		if (unlikely(priv->validate_loopback)) {
1058 1059 1060 1061
			validate_loopback(priv, skb);
			goto next;
		}

1062
		if (ip_summed == CHECKSUM_COMPLETE) {
1063
			if (check_csum(cqe, skb, skb->data, dev->features)) {
1064 1065 1066 1067 1068 1069
				ip_summed = CHECKSUM_NONE;
				ring->csum_complete--;
				ring->csum_none++;
			}
		}

1070 1071
		skb->ip_summed = ip_summed;
		skb->protocol = eth_type_trans(skb, dev);
1072
		skb_record_rx_queue(skb, cq->ring);
1073

1074 1075
		if (l2_tunnel && ip_summed == CHECKSUM_UNNECESSARY)
			skb->csum_level = 1;
1076

Y
Yevgeny Petrilin 已提交
1077
		if (dev->features & NETIF_F_RXHASH)
T
Tom Herbert 已提交
1078 1079
			skb_set_hash(skb,
				     be32_to_cpu(cqe->immed_rss_invalid),
1080 1081 1082
				     (ip_summed == CHECKSUM_UNNECESSARY) ?
					PKT_HASH_TYPE_L4 :
					PKT_HASH_TYPE_L3);
Y
Yevgeny Petrilin 已提交
1083

1084
		if ((be32_to_cpu(cqe->vlan_my_qpn) &
1085
		    MLX4_CQE_CVLAN_PRESENT_MASK) &&
1086
		    (dev->features & NETIF_F_HW_VLAN_CTAG_RX))
1087
			__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), be16_to_cpu(cqe->sl_vid));
1088 1089 1090 1091 1092
		else if ((be32_to_cpu(cqe->vlan_my_qpn) &
			  MLX4_CQE_SVLAN_PRESENT_MASK) &&
			 (dev->features & NETIF_F_HW_VLAN_STAG_RX))
			__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021AD),
					       be16_to_cpu(cqe->sl_vid));
J
Jiri Pirko 已提交
1093

1094 1095 1096 1097 1098 1099
		if (ring->hwtstamp_rx_filter == HWTSTAMP_FILTER_ALL) {
			timestamp = mlx4_en_get_cqe_ts(cqe);
			mlx4_en_fill_hwtstamps(mdev, skb_hwtstamps(skb),
					       timestamp);
		}

1100
		napi_gro_receive(&cq->napi, skb);
1101
next:
1102 1103 1104
		for (nr = 0; nr < priv->num_frags; nr++)
			mlx4_en_free_frag(priv, frags, nr);

1105
consumed:
1106 1107
		++cq->mcq.cons_index;
		index = (cq->mcq.cons_index) & ring->size_mask;
1108
		cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
1109
		if (++polled == budget)
1110 1111 1112 1113
			goto out;
	}

out:
1114
	rcu_read_unlock();
1115

1116 1117 1118 1119 1120 1121 1122 1123
	if (polled) {
		if (doorbell_pending)
			mlx4_en_xmit_doorbell(priv->tx_ring[TX_XDP][cq->ring]);

		mlx4_cq_set_ci(&cq->mcq);
		wmb(); /* ensure HW sees CQ consumer before we post new buffers */
		ring->cons = cq->mcq.cons_index;
	}
1124
	AVG_PERF_COUNTER(priv->pstats.rx_coal_avg, polled);
1125 1126 1127 1128

	if (mlx4_en_refill_rx_buffers(priv, ring))
		mlx4_en_update_rx_prod_db(ring);

1129 1130 1131 1132 1133 1134 1135 1136 1137
	return polled;
}


void mlx4_en_rx_irq(struct mlx4_cq *mcq)
{
	struct mlx4_en_cq *cq = container_of(mcq, struct mlx4_en_cq, mcq);
	struct mlx4_en_priv *priv = netdev_priv(cq->dev);

E
Eric Dumazet 已提交
1138 1139
	if (likely(priv->port_up))
		napi_schedule_irqoff(&cq->napi);
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
	else
		mlx4_en_arm_cq(priv, cq);
}

/* Rx CQ polling - called by NAPI */
int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
{
	struct mlx4_en_cq *cq = container_of(napi, struct mlx4_en_cq, napi);
	struct net_device *dev = cq->dev;
	struct mlx4_en_priv *priv = netdev_priv(dev);
	int done;

	done = mlx4_en_process_rx_cq(dev, cq, budget);

	/* If we used up all the quota - we're probably not done yet... */
1155
	if (done == budget) {
1156
		const struct cpumask *aff;
1157 1158
		struct irq_data *idata;
		int cpu_curr;
1159

1160
		INC_PERF_COUNTER(priv->pstats.napi_quota);
1161 1162

		cpu_curr = smp_processor_id();
1163 1164
		idata = irq_desc_get_irq_data(cq->irq_desc);
		aff = irq_data_get_affinity_mask(idata);
1165

1166 1167 1168 1169
		if (likely(cpumask_test_cpu(cpu_curr, aff)))
			return budget;

		/* Current cpu is not according to smp_irq_affinity -
1170 1171 1172 1173
		 * probably affinity changed. Need to stop this NAPI
		 * poll, and restart it on the right CPU.
		 * Try to avoid returning a too small value (like 0),
		 * to not fool net_rx_action() and its netdev_budget
1174
		 */
1175 1176
		if (done)
			done--;
1177
	}
E
Eric Dumazet 已提交
1178
	/* Done for now */
1179 1180
	if (napi_complete_done(napi, done))
		mlx4_en_arm_cq(priv, cq);
1181 1182 1183 1184 1185 1186
	return done;
}

void mlx4_en_calc_rx_buf(struct net_device *dev)
{
	struct mlx4_en_priv *priv = netdev_priv(dev);
1187
	int eff_mtu = MLX4_EN_EFF_MTU(dev->mtu);
1188 1189
	int i = 0;

1190 1191 1192
	/* bpf requires buffers to be set up as 1 packet per page.
	 * This only works when num_frags == 1.
	 */
1193
	if (priv->tx_ring_num[TX_XDP]) {
1194
		priv->rx_page_order = 0;
1195 1196 1197
		priv->frag_info[0].frag_size = eff_mtu;
		/* This will gain efficient xdp frame recycling at the
		 * expense of more costly truesize accounting
1198
		 */
1199
		priv->frag_info[0].frag_stride = PAGE_SIZE;
1200
		priv->dma_dir = PCI_DMA_BIDIRECTIONAL;
1201
		priv->rx_headroom = XDP_PACKET_HEADROOM;
1202 1203 1204 1205 1206
		i = 1;
	} else {
		int buf_size = 0;

		while (buf_size < eff_mtu) {
E
Eric Dumazet 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
			int frag_size = eff_mtu - buf_size;

			if (i < MLX4_EN_MAX_RX_FRAGS - 1)
				frag_size = min(frag_size, 2048);

			priv->frag_info[i].frag_size = frag_size;

			priv->frag_info[i].frag_stride = ALIGN(frag_size,
							       SMP_CACHE_BYTES);
			buf_size += frag_size;
1217 1218
			i++;
		}
1219
		priv->rx_page_order = MLX4_EN_ALLOC_PREFER_ORDER;
1220
		priv->dma_dir = PCI_DMA_FROMDEVICE;
1221
		priv->rx_headroom = 0;
1222 1223 1224 1225
	}

	priv->num_frags = i;
	priv->rx_skb_size = eff_mtu;
1226
	priv->log_rx_info = ROUNDUP_LOG2(i * sizeof(struct mlx4_en_rx_alloc));
1227

J
Joe Perches 已提交
1228 1229
	en_dbg(DRV, priv, "Rx buffer scatter-list (effective-mtu:%d num_frags:%d):\n",
	       eff_mtu, priv->num_frags);
1230
	for (i = 0; i < priv->num_frags; i++) {
1231
		en_err(priv,
E
Eric Dumazet 已提交
1232
		       "  frag:%d - size:%d stride:%d\n",
1233 1234 1235
		       i,
		       priv->frag_info[i].frag_size,
		       priv->frag_info[i].frag_stride);
1236 1237 1238 1239 1240
	}
}

/* RSS related functions */

1241 1242
static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, int qpn,
				 struct mlx4_en_rx_ring *ring,
1243 1244 1245 1246 1247 1248 1249
				 enum mlx4_qp_state *state,
				 struct mlx4_qp *qp)
{
	struct mlx4_en_dev *mdev = priv->mdev;
	struct mlx4_qp_context *context;
	int err = 0;

1250 1251
	context = kmalloc(sizeof(*context), GFP_KERNEL);
	if (!context)
1252 1253
		return -ENOMEM;

1254
	err = mlx4_qp_alloc(mdev->dev, qpn, qp, GFP_KERNEL);
1255
	if (err) {
1256
		en_err(priv, "Failed to allocate qp #%x\n", qpn);
1257 1258 1259 1260 1261
		goto out;
	}
	qp->event = mlx4_en_sqp_event;

	memset(context, 0, sizeof *context);
1262
	mlx4_en_fill_qp_context(priv, ring->actual_size, ring->stride, 0, 0,
1263
				qpn, ring->cqn, -1, context);
1264
	context->db_rec_addr = cpu_to_be64(ring->wqres.db.dma);
1265

1266
	/* Cancel FCS removal if FW allows */
1267
	if (mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_FCS_KEEP) {
1268
		context->param3 |= cpu_to_be32(1 << 29);
1269 1270 1271 1272
		if (priv->dev->features & NETIF_F_RXFCS)
			ring->fcs_del = 0;
		else
			ring->fcs_del = ETH_FCS_LEN;
1273 1274
	} else
		ring->fcs_del = 0;
1275

1276
	err = mlx4_qp_to_ready(mdev->dev, &ring->wqres.mtt, context, qp, state);
1277 1278 1279 1280
	if (err) {
		mlx4_qp_remove(mdev->dev, qp);
		mlx4_qp_free(mdev->dev, qp);
	}
1281
	mlx4_en_update_rx_prod_db(ring);
1282 1283 1284 1285 1286
out:
	kfree(context);
	return err;
}

1287 1288 1289 1290 1291
int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv)
{
	int err;
	u32 qpn;

M
Matan Barak 已提交
1292 1293
	err = mlx4_qp_reserve_range(priv->mdev->dev, 1, 1, &qpn,
				    MLX4_RESERVE_A0_QP);
1294 1295 1296 1297
	if (err) {
		en_err(priv, "Failed reserving drop qpn\n");
		return err;
	}
1298
	err = mlx4_qp_alloc(priv->mdev->dev, qpn, &priv->drop_qp, GFP_KERNEL);
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
	if (err) {
		en_err(priv, "Failed allocating drop qp\n");
		mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
		return err;
	}

	return 0;
}

void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv)
{
	u32 qpn;

	qpn = priv->drop_qp.qpn;
	mlx4_qp_remove(priv->mdev->dev, &priv->drop_qp);
	mlx4_qp_free(priv->mdev->dev, &priv->drop_qp);
	mlx4_qp_release_range(priv->mdev->dev, qpn, 1);
}

1318 1319 1320 1321 1322 1323
/* Allocate rx qp's and configure them according to rss map */
int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv)
{
	struct mlx4_en_dev *mdev = priv->mdev;
	struct mlx4_en_rss_map *rss_map = &priv->rss_map;
	struct mlx4_qp_context context;
1324
	struct mlx4_rss_context *rss_context;
1325
	int rss_rings;
1326
	void *ptr;
1327
	u8 rss_mask = (MLX4_RSS_IPV4 | MLX4_RSS_TCP_IPV4 | MLX4_RSS_IPV6 |
1328
			MLX4_RSS_TCP_IPV6);
1329
	int i, qpn;
1330 1331 1332
	int err = 0;
	int good_qps = 0;

1333
	en_dbg(DRV, priv, "Configuring rss steering\n");
1334 1335
	err = mlx4_qp_reserve_range(mdev->dev, priv->rx_ring_num,
				    priv->rx_ring_num,
1336
				    &rss_map->base_qpn, 0);
1337
	if (err) {
1338
		en_err(priv, "Failed reserving %d qps\n", priv->rx_ring_num);
1339 1340 1341
		return err;
	}

1342
	for (i = 0; i < priv->rx_ring_num; i++) {
1343
		qpn = rss_map->base_qpn + i;
1344
		err = mlx4_en_config_rss_qp(priv, qpn, priv->rx_ring[i],
1345 1346 1347 1348 1349 1350 1351 1352 1353
					    &rss_map->state[i],
					    &rss_map->qps[i]);
		if (err)
			goto rss_err;

		++good_qps;
	}

	/* Configure RSS indirection qp */
1354
	err = mlx4_qp_alloc(mdev->dev, priv->base_qpn, &rss_map->indir_qp, GFP_KERNEL);
1355
	if (err) {
1356
		en_err(priv, "Failed to allocate RSS indirection QP\n");
1357
		goto rss_err;
1358 1359 1360
	}
	rss_map->indir_qp.event = mlx4_en_sqp_event;
	mlx4_en_fill_qp_context(priv, 0, 0, 0, 1, priv->base_qpn,
1361
				priv->rx_ring[0]->cqn, -1, &context);
1362

1363 1364 1365 1366 1367
	if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
		rss_rings = priv->rx_ring_num;
	else
		rss_rings = priv->prof->rss_rings;

1368 1369
	ptr = ((void *) &context) + offsetof(struct mlx4_qp_context, pri_path)
					+ MLX4_RSS_OFFSET_IN_QPC_PRI_PATH;
1370
	rss_context = ptr;
1371
	rss_context->base_qpn = cpu_to_be32(ilog2(rss_rings) << 24 |
1372
					    (rss_map->base_qpn));
1373
	rss_context->default_qpn = cpu_to_be32(rss_map->base_qpn);
1374 1375 1376 1377
	if (priv->mdev->profile.udp_rss) {
		rss_mask |=  MLX4_RSS_UDP_IPV4 | MLX4_RSS_UDP_IPV6;
		rss_context->base_qpn_udp = rss_context->default_qpn;
	}
1378 1379 1380 1381 1382 1383

	if (mdev->dev->caps.tunnel_offload_mode == MLX4_TUNNEL_OFFLOAD_MODE_VXLAN) {
		en_info(priv, "Setting RSS context tunnel type to RSS on inner headers\n");
		rss_mask |= MLX4_RSS_BY_INNER_HEADERS;
	}

Y
Yevgeny Petrilin 已提交
1384
	rss_context->flags = rss_mask;
1385
	rss_context->hash_fn = MLX4_RSS_HASH_TOP;
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
	if (priv->rss_hash_fn == ETH_RSS_HASH_XOR) {
		rss_context->hash_fn = MLX4_RSS_HASH_XOR;
	} else if (priv->rss_hash_fn == ETH_RSS_HASH_TOP) {
		rss_context->hash_fn = MLX4_RSS_HASH_TOP;
		memcpy(rss_context->rss_key, priv->rss_key,
		       MLX4_EN_RSS_KEY_SIZE);
	} else {
		en_err(priv, "Unknown RSS hash function requested\n");
		err = -EINVAL;
		goto indir_err;
	}
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
	err = mlx4_qp_to_ready(mdev->dev, &priv->res.mtt, &context,
			       &rss_map->indir_qp, &rss_map->indir_state);
	if (err)
		goto indir_err;

	return 0;

indir_err:
	mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
		       MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
	mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
	mlx4_qp_free(mdev->dev, &rss_map->indir_qp);
rss_err:
	for (i = 0; i < good_qps; i++) {
		mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
			       MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
		mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
		mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
	}
1416
	mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
	return err;
}

void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv)
{
	struct mlx4_en_dev *mdev = priv->mdev;
	struct mlx4_en_rss_map *rss_map = &priv->rss_map;
	int i;

	mlx4_qp_modify(mdev->dev, NULL, rss_map->indir_state,
		       MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->indir_qp);
	mlx4_qp_remove(mdev->dev, &rss_map->indir_qp);
	mlx4_qp_free(mdev->dev, &rss_map->indir_qp);

1431
	for (i = 0; i < priv->rx_ring_num; i++) {
1432 1433 1434 1435 1436
		mlx4_qp_modify(mdev->dev, NULL, rss_map->state[i],
			       MLX4_QP_STATE_RST, NULL, 0, 0, &rss_map->qps[i]);
		mlx4_qp_remove(mdev->dev, &rss_map->qps[i]);
		mlx4_qp_free(mdev->dev, &rss_map->qps[i]);
	}
1437
	mlx4_qp_release_range(mdev->dev, rss_map->base_qpn, priv->rx_ring_num);
1438
}