nfp_net_common.c 97.1 KB
Newer Older
1
/*
2
 * Copyright (C) 2015-2017 Netronome Systems, Inc.
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 34 35 36 37 38 39 40 41 42 43
 *
 * This software is dual licensed under the GNU General License Version 2,
 * June 1991 as shown in the file COPYING in the top-level directory of this
 * source tree or the BSD 2-Clause License provided below.  You have the
 * option to license this software under the complete terms of either license.
 *
 * The BSD 2-Clause License:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      1. Redistributions of source code must retain the above
 *         copyright notice, this list of conditions and the following
 *         disclaimer.
 *
 *      2. 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.
 */

/*
 * nfp_net_common.c
 * Netronome network device driver: Common functions between PF and VF
 * Authors: Jakub Kicinski <jakub.kicinski@netronome.com>
 *          Jason McMullan <jason.mcmullan@netronome.com>
 *          Rolf Neugebauer <rolf.neugebauer@netronome.com>
 *          Brad Petrus <brad.petrus@netronome.com>
 *          Chris Telfer <chris.telfer@netronome.com>
 */

44
#include <linux/bitfield.h>
45
#include <linux/bpf.h>
46
#include <linux/bpf_trace.h>
47 48 49 50 51 52 53 54 55
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/interrupt.h>
#include <linux/ip.h>
#include <linux/ipv6.h>
56
#include <linux/page_ref.h>
57 58 59 60 61 62 63
#include <linux/pci.h>
#include <linux/pci_regs.h>
#include <linux/msi.h>
#include <linux/ethtool.h>
#include <linux/log2.h>
#include <linux/if_vlan.h>
#include <linux/random.h>
64
#include <linux/vmalloc.h>
65 66
#include <linux/ktime.h>

S
Simon Horman 已提交
67
#include <net/switchdev.h>
68 69
#include <net/vxlan.h>

70
#include "nfpcore/nfp_nsp.h"
71
#include "nfp_app.h"
72 73
#include "nfp_net_ctrl.h"
#include "nfp_net.h"
J
Jakub Kicinski 已提交
74
#include "nfp_port.h"
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89

/**
 * nfp_net_get_fw_version() - Read and parse the FW version
 * @fw_ver:	Output fw_version structure to read to
 * @ctrl_bar:	Mapped address of the control BAR
 */
void nfp_net_get_fw_version(struct nfp_net_fw_version *fw_ver,
			    void __iomem *ctrl_bar)
{
	u32 reg;

	reg = readl(ctrl_bar + NFP_NET_CFG_VERSION);
	put_unaligned_le32(reg, fw_ver);
}

90
static dma_addr_t nfp_net_dma_map_rx(struct nfp_net_dp *dp, void *frag)
91
{
92 93 94 95 96 97 98 99 100 101 102
	return dma_map_single_attrs(dp->dev, frag + NFP_NET_RX_BUF_HEADROOM,
				    dp->fl_bufsz - NFP_NET_RX_BUF_NON_DATA,
				    dp->rx_dma_dir, DMA_ATTR_SKIP_CPU_SYNC);
}

static void
nfp_net_dma_sync_dev_rx(const struct nfp_net_dp *dp, dma_addr_t dma_addr)
{
	dma_sync_single_for_device(dp->dev, dma_addr,
				   dp->fl_bufsz - NFP_NET_RX_BUF_NON_DATA,
				   dp->rx_dma_dir);
103 104
}

105
static void nfp_net_dma_unmap_rx(struct nfp_net_dp *dp, dma_addr_t dma_addr)
106
{
107 108 109 110 111 112 113 114 115 116
	dma_unmap_single_attrs(dp->dev, dma_addr,
			       dp->fl_bufsz - NFP_NET_RX_BUF_NON_DATA,
			       dp->rx_dma_dir, DMA_ATTR_SKIP_CPU_SYNC);
}

static void nfp_net_dma_sync_cpu_rx(struct nfp_net_dp *dp, dma_addr_t dma_addr,
				    unsigned int len)
{
	dma_sync_single_for_cpu(dp->dev, dma_addr - NFP_NET_RX_BUF_HEADROOM,
				len, dp->rx_dma_dir);
117 118
}

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
/* Firmware reconfig
 *
 * Firmware reconfig may take a while so we have two versions of it -
 * synchronous and asynchronous (posted).  All synchronous callers are holding
 * RTNL so we don't have to worry about serializing them.
 */
static void nfp_net_reconfig_start(struct nfp_net *nn, u32 update)
{
	nn_writel(nn, NFP_NET_CFG_UPDATE, update);
	/* ensure update is written before pinging HW */
	nn_pci_flush(nn);
	nfp_qcp_wr_ptr_add(nn->qcp_cfg, 1);
}

/* Pass 0 as update to run posted reconfigs. */
static void nfp_net_reconfig_start_async(struct nfp_net *nn, u32 update)
{
	update |= nn->reconfig_posted;
	nn->reconfig_posted = 0;

	nfp_net_reconfig_start(nn, update);

	nn->reconfig_timer_active = true;
	mod_timer(&nn->reconfig_timer, jiffies + NFP_NET_POLL_TIMEOUT * HZ);
}

static bool nfp_net_reconfig_check_done(struct nfp_net *nn, bool last_check)
{
	u32 reg;

	reg = nn_readl(nn, NFP_NET_CFG_UPDATE);
	if (reg == 0)
		return true;
	if (reg & NFP_NET_CFG_UPDATE_ERR) {
		nn_err(nn, "Reconfig error: 0x%08x\n", reg);
		return true;
	} else if (last_check) {
		nn_err(nn, "Reconfig timeout: 0x%08x\n", reg);
		return true;
	}

	return false;
}

static int nfp_net_reconfig_wait(struct nfp_net *nn, unsigned long deadline)
{
	bool timed_out = false;

	/* Poll update field, waiting for NFP to ack the config */
	while (!nfp_net_reconfig_check_done(nn, timed_out)) {
		msleep(1);
		timed_out = time_is_before_eq_jiffies(deadline);
	}

	if (nn_readl(nn, NFP_NET_CFG_UPDATE) & NFP_NET_CFG_UPDATE_ERR)
		return -EIO;

	return timed_out ? -EIO : 0;
}

static void nfp_net_reconfig_timer(unsigned long data)
{
	struct nfp_net *nn = (void *)data;

	spin_lock_bh(&nn->reconfig_lock);

	nn->reconfig_timer_active = false;

	/* If sync caller is present it will take over from us */
	if (nn->reconfig_sync_present)
		goto done;

	/* Read reconfig status and report errors */
	nfp_net_reconfig_check_done(nn, true);

	if (nn->reconfig_posted)
		nfp_net_reconfig_start_async(nn, 0);
done:
	spin_unlock_bh(&nn->reconfig_lock);
}

/**
 * nfp_net_reconfig_post() - Post async reconfig request
 * @nn:      NFP Net device to reconfigure
 * @update:  The value for the update field in the BAR config
 *
 * Record FW reconfiguration request.  Reconfiguration will be kicked off
 * whenever reconfiguration machinery is idle.  Multiple requests can be
 * merged together!
 */
static void nfp_net_reconfig_post(struct nfp_net *nn, u32 update)
{
	spin_lock_bh(&nn->reconfig_lock);

	/* Sync caller will kick off async reconf when it's done, just post */
	if (nn->reconfig_sync_present) {
		nn->reconfig_posted |= update;
		goto done;
	}

	/* Opportunistically check if the previous command is done */
	if (!nn->reconfig_timer_active ||
	    nfp_net_reconfig_check_done(nn, false))
		nfp_net_reconfig_start_async(nn, update);
	else
		nn->reconfig_posted |= update;
done:
	spin_unlock_bh(&nn->reconfig_lock);
}

229 230 231 232 233 234 235 236 237 238 239 240 241
/**
 * nfp_net_reconfig() - Reconfigure the firmware
 * @nn:      NFP Net device to reconfigure
 * @update:  The value for the update field in the BAR config
 *
 * Write the update word to the BAR and ping the reconfig queue.  The
 * poll until the firmware has acknowledged the update by zeroing the
 * update word.
 *
 * Return: Negative errno on error, 0 on success
 */
int nfp_net_reconfig(struct nfp_net *nn, u32 update)
{
242 243 244
	bool cancelled_timer = false;
	u32 pre_posted_requests;
	int ret;
245 246 247

	spin_lock_bh(&nn->reconfig_lock);

248
	nn->reconfig_sync_present = true;
249

250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
	if (nn->reconfig_timer_active) {
		del_timer(&nn->reconfig_timer);
		nn->reconfig_timer_active = false;
		cancelled_timer = true;
	}
	pre_posted_requests = nn->reconfig_posted;
	nn->reconfig_posted = 0;

	spin_unlock_bh(&nn->reconfig_lock);

	if (cancelled_timer)
		nfp_net_reconfig_wait(nn, nn->reconfig_timer.expires);

	/* Run the posted reconfigs which were issued before we started */
	if (pre_posted_requests) {
		nfp_net_reconfig_start(nn, pre_posted_requests);
		nfp_net_reconfig_wait(nn, jiffies + HZ * NFP_NET_POLL_TIMEOUT);
267 268
	}

269 270 271 272 273 274 275 276 277 278
	nfp_net_reconfig_start(nn, update);
	ret = nfp_net_reconfig_wait(nn, jiffies + HZ * NFP_NET_POLL_TIMEOUT);

	spin_lock_bh(&nn->reconfig_lock);

	if (nn->reconfig_posted)
		nfp_net_reconfig_start_async(nn, 0);

	nn->reconfig_sync_present = false;

279
	spin_unlock_bh(&nn->reconfig_lock);
280

281 282 283
	return ret;
}

P
Pablo Cascón 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
/**
 * nfp_net_reconfig_mbox() - Reconfigure the firmware via the mailbox
 * @nn:        NFP Net device to reconfigure
 * @mbox_cmd:  The value for the mailbox command
 *
 * Helper function for mailbox updates
 *
 * Return: Negative errno on error, 0 on success
 */
static int nfp_net_reconfig_mbox(struct nfp_net *nn, u32 mbox_cmd)
{
	int ret;

	nn_writeq(nn, NFP_NET_CFG_MBOX_CMD, mbox_cmd);

	ret = nfp_net_reconfig(nn, NFP_NET_CFG_UPDATE_MBOX);
	if (ret) {
		nn_err(nn, "Mailbox update error\n");
		return ret;
	}

	return -nn_readl(nn, NFP_NET_CFG_MBOX_RET);
}

308 309 310 311 312 313 314 315
/* Interrupt configuration and handling
 */

/**
 * nfp_net_irq_unmask() - Unmask automasked interrupt
 * @nn:       NFP Network structure
 * @entry_nr: MSI-X table entry
 *
J
Jakub Kicinski 已提交
316
 * Clear the ICR for the IRQ entry.
317 318 319 320 321 322 323 324
 */
static void nfp_net_irq_unmask(struct nfp_net *nn, unsigned int entry_nr)
{
	nn_writeb(nn, NFP_NET_CFG_ICR(entry_nr), NFP_NET_CFG_ICR_UNMASKED);
	nn_pci_flush(nn);
}

/**
325 326 327 328 329
 * nfp_net_irqs_alloc() - allocates MSI-X irqs
 * @pdev:        PCI device structure
 * @irq_entries: Array to be initialized and used to hold the irq entries
 * @min_irqs:    Minimal acceptable number of interrupts
 * @wanted_irqs: Target number of interrupts to allocate
330
 *
331
 * Return: Number of irqs obtained or 0 on error.
332
 */
333 334 335
unsigned int
nfp_net_irqs_alloc(struct pci_dev *pdev, struct msix_entry *irq_entries,
		   unsigned int min_irqs, unsigned int wanted_irqs)
336
{
337 338
	unsigned int i;
	int got_irqs;
339

340 341
	for (i = 0; i < wanted_irqs; i++)
		irq_entries[i].entry = i;
342

343 344 345 346 347
	got_irqs = pci_enable_msix_range(pdev, irq_entries,
					 min_irqs, wanted_irqs);
	if (got_irqs < 0) {
		dev_err(&pdev->dev, "Failed to enable %d-%d MSI-X (err=%d)\n",
			min_irqs, wanted_irqs, got_irqs);
348 349 350
		return 0;
	}

351 352 353 354 355
	if (got_irqs < wanted_irqs)
		dev_warn(&pdev->dev, "Unable to allocate %d IRQs got only %d\n",
			 wanted_irqs, got_irqs);

	return got_irqs;
356 357 358
}

/**
359 360 361 362
 * nfp_net_irqs_assign() - Assign interrupts allocated externally to netdev
 * @nn:		 NFP Network structure
 * @irq_entries: Table of allocated interrupts
 * @n:		 Size of @irq_entries (number of entries to grab)
363
 *
364 365
 * After interrupts are allocated with nfp_net_irqs_alloc() this function
 * should be called to assign them to a specific netdev (port).
366
 */
367 368 369
void
nfp_net_irqs_assign(struct nfp_net *nn, struct msix_entry *irq_entries,
		    unsigned int n)
370
{
371 372
	struct nfp_net_dp *dp = &nn->dp;

373
	nn->max_r_vecs = n - NFP_NET_NON_Q_VECTORS;
374
	dp->num_r_vecs = nn->max_r_vecs;
375

376
	memcpy(nn->irq_entries, irq_entries, sizeof(*irq_entries) * n);
377

378 379
	if (dp->num_rx_rings > dp->num_r_vecs ||
	    dp->num_tx_rings > dp->num_r_vecs)
380 381 382
		dev_warn(nn->dp.dev, "More rings (%d,%d) than vectors (%d).\n",
			 dp->num_rx_rings, dp->num_tx_rings,
			 dp->num_r_vecs);
383

384 385 386
	dp->num_rx_rings = min(dp->num_r_vecs, dp->num_rx_rings);
	dp->num_tx_rings = min(dp->num_r_vecs, dp->num_tx_rings);
	dp->num_stack_tx_rings = dp->num_tx_rings;
387 388 389 390
}

/**
 * nfp_net_irqs_disable() - Disable interrupts
391
 * @pdev:        PCI device structure
392 393 394
 *
 * Undoes what @nfp_net_irqs_alloc() does.
 */
395
void nfp_net_irqs_disable(struct pci_dev *pdev)
396
{
397
	pci_disable_msix(pdev);
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
}

/**
 * nfp_net_irq_rxtx() - Interrupt service routine for RX/TX rings.
 * @irq:      Interrupt
 * @data:     Opaque data structure
 *
 * Return: Indicate if the interrupt has been handled.
 */
static irqreturn_t nfp_net_irq_rxtx(int irq, void *data)
{
	struct nfp_net_r_vector *r_vec = data;

	napi_schedule_irqoff(&r_vec->napi);

	/* The FW auto-masks any interrupt, either via the MASK bit in
	 * the MSI-X table or via the per entry ICR field.  So there
	 * is no need to disable interrupts here.
	 */
	return IRQ_HANDLED;
}

J
Jakub Kicinski 已提交
420 421 422 423 424 425 426 427 428
static irqreturn_t nfp_ctrl_irq_rxtx(int irq, void *data)
{
	struct nfp_net_r_vector *r_vec = data;

	tasklet_schedule(&r_vec->tasklet);

	return IRQ_HANDLED;
}

429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
/**
 * nfp_net_read_link_status() - Reread link status from control BAR
 * @nn:       NFP Network structure
 */
static void nfp_net_read_link_status(struct nfp_net *nn)
{
	unsigned long flags;
	bool link_up;
	u32 sts;

	spin_lock_irqsave(&nn->link_status_lock, flags);

	sts = nn_readl(nn, NFP_NET_CFG_STS);
	link_up = !!(sts & NFP_NET_CFG_STS_LINK);

	if (nn->link_up == link_up)
		goto out;

	nn->link_up = link_up;
448 449
	if (nn->port)
		set_bit(NFP_PORT_CHANGED, &nn->port->flags);
450 451

	if (nn->link_up) {
452 453
		netif_carrier_on(nn->dp.netdev);
		netdev_info(nn->dp.netdev, "NIC Link is Up\n");
454
	} else {
455 456
		netif_carrier_off(nn->dp.netdev);
		netdev_info(nn->dp.netdev, "NIC Link is Down\n");
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
	}
out:
	spin_unlock_irqrestore(&nn->link_status_lock, flags);
}

/**
 * nfp_net_irq_lsc() - Interrupt service routine for link state changes
 * @irq:      Interrupt
 * @data:     Opaque data structure
 *
 * Return: Indicate if the interrupt has been handled.
 */
static irqreturn_t nfp_net_irq_lsc(int irq, void *data)
{
	struct nfp_net *nn = data;
472 473 474
	struct msix_entry *entry;

	entry = &nn->irq_entries[NFP_NET_IRQ_LSC_IDX];
475 476 477

	nfp_net_read_link_status(nn);

478
	nfp_net_irq_unmask(nn, entry->entry);
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501

	return IRQ_HANDLED;
}

/**
 * nfp_net_irq_exn() - Interrupt service routine for exceptions
 * @irq:      Interrupt
 * @data:     Opaque data structure
 *
 * Return: Indicate if the interrupt has been handled.
 */
static irqreturn_t nfp_net_irq_exn(int irq, void *data)
{
	struct nfp_net *nn = data;

	nn_err(nn, "%s: UNIMPLEMENTED.\n", __func__);
	/* XXX TO BE IMPLEMENTED */
	return IRQ_HANDLED;
}

/**
 * nfp_net_tx_ring_init() - Fill in the boilerplate for a TX ring
 * @tx_ring:  TX ring structure
502 503
 * @r_vec:    IRQ vector servicing this ring
 * @idx:      Ring index
504
 * @is_xdp:   Is this an XDP TX ring?
505
 */
506 507
static void
nfp_net_tx_ring_init(struct nfp_net_tx_ring *tx_ring,
508 509
		     struct nfp_net_r_vector *r_vec, unsigned int idx,
		     bool is_xdp)
510 511 512
{
	struct nfp_net *nn = r_vec->nfp_net;

513 514
	tx_ring->idx = idx;
	tx_ring->r_vec = r_vec;
515
	tx_ring->is_xdp = is_xdp;
516

517 518 519 520 521 522 523
	tx_ring->qcidx = tx_ring->idx * nn->stride_tx;
	tx_ring->qcp_q = nn->tx_bar + NFP_QCP_QUEUE_OFF(tx_ring->qcidx);
}

/**
 * nfp_net_rx_ring_init() - Fill in the boilerplate for a RX ring
 * @rx_ring:  RX ring structure
524 525
 * @r_vec:    IRQ vector servicing this ring
 * @idx:      Ring index
526
 */
527 528 529
static void
nfp_net_rx_ring_init(struct nfp_net_rx_ring *rx_ring,
		     struct nfp_net_r_vector *r_vec, unsigned int idx)
530 531 532
{
	struct nfp_net *nn = r_vec->nfp_net;

533 534 535
	rx_ring->idx = idx;
	rx_ring->r_vec = r_vec;

536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
	rx_ring->fl_qcidx = rx_ring->idx * nn->stride_rx;
	rx_ring->qcp_fl = nn->rx_bar + NFP_QCP_QUEUE_OFF(rx_ring->fl_qcidx);
}

/**
 * nfp_net_aux_irq_request() - Request an auxiliary interrupt (LSC or EXN)
 * @nn:		NFP Network structure
 * @ctrl_offset: Control BAR offset where IRQ configuration should be written
 * @format:	printf-style format to construct the interrupt name
 * @name:	Pointer to allocated space for interrupt name
 * @name_sz:	Size of space for interrupt name
 * @vector_idx:	Index of MSI-X vector used for this interrupt
 * @handler:	IRQ handler to register for this interrupt
 */
static int
nfp_net_aux_irq_request(struct nfp_net *nn, u32 ctrl_offset,
			const char *format, char *name, size_t name_sz,
			unsigned int vector_idx, irq_handler_t handler)
{
	struct msix_entry *entry;
	int err;

	entry = &nn->irq_entries[vector_idx];

J
Jakub Kicinski 已提交
560
	snprintf(name, name_sz, format, nfp_net_name(nn));
561 562 563 564 565 566
	err = request_irq(entry->vector, handler, 0, name, nn);
	if (err) {
		nn_err(nn, "Failed to request IRQ %d (err=%d).\n",
		       entry->vector, err);
		return err;
	}
567
	nn_writeb(nn, ctrl_offset, entry->entry);
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608

	return 0;
}

/**
 * nfp_net_aux_irq_free() - Free an auxiliary interrupt (LSC or EXN)
 * @nn:		NFP Network structure
 * @ctrl_offset: Control BAR offset where IRQ configuration should be written
 * @vector_idx:	Index of MSI-X vector used for this interrupt
 */
static void nfp_net_aux_irq_free(struct nfp_net *nn, u32 ctrl_offset,
				 unsigned int vector_idx)
{
	nn_writeb(nn, ctrl_offset, 0xff);
	free_irq(nn->irq_entries[vector_idx].vector, nn);
}

/* Transmit
 *
 * One queue controller peripheral queue is used for transmit.  The
 * driver en-queues packets for transmit by advancing the write
 * pointer.  The device indicates that packets have transmitted by
 * advancing the read pointer.  The driver maintains a local copy of
 * the read and write pointer in @struct nfp_net_tx_ring.  The driver
 * keeps @wr_p in sync with the queue controller write pointer and can
 * determine how many packets have been transmitted by comparing its
 * copy of the read pointer @rd_p with the read pointer maintained by
 * the queue controller peripheral.
 */

/**
 * nfp_net_tx_full() - Check if the TX ring is full
 * @tx_ring: TX ring to check
 * @dcnt:    Number of descriptors that need to be enqueued (must be >= 1)
 *
 * This function checks, based on the *host copy* of read/write
 * pointer if a given TX ring is full.  The real TX queue may have
 * some newly made available slots.
 *
 * Return: True if the ring is full.
 */
609
static int nfp_net_tx_full(struct nfp_net_tx_ring *tx_ring, int dcnt)
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
{
	return (tx_ring->wr_p - tx_ring->rd_p) >= (tx_ring->cnt - dcnt);
}

/* Wrappers for deciding when to stop and restart TX queues */
static int nfp_net_tx_ring_should_wake(struct nfp_net_tx_ring *tx_ring)
{
	return !nfp_net_tx_full(tx_ring, MAX_SKB_FRAGS * 4);
}

static int nfp_net_tx_ring_should_stop(struct nfp_net_tx_ring *tx_ring)
{
	return nfp_net_tx_full(tx_ring, MAX_SKB_FRAGS + 1);
}

/**
 * nfp_net_tx_ring_stop() - stop tx ring
 * @nd_q:    netdev queue
 * @tx_ring: driver tx queue structure
 *
 * Safely stop TX ring.  Remember that while we are running .start_xmit()
 * someone else may be cleaning the TX ring completions so we need to be
 * extra careful here.
 */
static void nfp_net_tx_ring_stop(struct netdev_queue *nd_q,
				 struct nfp_net_tx_ring *tx_ring)
{
	netif_tx_stop_queue(nd_q);

	/* We can race with the TX completion out of NAPI so recheck */
	smp_mb();
	if (unlikely(nfp_net_tx_ring_should_wake(tx_ring)))
		netif_tx_start_queue(nd_q);
}

/**
 * nfp_net_tx_tso() - Set up Tx descriptor for LSO
 * @r_vec: per-ring structure
 * @txbuf: Pointer to driver soft TX descriptor
 * @txd: Pointer to HW TX descriptor
 * @skb: Pointer to SKB
 *
 * Set up Tx descriptor for LSO, do nothing for non-LSO skbs.
 * Return error on packet header greater than maximum supported LSO header size.
 */
655
static void nfp_net_tx_tso(struct nfp_net_r_vector *r_vec,
656 657 658 659 660 661 662 663 664
			   struct nfp_net_tx_buf *txbuf,
			   struct nfp_net_tx_desc *txd, struct sk_buff *skb)
{
	u32 hdrlen;
	u16 mss;

	if (!skb_is_gso(skb))
		return;

E
Edwin Peer 已提交
665 666 667
	if (!skb->encapsulation) {
		txd->l3_offset = skb_network_offset(skb);
		txd->l4_offset = skb_transport_offset(skb);
668
		hdrlen = skb_transport_offset(skb) + tcp_hdrlen(skb);
E
Edwin Peer 已提交
669 670 671
	} else {
		txd->l3_offset = skb_inner_network_offset(skb);
		txd->l4_offset = skb_inner_transport_offset(skb);
672 673
		hdrlen = skb_inner_transport_header(skb) - skb->data +
			inner_tcp_hdrlen(skb);
E
Edwin Peer 已提交
674
	}
675 676 677 678 679

	txbuf->pkt_cnt = skb_shinfo(skb)->gso_segs;
	txbuf->real_len += hdrlen * (txbuf->pkt_cnt - 1);

	mss = skb_shinfo(skb)->gso_size & PCIE_DESC_TX_MSS_MASK;
680
	txd->lso_hdrlen = hdrlen;
681 682 683 684 685 686 687 688 689 690
	txd->mss = cpu_to_le16(mss);
	txd->flags |= PCIE_DESC_TX_LSO;

	u64_stats_update_begin(&r_vec->tx_sync);
	r_vec->tx_lso++;
	u64_stats_update_end(&r_vec->tx_sync);
}

/**
 * nfp_net_tx_csum() - Set TX CSUM offload flags in TX descriptor
691
 * @dp:  NFP Net data path struct
692 693 694 695 696 697 698 699
 * @r_vec: per-ring structure
 * @txbuf: Pointer to driver soft TX descriptor
 * @txd: Pointer to TX descriptor
 * @skb: Pointer to SKB
 *
 * This function sets the TX checksum flags in the TX descriptor based
 * on the configuration and the protocol of the packet to be transmitted.
 */
700 701
static void nfp_net_tx_csum(struct nfp_net_dp *dp,
			    struct nfp_net_r_vector *r_vec,
702 703 704 705 706 707 708
			    struct nfp_net_tx_buf *txbuf,
			    struct nfp_net_tx_desc *txd, struct sk_buff *skb)
{
	struct ipv6hdr *ipv6h;
	struct iphdr *iph;
	u8 l4_hdr;

709
	if (!(dp->ctrl & NFP_NET_CFG_CTRL_TXCSUM))
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
		return;

	if (skb->ip_summed != CHECKSUM_PARTIAL)
		return;

	txd->flags |= PCIE_DESC_TX_CSUM;
	if (skb->encapsulation)
		txd->flags |= PCIE_DESC_TX_ENCAP;

	iph = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
	ipv6h = skb->encapsulation ? inner_ipv6_hdr(skb) : ipv6_hdr(skb);

	if (iph->version == 4) {
		txd->flags |= PCIE_DESC_TX_IP4_CSUM;
		l4_hdr = iph->protocol;
	} else if (ipv6h->version == 6) {
		l4_hdr = ipv6h->nexthdr;
	} else {
728
		nn_dp_warn(dp, "partial checksum but ipv=%x!\n", iph->version);
729 730 731 732 733 734 735 736 737 738 739
		return;
	}

	switch (l4_hdr) {
	case IPPROTO_TCP:
		txd->flags |= PCIE_DESC_TX_TCP_CSUM;
		break;
	case IPPROTO_UDP:
		txd->flags |= PCIE_DESC_TX_UDP_CSUM;
		break;
	default:
740
		nn_dp_warn(dp, "partial checksum but l4 proto=%x!\n", l4_hdr);
741 742 743 744 745 746 747 748 749 750 751
		return;
	}

	u64_stats_update_begin(&r_vec->tx_sync);
	if (skb->encapsulation)
		r_vec->hw_csum_tx_inner += txbuf->pkt_cnt;
	else
		r_vec->hw_csum_tx += txbuf->pkt_cnt;
	u64_stats_update_end(&r_vec->tx_sync);
}

752 753 754 755 756 757 758
static void nfp_net_tx_xmit_more_flush(struct nfp_net_tx_ring *tx_ring)
{
	wmb();
	nfp_qcp_wr_ptr_add(tx_ring->qcp_q, tx_ring->wr_ptr_add);
	tx_ring->wr_ptr_add = 0;
}

759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
static int nfp_net_prep_port_id(struct sk_buff *skb)
{
	struct metadata_dst *md_dst = skb_metadata_dst(skb);
	unsigned char *data;

	if (likely(!md_dst))
		return 0;
	if (unlikely(md_dst->type != METADATA_HW_PORT_MUX))
		return 0;

	if (unlikely(skb_cow_head(skb, 8)))
		return -ENOMEM;

	data = skb_push(skb, 8);
	put_unaligned_be32(NFP_NET_META_PORTID, data);
	put_unaligned_be32(md_dst->u.port_info.port_id, data + 4);

	return 8;
}

779 780 781 782 783 784 785 786 787 788 789 790
/**
 * nfp_net_tx() - Main transmit entry point
 * @skb:    SKB to transmit
 * @netdev: netdev structure
 *
 * Return: NETDEV_TX_OK on success.
 */
static int nfp_net_tx(struct sk_buff *skb, struct net_device *netdev)
{
	struct nfp_net *nn = netdev_priv(netdev);
	const struct skb_frag_struct *frag;
	struct nfp_net_tx_desc *txd, txdg;
791
	int f, nr_frags, wr_idx, md_bytes;
792
	struct nfp_net_tx_ring *tx_ring;
793 794
	struct nfp_net_r_vector *r_vec;
	struct nfp_net_tx_buf *txbuf;
795
	struct netdev_queue *nd_q;
796
	struct nfp_net_dp *dp;
797 798 799 800
	dma_addr_t dma_addr;
	unsigned int fsize;
	u16 qidx;

801
	dp = &nn->dp;
802
	qidx = skb_get_queue_mapping(skb);
803
	tx_ring = &dp->tx_rings[qidx];
804
	r_vec = tx_ring->r_vec;
805
	nd_q = netdev_get_tx_queue(dp->netdev, qidx);
806 807 808 809

	nr_frags = skb_shinfo(skb)->nr_frags;

	if (unlikely(nfp_net_tx_full(tx_ring, nr_frags + 1))) {
810 811
		nn_dp_warn(dp, "TX ring %d busy. wrp=%u rdp=%u\n",
			   qidx, tx_ring->wr_p, tx_ring->rd_p);
812
		netif_tx_stop_queue(nd_q);
813
		nfp_net_tx_xmit_more_flush(tx_ring);
814 815 816 817 818 819
		u64_stats_update_begin(&r_vec->tx_sync);
		r_vec->tx_busy++;
		u64_stats_update_end(&r_vec->tx_sync);
		return NETDEV_TX_BUSY;
	}

820 821 822 823 824 825 826
	md_bytes = nfp_net_prep_port_id(skb);
	if (unlikely(md_bytes < 0)) {
		nfp_net_tx_xmit_more_flush(tx_ring);
		dev_kfree_skb_any(skb);
		return NETDEV_TX_OK;
	}

827
	/* Start with the head skbuf */
828
	dma_addr = dma_map_single(dp->dev, skb->data, skb_headlen(skb),
829
				  DMA_TO_DEVICE);
830
	if (dma_mapping_error(dp->dev, dma_addr))
831 832
		goto err_free;

833
	wr_idx = D_IDX(tx_ring, tx_ring->wr_p);
834 835 836 837 838 839 840 841 842 843 844

	/* Stash the soft descriptor of the head then initialize it */
	txbuf = &tx_ring->txbufs[wr_idx];
	txbuf->skb = skb;
	txbuf->dma_addr = dma_addr;
	txbuf->fidx = -1;
	txbuf->pkt_cnt = 1;
	txbuf->real_len = skb->len;

	/* Build TX descriptor */
	txd = &tx_ring->txds[wr_idx];
845
	txd->offset_eop = (nr_frags ? 0 : PCIE_DESC_TX_EOP) | md_bytes;
846 847 848 849 850 851
	txd->dma_len = cpu_to_le16(skb_headlen(skb));
	nfp_desc_set_dma_addr(txd, dma_addr);
	txd->data_len = cpu_to_le16(skb->len);

	txd->flags = 0;
	txd->mss = 0;
852
	txd->lso_hdrlen = 0;
853

E
Edwin Peer 已提交
854
	/* Do not reorder - tso may adjust pkt cnt, vlan may override fields */
855 856 857
	nfp_net_tx_tso(r_vec, txbuf, txd, skb);
	nfp_net_tx_csum(dp, r_vec, txbuf, txd, skb);
	if (skb_vlan_tag_present(skb) && dp->ctrl & NFP_NET_CFG_CTRL_TXVLAN) {
858 859 860 861 862 863 864 865 866 867 868 869 870
		txd->flags |= PCIE_DESC_TX_VLAN;
		txd->vlan = cpu_to_le16(skb_vlan_tag_get(skb));
	}

	/* Gather DMA */
	if (nr_frags > 0) {
		/* all descs must match except for in addr, length and eop */
		txdg = *txd;

		for (f = 0; f < nr_frags; f++) {
			frag = &skb_shinfo(skb)->frags[f];
			fsize = skb_frag_size(frag);

871
			dma_addr = skb_frag_dma_map(dp->dev, frag, 0,
872
						    fsize, DMA_TO_DEVICE);
873
			if (dma_mapping_error(dp->dev, dma_addr))
874 875
				goto err_unmap;

876
			wr_idx = D_IDX(tx_ring, wr_idx + 1);
877 878 879 880 881 882 883 884
			tx_ring->txbufs[wr_idx].skb = skb;
			tx_ring->txbufs[wr_idx].dma_addr = dma_addr;
			tx_ring->txbufs[wr_idx].fidx = f;

			txd = &tx_ring->txds[wr_idx];
			*txd = txdg;
			txd->dma_len = cpu_to_le16(fsize);
			nfp_desc_set_dma_addr(txd, dma_addr);
885
			txd->offset_eop |=
886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
				(f == nr_frags - 1) ? PCIE_DESC_TX_EOP : 0;
		}

		u64_stats_update_begin(&r_vec->tx_sync);
		r_vec->tx_gather++;
		u64_stats_update_end(&r_vec->tx_sync);
	}

	netdev_tx_sent_queue(nd_q, txbuf->real_len);

	tx_ring->wr_p += nr_frags + 1;
	if (nfp_net_tx_ring_should_stop(tx_ring))
		nfp_net_tx_ring_stop(nd_q, tx_ring);

	tx_ring->wr_ptr_add += nr_frags + 1;
901 902
	if (!skb->xmit_more || netif_xmit_stopped(nd_q))
		nfp_net_tx_xmit_more_flush(tx_ring);
903 904 905 906 907 908 909 910 911

	skb_tx_timestamp(skb);

	return NETDEV_TX_OK;

err_unmap:
	--f;
	while (f >= 0) {
		frag = &skb_shinfo(skb)->frags[f];
912
		dma_unmap_page(dp->dev, tx_ring->txbufs[wr_idx].dma_addr,
913 914 915 916 917 918 919 920
			       skb_frag_size(frag), DMA_TO_DEVICE);
		tx_ring->txbufs[wr_idx].skb = NULL;
		tx_ring->txbufs[wr_idx].dma_addr = 0;
		tx_ring->txbufs[wr_idx].fidx = -2;
		wr_idx = wr_idx - 1;
		if (wr_idx < 0)
			wr_idx += tx_ring->cnt;
	}
921
	dma_unmap_single(dp->dev, tx_ring->txbufs[wr_idx].dma_addr,
922 923 924 925 926
			 skb_headlen(skb), DMA_TO_DEVICE);
	tx_ring->txbufs[wr_idx].skb = NULL;
	tx_ring->txbufs[wr_idx].dma_addr = 0;
	tx_ring->txbufs[wr_idx].fidx = -2;
err_free:
927
	nn_dp_warn(dp, "Failed to map DMA TX buffer\n");
928
	nfp_net_tx_xmit_more_flush(tx_ring);
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944
	u64_stats_update_begin(&r_vec->tx_sync);
	r_vec->tx_errors++;
	u64_stats_update_end(&r_vec->tx_sync);
	dev_kfree_skb_any(skb);
	return NETDEV_TX_OK;
}

/**
 * nfp_net_tx_complete() - Handled completed TX packets
 * @tx_ring:   TX ring structure
 *
 * Return: Number of completed TX descriptors
 */
static void nfp_net_tx_complete(struct nfp_net_tx_ring *tx_ring)
{
	struct nfp_net_r_vector *r_vec = tx_ring->r_vec;
945
	struct nfp_net_dp *dp = &r_vec->nfp_net->dp;
946 947 948 949 950 951 952 953 954
	const struct skb_frag_struct *frag;
	struct netdev_queue *nd_q;
	u32 done_pkts = 0, done_bytes = 0;
	struct sk_buff *skb;
	int todo, nr_frags;
	u32 qcp_rd_p;
	int fidx;
	int idx;

955 956 957
	if (tx_ring->wr_p == tx_ring->rd_p)
		return;

958 959 960 961 962 963
	/* Work out how many descriptors have been transmitted */
	qcp_rd_p = nfp_qcp_rd_ptr_read(tx_ring->qcp_q);

	if (qcp_rd_p == tx_ring->qcp_rd_p)
		return;

964
	todo = D_IDX(tx_ring, qcp_rd_p - tx_ring->qcp_rd_p);
965 966

	while (todo--) {
967
		idx = D_IDX(tx_ring, tx_ring->rd_p++);
968 969 970 971 972 973 974 975 976 977

		skb = tx_ring->txbufs[idx].skb;
		if (!skb)
			continue;

		nr_frags = skb_shinfo(skb)->nr_frags;
		fidx = tx_ring->txbufs[idx].fidx;

		if (fidx == -1) {
			/* unmap head */
978
			dma_unmap_single(dp->dev, tx_ring->txbufs[idx].dma_addr,
979 980 981 982 983 984 985
					 skb_headlen(skb), DMA_TO_DEVICE);

			done_pkts += tx_ring->txbufs[idx].pkt_cnt;
			done_bytes += tx_ring->txbufs[idx].real_len;
		} else {
			/* unmap fragment */
			frag = &skb_shinfo(skb)->frags[fidx];
986
			dma_unmap_page(dp->dev, tx_ring->txbufs[idx].dma_addr,
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
				       skb_frag_size(frag), DMA_TO_DEVICE);
		}

		/* check for last gather fragment */
		if (fidx == nr_frags - 1)
			dev_kfree_skb_any(skb);

		tx_ring->txbufs[idx].dma_addr = 0;
		tx_ring->txbufs[idx].skb = NULL;
		tx_ring->txbufs[idx].fidx = -2;
	}

	tx_ring->qcp_rd_p = qcp_rd_p;

	u64_stats_update_begin(&r_vec->tx_sync);
	r_vec->tx_bytes += done_bytes;
	r_vec->tx_pkts += done_pkts;
	u64_stats_update_end(&r_vec->tx_sync);

J
Jakub Kicinski 已提交
1006 1007 1008
	if (!dp->netdev)
		return;

1009
	nd_q = netdev_get_tx_queue(dp->netdev, tx_ring->idx);
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
	netdev_tx_completed_queue(nd_q, done_pkts, done_bytes);
	if (nfp_net_tx_ring_should_wake(tx_ring)) {
		/* Make sure TX thread will see updated tx_ring->rd_p */
		smp_mb();

		if (unlikely(netif_tx_queue_stopped(nd_q)))
			netif_tx_wake_queue(nd_q);
	}

	WARN_ONCE(tx_ring->wr_p - tx_ring->rd_p > tx_ring->cnt,
		  "TX ring corruption rd_p=%u wr_p=%u cnt=%u\n",
		  tx_ring->rd_p, tx_ring->wr_p, tx_ring->cnt);
}

