All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maciej Matraszek <m.matraszek@samsung.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Linux PM list <linux-pm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Len Brown <len.brown@intel.com>, Pavel Machek <pavel@ucw.cz>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Krzysztof Kozlowski <k.kozlowski@samsung.com>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	Linux-sh list <linux-sh@vger.kernel.org>
Subject: Re: [PATCH] PM / Domains: add debugfs listing of struct generic_pm_domain-s
Date: Thu, 11 Sep 2014 18:45:08 +0200	[thread overview]
Message-ID: <1410453908.8852.9.camel@AMDC723> (raw)
In-Reply-To: <CAMuHMdUi9sZFZa2pcAWvHi1xmZfhEUyCbW0uRt65QwkbTqEjYg@mail.gmail.com>

Hi Geert!

On Thu, 2014-09-11 at 10:51 +0200, Geert Uytterhoeven wrote:
> Hi Maciej,
> 
> On Wed, Sep 10, 2014 at 1:28 PM, Maciej Matraszek
> <m.matraszek@samsung.com> wrote:
> > Add /sys/kernel/debug/pm_genpd/pm_genpd_summary file, which
> > lists power domains in the system, their statuses and attached devices,
> > resembling /sys/kernel/debug/clk/clk_summary.
> >
> > Currently it is impossible to inspect (from userland) whether
> > a power domain is on or off. And, if it is on, which device blocks it
> > from powering down. This change allows developers working on
> > embedded devices power efficiency to list all necessary information
> > about generic power domains in one place.
> 
> Thanks, this is _very_ useful!
> 
> > The content of pm_genpd/pm_genpd_summary file is generated by iterating
> > over all generic power domain in the system, and, for each,
> > over registered devices.
> 
> ... and over the subdomains, if present.
> 
> I can confirm that part is working, too, cfr. the slaves column on r8a7740
> 
>     domain                      status         slaves
>            /device                                      runtime status
> ----------------------------------------------------------------------
> a4su                            off
> a3sg                            off
> a3sm                            on
> a3sp                            on
>     /devices/e6600000.pwm                               suspended
>     /devices/e6c50000.serial                            active
>     /devices/e6850000.sd                                suspended
>     /devices/e6bd0000.mmc                               active
> a4s                             on               a3sp, a3sm, a3sg
>     /devices/e6900000.irqpin                            unsupported
>     /devices/e6900004.irqpin                            unsupported
>     /devices/e6900008.irqpin                            unsupported
>     /devices/e690000c.irqpin                            unsupported
>     /devices/e9a00000.ethernet                          active
> a3rv                            off
> a4r                             off              a3rv
>     /devices/fff20000.i2c                               suspended
> a4lc                            off
> c5                              on               a4lc, a4r, a4s, a4su
>     /devices/e6050000.pfc                               unsupported
>     /devices/e6138000.timer                             active

> > Signed-off-by: Maciej Matraszek <m.matraszek@samsung.com>
> 
> Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>

Thanks for testing, Geert, I'm glad you like it :)!
BTW Can I use your output as example in the commit message for v2?
It's much more informative (though 'runtime status' alignment seems
odd).

> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds

-- 
Maciej Matraszek
Samsung R&D Institute Poland
Samsung Electronics



WARNING: multiple messages have this Message-ID (diff)
From: Maciej Matraszek <m.matraszek@samsung.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Linux PM list <linux-pm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Len Brown <len.brown@intel.com>, Pavel Machek <pavel@ucw.cz>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Krzysztof Kozlowski <k.kozlowski@samsung.com>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	Linux-sh list <linux-sh@vger.kernel.org>
Subject: Re: [PATCH] PM / Domains: add debugfs listing of struct generic_pm_domain-s
Date: Thu, 11 Sep 2014 16:45:08 +0000	[thread overview]
Message-ID: <1410453908.8852.9.camel@AMDC723> (raw)
In-Reply-To: <CAMuHMdUi9sZFZa2pcAWvHi1xmZfhEUyCbW0uRt65QwkbTqEjYg@mail.gmail.com>

