nfp_main.c 18.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/*
 * Copyright (C) 2015-2017 Netronome Systems, Inc.
 *
 * 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_main.c
 * Authors: Jakub Kicinski <jakub.kicinski@netronome.com>
 *          Alejandro Lucero <alejandro.lucero@netronome.com>
 *          Jason McMullan <jason.mcmullan@netronome.com>
 *          Rolf Neugebauer <rolf.neugebauer@netronome.com>
 */

#include <linux/kernel.h>
#include <linux/module.h>
44
#include <linux/mutex.h>
45 46 47
#include <linux/pci.h>
#include <linux/firmware.h>
#include <linux/vermagic.h>
C
Carl Heymann 已提交
48
#include <linux/vmalloc.h>
S
Simon Horman 已提交
49
#include <net/devlink.h>
50

J
Jakub Kicinski 已提交
51 52
#include "nfpcore/nfp.h"
#include "nfpcore/nfp_cpp.h"
53
#include "nfpcore/nfp_nffw.h"
54
#include "nfpcore/nfp_nsp.h"
J
Jakub Kicinski 已提交
55 56 57

#include "nfpcore/nfp6000_pcie.h"

58
#include "nfp_abi.h"
S
Simon Horman 已提交
59
#include "nfp_app.h"
60 61 62 63 64 65
#include "nfp_main.h"
#include "nfp_net.h"

static const char nfp_driver_name[] = "nfp";
const char nfp_driver_version[] = VERMAGIC_STRING;

J
Jakub Kicinski 已提交
66
static const struct pci_device_id nfp_pci_device_ids[] = {
67
	{ PCI_VENDOR_ID_NETRONOME, PCI_DEVICE_ID_NETRONOME_NFP6000,
J
Jakub Kicinski 已提交
68 69 70
	  PCI_VENDOR_ID_NETRONOME, PCI_ANY_ID,
	  PCI_ANY_ID, 0,
	},
71
	{ PCI_VENDOR_ID_NETRONOME, PCI_DEVICE_ID_NETRONOME_NFP4000,
J
Jakub Kicinski 已提交
72 73 74 75 76 77 78
	  PCI_VENDOR_ID_NETRONOME, PCI_ANY_ID,
	  PCI_ANY_ID, 0,
	},
	{ 0, } /* Required last entry. */
};
MODULE_DEVICE_TABLE(pci, nfp_pci_device_ids);

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
int nfp_pf_rtsym_read_optional(struct nfp_pf *pf, const char *format,
			       unsigned int default_val)
{
	char name[256];
	int err = 0;
	u64 val;

	snprintf(name, sizeof(name), format, nfp_cppcore_pcie_unit(pf->cpp));

	val = nfp_rtsym_read_le(pf->rtbl, name, &err);
	if (err) {
		if (err == -ENOENT)
			return default_val;
		nfp_err(pf->cpp, "Unable to read symbol %s\n", name);
		return err;
	}

	return val;
}

u8 __iomem *
nfp_pf_map_rtsym(struct nfp_pf *pf, const char *name, const char *sym_fmt,
		 unsigned int min_size, struct nfp_cpp_area **area)
{
	char pf_symbol[256];

	snprintf(pf_symbol, sizeof(pf_symbol), sym_fmt,
		 nfp_cppcore_pcie_unit(pf->cpp));

	return nfp_rtsym_map(pf->rtbl, pf_symbol, name, min_size, area);
}

111 112 113 114 115 116 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
/* Callers should hold the devlink instance lock */
int nfp_mbox_cmd(struct nfp_pf *pf, u32 cmd, void *in_data, u64 in_length,
		 void *out_data, u64 out_length)
{
	unsigned long long addr;
	unsigned long err_at;
	u64 max_data_sz;
	u32 val = 0;
	u32 cpp_id;
	int n, err;

	if (!pf->mbox)
		return -EOPNOTSUPP;

	cpp_id = NFP_CPP_ISLAND_ID(pf->mbox->target, NFP_CPP_ACTION_RW, 0,
				   pf->mbox->domain);
	addr = pf->mbox->addr;
	max_data_sz = pf->mbox->size - NFP_MBOX_SYM_MIN_SIZE;

	/* Check if cmd field is clear */
	err = nfp_cpp_readl(pf->cpp, cpp_id, addr + NFP_MBOX_CMD, &val);
	if (err || val) {
		nfp_warn(pf->cpp, "failed to issue command (%u): %u, err: %d\n",
			 cmd, val, err);
		return err ?: -EBUSY;
	}

	in_length = min(in_length, max_data_sz);
	n = nfp_cpp_write(pf->cpp, cpp_id, addr + NFP_MBOX_DATA,
			  in_data, in_length);
	if (n != in_length)
		return -EIO;
	/* Write data_len and wipe reserved */
	err = nfp_cpp_writeq(pf->cpp, cpp_id, addr + NFP_MBOX_DATA_LEN,
			     in_length);
	if (err)
		return err;

	/* Read back for ordering */
	err = nfp_cpp_readl(pf->cpp, cpp_id, addr + NFP_MBOX_DATA_LEN, &val);
	if (err)
		return err;

	/* Write cmd and wipe return value */
	err = nfp_cpp_writeq(pf->cpp, cpp_id, addr + NFP_MBOX_CMD, cmd);
	if (err)
		return err;

	err_at = jiffies + 5 * HZ;
	while (true) {
		/* Wait for command to go to 0 (NFP_MBOX_NO_CMD) */
		err = nfp_cpp_readl(pf->cpp, cpp_id, addr + NFP_MBOX_CMD, &val);
		if (err)
			return err;
		if (!val)
			break;

		if (time_is_before_eq_jiffies(err_at))
			return -ETIMEDOUT;

		msleep(5);
	}

	/* Copy output if any (could be error info, do it before reading ret) */
	err = nfp_cpp_readl(pf->cpp, cpp_id, addr + NFP_MBOX_DATA_LEN, &val);
	if (err)
		return err;

	out_length = min_t(u32, val, min(out_length, max_data_sz));
	n = nfp_cpp_read(pf->cpp, cpp_id, addr + NFP_MBOX_DATA,
			 out_data, out_length);
	if (n != out_length)
		return -EIO;

	/* Check if there is an error */
	err = nfp_cpp_readl(pf->cpp, cpp_id, addr + NFP_MBOX_RET, &val);
	if (err)
		return err;
	if (val)
		return -val;

	return out_length;
}

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 229 230 231 232 233
static bool nfp_board_ready(struct nfp_pf *pf)
{
	const char *cp;
	long state;
	int err;

	cp = nfp_hwinfo_lookup(pf->hwinfo, "board.state");
	if (!cp)
		return false;

	err = kstrtol(cp, 0, &state);
	if (err < 0)
		return false;

	return state == 15;
}

static int nfp_pf_board_state_wait(struct nfp_pf *pf)
{
	const unsigned long wait_until = jiffies + 10 * HZ;

	while (!nfp_board_ready(pf)) {
		if (time_is_before_eq_jiffies(wait_until)) {
			nfp_err(pf->cpp, "NFP board initialization timeout\n");
			return -EINVAL;
		}

		nfp_info(pf->cpp, "waiting for board initialization\n");
		if (msleep_interruptible(500))
			return -ERESTARTSYS;

		/* Refresh cached information */
		kfree(pf->hwinfo);
		pf->hwinfo = nfp_hwinfo_read(pf->cpp);
	}

	return 0;
}