1024
static bool nfp_net_xdp_complete(struct nfp_net_tx_ring *tx_ring)
1025 1026 1027
{
	struct nfp_net_r_vector *r_vec = tx_ring->r_vec;
	u32 done_pkts = 0, done_bytes = 0;
1028
	bool done_all;
1029 1030 1031 1032 1033 1034 1035
	int idx, todo;
	u32 qcp_rd_p;

	/* Work out how many descriptors have been transmitted */
	qcp_rd_p = nfp_qcp_rd_ptr_read(tx_ring->qcp_q);

	if (qcp_rd_p == tx_ring->qcp_rd_p)
1036
		return true;
1037

1038
	todo = D_IDX(tx_ring, qcp_rd_p - tx_ring->qcp_rd_p);
1039

1040 1041 1042
	done_all = todo <= NFP_NET_XDP_MAX_COMPLETE;
	todo = min(todo, NFP_NET_XDP_MAX_COMPLETE);

1043
	tx_ring->qcp_rd_p = D_IDX(tx_ring, tx_ring->qcp_rd_p + todo);
1044

1045
	done_pkts = todo;
1046
	while (todo--) {
1047
		idx = D_IDX(tx_ring, tx_ring->rd_p);
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
		tx_ring->rd_p++;

		done_bytes += tx_ring->txbufs[idx].real_len;
	}

	u64_stats_update_begin(&r_vec->tx_sync);
	r_vec->tx_bytes += done_bytes;
	r_vec->tx_pkts += done_pkts;
	u64_stats_update_end(&r_vec->tx_sync);

	WARN_ONCE(tx_ring->wr_p - tx_ring->rd_p > tx_ring->cnt,
1059
		  "XDP TX ring corruption rd_p=%u wr_p=%u cnt=%u\n",
1060
		  tx_ring->rd_p, tx_ring->wr_p, tx_ring->cnt);
1061 1062

	return done_all;
1063 1064
}

1065
/**
1066
 * nfp_net_tx_ring_reset() - Free any untransmitted buffers and reset pointers
1067
 * @dp:		NFP Net data path struct
1068
 * @tx_ring:	TX ring structure
1069 1070 1071
 *
 * Assumes that the device is stopped
 */
1072
static void
1073
nfp_net_tx_ring_reset(struct nfp_net_dp *dp, struct nfp_net_tx_ring *tx_ring)
1074 1075
{
	const struct skb_frag_struct *frag;
1076
	struct netdev_queue *nd_q;
1077

1078
	while (!tx_ring->is_xdp && tx_ring->rd_p != tx_ring->wr_p) {
1079
		struct nfp_net_tx_buf *tx_buf;
1080 1081
		struct sk_buff *skb;
		int idx, nr_frags;
1082

1083
		idx = D_IDX(tx_ring, tx_ring->rd_p);
1084
		tx_buf = &tx_ring->txbufs[idx];
1085

1086 1087
		skb = tx_ring->txbufs[idx].skb;
		nr_frags = skb_shinfo(skb)->nr_frags;
1088

1089 1090 1091 1092 1093 1094 1095 1096 1097
		if (tx_buf->fidx == -1) {
			/* unmap head */
			dma_unmap_single(dp->dev, tx_buf->dma_addr,
					 skb_headlen(skb), DMA_TO_DEVICE);
		} else {
			/* unmap fragment */
			frag = &skb_shinfo(skb)->frags[tx_buf->fidx];
			dma_unmap_page(dp->dev, tx_buf->dma_addr,
				       skb_frag_size(frag), DMA_TO_DEVICE);
1098
		}
1099

1100 1101 1102 1103
		/* check for last gather fragment */
		if (tx_buf->fidx == nr_frags - 1)
			dev_kfree_skb_any(skb);

1104 1105 1106
		tx_buf->dma_addr = 0;
		tx_buf->skb = NULL;
		tx_buf->fidx = -2;
1107 1108 1109 1110 1111

		tx_ring->qcp_rd_p++;
		tx_ring->rd_p++;
	}

1112 1113 1114 1115 1116 1117
	memset(tx_ring->txds, 0, sizeof(*tx_ring->txds) * tx_ring->cnt);
	tx_ring->wr_p = 0;
	tx_ring->rd_p = 0;
	tx_ring->qcp_rd_p = 0;
	tx_ring->wr_ptr_add = 0;

J
Jakub Kicinski 已提交
1118
	if (tx_ring->is_xdp || !dp->netdev)
1119 1120
		return;

1121
	nd_q = netdev_get_tx_queue(dp->netdev, tx_ring->idx);
1122 1123 1124 1125 1126 1127 1128 1129
	netdev_tx_reset_queue(nd_q);
}

static void nfp_net_tx_timeout(struct net_device *netdev)
{
	struct nfp_net *nn = netdev_priv(netdev);
	int i;

1130
	for (i = 0; i < nn->dp.netdev->real_num_tx_queues; i++) {
1131 1132 1133 1134 1135 1136 1137 1138 1139
		if (!netif_tx_queue_stopped(netdev_get_tx_queue(netdev, i)))
			continue;
		nn_warn(nn, "TX timeout on ring: %d\n", i);
	}
	nn_warn(nn, "TX watchdog timeout\n");
}

/* Receive processing
 */
1140
static unsigned int
1141
nfp_net_calc_fl_bufsz(struct nfp_net_dp *dp)
1142 1143 1144
{
	unsigned int fl_bufsz;

1145
	fl_bufsz = NFP_NET_RX_BUF_HEADROOM;
1146
	fl_bufsz += dp->rx_dma_off;
1147
	if (dp->rx_offset == NFP_NET_CFG_RX_OFFSET_DYNAMIC)
1148
		fl_bufsz += NFP_NET_MAX_PREPEND;
1149
	else
1150
		fl_bufsz += dp->rx_offset;
1151
	fl_bufsz += ETH_HLEN + VLAN_HLEN * 2 + dp->mtu;
1152

1153 1154 1155
	fl_bufsz = SKB_DATA_ALIGN(fl_bufsz);
	fl_bufsz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));

1156 1157
	return fl_bufsz;
}
1158

1159 1160 1161 1162 1163 1164 1165 1166 1167
static void
nfp_net_free_frag(void *frag, bool xdp)
{
	if (!xdp)
		skb_free_frag(frag);
	else
		__free_page(virt_to_page(frag));
}

1168
/**
1169
 * nfp_net_rx_alloc_one() - Allocate and map page frag for RX
1170
 * @dp:		NFP Net data path struct
1171 1172
 * @dma_addr:	Pointer to storage for DMA address (output param)
 *
1173
 * This function will allcate a new page frag, map it for DMA.
1174
 *
1175
 * Return: allocated page frag or NULL on failure.
1176
 */
1177
static void *nfp_net_rx_alloc_one(struct nfp_net_dp *dp, dma_addr_t *dma_addr)
1178
{
1179
	void *frag;
1180

1181
	if (!dp->xdp_prog)
1182
		frag = netdev_alloc_frag(dp->fl_bufsz);
1183 1184
	else
		frag = page_address(alloc_page(GFP_KERNEL | __GFP_COLD));
1185
	if (!frag) {
1186
		nn_dp_warn(dp, "Failed to alloc receive page frag\n");
1187 1188 1189
		return NULL;
	}

1190
	*dma_addr = nfp_net_dma_map_rx(dp, frag);
1191
	if (dma_mapping_error(dp->dev, *dma_addr)) {
1192
		nfp_net_free_frag(frag, dp->xdp_prog);
1193
		nn_dp_warn(dp, "Failed to map DMA RX buffer\n");
1194 1195 1196
		return NULL;
	}

1197
	return frag;
1198 1199
}

1200
static void *nfp_net_napi_alloc_one(struct nfp_net_dp *dp, dma_addr_t *dma_addr)
1201 1202 1203
{
	void *frag;

1204 1205
	if (!dp->xdp_prog)
		frag = napi_alloc_frag(dp->fl_bufsz);
1206 1207
	else
		frag = page_address(alloc_page(GFP_ATOMIC | __GFP_COLD));
1208
	if (!frag) {
1209
		nn_dp_warn(dp, "Failed to alloc receive page frag\n");
1210 1211 1212
		return NULL;
	}

1213
	*dma_addr = nfp_net_dma_map_rx(dp, frag);
1214 1215 1216
	if (dma_mapping_error(dp->dev, *dma_addr)) {
		nfp_net_free_frag(frag, dp->xdp_prog);
		nn_dp_warn(dp, "Failed to map DMA RX buffer\n");
1217 1218 1219 1220 1221 1222
		return NULL;
	}

	return frag;
}

1223 1224
/**
 * nfp_net_rx_give_one() - Put mapped skb on the software and hardware rings
1225
 * @dp:		NFP Net data path struct
1226
 * @rx_ring:	RX ring structure
1227
 * @frag:	page fragment buffer
1228 1229
 * @dma_addr:	DMA address of skb mapping
 */
1230 1231
static void nfp_net_rx_give_one(const struct nfp_net_dp *dp,
				struct nfp_net_rx_ring *rx_ring,
1232
				void *frag, dma_addr_t dma_addr)
1233 1234 1235
{
	unsigned int wr_idx;

1236
	wr_idx = D_IDX(rx_ring, rx_ring->wr_p);
1237

1238 1239
	nfp_net_dma_sync_dev_rx(dp, dma_addr);

1240
	/* Stash SKB and DMA address away */
1241
	rx_ring->rxbufs[wr_idx].frag = frag;
1242 1243 1244 1245 1246
	rx_ring->rxbufs[wr_idx].dma_addr = dma_addr;

	/* Fill freelist descriptor */
	rx_ring->rxds[wr_idx].fld.reserved = 0;
	rx_ring->rxds[wr_idx].fld.meta_len_dd = 0;
1247 1248
	nfp_desc_set_dma_addr(&rx_ring->rxds[wr_idx].fld,
			      dma_addr + dp->rx_dma_off);
1249 1250

	rx_ring->wr_p++;
1251
	if (!(rx_ring->wr_p % NFP_NET_FL_BATCH)) {
1252 1253 1254 1255
		/* Update write pointer of the freelist queue. Make
		 * sure all writes are flushed before telling the hardware.
		 */
		wmb();
1256
		nfp_qcp_wr_ptr_add(rx_ring->qcp_fl, NFP_NET_FL_BATCH);
1257 1258 1259 1260
	}
}

/**
1261 1262
 * nfp_net_rx_ring_reset() - Reflect in SW state of freelist after disable
 * @rx_ring:	RX ring structure
1263
 *
1264 1265
 * Warning: Do *not* call if ring buffers were never put on the FW freelist
 *	    (i.e. device was not enabled)!
1266
 */
1267
static void nfp_net_rx_ring_reset(struct nfp_net_rx_ring *rx_ring)
1268
{
1269
	unsigned int wr_idx, last_idx;
1270

1271
	/* Move the empty entry to the end of the list */
1272
	wr_idx = D_IDX(rx_ring, rx_ring->wr_p);
1273 1274
	last_idx = rx_ring->cnt - 1;
	rx_ring->rxbufs[wr_idx].dma_addr = rx_ring->rxbufs[last_idx].dma_addr;
1275
	rx_ring->rxbufs[wr_idx].frag = rx_ring->rxbufs[last_idx].frag;
1276
	rx_ring->rxbufs[last_idx].dma_addr = 0;
1277
	rx_ring->rxbufs[last_idx].frag = NULL;
1278

1279 1280 1281 1282
	memset(rx_ring->rxds, 0, sizeof(*rx_ring->rxds) * rx_ring->cnt);
	rx_ring->wr_p = 0;
	rx_ring->rd_p = 0;
}
1283

1284 1285
/**
 * nfp_net_rx_ring_bufs_free() - Free any buffers currently on the RX ring
1286
 * @dp:		NFP Net data path struct
1287 1288 1289 1290 1291 1292 1293
 * @rx_ring:	RX ring to remove buffers from
 *
 * Assumes that the device is stopped and buffers are in [0, ring->cnt - 1)
 * entries.  After device is disabled nfp_net_rx_ring_reset() must be called
 * to restore required ring geometry.
 */
static void
1294
nfp_net_rx_ring_bufs_free(struct nfp_net_dp *dp,
1295
			  struct nfp_net_rx_ring *rx_ring)
1296 1297
{
	unsigned int i;
1298

1299 1300 1301 1302 1303
	for (i = 0; i < rx_ring->cnt - 1; i++) {
		/* NULL skb can only happen when initial filling of the ring
		 * fails to allocate enough buffers and calls here to free
		 * already allocated ones.
		 */
1304
		if (!rx_ring->rxbufs[i].frag)
1305 1306
			continue;

1307
		nfp_net_dma_unmap_rx(dp, rx_ring->rxbufs[i].dma_addr);
1308
		nfp_net_free_frag(rx_ring->rxbufs[i].frag, dp->xdp_prog);
1309
		rx_ring->rxbufs[i].dma_addr = 0;
1310
		rx_ring->rxbufs[i].frag = NULL;
1311 1312 1313 1314
	}
}

/**
1315
 * nfp_net_rx_ring_bufs_alloc() - Fill RX ring with buffers (don't give to FW)
1316
 * @dp:		NFP Net data path struct
1317
 * @rx_ring:	RX ring to remove buffers from
1318
 */
1319
static int
1320
nfp_net_rx_ring_bufs_alloc(struct nfp_net_dp *dp,
1321
			   struct nfp_net_rx_ring *rx_ring)
1322
{
1323 1324 1325 1326
	struct nfp_net_rx_buf *rxbufs;
	unsigned int i;

	rxbufs = rx_ring->rxbufs;
1327

1328
	for (i = 0; i < rx_ring->cnt - 1; i++) {
1329
		rxbufs[i].frag = nfp_net_rx_alloc_one(dp, &rxbufs[i].dma_addr);
1330
		if (!rxbufs[i].frag) {
1331
			nfp_net_rx_ring_bufs_free(dp, rx_ring);
1332 1333 1334 1335 1336 1337 1338
			return -ENOMEM;
		}
	}

	return 0;
}

1339 1340
/**
 * nfp_net_rx_ring_fill_freelist() - Give buffers from the ring to FW
1341
 * @dp:	     NFP Net data path struct
1342 1343
 * @rx_ring: RX ring to fill
 */
1344 1345 1346
static void
nfp_net_rx_ring_fill_freelist(struct nfp_net_dp *dp,
			      struct nfp_net_rx_ring *rx_ring)
1347 1348 1349 1350
{
	unsigned int i;

	for (i = 0; i < rx_ring->cnt - 1; i++)
1351
		nfp_net_rx_give_one(dp, rx_ring, rx_ring->rxbufs[i].frag,
1352 1353 1354
				    rx_ring->rxbufs[i].dma_addr);
}

1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
/**
 * nfp_net_rx_csum_has_errors() - group check if rxd has any csum errors
 * @flags: RX descriptor flags field in CPU byte order
 */
static int nfp_net_rx_csum_has_errors(u16 flags)
{
	u16 csum_all_checked, csum_all_ok;

	csum_all_checked = flags & __PCIE_DESC_RX_CSUM_ALL;
	csum_all_ok = flags & __PCIE_DESC_RX_CSUM_ALL_OK;

	return csum_all_checked != (csum_all_ok << PCIE_DESC_RX_CSUM_OK_SHIFT);
}

/**
 * nfp_net_rx_csum() - set SKB checksum field based on RX descriptor flags
1371
 * @dp:  NFP Net data path struct
1372 1373
 * @r_vec: per-ring structure
 * @rxd: Pointer to RX descriptor
1374
 * @meta: Parsed metadata prepend
1375 1376
 * @skb: Pointer to SKB
 */
1377 1378
static void nfp_net_rx_csum(struct nfp_net_dp *dp,
			    struct nfp_net_r_vector *r_vec,
1379 1380
			    struct nfp_net_rx_desc *rxd,
			    struct nfp_meta_parsed *meta, struct sk_buff *skb)
1381 1382 1383
{
	skb_checksum_none_assert(skb);

1384
	if (!(dp->netdev->features & NETIF_F_RXCSUM))
1385 1386
		return;

1387 1388 1389 1390 1391 1392 1393 1394 1395
	if (meta->csum_type) {
		skb->ip_summed = meta->csum_type;
		skb->csum = meta->csum;
		u64_stats_update_begin(&r_vec->rx_sync);
		r_vec->hw_csum_rx_ok++;
		u64_stats_update_end(&r_vec->rx_sync);
		return;
	}

1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
	if (nfp_net_rx_csum_has_errors(le16_to_cpu(rxd->rxd.flags))) {
		u64_stats_update_begin(&r_vec->rx_sync);
		r_vec->hw_csum_rx_error++;
		u64_stats_update_end(&r_vec->rx_sync);
		return;
	}

	/* Assume that the firmware will never report inner CSUM_OK unless outer
	 * L4 headers were successfully parsed. FW will always report zero UDP
	 * checksum as CSUM_OK.
	 */
	if (rxd->rxd.flags & PCIE_DESC_RX_TCP_CSUM_OK ||
	    rxd->rxd.flags & PCIE_DESC_RX_UDP_CSUM_OK) {
		__skb_incr_checksum_unnecessary(skb);
		u64_stats_update_begin(&r_vec->rx_sync);
		r_vec->hw_csum_rx_ok++;
		u64_stats_update_end(&r_vec->rx_sync);
	}

	if (rxd->rxd.flags & PCIE_DESC_RX_I_TCP_CSUM_OK ||
	    rxd->rxd.flags & PCIE_DESC_RX_I_UDP_CSUM_OK) {
		__skb_incr_checksum_unnecessary(skb);
		u64_stats_update_begin(&r_vec->rx_sync);
		r_vec->hw_csum_rx_inner_ok++;
		u64_stats_update_end(&r_vec->rx_sync);
	}
}

1424 1425 1426
static void
nfp_net_set_hash(struct net_device *netdev, struct nfp_meta_parsed *meta,
		 unsigned int type, __be32 *hash)
1427
{
1428
	if (!(netdev->features & NETIF_F_RXHASH))
1429 1430
		return;

1431
	switch (type) {
1432 1433 1434
	case NFP_NET_RSS_IPV4:
	case NFP_NET_RSS_IPV6:
	case NFP_NET_RSS_IPV6_EX:
1435
		meta->hash_type = PKT_HASH_TYPE_L3;
1436 1437
		break;
	default:
1438
		meta->hash_type = PKT_HASH_TYPE_L4;
1439 1440
		break;
	}
1441 1442

	meta->hash = get_unaligned_be32(hash);
1443 1444
}

1445
static void
1446
nfp_net_set_hash_desc(struct net_device *netdev, struct nfp_meta_parsed *meta,
1447
		      void *data, struct nfp_net_rx_desc *rxd)
1448
{
1449
	struct nfp_net_rx_hash *rx_hash = data;
1450 1451 1452 1453

	if (!(rxd->rxd.flags & PCIE_DESC_RX_RSS))
		return;

1454
	nfp_net_set_hash(netdev, meta, get_unaligned_be32(&rx_hash->hash_type),
1455 1456 1457 1458
			 &rx_hash->hash);
}

