smp_twd.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * linux/arch/arm/kernel/smp_twd.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/clockchips.h>
  18. #include <linux/irq.h>
  19. #include <linux/io.h>
  20. #include <asm/smp_twd.h>
  21. #include <asm/hardware/gic.h>
  22. /* set up by the platform code */
  23. void __iomem *twd_base;
  24. static unsigned long twd_timer_rate;
  25. static void twd_set_mode(enum clock_event_mode mode,
  26. struct clock_event_device *clk)
  27. {
  28. unsigned long ctrl;
  29. switch (mode) {
  30. case CLOCK_EVT_MODE_PERIODIC:
  31. /* timer load already set up */
  32. ctrl = TWD_TIMER_CONTROL_ENABLE | TWD_TIMER_CONTROL_IT_ENABLE
  33. | TWD_TIMER_CONTROL_PERIODIC;
  34. break;
  35. case CLOCK_EVT_MODE_ONESHOT:
  36. /* period set, and timer enabled in 'next_event' hook */
  37. ctrl = TWD_TIMER_CONTROL_IT_ENABLE | TWD_TIMER_CONTROL_ONESHOT;
  38. break;
  39. case CLOCK_EVT_MODE_UNUSED:
  40. case CLOCK_EVT_MODE_SHUTDOWN:
  41. default:
  42. ctrl = 0;
  43. }
  44. __raw_writel(ctrl, twd_base + TWD_TIMER_CONTROL);
  45. }
  46. static int twd_set_next_event(unsigned long evt,
  47. struct clock_event_device *unused)
  48. {
  49. unsigned long ctrl = __raw_readl(twd_base + TWD_TIMER_CONTROL);
  50. ctrl |= TWD_TIMER_CONTROL_ENABLE;
  51. __raw_writel(evt, twd_base + TWD_TIMER_COUNTER);
  52. __raw_writel(ctrl, twd_base + TWD_TIMER_CONTROL);
  53. return 0;
  54. }
  55. /*
  56. * local_timer_ack: checks for a local timer interrupt.
  57. *
  58. * If a local timer interrupt has occurred, acknowledge and return 1.
  59. * Otherwise, return 0.
  60. */
  61. int twd_timer_ack(void)
  62. {
  63. if (__raw_readl(twd_base + TWD_TIMER_INTSTAT)) {
  64. __raw_writel(1, twd_base + TWD_TIMER_INTSTAT);
  65. return 1;
  66. }
  67. return 0;
  68. }
  69. static void __cpuinit twd_calibrate_rate(void)
  70. {
  71. unsigned long load, count;
  72. u64 waitjiffies;
  73. /*
  74. * If this is the first time round, we need to work out how fast
  75. * the timer ticks
  76. */
  77. if (twd_timer_rate == 0) {
  78. printk(KERN_INFO "Calibrating local timer... ");
  79. /* Wait for a tick to start */
  80. waitjiffies = get_jiffies_64() + 1;
  81. while (get_jiffies_64() < waitjiffies)
  82. udelay(10);
  83. /* OK, now the tick has started, let's get the timer going */
  84. waitjiffies += 5;
  85. /* enable, no interrupt or reload */
  86. __raw_writel(0x1, twd_base + TWD_TIMER_CONTROL);
  87. /* maximum value */
  88. __raw_writel(0xFFFFFFFFU, twd_base + TWD_TIMER_COUNTER);
  89. while (get_jiffies_64() < waitjiffies)
  90. udelay(10);
  91. count = __raw_readl(twd_base + TWD_TIMER_COUNTER);
  92. twd_timer_rate = (0xFFFFFFFFU - count) * (HZ / 5);
  93. printk("%lu.%02luMHz.\n", twd_timer_rate / 1000000,
  94. (twd_timer_rate / 100000) % 100);
  95. }
  96. load = twd_timer_rate / HZ;
  97. __raw_writel(load, twd_base + TWD_TIMER_LOAD);
  98. }
  99. /*
  100. * Setup the local clock events for a CPU.
  101. */
  102. void __cpuinit twd_timer_setup(struct clock_event_device *clk)
  103. {
  104. unsigned long flags;
  105. twd_calibrate_rate();
  106. clk->name = "local_timer";
  107. clk->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT |
  108. CLOCK_EVT_FEAT_C3STOP;
  109. clk->rating = 350;
  110. clk->set_mode = twd_set_mode;
  111. clk->set_next_event = twd_set_next_event;
  112. clk->shift = 20;
  113. clk->mult = div_sc(twd_timer_rate, NSEC_PER_SEC, clk->shift);
  114. clk->max_delta_ns = clockevent_delta2ns(0xffffffff, clk);
  115. clk->min_delta_ns = clockevent_delta2ns(0xf, clk);
  116. /* Make sure our local interrupt controller has this enabled */
  117. local_irq_save(flags);
  118. irq_to_desc(clk->irq)->status |= IRQ_NOPROBE;
  119. get_irq_chip(clk->irq)->unmask(clk->irq);
  120. local_irq_restore(flags);
  121. clockevents_register_device(clk);
  122. }
  123. #ifdef CONFIG_HOTPLUG_CPU
  124. /*
  125. * take a local timer down
  126. */
  127. void twd_timer_stop(void)
  128. {
  129. __raw_writel(0, twd_base + TWD_TIMER_CONTROL);
  130. }
  131. #endif