Hi Geert!

On Thu, 2014-09-11 at 10:51 +0200, Geert Uytterhoeven wrote:
> Hi Maciej,
> 
> On Wed, Sep 10, 2014 at 1:28 PM, Maciej Matraszek
> <m.matraszek@samsung.com> wrote:
> > Add /sys/kernel/debug/pm_genpd/pm_genpd_summary file, which
> > lists power domains in the system, their statuses and attached devices,
> > resembling /sys/kernel/debug/clk/clk_summary.
> >
> > Currently it is impossible to inspect (from userland) whether
> > a power domain is on or off. And, if it is on, which device blocks it
> > from powering down. This change allows developers working on
> > embedded devices power efficiency to list all necessary information
> > about generic power domains in one place.
> 
> Thanks, this is _very_ useful!
> 
> > The content of pm_genpd/pm_genpd_summary file is generated by iterating
> > over all generic power domain in the system, and, for each,
> > over registered devices.
> 
> ... and over the subdomains, if present.
> 
> I can confirm that part is working, too, cfr. the slaves column on r8a7740
> 
>     domain                      status         slaves
>            /device                                      runtime status
> ----------------------------------------------------------------------
> a4su                            off
> a3sg                            off
> a3sm                            on
> a3sp                            on
>     /devices/e6600000.pwm                               suspended
>     /devices/e6c50000.serial                            active
>     /devices/e6850000.sd                                suspended
>     /devices/e6bd0000.mmc                               active
> a4s                             on               a3sp, a3sm, a3sg
>     /devices/e6900000.irqpin                            unsupported
>     /devices/e6900004.irqpin                            unsupported
>     /devices/e6900008.irqpin                            unsupported
>     /devices/e690000c.irqpin                            unsupported
>     /devices/e9a00000.ethernet                          active
> a3rv                            off
> a4r                             off              a3rv
>     /devices/fff20000.i2c                               suspended
> a4lc                            off
> c5                              on               a4lc, a4r, a4s, a4su
>     /devices/e6050000.pfc                               unsupported
>     /devices/e6138000.timer                             active

> > Signed-off-by: Maciej Matraszek <m.matraszek@samsung.com>
> 
> Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>

Thanks for testing, Geert, I'm glad you like it :)!
BTW Can I use your output as example in the commit message for v2?
It's much more informative (though 'runtime status' alignment seems
odd).

> 
> Gr{oetje,eeting}s,
> 
>                         Geert
> 
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> 
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
>                                 -- Linus Torvalds

-- 
Maciej Matraszek
Samsung R&D Institute Poland
Samsung Electronics



  reply	other threads:[~2014-09-11 16:45 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-10 11:28 [PATCH] PM / Domains: add debugfs listing of struct generic_pm_domain-s Maciej Matraszek
2014-09-10 14:43 ` Greg Kroah-Hartman
2014-09-10 15:38   ` Maciej Matraszek
2014-09-10 18:27     ` Greg Kroah-Hartman
2014-09-11 17:02       ` Maciej Matraszek
2014-09-10 19:18 ` Al Viro
2014-09-11 16:52   ` Maciej Matraszek
2014-09-11  8:51 ` Geert Uytterhoeven
2014-09-11  8:51   ` Geert Uytterhoeven
2014-09-11 16:45   ` Maciej Matraszek [this message]
2014-09-11 16:45     ` Maciej Matraszek
2014-09-11 17:27     ` Geert Uytterhoeven
2014-09-11 17:27       ` Geert Uytterhoeven
2014-09-12 16:19       ` Maciej Matraszek
2014-09-12 16:19         ` Maciej Matraszek
2014-09-17 11:09         ` Geert Uytterhoeven
2014-09-17 11:09           ` Geert Uytterhoeven

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=1410453908.8852.9.camel@AMDC723 \
    --to=m.matraszek@samsung.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=geert@linux-m68k.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=k.kozlowski@samsung.com \
    --cc=len.brown@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=pavel@ucw.cz \
    --cc=rjw@rjwysocki.net \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.