J
Jakub Kicinski 已提交
234
static int nfp_pcie_sriov_read_nfd_limit(struct nfp_pf *pf)
235 236 237
{
	int err;

238
	pf->limit_vfs = nfp_rtsym_read_le(pf->rtbl, "nfd_vf_cfg_max_vfs", &err);
239
	if (!err)
J
Jakub Kicinski 已提交
240
		return pci_sriov_set_totalvfs(pf->pdev, pf->limit_vfs);
241 242

	pf->limit_vfs = ~0;
J
Jakub Kicinski 已提交
243
	pci_sriov_set_totalvfs(pf->pdev, 0); /* 0 is unset */
244
	/* Allow any setting for backwards compatibility if symbol not found */
J
Jakub Kicinski 已提交
245 246 247 248 249
	if (err == -ENOENT)
		return 0;

	nfp_warn(pf->cpp, "Warning: VF limit read failed: %d\n", err);
	return err;
250 251
}

J
Jakub Kicinski 已提交
252 253 254 255 256 257
static int nfp_pcie_sriov_enable(struct pci_dev *pdev, int num_vfs)
{
#ifdef CONFIG_PCI_IOV
	struct nfp_pf *pf = pci_get_drvdata(pdev);
	int err;

258 259 260
	if (num_vfs > pf->limit_vfs) {
		nfp_info(pf->cpp, "Firmware limits number of VFs to %u\n",
			 pf->limit_vfs);
261
		return -EINVAL;
S
Simon Horman 已提交
262 263
	}

264
	err = pci_enable_sriov(pdev, num_vfs);
S
Simon Horman 已提交
265
	if (err) {
266
		dev_warn(&pdev->dev, "Failed to enable PCI SR-IOV: %d\n", err);
267
		return err;
268 269
	}

270 271
	mutex_lock(&pf->lock);

272
	err = nfp_app_sriov_enable(pf->app, num_vfs);
J
Jakub Kicinski 已提交
273
	if (err) {
274 275 276 277
		dev_warn(&pdev->dev,
			 "App specific PCI SR-IOV configuration failed: %d\n",
			 err);
		goto err_sriov_disable;
J
Jakub Kicinski 已提交
278 279 280 281 282 283
	}

	pf->num_vfs = num_vfs;

	dev_dbg(&pdev->dev, "Created %d VFs.\n", pf->num_vfs);

S
Simon Horman 已提交
284
	mutex_unlock(&pf->lock);
J
Jakub Kicinski 已提交
285
	return num_vfs;
S
Simon Horman 已提交
286

287
err_sriov_disable:
S
Simon Horman 已提交
288
	mutex_unlock(&pf->lock);
289
	pci_disable_sriov(pdev);
S
Simon Horman 已提交
290
	return err;
J
Jakub Kicinski 已提交
291 292 293 294
#endif
	return 0;
}

295
static int nfp_pcie_sriov_disable(struct pci_dev *pdev)
J
Jakub Kicinski 已提交
296 297 298 299
{
#ifdef CONFIG_PCI_IOV
	struct nfp_pf *pf = pci_get_drvdata(pdev);

300 301
	mutex_lock(&pf->lock);

J
Jakub Kicinski 已提交
302 303 304 305 306 307
	/* If the VFs are assigned we cannot shut down SR-IOV without
	 * causing issues, so just leave the hardware available but
	 * disabled
	 */
	if (pci_vfs_assigned(pdev)) {
		dev_warn(&pdev->dev, "Disabling while VFs assigned - VFs will not be deallocated\n");
308
		mutex_unlock(&pf->lock);
J
Jakub Kicinski 已提交
309 310 311
		return -EPERM;
	}

S
Simon Horman 已提交
312 313
	nfp_app_sriov_disable(pf->app);

J
Jakub Kicinski 已提交
314 315
	pf->num_vfs = 0;

316 317
	mutex_unlock(&pf->lock);

J
Jakub Kicinski 已提交
318 319
	pci_disable_sriov(pdev);
	dev_dbg(&pdev->dev, "Removed VFs.\n");
320 321
#endif
	return 0;
S
Simon Horman 已提交
322 323
}

