Forráskód Böngészése

Timer: Remove reset_timer() for non-Nios2 arches

Graeme Russ 13 éve
szülő
commit
4769be21cc
49 módosított fájl, 9 hozzáadás és 270 törlés
  1. 0 5
      arch/arm/cpu/arm1136/mx31/timer.c
  2. 0 5
      arch/arm/cpu/arm1136/mx35/timer.c
  3. 0 5
      arch/arm/cpu/arm1136/omap24xx/timer.c
  4. 0 5
      arch/arm/cpu/arm1176/s3c64xx/timer.c
  5. 0 9
      arch/arm/cpu/arm1176/tnetv107x/timer.c
  6. 0 5
      arch/arm/cpu/arm720t/interrupts.c
  7. 0 6
      arch/arm/cpu/arm920t/a320/timer.c
  8. 0 6
      arch/arm/cpu/arm920t/at91/timer.c
  9. 0 6
      arch/arm/cpu/arm920t/at91rm9200/timer.c
  10. 0 5
      arch/arm/cpu/arm920t/ep93xx/timer.c
  11. 0 6
      arch/arm/cpu/arm920t/imx/timer.c
  12. 1 6
      arch/arm/cpu/arm920t/ks8695/timer.c
  13. 0 6
      arch/arm/cpu/arm920t/s3c24x0/timer.c
  14. 0 6
      arch/arm/cpu/arm925t/timer.c
  15. 0 5
      arch/arm/cpu/arm926ejs/armada100/timer.c
  16. 0 5
      arch/arm/cpu/arm926ejs/davinci/timer.c
  17. 0 5
      arch/arm/cpu/arm926ejs/kirkwood/timer.c
  18. 0 5
      arch/arm/cpu/arm926ejs/mb86r0x/timer.c
  19. 0 5
      arch/arm/cpu/arm926ejs/mx25/timer.c
  20. 0 5
      arch/arm/cpu/arm926ejs/mx27/timer.c
  21. 5 7
      arch/arm/cpu/arm926ejs/nomadik/timer.c
  22. 0 6
      arch/arm/cpu/arm926ejs/omap/timer.c
  23. 0 5
      arch/arm/cpu/arm926ejs/orion5x/timer.c
  24. 0 5
      arch/arm/cpu/arm926ejs/pantheon/timer.c
  25. 0 6
      arch/arm/cpu/arm926ejs/spear/timer.c
  26. 0 6
      arch/arm/cpu/arm926ejs/versatile/timer.c
  27. 0 5
      arch/arm/cpu/armv7/mx5/timer.c
  28. 0 5
      arch/arm/cpu/armv7/omap-common/timer.c
  29. 0 5
      arch/arm/cpu/armv7/s5p-common/timer.c
  30. 0 5
      arch/arm/cpu/armv7/tegra2/timer.c
  31. 0 5
      arch/arm/cpu/ixp/timer.c
  32. 0 6
      arch/arm/cpu/lh7a40x/timer.c
  33. 1 6
      arch/arm/cpu/pxa/timer.c
  34. 0 6
      arch/arm/cpu/s3c44b0/timer.c
  35. 0 5
      arch/arm/cpu/sa1100/timer.c
  36. 0 7
      arch/avr32/cpu/interrupts.c
  37. 0 5
      arch/blackfin/cpu/interrupts.c
  38. 0 5
      arch/m68k/cpu/mcf547x_8x/slicetimer.c
  39. 0 5
      arch/m68k/lib/time.c
  40. 1 6
      arch/microblaze/cpu/timer.c
  41. 0 6
      arch/mips/cpu/mips32/time.c
  42. 0 5
      arch/powerpc/lib/interrupts.c
  43. 0 7
      arch/sh/lib/time.c
  44. 0 8
      arch/sh/lib/time_sh2.c
  45. 1 6
      arch/sparc/lib/interrupts.c
  46. 0 5
      arch/x86/lib/timer.c
  47. 0 5
      board/armltd/integrator/timer.c
  48. 0 5
      board/armltd/vexpress/ca9x4_ct_vxp.c
  49. 0 1
      board/nvidia/common/board.c

