Skip to content

Commit

Permalink
be2net: refactor function initalization sequence into be_func_init()
Browse files Browse the repository at this point in the history
Function initialization sequence is executed in be_probe(), be_resume
and be_eeh_resume(). Move this code to a new routine called be_func_init()
to prevent code duplication.

Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
Signed-off-by: Kalesh AP <kalesh.purayil@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sathya Perla authored and David S. Miller committed Feb 23, 2015
1 parent 6b085ba commit ca3de6b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 44 deletions.
4 changes: 4 additions & 0 deletions drivers/net/ethernet/emulex/benet/be_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,10 @@ int be_fw_wait_ready(struct be_adapter *adapter)
}

do {
/* There's no means to poll POST state on BE2/3 VFs */
if (BEx_chip(adapter) && be_virtfn(adapter))
return 0;

stage = be_POST_stage_get(adapter);
if (stage == POST_STAGE_ARMFW_RDY)
return 0;
Expand Down
76 changes: 32 additions & 44 deletions drivers/net/ethernet/emulex/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -5250,6 +5250,35 @@ static inline char *nic_name(struct pci_dev *pdev)
}
}

/* Wait for the FW to be ready and perform the required initialization */
static int be_func_init(struct be_adapter *adapter)
{
int status;

status = be_fw_wait_ready(adapter);
if (status)
return status;

if (be_reset_required(adapter)) {
status = be_cmd_reset_function(adapter);
if (status)
return status;

/* Wait for interrupts to quiesce after an FLR */
msleep(100);
}

/* Tell FW we're ready to fire cmds */
status = be_cmd_fw_init(adapter);
if (status)
return status;

/* Allow interrupts for other ULPs running on NIC function */
be_intr_set(adapter, true);

return 0;
}

static int be_probe(struct pci_dev *pdev, const struct pci_device_id *pdev_id)
{
struct be_adapter *adapter;
Expand Down Expand Up @@ -5301,27 +5330,7 @@ static int be_probe(struct pci_dev *pdev, const struct pci_device_id *pdev_id)
if (status)
goto unmap_bars;

/* sync up with fw's ready state */
if (be_physfn(adapter)) {
status = be_fw_wait_ready(adapter);
if (status)
goto drv_cleanup;
}

if (be_reset_required(adapter)) {
status = be_cmd_reset_function(adapter);
if (status)
goto drv_cleanup;

/* Wait for interrupts to quiesce after an FLR */
msleep(100);
}

/* Allow interrupts for other ULPs running on NIC function */
be_intr_set(adapter, true);

/* tell fw we're ready to fire cmds */
status = be_cmd_fw_init(adapter);
status = be_func_init(adapter);
if (status)
goto drv_cleanup;

Expand Down Expand Up @@ -5401,17 +5410,7 @@ static int be_resume(struct pci_dev *pdev)
pci_set_power_state(pdev, PCI_D0);
pci_restore_state(pdev);

status = be_fw_wait_ready(adapter);
if (status)
return status;

status = be_cmd_reset_function(adapter);
if (status)
return status;

be_intr_set(adapter, true);
/* tell fw we're ready to fire cmds */
status = be_cmd_fw_init(adapter);
status = be_func_init(adapter);
if (status)
return status;

Expand Down Expand Up @@ -5529,18 +5528,7 @@ static void be_eeh_resume(struct pci_dev *pdev)

pci_save_state(pdev);

status = be_cmd_reset_function(adapter);
if (status)
goto err;

/* On some BE3 FW versions, after a HW reset,
* interrupts will remain disabled for each function.
* So, explicitly enable interrupts
*/
be_intr_set(adapter, true);

/* tell fw we're ready to fire cmds */
status = be_cmd_fw_init(adapter);
status = be_func_init(adapter);
if (status)
goto err;

Expand Down

0 comments on commit ca3de6b

Please sign in to comment.