J
Jakub Kicinski 已提交
324 325 326 327 328 329 330 331
static int nfp_pcie_sriov_configure(struct pci_dev *pdev, int num_vfs)
{
	if (num_vfs == 0)
		return nfp_pcie_sriov_disable(pdev);
	else
		return nfp_pcie_sriov_enable(pdev, num_vfs);
}

332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
static const struct firmware *
nfp_net_fw_request(struct pci_dev *pdev, struct nfp_pf *pf, const char *name)
{
	const struct firmware *fw = NULL;
	int err;

	err = request_firmware_direct(&fw, name, &pdev->dev);
	nfp_info(pf->cpp, "  %s: %s\n",
		 name, err ? "not found" : "found, loading...");
	if (err)
		return NULL;

	return fw;
}

J
Jakub Kicinski 已提交
347 348 349 350 351 352 353 354 355 356 357
/**
 * nfp_net_fw_find() - Find the correct firmware image for netdev mode
 * @pdev:	PCI Device structure
 * @pf:		NFP PF Device structure
 *
 * Return: firmware if found and requested successfully.
 */
static const struct firmware *
nfp_net_fw_find(struct pci_dev *pdev, struct nfp_pf *pf)
{
	struct nfp_eth_table_port *port;
358
	const struct firmware *fw;
J
Jakub Kicinski 已提交
359 360
	const char *fw_model;
	char fw_name[256];
361 362
	const u8 *serial;
	u16 interface;
363 364 365
	int spc, i, j;

	nfp_info(pf->cpp, "Looking for firmware file in order of priority:\n");
J
Jakub Kicinski 已提交
366

367 368 369 370 371
	/* First try to find a firmware image specific for this device */
	interface = nfp_cpp_interface(pf->cpp);
	nfp_cpp_serial(pf->cpp, &serial);
	sprintf(fw_name, "netronome/serial-%pMF-%02hhx-%02hhx.nffw",
		serial, interface >> 8, interface & 0xff);
372 373 374
	fw = nfp_net_fw_request(pdev, pf, fw_name);
	if (fw)
		return fw;
375 376 377

	/* Then try the PCI name */
	sprintf(fw_name, "netronome/pci-%s.nffw", pci_name(pdev));
378 379 380
	fw = nfp_net_fw_request(pdev, pf, fw_name);
	if (fw)
		return fw;
381 382

	/* Finally try the card type and media */
J
Jakub Kicinski 已提交
383 384 385 386 387
	if (!pf->eth_tbl) {
		dev_err(&pdev->dev, "Error: can't identify media config\n");
		return NULL;
	}

388
	fw_model = nfp_hwinfo_lookup(pf->hwinfo, "assembly.partno");
J
Jakub Kicinski 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
	if (!fw_model) {
		dev_err(&pdev->dev, "Error: can't read part number\n");
		return NULL;
	}

	spc = ARRAY_SIZE(fw_name);
	spc -= snprintf(fw_name, spc, "netronome/nic_%s", fw_model);

	for (i = 0; spc > 0 && i < pf->eth_tbl->count; i += j) {
		port = &pf->eth_tbl->ports[i];
		j = 1;
		while (i + j < pf->eth_tbl->count &&
		       port->speed == port[j].speed)
			j++;

		spc -= snprintf(&fw_name[ARRAY_SIZE(fw_name) - spc], spc,
				"_%dx%d", j, port->speed / 1000);
	}

	if (spc <= 0)
		return NULL;

	spc -= snprintf(&fw_name[ARRAY_SIZE(fw_name) - spc], spc, ".nffw");
	if (spc <= 0)
		return NULL;

415
	return nfp_net_fw_request(pdev, pf, fw_name);
J
Jakub Kicinski 已提交
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
}

/**
 * nfp_net_fw_load() - Load the firmware image
 * @pdev:       PCI Device structure
 * @pf:		NFP PF Device structure
 * @nsp:	NFP SP handle
 *
 * Return: -ERRNO, 0 for no firmware loaded, 1 for firmware loaded
 */
static int
nfp_fw_load(struct pci_dev *pdev, struct nfp_pf *pf, struct nfp_nsp *nsp)
{
	const struct firmware *fw;
	u16 interface;
	int err;

	interface = nfp_cpp_interface(pf->cpp);
	if (NFP_CPP_INTERFACE_UNIT_of(interface) != 0) {
		/* Only Unit 0 should reset or load firmware */
		dev_info(&pdev->dev, "Firmware will be loaded by partner\n");
		return 0;
	}

	fw = nfp_net_fw_find(pdev, pf);
	if (!fw)
		return 0;

	dev_info(&pdev->dev, "Soft-reset, loading FW image\n");
	err = nfp_nsp_device_soft_reset(nsp);
	if (err < 0) {
		dev_err(&pdev->dev, "Failed to soft reset the NFP: %d\n",
			err);
		goto exit_release_fw;
	}

	err = nfp_nsp_load_fw(nsp, fw);

	if (err < 0) {
		dev_err(&pdev->dev, "FW loading failed: %d\n", err);
		goto exit_release_fw;
	}

	dev_info(&pdev->dev, "Finished loading FW image\n");

exit_release_fw:
	release_firmware(fw);

	return err < 0 ? err : 1;
}

J
Jakub Kicinski 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
static void
nfp_nsp_init_ports(struct pci_dev *pdev, struct nfp_pf *pf,
		   struct nfp_nsp *nsp)
{
	bool needs_reinit = false;
	int i;

	pf->eth_tbl = __nfp_eth_read_ports(pf->cpp, nsp);
	if (!pf->eth_tbl)
		return;

	if (!nfp_nsp_has_mac_reinit(nsp))
		return;

	for (i = 0; i < pf->eth_tbl->count; i++)
		needs_reinit |= pf->eth_tbl->ports[i].override_changed;
	if (!needs_reinit)
		return;

	kfree(pf->eth_tbl);
	if (nfp_nsp_mac_reinit(nsp))
		dev_warn(&pdev->dev, "MAC reinit failed\n");

	pf->eth_tbl = __nfp_eth_read_ports(pf->cpp, nsp);
}

493 494 495 496 497
static int nfp_nsp_init(struct pci_dev *pdev, struct nfp_pf *pf)
{
	struct nfp_nsp *nsp;
	int err;

498 499 500 501
	err = nfp_resource_wait(pf->cpp, NFP_RESOURCE_NSP, 30);
	if (err)
		return err;

502 503 504 505 506 507 508 509 510 511 512
	nsp = nfp_nsp_open(pf->cpp);
	if (IS_ERR(nsp)) {
		err = PTR_ERR(nsp);
		dev_err(&pdev->dev, "Failed to access the NSP: %d\n", err);
		return err;
	}

	err = nfp_nsp_wait(nsp);
	if (err < 0)
		goto exit_close_nsp;

J
Jakub Kicinski 已提交
513
	nfp_nsp_init_ports(pdev, pf, nsp);
514

D
David Brunecz 已提交
515 516 517
	pf->nspi = __nfp_nsp_identify(nsp);
	if (pf->nspi)
		dev_info(&pdev->dev, "BSP: %s\n", pf->nspi->version);
518

519 520
	err = nfp_fw_load(pdev, pf, nsp);
	if (err < 0) {
521
		kfree(pf->nspi);
522 523 524 525 526 527 528 529 530 531 532 533 534 535
		kfree(pf->eth_tbl);
		dev_err(&pdev->dev, "Failed to load FW\n");
		goto exit_close_nsp;
	}

	pf->fw_loaded = !!err;
	err = 0;

exit_close_nsp:
	nfp_nsp_close(nsp);

	return err;
}