static void *
1459
nfp_net_parse_meta(struct net_device *netdev, struct nfp_meta_parsed *meta,
1460
		   void *data, int meta_len)
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
{
	u32 meta_info;

	meta_info = get_unaligned_be32(data);
	data += 4;

	while (meta_info) {
		switch (meta_info & NFP_NET_META_FIELD_MASK) {
		case NFP_NET_META_HASH:
			meta_info >>= NFP_NET_META_FIELD_SIZE;
1471
			nfp_net_set_hash(netdev, meta,
1472 1473 1474 1475 1476
					 meta_info & NFP_NET_META_FIELD_MASK,
					 (__be32 *)data);
			data += 4;
			break;
		case NFP_NET_META_MARK:
1477
			meta->mark = get_unaligned_be32(data);
1478 1479
			data += 4;
			break;
1480 1481 1482 1483
		case NFP_NET_META_PORTID:
			meta->portid = get_unaligned_be32(data);
			data += 4;
			break;
1484 1485 1486 1487 1488 1489
		case NFP_NET_META_CSUM:
			meta->csum_type = CHECKSUM_COMPLETE;
			meta->csum =
				(__force __wsum)__get_unaligned_cpu32(data);
			data += 4;
			break;
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
		default:
			return NULL;
		}

		meta_info >>= NFP_NET_META_FIELD_SIZE;
	}

	return data;
}

1500
static void
1501 1502 1503
nfp_net_rx_drop(const struct nfp_net_dp *dp, struct nfp_net_r_vector *r_vec,
		struct nfp_net_rx_ring *rx_ring, struct nfp_net_rx_buf *rxbuf,
		struct sk_buff *skb)
1504 1505 1506 1507 1508
{
	u64_stats_update_begin(&r_vec->rx_sync);
	r_vec->rx_drops++;
	u64_stats_update_end(&r_vec->rx_sync);

1509 1510 1511 1512 1513
	/* skb is build based on the frag, free_skb() would free the frag
	 * so to be able to reuse it we need an extra ref.
	 */
	if (skb && rxbuf && skb->head == rxbuf->frag)
		page_ref_inc(virt_to_head_page(rxbuf->frag));
1514
	if (rxbuf)
1515
		nfp_net_rx_give_one(dp, rx_ring, rxbuf->frag, rxbuf->dma_addr);
1516 1517 1518 1519
	if (skb)
		dev_kfree_skb_any(skb);
}

1520
static bool
1521
nfp_net_tx_xdp_buf(struct nfp_net_dp *dp, struct nfp_net_rx_ring *rx_ring,
1522
		   struct nfp_net_tx_ring *tx_ring,
1523
		   struct nfp_net_rx_buf *rxbuf, unsigned int dma_off,
1524
		   unsigned int pkt_len, bool *completed)
1525 1526 1527 1528 1529 1530
{
	struct nfp_net_tx_buf *txbuf;
	struct nfp_net_tx_desc *txd;
	int wr_idx;

	if (unlikely(nfp_net_tx_full(tx_ring, 1))) {
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
		if (!*completed) {
			nfp_net_xdp_complete(tx_ring);
			*completed = true;
		}

		if (unlikely(nfp_net_tx_full(tx_ring, 1))) {
			nfp_net_rx_drop(dp, rx_ring->r_vec, rx_ring, rxbuf,
					NULL);
			return false;
		}
1541 1542
	}

1543
	wr_idx = D_IDX(tx_ring, tx_ring->wr_p);
1544 1545 1546

	/* Stash the soft descriptor of the head then initialize it */
	txbuf = &tx_ring->txbufs[wr_idx];
1547 1548 1549

	nfp_net_rx_give_one(dp, rx_ring, txbuf->frag, txbuf->dma_addr);

1550 1551 1552 1553 1554 1555
	txbuf->frag = rxbuf->frag;
	txbuf->dma_addr = rxbuf->dma_addr;
	txbuf->fidx = -1;
	txbuf->pkt_cnt = 1;
	txbuf->real_len = pkt_len;

1556
	dma_sync_single_for_device(dp->dev, rxbuf->dma_addr + dma_off,
1557
				   pkt_len, DMA_BIDIRECTIONAL);
1558 1559 1560 1561 1562

	/* Build TX descriptor */
	txd = &tx_ring->txds[wr_idx];
	txd->offset_eop = PCIE_DESC_TX_EOP;
	txd->dma_len = cpu_to_le16(pkt_len);
1563
	nfp_desc_set_dma_addr(txd, rxbuf->dma_addr + dma_off);
1564 1565 1566 1567
	txd->data_len = cpu_to_le16(pkt_len);

	txd->flags = 0;
	txd->mss = 0;
1568
	txd->lso_hdrlen = 0;
1569 1570 1571

	tx_ring->wr_p++;
	tx_ring->wr_ptr_add++;
1572
	return true;
1573 1574
}

1575 1576
static int nfp_net_run_xdp(struct bpf_prog *prog, void *data, void *hard_start,
			   unsigned int *off, unsigned int *len)
1577 1578
{
	struct xdp_buff xdp;
1579 1580 1581 1582 1583 1584
	void *orig_data;
	int ret;

	xdp.data_hard_start = hard_start;
	xdp.data = data + *off;
	xdp.data_end = data + *off + *len;
1585

1586 1587
	orig_data = xdp.data;
	ret = bpf_prog_run_xdp(prog, &xdp);
1588

1589 1590 1591 1592
	*len -= xdp.data - orig_data;
	*off += xdp.data - orig_data;

	return ret;
1593 1594
}

1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
/**
 * nfp_net_rx() - receive up to @budget packets on @rx_ring
 * @rx_ring:   RX ring to receive from
 * @budget:    NAPI budget
 *
 * Note, this function is separated out from the napi poll function to
 * more cleanly separate packet receive code from other bookkeeping
 * functions performed in the napi poll function.
 *
 * Return: Number of packets received.
 */
static int nfp_net_rx(struct nfp_net_rx_ring *rx_ring, int budget)
{
	struct nfp_net_r_vector *r_vec = rx_ring->r_vec;
1609
	struct nfp_net_dp *dp = &r_vec->nfp_net->dp;
1610 1611
	struct nfp_net_tx_ring *tx_ring;
	struct bpf_prog *xdp_prog;
1612
	bool xdp_tx_cmpl = false;
1613
	unsigned int true_bufsz;
1614
	struct sk_buff *skb;
J
Jakub Kicinski 已提交
1615
	int pkts_polled = 0;
1616 1617
	int idx;

1618
	rcu_read_lock();
1619 1620
	xdp_prog = READ_ONCE(dp->xdp_prog);
	true_bufsz = xdp_prog ? PAGE_SIZE : dp->fl_bufsz;
1621 1622
	tx_ring = r_vec->xdp_ring;

J
Jakub Kicinski 已提交
1623
	while (pkts_polled < budget) {
1624
		unsigned int meta_len, data_len, meta_off, pkt_len, pkt_off;
1625 1626
		struct nfp_net_rx_buf *rxbuf;
		struct nfp_net_rx_desc *rxd;
1627
		struct nfp_meta_parsed meta;
1628
		struct net_device *netdev;
1629 1630 1631
		dma_addr_t new_dma_addr;
		void *new_frag;

1632
		idx = D_IDX(rx_ring, rx_ring->rd_p);
1633 1634

		rxd = &rx_ring->rxds[idx];
J
Jakub Kicinski 已提交
1635
		if (!(rxd->rxd.meta_len_dd & PCIE_DESC_RX_DD))
1636
			break;
J
Jakub Kicinski 已提交
1637

1638 1639 1640 1641 1642
		/* Memory barrier to ensure that we won't do other reads
		 * before the DD bit.
		 */
		dma_rmb();

1643 1644
		memset(&meta, 0, sizeof(meta));

1645 1646 1647
		rx_ring->rd_p++;
		pkts_polled++;

1648
		rxbuf =	&rx_ring->rxbufs[idx];
1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
		/*         < meta_len >
		 *  <-- [rx_offset] -->
		 *  ---------------------------------------------------------
		 * | [XX] |  metadata  |             packet           | XXXX |
		 *  ---------------------------------------------------------
		 *         <---------------- data_len --------------->
		 *
		 * The rx_offset is fixed for all packets, the meta_len can vary
		 * on a packet by packet basis. If rx_offset is set to zero
		 * (_RX_OFFSET_DYNAMIC) metadata starts at the beginning of the
		 * buffer and is immediately followed by the packet (no [XX]).
		 */
1661 1662
		meta_len = rxd->rxd.meta_len_dd & PCIE_DESC_RX_META_LEN_MASK;
		data_len = le16_to_cpu(rxd->rxd.data_len);
1663
		pkt_len = data_len - meta_len;
1664

1665
		pkt_off = NFP_NET_RX_BUF_HEADROOM + dp->rx_dma_off;
1666
		if (dp->rx_offset == NFP_NET_CFG_RX_OFFSET_DYNAMIC)
1667
			pkt_off += meta_len;
1668
		else
1669 1670
			pkt_off += dp->rx_offset;
		meta_off = pkt_off - meta_len;
1671 1672 1673 1674

		/* Stats update */
		u64_stats_update_begin(&r_vec->rx_sync);
		r_vec->rx_pkts++;
1675
		r_vec->rx_bytes += pkt_len;
1676 1677
		u64_stats_update_end(&r_vec->rx_sync);

1678 1679 1680 1681
		if (unlikely(meta_len > NFP_NET_MAX_PREPEND ||
			     (dp->rx_offset && meta_len > dp->rx_offset))) {
			nn_dp_warn(dp, "oversized RX packet metadata %u\n",
				   meta_len);
1682
			nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf, NULL);
1683 1684 1685
			continue;
		}

1686 1687 1688
		nfp_net_dma_sync_cpu_rx(dp, rxbuf->dma_addr + meta_off,
					data_len);

1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
		if (!dp->chained_metadata_format) {
			nfp_net_set_hash_desc(dp->netdev, &meta,
					      rxbuf->frag + meta_off, rxd);
		} else if (meta_len) {
			void *end;

			end = nfp_net_parse_meta(dp->netdev, &meta,
						 rxbuf->frag + meta_off,
						 meta_len);
			if (unlikely(end != rxbuf->frag + pkt_off)) {
				nn_dp_warn(dp, "invalid RX packet metadata\n");
				nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf,
						NULL);
				continue;
			}
		}

1706
		if (xdp_prog && !(rxd->rxd.flags & PCIE_DESC_RX_BPF &&
1707
				  dp->bpf_offload_xdp) && !meta.portid) {
1708
			unsigned int dma_off;
1709
			void *hard_start;
1710 1711
			int act;

1712 1713 1714
			hard_start = rxbuf->frag + NFP_NET_RX_BUF_HEADROOM;

			act = nfp_net_run_xdp(xdp_prog, rxbuf->frag, hard_start,
1715
					      &pkt_off, &pkt_len);
1716 1717 1718 1719
			switch (act) {
			case XDP_PASS:
				break;
			case XDP_TX:
1720
				dma_off = pkt_off - NFP_NET_RX_BUF_HEADROOM;
1721
				if (unlikely(!nfp_net_tx_xdp_buf(dp, rx_ring,
1722
								 tx_ring, rxbuf,
1723
								 dma_off,
1724 1725
								 pkt_len,
								 &xdp_tx_cmpl)))
1726 1727
					trace_xdp_exception(dp->netdev,
							    xdp_prog, act);
1728 1729 1730
				continue;
			default:
				bpf_warn_invalid_xdp_action(act);
1731
				/* fall through */
1732
			case XDP_ABORTED:
1733
				trace_xdp_exception(dp->netdev, xdp_prog, act);
1734
				/* fall through */
1735
			case XDP_DROP:
1736
				nfp_net_rx_give_one(dp, rx_ring, rxbuf->frag,
1737 1738 1739 1740 1741 1742
						    rxbuf->dma_addr);
				continue;
			}
		}

		skb = build_skb(rxbuf->frag, true_bufsz);
1743
		if (unlikely(!skb)) {
1744
			nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf, NULL);
1745 1746
			continue;
		}
1747
		new_frag = nfp_net_napi_alloc_one(dp, &new_dma_addr);
1748
		if (unlikely(!new_frag)) {
1749
			nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf, skb);
1750 1751 1752
			continue;
		}

1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
		if (likely(!meta.portid)) {
			netdev = dp->netdev;
		} else {
			struct nfp_net *nn;

			nn = netdev_priv(dp->netdev);
			netdev = nfp_app_repr_get(nn->app, meta.portid);
			if (unlikely(!netdev)) {
				nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf, skb);
				continue;
			}
			nfp_repr_inc_rx_stats(netdev, pkt_len);
		}

1767
		nfp_net_dma_unmap_rx(dp, rxbuf->dma_addr);
1768

1769
		nfp_net_rx_give_one(dp, rx_ring, new_frag, new_dma_addr);
1770

1771
		skb_reserve(skb, pkt_off);
1772 1773
		skb_put(skb, pkt_len);

1774 1775
		skb->mark = meta.mark;
		skb_set_hash(skb, meta.hash, meta.hash_type);
1776

1777
		skb_record_rx_queue(skb, rx_ring->idx);
1778
		skb->protocol = eth_type_trans(skb, netdev);
1779

1780
		nfp_net_rx_csum(dp, r_vec, rxd, &meta, skb);
1781 1782 1783 1784 1785 1786 1787 1788

		if (rxd->rxd.flags & PCIE_DESC_RX_VLAN)
			__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
					       le16_to_cpu(rxd->rxd.vlan));

		napi_gro_receive(&rx_ring->r_vec->napi, skb);
	}

1789 1790 1791 1792 1793 1794 1795 1796
	if (xdp_prog) {
		if (tx_ring->wr_ptr_add)
			nfp_net_tx_xmit_more_flush(tx_ring);
		else if (unlikely(tx_ring->wr_p != tx_ring->rd_p) &&
			 !xdp_tx_cmpl)
			if (!nfp_net_xdp_complete(tx_ring))
				pkts_polled = budget;
	}
1797 1798
	rcu_read_unlock();

1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812
	return pkts_polled;
}

/**
 * nfp_net_poll() - napi poll function
 * @napi:    NAPI structure
 * @budget:  NAPI budget
 *
 * Return: number of packets polled.
 */
static int nfp_net_poll(struct napi_struct *napi, int budget)
{
	struct nfp_net_r_vector *r_vec =
		container_of(napi, struct nfp_net_r_vector, napi);
1813
	unsigned int pkts_polled = 0;
1814

1815 1816
	if (r_vec->tx_ring)
		nfp_net_tx_complete(r_vec->tx_ring);
1817
	if (r_vec->rx_ring)
1818
		pkts_polled = nfp_net_rx(r_vec->rx_ring, budget);
1819

1820 1821 1822
	if (pkts_polled < budget)
		if (napi_complete_done(napi, pkts_polled))
			nfp_net_irq_unmask(r_vec->nfp_net, r_vec->irq_entry);
1823 1824 1825 1826

	return pkts_polled;
}

J
Jakub Kicinski 已提交
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022
/* Control device data path
 */

static bool
nfp_ctrl_tx_one(struct nfp_net *nn, struct nfp_net_r_vector *r_vec,
		struct sk_buff *skb, bool old)
{
	unsigned int real_len = skb->len, meta_len = 0;
	struct nfp_net_tx_ring *tx_ring;
	struct nfp_net_tx_buf *txbuf;
	struct nfp_net_tx_desc *txd;
	struct nfp_net_dp *dp;
	dma_addr_t dma_addr;
	int wr_idx;

	dp = &r_vec->nfp_net->dp;
	tx_ring = r_vec->tx_ring;

	if (WARN_ON_ONCE(skb_shinfo(skb)->nr_frags)) {
		nn_dp_warn(dp, "Driver's CTRL TX does not implement gather\n");
		goto err_free;
	}

	if (unlikely(nfp_net_tx_full(tx_ring, 1))) {
		u64_stats_update_begin(&r_vec->tx_sync);
		r_vec->tx_busy++;
		u64_stats_update_end(&r_vec->tx_sync);
		if (!old)
			__skb_queue_tail(&r_vec->queue, skb);
		else
			__skb_queue_head(&r_vec->queue, skb);
		return true;
	}

	if (nfp_app_ctrl_has_meta(nn->app)) {
		if (unlikely(skb_headroom(skb) < 8)) {
			nn_dp_warn(dp, "CTRL TX on skb without headroom\n");
			goto err_free;
		}
		meta_len = 8;
		put_unaligned_be32(NFP_META_PORT_ID_CTRL, skb_push(skb, 4));
		put_unaligned_be32(NFP_NET_META_PORTID, skb_push(skb, 4));
	}

	/* Start with the head skbuf */
	dma_addr = dma_map_single(dp->dev, skb->data, skb_headlen(skb),
				  DMA_TO_DEVICE);
	if (dma_mapping_error(dp->dev, dma_addr))
		goto err_dma_warn;

	wr_idx = D_IDX(tx_ring, tx_ring->wr_p);

	/* Stash the soft descriptor of the head then initialize it */
	txbuf = &tx_ring->txbufs[wr_idx];
	txbuf->skb = skb;
	txbuf->dma_addr = dma_addr;
	txbuf->fidx = -1;
	txbuf->pkt_cnt = 1;
	txbuf->real_len = real_len;

	/* Build TX descriptor */
	txd = &tx_ring->txds[wr_idx];
	txd->offset_eop = meta_len | PCIE_DESC_TX_EOP;
	txd->dma_len = cpu_to_le16(skb_headlen(skb));
	nfp_desc_set_dma_addr(txd, dma_addr);
	txd->data_len = cpu_to_le16(skb->len);

	txd->flags = 0;
	txd->mss = 0;
	txd->lso_hdrlen = 0;

	tx_ring->wr_p++;
	tx_ring->wr_ptr_add++;
	nfp_net_tx_xmit_more_flush(tx_ring);

	return false;

err_dma_warn:
	nn_dp_warn(dp, "Failed to DMA map TX CTRL buffer\n");
err_free:
	u64_stats_update_begin(&r_vec->tx_sync);
	r_vec->tx_errors++;
	u64_stats_update_end(&r_vec->tx_sync);
	dev_kfree_skb_any(skb);
	return false;
}

bool nfp_ctrl_tx(struct nfp_net *nn, struct sk_buff *skb)
{
	struct nfp_net_r_vector *r_vec = &nn->r_vecs[0];
	bool ret;

	spin_lock_bh(&r_vec->lock);
	ret = nfp_ctrl_tx_one(nn, r_vec, skb, false);
	spin_unlock_bh(&r_vec->lock);

	return ret;
}

static void __nfp_ctrl_tx_queued(struct nfp_net_r_vector *r_vec)
{
	struct sk_buff *skb;

	while ((skb = __skb_dequeue(&r_vec->queue)))
		if (nfp_ctrl_tx_one(r_vec->nfp_net, r_vec, skb, true))
			return;
}

static bool
nfp_ctrl_meta_ok(struct nfp_net *nn, void *data, unsigned int meta_len)
{
	u32 meta_type, meta_tag;

	if (!nfp_app_ctrl_has_meta(nn->app))
		return !meta_len;

	if (meta_len != 8)
		return false;

	meta_type = get_unaligned_be32(data);
	meta_tag = get_unaligned_be32(data + 4);

	return (meta_type == NFP_NET_META_PORTID &&
		meta_tag == NFP_META_PORT_ID_CTRL);
}

static bool
nfp_ctrl_rx_one(struct nfp_net *nn, struct nfp_net_dp *dp,
		struct nfp_net_r_vector *r_vec, struct nfp_net_rx_ring *rx_ring)
{
	unsigned int meta_len, data_len, meta_off, pkt_len, pkt_off;
	struct nfp_net_rx_buf *rxbuf;
	struct nfp_net_rx_desc *rxd;
	dma_addr_t new_dma_addr;
	struct sk_buff *skb;
	void *new_frag;
	int idx;

	idx = D_IDX(rx_ring, rx_ring->rd_p);

	rxd = &rx_ring->rxds[idx];
	if (!(rxd->rxd.meta_len_dd & PCIE_DESC_RX_DD))
		return false;

	/* Memory barrier to ensure that we won't do other reads
	 * before the DD bit.
	 */
	dma_rmb();

	rx_ring->rd_p++;

	rxbuf =	&rx_ring->rxbufs[idx];
	meta_len = rxd->rxd.meta_len_dd & PCIE_DESC_RX_META_LEN_MASK;
	data_len = le16_to_cpu(rxd->rxd.data_len);
	pkt_len = data_len - meta_len;

	pkt_off = NFP_NET_RX_BUF_HEADROOM + dp->rx_dma_off;
	if (dp->rx_offset == NFP_NET_CFG_RX_OFFSET_DYNAMIC)
		pkt_off += meta_len;
	else
		pkt_off += dp->rx_offset;
	meta_off = pkt_off - meta_len;

	/* Stats update */
	u64_stats_update_begin(&r_vec->rx_sync);
	r_vec->rx_pkts++;
	r_vec->rx_bytes += pkt_len;
	u64_stats_update_end(&r_vec->rx_sync);

	nfp_net_dma_sync_cpu_rx(dp, rxbuf->dma_addr + meta_off,	data_len);

	if (unlikely(!nfp_ctrl_meta_ok(nn, rxbuf->frag + meta_off, meta_len))) {
		nn_dp_warn(dp, "incorrect metadata for ctrl packet (%d)\n",
			   meta_len);
		nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf, NULL);
		return true;
	}

	skb = build_skb(rxbuf->frag, dp->fl_bufsz);
	if (unlikely(!skb)) {
		nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf, NULL);
		return true;
	}
	new_frag = nfp_net_napi_alloc_one(dp, &new_dma_addr);
	if (unlikely(!new_frag)) {
		nfp_net_rx_drop(dp, r_vec, rx_ring, rxbuf, skb);
		return true;
	}

	nfp_net_dma_unmap_rx(dp, rxbuf->dma_addr);

	nfp_net_rx_give_one(dp, rx_ring, new_frag, new_dma_addr);

	skb_reserve(skb, pkt_off);
	skb_put(skb, pkt_len);

2023
	nfp_app_ctrl_rx(nn->app, skb);
J
Jakub Kicinski 已提交
2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051

	return true;
}

static void nfp_ctrl_rx(struct nfp_net_r_vector *r_vec)
{
	struct nfp_net_rx_ring *rx_ring = r_vec->rx_ring;
	struct nfp_net *nn = r_vec->nfp_net;
	struct nfp_net_dp *dp = &nn->dp;

	while (nfp_ctrl_rx_one(nn, dp, r_vec, rx_ring))
		continue;
}

static void nfp_ctrl_poll(unsigned long arg)
{
	struct nfp_net_r_vector *r_vec = (void *)arg;

	spin_lock_bh(&r_vec->lock);
	nfp_net_tx_complete(r_vec->tx_ring);
	__nfp_ctrl_tx_queued(r_vec);
	spin_unlock_bh(&r_vec->lock);

	nfp_ctrl_rx(r_vec);

	nfp_net_irq_unmask(r_vec->nfp_net, r_vec->irq_entry);
}

2052 2053 2054
/* Setup and Configuration
 */

J
Jakub Kicinski 已提交
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076
/**
 * nfp_net_vecs_init() - Assign IRQs and setup rvecs.
 * @nn:		NFP Network structure
 */
static void nfp_net_vecs_init(struct nfp_net *nn)
{
	struct nfp_net_r_vector *r_vec;
	int r;

	nn->lsc_handler = nfp_net_irq_lsc;
	nn->exn_handler = nfp_net_irq_exn;

	for (r = 0; r < nn->max_r_vecs; r++) {
		struct msix_entry *entry;

		entry = &nn->irq_entries[NFP_NET_NON_Q_VECTORS + r];

		r_vec = &nn->r_vecs[r];
		r_vec->nfp_net = nn;
		r_vec->irq_entry = entry->entry;
		r_vec->irq_vector = entry->vector;

J
Jakub Kicinski 已提交
2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088
		if (nn->dp.netdev) {
			r_vec->handler = nfp_net_irq_rxtx;
		} else {
			r_vec->handler = nfp_ctrl_irq_rxtx;

			__skb_queue_head_init(&r_vec->queue);
			spin_lock_init(&r_vec->lock);
			tasklet_init(&r_vec->tasklet, nfp_ctrl_poll,
				     (unsigned long)r_vec);
			tasklet_disable(&r_vec->tasklet);
		}

J
Jakub Kicinski 已提交
2089 2090 2091 2092
		cpumask_set_cpu(r, &r_vec->affinity_mask);
	}
}

2093 2094 2095 2096 2097 2098 2099
/**
 * nfp_net_tx_ring_free() - Free resources allocated to a TX ring
 * @tx_ring:   TX ring to free
 */
static void nfp_net_tx_ring_free(struct nfp_net_tx_ring *tx_ring)
{
	struct nfp_net_r_vector *r_vec = tx_ring->r_vec;
2100
	struct nfp_net_dp *dp = &r_vec->nfp_net->dp;
2101 2102 2103 2104

	kfree(tx_ring->txbufs);

	if (tx_ring->txds)
2105
		dma_free_coherent(dp->dev, tx_ring->size,
2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116
				  tx_ring->txds, tx_ring->dma);

	tx_ring->cnt = 0;
	tx_ring->txbufs = NULL;
	tx_ring->txds = NULL;
	tx_ring->dma = 0;
	tx_ring->size = 0;
}

/**
 * nfp_net_tx_ring_alloc() - Allocate resource for a TX ring
2117
 * @dp:        NFP Net data path struct
2118 2119 2120 2121
 * @tx_ring:   TX Ring structure to allocate
 *
 * Return: 0 on success, negative errno otherwise.
 */
2122
static int
2123
nfp_net_tx_ring_alloc(struct nfp_net_dp *dp, struct nfp_net_tx_ring *tx_ring)
2124 2125 2126 2127
{
	struct nfp_net_r_vector *r_vec = tx_ring->r_vec;
	int sz;

2128
	tx_ring->cnt = dp->txd_cnt;
2129 2130

	tx_ring->size = sizeof(*tx_ring->txds) * tx_ring->cnt;
2131
	tx_ring->txds = dma_zalloc_coherent(dp->dev, tx_ring->size,
2132 2133 2134 2135 2136 2137 2138 2139 2140
					    &tx_ring->dma, GFP_KERNEL);
	if (!tx_ring->txds)
		goto err_alloc;

	sz = sizeof(*tx_ring->txbufs) * tx_ring->cnt;
	tx_ring->txbufs = kzalloc(sz, GFP_KERNEL);
	if (!tx_ring->txbufs)
		goto err_alloc;

2141
	if (!tx_ring->is_xdp && dp->netdev)
2142
		netif_set_xps_queue(dp->netdev, &r_vec->affinity_mask,
2143
				    tx_ring->idx);
2144 2145 2146 2147 2148 2149 2150 2151

	return 0;

err_alloc:
	nfp_net_tx_ring_free(tx_ring);
	return -ENOMEM;
}

2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190
static void
nfp_net_tx_ring_bufs_free(struct nfp_net_dp *dp,
			  struct nfp_net_tx_ring *tx_ring)
{
	unsigned int i;

	if (!tx_ring->is_xdp)
		return;

	for (i = 0; i < tx_ring->cnt; i++) {
		if (!tx_ring->txbufs[i].frag)
			return;

		nfp_net_dma_unmap_rx(dp, tx_ring->txbufs[i].dma_addr);
		__free_page(virt_to_page(tx_ring->txbufs[i].frag));
	}
}

static int
nfp_net_tx_ring_bufs_alloc(struct nfp_net_dp *dp,
			   struct nfp_net_tx_ring *tx_ring)
{
	struct nfp_net_tx_buf *txbufs = tx_ring->txbufs;
	unsigned int i;

	if (!tx_ring->is_xdp)
		return 0;

	for (i = 0; i < tx_ring->cnt; i++) {
		txbufs[i].frag = nfp_net_rx_alloc_one(dp, &txbufs[i].dma_addr);
		if (!txbufs[i].frag) {
			nfp_net_tx_ring_bufs_free(dp, tx_ring);
			return -ENOMEM;
		}
	}

	return 0;
}

2191
static int nfp_net_tx_rings_prepare(struct nfp_net *nn, struct nfp_net_dp *dp)
2192 2193 2194
{
	unsigned int r;

2195 2196 2197 2198
	dp->tx_rings = kcalloc(dp->num_tx_rings, sizeof(*dp->tx_rings),
			       GFP_KERNEL);
	if (!dp->tx_rings)
		return -ENOMEM;
2199

2200
	for (r = 0; r < dp->num_tx_rings; r++) {
2201 2202
		int bias = 0;

2203 2204
		if (r >= dp->num_stack_tx_rings)
			bias = dp->num_stack_tx_rings;
2205

2206
		nfp_net_tx_ring_init(&dp->tx_rings[r], &nn->r_vecs[r - bias],
2207
				     r, bias);
2208

2209
		if (nfp_net_tx_ring_alloc(dp, &dp->tx_rings[r]))
2210
			goto err_free_prev;
2211 2212 2213

		if (nfp_net_tx_ring_bufs_alloc(dp, &dp->tx_rings[r]))
			goto err_free_ring;
2214 2215
	}

2216
	return 0;
2217 2218

err_free_prev:
2219 2220 2221
	while (r--) {
		nfp_net_tx_ring_bufs_free(dp, &dp->tx_rings[r]);
err_free_ring:
2222
		nfp_net_tx_ring_free(&dp->tx_rings[r]);
2223
	}
2224 2225
	kfree(dp->tx_rings);
	return -ENOMEM;
2226 2227
}

2228
static void nfp_net_tx_rings_free(struct nfp_net_dp *dp)
2229 2230 2231
{
	unsigned int r;

2232 2233
	for (r = 0; r < dp->num_tx_rings; r++) {
		nfp_net_tx_ring_bufs_free(dp, &dp->tx_rings[r]);
2234
		nfp_net_tx_ring_free(&dp->tx_rings[r]);
2235
	}
2236

2237
	kfree(dp->tx_rings);
2238 2239
}

2240 2241 2242 2243 2244 2245 2246
/**
 * nfp_net_rx_ring_free() - Free resources allocated to a RX ring
 * @rx_ring:  RX ring to free
 */
static void nfp_net_rx_ring_free(struct nfp_net_rx_ring *rx_ring)
{
	struct nfp_net_r_vector *r_vec = rx_ring->r_vec;
2247
	struct nfp_net_dp *dp = &r_vec->nfp_net->dp;
2248 2249 2250 2251

	kfree(rx_ring->rxbufs);

	if (rx_ring->rxds)
2252
		dma_free_coherent(dp->dev, rx_ring->size,
2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
				  rx_ring->rxds, rx_ring->dma);

	rx_ring->cnt = 0;
	rx_ring->rxbufs = NULL;
	rx_ring->rxds = NULL;
	rx_ring->dma = 0;
	rx_ring->size = 0;
}

/**
 * nfp_net_rx_ring_alloc() - Allocate resource for a RX ring
2264
 * @dp:	      NFP Net data path struct
2265 2266 2267 2268
 * @rx_ring:  RX ring to allocate
 *
 * Return: 0 on success, negative errno otherwise.
 */
2269
static int
2270
nfp_net_rx_ring_alloc(struct nfp_net_dp *dp, struct nfp_net_rx_ring *rx_ring)
2271 2272 2273
{
	int sz;

2274
	rx_ring->cnt = dp->rxd_cnt;
2275
	rx_ring->size = sizeof(*rx_ring->rxds) * rx_ring->cnt;
2276
	rx_ring->rxds = dma_zalloc_coherent(dp->dev, rx_ring->size,
2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
					    &rx_ring->dma, GFP_KERNEL);
	if (!rx_ring->rxds)
		goto err_alloc;

	sz = sizeof(*rx_ring->rxbufs) * rx_ring->cnt;
	rx_ring->rxbufs = kzalloc(sz, GFP_KERNEL);
	if (!rx_ring->rxbufs)
		goto err_alloc;

	return 0;

err_alloc:
	nfp_net_rx_ring_free(rx_ring);
	return -ENOMEM;
}

2293
static int nfp_net_rx_rings_prepare(struct nfp_net *nn, struct nfp_net_dp *dp)
2294 2295 2296
{
	unsigned int r;

2297 2298 2299 2300
	dp->rx_rings = kcalloc(dp->num_rx_rings, sizeof(*dp->rx_rings),
			       GFP_KERNEL);
	if (!dp->rx_rings)
		return -ENOMEM;
2301

2302 2303
	for (r = 0; r < dp->num_rx_rings; r++) {
		nfp_net_rx_ring_init(&dp->rx_rings[r], &nn->r_vecs[r], r);
2304

2305
		if (nfp_net_rx_ring_alloc(dp, &dp->rx_rings[r]))
2306 2307
			goto err_free_prev;

2308
		if (nfp_net_rx_ring_bufs_alloc(dp, &dp->rx_rings[r]))
2309 2310 2311
			goto err_free_ring;
	}

2312
	return 0;
2313 2314 2315

err_free_prev:
	while (r--) {
2316
		nfp_net_rx_ring_bufs_free(dp, &dp->rx_rings[r]);
2317
err_free_ring:
2318
		nfp_net_rx_ring_free(&dp->rx_rings[r]);
2319
	}
2320 2321
	kfree(dp->rx_rings);
	return -ENOMEM;
2322 2323
}

2324
static void nfp_net_rx_rings_free(struct nfp_net_dp *dp)
2325 2326 2327
{
	unsigned int r;

2328 2329 2330
	for (r = 0; r < dp->num_rx_rings; r++) {
		nfp_net_rx_ring_bufs_free(dp, &dp->rx_rings[r]);
		nfp_net_rx_ring_free(&dp->rx_rings[r]);
2331 2332
	}

2333
	kfree(dp->rx_rings);
2334 2335
}

2336
static void
2337 2338
nfp_net_vector_assign_rings(struct nfp_net_dp *dp,
			    struct nfp_net_r_vector *r_vec, int idx)
2339
{
2340
	r_vec->rx_ring = idx < dp->num_rx_rings ? &dp->rx_rings[idx] : NULL;
2341
	r_vec->tx_ring =
2342
		idx < dp->num_stack_tx_rings ? &dp->tx_rings[idx] : NULL;
2343

2344 2345
	r_vec->xdp_ring = idx < dp->num_tx_rings - dp->num_stack_tx_rings ?
		&dp->tx_rings[dp->num_stack_tx_rings + idx] : NULL;
2346 2347
}

2348 2349 2350
static int
nfp_net_prepare_vector(struct nfp_net *nn, struct nfp_net_r_vector *r_vec,
		       int idx)
2351
{
2352
	int err;
2353

2354
	/* Setup NAPI */
J
Jakub Kicinski 已提交
2355 2356 2357 2358 2359
	if (nn->dp.netdev)
		netif_napi_add(nn->dp.netdev, &r_vec->napi,
			       nfp_net_poll, NAPI_POLL_WEIGHT);
	else
		tasklet_enable(&r_vec->tasklet);
2360

2361
	snprintf(r_vec->name, sizeof(r_vec->name),
J
Jakub Kicinski 已提交
2362
		 "%s-rxtx-%d", nfp_net_name(nn), idx);
2363 2364
	err = request_irq(r_vec->irq_vector, r_vec->handler, 0, r_vec->name,
			  r_vec);
2365
	if (err) {
J
Jakub Kicinski 已提交
2366 2367 2368 2369 2370
		if (nn->dp.netdev)
			netif_napi_del(&r_vec->napi);
		else
			tasklet_disable(&r_vec->tasklet);

2371
		nn_err(nn, "Error requesting IRQ %d\n", r_vec->irq_vector);
2372 2373
		return err;
	}
2374
	disable_irq(r_vec->irq_vector);
2375

2376
	irq_set_affinity_hint(r_vec->irq_vector, &r_vec->affinity_mask);
2377

2378 2379
	nn_dbg(nn, "RV%02d: irq=%03d/%03d\n", idx, r_vec->irq_vector,
	       r_vec->irq_entry);
2380

2381
	return 0;
2382 2383
}

2384 2385
static void
nfp_net_cleanup_vector(struct nfp_net *nn, struct nfp_net_r_vector *r_vec)
2386
{
2387
	irq_set_affinity_hint(r_vec->irq_vector, NULL);
J
Jakub Kicinski 已提交
2388 2389 2390 2391 2392
	if (nn->dp.netdev)
		netif_napi_del(&r_vec->napi);
	else
		tasklet_disable(&r_vec->tasklet);

2393
	free_irq(r_vec->irq_vector, r_vec);
2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
}

/**
 * nfp_net_rss_write_itbl() - Write RSS indirection table to device
 * @nn:      NFP Net device to reconfigure
 */
void nfp_net_rss_write_itbl(struct nfp_net *nn)
{
	int i;

	for (i = 0; i < NFP_NET_CFG_RSS_ITBL_SZ; i += 4)
		nn_writel(nn, NFP_NET_CFG_RSS_ITBL + i,
			  get_unaligned_le32(nn->rss_itbl + i));
}

/**
 * nfp_net_rss_write_key() - Write RSS hash key to device
 * @nn:      NFP Net device to reconfigure
 */
void nfp_net_rss_write_key(struct nfp_net *nn)
{
	int i;

2417
	for (i = 0; i < nfp_net_rss_key_sz(nn); i += 4)
2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440
		nn_writel(nn, NFP_NET_CFG_RSS_KEY + i,
			  get_unaligned_le32(nn->rss_key + i));
}

/**
 * nfp_net_coalesce_write_cfg() - Write irq coalescence configuration to HW
 * @nn:      NFP Net device to reconfigure
 */
void nfp_net_coalesce_write_cfg(struct nfp_net *nn)
{
	u8 i;
	u32 factor;
	u32 value;

	/* Compute factor used to convert coalesce '_usecs' parameters to
	 * ME timestamp ticks.  There are 16 ME clock cycles for each timestamp
	 * count.
	 */
	factor = nn->me_freq_mhz / 16;

	/* copy RX interrupt coalesce parameters */
	value = (nn->rx_coalesce_max_frames << 16) |
		(factor * nn->rx_coalesce_usecs);
2441
	for (i = 0; i < nn->dp.num_rx_rings; i++)
2442 2443 2444 2445 2446
		nn_writel(nn, NFP_NET_CFG_RXR_IRQ_MOD(i), value);

	/* copy TX interrupt coalesce parameters */
	value = (nn->tx_coalesce_max_frames << 16) |
		(factor * nn->tx_coalesce_usecs);
2447
	for (i = 0; i < nn->dp.num_tx_rings; i++)
2448 2449 2450 2451
		nn_writel(nn, NFP_NET_CFG_TXR_IRQ_MOD(i), value);
}

