malta-time.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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/libfdt.h>
  25. #include <linux/math64.h>
  26. #include <linux/sched.h>
  27. #include <linux/spinlock.h>
  28. #include <linux/interrupt.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-cps.h>
  42. #include <asm/mips-boards/generic.h>
  43. #include <asm/mips-boards/maltaint.h>
  44. static int mips_cpu_timer_irq;
  45. static int mips_cpu_perf_irq;
  46. extern int cp0_perfcount_irq;
  47. static unsigned int gic_frequency;
  48. static void mips_timer_dispatch(void)
  49. {
  50. do_IRQ(mips_cpu_timer_irq);
  51. }
  52. static void mips_perf_dispatch(void)
  53. {
  54. do_IRQ(mips_cpu_perf_irq);
  55. }
  56. static unsigned int freqround(unsigned int freq, unsigned int amount)
  57. {
  58. freq += amount;
  59. freq -= freq % (amount*2);
  60. return freq;
  61. }
  62. /*
  63. * Estimate CPU and GIC frequencies.
  64. */
  65. static void __init estimate_frequencies(void)
  66. {
  67. unsigned long flags;
  68. unsigned int count, start;
  69. unsigned char secs1, secs2, ctrl;
  70. int secs;
  71. u64 giccount = 0, gicstart = 0;
  72. #if defined(CONFIG_KVM_GUEST) && CONFIG_KVM_GUEST_TIMER_FREQ
  73. mips_hpt_frequency = CONFIG_KVM_GUEST_TIMER_FREQ * 1000000;
  74. return;
  75. #endif
  76. local_irq_save(flags);
  77. if (mips_gic_present())
  78. clear_gic_config(GIC_CONFIG_COUNTSTOP);
  79. /*
  80. * Read counters exactly on rising edge of update flag.
  81. * This helps get an accurate reading under virtualisation.
  82. */
  83. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  84. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  85. start = read_c0_count();
  86. if (mips_gic_present())
  87. gicstart = read_gic_counter();
  88. /* Wait for falling edge before reading RTC. */
  89. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  90. secs1 = CMOS_READ(RTC_SECONDS);
  91. /* Read counters again exactly on rising edge of update flag. */
  92. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  93. count = read_c0_count();
  94. if (mips_gic_present())
  95. giccount = read_gic_counter();
  96. /* Wait for falling edge before reading RTC again. */
  97. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  98. secs2 = CMOS_READ(RTC_SECONDS);
  99. ctrl = CMOS_READ(RTC_CONTROL);
  100. local_irq_restore(flags);
  101. if (!(ctrl & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  102. secs1 = bcd2bin(secs1);
  103. secs2 = bcd2bin(secs2);
  104. }
  105. secs = secs2 - secs1;
  106. if (secs < 1)
  107. secs += 60;
  108. count -= start;
  109. count /= secs;
  110. mips_hpt_frequency = count;
  111. if (mips_gic_present()) {
  112. giccount = div_u64(giccount - gicstart, secs);
  113. gic_frequency = giccount;
  114. }
  115. }
  116. void read_persistent_clock64(struct timespec64 *ts)
  117. {
  118. ts->tv_sec = mc146818_get_cmos_time();
  119. ts->tv_nsec = 0;
  120. }
  121. int get_c0_fdc_int(void)
  122. {
  123. /*
  124. * Some cores claim the FDC is routable through the GIC, but it doesn't
  125. * actually seem to be connected for those Malta bitstreams.
  126. */
  127. switch (current_cpu_type()) {
  128. case CPU_INTERAPTIV:
  129. case CPU_PROAPTIV:
  130. return -1;
  131. };
  132. if (cpu_has_veic)
  133. return -1;
  134. else if (mips_gic_present())
  135. return gic_get_c0_fdc_int();
  136. else if (cp0_fdc_irq >= 0)
  137. return MIPS_CPU_IRQ_BASE + cp0_fdc_irq;
  138. else
  139. return -1;
  140. }
  141. int get_c0_perfcount_int(void)
  142. {
  143. if (cpu_has_veic) {
  144. set_vi_handler(MSC01E_INT_PERFCTR, mips_perf_dispatch);
  145. mips_cpu_perf_irq = MSC01E_INT_BASE + MSC01E_INT_PERFCTR;
  146. } else if (mips_gic_present()) {
  147. mips_cpu_perf_irq = gic_get_c0_perfcount_int();
  148. } else if (cp0_perfcount_irq >= 0) {
  149. mips_cpu_perf_irq = MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
  150. } else {
  151. mips_cpu_perf_irq = -1;
  152. }
  153. return mips_cpu_perf_irq;
  154. }
  155. EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
  156. unsigned int get_c0_compare_int(void)
  157. {
  158. if (cpu_has_veic) {
  159. set_vi_handler(MSC01E_INT_CPUCTR, mips_timer_dispatch);
  160. mips_cpu_timer_irq = MSC01E_INT_BASE + MSC01E_INT_CPUCTR;
  161. } else if (mips_gic_present()) {
  162. mips_cpu_timer_irq = gic_get_c0_compare_int();
  163. } else {
  164. mips_cpu_timer_irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
  165. }
  166. return mips_cpu_timer_irq;
  167. }
  168. static void __init init_rtc(void)
  169. {
  170. unsigned char freq, ctrl;
  171. /* Set 32KHz time base if not already set */
  172. freq = CMOS_READ(RTC_FREQ_SELECT);
  173. if ((freq & RTC_DIV_CTL) != RTC_REF_CLCK_32KHZ)
  174. CMOS_WRITE(RTC_REF_CLCK_32KHZ, RTC_FREQ_SELECT);
  175. /* Ensure SET bit is clear so RTC can run */
  176. ctrl = CMOS_READ(RTC_CONTROL);
  177. if (ctrl & RTC_SET)
  178. CMOS_WRITE(ctrl & ~RTC_SET, RTC_CONTROL);
  179. }
  180. #ifdef CONFIG_CLKSRC_MIPS_GIC
  181. static u32 gic_frequency_dt;
  182. static struct property gic_frequency_prop = {
  183. .name = "clock-frequency",
  184. .length = sizeof(u32),
  185. .value = &gic_frequency_dt,
  186. };
  187. static void update_gic_frequency_dt(void)
  188. {
  189. struct device_node *node;
  190. gic_frequency_dt = cpu_to_be32(gic_frequency);
  191. node = of_find_compatible_node(NULL, NULL, "mti,gic-timer");
  192. if (!node) {
  193. pr_err("mti,gic-timer device node not found\n");
  194. return;
  195. }
  196. if (of_update_property(node, &gic_frequency_prop) < 0)
  197. pr_err("error updating gic frequency property\n");
  198. }
  199. #endif
  200. void __init plat_time_init(void)
  201. {
  202. unsigned int prid = read_c0_prid() & (PRID_COMP_MASK | PRID_IMP_MASK);
  203. unsigned int freq;
  204. init_rtc();
  205. estimate_frequencies();
  206. freq = mips_hpt_frequency;
  207. if ((prid != (PRID_COMP_MIPS | PRID_IMP_20KC)) &&
  208. (prid != (PRID_COMP_MIPS | PRID_IMP_25KF)))
  209. freq *= 2;
  210. freq = freqround(freq, 5000);
  211. printk("CPU frequency %d.%02d MHz\n", freq/1000000,
  212. (freq%1000000)*100/1000000);
  213. mips_scroll_message();
  214. #ifdef CONFIG_I8253
  215. /* Only Malta has a PIT. */
  216. setup_pit_timer();
  217. #endif
  218. if (mips_gic_present()) {
  219. freq = freqround(gic_frequency, 5000);
  220. printk("GIC frequency %d.%02d MHz\n", freq/1000000,
  221. (freq%1000000)*100/1000000);
  222. #ifdef CONFIG_CLKSRC_MIPS_GIC
  223. update_gic_frequency_dt();
  224. timer_probe();
  225. #endif
  226. }
  227. }