From: Kevin Hilman <khilman@deeprootsystems.com>
To: Nishanth Menon <nm@ti.com>
Cc: "Tony Lindgren" <tony@atomide.com>,
"Tero Kristo" <t-kristo@ti.com>, "Paul Walmsley" <paul@pwsan.com>,
linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org,
linux-kernel@vger.kernel.org, Keerthy <j-keerthy@ti.com>,
"Benoît Cousson" <bcousson@baylibre.com>,
"Santosh Shilimkar" <santosh.shilimkar@ti.com>
Subject: Re: [PATCH 0/7] ARM: OMAP4+: powerdomain fixes
Date: Wed, 27 Aug 2014 11:30:55 -0700 [thread overview]
Message-ID: <7hwq9tdbts.fsf@paris.lan> (raw)
In-Reply-To: <1408715373-25791-1-git-send-email-nm@ti.com> (Nishanth Menon's message of "Fri, 22 Aug 2014 08:49:26 -0500")
Nishanth Menon <nm@ti.com> writes:
> The following series are various fixes and improvements for
> powerdomain support in OMAP4+.
Ah, here I see "fixes and improvements" since I was about to nipick that
the series contains more than just fixes.
Anyways, the series looks good to me. After fixing up the BUG_ON issue,
feel free to add
Reviewed-by: Kevin Hilman <khilman@linaro.org>
> This is part 1/6 series which eventually enables framework for
> suspend-to-ram and cpuidle for OMAP5 and DRA7
>
> Each of series is based on v3.17-rc1 and this specific series is available:
> weblink: https://github.com/nmenon/linux-2.6-playground/commits/push/v3.17/powerdomain-fixes
>
> git repo: https://github.com/nmenon/linux-2.6-playground.git push/v3.17/powerdomain-fixes
>
> An complete integrated branch is available here: https://github.com/nmenon/linux-2.6-playground/commits/testing/v3.17/cpu-idle-suspend-dra7-omap5-framework
>
> Nishanth Menon (7):
> ARM: OMAP: DRA7: powerdomain data: fix powerdomain powerstate
> ARM: OMAP5: powerdomain data: fix powerdomain powerstate
> ARM: OMAP2+: powerdomain: pwrdm_for_each_clkdm iterate only valid
> clkdms
> ARM: OMAP2+: powerdomain: introduce logic for finding valid power
> domain
> ARM: OMAP4+: PM: Make logic state programmable
> ARM: OMAP4+: PM: use only valid low power state for suspend
> ARM: OMAP4+: PM: Use only valid low power state for CPU hotplug
>
> arch/arm/mach-omap2/omap-mpuss-lowpower.c | 4 ++
> arch/arm/mach-omap2/pm44xx.c | 9 +++-
> arch/arm/mach-omap2/powerdomain.c | 76 ++++++++++++++++++++++++++-
> arch/arm/mach-omap2/powerdomain.h | 4 ++
> arch/arm/mach-omap2/powerdomains54xx_data.c | 12 ++---
> arch/arm/mach-omap2/powerdomains7xx_data.c | 14 ++---
> 6 files changed, 103 insertions(+), 16 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: khilman@deeprootsystems.com (Kevin Hilman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/7] ARM: OMAP4+: powerdomain fixes
Date: Wed, 27 Aug 2014 11:30:55 -0700 [thread overview]
Message-ID: <7hwq9tdbts.fsf@paris.lan> (raw)
In-Reply-To: <1408715373-25791-1-git-send-email-nm@ti.com> (Nishanth Menon's message of "Fri, 22 Aug 2014 08:49:26 -0500")
Nishanth Menon <nm@ti.com> writes:
> The following series are various fixes and improvements for
> powerdomain support in OMAP4+.
Ah, here I see "fixes and improvements" since I was about to nipick that
the series contains more than just fixes.
Anyways, the series looks good to me. After fixing up the BUG_ON issue,
feel free to add
Reviewed-by: Kevin Hilman <khilman@linaro.org>
> This is part 1/6 series which eventually enables framework for
> suspend-to-ram and cpuidle for OMAP5 and DRA7
>
> Each of series is based on v3.17-rc1 and this specific series is available:
> weblink: https://github.com/nmenon/linux-2.6-playground/commits/push/v3.17/powerdomain-fixes
>
> git repo: https://github.com/nmenon/linux-2.6-playground.git push/v3.17/powerdomain-fixes
>
> An complete integrated branch is available here: https://github.com/nmenon/linux-2.6-playground/commits/testing/v3.17/cpu-idle-suspend-dra7-omap5-framework
>
> Nishanth Menon (7):
> ARM: OMAP: DRA7: powerdomain data: fix powerdomain powerstate
> ARM: OMAP5: powerdomain data: fix powerdomain powerstate
> ARM: OMAP2+: powerdomain: pwrdm_for_each_clkdm iterate only valid
> clkdms
> ARM: OMAP2+: powerdomain: introduce logic for finding valid power
> domain
> ARM: OMAP4+: PM: Make logic state programmable
> ARM: OMAP4+: PM: use only valid low power state for suspend
> ARM: OMAP4+: PM: Use only valid low power state for CPU hotplug
>
> arch/arm/mach-omap2/omap-mpuss-lowpower.c | 4 ++
> arch/arm/mach-omap2/pm44xx.c | 9 +++-
> arch/arm/mach-omap2/powerdomain.c | 76 ++++++++++++++++++++++++++-
> arch/arm/mach-omap2/powerdomain.h | 4 ++
> arch/arm/mach-omap2/powerdomains54xx_data.c | 12 ++---
> arch/arm/mach-omap2/powerdomains7xx_data.c | 14 ++---
> 6 files changed, 103 insertions(+), 16 deletions(-)
next prev parent reply other threads:[~2014-08-27 18:30 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-22 13:49 [PATCH 0/7] ARM: OMAP4+: powerdomain fixes Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` [PATCH 1/7] ARM: OMAP: DRA7: powerdomain data: fix powerdomain powerstate Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` [PATCH 2/7] ARM: OMAP5: " Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` [PATCH 3/7] ARM: OMAP2+: powerdomain: pwrdm_for_each_clkdm iterate only valid clkdms Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` [PATCH 4/7] ARM: OMAP2+: powerdomain: introduce logic for finding valid power domain Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-27 18:27 ` Kevin Hilman
2014-08-27 18:27 ` Kevin Hilman
2014-08-27 18:35 ` Nishanth Menon
2014-08-27 18:35 ` Nishanth Menon
2014-08-27 18:39 ` Kevin Hilman
2014-08-27 18:39 ` Kevin Hilman
2014-08-22 13:49 ` [PATCH 5/7] ARM: OMAP4+: PM: Make logic state programmable Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` [PATCH 6/7] ARM: OMAP4+: PM: use only valid low power state for suspend Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` [PATCH 7/7] ARM: OMAP4+: PM: Use only valid low power state for CPU hotplug Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-22 13:49 ` Nishanth Menon
2014-08-27 18:30 ` Kevin Hilman [this message]
2014-08-27 18:30 ` [PATCH 0/7] ARM: OMAP4+: powerdomain fixes Kevin Hilman
2014-08-27 18:37 ` Santosh Shilimkar
2014-08-27 18:37 ` Santosh Shilimkar
2014-08-27 18:54 ` [PATCH V2 4/7] ARM: OMAP2+: powerdomain: introduce logic for finding valid power domain Nishanth Menon
2014-08-27 18:54 ` Nishanth Menon
2014-08-27 18:54 ` Nishanth Menon
2014-08-27 20:25 ` Kevin Hilman
2014-08-27 20:25 ` Kevin Hilman
2014-08-27 20:25 ` Kevin Hilman
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=7hwq9tdbts.fsf@paris.lan \
--to=khilman@deeprootsystems.com \
--cc=bcousson@baylibre.com \
--cc=j-keerthy@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=nm@ti.com \
--cc=paul@pwsan.com \
--cc=santosh.shilimkar@ti.com \
--cc=t-kristo@ti.com \
--cc=tony@atomide.com \
/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.