/**
2452
 * nfp_net_write_mac_addr() - Write mac address to the device control BAR
2453
 * @nn:      NFP Net device to reconfigure
2454
 * @addr:    MAC address to write
2455
 *
2456 2457 2458
 * Writes the MAC address from the netdev to the device control BAR.  Does not
 * perform the required reconfig.  We do a bit of byte swapping dance because
 * firmware is LE.
2459
 */
2460
static void nfp_net_write_mac_addr(struct nfp_net *nn, const u8 *addr)
2461
{
2462 2463
	nn_writel(nn, NFP_NET_CFG_MACADDR + 0, get_unaligned_be32(addr));
	nn_writew(nn, NFP_NET_CFG_MACADDR + 6, get_unaligned_be16(addr + 4));
2464 2465
}

2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
static void nfp_net_vec_clear_ring_data(struct nfp_net *nn, unsigned int idx)
{
	nn_writeq(nn, NFP_NET_CFG_RXR_ADDR(idx), 0);
	nn_writeb(nn, NFP_NET_CFG_RXR_SZ(idx), 0);
	nn_writeb(nn, NFP_NET_CFG_RXR_VEC(idx), 0);

	nn_writeq(nn, NFP_NET_CFG_TXR_ADDR(idx), 0);
	nn_writeb(nn, NFP_NET_CFG_TXR_SZ(idx), 0);
	nn_writeb(nn, NFP_NET_CFG_TXR_VEC(idx), 0);
}

2477 2478 2479 2480 2481 2482 2483
/**
 * nfp_net_clear_config_and_disable() - Clear control BAR and disable NFP
 * @nn:      NFP Net device to reconfigure
 */
static void nfp_net_clear_config_and_disable(struct nfp_net *nn)
{
	u32 new_ctrl, update;
2484
	unsigned int r;
2485 2486
	int err;

2487
	new_ctrl = nn->dp.ctrl;
2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500
	new_ctrl &= ~NFP_NET_CFG_CTRL_ENABLE;
	update = NFP_NET_CFG_UPDATE_GEN;
	update |= NFP_NET_CFG_UPDATE_MSIX;
	update |= NFP_NET_CFG_UPDATE_RING;

	if (nn->cap & NFP_NET_CFG_CTRL_RINGCFG)
		new_ctrl &= ~NFP_NET_CFG_CTRL_RINGCFG;

	nn_writeq(nn, NFP_NET_CFG_TXRS_ENABLE, 0);
	nn_writeq(nn, NFP_NET_CFG_RXRS_ENABLE, 0);

	nn_writel(nn, NFP_NET_CFG_CTRL, new_ctrl);
	err = nfp_net_reconfig(nn, update);
2501
	if (err)
2502 2503
		nn_err(nn, "Could not disable device: %d\n", err);

2504 2505 2506 2507 2508
	for (r = 0; r < nn->dp.num_rx_rings; r++)
		nfp_net_rx_ring_reset(&nn->dp.rx_rings[r]);
	for (r = 0; r < nn->dp.num_tx_rings; r++)
		nfp_net_tx_ring_reset(&nn->dp, &nn->dp.tx_rings[r]);
	for (r = 0; r < nn->dp.num_r_vecs; r++)
2509 2510
		nfp_net_vec_clear_ring_data(nn, r);

2511
	nn->dp.ctrl = new_ctrl;
2512 2513
}

2514
static void
2515 2516
nfp_net_rx_ring_hw_cfg_write(struct nfp_net *nn,
			     struct nfp_net_rx_ring *rx_ring, unsigned int idx)
2517 2518
{
	/* Write the DMA address, size and MSI-X info to the device */
2519 2520
	nn_writeq(nn, NFP_NET_CFG_RXR_ADDR(idx), rx_ring->dma);
	nn_writeb(nn, NFP_NET_CFG_RXR_SZ(idx), ilog2(rx_ring->cnt));
2521
	nn_writeb(nn, NFP_NET_CFG_RXR_VEC(idx), rx_ring->r_vec->irq_entry);
2522
}
2523

2524 2525 2526 2527 2528 2529
static void
nfp_net_tx_ring_hw_cfg_write(struct nfp_net *nn,
			     struct nfp_net_tx_ring *tx_ring, unsigned int idx)
{
	nn_writeq(nn, NFP_NET_CFG_TXR_ADDR(idx), tx_ring->dma);
	nn_writeb(nn, NFP_NET_CFG_TXR_SZ(idx), ilog2(tx_ring->cnt));
2530
	nn_writeb(nn, NFP_NET_CFG_TXR_VEC(idx), tx_ring->r_vec->irq_entry);
2531 2532
}

2533 2534 2535 2536 2537
/**
 * nfp_net_set_config_and_enable() - Write control BAR and enable NFP
 * @nn:      NFP Net device to reconfigure
 */
static int nfp_net_set_config_and_enable(struct nfp_net *nn)
2538
{
2539
	u32 bufsz, new_ctrl, update = 0;
2540 2541 2542
	unsigned int r;
	int err;

2543
	new_ctrl = nn->dp.ctrl;
2544

2545
	if (nn->dp.ctrl & NFP_NET_CFG_CTRL_RSS_ANY) {
2546 2547 2548 2549 2550 2551
		nfp_net_rss_write_key(nn);
		nfp_net_rss_write_itbl(nn);
		nn_writel(nn, NFP_NET_CFG_RSS_CTRL, nn->rss_cfg);
		update |= NFP_NET_CFG_UPDATE_RSS;
	}

2552
	if (nn->dp.ctrl & NFP_NET_CFG_CTRL_IRQMOD) {
2553 2554 2555 2556
		nfp_net_coalesce_write_cfg(nn);
		update |= NFP_NET_CFG_UPDATE_IRQMOD;
	}

2557 2558 2559 2560
	for (r = 0; r < nn->dp.num_tx_rings; r++)
		nfp_net_tx_ring_hw_cfg_write(nn, &nn->dp.tx_rings[r], r);
	for (r = 0; r < nn->dp.num_rx_rings; r++)
		nfp_net_rx_ring_hw_cfg_write(nn, &nn->dp.rx_rings[r], r);
2561

2562 2563
	nn_writeq(nn, NFP_NET_CFG_TXRS_ENABLE, nn->dp.num_tx_rings == 64 ?
		  0xffffffffffffffffULL : ((u64)1 << nn->dp.num_tx_rings) - 1);
2564

2565 2566
	nn_writeq(nn, NFP_NET_CFG_RXRS_ENABLE, nn->dp.num_rx_rings == 64 ?
		  0xffffffffffffffffULL : ((u64)1 << nn->dp.num_rx_rings) - 1);
2567

2568 2569
	if (nn->dp.netdev)
		nfp_net_write_mac_addr(nn, nn->dp.netdev->dev_addr);
2570

2571
	nn_writel(nn, NFP_NET_CFG_MTU, nn->dp.mtu);
2572 2573 2574

	bufsz = nn->dp.fl_bufsz - nn->dp.rx_dma_off - NFP_NET_RX_BUF_NON_DATA;
	nn_writel(nn, NFP_NET_CFG_FLBUFSZ, bufsz);
2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585

	/* Enable device */
	new_ctrl |= NFP_NET_CFG_CTRL_ENABLE;
	update |= NFP_NET_CFG_UPDATE_GEN;
	update |= NFP_NET_CFG_UPDATE_MSIX;
	update |= NFP_NET_CFG_UPDATE_RING;
	if (nn->cap & NFP_NET_CFG_CTRL_RINGCFG)
		new_ctrl |= NFP_NET_CFG_CTRL_RINGCFG;

	nn_writel(nn, NFP_NET_CFG_CTRL, new_ctrl);
	err = nfp_net_reconfig(nn, update);
2586 2587 2588 2589
	if (err) {
		nfp_net_clear_config_and_disable(nn);
		return err;
	}
2590

2591
	nn->dp.ctrl = new_ctrl;
2592

2593
	for (r = 0; r < nn->dp.num_rx_rings; r++)
2594
		nfp_net_rx_ring_fill_freelist(&nn->dp, &nn->dp.rx_rings[r]);
2595

2596 2597 2598
	/* Since reconfiguration requests while NFP is down are ignored we
	 * have to wipe the entire VXLAN configuration and reinitialize it.
	 */
2599
	if (nn->dp.ctrl & NFP_NET_CFG_CTRL_VXLAN) {
2600 2601
		memset(&nn->vxlan_ports, 0, sizeof(nn->vxlan_ports));
		memset(&nn->vxlan_usecnt, 0, sizeof(nn->vxlan_usecnt));
2602
		udp_tunnel_get_rx_info(nn->dp.netdev);
2603 2604
	}

2605
	return 0;
2606 2607
}

2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
/**
 * nfp_net_close_stack() - Quiesce the stack (part of close)
 * @nn:	     NFP Net device to reconfigure
 */
static void nfp_net_close_stack(struct nfp_net *nn)
{
	unsigned int r;

	disable_irq(nn->irq_entries[NFP_NET_IRQ_LSC_IDX].vector);
	netif_carrier_off(nn->dp.netdev);
	nn->link_up = false;

	for (r = 0; r < nn->dp.num_r_vecs; r++) {
		disable_irq(nn->r_vecs[r].irq_vector);
		napi_disable(&nn->r_vecs[r].napi);
	}

	netif_tx_disable(nn->dp.netdev);
}

/**
 * nfp_net_close_free_all() - Free all runtime resources
 * @nn:      NFP Net device to reconfigure
 */
static void nfp_net_close_free_all(struct nfp_net *nn)
{
	unsigned int r;

2636 2637 2638
	nfp_net_tx_rings_free(&nn->dp);
	nfp_net_rx_rings_free(&nn->dp);

2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669
	for (r = 0; r < nn->dp.num_r_vecs; r++)
		nfp_net_cleanup_vector(nn, &nn->r_vecs[r]);

	nfp_net_aux_irq_free(nn, NFP_NET_CFG_LSC, NFP_NET_IRQ_LSC_IDX);
	nfp_net_aux_irq_free(nn, NFP_NET_CFG_EXN, NFP_NET_IRQ_EXN_IDX);
}

/**
 * nfp_net_netdev_close() - Called when the device is downed
 * @netdev:      netdev structure
 */
static int nfp_net_netdev_close(struct net_device *netdev)
{
	struct nfp_net *nn = netdev_priv(netdev);

	/* Step 1: Disable RX and TX rings from the Linux kernel perspective
	 */
	nfp_net_close_stack(nn);

	/* Step 2: Tell NFP
	 */
	nfp_net_clear_config_and_disable(nn);

	/* Step 3: Free resources
	 */
	nfp_net_close_free_all(nn);

	nn_dbg(nn, "%s down", netdev->name);
	return 0;
}

J
Jakub Kicinski 已提交
2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687
void nfp_ctrl_close(struct nfp_net *nn)
{
	int r;

	rtnl_lock();

	for (r = 0; r < nn->dp.num_r_vecs; r++) {
		disable_irq(nn->r_vecs[r].irq_vector);
		tasklet_disable(&nn->r_vecs[r].tasklet);
	}

	nfp_net_clear_config_and_disable(nn);

	nfp_net_close_free_all(nn);

	rtnl_unlock();
}

2688 2689 2690 2691 2692 2693 2694 2695
/**
 * nfp_net_open_stack() - Start the device from stack's perspective
 * @nn:      NFP Net device to reconfigure
 */
static void nfp_net_open_stack(struct nfp_net *nn)
{
	unsigned int r;

2696
	for (r = 0; r < nn->dp.num_r_vecs; r++) {
2697
		napi_enable(&nn->r_vecs[r].napi);
2698
		enable_irq(nn->r_vecs[r].irq_vector);
2699
	}
2700

2701
	netif_tx_wake_all_queues(nn->dp.netdev);
2702

2703
	enable_irq(nn->irq_entries[NFP_NET_IRQ_LSC_IDX].vector);
2704 2705 2706
	nfp_net_read_link_status(nn);
}

2707
static int nfp_net_open_alloc_all(struct nfp_net *nn)
2708 2709 2710 2711 2712 2713 2714 2715
{
	int err, r;

	err = nfp_net_aux_irq_request(nn, NFP_NET_CFG_EXN, "%s-exn",
				      nn->exn_name, sizeof(nn->exn_name),
				      NFP_NET_IRQ_EXN_IDX, nn->exn_handler);
	if (err)
		return err;
2716 2717 2718 2719 2720
	err = nfp_net_aux_irq_request(nn, NFP_NET_CFG_LSC, "%s-lsc",
				      nn->lsc_name, sizeof(nn->lsc_name),
				      NFP_NET_IRQ_LSC_IDX, nn->lsc_handler);
	if (err)
		goto err_free_exn;
2721
	disable_irq(nn->irq_entries[NFP_NET_IRQ_LSC_IDX].vector);
2722

2723
	for (r = 0; r < nn->dp.num_r_vecs; r++) {
2724 2725
		err = nfp_net_prepare_vector(nn, &nn->r_vecs[r], r);
		if (err)
2726 2727
			goto err_cleanup_vec_p;
	}
2728

2729 2730
	err = nfp_net_rx_rings_prepare(nn, &nn->dp);
	if (err)
2731
		goto err_cleanup_vec;
2732

2733 2734
	err = nfp_net_tx_rings_prepare(nn, &nn->dp);
	if (err)
2735
		goto err_free_rx_rings;
2736

2737
	for (r = 0; r < nn->max_r_vecs; r++)
2738
		nfp_net_vector_assign_rings(&nn->dp, &nn->r_vecs[r], r);
2739

2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768
	return 0;

err_free_rx_rings:
	nfp_net_rx_rings_free(&nn->dp);
err_cleanup_vec:
	r = nn->dp.num_r_vecs;
err_cleanup_vec_p:
	while (r--)
		nfp_net_cleanup_vector(nn, &nn->r_vecs[r]);
	nfp_net_aux_irq_free(nn, NFP_NET_CFG_LSC, NFP_NET_IRQ_LSC_IDX);
err_free_exn:
	nfp_net_aux_irq_free(nn, NFP_NET_CFG_EXN, NFP_NET_IRQ_EXN_IDX);
	return err;
}

static int nfp_net_netdev_open(struct net_device *netdev)
{
	struct nfp_net *nn = netdev_priv(netdev);
	int err;

	/* Step 1: Allocate resources for rings and the like
	 * - Request interrupts
	 * - Allocate RX and TX ring resources
	 * - Setup initial RSS table
	 */
	err = nfp_net_open_alloc_all(nn);
	if (err)
		return err;

2769
	err = netif_set_real_num_tx_queues(netdev, nn->dp.num_stack_tx_rings);
2770
	if (err)
2771
		goto err_free_all;
2772

2773
	err = netif_set_real_num_rx_queues(netdev, nn->dp.num_rx_rings);
2774
	if (err)
2775
		goto err_free_all;
2776 2777 2778 2779 2780 2781 2782 2783

	/* Step 2: Configure the NFP
	 * - Enable rings from 0 to tx_rings/rx_rings - 1.
	 * - Write MAC address (in case it changed)
	 * - Set the MTU
	 * - Set the Freelist buffer size
	 * - Enable the FW
	 */
2784
	err = nfp_net_set_config_and_enable(nn);
2785
	if (err)
2786
		goto err_free_all;
2787 2788 2789 2790 2791 2792 2793

	/* Step 3: Enable for kernel
	 * - put some freelist descriptors on each RX ring
	 * - enable NAPI on each ring
	 * - enable all TX queues
	 * - set link state
	 */
2794
	nfp_net_open_stack(nn);
2795 2796 2797

	return 0;

2798 2799
err_free_all:
	nfp_net_close_free_all(nn);
2800 2801 2802
	return err;
}

J
Jakub Kicinski 已提交
2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831
int nfp_ctrl_open(struct nfp_net *nn)
{
	int err, r;

	/* ring dumping depends on vNICs being opened/closed under rtnl */
	rtnl_lock();

	err = nfp_net_open_alloc_all(nn);
	if (err)
		goto err_unlock;

	err = nfp_net_set_config_and_enable(nn);
	if (err)
		goto err_free_all;

	for (r = 0; r < nn->dp.num_r_vecs; r++)
		enable_irq(nn->r_vecs[r].irq_vector);

	rtnl_unlock();

	return 0;

err_free_all:
	nfp_net_close_free_all(nn);
err_unlock:
	rtnl_unlock();
	return err;
}

2832 2833 2834 2835 2836
static void nfp_net_set_rx_mode(struct net_device *netdev)
{
	struct nfp_net *nn = netdev_priv(netdev);
	u32 new_ctrl;

2837
	new_ctrl = nn->dp.ctrl;
2838 2839 2840 2841 2842 2843 2844 2845 2846 2847

	if (netdev->flags & IFF_PROMISC) {
		if (nn->cap & NFP_NET_CFG_CTRL_PROMISC)
			new_ctrl |= NFP_NET_CFG_CTRL_PROMISC;
		else
			nn_warn(nn, "FW does not support promiscuous mode\n");
	} else {
		new_ctrl &= ~NFP_NET_CFG_CTRL_PROMISC;
	}

2848
	if (new_ctrl == nn->dp.ctrl)
2849 2850 2851
		return;

	nn_writel(nn, NFP_NET_CFG_CTRL, new_ctrl);
2852
	nfp_net_reconfig_post(nn, NFP_NET_CFG_UPDATE_GEN);
2853

2854
	nn->dp.ctrl = new_ctrl;
2855 2856
}

2857 2858 2859 2860 2861 2862
static void nfp_net_rss_init_itbl(struct nfp_net *nn)
{
	int i;

	for (i = 0; i < sizeof(nn->rss_itbl); i++)
		nn->rss_itbl[i] =
2863
			ethtool_rxfh_indir_default(i, nn->dp.num_rx_rings);
2864 2865
}

2866 2867 2868 2869 2870 2871
static void nfp_net_dp_swap(struct nfp_net *nn, struct nfp_net_dp *dp)
{
	struct nfp_net_dp new_dp = *dp;

	*dp = nn->dp;
	nn->dp = new_dp;
2872 2873

	nn->dp.netdev->mtu = new_dp.mtu;
2874 2875 2876

	if (!netif_is_rxfh_configured(nn->dp.netdev))
		nfp_net_rss_init_itbl(nn);
2877 2878
}

2879
static int nfp_net_dp_swap_enable(struct nfp_net *nn, struct nfp_net_dp *dp)
2880
{
2881
	unsigned int r;
2882
	int err;
2883

2884
	nfp_net_dp_swap(nn, dp);
2885

2886
	for (r = 0; r <	nn->max_r_vecs; r++)
2887
		nfp_net_vector_assign_rings(&nn->dp, &nn->r_vecs[r], r);
2888

2889
	err = netif_set_real_num_rx_queues(nn->dp.netdev, nn->dp.num_rx_rings);
2890 2891
	if (err)
		return err;
2892

2893 2894 2895
	if (nn->dp.netdev->real_num_tx_queues != nn->dp.num_stack_tx_rings) {
		err = netif_set_real_num_tx_queues(nn->dp.netdev,
						   nn->dp.num_stack_tx_rings);
2896 2897 2898 2899
		if (err)
			return err;
	}

2900
	return nfp_net_set_config_and_enable(nn);
2901
}
2902

2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922
struct nfp_net_dp *nfp_net_clone_dp(struct nfp_net *nn)
{
	struct nfp_net_dp *new;

	new = kmalloc(sizeof(*new), GFP_KERNEL);
	if (!new)
		return NULL;

	*new = nn->dp;

	/* Clear things which need to be recomputed */
	new->fl_bufsz = 0;
	new->tx_rings = NULL;
	new->rx_rings = NULL;
	new->num_r_vecs = 0;
	new->num_stack_tx_rings = 0;

