public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Kevin Hilman <khilman@deeprootsystems.com>
To: Tero Kristo <tero.kristo@nokia.com>
Cc: linux-omap@vger.kernel.org
Subject: Re: [PATCH] OMAP3: PM: Prevent PER from going OFF when CORE is going INA
Date: Mon, 01 Dec 2008 07:53:48 -0800	[thread overview]
Message-ID: <87ljuzoprn.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1228131166-12076-1-git-send-email-tero.kristo@nokia.com> (Tero Kristo's message of "Mon\,  1 Dec 2008 13\:32\:46 +0200")

Tero Kristo <tero.kristo@nokia.com> writes:

> OMAP3 can't generate wakeups in this state, thus it is not permitted.
>
> Signed-off-by: Tero Kristo <tero.kristo@nokia.com>

Thanks, pulling into PM branch.

Kevin

> ---
>  arch/arm/mach-omap2/pm34xx.c |   15 ++++++++++++---
>  1 files changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c
> index 4a2837a..1186739 100644
> --- a/arch/arm/mach-omap2/pm34xx.c
> +++ b/arch/arm/mach-omap2/pm34xx.c
> @@ -284,6 +284,7 @@ void omap_sram_idle(void)
>  	int core_next_state = PWRDM_POWER_ON;
>  	int core_prev_state, per_prev_state;
>  	u32 sdrc_pwr = 0;
> +	int per_state_modified = 0;
>  
>  	if (!_omap_sram_idle)
>  		return;
> @@ -320,15 +321,21 @@ void omap_sram_idle(void)
>  
>  	/* PER */
>  	per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
> +	core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
>  	if (per_next_state < PWRDM_POWER_ON) {
>  		omap_uart_prepare_idle(2);
>  		omap2_gpio_prepare_for_retention();
> -		if (per_next_state == PWRDM_POWER_OFF)
> -			omap3_per_save_context();
> +		if (per_next_state == PWRDM_POWER_OFF) {
> +			if (core_next_state == PWRDM_POWER_ON) {
> +				per_next_state = PWRDM_POWER_RET;
> +				pwrdm_set_next_pwrst(per_pwrdm, per_next_state);
> +				per_state_modified = 1;
> +			} else
> +				omap3_per_save_context();
> +		}
>  	}
>  
>  	/* CORE */
> -	core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
>  	if (core_next_state < PWRDM_POWER_ON) {
>  		omap_uart_prepare_idle(0);
>  		omap_uart_prepare_idle(1);
> @@ -405,6 +412,8 @@ void omap_sram_idle(void)
>  			omap3_per_restore_context();
>  		omap2_gpio_resume_after_retention();
>  		omap_uart_resume_idle(2);
> +		if (per_state_modified)
> +			pwrdm_set_next_pwrst(per_pwrdm, PWRDM_POWER_OFF);
>  	}
>  
>  	/* Disable IO-PAD wakeup */
> -- 
> 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

      reply	other threads:[~2008-12-01 15:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-01 11:32 [PATCH] OMAP3: PM: Prevent PER from going OFF when CORE is going INA Tero Kristo
2008-12-01 15:53 ` Kevin Hilman [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=87ljuzoprn.fsf@deeprootsystems.com \
    --to=khilman@deeprootsystems.com \
    --cc=linux-omap@vger.kernel.org \
    --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