J
Jakub Kicinski 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
static void nfp_fw_unload(struct nfp_pf *pf)
{
	struct nfp_nsp *nsp;
	int err;

	nsp = nfp_nsp_open(pf->cpp);
	if (IS_ERR(nsp)) {
		nfp_err(pf->cpp, "Reset failed, can't open NSP\n");
		return;
	}

	err = nfp_nsp_device_soft_reset(nsp);
	if (err < 0)
		dev_warn(&pf->pdev->dev, "Couldn't unload firmware: %d\n", err);
	else
		dev_info(&pf->pdev->dev, "Firmware safely unloaded\n");

	nfp_nsp_close(nsp);
}

556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
static int nfp_pf_find_rtsyms(struct nfp_pf *pf)
{
	char pf_symbol[256];
	unsigned int pf_id;

	pf_id = nfp_cppcore_pcie_unit(pf->cpp);

	/* Optional per-PCI PF mailbox */
	snprintf(pf_symbol, sizeof(pf_symbol), NFP_MBOX_SYM_NAME, pf_id);
	pf->mbox = nfp_rtsym_lookup(pf->rtbl, pf_symbol);
	if (pf->mbox && pf->mbox->size < NFP_MBOX_SYM_MIN_SIZE) {
		nfp_err(pf->cpp, "PF mailbox symbol too small: %llu < %d\n",
			pf->mbox->size, NFP_MBOX_SYM_MIN_SIZE);
		return -EINVAL;
	}

	return 0;
}

J
Jakub Kicinski 已提交
575 576 577
static int nfp_pci_probe(struct pci_dev *pdev,
			 const struct pci_device_id *pci_id)
{
S
Simon Horman 已提交
578
	struct devlink *devlink;
J
Jakub Kicinski 已提交
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
	struct nfp_pf *pf;
	int err;

	err = pci_enable_device(pdev);
	if (err < 0)
		return err;

	pci_set_master(pdev);

	err = dma_set_mask_and_coherent(&pdev->dev,
					DMA_BIT_MASK(NFP_NET_MAX_DMA_BITS));
	if (err)
		goto err_pci_disable;

	err = pci_request_regions(pdev, nfp_driver_name);
	if (err < 0) {
		dev_err(&pdev->dev, "Unable to reserve pci resources.\n");
		goto err_pci_disable;
	}

S
Simon Horman 已提交
599 600
	devlink = devlink_alloc(&nfp_devlink_ops, sizeof(*pf));
	if (!devlink) {
J
Jakub Kicinski 已提交
601 602 603
		err = -ENOMEM;
		goto err_rel_regions;
	}
S
Simon Horman 已提交
604
	pf = devlink_priv(devlink);
J
Jakub Kicinski 已提交
605
	INIT_LIST_HEAD(&pf->vnics);
606
	INIT_LIST_HEAD(&pf->ports);
607
	mutex_init(&pf->lock);
J
Jakub Kicinski 已提交
608 609 610
	pci_set_drvdata(pdev, pf);
	pf->pdev = pdev;

611 612 613 614 615 616
	pf->wq = alloc_workqueue("nfp-%s", 0, 2, pci_name(pdev));
	if (!pf->wq) {
		err = -ENOMEM;
		goto err_pci_priv_unset;
	}

J
Jakub Kicinski 已提交
617 618 619 620 621 622 623 624
	pf->cpp = nfp_cpp_from_nfp6000_pcie(pdev);
	if (IS_ERR_OR_NULL(pf->cpp)) {
		err = PTR_ERR(pf->cpp);
		if (err >= 0)
			err = -ENOMEM;
		goto err_disable_msix;
	}

J
Jakub Kicinski 已提交
625 626 627 628
	err = nfp_resource_table_init(pf->cpp);
	if (err)
		goto err_cpp_free;

629 630
	pf->hwinfo = nfp_hwinfo_read(pf->cpp);

631
	dev_info(&pdev->dev, "Assembly: %s%s%s-%s CPLD: %s\n",
632 633 634 635 636
		 nfp_hwinfo_lookup(pf->hwinfo, "assembly.vendor"),
		 nfp_hwinfo_lookup(pf->hwinfo, "assembly.partno"),
		 nfp_hwinfo_lookup(pf->hwinfo, "assembly.serial"),
		 nfp_hwinfo_lookup(pf->hwinfo, "assembly.revision"),
		 nfp_hwinfo_lookup(pf->hwinfo, "cpld.version"));
637

638 639 640 641
	err = nfp_pf_board_state_wait(pf);
	if (err)
		goto err_hwinfo_free;

S
Simon Horman 已提交
642 643
	err = nfp_nsp_init(pdev, pf);
	if (err)
644
		goto err_hwinfo_free;
S
Simon Horman 已提交
645

J
Jakub Kicinski 已提交
646 647
	pf->mip = nfp_mip_open(pf->cpp);
	pf->rtbl = __nfp_rtsym_table_read(pf->cpp, pf->mip);
648

649 650 651 652
	err = nfp_pf_find_rtsyms(pf);
	if (err)
		goto err_fw_unload;

C
Carl Heymann 已提交
653 654 655
	pf->dump_flag = NFP_DUMP_NSP_DIAG;
	pf->dumpspec = nfp_net_dump_load_dumpspec(pf->cpp, pf->rtbl);

J
Jakub Kicinski 已提交
656 657 658
	err = nfp_pcie_sriov_read_nfd_limit(pf);
	if (err)
		goto err_fw_unload;
659

660 661 662 663 664
	pf->num_vfs = pci_num_vf(pdev);
	if (pf->num_vfs > pf->limit_vfs) {
		dev_err(&pdev->dev,
			"Error: %d VFs already enabled, but loaded FW can only support %d\n",
			pf->num_vfs, pf->limit_vfs);
665
		err = -EINVAL;
666 667 668
		goto err_fw_unload;
	}

J
Jakub Kicinski 已提交
669 670
	err = nfp_net_pci_probe(pf);
	if (err)
J
Jakub Kicinski 已提交
671
		goto err_sriov_unlimit;
J
Jakub Kicinski 已提交
672

D
David Brunecz 已提交
673 674 675 676 677 678
	err = nfp_hwmon_register(pf);
	if (err) {
		dev_err(&pdev->dev, "Failed to register hwmon info\n");
		goto err_net_remove;
	}

J
Jakub Kicinski 已提交
679 680
	return 0;

D
David Brunecz 已提交
681 682
err_net_remove:
	nfp_net_pci_remove(pf);
J
Jakub Kicinski 已提交
683 684
err_sriov_unlimit:
	pci_sriov_set_totalvfs(pf->pdev, 0);
J
Jakub Kicinski 已提交
685
err_fw_unload:
686
	kfree(pf->rtbl);
J
Jakub Kicinski 已提交
687
	nfp_mip_close(pf->mip);
J
Jakub Kicinski 已提交
688 689 690
	if (pf->fw_loaded)
		nfp_fw_unload(pf);
	kfree(pf->eth_tbl);
D
David Brunecz 已提交
691
	kfree(pf->nspi);
C
Carl Heymann 已提交
692
	vfree(pf->dumpspec);
693 694
err_hwinfo_free:
	kfree(pf->hwinfo);
J
Jakub Kicinski 已提交
695
err_cpp_free:
J
Jakub Kicinski 已提交
696 697
	nfp_cpp_free(pf->cpp);
err_disable_msix:
698 699
	destroy_workqueue(pf->wq);
err_pci_priv_unset:
J
Jakub Kicinski 已提交
700
	pci_set_drvdata(pdev, NULL);
701
	mutex_destroy(&pf->lock);
S
Simon Horman 已提交
702
	devlink_free(devlink);
J
Jakub Kicinski 已提交
703 704 705 706 707 708 709 710 711 712 713
err_rel_regions:
	pci_release_regions(pdev);
err_pci_disable:
	pci_disable_device(pdev);

	return err;
}