	return new;
}

2923 2924 2925
static int
nfp_net_check_config(struct nfp_net *nn, struct nfp_net_dp *dp,
		     struct netlink_ext_ack *extack)
2926 2927
{
	/* XDP-enabled tests */
2928
	if (!dp->xdp_prog)
2929
		return 0;
2930
	if (dp->fl_bufsz > PAGE_SIZE) {
2931
		NL_SET_ERR_MSG_MOD(extack, "MTU too large w/ XDP enabled");
2932 2933
		return -EINVAL;
	}
2934
	if (dp->num_tx_rings > nn->max_tx_rings) {
2935
		NL_SET_ERR_MSG_MOD(extack, "Insufficient number of TX rings w/ XDP enabled");
2936 2937 2938 2939 2940 2941
		return -EINVAL;
	}

	return 0;
}

2942 2943
int nfp_net_ring_reconfig(struct nfp_net *nn, struct nfp_net_dp *dp,
			  struct netlink_ext_ack *extack)
2944
{
2945
	int r, err;
2946

2947
	dp->fl_bufsz = nfp_net_calc_fl_bufsz(dp);
2948

2949
	dp->num_stack_tx_rings = dp->num_tx_rings;
2950
	if (dp->xdp_prog)
2951
		dp->num_stack_tx_rings -= dp->num_rx_rings;
2952

2953
	dp->num_r_vecs = max(dp->num_rx_rings, dp->num_stack_tx_rings);
2954

2955
	err = nfp_net_check_config(nn, dp, extack);
2956
	if (err)
2957
		goto exit_free_dp;
2958

2959
	if (!netif_running(dp->netdev)) {
2960
		nfp_net_dp_swap(nn, dp);
2961 2962
		err = 0;
		goto exit_free_dp;
2963 2964 2965
	}

	/* Prepare new rings */
2966
	for (r = nn->dp.num_r_vecs; r < dp->num_r_vecs; r++) {
2967 2968
		err = nfp_net_prepare_vector(nn, &nn->r_vecs[r], r);
		if (err) {
2969
			dp->num_r_vecs = r;
2970 2971 2972
			goto err_cleanup_vecs;
		}
	}
2973 2974 2975 2976 2977 2978 2979 2980

	err = nfp_net_rx_rings_prepare(nn, dp);
	if (err)
		goto err_cleanup_vecs;

	err = nfp_net_tx_rings_prepare(nn, dp);
	if (err)
		goto err_free_rx;
2981 2982 2983 2984 2985

	/* Stop device, swap in new rings, try to start the firmware */
	nfp_net_close_stack(nn);
	nfp_net_clear_config_and_disable(nn);

2986
	err = nfp_net_dp_swap_enable(nn, dp);
2987
	if (err) {
2988
		int err2;
2989

2990
		nfp_net_clear_config_and_disable(nn);
2991

2992
		/* Try with old configuration and old rings */
2993
		err2 = nfp_net_dp_swap_enable(nn, dp);
2994
		if (err2)
2995
			nn_err(nn, "Can't restore ring config - FW communication failed (%d,%d)\n",
2996
			       err, err2);
2997
	}
2998
	for (r = dp->num_r_vecs - 1; r >= nn->dp.num_r_vecs; r--)
2999
		nfp_net_cleanup_vector(nn, &nn->r_vecs[r]);
3000

3001 3002
	nfp_net_rx_rings_free(dp);
	nfp_net_tx_rings_free(dp);
3003 3004

	nfp_net_open_stack(nn);
3005 3006
exit_free_dp:
	kfree(dp);
3007 3008

	return err;
3009 3010

err_free_rx:
3011
	nfp_net_rx_rings_free(dp);
3012
err_cleanup_vecs:
3013
	for (r = dp->num_r_vecs - 1; r >= nn->dp.num_r_vecs; r--)
3014
		nfp_net_cleanup_vector(nn, &nn->r_vecs[r]);
3015
	kfree(dp);
3016 3017 3018 3019 3020 3021
	return err;
}

static int nfp_net_change_mtu(struct net_device *netdev, int new_mtu)
{
	struct nfp_net *nn = netdev_priv(netdev);
3022 3023 3024 3025 3026
	struct nfp_net_dp *dp;

	dp = nfp_net_clone_dp(nn);
	if (!dp)
		return -ENOMEM;
3027

3028 3029
	dp->mtu = new_mtu;

3030
	return nfp_net_ring_reconfig(nn, dp, NULL);
3031 3032
}

P
Pablo Cascón 已提交
3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066
static int
nfp_net_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
{
	struct nfp_net *nn = netdev_priv(netdev);

	/* Priority tagged packets with vlan id 0 are processed by the
	 * NFP as untagged packets
	 */
	if (!vid)
		return 0;

	nn_writew(nn, NFP_NET_CFG_VLAN_FILTER_VID, vid);
	nn_writew(nn, NFP_NET_CFG_VLAN_FILTER_PROTO, ETH_P_8021Q);

	return nfp_net_reconfig_mbox(nn, NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_ADD);
}

static int
nfp_net_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
{
	struct nfp_net *nn = netdev_priv(netdev);

	/* Priority tagged packets with vlan id 0 are processed by the
	 * NFP as untagged packets
	 */
	if (!vid)
		return 0;

	nn_writew(nn, NFP_NET_CFG_VLAN_FILTER_VID, vid);
	nn_writew(nn, NFP_NET_CFG_VLAN_FILTER_PROTO, ETH_P_8021Q);

	return nfp_net_reconfig_mbox(nn, NFP_NET_CFG_MBOX_CMD_CTAG_FILTER_KILL);
}

3067 3068
static void nfp_net_stat64(struct net_device *netdev,
			   struct rtnl_link_stats64 *stats)
3069 3070 3071 3072
{
	struct nfp_net *nn = netdev_priv(netdev);
	int r;

3073
	for (r = 0; r < nn->dp.num_r_vecs; r++) {
3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109
		struct nfp_net_r_vector *r_vec = &nn->r_vecs[r];
		u64 data[3];
		unsigned int start;

		do {
			start = u64_stats_fetch_begin(&r_vec->rx_sync);
			data[0] = r_vec->rx_pkts;
			data[1] = r_vec->rx_bytes;
			data[2] = r_vec->rx_drops;
		} while (u64_stats_fetch_retry(&r_vec->rx_sync, start));
		stats->rx_packets += data[0];
		stats->rx_bytes += data[1];
		stats->rx_dropped += data[2];

		do {
			start = u64_stats_fetch_begin(&r_vec->tx_sync);
			data[0] = r_vec->tx_pkts;
			data[1] = r_vec->tx_bytes;
			data[2] = r_vec->tx_errors;
		} while (u64_stats_fetch_retry(&r_vec->tx_sync, start));
		stats->tx_packets += data[0];
		stats->tx_bytes += data[1];
		stats->tx_errors += data[2];
	}
}

static int nfp_net_set_features(struct net_device *netdev,
				netdev_features_t features)
{
	netdev_features_t changed = netdev->features ^ features;
	struct nfp_net *nn = netdev_priv(netdev);
	u32 new_ctrl;
	int err;

	/* Assume this is not called with features we have not advertised */

3110
	new_ctrl = nn->dp.ctrl;
3111 3112 3113

	if (changed & NETIF_F_RXCSUM) {
		if (features & NETIF_F_RXCSUM)
3114
			new_ctrl |= nn->cap & NFP_NET_CFG_CTRL_RXCSUM_ANY;
3115
		else
3116
			new_ctrl &= ~NFP_NET_CFG_CTRL_RXCSUM_ANY;
3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127
	}

	if (changed & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
		if (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM))
			new_ctrl |= NFP_NET_CFG_CTRL_TXCSUM;
		else
			new_ctrl &= ~NFP_NET_CFG_CTRL_TXCSUM;
	}

	if (changed & (NETIF_F_TSO | NETIF_F_TSO6)) {
		if (features & (NETIF_F_TSO | NETIF_F_TSO6))
E
Edwin Peer 已提交
3128 3129
			new_ctrl |= nn->cap & NFP_NET_CFG_CTRL_LSO2 ?:
					      NFP_NET_CFG_CTRL_LSO;
3130
		else
E
Edwin Peer 已提交
3131
			new_ctrl &= ~NFP_NET_CFG_CTRL_LSO_ANY;
3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147
	}

	if (changed & NETIF_F_HW_VLAN_CTAG_RX) {
		if (features & NETIF_F_HW_VLAN_CTAG_RX)
			new_ctrl |= NFP_NET_CFG_CTRL_RXVLAN;
		else
			new_ctrl &= ~NFP_NET_CFG_CTRL_RXVLAN;
	}

	if (changed & NETIF_F_HW_VLAN_CTAG_TX) {
		if (features & NETIF_F_HW_VLAN_CTAG_TX)
			new_ctrl |= NFP_NET_CFG_CTRL_TXVLAN;
		else
			new_ctrl &= ~NFP_NET_CFG_CTRL_TXVLAN;
	}

P
Pablo Cascón 已提交
3148 3149 3150 3151 3152 3153 3154
	if (changed & NETIF_F_HW_VLAN_CTAG_FILTER) {
		if (features & NETIF_F_HW_VLAN_CTAG_FILTER)
			new_ctrl |= NFP_NET_CFG_CTRL_CTAG_FILTER;
		else
			new_ctrl &= ~NFP_NET_CFG_CTRL_CTAG_FILTER;
	}

3155 3156 3157 3158 3159 3160 3161
	if (changed & NETIF_F_SG) {
		if (features & NETIF_F_SG)
			new_ctrl |= NFP_NET_CFG_CTRL_GATHER;
		else
			new_ctrl &= ~NFP_NET_CFG_CTRL_GATHER;
	}

3162
	if (changed & NETIF_F_HW_TC && nfp_app_tc_busy(nn->app, nn)) {
3163 3164 3165 3166
		nn_err(nn, "Cannot disable HW TC offload while in use\n");
		return -EBUSY;
	}

3167 3168 3169
	nn_dbg(nn, "Feature change 0x%llx -> 0x%llx (changed=0x%llx)\n",
	       netdev->features, features, changed);

3170
	if (new_ctrl == nn->dp.ctrl)
3171 3172
		return 0;

3173
	nn_dbg(nn, "NIC ctrl: 0x%x -> 0x%x\n", nn->dp.ctrl, new_ctrl);
3174 3175 3176 3177 3178
	nn_writel(nn, NFP_NET_CFG_CTRL, new_ctrl);
	err = nfp_net_reconfig(nn, NFP_NET_CFG_UPDATE_GEN);
	if (err)
		return err;

3179
	nn->dp.ctrl = new_ctrl;
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215

	return 0;
}

static netdev_features_t
nfp_net_features_check(struct sk_buff *skb, struct net_device *dev,
		       netdev_features_t features)
{
	u8 l4_hdr;

	/* We can't do TSO over double tagged packets (802.1AD) */
	features &= vlan_features_check(skb, features);

	if (!skb->encapsulation)
		return features;

	/* Ensure that inner L4 header offset fits into TX descriptor field */
	if (skb_is_gso(skb)) {
		u32 hdrlen;

		hdrlen = skb_inner_transport_header(skb) - skb->data +
			inner_tcp_hdrlen(skb);

		if (unlikely(hdrlen > NFP_NET_LSO_MAX_HDR_SZ))
			features &= ~NETIF_F_GSO_MASK;
	}

	/* VXLAN/GRE check */
	switch (vlan_get_protocol(skb)) {
	case htons(ETH_P_IP):
		l4_hdr = ip_hdr(skb)->protocol;
		break;
	case htons(ETH_P_IPV6):
		l4_hdr = ipv6_hdr(skb)->nexthdr;
		break;
	default:
3216
		return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
3217 3218 3219 3220 3221 3222 3223 3224
	}

	if (skb->inner_protocol_type != ENCAP_TYPE_ETHER ||
	    skb->inner_protocol != htons(ETH_P_TEB) ||
	    (l4_hdr != IPPROTO_UDP && l4_hdr != IPPROTO_GRE) ||
	    (l4_hdr == IPPROTO_UDP &&
	     (skb_inner_mac_header(skb) - skb_transport_header(skb) !=
	      sizeof(struct udphdr) + sizeof(struct vxlanhdr))))
3225
		return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241

	return features;
}

/**
 * nfp_net_set_vxlan_port() - set vxlan port in SW and reconfigure HW
 * @nn:   NFP Net device to reconfigure
 * @idx:  Index into the port table where new port should be written
 * @port: UDP port to configure (pass zero to remove VXLAN port)
 */
static void nfp_net_set_vxlan_port(struct nfp_net *nn, int idx, __be16 port)
{
	int i;

	nn->vxlan_ports[idx] = port;

3242
	if (!(nn->dp.ctrl & NFP_NET_CFG_CTRL_VXLAN))
3243 3244 3245 3246 3247 3248 3249 3250
		return;

	BUILD_BUG_ON(NFP_NET_N_VXLAN_PORTS & 1);
	for (i = 0; i < NFP_NET_N_VXLAN_PORTS; i += 2)
		nn_writel(nn, NFP_NET_CFG_VXLAN_PORT + i * sizeof(port),
			  be16_to_cpu(nn->vxlan_ports[i + 1]) << 16 |
			  be16_to_cpu(nn->vxlan_ports[i]));

3251
	nfp_net_reconfig_post(nn, NFP_NET_CFG_UPDATE_VXLAN);
3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277
}

/**
 * nfp_net_find_vxlan_idx() - find table entry of the port or a free one
 * @nn:   NFP Network structure
 * @port: UDP port to look for
 *
 * Return: if the port is already in the table -- it's position;
 *	   if the port is not in the table -- free position to use;
 *	   if the table is full -- -ENOSPC.
 */
static int nfp_net_find_vxlan_idx(struct nfp_net *nn, __be16 port)
{
	int i, free_idx = -ENOSPC;

	for (i = 0; i < NFP_NET_N_VXLAN_PORTS; i++) {
		if (nn->vxlan_ports[i] == port)
			return i;
		if (!nn->vxlan_usecnt[i])
			free_idx = i;
	}

	return free_idx;
}

static void nfp_net_add_vxlan_port(struct net_device *netdev,
3278
				   struct udp_tunnel_info *ti)
3279 3280 3281 3282
{
	struct nfp_net *nn = netdev_priv(netdev);
	int idx;

3283 3284 3285 3286
	if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
		return;

	idx = nfp_net_find_vxlan_idx(nn, ti->port);
3287 3288 3289 3290
	if (idx == -ENOSPC)
		return;

	if (!nn->vxlan_usecnt[idx]++)
3291
		nfp_net_set_vxlan_port(nn, idx, ti->port);
3292 3293 3294
}

static void nfp_net_del_vxlan_port(struct net_device *netdev,
3295
				   struct udp_tunnel_info *ti)
3296 3297 3298 3299
{
	struct nfp_net *nn = netdev_priv(netdev);
	int idx;

3300 3301 3302 3303
	if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
		return;

	idx = nfp_net_find_vxlan_idx(nn, ti->port);
3304
	if (idx == -ENOSPC || !nn->vxlan_usecnt[idx])
3305 3306 3307 3308 3309 3310
		return;

	if (!--nn->vxlan_usecnt[idx])
		nfp_net_set_vxlan_port(nn, idx, 0);
}

3311 3312 3313
static int
nfp_net_xdp_setup_drv(struct nfp_net *nn, struct bpf_prog *prog,
		      struct netlink_ext_ack *extack)
3314
{
3315
	struct nfp_net_dp *dp;
3316

3317 3318
	if (!prog == !nn->dp.xdp_prog) {
		WRITE_ONCE(nn->dp.xdp_prog, prog);
3319 3320 3321
		return 0;
	}

3322 3323 3324 3325
	dp = nfp_net_clone_dp(nn);
	if (!dp)
		return -ENOMEM;

3326
	dp->xdp_prog = prog;
3327
	dp->num_tx_rings += prog ? nn->dp.num_rx_rings : -nn->dp.num_rx_rings;
3328
	dp->rx_dma_dir = prog ? DMA_BIDIRECTIONAL : DMA_FROM_DEVICE;
3329
	dp->rx_dma_off = prog ? XDP_PACKET_HEADROOM - nn->dp.rx_offset : 0;
3330 3331

	/* We need RX reconfig to remap the buffers (BIDIR vs FROM_DEV) */
3332
	return nfp_net_ring_reconfig(nn, dp, extack);
3333 3334 3335
}

static int
3336
nfp_net_xdp_setup(struct nfp_net *nn, struct bpf_prog *prog, u32 flags,
3337 3338
		  struct netlink_ext_ack *extack)
{
3339
	struct bpf_prog *drv_prog, *offload_prog;
3340 3341
	int err;

3342
	if (nn->xdp_prog && (flags ^ nn->xdp_flags) & XDP_FLAGS_MODES)
3343 3344
		return -EBUSY;

3345 3346 3347 3348
	/* Load both when no flags set to allow easy activation of driver path
	 * when program is replaced by one which can't be offloaded.
	 */
	drv_prog     = flags & XDP_FLAGS_HW_MODE  ? NULL : prog;
3349 3350
	offload_prog = flags & XDP_FLAGS_DRV_MODE ? NULL : prog;

3351
	err = nfp_net_xdp_setup_drv(nn, drv_prog, extack);
3352 3353 3354
	if (err)
		return err;

3355 3356 3357
	err = nfp_app_xdp_offload(nn->app, nn, offload_prog);
	if (err && flags & XDP_FLAGS_HW_MODE)
		return err;
3358 3359 3360 3361

	if (nn->xdp_prog)
		bpf_prog_put(nn->xdp_prog);
	nn->xdp_prog = prog;
3362
	nn->xdp_flags = flags;
3363

3364 3365 3366 3367 3368 3369 3370 3371 3372
	return 0;
}

static int nfp_net_xdp(struct net_device *netdev, struct netdev_xdp *xdp)
{
	struct nfp_net *nn = netdev_priv(netdev);

	switch (xdp->command) {
	case XDP_SETUP_PROG:
3373
	case XDP_SETUP_PROG_HW:
3374 3375
		return nfp_net_xdp_setup(nn, xdp->prog, xdp->flags,
					 xdp->extack);
3376
	case XDP_QUERY_PROG:
3377
		xdp->prog_attached = !!nn->xdp_prog;
3378 3379
		if (nn->dp.bpf_offload_xdp)
			xdp->prog_attached = XDP_ATTACHED_HW;
3380
		xdp->prog_id = nn->xdp_prog ? nn->xdp_prog->aux->id : 0;
3381 3382 3383 3384 3385 3386
		return 0;
	default:
		return -EINVAL;
	}
}

3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407
static int nfp_net_set_mac_address(struct net_device *netdev, void *addr)
{
	struct nfp_net *nn = netdev_priv(netdev);
	struct sockaddr *saddr = addr;
	int err;

	err = eth_prepare_mac_addr_change(netdev, addr);
	if (err)
		return err;

	nfp_net_write_mac_addr(nn, saddr->sa_data);

	err = nfp_net_reconfig(nn, NFP_NET_CFG_UPDATE_MACADDR);
	if (err)
		return err;

	eth_commit_mac_addr_change(netdev, addr);

	return 0;
}

