i8253.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * i8253.c 8253/PIT functions
  3. *
  4. */
  5. #include <linux/clocksource.h>
  6. #include <linux/spinlock.h>
  7. #include <linux/jiffies.h>
  8. #include <linux/sysdev.h>
  9. #include <linux/module.h>
  10. #include <linux/init.h>
  11. #include <asm/smp.h>
  12. #include <asm/delay.h>
  13. #include <asm/i8253.h>
  14. #include <asm/io.h>
  15. #include "io_ports.h"
  16. DEFINE_SPINLOCK(i8253_lock);
  17. EXPORT_SYMBOL(i8253_lock);
  18. void setup_pit_timer(void)
  19. {
  20. unsigned long flags;
  21. spin_lock_irqsave(&i8253_lock, flags);
  22. outb_p(0x34,PIT_MODE); /* binary, mode 2, LSB/MSB, ch 0 */
  23. udelay(10);
  24. outb_p(LATCH & 0xff , PIT_CH0); /* LSB */
  25. udelay(10);
  26. outb(LATCH >> 8 , PIT_CH0); /* MSB */
  27. spin_unlock_irqrestore(&i8253_lock, flags);
  28. }
  29. /*
  30. * Since the PIT overflows every tick, its not very useful
  31. * to just read by itself. So use jiffies to emulate a free
  32. * running counter:
  33. */
  34. static cycle_t pit_read(void)
  35. {
  36. unsigned long flags;
  37. int count;
  38. u32 jifs;
  39. static int old_count;
  40. static u32 old_jifs;
  41. spin_lock_irqsave(&i8253_lock, flags);
  42. /*
  43. * Although our caller may have the read side of xtime_lock,
  44. * this is now a seqlock, and we are cheating in this routine
  45. * by having side effects on state that we cannot undo if
  46. * there is a collision on the seqlock and our caller has to
  47. * retry. (Namely, old_jifs and old_count.) So we must treat
  48. * jiffies as volatile despite the lock. We read jiffies
  49. * before latching the timer count to guarantee that although
  50. * the jiffies value might be older than the count (that is,
  51. * the counter may underflow between the last point where
  52. * jiffies was incremented and the point where we latch the
  53. * count), it cannot be newer.
  54. */
  55. jifs = jiffies;
  56. outb_p(0x00, PIT_MODE); /* latch the count ASAP */
  57. count = inb_p(PIT_CH0); /* read the latched count */
  58. count |= inb_p(PIT_CH0) << 8;
  59. /* VIA686a test code... reset the latch if count > max + 1 */
  60. if (count > LATCH) {
  61. outb_p(0x34, PIT_MODE);
  62. outb_p(LATCH & 0xff, PIT_CH0);
  63. outb(LATCH >> 8, PIT_CH0);
  64. count = LATCH - 1;
  65. }
  66. /*
  67. * It's possible for count to appear to go the wrong way for a
  68. * couple of reasons:
  69. *
  70. * 1. The timer counter underflows, but we haven't handled the
  71. * resulting interrupt and incremented jiffies yet.
  72. * 2. Hardware problem with the timer, not giving us continuous time,
  73. * the counter does small "jumps" upwards on some Pentium systems,
  74. * (see c't 95/10 page 335 for Neptun bug.)
  75. *
  76. * Previous attempts to handle these cases intelligently were
  77. * buggy, so we just do the simple thing now.
  78. */
  79. if (count > old_count && jifs == old_jifs) {
  80. count = old_count;
  81. }
  82. old_count = count;
  83. old_jifs = jifs;
  84. spin_unlock_irqrestore(&i8253_lock, flags);
  85. count = (LATCH - 1) - count;
  86. return (cycle_t)(jifs * LATCH) + count;
  87. }
  88. static struct clocksource clocksource_pit = {
  89. .name = "pit",
  90. .rating = 110,
  91. .read = pit_read,
  92. .mask = CLOCKSOURCE_MASK(32),
  93. .mult = 0,
  94. .shift = 20,
  95. };
  96. static int __init init_pit_clocksource(void)
  97. {
  98. if (num_possible_cpus() > 1) /* PIT does not scale! */
  99. return 0;
  100. clocksource_pit.mult = clocksource_hz2mult(CLOCK_TICK_RATE, 20);
  101. return clocksource_register(&clocksource_pit);
  102. }
  103. module_init(init_pit_clocksource);