Commit 063ad9bc authored by Vaibhav Gupta's avatar Vaibhav Gupta Committed by David S. Miller

netxen_nic: use generic power management

With legacy PM, drivers themselves were responsible for managing the
device's power states and takes care of register states. And they use PCI
helper functions to do it.

After upgrading to the generic structure, PCI core will take care of
required tasks and drivers should do only device-specific operations.

In this driver:
netxen_nic_resume() calls netxen_nic_attach_func() which then invokes PCI
helper functions like pci_enable_device(), pci_set_power_state() and
pci_restore_state(). Other function:
 - netxen_io_slot_reset()
also calls netxen_nic_attach_func().

Also, netxen_io_slot_reset() returns specific value based on the return value
of netxen_nic_attach_func() as whole. Thus, cannot simply move some piece of
code from netxen_nic_attach_func() to it.

Hence, define a new function netxen_nic_attach_late_func() to do the tasks
which has to be done after PCI helper functions have done their job.

Now, netxen_nic_attach_func() invokes netxen_nic_attach_late_func(), thus
netxen_io_slot_reset() behaves normally.
And, netxen_nic_resume() calls netxen_nic_attach_late_func() to avoid PCI
helper functions calls.

Compile-tested only.
Signed-off-by: default avatarVaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b20a6b29
...@@ -1695,19 +1695,13 @@ static void netxen_nic_detach_func(struct netxen_adapter *adapter) ...@@ -1695,19 +1695,13 @@ static void netxen_nic_detach_func(struct netxen_adapter *adapter)
clear_bit(__NX_RESETTING, &adapter->state); clear_bit(__NX_RESETTING, &adapter->state);
} }
static int netxen_nic_attach_func(struct pci_dev *pdev) static int netxen_nic_attach_late_func(struct pci_dev *pdev)
{ {
struct netxen_adapter *adapter = pci_get_drvdata(pdev); struct netxen_adapter *adapter = pci_get_drvdata(pdev);
struct net_device *netdev = adapter->netdev; struct net_device *netdev = adapter->netdev;
int err; int err;
err = pci_enable_device(pdev);
if (err)
return err;
pci_set_power_state(pdev, PCI_D0);
pci_set_master(pdev); pci_set_master(pdev);
pci_restore_state(pdev);
adapter->ahw.crb_win = -1; adapter->ahw.crb_win = -1;
adapter->ahw.ocm_win = -1; adapter->ahw.ocm_win = -1;
...@@ -1741,6 +1735,20 @@ static int netxen_nic_attach_func(struct pci_dev *pdev) ...@@ -1741,6 +1735,20 @@ static int netxen_nic_attach_func(struct pci_dev *pdev)
return err; return err;
} }
static int netxen_nic_attach_func(struct pci_dev *pdev)
{
int err;
err = pci_enable_device(pdev);
if (err)
return err;
pci_set_power_state(pdev, PCI_D0);
pci_restore_state(pdev);
return netxen_nic_attach_late_func(pdev);
}
static pci_ers_result_t netxen_io_error_detected(struct pci_dev *pdev, static pci_ers_result_t netxen_io_error_detected(struct pci_dev *pdev,
pci_channel_state_t state) pci_channel_state_t state)
{ {
...@@ -1785,36 +1793,24 @@ static void netxen_nic_shutdown(struct pci_dev *pdev) ...@@ -1785,36 +1793,24 @@ static void netxen_nic_shutdown(struct pci_dev *pdev)
pci_disable_device(pdev); pci_disable_device(pdev);
} }
#ifdef CONFIG_PM static int __maybe_unused
static int netxen_nic_suspend(struct device *dev_d)
netxen_nic_suspend(struct pci_dev *pdev, pm_message_t state)
{ {
struct netxen_adapter *adapter = pci_get_drvdata(pdev); struct netxen_adapter *adapter = dev_get_drvdata(dev_d);
int retval;
netxen_nic_detach_func(adapter); netxen_nic_detach_func(adapter);
retval = pci_save_state(pdev); if (netxen_nic_wol_supported(adapter))
if (retval) device_wakeup_enable(dev_d);
return retval;
if (netxen_nic_wol_supported(adapter)) {
pci_enable_wake(pdev, PCI_D3cold, 1);
pci_enable_wake(pdev, PCI_D3hot, 1);
}
pci_disable_device(pdev);
pci_set_power_state(pdev, pci_choose_state(pdev, state));
return 0; return 0;
} }
static int static int __maybe_unused
netxen_nic_resume(struct pci_dev *pdev) netxen_nic_resume(struct device *dev_d)
{ {
return netxen_nic_attach_func(pdev); return netxen_nic_attach_late_func(to_pci_dev(dev_d));
} }
#endif
static int netxen_nic_open(struct net_device *netdev) static int netxen_nic_open(struct net_device *netdev)
{ {
...@@ -3448,15 +3444,16 @@ static const struct pci_error_handlers netxen_err_handler = { ...@@ -3448,15 +3444,16 @@ static const struct pci_error_handlers netxen_err_handler = {
.slot_reset = netxen_io_slot_reset, .slot_reset = netxen_io_slot_reset,
}; };
static SIMPLE_DEV_PM_OPS(netxen_nic_pm_ops,
netxen_nic_suspend,
netxen_nic_resume);
static struct pci_driver netxen_driver = { static struct pci_driver netxen_driver = {
.name = netxen_nic_driver_name, .name = netxen_nic_driver_name,
.id_table = netxen_pci_tbl, .id_table = netxen_pci_tbl,
.probe = netxen_nic_probe, .probe = netxen_nic_probe,
.remove = netxen_nic_remove, .remove = netxen_nic_remove,
#ifdef CONFIG_PM .driver.pm = &netxen_nic_pm_ops,
.suspend = netxen_nic_suspend,
.resume = netxen_nic_resume,
#endif
.shutdown = netxen_nic_shutdown, .shutdown = netxen_nic_shutdown,
.err_handler = &netxen_err_handler .err_handler = &netxen_err_handler
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment