]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
sfc_ef100: actually perform resets
authorEdward Cree <ecree@solarflare.com>
Mon, 27 Jul 2020 12:04:57 +0000 (13:04 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 27 Jul 2020 19:26:56 +0000 (12:26 -0700)
In ef100_reset(), make the MCDI call to do the reset.
Also, do a reset at start-of-day during probe, to put the function in
 a clean state.

Signed-off-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sfc/ef100_nic.c

index bb246acca574e979ef47eb4644944df678210d63..5e6a8337a336e5d24698ace99093447c00edbfc4 100644 (file)
@@ -332,6 +332,10 @@ static int ef100_reset(struct efx_nic *efx, enum reset_type reset_type)
                __clear_bit(reset_type, &efx->reset_pending);
                rc = dev_open(efx->net_dev, NULL);
        } else if (reset_type == RESET_TYPE_ALL) {
+               rc = efx_mcdi_reset(efx, reset_type);
+               if (rc)
+                       return rc;
+
                netif_device_attach(efx->net_dev);
 
                rc = dev_open(efx->net_dev, NULL);
@@ -466,6 +470,11 @@ static int ef100_probe_main(struct efx_nic *efx)
        }
        if (rc)
                goto fail;
+       /* Reset (most) configuration for this function */
+       rc = efx_mcdi_reset(efx, RESET_TYPE_ALL);
+       if (rc)
+               goto fail;
+
        rc = efx_ef100_init_datapath_caps(efx);
        if (rc < 0)
                goto fail;