localtimer.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /*
  2. * linux/arch/arm/mach-realview/localtimer.c
  3. *
  4. * Copyright (C) 2002 ARM Ltd.
  5. * All Rights Reserved
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/init.h>
  12. #include <linux/kernel.h>
  13. #include <linux/delay.h>
  14. #include <linux/device.h>
  15. #include <linux/smp.h>
  16. #include <linux/jiffies.h>
  17. #include <linux/percpu.h>
  18. #include <linux/clockchips.h>
  19. #include <linux/irq.h>
  20. #include <linux/io.h>
  21. #include <asm/hardware/arm_twd.h>
  22. #include <asm/hardware/gic.h>
  23. #include <mach/hardware.h>
  24. #include <asm/irq.h>
  25. static DEFINE_PER_CPU(struct clock_event_device, local_clockevent);
  26. /*
  27. * Used on SMP for either the local timer or IPI_TIMER
  28. */
  29. void local_timer_interrupt(void)
  30. {
  31. struct clock_event_device *clk = &__get_cpu_var(local_clockevent);
  32. clk->event_handler(clk);
  33. }
  34. #ifdef CONFIG_LOCAL_TIMERS
  35. /* set up by the platform code */
  36. void __iomem *twd_base;
  37. static unsigned long mpcore_timer_rate;
  38. static void local_timer_set_mode(enum clock_event_mode mode,
  39. struct clock_event_device *clk)
  40. {
  41. unsigned long ctrl;
  42. switch(mode) {
  43. case CLOCK_EVT_MODE_PERIODIC:
  44. /* timer load already set up */
  45. ctrl = TWD_TIMER_CONTROL_ENABLE | TWD_TIMER_CONTROL_IT_ENABLE
  46. | TWD_TIMER_CONTROL_PERIODIC;
  47. break;
  48. case CLOCK_EVT_MODE_ONESHOT:
  49. /* period set, and timer enabled in 'next_event' hook */
  50. ctrl = TWD_TIMER_CONTROL_IT_ENABLE | TWD_TIMER_CONTROL_ONESHOT;
  51. break;
  52. case CLOCK_EVT_MODE_UNUSED:
  53. case CLOCK_EVT_MODE_SHUTDOWN:
  54. default:
  55. ctrl = 0;
  56. }
  57. __raw_writel(ctrl, twd_base + TWD_TIMER_CONTROL);
  58. }
  59. static int local_timer_set_next_event(unsigned long evt,
  60. struct clock_event_device *unused)
  61. {
  62. unsigned long ctrl = __raw_readl(twd_base + TWD_TIMER_CONTROL);
  63. __raw_writel(evt, twd_base + TWD_TIMER_COUNTER);
  64. __raw_writel(ctrl | TWD_TIMER_CONTROL_ENABLE, twd_base + TWD_TIMER_CONTROL);
  65. return 0;
  66. }
  67. /*
  68. * local_timer_ack: checks for a local timer interrupt.
  69. *
  70. * If a local timer interrupt has occurred, acknowledge and return 1.
  71. * Otherwise, return 0.
  72. */
  73. int local_timer_ack(void)
  74. {
  75. if (__raw_readl(twd_base + TWD_TIMER_INTSTAT)) {
  76. __raw_writel(1, twd_base + TWD_TIMER_INTSTAT);
  77. return 1;
  78. }
  79. return 0;
  80. }
  81. static void __cpuinit twd_calibrate_rate(void)
  82. {
  83. unsigned long load, count;
  84. u64 waitjiffies;
  85. /*
  86. * If this is the first time round, we need to work out how fast
  87. * the timer ticks
  88. */
  89. if (mpcore_timer_rate == 0) {
  90. printk("Calibrating local timer... ");
  91. /* Wait for a tick to start */
  92. waitjiffies = get_jiffies_64() + 1;
  93. while (get_jiffies_64() < waitjiffies)
  94. udelay(10);
  95. /* OK, now the tick has started, let's get the timer going */
  96. waitjiffies += 5;
  97. /* enable, no interrupt or reload */
  98. __raw_writel(0x1, twd_base + TWD_TIMER_CONTROL);
  99. /* maximum value */
  100. __raw_writel(0xFFFFFFFFU, twd_base + TWD_TIMER_COUNTER);
  101. while (get_jiffies_64() < waitjiffies)
  102. udelay(10);
  103. count = __raw_readl(twd_base + TWD_TIMER_COUNTER);
  104. mpcore_timer_rate = (0xFFFFFFFFU - count) * (HZ / 5);
  105. printk("%lu.%02luMHz.\n", mpcore_timer_rate / 1000000,
  106. (mpcore_timer_rate / 100000) % 100);
  107. }
  108. load = mpcore_timer_rate / HZ;
  109. __raw_writel(load, twd_base + TWD_TIMER_LOAD);
  110. }
  111. /*
  112. * Setup the local clock events for a CPU.
  113. */
  114. void __cpuinit local_timer_setup(void)
  115. {
  116. unsigned int cpu = smp_processor_id();
  117. struct clock_event_device *clk = &per_cpu(local_clockevent, cpu);
  118. unsigned long flags;
  119. twd_calibrate_rate();
  120. clk->name = "local_timer";
  121. clk->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
  122. clk->rating = 350;
  123. clk->set_mode = local_timer_set_mode;
  124. clk->set_next_event = local_timer_set_next_event;
  125. clk->irq = IRQ_LOCALTIMER;
  126. clk->cpumask = cpumask_of(cpu);
  127. clk->shift = 20;
  128. clk->mult = div_sc(mpcore_timer_rate, NSEC_PER_SEC, clk->shift);
  129. clk->max_delta_ns = clockevent_delta2ns(0xffffffff, clk);
  130. clk->min_delta_ns = clockevent_delta2ns(0xf, clk);
  131. /* Make sure our local interrupt controller has this enabled */
  132. local_irq_save(flags);
  133. get_irq_chip(IRQ_LOCALTIMER)->unmask(IRQ_LOCALTIMER);
  134. local_irq_restore(flags);
  135. clockevents_register_device(clk);
  136. }
  137. /*
  138. * take a local timer down
  139. */
  140. void __cpuexit local_timer_stop(void)
  141. {
  142. __raw_writel(0, twd_base + TWD_TIMER_CONTROL);
  143. }
  144. #else /* CONFIG_LOCAL_TIMERS */
  145. static void dummy_timer_set_mode(enum clock_event_mode mode,
  146. struct clock_event_device *clk)
  147. {
  148. }
  149. void __cpuinit local_timer_setup(void)
  150. {
  151. unsigned int cpu = smp_processor_id();
  152. struct clock_event_device *clk = &per_cpu(local_clockevent, cpu);
  153. clk->name = "dummy_timer";
  154. clk->features = CLOCK_EVT_FEAT_DUMMY;
  155. clk->rating = 200;
  156. clk->mult = 1;
  157. clk->set_mode = dummy_timer_set_mode;
  158. clk->broadcast = smp_timer_broadcast;
  159. clk->cpumask = cpumask_of(cpu);
  160. clockevents_register_device(clk);
  161. }
  162. #endif /* !CONFIG_LOCAL_TIMERS */