metag_generic.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Copyright (C) 2005-2013 Imagination Technologies Ltd.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. *
  17. * Support for Meta per-thread timers.
  18. *
  19. * Meta hardware threads have 2 timers. The background timer (TXTIMER) is used
  20. * as a free-running time base (hz clocksource), and the interrupt timer
  21. * (TXTIMERI) is used for the timer interrupt (clock event). Both counters
  22. * traditionally count at approximately 1MHz.
  23. */
  24. #include <clocksource/metag_generic.h>
  25. #include <linux/cpu.h>
  26. #include <linux/errno.h>
  27. #include <linux/sched.h>
  28. #include <linux/kernel.h>
  29. #include <linux/param.h>
  30. #include <linux/time.h>
  31. #include <linux/init.h>
  32. #include <linux/proc_fs.h>
  33. #include <linux/clocksource.h>
  34. #include <linux/clockchips.h>
  35. #include <linux/interrupt.h>
  36. #include <asm/clock.h>
  37. #include <asm/hwthread.h>
  38. #include <asm/core_reg.h>
  39. #include <asm/metag_mem.h>
  40. #include <asm/tbx.h>
  41. #define HARDWARE_FREQ 1000000 /* 1MHz */
  42. #define HARDWARE_DIV 1 /* divide by 1 = 1MHz clock */
  43. #define HARDWARE_TO_NS_SHIFT 10 /* convert ticks to ns */
  44. static unsigned int hwtimer_freq = HARDWARE_FREQ;
  45. static DEFINE_PER_CPU(struct clock_event_device, local_clockevent);
  46. static DEFINE_PER_CPU(char [11], local_clockevent_name);
  47. static int metag_timer_set_next_event(unsigned long delta,
  48. struct clock_event_device *dev)
  49. {
  50. __core_reg_set(TXTIMERI, -delta);
  51. return 0;
  52. }
  53. static cycle_t metag_clocksource_read(struct clocksource *cs)
  54. {
  55. return __core_reg_get(TXTIMER);
  56. }
  57. static struct clocksource clocksource_metag = {
  58. .name = "META",
  59. .rating = 200,
  60. .mask = CLOCKSOURCE_MASK(32),
  61. .read = metag_clocksource_read,
  62. .flags = CLOCK_SOURCE_IS_CONTINUOUS,
  63. };
  64. static irqreturn_t metag_timer_interrupt(int irq, void *dummy)
  65. {
  66. struct clock_event_device *evt = this_cpu_ptr(&local_clockevent);
  67. evt->event_handler(evt);
  68. return IRQ_HANDLED;
  69. }
  70. static struct irqaction metag_timer_irq = {
  71. .name = "META core timer",
  72. .handler = metag_timer_interrupt,
  73. .flags = IRQF_TIMER | IRQF_IRQPOLL | IRQF_PERCPU,
  74. };
  75. unsigned long long sched_clock(void)
  76. {
  77. unsigned long long ticks = __core_reg_get(TXTIMER);
  78. return ticks << HARDWARE_TO_NS_SHIFT;
  79. }
  80. static int arch_timer_starting_cpu(unsigned int cpu)
  81. {
  82. unsigned int txdivtime;
  83. struct clock_event_device *clk = &per_cpu(local_clockevent, cpu);
  84. char *name = per_cpu(local_clockevent_name, cpu);
  85. txdivtime = __core_reg_get(TXDIVTIME);
  86. txdivtime &= ~TXDIVTIME_DIV_BITS;
  87. txdivtime |= (HARDWARE_DIV & TXDIVTIME_DIV_BITS);
  88. __core_reg_set(TXDIVTIME, txdivtime);
  89. sprintf(name, "META %d", cpu);
  90. clk->name = name;
  91. clk->features = CLOCK_EVT_FEAT_ONESHOT,
  92. clk->rating = 200,
  93. clk->shift = 12,
  94. clk->irq = tbisig_map(TBID_SIGNUM_TRT),
  95. clk->set_next_event = metag_timer_set_next_event,
  96. clk->mult = div_sc(hwtimer_freq, NSEC_PER_SEC, clk->shift);
  97. clk->max_delta_ns = clockevent_delta2ns(0x7fffffff, clk);
  98. clk->min_delta_ns = clockevent_delta2ns(0xf, clk);
  99. clk->cpumask = cpumask_of(cpu);
  100. clockevents_register_device(clk);
  101. /*
  102. * For all non-boot CPUs we need to synchronize our free
  103. * running clock (TXTIMER) with the boot CPU's clock.
  104. *
  105. * While this won't be accurate, it should be close enough.
  106. */
  107. if (cpu) {
  108. unsigned int thread0 = cpu_2_hwthread_id[0];
  109. unsigned long val;
  110. val = core_reg_read(TXUCT_ID, TXTIMER_REGNUM, thread0);
  111. __core_reg_set(TXTIMER, val);
  112. }
  113. return 0;
  114. }
  115. int __init metag_generic_timer_init(void)
  116. {
  117. /*
  118. * On Meta 2 SoCs, the actual frequency of the timer is based on the
  119. * Meta core clock speed divided by an integer, so it is only
  120. * approximately 1MHz. Calculating the real frequency here drastically
  121. * reduces clock skew on these SoCs.
  122. */
  123. #ifdef CONFIG_METAG_META21
  124. hwtimer_freq = get_coreclock() / (metag_in32(EXPAND_TIMER_DIV) + 1);
  125. #endif
  126. pr_info("Timer frequency: %u Hz\n", hwtimer_freq);
  127. clocksource_register_hz(&clocksource_metag, hwtimer_freq);
  128. setup_irq(tbisig_map(TBID_SIGNUM_TRT), &metag_timer_irq);
  129. /* Hook cpu boot to configure the CPU's timers */
  130. return cpuhp_setup_state(CPUHP_AP_METAG_TIMER_STARTING,
  131. "AP_METAG_TIMER_STARTING",
  132. arch_timer_starting_cpu, NULL);
  133. }