2 * arch/i386/core/i386_timer.c
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.
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.
15 #include <bits/timer2.h>
16 #include <gpxe/timer.h>
19 /* Timers tick over at this rate */
20 #define TIMER2_TICK_RATE 1193180U
22 /* Parallel Peripheral Controller Port B */
23 #define PPC_PORTB 0x61
25 /* Meaning of the port bits */
26 #define PPCB_T2OUT 0x20 /* Bit 5 */
27 #define PPCB_SPKR 0x02 /* Bit 1 */
28 #define PPCB_T2GATE 0x01 /* Bit 0 */
30 /* Ports for the 8254 timer chip */
31 #define TIMER2_PORT 0x42
32 #define TIMER_MODE_PORT 0x43
34 /* Meaning of the mode bits */
35 #define TIMER0_SEL 0x00
36 #define TIMER1_SEL 0x40
37 #define TIMER2_SEL 0x80
38 #define READBACK_SEL 0xC0
40 #define LATCH_COUNT 0x00
41 #define LOBYTE_ACCESS 0x10
42 #define HIBYTE_ACCESS 0x20
43 #define WORD_ACCESS 0x30
52 #define BINARY_COUNT 0x00
53 #define BCD_COUNT 0x01
55 static void load_timer2(unsigned int ticks)
58 * Now let's take care of PPC channel 2
60 * Set the Gate high, program PPC channel 2 for mode 0,
61 * (interrupt on terminal count mode), binary count,
62 * load 5 * LATCH count, (LSB and MSB) to begin countdown.
64 * Note some implementations have a bug where the high bits byte
65 * of channel 2 is ignored.
67 /* Set up the timer gate, turn off the speaker */
68 /* Set the Gate high, disable speaker */
69 outb((inb(PPC_PORTB) & ~PPCB_SPKR) | PPCB_T2GATE, PPC_PORTB);
70 /* binary, mode 0, LSB/MSB, Ch 2 */
71 outb(TIMER2_SEL|WORD_ACCESS|MODE0|BINARY_COUNT, TIMER_MODE_PORT);
73 outb(ticks & 0xFF, TIMER2_PORT);
75 outb(ticks >> 8, TIMER2_PORT);
78 static int timer2_running(void)
80 return ((inb(PPC_PORTB) & PPCB_T2OUT) == 0);
83 void i386_timer2_udelay(unsigned int usecs)
85 load_timer2((usecs * TIMER2_TICK_RATE)/USECS_IN_SEC);
86 while (timer2_running())