public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Paul Walmsley <paul@booyaka.com>
Cc: Tero Kristo <tero.kristo@nokia.com>, linux-omap@vger.kernel.org
Subject: Re: [PATCH] PM: Fixed clockdomain state control for OMAP3
Date: Thu, 25 Sep 2008 13:42:19 +0300	[thread overview]
Message-ID: <20080925104218.GK5222@atomide.com> (raw)
In-Reply-To: <alpine.DEB.2.00.0809230722140.27938@utopia.booyaka.com>

* Paul Walmsley <paul@booyaka.com> [080923 16:22]:
> On Tue, 16 Sep 2008, Tero Kristo wrote:
> 
> > Hardware supervised control for clockdomain power state transitions now
> > enabled in omap3_pm_init(). Also fixed set_pwrdm_state() to allow state
> > changes between sleep states (i.e. RET<->OFF.)
> > 
> > Signed-off-by: Tero Kristo <tero.kristo@nokia.com>
> 
> Acked-by: Paul Walmsley <paul@pwsan.com>

Pushing today.

Tony

> 
> 
> > ---
> >  arch/arm/mach-omap2/pm34xx.c |   38 +++++++++++++++++++-------------------
> >  1 files changed, 19 insertions(+), 19 deletions(-)
> > 
> > diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c
> > index 01b637a..2bccdab 100644
> > --- a/arch/arm/mach-omap2/pm34xx.c
> > +++ b/arch/arm/mach-omap2/pm34xx.c
> > @@ -227,28 +227,13 @@ static int omap3_can_sleep(void)
> >  	return 1;
> >  }
> >  
> > -/* _clkdm_deny_idle - private callback function used by set_pwrdm_state() */
> > -static int _clkdm_deny_idle(struct powerdomain *pwrdm,
> > -			    struct clockdomain *clkdm)
> > -{
> > -	omap2_clkdm_deny_idle(clkdm);
> > -	return 0;
> > -}
> > -
> > -/* _clkdm_allow_idle - private callback function used by set_pwrdm_state() */
> > -static int _clkdm_allow_idle(struct powerdomain *pwrdm,
> > -			     struct clockdomain *clkdm)
> > -{
> > -	omap2_clkdm_allow_idle(clkdm);
> > -	return 0;
> > -}
> > -
> >  /* This sets pwrdm state (other than mpu & core. Currently only ON &
> >   * RET are supported. Function is assuming that clkdm doesn't have
> >   * hw_sup mode enabled. */
> >  static int set_pwrdm_state(struct powerdomain *pwrdm, u32 state)
> >  {
> >  	u32 cur_state;
> > +	int sleep_switch = 0;
> >  	int ret = 0;
> >  
> >  	if (pwrdm == NULL || IS_ERR(pwrdm))
> > @@ -259,8 +244,12 @@ static int set_pwrdm_state(struct powerdomain *pwrdm, u32 state)
> >  	if (cur_state == state)
> >  		return ret;
> >  
> > -	pwrdm_for_each_clkdm(pwrdm, _clkdm_deny_idle);
> > -
> > +	if (pwrdm_read_pwrst(pwrdm) < PWRDM_POWER_ON) {
> > +		omap2_clkdm_wakeup(pwrdm->pwrdm_clkdms[0]);
> > +		sleep_switch = 1;
> > +		pwrdm_wait_transition(pwrdm);
> > +	}
> > +
> >  	ret = pwrdm_set_next_pwrst(pwrdm, state);
> >  	if (ret) {
> >  		printk(KERN_ERR "Unable to set state of powerdomain: %s\n",
> > @@ -268,7 +257,10 @@ static int set_pwrdm_state(struct powerdomain *pwrdm, u32 state)
> >  		goto err;
> >  	}
> >  
> > -	pwrdm_for_each_clkdm(pwrdm, _clkdm_allow_idle);
> > +	if (sleep_switch) {
> > +		omap2_clkdm_allow_idle(pwrdm->pwrdm_clkdms[0]);
> > +		pwrdm_wait_transition(pwrdm);
> > +	}
> >  
> >  err:
> >  	return ret;
> > @@ -540,6 +532,12 @@ static int __init pwrdms_setup(struct powerdomain *pwrdm)
> >  	return set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
> >  }
> >  
> > +static int __init clkdms_setup(struct clockdomain *clkdm)
> > +{
> > +	omap2_clkdm_allow_idle(clkdm);
> > +	return 0;
> > +}
> > +
> >  int __init omap3_pm_init(void)
> >  {
> >  	struct power_state *pwrst;
> > @@ -566,6 +564,8 @@ int __init omap3_pm_init(void)
> >  		goto err2;
> >  	}
> >  
> > +	(void) clkdm_for_each(clkdms_setup);
> > +
> >  	mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
> >  	if (mpu_pwrdm == NULL) {
> >  		printk(KERN_ERR "Failed to get mpu_pwrdm\n");
> > -- 
> > 1.5.4.3
> > 
> > --
> > 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
> --
> 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

      reply	other threads:[~2008-09-25 10:42 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-09-16 16:33 [PATCH] PM: Fixed clockdomain state control for OMAP3 Tero Kristo
2008-09-19 14:08 ` Högander Jouni
2008-09-23 13:02 ` Paul Walmsley
2008-09-23 13:16   ` Tero.Kristo
2008-09-23 13:21     ` Paul Walmsley
2008-09-23 13:22 ` Paul Walmsley
2008-09-25 10:42   ` Tony Lindgren [this message]

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=20080925104218.GK5222@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=paul@booyaka.com \
    --cc=tero.kristo@nokia.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox