]> git.baikalelectronics.ru Git - kernel.git/commitdiff
sfc: Separate netdev probe/remove from PCI probe/remove
authorJonathan Cooper <jonathan.s.cooper@amd.com>
Tue, 28 Jun 2022 14:00:47 +0000 (15:00 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 29 Jun 2022 12:40:47 +0000 (13:40 +0100)
The netdev probe will be used when moving from vDPA to EF100 BAR config.
The netdev remove will be used when moving from EF100 to vDPA BAR config.

In the process, change several log messages to pci_ instead of netif_
to remove the "(unregistered net_device)" text.

Signed-off-by: Jonathan Cooper <jonathan.s.cooper@amd.com>
Co-developed-by: Martin Habets <habetsm.xilinx@gmail.com>
Signed-off-by: Martin Habets <habetsm.xilinx@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sfc/ef100.c
drivers/net/ethernet/sfc/ef100_netdev.c
drivers/net/ethernet/sfc/ef100_netdev.h
drivers/net/ethernet/sfc/ef100_nic.c
drivers/net/ethernet/sfc/ef100_nic.h
drivers/net/ethernet/sfc/efx.c
drivers/net/ethernet/sfc/efx_common.c
drivers/net/ethernet/sfc/mcdi.c

index a77100239e7c280d30e5fb3337b81c52e3a981b7..425017fbcb251bcd05a82574f29bd75c9f38010e 100644 (file)
@@ -423,44 +423,32 @@ static int ef100_pci_find_func_ctrl_window(struct efx_nic *efx,
  */
 static void ef100_pci_remove(struct pci_dev *pci_dev)
 {
+       struct efx_nic *efx = pci_get_drvdata(pci_dev);
        struct efx_probe_data *probe_data;
-       struct efx_nic *efx;
 
-       efx = pci_get_drvdata(pci_dev);
        if (!efx)
                return;
 
-       rtnl_lock();
-       dev_close(efx->net_dev);
-       rtnl_unlock();
-
-       /* Unregistering our netdev notifier triggers unbinding of TC indirect
-        * blocks, so we have to do it before PCI removal.
-        */
-       unregister_netdevice_notifier(&efx->netdev_notifier);
-#if defined(CONFIG_SFC_SRIOV)
-       if (!efx->type->is_vf)
-               efx_ef100_pci_sriov_disable(efx);
-#endif
+       probe_data = container_of(efx, struct efx_probe_data, efx);
+       ef100_remove_netdev(probe_data);
+
        ef100_remove(efx);
        efx_fini_io(efx);
-       netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
+
+       pci_dbg(pci_dev, "shutdown successful\n");
+
+       pci_disable_pcie_error_reporting(pci_dev);
 
        pci_set_drvdata(pci_dev, NULL);
        efx_fini_struct(efx);
-       free_netdev(efx->net_dev);
-       probe_data = container_of(efx, struct efx_probe_data, efx);
        kfree(probe_data);
-
-       pci_disable_pcie_error_reporting(pci_dev);
 };
 
 static int ef100_pci_probe(struct pci_dev *pci_dev,
                           const struct pci_device_id *entry)
 {
-       struct efx_probe_data *probe_data, **probe_ptr;
        struct ef100_func_ctl_window fcw = { 0 };
-       struct net_device *net_dev;
+       struct efx_probe_data *probe_data;
        struct efx_nic *efx;
        int rc;
 
@@ -471,31 +459,22 @@ static int ef100_pci_probe(struct pci_dev *pci_dev,
        probe_data->pci_dev = pci_dev;
        efx = &probe_data->efx;
 
-       /* Allocate and initialise a struct net_device */
-       net_dev = alloc_etherdev_mq(sizeof(probe_data), EFX_MAX_CORE_TX_QUEUES);
-       if (!net_dev)
-               return -ENOMEM;
-       probe_ptr = netdev_priv(net_dev);
-       *probe_ptr = probe_data;
        efx->type = (const struct efx_nic_type *)entry->driver_data;
 
+       efx->pci_dev = pci_dev;
        pci_set_drvdata(pci_dev, efx);
-       SET_NETDEV_DEV(net_dev, &pci_dev->dev);
-       efx->net_dev = net_dev;
        rc = efx_init_struct(efx, pci_dev);
        if (rc)
                goto fail;
 
-       efx->mdio.dev = net_dev;
        efx->vi_stride = EF100_DEFAULT_VI_STRIDE;
-       netif_info(efx, probe, efx->net_dev,
-                  "Solarflare EF100 NIC detected\n");
+       pci_info(pci_dev, "Solarflare EF100 NIC detected\n");
 
        rc = ef100_pci_find_func_ctrl_window(efx, &fcw);
        if (rc) {
-               netif_err(efx, probe, efx->net_dev,
-                         "Error looking for ef100 function control window, rc=%d\n",
-                         rc);
+               pci_err(pci_dev,
+                       "Error looking for ef100 function control window, rc=%d\n",
+                       rc);
                goto fail;
        }
 
@@ -507,8 +486,7 @@ static int ef100_pci_probe(struct pci_dev *pci_dev,
        }
 
        if (fcw.offset > pci_resource_len(efx->pci_dev, fcw.bar) - ESE_GZ_FCW_LEN) {
-               netif_err(efx, probe, efx->net_dev,
-                         "Func control window overruns BAR\n");
+               pci_err(pci_dev, "Func control window overruns BAR\n");
                rc = -EIO;
                goto fail;
        }
@@ -522,19 +500,16 @@ static int ef100_pci_probe(struct pci_dev *pci_dev,
 
        efx->reg_base = fcw.offset;
 
-       efx->netdev_notifier.notifier_call = ef100_netdev_event;
-       rc = register_netdevice_notifier(&efx->netdev_notifier);
-       if (rc) {
-               netif_err(efx, probe, efx->net_dev,
-                         "Failed to register netdevice notifier, rc=%d\n", rc);
+       rc = efx->type->probe(efx);
+       if (rc)
                goto fail;
-       }
 
-       rc = efx->type->probe(efx);
+       efx->state = STATE_PROBED;
+       rc = ef100_probe_netdev(probe_data);
        if (rc)
                goto fail;
 
-       netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
+       pci_dbg(pci_dev, "initialisation successful\n");
 
        return 0;
 
index 7a80979f4ab799658809dd05c19331bc7fa6c42b..060392ddd6120eb384352df1b311fb7fbc4dc84b 100644 (file)
@@ -22,6 +22,7 @@
 #include "ef100_regs.h"
 #include "mcdi_filters.h"
 #include "rx_common.h"
+#include "ef100_sriov.h"
 
 static void ef100_update_name(struct efx_nic *efx)
 {
@@ -243,13 +244,14 @@ int ef100_netdev_event(struct notifier_block *this,
        struct efx_nic *efx = container_of(this, struct efx_nic, netdev_notifier);
        struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
 
-       if (efx->net_dev == net_dev && event == NETDEV_CHANGENAME)
+       if (efx->net_dev == net_dev &&
+           (event == NETDEV_CHANGENAME || event == NETDEV_REGISTER))
                ef100_update_name(efx);
 
        return NOTIFY_DONE;
 }
 
-int ef100_register_netdev(struct efx_nic *efx)
+static int ef100_register_netdev(struct efx_nic *efx)
 {
        struct net_device *net_dev = efx->net_dev;
        int rc;
@@ -287,7 +289,7 @@ fail_locked:
        return rc;
 }
 
-void ef100_unregister_netdev(struct efx_nic *efx)
+static void ef100_unregister_netdev(struct efx_nic *efx)
 {
        if (efx_dev_registered(efx)) {
                efx_fini_mcdi_logging(efx);
@@ -295,3 +297,111 @@ void ef100_unregister_netdev(struct efx_nic *efx)
                unregister_netdev(efx->net_dev);
        }
 }
+
+void ef100_remove_netdev(struct efx_probe_data *probe_data)
+{
+       struct efx_nic *efx = &probe_data->efx;
+
+       if (!efx->net_dev)
+               return;
+
+       rtnl_lock();
+       dev_close(efx->net_dev);
+       rtnl_unlock();
+
+       unregister_netdevice_notifier(&efx->netdev_notifier);
+#if defined(CONFIG_SFC_SRIOV)
+       if (!efx->type->is_vf)
+               efx_ef100_pci_sriov_disable(efx);
+#endif
+
+       ef100_unregister_netdev(efx);
+
+       down_write(&efx->filter_sem);
+       efx_mcdi_filter_table_remove(efx);
+       up_write(&efx->filter_sem);
+       efx_fini_channels(efx);
+       kfree(efx->phy_data);
+       efx->phy_data = NULL;
+
+       free_netdev(efx->net_dev);
+       efx->net_dev = NULL;
+       efx->state = STATE_PROBED;
+}
+
+int ef100_probe_netdev(struct efx_probe_data *probe_data)
+{
+       struct efx_nic *efx = &probe_data->efx;
+       struct efx_probe_data **probe_ptr;
+       struct net_device *net_dev;
+       int rc;
+
+       if (efx->mcdi->fn_flags &
+                       (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_NO_ACTIVE_PORT)) {
+               pci_info(efx->pci_dev, "No network port on this PCI function");
+               return 0;
+       }
+
+       /* Allocate and initialise a struct net_device */
+       net_dev = alloc_etherdev_mq(sizeof(probe_data), EFX_MAX_CORE_TX_QUEUES);
+       if (!net_dev)
+               return -ENOMEM;
+       probe_ptr = netdev_priv(net_dev);
+       *probe_ptr = probe_data;
+       efx->net_dev = net_dev;
+       SET_NETDEV_DEV(net_dev, &efx->pci_dev->dev);
+
+       net_dev->features |= efx->type->offload_features;
+       net_dev->hw_features |= efx->type->offload_features;
+       net_dev->hw_enc_features |= efx->type->offload_features;
+       net_dev->vlan_features |= NETIF_F_HW_CSUM | NETIF_F_SG |
+                                 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO;
+       netif_set_tso_max_segs(net_dev,
+                              ESE_EF100_DP_GZ_TSO_MAX_HDR_NUM_SEGS_DEFAULT);
+       efx->mdio.dev = net_dev;
+
+       rc = efx_ef100_init_datapath_caps(efx);
+       if (rc < 0)
+               goto fail;
+
+       rc = ef100_phy_probe(efx);
+       if (rc)
+               goto fail;
+
+       rc = efx_init_channels(efx);
+       if (rc)
+               goto fail;
+
+       down_write(&efx->filter_sem);
+       rc = ef100_filter_table_probe(efx);
+       up_write(&efx->filter_sem);
+       if (rc)
+               goto fail;
+
+       netdev_rss_key_fill(efx->rss_context.rx_hash_key,
+                           sizeof(efx->rss_context.rx_hash_key));
+
+       /* Don't fail init if RSS setup doesn't work. */
+       efx_mcdi_push_default_indir_table(efx, efx->n_rx_channels);
+
+       rc = ef100_register_netdev(efx);
+       if (rc)
+               goto fail;
+
+       if (!efx->type->is_vf) {
+               rc = ef100_probe_netdev_pf(efx);
+               if (rc)
+                       goto fail;
+       }
+
+       efx->netdev_notifier.notifier_call = ef100_netdev_event;
+       rc = register_netdevice_notifier(&efx->netdev_notifier);
+       if (rc) {
+               netif_err(efx, probe, efx->net_dev,
+                         "Failed to register netdevice notifier, rc=%d\n", rc);
+               goto fail;
+       }
+
+fail:
+       return rc;
+}
index d40abb7cc0867134ad4c9537b56ee5f8032f2830..38b032ba095348b360d293b0a4612826d3f89bad 100644 (file)
@@ -13,5 +13,5 @@
 
 int ef100_netdev_event(struct notifier_block *this,
                       unsigned long event, void *ptr);
-int ef100_register_netdev(struct efx_nic *efx);
-void ef100_unregister_netdev(struct efx_nic *efx);
+int ef100_probe_netdev(struct efx_probe_data *probe_data);
+void ef100_remove_netdev(struct efx_probe_data *probe_data);
index fcbc9de1bbf244ab2fa879d3746f097a21a68df8..f89e695cf8aca05057c6acf43627e65b36dc5452 100644 (file)
@@ -148,7 +148,7 @@ static int ef100_get_mac_address(struct efx_nic *efx, u8 *mac_address)
        return 0;
 }
 
-static int efx_ef100_init_datapath_caps(struct efx_nic *efx)
+int efx_ef100_init_datapath_caps(struct efx_nic *efx)
 {
        MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_CAPABILITIES_V7_OUT_LEN);
        struct ef100_nic_data *nic_data = efx->nic_data;
@@ -327,7 +327,7 @@ static irqreturn_t ef100_msi_interrupt(int irq, void *dev_id)
        return IRQ_HANDLED;
 }
 
-static int ef100_phy_probe(struct efx_nic *efx)
+int ef100_phy_probe(struct efx_nic *efx)
 {
        struct efx_mcdi_phy_data *phy_data;
        int rc;
@@ -365,7 +365,7 @@ static int ef100_phy_probe(struct efx_nic *efx)
        return 0;
 }
 
-static int ef100_filter_table_probe(struct efx_nic *efx)
+int ef100_filter_table_probe(struct efx_nic *efx)
 {
        return efx_mcdi_filter_table_probe(efx, true);
 }
@@ -905,8 +905,7 @@ static int ef100_check_design_params(struct efx_nic *efx)
 
        efx_readd(efx, &reg, ER_GZ_PARAMS_TLV_LEN);
        total_len = EFX_DWORD_FIELD(reg, EFX_DWORD_0);
-       netif_dbg(efx, probe, efx->net_dev, "%u bytes of design parameters\n",
-                 total_len);
+       pci_dbg(efx->pci_dev, "%u bytes of design parameters\n", total_len);
        while (offset < total_len) {
                efx_readd(efx, &reg, ER_GZ_PARAMS_TLV + offset);
                data = EFX_DWORD_FIELD(reg, EFX_DWORD_0);
@@ -945,7 +944,6 @@ out:
 static int ef100_probe_main(struct efx_nic *efx)
 {
        unsigned int bar_size = resource_size(&efx->pci_dev->resource[efx->mem_bar]);
-       struct net_device *net_dev = efx->net_dev;
        struct ef100_nic_data *nic_data;
        char fw_version[32];
        int i, rc;
@@ -958,24 +956,18 @@ static int ef100_probe_main(struct efx_nic *efx)
                return -ENOMEM;
        efx->nic_data = nic_data;
        nic_data->efx = efx;
-       net_dev->features |= efx->type->offload_features;
-       net_dev->hw_features |= efx->type->offload_features;
-       net_dev->hw_enc_features |= efx->type->offload_features;
-       net_dev->vlan_features |= NETIF_F_HW_CSUM | NETIF_F_SG |
-                                 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO;
+       efx->max_vis = EF100_MAX_VIS;
 
        /* Populate design-parameter defaults */
        nic_data->tso_max_hdr_len = ESE_EF100_DP_GZ_TSO_MAX_HDR_LEN_DEFAULT;
        nic_data->tso_max_frames = ESE_EF100_DP_GZ_TSO_MAX_NUM_FRAMES_DEFAULT;
        nic_data->tso_max_payload_num_segs = ESE_EF100_DP_GZ_TSO_MAX_PAYLOAD_NUM_SEGS_DEFAULT;
        nic_data->tso_max_payload_len = ESE_EF100_DP_GZ_TSO_MAX_PAYLOAD_LEN_DEFAULT;
-       netif_set_tso_max_segs(net_dev,
-                              ESE_EF100_DP_GZ_TSO_MAX_HDR_NUM_SEGS_DEFAULT);
+
        /* Read design parameters */
        rc = ef100_check_design_params(efx);
        if (rc) {
-               netif_err(efx, probe, efx->net_dev,
-                         "Unsupported design parameters\n");
+               pci_err(efx->pci_dev, "Unsupported design parameters\n");
                goto fail;
        }
 
@@ -1012,12 +1004,6 @@ static int ef100_probe_main(struct efx_nic *efx)
        /* Post-IO section. */
 
        rc = efx_mcdi_init(efx);
-       if (!rc && efx->mcdi->fn_flags &
-                  (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_NO_ACTIVE_PORT)) {
-               netif_info(efx, probe, efx->net_dev,
-                          "No network port on this PCI function");
-               rc = -ENODEV;
-       }
        if (rc)
                goto fail;
        /* Reset (most) configuration for this function */
@@ -1033,67 +1019,37 @@ static int ef100_probe_main(struct efx_nic *efx)
        if (rc)
                goto fail;
 
-       rc = efx_ef100_init_datapath_caps(efx);
-       if (rc < 0)
-               goto fail;
-
-       efx->max_vis = EF100_MAX_VIS;
-
        rc = efx_mcdi_port_get_number(efx);
        if (rc < 0)
                goto fail;
        efx->port_num = rc;
 
        efx_mcdi_print_fwver(efx, fw_version, sizeof(fw_version));
-       netif_dbg(efx, drv, efx->net_dev, "Firmware version %s\n", fw_version);
+       pci_dbg(efx->pci_dev, "Firmware version %s\n", fw_version);
 
        if (compare_versions(fw_version, "1.1.0.1000") < 0) {
-               netif_info(efx, drv, efx->net_dev, "Firmware uses old event descriptors\n");
+               pci_info(efx->pci_dev, "Firmware uses old event descriptors\n");
                rc = -EINVAL;
                goto fail;
        }
 
        if (efx_has_cap(efx, UNSOL_EV_CREDIT_SUPPORTED)) {
-               netif_info(efx, drv, efx->net_dev, "Firmware uses unsolicited-event credits\n");
+               pci_info(efx->pci_dev, "Firmware uses unsolicited-event credits\n");
                rc = -EINVAL;
                goto fail;
        }
 
-       rc = ef100_phy_probe(efx);
-       if (rc)
-               goto fail;
-
-       down_write(&efx->filter_sem);
-       rc = ef100_filter_table_probe(efx);
-       up_write(&efx->filter_sem);
-       if (rc)
-               goto fail;
-
-       netdev_rss_key_fill(efx->rss_context.rx_hash_key,
-                           sizeof(efx->rss_context.rx_hash_key));
-
-       /* Don't fail init if RSS setup doesn't work. */
-       efx_mcdi_push_default_indir_table(efx, efx->n_rx_channels);
-
-       rc = ef100_register_netdev(efx);
-       if (rc)
-               goto fail;
-
        return 0;
 fail:
        return rc;
 }
 
-int ef100_probe_pf(struct efx_nic *efx)
+int ef100_probe_netdev_pf(struct efx_nic *efx)
 {
+       struct ef100_nic_data *nic_data = efx->nic_data;
        struct net_device *net_dev = efx->net_dev;
-       struct ef100_nic_data *nic_data;
-       int rc = ef100_probe_main(efx);
-
-       if (rc)
-               goto fail;
+       int rc;
 
-       nic_data = efx->nic_data;
        rc = ef100_get_mac_address(efx, net_dev->perm_addr);
        if (rc)
                goto fail;
@@ -1116,14 +1072,6 @@ void ef100_remove(struct efx_nic *efx)
 {
        struct ef100_nic_data *nic_data = efx->nic_data;
 
-       ef100_unregister_netdev(efx);
-
-       down_write(&efx->filter_sem);
-       efx_mcdi_filter_table_remove(efx);
-       up_write(&efx->filter_sem);
-       efx_fini_channels(efx);
-       kfree(efx->phy_data);
-       efx->phy_data = NULL;
        efx_mcdi_detach(efx);
        efx_mcdi_fini(efx);
        if (nic_data)
@@ -1142,7 +1090,7 @@ void ef100_remove(struct efx_nic *efx)
 const struct efx_nic_type ef100_pf_nic_type = {
        .revision = EFX_REV_EF100,
        .is_vf = false,
-       .probe = ef100_probe_pf,
+       .probe = ef100_probe_main,
        .offload_features = EF100_OFFLOAD_FEATURES,
        .mcdi_max_ver = 2,
        .mcdi_request = ef100_mcdi_request,
index e799688d526474d9d59e415cf37ba3d4fb600aa3..744dbbdb4adc7deb9fec00d3fe3f28468e13e6c4 100644 (file)
@@ -8,6 +8,8 @@
  * under the terms of the GNU General Public License version 2 as published
  * by the Free Software Foundation, incorporated herein by reference.
  */
+#ifndef EFX_EF100_NIC_H
+#define EFX_EF100_NIC_H
 
 #include "net_driver.h"
 #include "nic_common.h"
@@ -15,7 +17,7 @@
 extern const struct efx_nic_type ef100_pf_nic_type;
 extern const struct efx_nic_type ef100_vf_nic_type;
 
-int ef100_probe_pf(struct efx_nic *efx);
+int ef100_probe_netdev_pf(struct efx_nic *efx);
 int ef100_probe_vf(struct efx_nic *efx);
 void ef100_remove(struct efx_nic *efx);
 
@@ -78,3 +80,9 @@ struct ef100_nic_data {
 
 #define efx_ef100_has_cap(caps, flag) \
        (!!((caps) & BIT_ULL(MC_CMD_GET_CAPABILITIES_V4_OUT_ ## flag ## _LBN)))
+
+int efx_ef100_init_datapath_caps(struct efx_nic *efx);
+int ef100_phy_probe(struct efx_nic *efx);
+int ef100_filter_table_probe(struct efx_nic *efx);
+
+#endif /* EFX_EF100_NIC_H */
index c88e9de9dcd03096e17e6d49d7bad8af4f7d1f03..153d68e29b8b31e44c9acd2f57c3aab19dca9929 100644 (file)
@@ -886,7 +886,7 @@ static void efx_pci_remove(struct pci_dev *pci_dev)
        efx_pci_remove_main(efx);
 
        efx_fini_io(efx);
-       netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
+       pci_dbg(efx->pci_dev, "shutdown successful\n");
 
        efx_fini_struct(efx);
        free_netdev(efx->net_dev);
index e867c3457859c13472de6c894d7ddc5a93d4eca2..56eb717bb07a9e3ebd2551c6504bc1c1fc7b3ca3 100644 (file)
@@ -1074,13 +1074,11 @@ int efx_init_io(struct efx_nic *efx, int bar, dma_addr_t dma_mask,
        int rc;
 
        efx->mem_bar = UINT_MAX;
-
-       netif_dbg(efx, probe, efx->net_dev, "initialising I/O bar=%d\n", bar);
+       pci_dbg(pci_dev, "initialising I/O bar=%d\n", bar);
 
        rc = pci_enable_device(pci_dev);
        if (rc) {
-               netif_err(efx, probe, efx->net_dev,
-                         "failed to enable PCI device\n");
+               pci_err(pci_dev, "failed to enable PCI device\n");
                goto fail1;
        }
 
@@ -1088,42 +1086,40 @@ int efx_init_io(struct efx_nic *efx, int bar, dma_addr_t dma_mask,
 
        rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
        if (rc) {
-               netif_err(efx, probe, efx->net_dev,
-                         "could not find a suitable DMA mask\n");
+               pci_err(efx->pci_dev, "could not find a suitable DMA mask\n");
                goto fail2;
        }
-       netif_dbg(efx, probe, efx->net_dev,
-                 "using DMA mask %llx\n", (unsigned long long)dma_mask);
+       pci_dbg(efx->pci_dev, "using DMA mask %llx\n", (unsigned long long)dma_mask);
 
        efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
        if (!efx->membase_phys) {
-               netif_err(efx, probe, efx->net_dev,
-                         "ERROR: No BAR%d mapping from the BIOS. Try pci=realloc on the kernel command line\n",
-                         bar);
+               pci_err(efx->pci_dev,
+                       "ERROR: No BAR%d mapping from the BIOS. Try pci=realloc on the kernel command line\n",
+                       bar);
                rc = -ENODEV;
                goto fail3;
        }
 
        rc = pci_request_region(pci_dev, bar, "sfc");
        if (rc) {
-               netif_err(efx, probe, efx->net_dev,
-                         "request for memory BAR[%d] failed\n", bar);
+               pci_err(efx->pci_dev,
+                       "request for memory BAR[%d] failed\n", bar);
                rc = -EIO;
                goto fail3;
        }
        efx->mem_bar = bar;
        efx->membase = ioremap(efx->membase_phys, mem_map_size);
        if (!efx->membase) {
-               netif_err(efx, probe, efx->net_dev,
-                         "could not map memory BAR[%d] at %llx+%x\n", bar,
-                         (unsigned long long)efx->membase_phys, mem_map_size);
+               pci_err(efx->pci_dev,
+                       "could not map memory BAR[%d] at %llx+%x\n", bar,
+                       (unsigned long long)efx->membase_phys, mem_map_size);
                rc = -ENOMEM;
                goto fail4;
        }
-       netif_dbg(efx, probe, efx->net_dev,
-                 "memory BAR[%d] at %llx+%x (virtual %p)\n", bar,
-                 (unsigned long long)efx->membase_phys, mem_map_size,
-                 efx->membase);
+       pci_dbg(efx->pci_dev,
+               "memory BAR[%d] at %llx+%x (virtual %p)\n", bar,
+               (unsigned long long)efx->membase_phys, mem_map_size,
+               efx->membase);
 
        return 0;
 
@@ -1139,7 +1135,7 @@ fail1:
 
 void efx_fini_io(struct efx_nic *efx)
 {
-       netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
+       pci_dbg(efx->pci_dev, "shutting down I/O\n");
 
        if (efx->membase) {
                iounmap(efx->membase);
index b53fb01dcbadeaa93b503a9fc1be857fecbc59c2..3225fe64c3979e7747681845696c8adcec05470e 100644 (file)
@@ -99,14 +99,12 @@ int efx_mcdi_init(struct efx_nic *efx)
         */
        rc = efx_mcdi_drv_attach(efx, true, &already_attached);
        if (rc) {
-               netif_err(efx, probe, efx->net_dev,
-                         "Unable to register driver with MCPU\n");
+               pci_err(efx->pci_dev, "Unable to register driver with MCPU\n");
                goto fail2;
        }
        if (already_attached)
                /* Not a fatal error */
-               netif_err(efx, probe, efx->net_dev,
-                         "Host already registered with MCPU\n");
+               pci_err(efx->pci_dev, "Host already registered with MCPU\n");
 
        if (efx->mcdi->fn_flags &
            (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY))
@@ -1447,7 +1445,7 @@ void efx_mcdi_print_fwver(struct efx_nic *efx, char *buf, size_t len)
        return;
 
 fail:
-       netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
+       pci_err(efx->pci_dev, "%s: failed rc=%d\n", __func__, rc);
        buf[0] = 0;
 }
 
@@ -1471,9 +1469,9 @@ static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating,
         * care what firmware we get.
         */
        if (rc == -EPERM) {
-               netif_dbg(efx, probe, efx->net_dev,
-                         "%s with fw-variant setting failed EPERM, trying without it\n",
-                         __func__);
+               pci_dbg(efx->pci_dev,
+                       "%s with fw-variant setting failed EPERM, trying without it\n",
+                       __func__);
                MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_FIRMWARE_ID,
                               MC_CMD_FW_DONT_CARE);
                rc = efx_mcdi_rpc_quiet(efx, MC_CMD_DRV_ATTACH, inbuf,
@@ -1515,7 +1513,7 @@ static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating,
        return 0;
 
 fail:
-       netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
+       pci_err(efx->pci_dev, "%s: failed rc=%d\n", __func__, rc);
        return rc;
 }