Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932574AbXBLEId (ORCPT ); Sun, 11 Feb 2007 23:08:33 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932577AbXBLEId (ORCPT ); Sun, 11 Feb 2007 23:08:33 -0500 Received: from nigel.suspend2.net ([203.171.70.205]:60093 "EHLO nigel.suspend2.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932574AbXBLEIc (ORCPT ); Sun, 11 Feb 2007 23:08:32 -0500 Subject: Re: NAK new drivers without proper power management? From: Nigel Cunningham Reply-To: nigel@nigel.suspend2.net To: Tilman Schmidt Cc: "Rafael J. Wysocki" , Pavel Machek , Arjan van de Ven , LKML In-Reply-To: <45CFB06B.5080102@imap.cc> References: <1171058269.1484.64.camel@nigel.suspend2.net> <1171059433.8675.195.camel@laptopd505.fenrus.org> <20070210193851.GA3956@ucw.cz> <200702102320.39531.rjw@sisk.pl> <1171147026.19894.16.camel@nigel.suspend2.net> <45CE5934.3020801@imap.cc> <1171233454.4493.74.camel@nigel.suspend2.net> <45CFB06B.5080102@imap.cc> Content-Type: text/plain Date: Mon, 12 Feb 2007 15:08:29 +1100 Message-Id: <1171253309.5473.15.camel@nigel.suspend2.net> Mime-Version: 1.0 X-Mailer: Evolution 2.8.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4483 Lines: 89 Howdy! On Mon, 2007-02-12 at 01:10 +0100, Tilman Schmidt wrote: > Hi, > > Am 11.02.2007 23:37 schrieb Nigel Cunningham: > > On Sun, 2007-02-11 at 00:45 +0100, Tilman Schmidt wrote: > >> Am 10.02.2007 23:37 schrieb Nigel Cunningham: > >>> If your device requires power management, and you know it requires power > >>> management, why not just implement power management? [...] > >> Like it or not, power management is far from trivial, and people > >> writing device drivers have limited resources. [...] > > It's not that complex. All we're really talking about is a bit of extra > > code to cleanup and configure hardware state; things that the driver > > author already knows how to do. S3 might require a bit more > > initialisation if firmware needs to be reloaded or more extensive > > configuration needs to be done, but if there's firmware to be loaded, > > there is a reasonably good probability that we loaded it from Linux to > > start with anyway. > > You are assuming a perfect world where driver authors have complete > knowledge of their devices. In reality, many drivers (including > those I have the mixed pleasure of maintaining) are based at least > in part on reverse engineering, and managing power states may well > fall into the domain of things not yet sufficiently reverse > engineered. Nope. I'm assuming that the driver author knows what needs to be done to get the driver out of whatever state the BIOS puts it in to start with, and into an operational state, and that they therefore also know what needs to be done to take it out of the operational state again. I'm admitting that there's also another state - the post suspend-to-ram driver state - that they may not know how to deal with. But for suspend-to-disk, if you know how to get the driver to work in the first place, you know enough to stop it working (.suspend) and start it up again (.resume) for the hibernate case at least. I'm not assuming that you know enough to be able to put the driver into a low state and get it out again. This is definitely preferable, and at least possibly essential for suspend to ram, but for some unknown reason I'm quite hibernation focused, and for that, just the above is sufficient. > >> Also, in your argument you neglected a few cases: > >> - What if my device does not require power management? > > > > Then you as a generic routine that does nothing but return success > > (potentially shared with other drivers that are in the same situation). > > But if I just write an empty routine like that I open myself up to > criticism along the lines of "writing dummy routines just in order > to shut up kernel warnings". BTDT. Well, it might not be completely empty. I think someone already pointed out that there's a minimal workset for the pci bus that pci drivers would want to invoke. But we wouldn't (rightly) accuse you of such things if we decided that the policy was "Every driver ought to have a resume routine, even if it's just a minimal I-just-work route". > >> - What if I don't know whether my device requires power management? > > > > The questions are straight forward: Is there hardware state that needs > > to be configured if you've just booted the computer and nothing else has > > touched it? If so, that needs to be done in a resume method. Do you need > > to clean up state prior to doing the things in the resume method, or > > otherwise do things to quiesce the driver? If so, they will need to be > > done in the suspend method. The result will be roughly similar to what > > you do for module load/unload, except maybe less complete in some cases. > > I don't doubt your basic assessment. However it doesn't translate that > easily into a real implementation. In my case, I maintain a USB driver, > so I have to deal with USB specifics of suspend/resume which happen not > to be that well documented. My driver provides an isdn4linux device but > isdn4linux knows nothing about suspend/resume so I am on my own on how > to reconcile the two. The device itself, though in turn far from trivial, > is actually the least of my worries. Mmm, so that's a case where we need to prod those who write documentation and bus support first. You're probably closer! :) Regards, Nigel - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/