Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1623562

Re: PCI / PM: Crashes in PME scan during system suspend

From Lukas Wunner <lukas@wunner.de>
Newsgroups linux.kernel
Subject Re: PCI / PM: Crashes in PME scan during system suspend
Date 2017-04-14 10:30 +0200
Message-ID <tw4M9-7dE-7@gated-at.bofh.it> (permalink)
References <taHKx-8qE-21@gated-at.bofh.it> <taJCF-1jr-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Feb 14, 2017 at 12:26:01PM +0100, Rafael J. Wysocki wrote:
> On Tuesday, February 14, 2017 10:31:38 AM Geert Uytterhoeven wrote:
> > Laurent Pinchart reported that r8a7790/Lager crashes during suspend tests.
> > 
> > I managed to reproduce the issue on r8a7791/koelsch:
> >   - It only happens during suspend tests, after writing either "platform"
> >     or "processors" to /sys/power/pm_test,
> >   - It does not (or is less likely) to happen during full system suspend
> >     ("core" or "none").
> > 
> > More investigation shows this happens when the PME scan runs, once per
> > second.  During PME scan, the PCI host bridge (rcar-pci) registers are
> > accessed while the host bridge's module clock has already been disabled,
> > leading to a crash.
> 
> OK, so clearly PME scans should be suspended before the host bridge
> registers become inaccessible.
> 
> Another question, though, is whether or not PME scans are actually necessary
> on the affected platforms at all.

I'm not seeing a fix for this in linux-next, am I missing something?
Has anyone looked into it or is the issue still open?

Below is a tentative patch which moves PME polling to a freezable
workqueue, so it is frozen before the host bridge is suspended.
Geert, Laurent, could you test this?

The patch may be problematic in that pci_pme_list_scan() acquires
pci_pme_list_mutex, which is also acquired by pci_pme_active(),
which gets called when devices are suspended -- *after* the worker
has been frozen.  I'm not really familiar with the freezer, can it
happen that the worker is frozen while holding the mutex?  If so
this would deadlock.  Rafael?

Alternative approaches would be to
(a) skip devices in pci_pme_list_scan() if their is_prepared or
    is_suspended flags are set, or
(b) disable PME polling via a PM notifier.

The latter seems preferable performance-wise.  (To avoid checking
these flags once per second.)

Best regards,

Lukas

-- >8 --

diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 7904d02..d35c016 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -1782,8 +1782,8 @@ static void pci_pme_list_scan(struct work_struct *work)
 		}
 	}
 	if (!list_empty(&pci_pme_list))
-		schedule_delayed_work(&pci_pme_work,
-				      msecs_to_jiffies(PME_TIMEOUT));
+		queue_delayed_work(system_freezable_wq, &pci_pme_work,
+				   msecs_to_jiffies(PME_TIMEOUT));
 	mutex_unlock(&pci_pme_list_mutex);
 }
 
@@ -1848,8 +1848,9 @@ void pci_pme_active(struct pci_dev *dev, bool enable)
 			mutex_lock(&pci_pme_list_mutex);
 			list_add(&pme_dev->list, &pci_pme_list);
 			if (list_is_singular(&pci_pme_list))
-				schedule_delayed_work(&pci_pme_work,
-						      msecs_to_jiffies(PME_TIMEOUT));
+				queue_delayed_work(system_freezable_wq,
+						   &pci_pme_work,
+						   msecs_to_jiffies(PME_TIMEOUT));
 			mutex_unlock(&pci_pme_list_mutex);
 		} else {
 			mutex_lock(&pci_pme_list_mutex);

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: PCI / PM: Crashes in PME scan during system suspend Lukas Wunner <lukas@wunner.de> - 2017-04-14 10:30 +0200
  Re: PCI / PM: Crashes in PME scan during system suspend "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2017-04-15 00:40 +0200
    Re: PCI / PM: Crashes in PME scan during system suspend Lukas Wunner <lukas@wunner.de> - 2017-04-16 10:00 +0200
      Re: PCI / PM: Crashes in PME scan during system suspend Geert Uytterhoeven <geert@linux-m68k.org> - 2017-04-18 09:00 +0200
        Re: PCI / PM: Crashes in PME scan during system suspend "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2017-04-18 16:20 +0200
          Re: PCI / PM: Crashes in PME scan during system suspend Lukas Wunner <lukas@wunner.de> - 2017-04-18 20:40 +0200

csiph-web