From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Adam Belay <abelay@novell.com>
Cc: Linus Torvalds <torvalds@osdl.org>, Karsten Keil <kkeil@suse.de>,
Andrew Morton <akpm@osdl.org>, Jeff Garzik <jgarzik@pobox.com>,
Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] fix tulip suspend/resume
Date: Tue, 07 Jun 2005 14:26:53 +1000 [thread overview]
Message-ID: <1118118413.6850.57.camel@gaston> (raw)
In-Reply-To: <1118116682.3245.45.camel@localhost.localdomain>
> We don't support PCI bus power management, so we don't have any idea
> what the parent is doing.
Ugh ? You don't know, thus you can't assume it's working. A rule of the
device model is, once you have been suspended, you can't assume your
parent is still there and thus that you can talk to your device. On ppc
or embedded, the arch has ways to shut down clocks and/or power to
entire bus segment and that may have happened anytime.
> Also, we don't have a pci bridge driver (one
> that uses "struct pci_driver" to handle bridge resumes properly. I'm
> working on these issues.
I know, but there may be arch thingies going on anyway. So the basic
"model" of turning back the chip on is wrong.
> I also have some changes in mind for the PM
> model to make it more friendly to the power dependency problem. So in
> short, I think this is fine for now, as every other driver is doing it
> incorrectly, and in general it is working ok for suspend and resume.
No. just return IRQ_NONE. That is the only sane thing to do.
> They're all broken in this respect, and we need to gradually fix them.
> But first we need the infrastructure to make this possible.
No. That specific bit can be easily fixed for PCI drivers like that.
Just return IRQ_NONE, you shouldn't be emitting any IRQ yourself anyway.
> I haven't decided yet, but we could probably hide much of this inside
> pci_set_power_state().
No need.
> > Also, isn't that racy vs. the code in suspend() anyway ? You need to
> > make sure you program your chip not to issue any interrupt and
> > synchronize proerly, then just "ignore" (don't handle) interrupts coming
> > in as they should not be for you.
>
> Yeah, that's exactly what I had in mind. As I understand, tulip_down
> does tells the chip not to issue interrupts. Then we unregister the
> interrupt handler before powering down the device to avoid any issues
> with shared interrupts. The best way of ignoring interrupts is to
> unregister the handler. Do you still see a race condition?
Well, if we have told the chip not to issue interrupts, then it's safe
to just have the handler return IRQ_NONE... we don't even need to
unregister the handler. (That's actually equivalent to some regard).
To not be racy, the best is to synchronize though. Something like this
pseudo code:
suspend():
1) chip_disable_irq(); /* disable emission of IRQs on the chip,
* maybe do that & below in a spinlock_irq
* to make sure no other driver code path
* re-enables them
*/
2) me->sleeping = 1; /* tells the rest of the driver I'm not there
* anymore, can be some netif_* thingy.
*/
3) synchronize_irq(me->irq); /* make sure above is visible to IRQs and
* any pending one competes on another
* CPU
*/
4) pci_set_power_state(), maybe free_irq(), etc...
my_irq_handler():
if (me->sleeping)
return IRQ_NONE;
That's it.
Ben.
next prev parent reply other threads:[~2005-06-07 4:29 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-06-06 22:46 [PATCH] fix tulip suspend/resume Karsten Keil
2005-06-07 0:04 ` Linus Torvalds
2005-06-07 2:50 ` Adam Belay
2005-06-07 3:34 ` Benjamin Herrenschmidt
2005-06-07 3:58 ` Adam Belay
2005-06-07 4:26 ` Benjamin Herrenschmidt [this message]
2005-06-07 5:34 ` Adam Belay
2005-06-07 5:50 ` Benjamin Herrenschmidt
2005-06-07 10:55 ` Karsten Keil
2005-06-07 20:58 ` Adam Belay
2005-06-08 0:26 ` Benjamin Herrenschmidt
2005-06-08 2:16 ` Adam Belay
2005-06-08 12:23 ` Pavel Machek
2005-06-08 23:00 ` Benjamin Herrenschmidt
2005-06-09 0:04 ` Pavel Machek
2005-06-09 0:38 ` Adam Belay
2005-06-09 10:51 ` Pavel Machek
2005-06-09 2:49 ` Nigel Cunningham
2005-06-09 8:27 ` Karsten Keil
2005-06-08 12:19 ` Pavel Machek
2005-06-08 6:39 ` Karsten Keil
2005-06-08 18:11 ` Davide Rossetti
2005-06-09 1:48 ` Adam Belay
2005-06-07 11:52 ` Stefan Seyfried
2005-06-07 2:15 ` Benjamin Herrenschmidt
2005-06-07 2:57 ` Adam Belay
2005-06-07 3:32 ` Benjamin Herrenschmidt
2005-06-07 3:42 ` Adam Belay
2005-06-07 4:29 ` Benjamin Herrenschmidt
2005-06-07 5:03 ` Adam Belay
2005-06-07 5:51 ` Nigel Cunningham
2005-06-07 5:55 ` Benjamin Herrenschmidt
2005-06-07 15:10 ` Pavel Machek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1118118413.6850.57.camel@gaston \
--to=benh@kernel.crashing.org \
--cc=abelay@novell.com \
--cc=akpm@osdl.org \
--cc=jgarzik@pobox.com \
--cc=kkeil@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox