public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: OMAP: fix OMAP1 clockevent support for hrtimers
@ 2007-10-18 23:04 Kevin Hilman
  2007-10-22  0:10 ` Tony Lindgren
  0 siblings, 1 reply; 2+ messages in thread
From: Kevin Hilman @ 2007-10-18 23:04 UTC (permalink / raw)
  To: linux-omap-open-source

One-shot mode was broken in MPU-timer support for OMAP1 due to a typo.

Also, ensure timer is stopped before changing the auto-reload flag.
The TRM says changing the AR flag when timer is running is undefined.

Signed-off-by: Tim Bird <tim.bird@am.sony.com>
Signed-off-by: Kevin Hilman <khilman@mvista.com.

---
 arch/arm/mach-omap1/time.c |   12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

Index: dev/arch/arm/mach-omap1/time.c
===================================================================
--- dev.orig/arch/arm/mach-omap1/time.c
+++ dev/arch/arm/mach-omap1/time.c
@@ -132,13 +132,20 @@ static inline void omap_mpu_timer_start(
 	timer->cntl = timerflags;
 }
 
+static inline void omap_mpu_timer_stop(int nr)
+{
+	volatile omap_mpu_timer_regs_t* timer = omap_mpu_timer_base(nr);
+
+	timer->cntl &= ~MPU_TIMER_ST;
+}
+
 /*
  * ---------------------------------------------------------------------------
  * MPU timer 1 ... count down to zero, interrupt, reload
  * ---------------------------------------------------------------------------
  */
 static int omap_mpu_set_next_event(unsigned long cycles,
-				    struct clock_event_device *evt)
+				   struct clock_event_device *evt)
 {
 	omap_mpu_timer_start(0, cycles, 0);
 	return 0;
@@ -152,6 +159,7 @@ static void omap_mpu_set_mode(enum clock
 		omap_mpu_set_autoreset(0);
 		break;
 	case CLOCK_EVT_MODE_ONESHOT:
+		omap_mpu_timer_stop(0);
 		omap_mpu_remove_autoreset(0);
 		break;
 	case CLOCK_EVT_MODE_UNUSED:
@@ -163,7 +171,7 @@ static void omap_mpu_set_mode(enum clock
 
 static struct clock_event_device clockevent_mpu_timer1 = {
 	.name		= "mpu_timer1",
-	.features       = CLOCK_EVT_FEAT_PERIODIC, CLOCK_EVT_FEAT_ONESHOT,
+	.features       = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
 	.shift		= 32,
 	.set_next_event	= omap_mpu_set_next_event,
 	.set_mode	= omap_mpu_set_mode,
--

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] ARM: OMAP: fix OMAP1 clockevent support for hrtimers
  2007-10-18 23:04 [PATCH] ARM: OMAP: fix OMAP1 clockevent support for hrtimers Kevin Hilman
@ 2007-10-22  0:10 ` Tony Lindgren
  0 siblings, 0 replies; 2+ messages in thread
From: Tony Lindgren @ 2007-10-22  0:10 UTC (permalink / raw)
  To: Kevin Hilman; +Cc: linux-omap-open-source

* Kevin Hilman <khilman@mvista.com> [071018 16:05]:
> One-shot mode was broken in MPU-timer support for OMAP1 due to a typo.
> 
> Also, ensure timer is stopped before changing the auto-reload flag.
> The TRM says changing the AR flag when timer is running is undefined.
> 
> Signed-off-by: Tim Bird <tim.bird@am.sony.com>
> Signed-off-by: Kevin Hilman <khilman@mvista.com.
> 
> ---
>  arch/arm/mach-omap1/time.c |   12 ++++++++++--
>  1 file changed, 10 insertions(+), 2 deletions(-)
> 
> Index: dev/arch/arm/mach-omap1/time.c
> ===================================================================
> --- dev.orig/arch/arm/mach-omap1/time.c
> +++ dev/arch/arm/mach-omap1/time.c
> @@ -132,13 +132,20 @@ static inline void omap_mpu_timer_start(
>  	timer->cntl = timerflags;
>  }
>  
> +static inline void omap_mpu_timer_stop(int nr)
> +{
> +	volatile omap_mpu_timer_regs_t* timer = omap_mpu_timer_base(nr);
> +
> +	timer->cntl &= ~MPU_TIMER_ST;
> +}
> +
>  /*
>   * ---------------------------------------------------------------------------
>   * MPU timer 1 ... count down to zero, interrupt, reload
>   * ---------------------------------------------------------------------------
>   */
>  static int omap_mpu_set_next_event(unsigned long cycles,
> -				    struct clock_event_device *evt)
> +				   struct clock_event_device *evt)
>  {
>  	omap_mpu_timer_start(0, cycles, 0);
>  	return 0;
> @@ -152,6 +159,7 @@ static void omap_mpu_set_mode(enum clock
>  		omap_mpu_set_autoreset(0);
>  		break;
>  	case CLOCK_EVT_MODE_ONESHOT:
> +		omap_mpu_timer_stop(0);
>  		omap_mpu_remove_autoreset(0);
>  		break;
>  	case CLOCK_EVT_MODE_UNUSED:
> @@ -163,7 +171,7 @@ static void omap_mpu_set_mode(enum clock
>  
>  static struct clock_event_device clockevent_mpu_timer1 = {
>  	.name		= "mpu_timer1",
> -	.features       = CLOCK_EVT_FEAT_PERIODIC, CLOCK_EVT_FEAT_ONESHOT,
> +	.features       = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
>  	.shift		= 32,
>  	.set_next_event	= omap_mpu_set_next_event,
>  	.set_mode	= omap_mpu_set_mode,

Pushing today.

Tony

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-10-22  0:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-18 23:04 [PATCH] ARM: OMAP: fix OMAP1 clockevent support for hrtimers Kevin Hilman
2007-10-22  0:10 ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox