ip22-time.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Time operations for IP22 machines. Original code may come from
  7. * Ralf Baechle or David S. Miller (sorry guys, i'm really not sure)
  8. *
  9. * Copyright (C) 2001 by Ladislav Michl
  10. * Copyright (C) 2003, 06 Ralf Baechle (ralf@linux-mips.org)
  11. */
  12. #include <linux/bcd.h>
  13. #include <linux/i8253.h>
  14. #include <linux/init.h>
  15. #include <linux/irq.h>
  16. #include <linux/kernel.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/kernel_stat.h>
  19. #include <linux/time.h>
  20. #include <linux/ftrace.h>
  21. #include <asm/cpu.h>
  22. #include <asm/mipsregs.h>
  23. #include <asm/io.h>
  24. #include <asm/irq.h>
  25. #include <asm/time.h>
  26. #include <asm/sgialib.h>
  27. #include <asm/sgi/ioc.h>
  28. #include <asm/sgi/hpc3.h>
  29. #include <asm/sgi/ip22.h>
  30. static unsigned long dosample(void)
  31. {
  32. u32 ct0, ct1;
  33. u8 msb;
  34. /* Start the counter. */
  35. sgint->tcword = (SGINT_TCWORD_CNT2 | SGINT_TCWORD_CALL |
  36. SGINT_TCWORD_MRGEN);
  37. sgint->tcnt2 = SGINT_TCSAMP_COUNTER & 0xff;
  38. sgint->tcnt2 = SGINT_TCSAMP_COUNTER >> 8;
  39. /* Get initial counter invariant */
  40. ct0 = read_c0_count();
  41. /* Latch and spin until top byte of counter2 is zero */
  42. do {
  43. writeb(SGINT_TCWORD_CNT2 | SGINT_TCWORD_CLAT, &sgint->tcword);
  44. (void) readb(&sgint->tcnt2);
  45. msb = readb(&sgint->tcnt2);
  46. ct1 = read_c0_count();
  47. } while (msb);
  48. /* Stop the counter. */
  49. writeb(SGINT_TCWORD_CNT2 | SGINT_TCWORD_CALL | SGINT_TCWORD_MSWST,
  50. &sgint->tcword);
  51. /*
  52. * Return the difference, this is how far the r4k counter increments
  53. * for every 1/HZ seconds. We round off the nearest 1 MHz of master
  54. * clock (= 1000000 / HZ / 2).
  55. */
  56. return (ct1 - ct0) / (500000/HZ) * (500000/HZ);
  57. }
  58. /*
  59. * Here we need to calibrate the cycle counter to at least be close.
  60. */
  61. __init void plat_time_init(void)
  62. {
  63. unsigned long r4k_ticks[3];
  64. unsigned long r4k_tick;
  65. /*
  66. * Figure out the r4k offset, the algorithm is very simple and works in
  67. * _all_ cases as long as the 8254 counter register itself works ok (as
  68. * an interrupt driving timer it does not because of bug, this is why
  69. * we are using the onchip r4k counter/compare register to serve this
  70. * purpose, but for r4k_offset calculation it will work ok for us).
  71. * There are other very complicated ways of performing this calculation
  72. * but this one works just fine so I am not going to futz around. ;-)
  73. */
  74. printk(KERN_INFO "Calibrating system timer... ");
  75. dosample(); /* Prime cache. */
  76. dosample(); /* Prime cache. */
  77. /* Zero is NOT an option. */
  78. do {
  79. r4k_ticks[0] = dosample();
  80. } while (!r4k_ticks[0]);
  81. do {
  82. r4k_ticks[1] = dosample();
  83. } while (!r4k_ticks[1]);
  84. if (r4k_ticks[0] != r4k_ticks[1]) {
  85. printk("warning: timer counts differ, retrying... ");
  86. r4k_ticks[2] = dosample();
  87. if (r4k_ticks[2] == r4k_ticks[0]
  88. || r4k_ticks[2] == r4k_ticks[1])
  89. r4k_tick = r4k_ticks[2];
  90. else {
  91. printk("disagreement, using average... ");
  92. r4k_tick = (r4k_ticks[0] + r4k_ticks[1]
  93. + r4k_ticks[2]) / 3;
  94. }
  95. } else
  96. r4k_tick = r4k_ticks[0];
  97. printk("%d [%d.%04d MHz CPU]\n", (int) r4k_tick,
  98. (int) (r4k_tick / (500000 / HZ)),
  99. (int) (r4k_tick % (500000 / HZ)));
  100. mips_hpt_frequency = r4k_tick * HZ;
  101. if (ip22_is_fullhouse())
  102. setup_pit_timer();
  103. }
  104. /* Generic SGI handler for (spurious) 8254 interrupts */
  105. void __irq_entry indy_8254timer_irq(void)
  106. {
  107. int irq = SGI_8254_0_IRQ;
  108. ULONG cnt;
  109. char c;
  110. irq_enter();
  111. kstat_incr_irq_this_cpu(irq);
  112. printk(KERN_ALERT "Oops, got 8254 interrupt.\n");
  113. ArcRead(0, &c, 1, &cnt);
  114. ArcEnterInteractiveMode();
  115. irq_exit();
  116. }