Message ID | 1309555626-22608-5-git-send-email-b-cousson@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
cc'ing Kevin, since this touches mach-omap2/pm.c - an ack would be great if you have the chance On Fri, 1 Jul 2011, Benoit Cousson wrote: > From: Rajendra Nayak <rnayak@ti.com> > > The omap_set_pwrdm_state function forces clockdomains > to idle, without checking the existing idle state > programmed, instead based solely on the HW capability > of the clockdomain to support idle. > This is wrong and the clockdomains should be idled > post a state_switch *only* if idle transitions on the > clockdomain were already enabled. > > Signed-off-by: Rajendra Nayak <rnayak@ti.com> > Cc: Paul Walmsley <paul@pwsan.com> Thanks, this patch has been queued for 3.1 at git://git.pwsan.com/linux-2.6 in the 'powerdomain_fixes_3.1' branch. - Paul -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Paul Walmsley <paul@pwsan.com> writes: > cc'ing Kevin, since this touches mach-omap2/pm.c - an ack would be great > if you have the chance > > On Fri, 1 Jul 2011, Benoit Cousson wrote: > >> From: Rajendra Nayak <rnayak@ti.com> >> >> The omap_set_pwrdm_state function forces clockdomains >> to idle, without checking the existing idle state >> programmed, instead based solely on the HW capability >> of the clockdomain to support idle. >> This is wrong and the clockdomains should be idled >> post a state_switch *only* if idle transitions on the >> clockdomain were already enabled. >> >> Signed-off-by: Rajendra Nayak <rnayak@ti.com> >> Cc: Paul Walmsley <paul@pwsan.com> Acked-by: Kevin Hilman <khilman@ti.com> > Thanks, this patch has been queued for 3.1 at > git://git.pwsan.com/linux-2.6 in the 'powerdomain_fixes_3.1' branch. > > > - Paul -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index d48813f..ce1a9f3 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c @@ -108,6 +108,7 @@ int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 state) u32 cur_state; int sleep_switch = -1; int ret = 0; + int hwsup = 0; if (pwrdm == NULL || IS_ERR(pwrdm)) return -EINVAL; @@ -127,6 +128,7 @@ int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 state) (pwrdm->flags & PWRDM_HAS_LOWPOWERSTATECHANGE)) { sleep_switch = LOWPOWERSTATE_SWITCH; } else { + hwsup = clkdm_allows_idle(pwrdm->pwrdm_clkdms[0]); clkdm_wakeup(pwrdm->pwrdm_clkdms[0]); pwrdm_wait_transition(pwrdm); sleep_switch = FORCEWAKEUP_SWITCH; @@ -142,7 +144,7 @@ int omap_set_pwrdm_state(struct powerdomain *pwrdm, u32 state) switch (sleep_switch) { case FORCEWAKEUP_SWITCH: - if (pwrdm->pwrdm_clkdms[0]->flags & CLKDM_CAN_ENABLE_AUTO) + if (hwsup) clkdm_allow_idle(pwrdm->pwrdm_clkdms[0]); else clkdm_sleep(pwrdm->pwrdm_clkdms[0]);