1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 /* Copyright (C) 2015-2018 Netronome Systems, Inc. */
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>
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>
20 #include "nfpcore/nfp.h"
21 #include "nfpcore/nfp_cpp.h"
22 #include "nfpcore/nfp_nffw.h"
23 #include "nfpcore/nfp_nsp.h"
25 #include "nfpcore/nfp6000_pcie.h"
32 static const char nfp_driver_name
[] = "nfp";
34 static const struct pci_device_id nfp_pci_device_ids
[] = {
35 { PCI_VENDOR_ID_NETRONOME
, PCI_DEVICE_ID_NETRONOME_NFP6000
,
36 PCI_VENDOR_ID_NETRONOME
, PCI_ANY_ID
,
39 { PCI_VENDOR_ID_NETRONOME
, PCI_DEVICE_ID_NETRONOME_NFP5000
,
40 PCI_VENDOR_ID_NETRONOME
, PCI_ANY_ID
,
43 { PCI_VENDOR_ID_NETRONOME
, PCI_DEVICE_ID_NETRONOME_NFP4000
,
44 PCI_VENDOR_ID_NETRONOME
, PCI_ANY_ID
,
47 { 0, } /* Required last entry. */
49 MODULE_DEVICE_TABLE(pci
, nfp_pci_device_ids
);
51 int nfp_pf_rtsym_read_optional(struct nfp_pf
*pf
, const char *format
,
52 unsigned int default_val
)
58 snprintf(name
, sizeof(name
), format
, nfp_cppcore_pcie_unit(pf
->cpp
));
60 val
= nfp_rtsym_read_le(pf
->rtbl
, name
, &err
);
64 nfp_err(pf
->cpp
, "Unable to read symbol %s\n", name
);
72 nfp_pf_map_rtsym(struct nfp_pf
*pf
, const char *name
, const char *sym_fmt
,
73 unsigned int min_size
, struct nfp_cpp_area
**area
)
77 snprintf(pf_symbol
, sizeof(pf_symbol
), sym_fmt
,
78 nfp_cppcore_pcie_unit(pf
->cpp
));
80 return nfp_rtsym_map(pf
->rtbl
, pf_symbol
, name
, min_size
, area
);
83 /* Callers should hold the devlink instance lock */
84 int nfp_mbox_cmd(struct nfp_pf
*pf
, u32 cmd
, void *in_data
, u64 in_length
,
85 void *out_data
, u64 out_length
)
95 max_data_sz
= nfp_rtsym_size(pf
->mbox
) - NFP_MBOX_SYM_MIN_SIZE
;
97 /* Check if cmd field is clear */
98 err
= nfp_rtsym_readl(pf
->cpp
, pf
->mbox
, NFP_MBOX_CMD
, &val
);
100 nfp_warn(pf
->cpp
, "failed to issue command (%u): %u, err: %d\n",
102 return err
?: -EBUSY
;
105 in_length
= min(in_length
, max_data_sz
);
106 n
= nfp_rtsym_write(pf
->cpp
, pf
->mbox
, NFP_MBOX_DATA
, in_data
,
110 /* Write data_len and wipe reserved */
111 err
= nfp_rtsym_writeq(pf
->cpp
, pf
->mbox
, NFP_MBOX_DATA_LEN
, in_length
);
115 /* Read back for ordering */
116 err
= nfp_rtsym_readl(pf
->cpp
, pf
->mbox
, NFP_MBOX_DATA_LEN
, &val
);
120 /* Write cmd and wipe return value */
121 err
= nfp_rtsym_writeq(pf
->cpp
, pf
->mbox
, NFP_MBOX_CMD
, cmd
);
125 err_at
= jiffies
+ 5 * HZ
;
127 /* Wait for command to go to 0 (NFP_MBOX_NO_CMD) */
128 err
= nfp_rtsym_readl(pf
->cpp
, pf
->mbox
, NFP_MBOX_CMD
, &val
);
134 if (time_is_before_eq_jiffies(err_at
))
140 /* Copy output if any (could be error info, do it before reading ret) */
141 err
= nfp_rtsym_readl(pf
->cpp
, pf
->mbox
, NFP_MBOX_DATA_LEN
, &val
);
145 out_length
= min_t(u32
, val
, min(out_length
, max_data_sz
));
146 n
= nfp_rtsym_read(pf
->cpp
, pf
->mbox
, NFP_MBOX_DATA
,
147 out_data
, out_length
);
151 /* Check if there is an error */
152 err
= nfp_rtsym_readl(pf
->cpp
, pf
->mbox
, NFP_MBOX_RET
, &val
);
161 static bool nfp_board_ready(struct nfp_pf
*pf
)
167 cp
= nfp_hwinfo_lookup(pf
->hwinfo
, "board.state");
171 err
= kstrtol(cp
, 0, &state
);
178 static int nfp_pf_board_state_wait(struct nfp_pf
*pf
)
180 const unsigned long wait_until
= jiffies
+ 10 * HZ
;
182 while (!nfp_board_ready(pf
)) {
183 if (time_is_before_eq_jiffies(wait_until
)) {
184 nfp_err(pf
->cpp
, "NFP board initialization timeout\n");
188 nfp_info(pf
->cpp
, "waiting for board initialization\n");
189 if (msleep_interruptible(500))
192 /* Refresh cached information */
194 pf
->hwinfo
= nfp_hwinfo_read(pf
->cpp
);
200 static int nfp_pcie_sriov_read_nfd_limit(struct nfp_pf
*pf
)
204 pf
->limit_vfs
= nfp_rtsym_read_le(pf
->rtbl
, "nfd_vf_cfg_max_vfs", &err
);
206 /* For backwards compatibility if symbol not found allow all */
211 nfp_warn(pf
->cpp
, "Warning: VF limit read failed: %d\n", err
);
215 err
= pci_sriov_set_totalvfs(pf
->pdev
, pf
->limit_vfs
);
217 nfp_warn(pf
->cpp
, "Failed to set VF count in sysfs: %d\n", err
);
221 static int nfp_pcie_sriov_enable(struct pci_dev
*pdev
, int num_vfs
)
223 #ifdef CONFIG_PCI_IOV
224 struct nfp_pf
*pf
= pci_get_drvdata(pdev
);
227 if (num_vfs
> pf
->limit_vfs
) {
228 nfp_info(pf
->cpp
, "Firmware limits number of VFs to %u\n",
233 err
= pci_enable_sriov(pdev
, num_vfs
);
235 dev_warn(&pdev
->dev
, "Failed to enable PCI SR-IOV: %d\n", err
);
239 mutex_lock(&pf
->lock
);
241 err
= nfp_app_sriov_enable(pf
->app
, num_vfs
);
244 "App specific PCI SR-IOV configuration failed: %d\n",
246 goto err_sriov_disable
;
249 pf
->num_vfs
= num_vfs
;
251 dev_dbg(&pdev
->dev
, "Created %d VFs.\n", pf
->num_vfs
);
253 mutex_unlock(&pf
->lock
);
257 mutex_unlock(&pf
->lock
);
258 pci_disable_sriov(pdev
);
264 static int nfp_pcie_sriov_disable(struct pci_dev
*pdev
)
266 #ifdef CONFIG_PCI_IOV
267 struct nfp_pf
*pf
= pci_get_drvdata(pdev
);
269 mutex_lock(&pf
->lock
);
271 /* If the VFs are assigned we cannot shut down SR-IOV without
272 * causing issues, so just leave the hardware available but
275 if (pci_vfs_assigned(pdev
)) {
276 dev_warn(&pdev
->dev
, "Disabling while VFs assigned - VFs will not be deallocated\n");
277 mutex_unlock(&pf
->lock
);
281 nfp_app_sriov_disable(pf
->app
);
285 mutex_unlock(&pf
->lock
);
287 pci_disable_sriov(pdev
);
288 dev_dbg(&pdev
->dev
, "Removed VFs.\n");
293 static int nfp_pcie_sriov_configure(struct pci_dev
*pdev
, int num_vfs
)
295 if (!pci_get_drvdata(pdev
))
299 return nfp_pcie_sriov_disable(pdev
);
301 return nfp_pcie_sriov_enable(pdev
, num_vfs
);
304 int nfp_flash_update_common(struct nfp_pf
*pf
, const struct firmware
*fw
,
305 struct netlink_ext_ack
*extack
)
307 struct device
*dev
= &pf
->pdev
->dev
;
311 nsp
= nfp_nsp_open(pf
->cpp
);
315 NL_SET_ERR_MSG_MOD(extack
, "can't access NSP");
317 dev_err(dev
, "Failed to access the NSP: %d\n", err
);
321 err
= nfp_nsp_write_flash(nsp
, fw
);
324 dev_info(dev
, "Finished writing flash image\n");
332 static const struct firmware
*
333 nfp_net_fw_request(struct pci_dev
*pdev
, struct nfp_pf
*pf
, const char *name
)
335 const struct firmware
*fw
= NULL
;
338 err
= request_firmware_direct(&fw
, name
, &pdev
->dev
);
339 nfp_info(pf
->cpp
, " %s: %s\n",
340 name
, err
? "not found" : "found");
348 * nfp_net_fw_find() - Find the correct firmware image for netdev mode
349 * @pdev: PCI Device structure
350 * @pf: NFP PF Device structure
352 * Return: firmware if found and requested successfully.
354 static const struct firmware
*
355 nfp_net_fw_find(struct pci_dev
*pdev
, struct nfp_pf
*pf
)
357 struct nfp_eth_table_port
*port
;
358 const struct firmware
*fw
;
359 const char *fw_model
;
365 nfp_info(pf
->cpp
, "Looking for firmware file in order of priority:\n");
367 /* First try to find a firmware image specific for this device */
368 interface
= nfp_cpp_interface(pf
->cpp
);
369 nfp_cpp_serial(pf
->cpp
, &serial
);
370 sprintf(fw_name
, "netronome/serial-%pMF-%02hhx-%02hhx.nffw",
371 serial
, interface
>> 8, interface
& 0xff);
372 fw
= nfp_net_fw_request(pdev
, pf
, fw_name
);
376 /* Then try the PCI name */
377 sprintf(fw_name
, "netronome/pci-%s.nffw", pci_name(pdev
));
378 fw
= nfp_net_fw_request(pdev
, pf
, fw_name
);
382 /* Finally try the card type and media */
384 dev_err(&pdev
->dev
, "Error: can't identify media config\n");
388 fw_model
= nfp_hwinfo_lookup(pf
->hwinfo
, "assembly.partno");
390 dev_err(&pdev
->dev
, "Error: can't read part number\n");
394 spc
= ARRAY_SIZE(fw_name
);
395 spc
-= snprintf(fw_name
, spc
, "netronome/nic_%s", fw_model
);
397 for (i
= 0; spc
> 0 && i
< pf
->eth_tbl
->count
; i
+= j
) {
398 port
= &pf
->eth_tbl
->ports
[i
];
400 while (i
+ j
< pf
->eth_tbl
->count
&&
401 port
->speed
== port
[j
].speed
)
404 spc
-= snprintf(&fw_name
[ARRAY_SIZE(fw_name
) - spc
], spc
,
405 "_%dx%d", j
, port
->speed
/ 1000);
411 spc
-= snprintf(&fw_name
[ARRAY_SIZE(fw_name
) - spc
], spc
, ".nffw");
415 return nfp_net_fw_request(pdev
, pf
, fw_name
);
419 nfp_get_fw_policy_value(struct pci_dev
*pdev
, struct nfp_nsp
*nsp
,
420 const char *key
, const char *default_val
, int max_val
,
427 snprintf(hwinfo
, sizeof(hwinfo
), key
);
428 err
= nfp_nsp_hwinfo_lookup_optional(nsp
, hwinfo
, sizeof(hwinfo
),
433 err
= kstrtol(hwinfo
, 0, &hi_val
);
434 if (err
|| hi_val
< 0 || hi_val
> max_val
) {
436 "Invalid value '%s' from '%s', ignoring\n",
438 err
= kstrtol(default_val
, 0, &hi_val
);
446 * nfp_fw_load() - Load the firmware image
447 * @pdev: PCI Device structure
448 * @pf: NFP PF Device structure
449 * @nsp: NFP SP handle
451 * Return: -ERRNO, 0 for no firmware loaded, 1 for firmware loaded
454 nfp_fw_load(struct pci_dev
*pdev
, struct nfp_pf
*pf
, struct nfp_nsp
*nsp
)
456 bool do_reset
, fw_loaded
= false;
457 const struct firmware
*fw
= NULL
;
458 int err
, reset
, policy
, ifcs
= 0;
463 snprintf(hwinfo
, sizeof(hwinfo
), "abi_drv_load_ifc");
464 err
= nfp_nsp_hwinfo_lookup_optional(nsp
, hwinfo
, sizeof(hwinfo
),
465 NFP_NSP_DRV_LOAD_IFC_DEFAULT
);
469 interface
= nfp_cpp_interface(pf
->cpp
);
471 while ((token
= strsep(&ptr
, ","))) {
472 unsigned long interface_hi
;
474 err
= kstrtoul(token
, 0, &interface_hi
);
477 "Failed to parse interface '%s': %d\n",
483 if (interface
== interface_hi
)
488 dev_info(&pdev
->dev
, "Firmware will be loaded by partner\n");
492 err
= nfp_get_fw_policy_value(pdev
, nsp
, "abi_drv_reset",
493 NFP_NSP_DRV_RESET_DEFAULT
,
494 NFP_NSP_DRV_RESET_NEVER
, &reset
);
498 err
= nfp_get_fw_policy_value(pdev
, nsp
, "app_fw_from_flash",
499 NFP_NSP_APP_FW_LOAD_DEFAULT
,
500 NFP_NSP_APP_FW_LOAD_PREF
, &policy
);
504 fw
= nfp_net_fw_find(pdev
, pf
);
505 do_reset
= reset
== NFP_NSP_DRV_RESET_ALWAYS
||
506 (fw
&& reset
== NFP_NSP_DRV_RESET_DISK
);
509 dev_info(&pdev
->dev
, "Soft-resetting the NFP\n");
510 err
= nfp_nsp_device_soft_reset(nsp
);
513 "Failed to soft reset the NFP: %d\n", err
);
514 goto exit_release_fw
;
518 if (fw
&& policy
!= NFP_NSP_APP_FW_LOAD_FLASH
) {
519 if (nfp_nsp_has_fw_loaded(nsp
) && nfp_nsp_fw_loaded(nsp
))
520 goto exit_release_fw
;
522 err
= nfp_nsp_load_fw(nsp
, fw
);
524 dev_err(&pdev
->dev
, "FW loading failed: %d\n",
526 goto exit_release_fw
;
528 dev_info(&pdev
->dev
, "Finished loading FW image\n");
530 } else if (policy
!= NFP_NSP_APP_FW_LOAD_DISK
&&
531 nfp_nsp_has_stored_fw_load(nsp
)) {
533 /* Don't propagate this error to stick with legacy driver
534 * behavior, failure will be detected later during init.
536 if (!nfp_nsp_load_stored_fw(nsp
))
537 dev_info(&pdev
->dev
, "Finished loading stored FW image\n");
539 /* Don't flag the fw_loaded in this case since other devices
540 * may reuse the firmware when configured this way
543 dev_warn(&pdev
->dev
, "Didn't load firmware, please update flash or reconfigure card\n");
547 release_firmware(fw
);
549 /* We don't want to unload firmware when other devices may still be
550 * dependent on it, which could be the case if there are multiple
551 * devices that could load firmware.
553 if (fw_loaded
&& ifcs
== 1)
554 pf
->unload_fw_on_remove
= true;
556 return err
< 0 ? err
: fw_loaded
;
560 nfp_nsp_init_ports(struct pci_dev
*pdev
, struct nfp_pf
*pf
,
563 bool needs_reinit
= false;
566 pf
->eth_tbl
= __nfp_eth_read_ports(pf
->cpp
, nsp
);
570 if (!nfp_nsp_has_mac_reinit(nsp
))
573 for (i
= 0; i
< pf
->eth_tbl
->count
; i
++)
574 needs_reinit
|= pf
->eth_tbl
->ports
[i
].override_changed
;
579 if (nfp_nsp_mac_reinit(nsp
))
580 dev_warn(&pdev
->dev
, "MAC reinit failed\n");
582 pf
->eth_tbl
= __nfp_eth_read_ports(pf
->cpp
, nsp
);
585 static int nfp_nsp_init(struct pci_dev
*pdev
, struct nfp_pf
*pf
)
590 err
= nfp_resource_wait(pf
->cpp
, NFP_RESOURCE_NSP
, 30);
594 nsp
= nfp_nsp_open(pf
->cpp
);
597 dev_err(&pdev
->dev
, "Failed to access the NSP: %d\n", err
);
601 err
= nfp_nsp_wait(nsp
);
605 nfp_nsp_init_ports(pdev
, pf
, nsp
);
607 pf
->nspi
= __nfp_nsp_identify(nsp
);
609 dev_info(&pdev
->dev
, "BSP: %s\n", pf
->nspi
->version
);
611 err
= nfp_fw_load(pdev
, pf
, nsp
);
615 dev_err(&pdev
->dev
, "Failed to load FW\n");
619 pf
->fw_loaded
= !!err
;
628 static void nfp_fw_unload(struct nfp_pf
*pf
)
633 nsp
= nfp_nsp_open(pf
->cpp
);
635 nfp_err(pf
->cpp
, "Reset failed, can't open NSP\n");
639 err
= nfp_nsp_device_soft_reset(nsp
);
641 dev_warn(&pf
->pdev
->dev
, "Couldn't unload firmware: %d\n", err
);
643 dev_info(&pf
->pdev
->dev
, "Firmware safely unloaded\n");
648 static int nfp_pf_find_rtsyms(struct nfp_pf
*pf
)
653 pf_id
= nfp_cppcore_pcie_unit(pf
->cpp
);
655 /* Optional per-PCI PF mailbox */
656 snprintf(pf_symbol
, sizeof(pf_symbol
), NFP_MBOX_SYM_NAME
, pf_id
);
657 pf
->mbox
= nfp_rtsym_lookup(pf
->rtbl
, pf_symbol
);
658 if (pf
->mbox
&& nfp_rtsym_size(pf
->mbox
) < NFP_MBOX_SYM_MIN_SIZE
) {
659 nfp_err(pf
->cpp
, "PF mailbox symbol too small: %llu < %d\n",
660 nfp_rtsym_size(pf
->mbox
), NFP_MBOX_SYM_MIN_SIZE
);
667 static int nfp_pci_probe(struct pci_dev
*pdev
,
668 const struct pci_device_id
*pci_id
)
670 struct devlink
*devlink
;
674 if (pdev
->vendor
== PCI_VENDOR_ID_NETRONOME
&&
675 pdev
->device
== PCI_DEVICE_ID_NETRONOME_NFP6000_VF
)
676 dev_warn(&pdev
->dev
, "Binding NFP VF device to the NFP PF driver, the VF driver is called 'nfp_netvf'\n");
678 err
= pci_enable_device(pdev
);
682 pci_set_master(pdev
);
684 err
= dma_set_mask_and_coherent(&pdev
->dev
,
685 DMA_BIT_MASK(NFP_NET_MAX_DMA_BITS
));
687 goto err_pci_disable
;
689 err
= pci_request_regions(pdev
, nfp_driver_name
);
691 dev_err(&pdev
->dev
, "Unable to reserve pci resources.\n");
692 goto err_pci_disable
;
695 devlink
= devlink_alloc(&nfp_devlink_ops
, sizeof(*pf
));
698 goto err_rel_regions
;
700 pf
= devlink_priv(devlink
);
701 INIT_LIST_HEAD(&pf
->vnics
);
702 INIT_LIST_HEAD(&pf
->ports
);
703 mutex_init(&pf
->lock
);
704 pci_set_drvdata(pdev
, pf
);
707 pf
->wq
= alloc_workqueue("nfp-%s", 0, 2, pci_name(pdev
));
710 goto err_pci_priv_unset
;
713 pf
->cpp
= nfp_cpp_from_nfp6000_pcie(pdev
);
714 if (IS_ERR(pf
->cpp
)) {
715 err
= PTR_ERR(pf
->cpp
);
716 goto err_disable_msix
;
719 err
= nfp_resource_table_init(pf
->cpp
);
723 pf
->hwinfo
= nfp_hwinfo_read(pf
->cpp
);
725 dev_info(&pdev
->dev
, "Assembly: %s%s%s-%s CPLD: %s\n",
726 nfp_hwinfo_lookup(pf
->hwinfo
, "assembly.vendor"),
727 nfp_hwinfo_lookup(pf
->hwinfo
, "assembly.partno"),
728 nfp_hwinfo_lookup(pf
->hwinfo
, "assembly.serial"),
729 nfp_hwinfo_lookup(pf
->hwinfo
, "assembly.revision"),
730 nfp_hwinfo_lookup(pf
->hwinfo
, "cpld.version"));
732 err
= nfp_pf_board_state_wait(pf
);
734 goto err_hwinfo_free
;
736 err
= nfp_nsp_init(pdev
, pf
);
738 goto err_hwinfo_free
;
740 pf
->mip
= nfp_mip_open(pf
->cpp
);
741 pf
->rtbl
= __nfp_rtsym_table_read(pf
->cpp
, pf
->mip
);
743 err
= nfp_pf_find_rtsyms(pf
);
747 pf
->dump_flag
= NFP_DUMP_NSP_DIAG
;
748 pf
->dumpspec
= nfp_net_dump_load_dumpspec(pf
->cpp
, pf
->rtbl
);
750 err
= nfp_pcie_sriov_read_nfd_limit(pf
);
754 pf
->num_vfs
= pci_num_vf(pdev
);
755 if (pf
->num_vfs
> pf
->limit_vfs
) {
757 "Error: %d VFs already enabled, but loaded FW can only support %d\n",
758 pf
->num_vfs
, pf
->limit_vfs
);
763 err
= nfp_net_pci_probe(pf
);
767 err
= nfp_hwmon_register(pf
);
769 dev_err(&pdev
->dev
, "Failed to register hwmon info\n");
776 nfp_net_pci_remove(pf
);
779 nfp_mip_close(pf
->mip
);
780 if (pf
->unload_fw_on_remove
)
788 nfp_cpp_free(pf
->cpp
);
790 destroy_workqueue(pf
->wq
);
792 pci_set_drvdata(pdev
, NULL
);
793 mutex_destroy(&pf
->lock
);
794 devlink_free(devlink
);
796 pci_release_regions(pdev
);
798 pci_disable_device(pdev
);
803 static void __nfp_pci_shutdown(struct pci_dev
*pdev
, bool unload_fw
)
807 pf
= pci_get_drvdata(pdev
);
811 nfp_hwmon_unregister(pf
);
813 nfp_pcie_sriov_disable(pdev
);
815 nfp_net_pci_remove(pf
);
819 nfp_mip_close(pf
->mip
);
820 if (unload_fw
&& pf
->unload_fw_on_remove
)
823 destroy_workqueue(pf
->wq
);
824 pci_set_drvdata(pdev
, NULL
);
826 nfp_cpp_free(pf
->cpp
);
830 mutex_destroy(&pf
->lock
);
831 devlink_free(priv_to_devlink(pf
));
832 pci_release_regions(pdev
);
833 pci_disable_device(pdev
);
836 static void nfp_pci_remove(struct pci_dev
*pdev
)
838 __nfp_pci_shutdown(pdev
, true);
841 static void nfp_pci_shutdown(struct pci_dev
*pdev
)
843 __nfp_pci_shutdown(pdev
, false);
846 static struct pci_driver nfp_pci_driver
= {
847 .name
= nfp_driver_name
,
848 .id_table
= nfp_pci_device_ids
,
849 .probe
= nfp_pci_probe
,
850 .remove
= nfp_pci_remove
,
851 .shutdown
= nfp_pci_shutdown
,
852 .sriov_configure
= nfp_pcie_sriov_configure
,
855 static int __init
nfp_main_init(void)
859 pr_info("%s: NFP PCIe Driver, Copyright (C) 2014-2017 Netronome Systems\n",
862 nfp_net_debugfs_create();
864 err
= pci_register_driver(&nfp_pci_driver
);
866 goto err_destroy_debugfs
;
868 err
= pci_register_driver(&nfp_netvf_pci_driver
);
875 pci_unregister_driver(&nfp_pci_driver
);
877 nfp_net_debugfs_destroy();
881 static void __exit
nfp_main_exit(void)
883 pci_unregister_driver(&nfp_netvf_pci_driver
);
884 pci_unregister_driver(&nfp_pci_driver
);
885 nfp_net_debugfs_destroy();
888 module_init(nfp_main_init
);
889 module_exit(nfp_main_exit
);
891 MODULE_FIRMWARE("netronome/nic_AMDA0058-0011_2x40.nffw");
892 MODULE_FIRMWARE("netronome/nic_AMDA0058-0012_2x40.nffw");
893 MODULE_FIRMWARE("netronome/nic_AMDA0081-0001_1x40.nffw");
894 MODULE_FIRMWARE("netronome/nic_AMDA0081-0001_4x10.nffw");
895 MODULE_FIRMWARE("netronome/nic_AMDA0096-0001_2x10.nffw");
896 MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_2x40.nffw");
897 MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_4x10_1x40.nffw");
898 MODULE_FIRMWARE("netronome/nic_AMDA0097-0001_8x10.nffw");
899 MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_2x10.nffw");
900 MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_2x25.nffw");
901 MODULE_FIRMWARE("netronome/nic_AMDA0099-0001_1x10_1x25.nffw");
903 MODULE_AUTHOR("Netronome Systems <oss-drivers@netronome.com>");
904 MODULE_LICENSE("GPL");
905 MODULE_DESCRIPTION("The Netronome Flow Processor (NFP) driver.");