J
Jakub Kicinski 已提交
3408
const struct net_device_ops nfp_net_netdev_ops = {
3409 3410 3411 3412
	.ndo_open		= nfp_net_netdev_open,
	.ndo_stop		= nfp_net_netdev_close,
	.ndo_start_xmit		= nfp_net_tx,
	.ndo_get_stats64	= nfp_net_stat64,
P
Pablo Cascón 已提交
3413 3414
	.ndo_vlan_rx_add_vid	= nfp_net_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= nfp_net_vlan_rx_kill_vid,
3415
	.ndo_setup_tc		= nfp_port_setup_tc,
3416 3417 3418
	.ndo_tx_timeout		= nfp_net_tx_timeout,
	.ndo_set_rx_mode	= nfp_net_set_rx_mode,
	.ndo_change_mtu		= nfp_net_change_mtu,
3419
	.ndo_set_mac_address	= nfp_net_set_mac_address,
3420 3421
	.ndo_set_features	= nfp_net_set_features,
	.ndo_features_check	= nfp_net_features_check,
J
Jakub Kicinski 已提交
3422
	.ndo_get_phys_port_name	= nfp_port_get_phys_port_name,
3423 3424
	.ndo_udp_tunnel_add	= nfp_net_add_vxlan_port,
	.ndo_udp_tunnel_del	= nfp_net_del_vxlan_port,
3425
	.ndo_xdp		= nfp_net_xdp,
3426 3427 3428 3429 3430 3431 3432 3433
};

/**
 * nfp_net_info() - Print general info about the NIC
 * @nn:      NFP Net device to reconfigure
 */
void nfp_net_info(struct nfp_net *nn)
{
J
Jakub Kicinski 已提交
3434
	nn_info(nn, "Netronome NFP-6xxx %sNetdev: TxQs=%d/%d RxQs=%d/%d\n",
3435 3436 3437
		nn->dp.is_vf ? "VF " : "",
		nn->dp.num_tx_rings, nn->max_tx_rings,
		nn->dp.num_rx_rings, nn->max_rx_rings);
3438 3439 3440 3441
	nn_info(nn, "VER: %d.%d.%d.%d, Maximum supported MTU: %d\n",
		nn->fw_ver.resv, nn->fw_ver.class,
		nn->fw_ver.major, nn->fw_ver.minor,
		nn->max_mtu);
P
Pablo Cascón 已提交
3442
	nn_info(nn, "CAP: %#x %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
3443 3444 3445 3446 3447 3448 3449 3450 3451 3452
		nn->cap,
		nn->cap & NFP_NET_CFG_CTRL_PROMISC  ? "PROMISC "  : "",
		nn->cap & NFP_NET_CFG_CTRL_L2BC     ? "L2BCFILT " : "",
		nn->cap & NFP_NET_CFG_CTRL_L2MC     ? "L2MCFILT " : "",
		nn->cap & NFP_NET_CFG_CTRL_RXCSUM   ? "RXCSUM "   : "",
		nn->cap & NFP_NET_CFG_CTRL_TXCSUM   ? "TXCSUM "   : "",
		nn->cap & NFP_NET_CFG_CTRL_RXVLAN   ? "RXVLAN "   : "",
		nn->cap & NFP_NET_CFG_CTRL_TXVLAN   ? "TXVLAN "   : "",
		nn->cap & NFP_NET_CFG_CTRL_SCATTER  ? "SCATTER "  : "",
		nn->cap & NFP_NET_CFG_CTRL_GATHER   ? "GATHER "   : "",
E
Edwin Peer 已提交
3453 3454
		nn->cap & NFP_NET_CFG_CTRL_LSO      ? "TSO1 "     : "",
		nn->cap & NFP_NET_CFG_CTRL_LSO2     ? "TSO2 "     : "",
3455 3456
		nn->cap & NFP_NET_CFG_CTRL_RSS      ? "RSS1 "     : "",
		nn->cap & NFP_NET_CFG_CTRL_RSS2     ? "RSS2 "     : "",
P
Pablo Cascón 已提交
3457
		nn->cap & NFP_NET_CFG_CTRL_CTAG_FILTER ? "CTAG_FILTER " : "",
3458 3459 3460 3461
		nn->cap & NFP_NET_CFG_CTRL_L2SWITCH ? "L2SWITCH " : "",
		nn->cap & NFP_NET_CFG_CTRL_MSIXAUTO ? "AUTOMASK " : "",
		nn->cap & NFP_NET_CFG_CTRL_IRQMOD   ? "IRQMOD "   : "",
		nn->cap & NFP_NET_CFG_CTRL_VXLAN    ? "VXLAN "    : "",
3462
		nn->cap & NFP_NET_CFG_CTRL_NVGRE    ? "NVGRE "	  : "",
3463
		nn->cap & NFP_NET_CFG_CTRL_CSUM_COMPLETE ?
3464
						      "RXCSUM_COMPLETE " : "",
3465 3466
		nn->cap & NFP_NET_CFG_CTRL_LIVE_ADDR ? "LIVE_ADDR " : "",
		nfp_app_extra_cap(nn->app, nn));
3467 3468 3469
}

/**
3470
 * nfp_net_alloc() - Allocate netdev and related structure
3471
 * @pdev:         PCI device
3472
 * @needs_netdev: Whether to allocate a netdev for this vNIC
3473 3474 3475 3476
 * @max_tx_rings: Maximum number of TX rings supported by device
 * @max_rx_rings: Maximum number of RX rings supported by device
 *
 * This function allocates a netdev device and fills in the initial
3477 3478
 * part of the @struct nfp_net structure.  In case of control device
 * nfp_net structure is allocated without the netdev.
3479 3480 3481
 *
 * Return: NFP Net device structure, or ERR_PTR on error.
 */
3482
struct nfp_net *nfp_net_alloc(struct pci_dev *pdev, bool needs_netdev,
3483 3484
			      unsigned int max_tx_rings,
			      unsigned int max_rx_rings)
3485 3486 3487
{
	struct nfp_net *nn;

3488 3489
	if (needs_netdev) {
		struct net_device *netdev;
3490

3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503
		netdev = alloc_etherdev_mqs(sizeof(struct nfp_net),
					    max_tx_rings, max_rx_rings);
		if (!netdev)
			return ERR_PTR(-ENOMEM);

		SET_NETDEV_DEV(netdev, &pdev->dev);
		nn = netdev_priv(netdev);
		nn->dp.netdev = netdev;
	} else {
		nn = vzalloc(sizeof(*nn));
		if (!nn)
			return ERR_PTR(-ENOMEM);
	}
3504

3505
	nn->dp.dev = &pdev->dev;
3506 3507 3508 3509 3510
	nn->pdev = pdev;

	nn->max_tx_rings = max_tx_rings;
	nn->max_rx_rings = max_rx_rings;

3511 3512 3513
	nn->dp.num_tx_rings = min_t(unsigned int,
				    max_tx_rings, num_online_cpus());
	nn->dp.num_rx_rings = min_t(unsigned int, max_rx_rings,
3514
				 netif_get_num_default_rss_queues());
3515

3516 3517 3518
	nn->dp.num_r_vecs = max(nn->dp.num_tx_rings, nn->dp.num_rx_rings);
	nn->dp.num_r_vecs = min_t(unsigned int,
				  nn->dp.num_r_vecs, num_online_cpus());
J
Jakub Kicinski 已提交
3519

3520 3521
	nn->dp.txd_cnt = NFP_NET_TX_DESCS_DEFAULT;
	nn->dp.rxd_cnt = NFP_NET_RX_DESCS_DEFAULT;
3522 3523 3524 3525

	spin_lock_init(&nn->reconfig_lock);
	spin_lock_init(&nn->link_status_lock);

3526 3527 3528
	setup_timer(&nn->reconfig_timer,
		    nfp_net_reconfig_timer, (unsigned long)nn);

3529 3530 3531 3532
	return nn;
}

/**
3533
 * nfp_net_free() - Undo what @nfp_net_alloc() did
3534 3535
 * @nn:      NFP Net device to reconfigure
 */
3536
void nfp_net_free(struct nfp_net *nn)
3537
{
3538 3539 3540
	if (nn->xdp_prog)
		bpf_prog_put(nn->xdp_prog);

3541 3542 3543 3544
	if (nn->dp.netdev)
		free_netdev(nn->dp.netdev);
	else
		vfree(nn);
3545 3546
}

3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567
/**
 * nfp_net_rss_key_sz() - Get current size of the RSS key
 * @nn:		NFP Net device instance
 *
 * Return: size of the RSS key for currently selected hash function.
 */
unsigned int nfp_net_rss_key_sz(struct nfp_net *nn)
{
	switch (nn->rss_hfunc) {
	case ETH_RSS_HASH_TOP:
		return NFP_NET_CFG_RSS_KEY_SZ;
	case ETH_RSS_HASH_XOR:
		return 0;
	case ETH_RSS_HASH_CRC32:
		return 4;
	}

	nn_warn(nn, "Unknown hash function: %u\n", nn->rss_hfunc);
	return 0;
}

3568 3569 3570 3571 3572 3573
/**
 * nfp_net_rss_init() - Set the initial RSS parameters
 * @nn:	     NFP Net device to reconfigure
 */
static void nfp_net_rss_init(struct nfp_net *nn)
{
3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585
	unsigned long func_bit, rss_cap_hfunc;
	u32 reg;

	/* Read the RSS function capability and select first supported func */
	reg = nn_readl(nn, NFP_NET_CFG_RSS_CAP);
	rss_cap_hfunc =	FIELD_GET(NFP_NET_CFG_RSS_CAP_HFUNC, reg);
	if (!rss_cap_hfunc)
		rss_cap_hfunc =	FIELD_GET(NFP_NET_CFG_RSS_CAP_HFUNC,
					  NFP_NET_CFG_RSS_TOEPLITZ);

	func_bit = find_first_bit(&rss_cap_hfunc, NFP_NET_CFG_RSS_HFUNCS);
	if (func_bit == NFP_NET_CFG_RSS_HFUNCS) {
3586
		dev_warn(nn->dp.dev,
3587 3588 3589 3590 3591 3592
			 "Bad RSS config, defaulting to Toeplitz hash\n");
		func_bit = ETH_RSS_HASH_TOP_BIT;
	}
	nn->rss_hfunc = 1 << func_bit;

	netdev_rss_key_fill(nn->rss_key, nfp_net_rss_key_sz(nn));
3593

3594
	nfp_net_rss_init_itbl(nn);
3595 3596 3597 3598

	/* Enable IPv4/IPv6 TCP by default */
	nn->rss_cfg = NFP_NET_CFG_RSS_IPV4_TCP |
		      NFP_NET_CFG_RSS_IPV6_TCP |
3599
		      FIELD_PREP(NFP_NET_CFG_RSS_HFUNC, nn->rss_hfunc) |
3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614
		      NFP_NET_CFG_RSS_MASK;
}

/**
 * nfp_net_irqmod_init() - Set the initial IRQ moderation parameters
 * @nn:	     NFP Net device to reconfigure
 */
static void nfp_net_irqmod_init(struct nfp_net *nn)
{
	nn->rx_coalesce_usecs      = 50;
	nn->rx_coalesce_max_frames = 64;
	nn->tx_coalesce_usecs      = 50;
	nn->tx_coalesce_max_frames = 64;
}

3615
static void nfp_net_netdev_init(struct nfp_net *nn)
3616
{
3617
	struct net_device *netdev = nn->dp.netdev;
3618

3619
	nfp_net_write_mac_addr(nn, nn->dp.netdev->dev_addr);
3620

3621
	netdev->mtu = nn->dp.mtu;
3622 3623 3624 3625 3626 3627 3628

	/* Advertise/enable offloads based on capabilities
	 *
	 * Note: netdev->features show the currently enabled features
	 * and netdev->hw_features advertises which features are
	 * supported.  By default we enable most features.
	 */
3629 3630 3631
	if (nn->cap & NFP_NET_CFG_CTRL_LIVE_ADDR)
		netdev->priv_flags |= IFF_LIVE_ADDR_CHANGE;

3632
	netdev->hw_features = NETIF_F_HIGHDMA;
3633
	if (nn->cap & NFP_NET_CFG_CTRL_RXCSUM_ANY) {
3634
		netdev->hw_features |= NETIF_F_RXCSUM;
3635
		nn->dp.ctrl |= nn->cap & NFP_NET_CFG_CTRL_RXCSUM_ANY;
3636 3637 3638
	}
	if (nn->cap & NFP_NET_CFG_CTRL_TXCSUM) {
		netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
3639
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_TXCSUM;
3640 3641 3642
	}
	if (nn->cap & NFP_NET_CFG_CTRL_GATHER) {
		netdev->hw_features |= NETIF_F_SG;
3643
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_GATHER;
3644
	}
E
Edwin Peer 已提交
3645 3646
	if ((nn->cap & NFP_NET_CFG_CTRL_LSO && nn->fw_ver.major > 2) ||
	    nn->cap & NFP_NET_CFG_CTRL_LSO2) {
3647
		netdev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
E
Edwin Peer 已提交
3648 3649
		nn->dp.ctrl |= nn->cap & NFP_NET_CFG_CTRL_LSO2 ?:
					 NFP_NET_CFG_CTRL_LSO;
3650
	}
3651
	if (nn->cap & NFP_NET_CFG_CTRL_RSS_ANY)
3652 3653 3654 3655 3656 3657
		netdev->hw_features |= NETIF_F_RXHASH;
	if (nn->cap & NFP_NET_CFG_CTRL_VXLAN &&
	    nn->cap & NFP_NET_CFG_CTRL_NVGRE) {
		if (nn->cap & NFP_NET_CFG_CTRL_LSO)
			netdev->hw_features |= NETIF_F_GSO_GRE |
					       NETIF_F_GSO_UDP_TUNNEL;
3658
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_VXLAN | NFP_NET_CFG_CTRL_NVGRE;
3659 3660 3661 3662 3663 3664 3665 3666

		netdev->hw_enc_features = netdev->hw_features;
	}

	netdev->vlan_features = netdev->hw_features;

	if (nn->cap & NFP_NET_CFG_CTRL_RXVLAN) {
		netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX;
3667
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_RXVLAN;
3668 3669
	}
	if (nn->cap & NFP_NET_CFG_CTRL_TXVLAN) {
E
Edwin Peer 已提交
3670 3671 3672 3673 3674 3675
		if (nn->cap & NFP_NET_CFG_CTRL_LSO2) {
			nn_warn(nn, "Device advertises both TSO2 and TXVLAN. Refusing to enable TXVLAN.\n");
		} else {
			netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX;
			nn->dp.ctrl |= NFP_NET_CFG_CTRL_TXVLAN;
		}
3676
	}
P
Pablo Cascón 已提交
3677 3678 3679 3680
	if (nn->cap & NFP_NET_CFG_CTRL_CTAG_FILTER) {
		netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_FILTER;
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_CTAG_FILTER;
	}
3681 3682 3683

	netdev->features = netdev->hw_features;

3684
	if (nfp_app_has_tc(nn->app))
3685 3686
		netdev->hw_features |= NETIF_F_HW_TC;

3687 3688
	/* Advertise but disable TSO by default. */
	netdev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
E
Edwin Peer 已提交
3689
	nn->dp.ctrl &= ~NFP_NET_CFG_CTRL_LSO_ANY;
3690

3691 3692 3693 3694
	/* Finalise the netdev setup */
	netdev->netdev_ops = &nfp_net_netdev_ops;
	netdev->watchdog_timeo = msecs_to_jiffies(5 * 1000);

S
Simon Horman 已提交
3695 3696
	SWITCHDEV_SET_OPS(netdev, &nfp_port_switchdev_ops);

3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723
	/* MTU range: 68 - hw-specific max */
	netdev->min_mtu = ETH_MIN_MTU;
	netdev->max_mtu = nn->max_mtu;

	netif_carrier_off(netdev);

	nfp_net_set_ethtool_ops(netdev);
}

/**
 * nfp_net_init() - Initialise/finalise the nfp_net structure
 * @nn:		NFP Net device structure
 *
 * Return: 0 on success or negative errno on error.
 */
int nfp_net_init(struct nfp_net *nn)
{
	int err;

	nn->dp.rx_dma_dir = DMA_FROM_DEVICE;

	/* Get some of the read-only fields from the BAR */
	nn->cap = nn_readl(nn, NFP_NET_CFG_CAP);
	nn->max_mtu = nn_readl(nn, NFP_NET_CFG_MAX_MTU);

	/* Chained metadata is signalled by capabilities except in version 4 */
	nn->dp.chained_metadata_format = nn->fw_ver.major == 4 ||
J
Jakub Kicinski 已提交
3724
					 !nn->dp.netdev ||
3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755
					 nn->cap & NFP_NET_CFG_CTRL_CHAIN_META;
	if (nn->dp.chained_metadata_format && nn->fw_ver.major != 4)
		nn->cap &= ~NFP_NET_CFG_CTRL_RSS;

	/* Determine RX packet/metadata boundary offset */
	if (nn->fw_ver.major >= 2) {
		u32 reg;

		reg = nn_readl(nn, NFP_NET_CFG_RX_OFFSET);
		if (reg > NFP_NET_MAX_PREPEND) {
			nn_err(nn, "Invalid rx offset: %d\n", reg);
			return -EINVAL;
		}
		nn->dp.rx_offset = reg;
	} else {
		nn->dp.rx_offset = NFP_NET_RX_OFFSET;
	}

	/* Set default MTU and Freelist buffer size */
	if (nn->max_mtu < NFP_NET_DEFAULT_MTU)
		nn->dp.mtu = nn->max_mtu;
	else
		nn->dp.mtu = NFP_NET_DEFAULT_MTU;
	nn->dp.fl_bufsz = nfp_net_calc_fl_bufsz(&nn->dp);

	if (nn->cap & NFP_NET_CFG_CTRL_RSS_ANY) {
		nfp_net_rss_init(nn);
		nn->dp.ctrl |= nn->cap & NFP_NET_CFG_CTRL_RSS2 ?:
					 NFP_NET_CFG_CTRL_RSS;
	}

3756 3757
	/* Allow L2 Broadcast and Multicast through by default, if supported */
	if (nn->cap & NFP_NET_CFG_CTRL_L2BC)
3758
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_L2BC;
3759
	if (nn->cap & NFP_NET_CFG_CTRL_L2MC)
3760
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_L2MC;
3761 3762 3763 3764

	/* Allow IRQ moderation, if supported */
	if (nn->cap & NFP_NET_CFG_CTRL_IRQMOD) {
		nfp_net_irqmod_init(nn);
3765
		nn->dp.ctrl |= NFP_NET_CFG_CTRL_IRQMOD;
3766 3767
	}

3768 3769 3770
	if (nn->dp.netdev)
		nfp_net_netdev_init(nn);

3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782
	/* Stash the re-configuration queue away.  First odd queue in TX Bar */
	nn->qcp_cfg = nn->tx_bar + NFP_QCP_QUEUE_ADDR_SZ;

	/* Make sure the FW knows the netdev is supposed to be disabled here */
	nn_writel(nn, NFP_NET_CFG_CTRL, 0);
	nn_writeq(nn, NFP_NET_CFG_TXRS_ENABLE, 0);
	nn_writeq(nn, NFP_NET_CFG_RXRS_ENABLE, 0);
	err = nfp_net_reconfig(nn, NFP_NET_CFG_UPDATE_RING |
				   NFP_NET_CFG_UPDATE_GEN);
	if (err)
		return err;

3783
	nfp_net_vecs_init(nn);
3784

3785 3786 3787
	if (!nn->dp.netdev)
		return 0;
	return register_netdev(nn->dp.netdev);
3788 3789 3790
}

/**
3791 3792
 * nfp_net_clean() - Undo what nfp_net_init() did.
 * @nn:		NFP Net device structure
3793
 */
3794
void nfp_net_clean(struct nfp_net *nn)
3795
{
3796 3797 3798
	if (!nn->dp.netdev)
		return;

3799
	unregister_netdev(nn->dp.netdev);
3800
}