1 /* Defines for routines to implement a low-overhead timer for drivers */
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2, or (at
7 * your option) any later version.
13 /* Ports for the 8254 timer chip */
14 #define TIMER2_PORT 0x42
15 #define TIMER_MODE_PORT 0x43
17 /* Meaning of the mode bits */
18 #define TIMER0_SEL 0x00
19 #define TIMER1_SEL 0x40
20 #define TIMER2_SEL 0x80
21 #define READBACK_SEL 0xC0
23 #define LATCH_COUNT 0x00
24 #define LOBYTE_ACCESS 0x10
25 #define HIBYTE_ACCESS 0x20
26 #define WORD_ACCESS 0x30
35 #define BINARY_COUNT 0x00
36 #define BCD_COUNT 0x01
38 /* Timers tick over at this rate */
39 #define TICKS_PER_MS 1193
41 /* Parallel Peripheral Controller Port B */
42 #define PPC_PORTB 0x61
44 /* Meaning of the port bits */
45 #define PPCB_T2OUT 0x20 /* Bit 5 */
46 #define PPCB_SPKR 0x02 /* Bit 1 */
47 #define PPCB_T2GATE 0x01 /* Bit 0 */
49 /* Ticks must be between 0 and 65535 (0 == 65536)
50 because it is a 16 bit counter */
51 extern void load_timer2(unsigned int ticks
);
52 extern inline int timer2_running(void)
54 return ((inb(PPC_PORTB
) & PPCB_T2OUT
) == 0);
57 extern inline void waiton_timer2(unsigned int ticks
)
60 while ((inb(PPC_PORTB
) & PPCB_T2OUT
) == 0)