ARM: mxs: warnings on PM resume
Stefan Wahren
stefan.wahren at i2se.com
Sun Jun 12 14:45:50 PDT 2016
Hi,
> Russell King - ARM Linux <linux at armlinux.org.uk> hat am 12. Juni 2016 um 15:54
> geschrieben:
>
>
> On Sun, Jun 12, 2016 at 12:27:02PM +0200, Stefan Wahren wrote:
> > Hi Rafael,
> >
> > > "Rafael J. Wysocki" <rjw at rjwysocki.net> hat am 11. Juni 2016 um 03:42
> > > geschrieben:
> > >
> > > Interrupts should not be enabled before syscore_resume() is called, but
> > > they
> > > are, apparently by the platform code.
> >
> > sure, but it isn't that simple. I can't reproduce the warning everytime. At
> > least i need 5 tries and more to reproduce it.
> >
> > I place the following code in the suspend code, before the low level suspend
> > code in SRAM gets executed:
> >
> > if (!irqs_disabled())
> > pr_info("IRQs not disabled before suspend\n");
> >
> > The info message above only get printed if the warning "Interrupts enabled
> > before system core resume." appears.
> >
> > After that i dumped all enabled IRQs (at the same code place) from the
> > interrupt
> > collector (irqchip) and compared them with cat /proc/interrupts.
>
> This isn't about the state of the interrupt controller. It's about
> the state of the IRQ mask bit in the CPUs CPSR.
>
> irq_disabled() returns true when the I bit in CPSR is set, false
> otherwise.
>
> What it's pointing towards is some driver being unreasonable, and
> clearing the CPUs CPSR I bit after the core PM code has set it. Causes
> can be using spin_lock_irq()/spin_unlock_irq()/local_irq_enable() etc
> inappropriately, rather than using the irqsave/irqrestore versions.
i finally found the reason for the warning: clk_get_sys was called inside of
mxs_suspend_enter.
After moving it into the init function the issue disappear.
More information about the linux-arm-kernel
mailing list