malta-time.c 5.7 KB

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