ksummit.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Josh Triplett <josh@joshtriplett.org>
To: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: "Brown, Len" <len.brown@intel.com>,
	"ksummit-discuss@lists.linuxfoundation.org"
	<ksummit-discuss@lists.linuxfoundation.org>,
	Alan Stern <stern@rowland.harvard.edu>,
	Kristen Carlson Accardi <kristen@linux.intel.com>,
	Grant Likely <grant.likely@linaro.org>
Subject: Re: [Ksummit-discuss] [TECH TOPIC] System-wide interface to specify the level of PM tuning
Date: Sat, 25 Jul 2015 12:50:16 -0700	[thread overview]
Message-ID: <20150725195016.GB9753@x> (raw)
In-Reply-To: <2425484.kWOCROb332@vostro.rjw.lan>

On Sat, Jul 25, 2015 at 12:36:18AM +0200, Rafael J. Wysocki wrote:
> On Wednesday, July 22, 2015 11:25:19 AM josh@joshtriplett.org wrote:
> > On Wed, Jul 22, 2015 at 07:25:40PM +0200, Rafael J. Wysocki wrote:
> > > On Wednesday, July 22, 2015 09:18:34 AM Daniel Vetter wrote:
> > > > On Wed, Jul 22, 2015 at 3:12 AM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote:
> > > > > On Tuesday, July 21, 2015 01:09:52 AM Daniel Vetter wrote:
> > > > >> On Tue, Jul 21, 2015 at 12:21 AM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote:
> > > > >> > On Friday, July 17, 2015 01:41:56 PM Daniel Vetter wrote:
> > > > >> >> On Thu, Jul 16, 2015 at 5:58 PM, Greg KH <greg@kroah.com> wrote:
> > > > >> >> > On Thu, Jul 16, 2015 at 08:53:02AM -0700, Josh Triplett wrote:
> > > > >> >> >> But the kernel already has quirk tables for various hardware, and that
> > > > >> >> >> seems appropriate to continue putting in the kernel.
> > > > >> >> >
> > > > >> >> > For some types of devices, sure.  For others, like broken USB keyboards
> > > > >> >> > that can't handle autosuspend, no.  For those we need a userspace
> > > > >> >> > _whitelist_ that udev can use.  So there's no one answer that works for
> > > > >> >> > all types of quirks.
> > > > >> >>
> > > > >> >> Whether white or blacklist or some other mixed thing doesn't really
> > > > >> >> matter. Imo the important part is that driver maintainers are in the
> > > > >> >> best position to maintain that, and pushing it out to anyone else is
> > > > >> >> just really not doing our jobs. And I think for most of these quirk
> > > > >> >> lists the kernel does seem like the most appropriate place. If the
> > > > >> >> list becomes giantic then we can move it to userspace (if that's
> > > > >> >> really a problem, afaik no one proposed yet to move device match
> > > > >> >> tables into userspace either and that's kinda the same thing really).
> > > > >> >> But as long as there's no white/black/whatever list yet starting in
> > > > >> >> the kernel is imo the right place.
> > > > >> >
> > > > >> > Well, I'm wondering, then, why i915.enable_psr is not enabled by default,
> > > > >> > for one example?
> > > > >> >
> > > > >> > Failing to enable it prevents some SoCs from using the deepest available
> > > > >> > C-states which in turn hurts battery life of the systems containing them
> > > > >> > quite a bit, so there surely is a reason to have it enabled.
> > > > >>
> > > > >> Because it's broken on a lot of machines, and it takes a pile of
> > > > >> effort to fix it.
> > > > >
> > > > > And there are quite a few subsystems having similar issues here and there.
> > > > >
> > > > > People who aren't aware of those command line/Kconfig/sysfs switches will
> > > > > never enable those features even though they may work well on their
> > > > > machines and may actually be necessary to save energy.
> > > > 
> > > > In my experience there's way too many people around who know about
> > > > these knobs but have no idea that they might be somewhat dangerous.
> > > > And then I get another bug report about a known bug just because
> > > > someone read a blog somewhere. Nowadays almost all i915 tuning knobs
> > > > are marked as _unsafe and taint your kernel if you touch them.
> > > > 
> > > > >> That work is under way now, but for a long time
> > > > >> priorities set by management where much more set on chasing the next
> > > > >> shiny thing. Took a few years of making noises about dropping it all
> > > > >> if it doesn't get fixed.
> > > > >>
> > > > >> This is actually a perfect example of what I mean with "hey it works
> > > > >> on my machine here, but I can't be bothered to fix up the corner-cases
> > > > >> so let's keep it disabled and move on". And the corner cases are hung
> > > > >> machines and frozen displays (and a few other things), and we
> > > > >> inflicted that a few times on Linus even.
> > > > >
> > > > > So among other things this topic is about a mechanism to possibly enable
> > > > > multiple things like that in one go instead of having to switch multiple
> > > > > knobs in various places (and needing to know about them in the first
> > > > > place).
> > > > 
> > > > I know, but at least for i915 I don't want it: When we know it's safe
> > > > to do we already enable all the power/performance tuning we have, and
> > > > if we know it's unsafe we don't want users to enable it themselves. If
> > > > you have a very specific product (which is not a generic distro or
> > > > anything) and have done careful testing and cross-checked with
> > > > developers then you can of course just enable these features. But then
> > > > you also don't need a new option, you can just change the driver
> > > > defaults directly.
> > > 
> > > OK
> > > 
> > > So perhaps the question should be whether or not there is any viable approach
> > > we can use to avoid or at least reduce the amount of all of the mostly manual
> > > tuning to get as much battery life from systems as they can provide.  And that
> > > cannot involve user space realistically, because some variants of it may just
> > > not do whatever we expect them to do.
> > 
> > Tunables like those in i915 aren't going to be able to use any better
> > approach, specifically because they don't work everywhere; if we had a
> > list of systems they were safe on, we'd set up a quirk list and turn
> > them on by default.  Do we have any tunables that *aren't* in that
> > category?
> 
> I really don't think so, maybe except for some corner things.
> 
> > And if so, why don't we just set their defaults to DTRT?
> 
> But we seem to have more and more tunables for things that "don't work
> everywhere", while at the same time the subset of systems where they *do* work
> is quite substantial.
> 
> In many cases we simply don't have enough information to create a black or white
> list for them, so we disable them by default and add a tunable to enable them
> "in case someone needs" them.  This bothers me a bit, because it doesn't seem
> to be sustainable in the long term.

I agree completely.

However, it seems like there's always enough information for a
whitelist, if you know at least one system it works on.  Then people can
submit patches extending the whitelist.

But in any case, this seems to argue against a global "use less power"
switch, because any one of the underlying options might potentially
break on the user's system.  Any that can be safely toggled by a master
switch should just come pre-toggled. :)