static void nfp_pci_remove(struct pci_dev *pdev)
{
	struct nfp_pf *pf = pci_get_drvdata(pdev);
S
Simon Horman 已提交
714

D
David Brunecz 已提交
715 716
	nfp_hwmon_unregister(pf);

J
Jakub Kicinski 已提交
717
	nfp_pcie_sriov_disable(pdev);
J
Jakub Kicinski 已提交
718
	pci_sriov_set_totalvfs(pf->pdev, 0);
J
Jakub Kicinski 已提交
719

720
	nfp_net_pci_remove(pf);
S
Simon Horman 已提交
721

C
Carl Heymann 已提交
722
	vfree(pf->dumpspec);
723
	kfree(pf->rtbl);
J
Jakub Kicinski 已提交
724
	nfp_mip_close(pf->mip);
J
Jakub Kicinski 已提交
725 726 727
	if (pf->fw_loaded)
		nfp_fw_unload(pf);

728
	destroy_workqueue(pf->wq);
J
Jakub Kicinski 已提交
729
	pci_set_drvdata(pdev, NULL);
730
	kfree(pf->hwinfo);
J
Jakub Kicinski 已提交
731 732 733
	nfp_cpp_free(pf->cpp);

	kfree(pf->eth_tbl);
D
David Brunecz 已提交
734
	kfree(pf->nspi);
735
	mutex_destroy(&pf->lock);
736
	devlink_free(priv_to_devlink(pf));
J
Jakub Kicinski 已提交
737 738 739 740 741 742 743 744 745 746 747 748
	pci_release_regions(pdev);
	pci_disable_device(pdev);
}

static struct pci_driver nfp_pci_driver = {
	.name			= nfp_driver_name,
	.id_table		= nfp_pci_device_ids,
	.probe			= nfp_pci_probe,
	.remove			= nfp_pci_remove,
	.sriov_configure	= nfp_pcie_sriov_configure,
};

749 750 751 752 753 754 755 756 757
static int __init nfp_main_init(void)
{
	int err;

	pr_info("%s: NFP PCIe Driver, Copyright (C) 2014-2017 Netronome Systems\n",
		nfp_driver_name);

	nfp_net_debugfs_create();

J
Jakub Kicinski 已提交
758 759 760 761
	err = pci_register_driver(&nfp_pci_driver);
	if (err < 0)
		goto err_destroy_debugfs;

762 763
	err = pci_register_driver(&nfp_netvf_pci_driver);
	if (err)
J
Jakub Kicinski 已提交
764
		goto err_unreg_pf;
765 766 767

	return err;

J
Jakub Kicinski 已提交
768 769
err_unreg_pf:
	pci_unregister_driver(&nfp_pci_driver);
770 771 772 773 774 775 776 777
err_destroy_debugfs:
	nfp_net_debugfs_destroy();
	return err;
}

static void __exit nfp_main_exit(void)
{
	pci_unregister_driver(&nfp_netvf_pci_driver);
J
Jakub Kicinski 已提交
778
	pci_unregister_driver(&nfp_pci_driver);
779 780 781 782 783 784
	nfp_net_debugfs_destroy();
}

module_init(nfp_main_init);
module_exit(nfp_main_exit);

J
Jakub Kicinski 已提交
785 786 787 788 789 790 791 792
MODULE_FIRMWARE("netronome/nic_AMDA0081-0001_1x40.nffw");
MODULE_FIRMWARE("netronome/nic_AMDA0081-0001_4x10.nffw");
MODULE_FIRMWARE("netronome/nic_AMDA0096-0001_2x10.nffw");
MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_2x40.nffw");
MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_4x10_1x40.nffw");
MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_8x10.nffw");
MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_2x10.nffw");
MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_2x25.nffw");
793
MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_1x10_1x25.nffw");
J
Jakub Kicinski 已提交
794

795 796 797
MODULE_AUTHOR("Netronome Systems <oss-drivers@netronome.com>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("The Netronome Flow Processor (NFP) driver.");
J
Jakub Kicinski 已提交
798
MODULE_VERSION(UTS_RELEASE);