+ 0 - 5
arch/arm/cpu/arm1136/mx31/timer.c

@@ -113,11 +113,6 @@ void reset_timer_masked (void)
 	gd->tbl = 0; /* start "advancing" time stamp from 0 */
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 unsigned long long get_ticks (void)
 {
 	ulong now = GPTCNT; /* current tick value */

+ 0 - 5
arch/arm/cpu/arm1136/mx35/timer.c

@@ -73,11 +73,6 @@ inline ulong get_timer_masked(void)
 	return val;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	ulong tmp;

+ 0 - 5
arch/arm/cpu/arm1136/omap24xx/timer.c

@@ -57,11 +57,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 5
arch/arm/cpu/arm1176/s3c64xx/timer.c

@@ -142,11 +142,6 @@ void reset_timer_masked(void)
 	timestamp = 0;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer_masked(void)
 {
 	unsigned long long res = get_ticks();

+ 0 - 9
arch/arm/cpu/arm1176/tnetv107x/timer.c

@@ -60,15 +60,6 @@ int timer_init(void)
 	return 0;
 }
 
-void reset_timer(void)
-{
-	lastinc = timestamp = 0;
-
-	__raw_writel(0,		&regs->tcr);
-	__raw_writel(0,		&regs->tim34);
-	__raw_writel(2 << 22,	&regs->tcr);
-}
-
 static ulong get_timer_raw(void)
 {
 	ulong now = __raw_readl(&regs->tim34);

+ 0 - 5
arch/arm/cpu/arm720t/interrupts.c

@@ -209,11 +209,6 @@ int timer_init (void)
 
 #if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_NETARM) || defined(CONFIG_ARMADILLO) || defined(CONFIG_LPC2292)
 
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 6
arch/arm/cpu/arm920t/a320/timer.c

@@ -81,12 +81,6 @@ void reset_timer_masked(void)
 	debug("%s(): lastdec = %lx\n", __func__, lastdec);
 }
 
-void reset_timer(void)
-{
-	debug("%s()\n", __func__);
-	reset_timer_masked();
-}
-
 /*
  * return timer ticks
  */

+ 0 - 6
arch/arm/cpu/arm920t/at91/timer.c

@@ -72,12 +72,6 @@ int timer_init(void)
 /*
  * timer without interrupts
  */
-
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return get_timer_masked() - base;

+ 0 - 6
arch/arm/cpu/arm920t/at91rm9200/timer.c

@@ -71,12 +71,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 5
arch/arm/cpu/arm920t/ep93xx/timer.c

@@ -97,11 +97,6 @@ void reset_timer_masked(void)
 	timer.ticks = 0;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 void __udelay(unsigned long usec)
 {
 	unsigned long long target;

+ 0 - 6
arch/arm/cpu/arm920t/imx/timer.c

@@ -51,12 +51,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked() - base;

+ 1 - 6
arch/arm/cpu/arm920t/ks8695/timer.c

@@ -33,7 +33,7 @@ ulong timer_ticks;
 
 int timer_init (void)
 {
-	reset_timer();
+	reset_timer_masked();
 
 	return 0;
 }
@@ -55,11 +55,6 @@ void reset_timer_masked(void)
 	timer_ticks = 0;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer_masked(void)
 {
 	/* Check for timer wrap */

+ 0 - 6
arch/arm/cpu/arm920t/s3c24x0/timer.c

@@ -83,12 +83,6 @@ int timer_init(void)
 /*
  * timer without interrupts
  */
-
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return get_timer_masked() - base;

+ 0 - 6
arch/arm/cpu/arm925t/timer.c

@@ -64,12 +64,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 5
arch/arm/cpu/arm926ejs/armada100/timer.c

@@ -100,11 +100,6 @@ ulong get_timer_masked(void)
 	return gd->tbu;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return ((get_timer_masked() / (CONFIG_SYS_HZ_CLOCK / 1000)) -

+ 0 - 5
arch/arm/cpu/arm926ejs/davinci/timer.c

@@ -78,11 +78,6 @@ int timer_init(void)
 	return(0);
 }
 
-void reset_timer(void)
-{
-	gd->timer_reset_value = get_ticks();
-}
-
 /*
  * Get the current 64 bit timer tick count
  */

+ 0 - 5
arch/arm/cpu/arm926ejs/kirkwood/timer.c

@@ -112,11 +112,6 @@ ulong get_timer_masked(void)
 	return timestamp;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return get_timer_masked() - base;

+ 0 - 5
arch/arm/cpu/arm926ejs/mb86r0x/timer.c

@@ -121,11 +121,6 @@ void __udelay(unsigned long usec)
 		 /*NOP*/;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return get_timer_masked() - base;

+ 0 - 5
arch/arm/cpu/arm926ejs/mx25/timer.c

@@ -130,11 +130,6 @@ void reset_timer_masked(void)
 	timestamp = 0; /* start "advancing" time stamp from 0 */
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 unsigned long long get_ticks (void)
 {
 	struct gpt_regs *gpt = (struct gpt_regs *)IMX_GPT1_BASE;

+ 0 - 5
arch/arm/cpu/arm926ejs/mx27/timer.c

@@ -133,11 +133,6 @@ void reset_timer_masked(void)
 	timestamp = 0; /* start "advancing" time stamp from 0 */
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 unsigned long long get_ticks (void)
 {
 	struct gpt_regs *regs = (struct gpt_regs *)IMX_TIM1_BASE;

+ 5 - 7
arch/arm/cpu/arm926ejs/nomadik/timer.c

@@ -40,16 +40,12 @@
 /* Configure a free-running, auto-wrap counter with no prescaler */
 int timer_init(void)
 {
+	ulong val;
+
 	writel(MTU_CRn_ENA | MTU_CRn_PRESCALE_1 | MTU_CRn_32BITS,
 	       CONFIG_SYS_TIMERBASE + MTU_CR(0));
-	reset_timer();
-	return 0;
-}
 
-/* Restart counting from 0 */
-void reset_timer(void)
-{
-	ulong val;
+	/* Reset the timer */
 	writel(0, CONFIG_SYS_TIMERBASE + MTU_LR(0));
 	/*
 	 * The load-register isn't really immediate: it changes on clock
@@ -59,6 +55,8 @@ void reset_timer(void)
 	val = READ_TIMER();
 	while (READ_TIMER() == val)
 		;
+
+	return 0;
 }
 
 /* Return how many HZ passed since "base" */

+ 0 - 6
arch/arm/cpu/arm926ejs/omap/timer.c

@@ -65,12 +65,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 5
arch/arm/cpu/arm926ejs/orion5x/timer.c

@@ -119,11 +119,6 @@ ulong get_timer_masked(void)
 	return timestamp;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return get_timer_masked() - base;

+ 0 - 5
arch/arm/cpu/arm926ejs/pantheon/timer.c

@@ -108,11 +108,6 @@ ulong get_timer_masked(void)
 	return gd->tbu;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return ((get_timer_masked() / (CONFIG_SYS_HZ_CLOCK / 1000)) -

+ 0 - 6
arch/arm/cpu/arm926ejs/spear/timer.c

@@ -76,12 +76,6 @@ int timer_init(void)
 /*
  * timer without interrupts
  */
-
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return (get_timer_masked() / GPT_RESOLUTION) - base;

+ 0 - 6
arch/arm/cpu/arm926ejs/versatile/timer.c

@@ -94,12 +94,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 5
arch/arm/cpu/armv7/mx5/timer.c

@@ -69,11 +69,6 @@ int timer_init(void)
 	return 0;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 void reset_timer_masked(void)
 {
 	ulong val = __raw_readl(&cur_gpt->counter);

+ 0 - 5
arch/arm/cpu/armv7/omap-common/timer.c

@@ -63,11 +63,6 @@ int timer_init(void)
 /*
  * timer without interrupts
  */
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return get_timer_masked() - base;

+ 0 - 5
arch/arm/cpu/armv7/s5p-common/timer.c

@@ -50,11 +50,6 @@ int timer_init(void)
 /*
  * timer without interrupts
  */
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 unsigned long get_timer(unsigned long base)
 {
 	return get_timer_masked() - base;

+ 0 - 5
arch/arm/cpu/armv7/tegra2/timer.c

@@ -48,11 +48,6 @@ struct timerus *timer_base = (struct timerus *)NV_PA_TMRUS_BASE;
 #define TIMER_LOAD_VAL	0xffffffff
 
 /* timer without interrupts */
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer(ulong base)
 {
 	return get_timer_masked() - base;

+ 0 - 5
arch/arm/cpu/ixp/timer.c

@@ -89,11 +89,6 @@ void reset_timer_masked(void)
 	gd->timestamp = 0;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer_masked(void)
 {
 	return tick_to_time(get_ticks());

+ 0 - 6
arch/arm/cpu/lh7a40x/timer.c

@@ -74,12 +74,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return (get_timer_masked() - base);

+ 1 - 6
arch/arm/cpu/pxa/timer.c

@@ -59,16 +59,11 @@ static inline unsigned long long us_to_tick(unsigned long long us)
 
 int timer_init (void)
 {
-	reset_timer();
+	reset_timer_masked();
 
 	return 0;
 }
 
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 6
arch/arm/cpu/s3c44b0/timer.c

@@ -59,12 +59,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked () - base;

+ 0 - 5
arch/arm/cpu/sa1100/timer.c

@@ -34,11 +34,6 @@ int timer_init (void)
 	return 0;
 }
 
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base)
 {
 	return get_timer_masked ();

+ 0 - 7
arch/avr32/cpu/interrupts.c

@@ -62,13 +62,6 @@ unsigned long long get_ticks(void)
 	return ((unsigned long long)hi_now << 32) | lo;
 }
 
-void reset_timer(void)
-{
-	sysreg_write(COUNT, 0);
-	cpu_sync_pipeline();	/* process any pending interrupts */
-	timer_overflow = 0;
-}
-
 unsigned long get_timer(unsigned long base)
 {
 	u64 now = get_ticks();

+ 0 - 5
arch/blackfin/cpu/interrupts.c

@@ -152,8 +152,3 @@ ulong get_timer(ulong base)
 
 	return (milisec - base);
 }
-
-void reset_timer(void)
-{
-	timer_init();
-}

+ 0 - 5
arch/m68k/cpu/mcf547x_8x/slicetimer.c

@@ -95,11 +95,6 @@ void timer_init(void)
 	timerp->cr = SLT_CR_RUN | SLT_CR_IEN | SLT_CR_TEN;
 }
 
-void reset_timer(void)
-{
-	timestamp = 0;
-}
-
 ulong get_timer(ulong base)
 {
 	return (timestamp - base);

+ 0 - 5
arch/m68k/lib/time.c

@@ -116,11 +116,6 @@ void timer_init(void)
 	    DTIM_DTMR_FRR | DTIM_DTMR_ORRI | DTIM_DTMR_RST_EN;
 }
 
-void reset_timer(void)
-{
-	timestamp = 0;
-}
-
 ulong get_timer(ulong base)
 {
 	return (timestamp - base);

+ 1 - 6
arch/microblaze/cpu/timer.c

@@ -28,11 +28,6 @@
 
 volatile int timestamp = 0;
 
-void reset_timer (void)
-{
-	timestamp = 0;
-}
-
 #ifdef CONFIG_SYS_TIMER_0
 ulong get_timer (ulong base)
 {
@@ -61,7 +56,7 @@ int timer_init (void)
 	tmr->control = TIMER_INTERRUPT | TIMER_RESET;
 	tmr->control =
 	    TIMER_ENABLE | TIMER_ENABLE_INTR | TIMER_RELOAD | TIMER_DOWN_COUNT;
-	reset_timer ();
+	timestamp = 0;
 	install_interrupt_handler (CONFIG_SYS_TIMER_0_IRQ, timer_isr, (void *)tmr);
 	return 0;
 }

+ 0 - 6
arch/mips/cpu/mips32/time.c

@@ -42,12 +42,6 @@ int timer_init(void)
 	return 0;
 }
 
-void reset_timer(void)
-{
-	timestamp = 0;
-	write_c0_compare(read_c0_count() + CYCLES_PER_JIFFY);
-}
-
 ulong get_timer(ulong base)
 {
 	unsigned int count;

+ 0 - 5
arch/powerpc/lib/interrupts.c

@@ -137,11 +137,6 @@ void timer_interrupt (struct pt_regs *regs)
 #endif /* CONFIG_SHOW_ACTIVITY */
 }
 
-void reset_timer (void)
-{
-	timestamp = 0;
-}
-
 ulong get_timer (ulong base)
 {
 	return (timestamp - base);

+ 0 - 7
arch/sh/lib/time.c

@@ -139,13 +139,6 @@ unsigned long get_timer (unsigned long base)
 	return tick_to_time(get_ticks()) - base;
 }
 
-void reset_timer (void)
-{
-	tmu_timer_stop(0);
-	writel(0, TCNT0);
-	tmu_timer_start(0);
-}
-
 unsigned long get_tbclk (void)
 {
 	return timer_freq;

+ 0 - 8
arch/sh/lib/time_sh2.c

@@ -90,14 +90,6 @@ ulong get_timer(ulong base)
 	return (get_usec() / 1000) - base;
 }
 
-void reset_timer(void)
-{
-	cmt_timer_stop(0);
-	writew(CMT_TIMER_RESET, CMCOR_0);
-	cmt0_timer = 0;
-	cmt_timer_start(0);
-}
-
 void __udelay(unsigned long usec)
 {
 	unsigned long end = get_usec() + usec;

+ 1 - 6
arch/sparc/lib/interrupts.c

@@ -90,11 +90,6 @@ void timer_interrupt(struct pt_regs *regs)
 	timestamp++;
 }
 
-void reset_timer(void)
-{
-	timestamp = 0;
-}
-
 ulong get_timer(ulong base)
 {
 	return (timestamp - base);
@@ -104,7 +99,7 @@ void timer_interrupt_init(void)
 {
 	int irq;
 
-	reset_timer();
+	timestamp = 0;
 
 	irq = timer_interrupt_init_cpu();
 

+ 0 - 5
arch/x86/lib/timer.c

@@ -94,11 +94,6 @@ void timer_isr(void *unused)
 	}
 }
 
-void reset_timer (void)
-{
-	system_ticks = 0;
-}
-
 ulong get_timer (ulong base)
 {
 	return (system_ticks - base);

+ 0 - 5
board/armltd/integrator/timer.c

@@ -107,11 +107,6 @@ int timer_init (void)
 /*
  * timer without interrupts
  */
-void reset_timer (void)
-{
-	reset_timer_masked ();
-}
-
 ulong get_timer (ulong base_ticks)
 {
 	return get_timer_masked () - base_ticks;

+ 0 - 5
board/armltd/vexpress/ca9x4_ct_vxp.c

@@ -199,11 +199,6 @@ void reset_timer_masked(void)
 	timestamp = 0;
 }
 
-void reset_timer(void)
-{
-	reset_timer_masked();
-}
-
 ulong get_timer_masked(void)
 {
 	ulong now = readl(&systimer_base->timer0value) / 1000;

+ 0 - 1
board/nvidia/common/board.c

@@ -66,7 +66,6 @@ int board_early_init_f(void)
  */
 int timer_init(void)
 {
-	reset_timer();
 	return 0;
 }