- Josh Triplett

  reply	other threads:[~2015-07-25 19:50 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-06  0:22 Rafael J. Wysocki
2015-07-06  1:21 ` Josh Triplett
2015-07-06 14:04   ` Rafael J. Wysocki
2015-07-06  1:40 ` NeilBrown
2015-07-06 14:12   ` Rafael J. Wysocki
2015-07-06 13:49     ` Iyer, Sundar
2015-07-06 14:21       ` Rafael J. Wysocki
2015-07-07  7:53         ` Jiri Kosina
2015-07-07 12:33           ` Rafael J. Wysocki
2015-07-10 17:25         ` Kevin Hilman
2015-07-12 10:01           ` Daniel Vetter
2015-07-13 23:07             ` Rafael J. Wysocki
2015-07-14 16:51               ` Daniel Vetter
2015-07-15 22:44                 ` Rafael J. Wysocki
2015-07-16  1:10                   ` Josh Triplett
2015-07-16  9:19                     ` David Woodhouse
2015-07-16 15:44                       ` Kristen Accardi
2015-07-16 15:53                         ` Josh Triplett
2015-07-16 15:58                           ` Greg KH
2015-07-17 10:34                             ` Takashi Iwai
2015-07-17 11:41                             ` Daniel Vetter
2015-07-20 22:21                               ` Rafael J. Wysocki
2015-07-20 23:09                                 ` Daniel Vetter
2015-07-22  1:12                                   ` Rafael J. Wysocki
2015-07-22  7:18                                     ` Daniel Vetter
2015-07-22 17:25                                       ` Rafael J. Wysocki
2015-07-22 18:25                                         ` josh
2015-07-24 22:36                                           ` Rafael J. Wysocki
2015-07-25 19:50                                             ` Josh Triplett [this message]
2015-07-26  0:03                                               ` Rafael J. Wysocki
2015-07-26  0:16                                                 ` Josh Triplett
2015-07-27 13:30                                                   ` Rafael J. Wysocki
2015-07-27 11:50                                               ` Jani Nikula
2015-07-06 16:33     ` Kristen Accardi

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=20150725195016.GB9753@x \
    --to=josh@joshtriplett.org \
    --cc=grant.likely@linaro.org \
    --cc=kristen@linux.intel.com \
    --cc=ksummit-discuss@lists.linuxfoundation.org \
    --cc=len.brown@intel.com \
    --cc=rjw@rjwysocki.net \
    --cc=stern@rowland.harvard.edu \
    /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