Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

i386_timer.c 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 <bits/timer2.h>
  15. #include <gpxe/timer.h>
  16. #include <gpxe/io.h>
  17. /* Timers tick over at this rate */
  18. #define TIMER2_TICK_RATE 1193180U
  19. /* Parallel Peripheral Controller Port B */
  20. #define PPC_PORTB 0x61
  21. /* Meaning of the port bits */
  22. #define PPCB_T2OUT 0x20 /* Bit 5 */
  23. #define PPCB_SPKR 0x02 /* Bit 1 */
  24. #define PPCB_T2GATE 0x01 /* Bit 0 */
  25. /* Ports for the 8254 timer chip */
  26. #define TIMER2_PORT 0x42
  27. #define TIMER_MODE_PORT 0x43
  28. /* Meaning of the mode bits */
  29. #define TIMER0_SEL 0x00
  30. #define TIMER1_SEL 0x40
  31. #define TIMER2_SEL 0x80
  32. #define READBACK_SEL 0xC0
  33. #define LATCH_COUNT 0x00
  34. #define LOBYTE_ACCESS 0x10
  35. #define HIBYTE_ACCESS 0x20
  36. #define WORD_ACCESS 0x30
  37. #define MODE0 0x00
  38. #define MODE1 0x02
  39. #define MODE2 0x04
  40. #define MODE3 0x06
  41. #define MODE4 0x08
  42. #define MODE5 0x0A
  43. #define BINARY_COUNT 0x00
  44. #define BCD_COUNT 0x01
  45. static void load_timer2(unsigned int ticks)
  46. {
  47. /*
  48. * Now let's take care of PPC channel 2
  49. *
  50. * Set the Gate high, program PPC channel 2 for mode 0,
  51. * (interrupt on terminal count mode), binary count,
  52. * load 5 * LATCH count, (LSB and MSB) to begin countdown.
  53. *
  54. * Note some implementations have a bug where the high bits byte
  55. * of channel 2 is ignored.
  56. */
  57. /* Set up the timer gate, turn off the speaker */
  58. /* Set the Gate high, disable speaker */
  59. outb((inb(PPC_PORTB) & ~PPCB_SPKR) | PPCB_T2GATE, PPC_PORTB);
  60. /* binary, mode 0, LSB/MSB, Ch 2 */
  61. outb(TIMER2_SEL|WORD_ACCESS|MODE0|BINARY_COUNT, TIMER_MODE_PORT);
  62. /* LSB of ticks */
  63. outb(ticks & 0xFF, TIMER2_PORT);
  64. /* MSB of ticks */
  65. outb(ticks >> 8, TIMER2_PORT);
  66. }
  67. static int timer2_running(void)
  68. {
  69. return ((inb(PPC_PORTB) & PPCB_T2OUT) == 0);
  70. }
  71. void i386_timer2_udelay(unsigned int usecs)
  72. {
  73. load_timer2((usecs * TIMER2_TICK_RATE)/USECS_IN_SEC);
  74. while (timer2_running())
  75. ;
  76. }