sim_time.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. #include <linux/types.h>
  2. #include <linux/init.h>
  3. #include <linux/kernel_stat.h>
  4. #include <linux/sched.h>
  5. #include <linux/spinlock.h>
  6. #include <asm/mipsregs.h>
  7. #include <asm/ptrace.h>
  8. #include <asm/hardirq.h>
  9. #include <asm/div64.h>
  10. #include <asm/cpu.h>
  11. #include <asm/time.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/mc146818rtc.h>
  14. #include <linux/timex.h>
  15. #include <asm/mipsregs.h>
  16. #include <asm/hardirq.h>
  17. #include <asm/irq.h>
  18. #include <asm/div64.h>
  19. #include <asm/cpu.h>
  20. #include <asm/time.h>
  21. #include <asm/mc146818-time.h>
  22. #include <asm/msc01_ic.h>
  23. #include <asm/mips-boards/generic.h>
  24. #include <asm/mips-boards/prom.h>
  25. #include <asm/mips-boards/simint.h>
  26. #include <asm/mc146818-time.h>
  27. #include <asm/smp.h>
  28. unsigned long cpu_khz;
  29. irqreturn_t sim_timer_interrupt(int irq, void *dev_id)
  30. {
  31. #ifdef CONFIG_SMP
  32. int cpu = smp_processor_id();
  33. /*
  34. * CPU 0 handles the global timer interrupt job
  35. * resets count/compare registers to trigger next timer int.
  36. */
  37. #ifndef CONFIG_MIPS_MT_SMTC
  38. if (cpu == 0) {
  39. timer_interrupt(irq, dev_id);
  40. }
  41. else {
  42. /* Everyone else needs to reset the timer int here as
  43. ll_local_timer_interrupt doesn't */
  44. /*
  45. * FIXME: need to cope with counter underflow.
  46. * More support needs to be added to kernel/time for
  47. * counter/timer interrupts on multiple CPU's
  48. */
  49. write_c0_compare (read_c0_count() + ( mips_hpt_frequency/HZ));
  50. }
  51. #else /* SMTC */
  52. /*
  53. * In SMTC system, one Count/Compare set exists per VPE.
  54. * Which TC within a VPE gets the interrupt is essentially
  55. * random - we only know that it shouldn't be one with
  56. * IXMT set. Whichever TC gets the interrupt needs to
  57. * send special interprocessor interrupts to the other
  58. * TCs to make sure that they schedule, etc.
  59. *
  60. * That code is specific to the SMTC kernel, not to
  61. * the simulation platform, so it's invoked from
  62. * the general MIPS timer_interrupt routine.
  63. *
  64. * We have a problem in that the interrupt vector code
  65. * had to turn off the timer IM bit to avoid redundant
  66. * entries, but we may never get to mips_cpu_irq_end
  67. * to turn it back on again if the scheduler gets
  68. * involved. So we clear the pending timer here,
  69. * and re-enable the mask...
  70. */
  71. int vpflags = dvpe();
  72. write_c0_compare (read_c0_count() - 1);
  73. clear_c0_cause(0x100 << MIPSCPU_INT_CPUCTR);
  74. set_c0_status(0x100 << MIPSCPU_INT_CPUCTR);
  75. irq_enable_hazard();
  76. evpe(vpflags);
  77. if(cpu_data[cpu].vpe_id == 0) timer_interrupt(irq, dev_id);
  78. else write_c0_compare (read_c0_count() + ( mips_hpt_frequency/HZ));
  79. smtc_timer_broadcast(cpu_data[cpu].vpe_id);
  80. #endif /* CONFIG_MIPS_MT_SMTC */
  81. /*
  82. * every CPU should do profiling and process accounting
  83. */
  84. local_timer_interrupt (irq, dev_id);
  85. return IRQ_HANDLED;
  86. #else
  87. return timer_interrupt (irq, dev_id);
  88. #endif
  89. }
  90. /*
  91. * Estimate CPU frequency. Sets mips_counter_frequency as a side-effect
  92. */
  93. static unsigned int __init estimate_cpu_frequency(void)
  94. {
  95. unsigned int prid = read_c0_prid() & 0xffff00;
  96. unsigned int count;
  97. #if 1
  98. /*
  99. * hardwire the board frequency to 12MHz.
  100. */
  101. if ((prid == (PRID_COMP_MIPS | PRID_IMP_20KC)) ||
  102. (prid == (PRID_COMP_MIPS | PRID_IMP_25KF)))
  103. count = 12000000;
  104. else
  105. count = 6000000;
  106. #else
  107. unsigned int flags;
  108. local_irq_save(flags);
  109. /* Start counter exactly on falling edge of update flag */
  110. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  111. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  112. /* Start r4k counter. */
  113. write_c0_count(0);
  114. /* Read counter exactly on falling edge of update flag */
  115. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  116. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  117. count = read_c0_count();
  118. /* restore interrupts */
  119. local_irq_restore(flags);
  120. #endif
  121. mips_hpt_frequency = count;
  122. if ((prid != (PRID_COMP_MIPS | PRID_IMP_20KC)) &&
  123. (prid != (PRID_COMP_MIPS | PRID_IMP_25KF)))
  124. count *= 2;
  125. count += 5000; /* round */
  126. count -= count%10000;
  127. return count;
  128. }
  129. void __init sim_time_init(void)
  130. {
  131. unsigned int est_freq, flags;
  132. local_irq_save(flags);
  133. /* Set Data mode - binary. */
  134. CMOS_WRITE(CMOS_READ(RTC_CONTROL) | RTC_DM_BINARY, RTC_CONTROL);
  135. est_freq = estimate_cpu_frequency ();
  136. printk("CPU frequency %d.%02d MHz\n", est_freq/1000000,
  137. (est_freq%1000000)*100/1000000);
  138. cpu_khz = est_freq / 1000;
  139. local_irq_restore(flags);
  140. }
  141. static int mips_cpu_timer_irq;
  142. static void mips_timer_dispatch(void)
  143. {
  144. do_IRQ(mips_cpu_timer_irq);
  145. }
  146. void __init plat_timer_setup(struct irqaction *irq)
  147. {
  148. if (cpu_has_veic) {
  149. set_vi_handler(MSC01E_INT_CPUCTR, mips_timer_dispatch);
  150. mips_cpu_timer_irq = MSC01E_INT_BASE + MSC01E_INT_CPUCTR;
  151. }
  152. else {
  153. if (cpu_has_vint)
  154. set_vi_handler(MIPSCPU_INT_CPUCTR, mips_timer_dispatch);
  155. mips_cpu_timer_irq = MIPSCPU_INT_BASE + MIPSCPU_INT_CPUCTR;
  156. }
  157. /* we are using the cpu counter for timer interrupts */
  158. irq->handler = sim_timer_interrupt;
  159. setup_irq(mips_cpu_timer_irq, irq);
  160. #ifdef CONFIG_SMP
  161. /* irq_desc(riptor) is a global resource, when the interrupt overlaps
  162. on seperate cpu's the first one tries to handle the second interrupt.
  163. The effect is that the int remains disabled on the second cpu.
  164. Mark the interrupt with IRQ_PER_CPU to avoid any confusion */
  165. irq_desc[mips_cpu_timer_irq].status |= IRQ_PER_CPU;
  166. #endif
  167. /* to generate the first timer interrupt */
  168. write_c0_compare(read_c0_count() + (mips_hpt_frequency/HZ));
  169. }