|
@@ -352,53 +352,60 @@ static int pci_legacy_suspend(struct device *dev, pm_message_t state)
|
|
{
|
|
{
|
|
struct pci_dev * pci_dev = to_pci_dev(dev);
|
|
struct pci_dev * pci_dev = to_pci_dev(dev);
|
|
struct pci_driver * drv = pci_dev->driver;
|
|
struct pci_driver * drv = pci_dev->driver;
|
|
- int error = 0;
|
|
|
|
|
|
+
|
|
|
|
+ pci_dev->state_saved = false;
|
|
|
|
|
|
if (drv && drv->suspend) {
|
|
if (drv && drv->suspend) {
|
|
pci_power_t prev = pci_dev->current_state;
|
|
pci_power_t prev = pci_dev->current_state;
|
|
-
|
|
|
|
- pci_dev->state_saved = false;
|
|
|
|
|
|
+ int error;
|
|
|
|
|
|
error = drv->suspend(pci_dev, state);
|
|
error = drv->suspend(pci_dev, state);
|
|
suspend_report_result(drv->suspend, error);
|
|
suspend_report_result(drv->suspend, error);
|
|
if (error)
|
|
if (error)
|
|
return error;
|
|
return error;
|
|
|
|
|
|
- if (pci_dev->state_saved)
|
|
|
|
- goto Fixup;
|
|
|
|
-
|
|
|
|
- if (pci_dev->current_state != PCI_D0
|
|
|
|
|
|
+ if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
|
|
&& pci_dev->current_state != PCI_UNKNOWN) {
|
|
&& pci_dev->current_state != PCI_UNKNOWN) {
|
|
WARN_ONCE(pci_dev->current_state != prev,
|
|
WARN_ONCE(pci_dev->current_state != prev,
|
|
"PCI PM: Device state not saved by %pF\n",
|
|
"PCI PM: Device state not saved by %pF\n",
|
|
drv->suspend);
|
|
drv->suspend);
|
|
- goto Fixup;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- pci_save_state(pci_dev);
|
|
|
|
- /*
|
|
|
|
- * This is for compatibility with existing code with legacy PM support.
|
|
|
|
- */
|
|
|
|
- pci_pm_set_unknown_state(pci_dev);
|
|
|
|
-
|
|
|
|
- Fixup:
|
|
|
|
pci_fixup_device(pci_fixup_suspend, pci_dev);
|
|
pci_fixup_device(pci_fixup_suspend, pci_dev);
|
|
|
|
|
|
- return error;
|
|
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
|
|
static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
|
|
{
|
|
{
|
|
struct pci_dev * pci_dev = to_pci_dev(dev);
|
|
struct pci_dev * pci_dev = to_pci_dev(dev);
|
|
struct pci_driver * drv = pci_dev->driver;
|
|
struct pci_driver * drv = pci_dev->driver;
|
|
- int error = 0;
|
|
|
|
|
|
|
|
if (drv && drv->suspend_late) {
|
|
if (drv && drv->suspend_late) {
|
|
|
|
+ pci_power_t prev = pci_dev->current_state;
|
|
|
|
+ int error;
|
|
|
|
+
|
|
error = drv->suspend_late(pci_dev, state);
|
|
error = drv->suspend_late(pci_dev, state);
|
|
suspend_report_result(drv->suspend_late, error);
|
|
suspend_report_result(drv->suspend_late, error);
|
|
|
|
+ if (error)
|
|
|
|
+ return error;
|
|
|
|
+
|
|
|
|
+ if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
|
|
|
|
+ && pci_dev->current_state != PCI_UNKNOWN) {
|
|
|
|
+ WARN_ONCE(pci_dev->current_state != prev,
|
|
|
|
+ "PCI PM: Device state not saved by %pF\n",
|
|
|
|
+ drv->suspend_late);
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- return error;
|
|
|
|
|
|
+
|
|
|
|
+ if (!pci_dev->state_saved)
|
|
|
|
+ pci_save_state(pci_dev);
|
|
|
|
+
|
|
|
|
+ pci_pm_set_unknown_state(pci_dev);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int pci_legacy_resume_early(struct device *dev)
|
|
static int pci_legacy_resume_early(struct device *dev)
|
|
@@ -460,7 +467,6 @@ static void pci_pm_default_suspend(struct pci_dev *pci_dev)
|
|
/* Disable non-bridge devices without PM support */
|
|
/* Disable non-bridge devices without PM support */
|
|
if (!pci_is_bridge(pci_dev))
|
|
if (!pci_is_bridge(pci_dev))
|
|
pci_disable_enabled_device(pci_dev);
|
|
pci_disable_enabled_device(pci_dev);
|
|
- pci_save_state(pci_dev);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev)
|
|
static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev)
|
|
@@ -526,24 +532,14 @@ static int pci_pm_suspend(struct device *dev)
|
|
if (error)
|
|
if (error)
|
|
return error;
|
|
return error;
|
|
|
|
|
|
- if (pci_dev->state_saved)
|
|
|
|
- goto Fixup;
|
|
|
|
-
|
|
|
|
- if (pci_dev->current_state != PCI_D0
|
|
|
|
|
|
+ if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
|
|
&& pci_dev->current_state != PCI_UNKNOWN) {
|
|
&& pci_dev->current_state != PCI_UNKNOWN) {
|
|
WARN_ONCE(pci_dev->current_state != prev,
|
|
WARN_ONCE(pci_dev->current_state != prev,
|
|
"PCI PM: State of device not saved by %pF\n",
|
|
"PCI PM: State of device not saved by %pF\n",
|
|
pm->suspend);
|
|
pm->suspend);
|
|
- goto Fixup;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- if (!pci_dev->state_saved) {
|
|
|
|
- pci_save_state(pci_dev);
|
|
|
|
- if (!pci_is_bridge(pci_dev))
|
|
|
|
- pci_prepare_to_sleep(pci_dev);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
Fixup:
|
|
Fixup:
|
|
pci_fixup_device(pci_fixup_suspend, pci_dev);
|
|
pci_fixup_device(pci_fixup_suspend, pci_dev);
|
|
|
|
|
|
@@ -553,21 +549,41 @@ static int pci_pm_suspend(struct device *dev)
|
|
static int pci_pm_suspend_noirq(struct device *dev)
|
|
static int pci_pm_suspend_noirq(struct device *dev)
|
|
{
|
|
{
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
- struct device_driver *drv = dev->driver;
|
|
|
|
- int error = 0;
|
|
|
|
|
|
+ struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
|
|
|
|
|
|
if (pci_has_legacy_pm_support(pci_dev))
|
|
if (pci_has_legacy_pm_support(pci_dev))
|
|
return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
|
|
return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
|
|
|
|
|
|
- if (drv && drv->pm && drv->pm->suspend_noirq) {
|
|
|
|
- error = drv->pm->suspend_noirq(dev);
|
|
|
|
- suspend_report_result(drv->pm->suspend_noirq, error);
|
|
|
|
|
|
+ if (!pm)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
|
|
+ if (pm->suspend_noirq) {
|
|
|
|
+ pci_power_t prev = pci_dev->current_state;
|
|
|
|
+ int error;
|
|
|
|
+
|
|
|
|
+ error = pm->suspend_noirq(dev);
|
|
|
|
+ suspend_report_result(pm->suspend_noirq, error);
|
|
|
|
+ if (error)
|
|
|
|
+ return error;
|
|
|
|
+
|
|
|
|
+ if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
|
|
|
|
+ && pci_dev->current_state != PCI_UNKNOWN) {
|
|
|
|
+ WARN_ONCE(pci_dev->current_state != prev,
|
|
|
|
+ "PCI PM: State of device not saved by %pF\n",
|
|
|
|
+ pm->suspend_noirq);
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
- if (!error)
|
|
|
|
- pci_pm_set_unknown_state(pci_dev);
|
|
|
|
|
|
+ if (!pci_dev->state_saved) {
|
|
|
|
+ pci_save_state(pci_dev);
|
|
|
|
+ if (!pci_is_bridge(pci_dev))
|
|
|
|
+ pci_prepare_to_sleep(pci_dev);
|
|
|
|
+ }
|
|
|
|
|
|
- return error;
|
|
|
|
|
|
+ pci_pm_set_unknown_state(pci_dev);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int pci_pm_resume_noirq(struct device *dev)
|
|
static int pci_pm_resume_noirq(struct device *dev)
|
|
@@ -650,9 +666,6 @@ static int pci_pm_freeze(struct device *dev)
|
|
return error;
|
|
return error;
|
|
}
|
|
}
|
|
|
|
|
|
- if (!pci_dev->state_saved)
|
|
|
|
- pci_save_state(pci_dev);
|
|
|
|
-
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -660,20 +673,25 @@ static int pci_pm_freeze_noirq(struct device *dev)
|
|
{
|
|
{
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct device_driver *drv = dev->driver;
|
|
struct device_driver *drv = dev->driver;
|
|
- int error = 0;
|
|
|
|
|
|
|
|
if (pci_has_legacy_pm_support(pci_dev))
|
|
if (pci_has_legacy_pm_support(pci_dev))
|
|
return pci_legacy_suspend_late(dev, PMSG_FREEZE);
|
|
return pci_legacy_suspend_late(dev, PMSG_FREEZE);
|
|
|
|
|
|
if (drv && drv->pm && drv->pm->freeze_noirq) {
|
|
if (drv && drv->pm && drv->pm->freeze_noirq) {
|
|
|
|
+ int error;
|
|
|
|
+
|
|
error = drv->pm->freeze_noirq(dev);
|
|
error = drv->pm->freeze_noirq(dev);
|
|
suspend_report_result(drv->pm->freeze_noirq, error);
|
|
suspend_report_result(drv->pm->freeze_noirq, error);
|
|
|
|
+ if (error)
|
|
|
|
+ return error;
|
|
}
|
|
}
|
|
|
|
|
|
- if (!error)
|
|
|
|
- pci_pm_set_unknown_state(pci_dev);
|
|
|
|
|
|
+ if (!pci_dev->state_saved)
|
|
|
|
+ pci_save_state(pci_dev);
|
|
|
|
|
|
- return error;
|
|
|
|
|
|
+ pci_pm_set_unknown_state(pci_dev);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int pci_pm_thaw_noirq(struct device *dev)
|
|
static int pci_pm_thaw_noirq(struct device *dev)
|
|
@@ -716,7 +734,6 @@ static int pci_pm_poweroff(struct device *dev)
|
|
{
|
|
{
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
|
|
struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
|
|
- int error = 0;
|
|
|
|
|
|
|
|
if (pci_has_legacy_pm_support(pci_dev))
|
|
if (pci_has_legacy_pm_support(pci_dev))
|
|
return pci_legacy_suspend(dev, PMSG_HIBERNATE);
|
|
return pci_legacy_suspend(dev, PMSG_HIBERNATE);
|
|
@@ -729,33 +746,44 @@ static int pci_pm_poweroff(struct device *dev)
|
|
pci_dev->state_saved = false;
|
|
pci_dev->state_saved = false;
|
|
|
|
|
|
if (pm->poweroff) {
|
|
if (pm->poweroff) {
|
|
|
|
+ int error;
|
|
|
|
+
|
|
error = pm->poweroff(dev);
|
|
error = pm->poweroff(dev);
|
|
suspend_report_result(pm->poweroff, error);
|
|
suspend_report_result(pm->poweroff, error);
|
|
|
|
+ if (error)
|
|
|
|
+ return error;
|
|
}
|
|
}
|
|
|
|
|
|
- if (!pci_dev->state_saved && !pci_is_bridge(pci_dev))
|
|
|
|
- pci_prepare_to_sleep(pci_dev);
|
|
|
|
-
|
|
|
|
Fixup:
|
|
Fixup:
|
|
pci_fixup_device(pci_fixup_suspend, pci_dev);
|
|
pci_fixup_device(pci_fixup_suspend, pci_dev);
|
|
|
|
|
|
- return error;
|
|
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int pci_pm_poweroff_noirq(struct device *dev)
|
|
static int pci_pm_poweroff_noirq(struct device *dev)
|
|
{
|
|
{
|
|
|
|
+ struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct device_driver *drv = dev->driver;
|
|
struct device_driver *drv = dev->driver;
|
|
- int error = 0;
|
|
|
|
|
|
|
|
if (pci_has_legacy_pm_support(to_pci_dev(dev)))
|
|
if (pci_has_legacy_pm_support(to_pci_dev(dev)))
|
|
return pci_legacy_suspend_late(dev, PMSG_HIBERNATE);
|
|
return pci_legacy_suspend_late(dev, PMSG_HIBERNATE);
|
|
|
|
|
|
- if (drv && drv->pm && drv->pm->poweroff_noirq) {
|
|
|
|
|
|
+ if (!drv || !drv->pm)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
|
|
+ if (drv->pm->poweroff_noirq) {
|
|
|
|
+ int error;
|
|
|
|
+
|
|
error = drv->pm->poweroff_noirq(dev);
|
|
error = drv->pm->poweroff_noirq(dev);
|
|
suspend_report_result(drv->pm->poweroff_noirq, error);
|
|
suspend_report_result(drv->pm->poweroff_noirq, error);
|
|
|
|
+ if (error)
|
|
|
|
+ return error;
|
|
}
|
|
}
|
|
|
|
|
|
- return error;
|
|
|
|
|
|
+ if (!pci_dev->state_saved && !pci_is_bridge(pci_dev))
|
|
|
|
+ pci_prepare_to_sleep(pci_dev);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int pci_pm_restore_noirq(struct device *dev)
|
|
static int pci_pm_restore_noirq(struct device *dev)
|