00001 /* 00002 * arch/i386/core/i386_timer.c 00003 * 00004 * Use the "System Timer 2" to implement the udelay callback in 00005 * the BIOS timer driver. Also used to calibrate the clock rate 00006 * in the RTDSC timer driver. 00007 * 00008 * This program is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU General Public License as 00010 * published by the Free Software Foundation; either version 2, or (at 00011 * your option) any later version. 00012 */ 00013 00014 FILE_LICENCE ( GPL2_OR_LATER ); 00015 00016 #include <stddef.h> 00017 #include <gpxe/timer2.h> 00018 #include <gpxe/io.h> 00019 00020 /* Timers tick over at this rate */ 00021 #define TIMER2_TICKS_PER_SEC 1193180U 00022 00023 /* Parallel Peripheral Controller Port B */ 00024 #define PPC_PORTB 0x61 00025 00026 /* Meaning of the port bits */ 00027 #define PPCB_T2OUT 0x20 /* Bit 5 */ 00028 #define PPCB_SPKR 0x02 /* Bit 1 */ 00029 #define PPCB_T2GATE 0x01 /* Bit 0 */ 00030 00031 /* Ports for the 8254 timer chip */ 00032 #define TIMER2_PORT 0x42 00033 #define TIMER_MODE_PORT 0x43 00034 00035 /* Meaning of the mode bits */ 00036 #define TIMER0_SEL 0x00 00037 #define TIMER1_SEL 0x40 00038 #define TIMER2_SEL 0x80 00039 #define READBACK_SEL 0xC0 00040 00041 #define LATCH_COUNT 0x00 00042 #define LOBYTE_ACCESS 0x10 00043 #define HIBYTE_ACCESS 0x20 00044 #define WORD_ACCESS 0x30 00045 00046 #define MODE0 0x00 00047 #define MODE1 0x02 00048 #define MODE2 0x04 00049 #define MODE3 0x06 00050 #define MODE4 0x08 00051 #define MODE5 0x0A 00052 00053 #define BINARY_COUNT 0x00 00054 #define BCD_COUNT 0x01 00055 00056 static void load_timer2 ( unsigned int ticks ) { 00057 /* 00058 * Now let's take care of PPC channel 2 00059 * 00060 * Set the Gate high, program PPC channel 2 for mode 0, 00061 * (interrupt on terminal count mode), binary count, 00062 * load 5 * LATCH count, (LSB and MSB) to begin countdown. 00063 * 00064 * Note some implementations have a bug where the high bits byte 00065 * of channel 2 is ignored. 00066 */ 00067 /* Set up the timer gate, turn off the speaker */ 00068 /* Set the Gate high, disable speaker */ 00069 outb((inb(PPC_PORTB) & ~PPCB_SPKR) | PPCB_T2GATE, PPC_PORTB); 00070 /* binary, mode 0, LSB/MSB, Ch 2 */ 00071 outb(TIMER2_SEL|WORD_ACCESS|MODE0|BINARY_COUNT, TIMER_MODE_PORT); 00072 /* LSB of ticks */ 00073 outb(ticks & 0xFF, TIMER2_PORT); 00074 /* MSB of ticks */ 00075 outb(ticks >> 8, TIMER2_PORT); 00076 } 00077 00078 static int timer2_running ( void ) { 00079 return ((inb(PPC_PORTB) & PPCB_T2OUT) == 0); 00080 } 00081 00082 void timer2_udelay ( unsigned long usecs ) { 00083 load_timer2 ( ( usecs * TIMER2_TICKS_PER_SEC ) / ( 1000 * 1000 ) ); 00084 while (timer2_running()) { 00085 /* Do nothing */ 00086 } 00087 }
1.5.7.1