You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

timer2.c 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * arch/i386/core/i386_timer.c
  3. *
  4. * Use the "System Timer 2" to implement the udelay callback in
  5. * the BIOS timer driver. Also used to calibrate the clock rate
  6. * in the RTDSC timer driver.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2, or (at
  11. * your option) any later version.
  12. */
  13. #include <stddef.h>
  14. #include <gpxe/timer2.h>
  15. #include <gpxe/io.h>
  16. /* Timers tick over at this rate */
  17. #define TIMER2_TICKS_PER_SEC 1193180U
  18. /* Parallel Peripheral Controller Port B */
  19. #define PPC_PORTB 0x61
  20. /* Meaning of the port bits */
  21. #define PPCB_T2OUT 0x20 /* Bit 5 */
  22. #define PPCB_SPKR 0x02 /* Bit 1 */
  23. #define PPCB_T2GATE 0x01 /* Bit 0 */
  24. /* Ports for the 8254 timer chip */
  25. #define TIMER2_PORT 0x42
  26. #define TIMER_MODE_PORT 0x43
  27. /* Meaning of the mode bits */
  28. #define TIMER0_SEL 0x00
  29. #define TIMER1_SEL 0x40
  30. #define TIMER2_SEL 0x80
  31. #define READBACK_SEL 0xC0
  32. #define LATCH_COUNT 0x00
  33. #define LOBYTE_ACCESS 0x10
  34. #define HIBYTE_ACCESS 0x20
  35. #define WORD_ACCESS 0x30
  36. #define MODE0 0x00
  37. #define MODE1 0x02
  38. #define MODE2 0x04
  39. #define MODE3 0x06
  40. #define MODE4 0x08
  41. #define MODE5 0x0A
  42. #define BINARY_COUNT 0x00
  43. #define BCD_COUNT 0x01
  44. static void load_timer2 ( unsigned int ticks ) {
  45. /*
  46. * Now let's take care of PPC channel 2
  47. *
  48. * Set the Gate high, program PPC channel 2 for mode 0,
  49. * (interrupt on terminal count mode), binary count,
  50. * load 5 * LATCH count, (LSB and MSB) to begin countdown.
  51. *
  52. * Note some implementations have a bug where the high bits byte
  53. * of channel 2 is ignored.
  54. */
  55. /* Set up the timer gate, turn off the speaker */
  56. /* Set the Gate high, disable speaker */
  57. outb((inb(PPC_PORTB) & ~PPCB_SPKR) | PPCB_T2GATE, PPC_PORTB);
  58. /* binary, mode 0, LSB/MSB, Ch 2 */
  59. outb(TIMER2_SEL|WORD_ACCESS|MODE0|BINARY_COUNT, TIMER_MODE_PORT);
  60. /* LSB of ticks */
  61. outb(ticks & 0xFF, TIMER2_PORT);
  62. /* MSB of ticks */
  63. outb(ticks >> 8, TIMER2_PORT);
  64. }
  65. static int timer2_running ( void ) {
  66. return ((inb(PPC_PORTB) & PPCB_T2OUT) == 0);
  67. }
  68. void timer2_udelay ( unsigned long usecs ) {
  69. load_timer2 ( ( usecs * TIMER2_TICKS_PER_SEC ) / ( 1000 * 1000 ) );
  70. while (timer2_running()) {
  71. /* Do nothing */
  72. }
  73. }