* pmu_suspend/resume
@ 2001-08-12 3:57 Ira Weiny
2001-08-12 17:36 ` pmu_suspend/resume Benjamin Herrenschmidt
0 siblings, 1 reply; 2+ messages in thread
From: Ira Weiny @ 2001-08-12 3:57 UTC (permalink / raw)
To: linuxppc-dev
I have been using pmu_suspend and pmu_resume to keep my TiBook from
turning off when debugging some kernel stuff. Is this ok?
The reason I ask is that pmu_suspend seems to have the desired effect,
temporarily turning off the PMU. But pmu_resume does not seem to leave
the PMU in a stable state. Now I realize that I am debuging a kernel
and that it could/probably is other factors which are causing these
problems but I just wanted to make sure that there is not some better
way of disabiling the PMU or that I might be using these functions
incorrectly.
Basically:
pmu_suspend();
/* suspicious/known bad code here */
pmu_resume();
Just like that right?
Thanks,
Ira Weiny
iweiny@acm.org
** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: pmu_suspend/resume
2001-08-12 3:57 pmu_suspend/resume Ira Weiny
@ 2001-08-12 17:36 ` Benjamin Herrenschmidt
0 siblings, 0 replies; 2+ messages in thread
From: Benjamin Herrenschmidt @ 2001-08-12 17:36 UTC (permalink / raw)
To: Ira Weiny, linuxppc-dev
>
>I have been using pmu_suspend and pmu_resume to keep my TiBook from
>turning off when debugging some kernel stuff. Is this ok?
>
>The reason I ask is that pmu_suspend seems to have the desired effect,
>temporarily turning off the PMU. But pmu_resume does not seem to leave
>the PMU in a stable state. Now I realize that I am debuging a kernel
>and that it could/probably is other factors which are causing these
>problems but I just wanted to make sure that there is not some better
>way of disabiling the PMU or that I might be using these functions
>incorrectly.
pmu_suspend waits for the PMU to be idle, then disable the PMU
"request" interrupt. The goal here is to make sure there's no
asynchronous PMU activity going on at a point where we might
switch interrupts off for a long time.
If we are in the middle of a PMU request and interrupts are
switched off long enough, it will timeout and shut down the
machine.
You should not need to use them unless you expect to disable
interrupts for a long time, which is usually a bad thing to do.
If you are tracking a problem where the PMU is shutting you
off while running a piece of code, then it may be useful.
Note that if you enter xmon, then xmon will regulary call
pmu_poll to keep it happy, despite having interrupts disabled.
Ben.
BTW. Obviously, pmu_resume puts things back to normal.
Ben.
** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-08-12 17:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-08-12 3:57 pmu_suspend/resume Ira Weiny
2001-08-12 17:36 ` pmu_suspend/resume Benjamin Herrenschmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).