linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: at91/pit: don't suspend/resume if unused
Date: Thu, 18 Dec 2014 15:08:36 +0100	[thread overview]
Message-ID: <5492DFE4.6020409@atmel.com> (raw)
In-Reply-To: <1418846023-8581-1-git-send-email-sylvain.rochet@finsecur.com>

Le 17/12/2014 20:53, Sylvain Rochet a ?crit :
> Waiting for PIT to stop counting takes a long time:
>   1/(Master clock/prescaler/PIVR)
> = 1/(133 MHz     /16       /2^20)
> = 126 ms
> 
> Up to 126 ms if master clock is set to 133 MHz, skipping suspend/resume
> of the unused PIT device reduce (suspend time + resume time) from ~140 ms
> to ~17 ms.
> 
> Signed-off-by: Sylvain Rochet <sylvain.rochet@finsecur.com>

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

I also moved these changes to the new clocksource PIT driver. Cf. the
patch I've just sent titled: (clocksource: timer-atmel-pit: don't
suspend/resume if unused) (preserving your authorship of course).

Thanks. Bye.


> ---
>  arch/arm/mach-at91/at91sam926x_time.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/arch/arm/mach-at91/at91sam926x_time.c b/arch/arm/mach-at91/at91sam926x_time.c
> index e3344b4..44526aa 100644
> --- a/arch/arm/mach-at91/at91sam926x_time.c
> +++ b/arch/arm/mach-at91/at91sam926x_time.c
> @@ -106,6 +106,10 @@ pit_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
>  
>  static void at91sam926x_pit_suspend(struct clock_event_device *cedev)
>  {
> +	/* Don't suspend PIT if unused */
> +	if (cedev->mode == CLOCK_EVT_MODE_UNUSED)
> +		return;
> +
>  	/* Disable timer */
>  	pit_write(AT91_PIT_MR, 0);
>  }
> @@ -125,6 +129,10 @@ static void at91sam926x_pit_reset(void)
>  
>  static void at91sam926x_pit_resume(struct clock_event_device *cedev)
>  {
> +	/* Don't resume PIT if unused */
> +	if (cedev->mode == CLOCK_EVT_MODE_UNUSED)
> +		return;
> +
>  	at91sam926x_pit_reset();
>  }
>  
> 


-- 
Nicolas Ferre

      reply	other threads:[~2014-12-18 14:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-17 19:53 [PATCH] ARM: at91/pit: don't suspend/resume if unused Sylvain Rochet
2014-12-18 14:08 ` Nicolas Ferre [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=5492DFE4.6020409@atmel.com \
    --to=nicolas.ferre@atmel.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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;
as well as URLs for NNTP newsgroup(s).