malta-time.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  2. * Carsten Langgaard, carstenl@mips.com
  3. * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
  4. *
  5. * This program is free software; you can distribute it and/or modify it
  6. * under the terms of the GNU General Public License (Version 2) as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. * for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with this program; if not, write to the Free Software Foundation, Inc.,
  16. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  17. *
  18. * Setting up the clock on the MIPS boards.
  19. */
  20. #include <linux/types.h>
  21. #include <linux/i8253.h>
  22. #include <linux/init.h>
  23. #include <linux/kernel_stat.h>
  24. #include <linux/math64.h>
  25. #include <linux/sched.h>
  26. #include <linux/spinlock.h>
  27. #include <linux/interrupt.h>
  28. #include <linux/irqchip/mips-gic.h>
  29. #include <linux/timex.h>
  30. #include <linux/mc146818rtc.h>
  31. #include <asm/cpu.h>
  32. #include <asm/mipsregs.h>
  33. #include <asm/mipsmtregs.h>
  34. #include <asm/hardirq.h>
  35. #include <asm/irq.h>
  36. #include <asm/div64.h>
  37. #include <asm/setup.h>
  38. #include <asm/time.h>
  39. #include <asm/mc146818-time.h>
  40. #include <asm/msc01_ic.h>
  41. #include <asm/mips-boards/generic.h>
  42. #include <asm/mips-boards/maltaint.h>
  43. static int mips_cpu_timer_irq;
  44. static int mips_cpu_perf_irq;
  45. extern int cp0_perfcount_irq;
  46. static unsigned int gic_frequency;
  47. static void mips_timer_dispatch(void)
  48. {
  49. do_IRQ(mips_cpu_timer_irq);
  50. }
  51. static void mips_perf_dispatch(void)
  52. {
  53. do_IRQ(mips_cpu_perf_irq);
  54. }
  55. static unsigned int freqround(unsigned int freq, unsigned int amount)
  56. {
  57. freq += amount;
  58. freq -= freq % (amount*2);
  59. return freq;
  60. }
  61. /*
  62. * Estimate CPU and GIC frequencies.
  63. */
  64. static void __init estimate_frequencies(void)
  65. {
  66. unsigned long flags;
  67. unsigned int count, start;
  68. unsigned char secs1, secs2, ctrl;
  69. int secs;
  70. cycle_t giccount = 0, gicstart = 0;
  71. #if defined(CONFIG_KVM_GUEST) && CONFIG_KVM_GUEST_TIMER_FREQ
  72. mips_hpt_frequency = CONFIG_KVM_GUEST_TIMER_FREQ * 1000000;
  73. return;
  74. #endif
  75. local_irq_save(flags);
  76. if (gic_present)
  77. gic_start_count();
  78. /*
  79. * Read counters exactly on rising edge of update flag.
  80. * This helps get an accurate reading under virtualisation.
  81. */
  82. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  83. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  84. start = read_c0_count();
  85. if (gic_present)
  86. gicstart = gic_read_count();
  87. /* Wait for falling edge before reading RTC. */
  88. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  89. secs1 = CMOS_READ(RTC_SECONDS);
  90. /* Read counters again exactly on rising edge of update flag. */
  91. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  92. count = read_c0_count();
  93. if (gic_present)
  94. giccount = gic_read_count();
  95. /* Wait for falling edge before reading RTC again. */
  96. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  97. secs2 = CMOS_READ(RTC_SECONDS);
  98. ctrl = CMOS_READ(RTC_CONTROL);
  99. local_irq_restore(flags);
  100. if (!(ctrl & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  101. secs1 = bcd2bin(secs1);
  102. secs2 = bcd2bin(secs2);
  103. }
  104. secs = secs2 - secs1;
  105. if (secs < 1)
  106. secs += 60;
  107. count -= start;
  108. count /= secs;
  109. mips_hpt_frequency = count;
  110. if (gic_present) {
  111. giccount = div_u64(giccount - gicstart, secs);
  112. gic_frequency = giccount;
  113. }
  114. }
  115. void read_persistent_clock(struct timespec *ts)
  116. {
  117. ts->tv_sec = mc146818_get_cmos_time();
  118. ts->tv_nsec = 0;
  119. }
  120. int get_c0_fdc_int(void)
  121. {
  122. /*
  123. * Some cores claim the FDC is routable through the GIC, but it doesn't
  124. * actually seem to be connected for those Malta bitstreams.
  125. */
  126. switch (current_cpu_type()) {
  127. case CPU_INTERAPTIV:
  128. case CPU_PROAPTIV:
  129. return -1;
  130. };
  131. if (cpu_has_veic)
  132. return -1;
  133. else if (gic_present)
  134. return gic_get_c0_fdc_int();
  135. else if (cp0_fdc_irq >= 0)
  136. return MIPS_CPU_IRQ_BASE + cp0_fdc_irq;
  137. else
  138. return -1;
  139. }
  140. int get_c0_perfcount_int(void)
  141. {
  142. if (cpu_has_veic) {
  143. set_vi_handler(MSC01E_INT_PERFCTR, mips_perf_dispatch);
  144. mips_cpu_perf_irq = MSC01E_INT_BASE + MSC01E_INT_PERFCTR;
  145. } else if (gic_present) {
  146. mips_cpu_perf_irq = gic_get_c0_perfcount_int();
  147. } else if (cp0_perfcount_irq >= 0) {
  148. mips_cpu_perf_irq = MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
  149. } else {
  150. mips_cpu_perf_irq = -1;
  151. }
  152. return mips_cpu_perf_irq;
  153. }
  154. EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
  155. unsigned int get_c0_compare_int(void)
  156. {
  157. if (cpu_has_veic) {
  158. set_vi_handler(MSC01E_INT_CPUCTR, mips_timer_dispatch);
  159. mips_cpu_timer_irq = MSC01E_INT_BASE + MSC01E_INT_CPUCTR;
  160. } else if (gic_present) {
  161. mips_cpu_timer_irq = gic_get_c0_compare_int();
  162. } else {
  163. mips_cpu_timer_irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
  164. }
  165. return mips_cpu_timer_irq;
  166. }
  167. static void __init init_rtc(void)
  168. {
  169. unsigned char freq, ctrl;
  170. /* Set 32KHz time base if not already set */
  171. freq = CMOS_READ(RTC_FREQ_SELECT);
  172. if ((freq & RTC_DIV_CTL) != RTC_REF_CLCK_32KHZ)
  173. CMOS_WRITE(RTC_REF_CLCK_32KHZ, RTC_FREQ_SELECT);
  174. /* Ensure SET bit is clear so RTC can run */
  175. ctrl = CMOS_READ(RTC_CONTROL);
  176. if (ctrl & RTC_SET)
  177. CMOS_WRITE(ctrl & ~RTC_SET, RTC_CONTROL);
  178. }
  179. void __init plat_time_init(void)
  180. {
  181. unsigned int prid = read_c0_prid() & (PRID_COMP_MASK | PRID_IMP_MASK);
  182. unsigned int freq;
  183. init_rtc();
  184. estimate_frequencies();
  185. freq = mips_hpt_frequency;
  186. if ((prid != (PRID_COMP_MIPS | PRID_IMP_20KC)) &&
  187. (prid != (PRID_COMP_MIPS | PRID_IMP_25KF)))
  188. freq *= 2;
  189. freq = freqround(freq, 5000);
  190. printk("CPU frequency %d.%02d MHz\n", freq/1000000,
  191. (freq%1000000)*100/1000000);
  192. mips_scroll_message();
  193. #ifdef CONFIG_I8253
  194. /* Only Malta has a PIT. */
  195. setup_pit_timer();
  196. #endif
  197. #ifdef CONFIG_MIPS_GIC
  198. if (gic_present) {
  199. freq = freqround(gic_frequency, 5000);
  200. printk("GIC frequency %d.%02d MHz\n", freq/1000000,
  201. (freq%1000000)*100/1000000);
  202. #ifdef CONFIG_CLKSRC_MIPS_GIC
  203. gic_clocksource_init(gic_frequency);
  204. #endif
  205. }
  206. #endif
  207. }