1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 /* Copyright (C) 2015-2018 Netronome Systems, Inc. */ 3 4 /* 5 * nfp_main.c 6 * Authors: Jakub Kicinski <jakub.kicinski@netronome.com> 7 * Alejandro Lucero <alejandro.lucero@netronome.com> 8 * Jason McMullan <jason.mcmullan@netronome.com> 9 * Rolf Neugebauer <rolf.neugebauer@netronome.com> 10 */ 11 12 #include <linux/kernel.h> 13 #include <linux/module.h> 14 #include <linux/mutex.h> 15 #include <linux/pci.h> 16 #include <linux/firmware.h> 17 #include <linux/vmalloc.h> 18 #include <net/devlink.h> 19 20 #include "nfpcore/nfp.h" 21 #include "nfpcore/nfp_cpp.h" 22 #include "nfpcore/nfp_dev.h" 23 #include "nfpcore/nfp_nffw.h" 24 #include "nfpcore/nfp_nsp.h" 25 26 #include "nfpcore/nfp6000_pcie.h" 27 28 #include "nfp_abi.h" 29 #include "nfp_app.h" 30 #include "nfp_main.h" 31 #include "nfp_net.h" 32 33 static const char nfp_driver_name[] = "nfp"; 34 35 static const struct pci_device_id nfp_pci_device_ids[] = { 36 { PCI_VENDOR_ID_NETRONOME, PCI_DEVICE_ID_NFP3800, 37 PCI_VENDOR_ID_NETRONOME, PCI_ANY_ID, 38 PCI_ANY_ID, 0, NFP_DEV_NFP3800, 39 }, 40 { PCI_VENDOR_ID_NETRONOME, PCI_DEVICE_ID_NFP4000, 41 PCI_VENDOR_ID_NETRONOME, PCI_ANY_ID, 42 PCI_ANY_ID, 0, NFP_DEV_NFP6000, 43 }, 44 { PCI_VENDOR_ID_NETRONOME, PCI_DEVICE_ID_NFP5000, 45 PCI_VENDOR_ID_NETRONOME, PCI_ANY_ID, 46 PCI_ANY_ID, 0, NFP_DEV_NFP6000, 47 }, 48 { PCI_VENDOR_ID_NETRONOME, PCI_DEVICE_ID_NFP6000, 49 PCI_VENDOR_ID_NETRONOME, PCI_ANY_ID, 50 PCI_ANY_ID, 0, NFP_DEV_NFP6000, 51 }, 52 { PCI_VENDOR_ID_CORIGINE, PCI_DEVICE_ID_NFP3800, 53 PCI_VENDOR_ID_CORIGINE, PCI_ANY_ID, 54 PCI_ANY_ID, 0, NFP_DEV_NFP3800, 55 }, 56 { PCI_VENDOR_ID_CORIGINE, PCI_DEVICE_ID_NFP4000, 57 PCI_VENDOR_ID_CORIGINE, PCI_ANY_ID, 58 PCI_ANY_ID, 0, NFP_DEV_NFP6000, 59 }, 60 { PCI_VENDOR_ID_CORIGINE, PCI_DEVICE_ID_NFP5000, 61 PCI_VENDOR_ID_CORIGINE, PCI_ANY_ID, 62 PCI_ANY_ID, 0, NFP_DEV_NFP6000, 63 }, 64 { PCI_VENDOR_ID_CORIGINE, PCI_DEVICE_ID_NFP6000, 65 PCI_VENDOR_ID_CORIGINE, PCI_ANY_ID, 66 PCI_ANY_ID, 0, NFP_DEV_NFP6000, 67 }, 68 { 0, } /* Required last entry. */ 69 }; 70 MODULE_DEVICE_TABLE(pci, nfp_pci_device_ids); 71 72 int nfp_pf_rtsym_read_optional(struct nfp_pf *pf, const char *format, 73 unsigned int default_val) 74 { 75 char name[256]; 76 int err = 0; 77 u64 val; 78 79 snprintf(name, sizeof(name), format, nfp_cppcore_pcie_unit(pf->cpp)); 80 81 val = nfp_rtsym_read_le(pf->rtbl, name, &err); 82 if (err) { 83 if (err == -ENOENT) 84 return default_val; 85 nfp_err(pf->cpp, "Unable to read symbol %s\n", name); 86 return err; 87 } 88 89 return val; 90 } 91 92 u8 __iomem * 93 nfp_pf_map_rtsym(struct nfp_pf *pf, const char *name, const char *sym_fmt, 94 unsigned int min_size, struct nfp_cpp_area **area) 95 { 96 char pf_symbol[256]; 97 98 snprintf(pf_symbol, sizeof(pf_symbol), sym_fmt, 99 nfp_cppcore_pcie_unit(pf->cpp)); 100 101 return nfp_rtsym_map(pf->rtbl, pf_symbol, name, min_size, area); 102 } 103 104 /* Callers should hold the devlink instance lock */ 105 int nfp_mbox_cmd(struct nfp_pf *pf, u32 cmd, void *in_data, u64 in_length, 106 void *out_data, u64 out_length) 107 { 108 unsigned long err_at; 109 u64 max_data_sz; 110 u32 val = 0; 111 int n, err; 112 113 if (!pf->mbox) 114 return -EOPNOTSUPP; 115 116 max_data_sz = nfp_rtsym_size(pf->mbox) - NFP_MBOX_SYM_MIN_SIZE; 117 118 /* Check if cmd field is clear */ 119 err = nfp_rtsym_readl(pf->cpp, pf->mbox, NFP_MBOX_CMD, &val); 120 if (err || val) { 121 nfp_warn(pf->cpp, "failed to issue command (%u): %u, err: %d\n", 122 cmd, val, err); 123 return err ?: -EBUSY; 124 } 125 126 in_length = min(in_length, max_data_sz); 127 n = nfp_rtsym_write(pf->cpp, pf->mbox, NFP_MBOX_DATA, in_data, 128 in_length); 129 if (n != in_length) 130 return -EIO; 131 /* Write data_len and wipe reserved */ 132 err = nfp_rtsym_writeq(pf->cpp, pf->mbox, NFP_MBOX_DATA_LEN, in_length); 133 if (err) 134 return err; 135 136 /* Read back for ordering */ 137 err = nfp_rtsym_readl(pf->cpp, pf->mbox, NFP_MBOX_DATA_LEN, &val); 138 if (err) 139 return err; 140 141 /* Write cmd and wipe return value */ 142 err = nfp_rtsym_writeq(pf->cpp, pf->mbox, NFP_MBOX_CMD, cmd); 143 if (err) 144 return err; 145 146 err_at = jiffies + 5 * HZ; 147 while (true) { 148 /* Wait for command to go to 0 (NFP_MBOX_NO_CMD) */ 149 err = nfp_rtsym_readl(pf->cpp, pf->mbox, NFP_MBOX_CMD, &val); 150 if (err) 151 return err; 152 if (!val) 153 break; 154 155 if (time_is_before_eq_jiffies(err_at)) 156 return -ETIMEDOUT; 157 158 msleep(5); 159 } 160 161 /* Copy output if any (could be error info, do it before reading ret) */ 162 err = nfp_rtsym_readl(pf->cpp, pf->mbox, NFP_MBOX_DATA_LEN, &val); 163 if (err) 164 return err; 165 166 out_length = min_t(u32, val, min(out_length, max_data_sz)); 167 n = nfp_rtsym_read(pf->cpp, pf->mbox, NFP_MBOX_DATA, 168 out_data, out_length); 169 if (n != out_length) 170 return -EIO; 171 172 /* Check if there is an error */ 173 err = nfp_rtsym_readl(pf->cpp, pf->mbox, NFP_MBOX_RET, &val); 174 if (err) 175 return err; 176 if (val) 177 return -val; 178 179 return out_length; 180 } 181 182 static bool nfp_board_ready(struct nfp_pf *pf) 183 { 184 const char *cp; 185 long state; 186 int err; 187 188 cp = nfp_hwinfo_lookup(pf->hwinfo, "board.state"); 189 if (!cp) 190 return false; 191 192 err = kstrtol(cp, 0, &state); 193 if (err < 0) 194 return false; 195 196 return state == 15; 197 } 198 199 static int nfp_pf_board_state_wait(struct nfp_pf *pf) 200 { 201 const unsigned long wait_until = jiffies + 10 * HZ; 202 203 while (!nfp_board_ready(pf)) { 204 if (time_is_before_eq_jiffies(wait_until)) { 205 nfp_err(pf->cpp, "NFP board initialization timeout\n"); 206 return -EINVAL; 207 } 208 209 nfp_info(pf->cpp, "waiting for board initialization\n"); 210 if (msleep_interruptible(500)) 211 return -ERESTARTSYS; 212 213 /* Refresh cached information */ 214 kfree(pf->hwinfo); 215 pf->hwinfo = nfp_hwinfo_read(pf->cpp); 216 } 217 218 return 0; 219 } 220 221 static int nfp_pcie_sriov_read_nfd_limit(struct nfp_pf *pf) 222 { 223 int err; 224 225 pf->limit_vfs = nfp_rtsym_read_le(pf->rtbl, "nfd_vf_cfg_max_vfs", &err); 226 if (err) { 227 /* For backwards compatibility if symbol not found allow all */ 228 pf->limit_vfs = ~0; 229 if (err == -ENOENT) 230 return 0; 231 232 nfp_warn(pf->cpp, "Warning: VF limit read failed: %d\n", err); 233 return err; 234 } 235 236 err = pci_sriov_set_totalvfs(pf->pdev, pf->limit_vfs); 237 if (err) 238 nfp_warn(pf->cpp, "Failed to set VF count in sysfs: %d\n", err); 239 return 0; 240 } 241 242 static int nfp_pcie_sriov_enable(struct pci_dev *pdev, int num_vfs) 243 { 244 #ifdef CONFIG_PCI_IOV 245 struct nfp_pf *pf = pci_get_drvdata(pdev); 246 struct devlink *devlink; 247 int err; 248 249 if (num_vfs > pf->limit_vfs) { 250 nfp_info(pf->cpp, "Firmware limits number of VFs to %u\n", 251 pf->limit_vfs); 252 return -EINVAL; 253 } 254 255 err = pci_enable_sriov(pdev, num_vfs); 256 if (err) { 257 dev_warn(&pdev->dev, "Failed to enable PCI SR-IOV: %d\n", err); 258 return err; 259 } 260 261 devlink = priv_to_devlink(pf); 262 devl_lock(devlink); 263 264 err = nfp_app_sriov_enable(pf->app, num_vfs); 265 if (err) { 266 dev_warn(&pdev->dev, 267 "App specific PCI SR-IOV configuration failed: %d\n", 268 err); 269 goto err_sriov_disable; 270 } 271 272 pf->num_vfs = num_vfs; 273 274 dev_dbg(&pdev->dev, "Created %d VFs.\n", pf->num_vfs); 275 276 devl_unlock(devlink); 277 return num_vfs; 278 279 err_sriov_disable: 280 devl_unlock(devlink); 281 pci_disable_sriov(pdev); 282 return err; 283 #endif 284 return 0; 285 } 286 287 static int nfp_pcie_sriov_disable(struct pci_dev *pdev) 288 { 289 #ifdef CONFIG_PCI_IOV 290 struct nfp_pf *pf = pci_get_drvdata(pdev); 291 struct devlink *devlink; 292 293 devlink = priv_to_devlink(pf); 294 devl_lock(devlink); 295 296 /* If the VFs are assigned we cannot shut down SR-IOV without 297 * causing issues, so just leave the hardware available but 298 * disabled 299 */ 300 if (pci_vfs_assigned(pdev)) { 301 dev_warn(&pdev->dev, "Disabling while VFs assigned - VFs will not be deallocated\n"); 302 devl_unlock(devlink); 303 return -EPERM; 304 } 305 306 nfp_app_sriov_disable(pf->app); 307 308 pf->num_vfs = 0; 309 310 devl_unlock(devlink); 311 312 pci_disable_sriov(pdev); 313 dev_dbg(&pdev->dev, "Removed VFs.\n"); 314 #endif 315 return 0; 316 } 317 318 static int nfp_pcie_sriov_configure(struct pci_dev *pdev, int num_vfs) 319 { 320 if (!pci_get_drvdata(pdev)) 321 return -ENOENT; 322 323 if (num_vfs == 0) 324 return nfp_pcie_sriov_disable(pdev); 325 else 326 return nfp_pcie_sriov_enable(pdev, num_vfs); 327 } 328 329 int nfp_flash_update_common(struct nfp_pf *pf, const struct firmware *fw, 330 struct netlink_ext_ack *extack) 331 { 332 struct device *dev = &pf->pdev->dev; 333 struct nfp_nsp *nsp; 334 int err; 335 336 nsp = nfp_nsp_open(pf->cpp); 337 if (IS_ERR(nsp)) { 338 err = PTR_ERR(nsp); 339 if (extack) 340 NL_SET_ERR_MSG_MOD(extack, "can't access NSP"); 341 else 342 dev_err(dev, "Failed to access the NSP: %d\n", err); 343 return err; 344 } 345 346 err = nfp_nsp_write_flash(nsp, fw); 347 if (err < 0) 348 goto exit_close_nsp; 349 dev_info(dev, "Finished writing flash image\n"); 350 err = 0; 351 352 exit_close_nsp: 353 nfp_nsp_close(nsp); 354 return err; 355 } 356 357 static const struct firmware * 358 nfp_net_fw_request(struct pci_dev *pdev, struct nfp_pf *pf, const char *name) 359 { 360 const struct firmware *fw = NULL; 361 int err; 362 363 err = request_firmware_direct(&fw, name, &pdev->dev); 364 nfp_info(pf->cpp, " %s: %s\n", 365 name, err ? "not found" : "found"); 366 if (err) 367 return NULL; 368 369 return fw; 370 } 371 372 /** 373 * nfp_net_fw_find() - Find the correct firmware image for netdev mode 374 * @pdev: PCI Device structure 375 * @pf: NFP PF Device structure 376 * 377 * Return: firmware if found and requested successfully. 378 */ 379 static const struct firmware * 380 nfp_net_fw_find(struct pci_dev *pdev, struct nfp_pf *pf) 381 { 382 struct nfp_eth_table_port *port; 383 const struct firmware *fw; 384 const char *fw_model; 385 char fw_name[256]; 386 const u8 *serial; 387 u16 interface; 388 int spc, i, j; 389 390 nfp_info(pf->cpp, "Looking for firmware file in order of priority:\n"); 391 392 /* First try to find a firmware image specific for this device */ 393 interface = nfp_cpp_interface(pf->cpp); 394 nfp_cpp_serial(pf->cpp, &serial); 395 sprintf(fw_name, "netronome/serial-%pMF-%02x-%02x.nffw", 396 serial, interface >> 8, interface & 0xff); 397 fw = nfp_net_fw_request(pdev, pf, fw_name); 398 if (fw) 399 return fw; 400 401 /* Then try the PCI name */ 402 sprintf(fw_name, "netronome/pci-%s.nffw", pci_name(pdev)); 403 fw = nfp_net_fw_request(pdev, pf, fw_name); 404 if (fw) 405 return fw; 406 407 /* Finally try the card type and media */ 408 if (!pf->eth_tbl) { 409 dev_err(&pdev->dev, "Error: can't identify media config\n"); 410 return NULL; 411 } 412 413 fw_model = nfp_hwinfo_lookup(pf->hwinfo, "nffw.partno"); 414 if (!fw_model) 415 fw_model = nfp_hwinfo_lookup(pf->hwinfo, "assembly.partno"); 416 if (!fw_model) { 417 dev_err(&pdev->dev, "Error: can't read part number\n"); 418 return NULL; 419 } 420 421 spc = ARRAY_SIZE(fw_name); 422 spc -= snprintf(fw_name, spc, "netronome/nic_%s", fw_model); 423 424 for (i = 0; spc > 0 && i < pf->eth_tbl->count; i += j) { 425 port = &pf->eth_tbl->ports[i]; 426 j = 1; 427 while (i + j < pf->eth_tbl->count && 428 port->speed == port[j].speed) 429 j++; 430 431 spc -= snprintf(&fw_name[ARRAY_SIZE(fw_name) - spc], spc, 432 "_%dx%d", j, port->speed / 1000); 433 } 434 435 if (spc <= 0) 436 return NULL; 437 438 spc -= snprintf(&fw_name[ARRAY_SIZE(fw_name) - spc], spc, ".nffw"); 439 if (spc <= 0) 440 return NULL; 441 442 return nfp_net_fw_request(pdev, pf, fw_name); 443 } 444 445 static int 446 nfp_get_fw_policy_value(struct pci_dev *pdev, struct nfp_nsp *nsp, 447 const char *key, const char *default_val, int max_val, 448 int *value) 449 { 450 char hwinfo[64]; 451 long hi_val; 452 int err; 453 454 snprintf(hwinfo, sizeof(hwinfo), key); 455 err = nfp_nsp_hwinfo_lookup_optional(nsp, hwinfo, sizeof(hwinfo), 456 default_val); 457 if (err) 458 return err; 459 460 err = kstrtol(hwinfo, 0, &hi_val); 461 if (err || hi_val < 0 || hi_val > max_val) { 462 dev_warn(&pdev->dev, 463 "Invalid value '%s' from '%s', ignoring\n", 464 hwinfo, key); 465 err = kstrtol(default_val, 0, &hi_val); 466 } 467 468 *value = hi_val; 469 return err; 470 } 471 472 /** 473 * nfp_fw_load() - Load the firmware image 474 * @pdev: PCI Device structure 475 * @pf: NFP PF Device structure 476 * @nsp: NFP SP handle 477 * 478 * Return: -ERRNO, 0 for no firmware loaded, 1 for firmware loaded 479 */ 480 static int 481 nfp_fw_load(struct pci_dev *pdev, struct nfp_pf *pf, struct nfp_nsp *nsp) 482 { 483 bool do_reset, fw_loaded = false; 484 const struct firmware *fw = NULL; 485 int err, reset, policy, ifcs = 0; 486 char *token, *ptr; 487 char hwinfo[64]; 488 u16 interface; 489 490 snprintf(hwinfo, sizeof(hwinfo), "abi_drv_load_ifc"); 491 err = nfp_nsp_hwinfo_lookup_optional(nsp, hwinfo, sizeof(hwinfo), 492 NFP_NSP_DRV_LOAD_IFC_DEFAULT); 493 if (err) 494 return err; 495 496 interface = nfp_cpp_interface(pf->cpp); 497 ptr = hwinfo; 498 while ((token = strsep(&ptr, ","))) { 499 unsigned long interface_hi; 500 501 err = kstrtoul(token, 0, &interface_hi); 502 if (err) { 503 dev_err(&pdev->dev, 504 "Failed to parse interface '%s': %d\n", 505 token, err); 506 return err; 507 } 508 509 ifcs++; 510 if (interface == interface_hi) 511 break; 512 } 513 514 if (!token) { 515 dev_info(&pdev->dev, "Firmware will be loaded by partner\n"); 516 return 0; 517 } 518 519 err = nfp_get_fw_policy_value(pdev, nsp, "abi_drv_reset", 520 NFP_NSP_DRV_RESET_DEFAULT, 521 NFP_NSP_DRV_RESET_NEVER, &reset); 522 if (err) 523 return err; 524 525 err = nfp_get_fw_policy_value(pdev, nsp, "app_fw_from_flash", 526 NFP_NSP_APP_FW_LOAD_DEFAULT, 527 NFP_NSP_APP_FW_LOAD_PREF, &policy); 528 if (err) 529 return err; 530 531 fw = nfp_net_fw_find(pdev, pf); 532 do_reset = reset == NFP_NSP_DRV_RESET_ALWAYS || 533 (fw && reset == NFP_NSP_DRV_RESET_DISK); 534 535 if (do_reset) { 536 dev_info(&pdev->dev, "Soft-resetting the NFP\n"); 537 err = nfp_nsp_device_soft_reset(nsp); 538 if (err < 0) { 539 dev_err(&pdev->dev, 540 "Failed to soft reset the NFP: %d\n", err); 541 goto exit_release_fw; 542 } 543 } 544 545 if (fw && policy != NFP_NSP_APP_FW_LOAD_FLASH) { 546 if (nfp_nsp_has_fw_loaded(nsp) && nfp_nsp_fw_loaded(nsp)) 547 goto exit_release_fw; 548 549 err = nfp_nsp_load_fw(nsp, fw); 550 if (err < 0) { 551 dev_err(&pdev->dev, "FW loading failed: %d\n", 552 err); 553 goto exit_release_fw; 554 } 555 dev_info(&pdev->dev, "Finished loading FW image\n"); 556 fw_loaded = true; 557 } else if (policy != NFP_NSP_APP_FW_LOAD_DISK && 558 nfp_nsp_has_stored_fw_load(nsp)) { 559 560 /* Don't propagate this error to stick with legacy driver 561 * behavior, failure will be detected later during init. 562 */ 563 if (!nfp_nsp_load_stored_fw(nsp)) 564 dev_info(&pdev->dev, "Finished loading stored FW image\n"); 565 566 /* Don't flag the fw_loaded in this case since other devices 567 * may reuse the firmware when configured this way 568 */ 569 } else { 570 dev_warn(&pdev->dev, "Didn't load firmware, please update flash or reconfigure card\n"); 571 } 572 573 exit_release_fw: 574 release_firmware(fw); 575 576 /* We don't want to unload firmware when other devices may still be 577 * dependent on it, which could be the case if there are multiple 578 * devices that could load firmware. 579 */ 580 if (fw_loaded && ifcs == 1) 581 pf->unload_fw_on_remove = true; 582 583 return err < 0 ? err : fw_loaded; 584 } 585 586 static void 587 nfp_nsp_init_ports(struct pci_dev *pdev, struct nfp_pf *pf, 588 struct nfp_nsp *nsp) 589 { 590 bool needs_reinit = false; 591 int i; 592 593 pf->eth_tbl = __nfp_eth_read_ports(pf->cpp, nsp); 594 if (!pf->eth_tbl) 595 return; 596 597 if (!nfp_nsp_has_mac_reinit(nsp)) 598 return; 599 600 for (i = 0; i < pf->eth_tbl->count; i++) 601 needs_reinit |= pf->eth_tbl->ports[i].override_changed; 602 if (!needs_reinit) 603 return; 604 605 kfree(pf->eth_tbl); 606 if (nfp_nsp_mac_reinit(nsp)) 607 dev_warn(&pdev->dev, "MAC reinit failed\n"); 608 609 pf->eth_tbl = __nfp_eth_read_ports(pf->cpp, nsp); 610 } 611 612 static int nfp_nsp_init(struct pci_dev *pdev, struct nfp_pf *pf) 613 { 614 struct nfp_nsp *nsp; 615 int err; 616 617 err = nfp_resource_wait(pf->cpp, NFP_RESOURCE_NSP, 30); 618 if (err) 619 return err; 620 621 nsp = nfp_nsp_open(pf->cpp); 622 if (IS_ERR(nsp)) { 623 err = PTR_ERR(nsp); 624 dev_err(&pdev->dev, "Failed to access the NSP: %d\n", err); 625 return err; 626 } 627 628 err = nfp_nsp_wait(nsp); 629 if (err < 0) 630 goto exit_close_nsp; 631 632 nfp_nsp_init_ports(pdev, pf, nsp); 633 634 pf->nspi = __nfp_nsp_identify(nsp); 635 if (pf->nspi) 636 dev_info(&pdev->dev, "BSP: %s\n", pf->nspi->version); 637 638 err = nfp_fw_load(pdev, pf, nsp); 639 if (err < 0) { 640 kfree(pf->nspi); 641 kfree(pf->eth_tbl); 642 dev_err(&pdev->dev, "Failed to load FW\n"); 643 goto exit_close_nsp; 644 } 645 646 pf->fw_loaded = !!err; 647 err = 0; 648 649 exit_close_nsp: 650 nfp_nsp_close(nsp); 651 652 return err; 653 } 654 655 static void nfp_fw_unload(struct nfp_pf *pf) 656 { 657 struct nfp_nsp *nsp; 658 int err; 659 660 nsp = nfp_nsp_open(pf->cpp); 661 if (IS_ERR(nsp)) { 662 nfp_err(pf->cpp, "Reset failed, can't open NSP\n"); 663 return; 664 } 665 666 err = nfp_nsp_device_soft_reset(nsp); 667 if (err < 0) 668 dev_warn(&pf->pdev->dev, "Couldn't unload firmware: %d\n", err); 669 else 670 dev_info(&pf->pdev->dev, "Firmware safely unloaded\n"); 671 672 nfp_nsp_close(nsp); 673 } 674 675 static int nfp_pf_find_rtsyms(struct nfp_pf *pf) 676 { 677 char pf_symbol[256]; 678 unsigned int pf_id; 679 680 pf_id = nfp_cppcore_pcie_unit(pf->cpp); 681 682 /* Optional per-PCI PF mailbox */ 683 snprintf(pf_symbol, sizeof(pf_symbol), NFP_MBOX_SYM_NAME, pf_id); 684 pf->mbox = nfp_rtsym_lookup(pf->rtbl, pf_symbol); 685 if (pf->mbox && nfp_rtsym_size(pf->mbox) < NFP_MBOX_SYM_MIN_SIZE) { 686 nfp_err(pf->cpp, "PF mailbox symbol too small: %llu < %d\n", 687 nfp_rtsym_size(pf->mbox), NFP_MBOX_SYM_MIN_SIZE); 688 return -EINVAL; 689 } 690 691 return 0; 692 } 693 694 static int nfp_pci_probe(struct pci_dev *pdev, 695 const struct pci_device_id *pci_id) 696 { 697 const struct nfp_dev_info *dev_info; 698 struct devlink *devlink; 699 struct nfp_pf *pf; 700 int err; 701 702 if ((pdev->vendor == PCI_VENDOR_ID_NETRONOME || 703 pdev->vendor == PCI_VENDOR_ID_CORIGINE) && 704 (pdev->device == PCI_DEVICE_ID_NFP3800_VF || 705 pdev->device == PCI_DEVICE_ID_NFP6000_VF)) 706 dev_warn(&pdev->dev, "Binding NFP VF device to the NFP PF driver, the VF driver is called 'nfp_netvf'\n"); 707 708 dev_info = &nfp_dev_info[pci_id->driver_data]; 709 710 err = pci_enable_device(pdev); 711 if (err < 0) 712 return err; 713 714 pci_set_master(pdev); 715 716 err = dma_set_mask_and_coherent(&pdev->dev, dev_info->dma_mask); 717 if (err) 718 goto err_pci_disable; 719 720 err = pci_request_regions(pdev, nfp_driver_name); 721 if (err < 0) { 722 dev_err(&pdev->dev, "Unable to reserve pci resources.\n"); 723 goto err_pci_disable; 724 } 725 726 devlink = devlink_alloc(&nfp_devlink_ops, sizeof(*pf), &pdev->dev); 727 if (!devlink) { 728 err = -ENOMEM; 729 goto err_rel_regions; 730 } 731 pf = devlink_priv(devlink); 732 INIT_LIST_HEAD(&pf->vnics); 733 INIT_LIST_HEAD(&pf->ports); 734 pci_set_drvdata(pdev, pf); 735 pf->pdev = pdev; 736 pf->dev_info = dev_info; 737 738 pf->wq = alloc_workqueue("nfp-%s", 0, 2, pci_name(pdev)); 739 if (!pf->wq) { 740 err = -ENOMEM; 741 goto err_pci_priv_unset; 742 } 743 744 pf->cpp = nfp_cpp_from_nfp6000_pcie(pdev, dev_info); 745 if (IS_ERR(pf->cpp)) { 746 err = PTR_ERR(pf->cpp); 747 goto err_disable_msix; 748 } 749 750 err = nfp_resource_table_init(pf->cpp); 751 if (err) 752 goto err_cpp_free; 753 754 pf->hwinfo = nfp_hwinfo_read(pf->cpp); 755 756 dev_info(&pdev->dev, "Assembly: %s%s%s-%s CPLD: %s\n", 757 nfp_hwinfo_lookup(pf->hwinfo, "assembly.vendor"), 758 nfp_hwinfo_lookup(pf->hwinfo, "assembly.partno"), 759 nfp_hwinfo_lookup(pf->hwinfo, "assembly.serial"), 760 nfp_hwinfo_lookup(pf->hwinfo, "assembly.revision"), 761 nfp_hwinfo_lookup(pf->hwinfo, "cpld.version")); 762 763 err = nfp_pf_board_state_wait(pf); 764 if (err) 765 goto err_hwinfo_free; 766 767 err = nfp_nsp_init(pdev, pf); 768 if (err) 769 goto err_hwinfo_free; 770 771 pf->mip = nfp_mip_open(pf->cpp); 772 pf->rtbl = __nfp_rtsym_table_read(pf->cpp, pf->mip); 773 774 err = nfp_pf_find_rtsyms(pf); 775 if (err) 776 goto err_fw_unload; 777 778 pf->dump_flag = NFP_DUMP_NSP_DIAG; 779 pf->dumpspec = nfp_net_dump_load_dumpspec(pf->cpp, pf->rtbl); 780 781 err = nfp_pcie_sriov_read_nfd_limit(pf); 782 if (err) 783 goto err_fw_unload; 784 785 pf->num_vfs = pci_num_vf(pdev); 786 if (pf->num_vfs > pf->limit_vfs) { 787 dev_err(&pdev->dev, 788 "Error: %d VFs already enabled, but loaded FW can only support %d\n", 789 pf->num_vfs, pf->limit_vfs); 790 err = -EINVAL; 791 goto err_fw_unload; 792 } 793 794 err = nfp_net_pci_probe(pf); 795 if (err) 796 goto err_fw_unload; 797 798 err = nfp_hwmon_register(pf); 799 if (err) { 800 dev_err(&pdev->dev, "Failed to register hwmon info\n"); 801 goto err_net_remove; 802 } 803 804 return 0; 805 806 err_net_remove: 807 nfp_net_pci_remove(pf); 808 err_fw_unload: 809 kfree(pf->rtbl); 810 nfp_mip_close(pf->mip); 811 if (pf->unload_fw_on_remove) 812 nfp_fw_unload(pf); 813 kfree(pf->eth_tbl); 814 kfree(pf->nspi); 815 vfree(pf->dumpspec); 816 err_hwinfo_free: 817 kfree(pf->hwinfo); 818 err_cpp_free: 819 nfp_cpp_free(pf->cpp); 820 err_disable_msix: 821 destroy_workqueue(pf->wq); 822 err_pci_priv_unset: 823 pci_set_drvdata(pdev, NULL); 824 devlink_free(devlink); 825 err_rel_regions: 826 pci_release_regions(pdev); 827 err_pci_disable: 828 pci_disable_device(pdev); 829 830 return err; 831 } 832 833 static void __nfp_pci_shutdown(struct pci_dev *pdev, bool unload_fw) 834 { 835 struct nfp_pf *pf; 836 837 pf = pci_get_drvdata(pdev); 838 if (!pf) 839 return; 840 841 nfp_hwmon_unregister(pf); 842 843 nfp_pcie_sriov_disable(pdev); 844 845 nfp_net_pci_remove(pf); 846 847 vfree(pf->dumpspec); 848 kfree(pf->rtbl); 849 nfp_mip_close(pf->mip); 850 if (unload_fw && pf->unload_fw_on_remove) 851 nfp_fw_unload(pf); 852 853 destroy_workqueue(pf->wq); 854 pci_set_drvdata(pdev, NULL); 855 kfree(pf->hwinfo); 856 nfp_cpp_free(pf->cpp); 857 858 kfree(pf->eth_tbl); 859 kfree(pf->nspi); 860 devlink_free(priv_to_devlink(pf)); 861 pci_release_regions(pdev); 862 pci_disable_device(pdev); 863 } 864 865 static void nfp_pci_remove(struct pci_dev *pdev) 866 { 867 __nfp_pci_shutdown(pdev, true); 868 } 869 870 static void nfp_pci_shutdown(struct pci_dev *pdev) 871 { 872 __nfp_pci_shutdown(pdev, false); 873 } 874 875 static struct pci_driver nfp_pci_driver = { 876 .name = nfp_driver_name, 877 .id_table = nfp_pci_device_ids, 878 .probe = nfp_pci_probe, 879 .remove = nfp_pci_remove, 880 .shutdown = nfp_pci_shutdown, 881 .sriov_configure = nfp_pcie_sriov_configure, 882 }; 883 884 static int __init nfp_main_init(void) 885 { 886 int err; 887 888 pr_info("%s: NFP PCIe Driver, Copyright (C) 2014-2020 Netronome Systems\n", 889 nfp_driver_name); 890 pr_info("%s: NFP PCIe Driver, Copyright (C) 2021-2022 Corigine Inc.\n", 891 nfp_driver_name); 892 893 nfp_net_debugfs_create(); 894 895 err = pci_register_driver(&nfp_pci_driver); 896 if (err < 0) 897 goto err_destroy_debugfs; 898 899 err = pci_register_driver(&nfp_netvf_pci_driver); 900 if (err) 901 goto err_unreg_pf; 902 903 return err; 904 905 err_unreg_pf: 906 pci_unregister_driver(&nfp_pci_driver); 907 err_destroy_debugfs: 908 nfp_net_debugfs_destroy(); 909 return err; 910 } 911 912 static void __exit nfp_main_exit(void) 913 { 914 pci_unregister_driver(&nfp_netvf_pci_driver); 915 pci_unregister_driver(&nfp_pci_driver); 916 nfp_net_debugfs_destroy(); 917 } 918 919 module_init(nfp_main_init); 920 module_exit(nfp_main_exit); 921 922 MODULE_FIRMWARE("netronome/nic_AMDA0058-0011_2x40.nffw"); 923 MODULE_FIRMWARE("netronome/nic_AMDA0058-0012_2x40.nffw"); 924 MODULE_FIRMWARE("netronome/nic_AMDA0081-0001_1x40.nffw"); 925 MODULE_FIRMWARE("netronome/nic_AMDA0081-0001_4x10.nffw"); 926 MODULE_FIRMWARE("netronome/nic_AMDA0096-0001_2x10.nffw"); 927 MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_2x40.nffw"); 928 MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_4x10_1x40.nffw"); 929 MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_8x10.nffw"); 930 MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_2x10.nffw"); 931 MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_2x25.nffw"); 932 MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_1x10_1x25.nffw"); 933 934 MODULE_AUTHOR("Corigine, Inc. <oss-drivers@corigine.com>"); 935 MODULE_LICENSE("GPL"); 936 MODULE_DESCRIPTION("The Network Flow Processor (NFP) driver."); 937