Cosmetics, fix typos (trivial).
[coreboot.git] / payloads / libpayload / i386 / timer.c
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <libpayload.h>
31 #include <arch/rdtsc.h>
32
33 static unsigned int cpu_khz;
34
35 /**
36  * Calculate the speed of the processor for use in delays.
37  *
38  * @return The CPU speed in kHz.
39  */
40 unsigned int get_cpu_speed(void)
41 {
42         unsigned long long start, end;
43
44         /* Set up the PPC port - disable the speaker, enable the T2 gate. */
45         outb((inb(0x61) & ~0x02) | 0x01, 0x61);
46
47         /* Set the PIT to Mode 0, counter 2, word access. */
48         outb(0xB0, 0x43);
49
50         /* Load the counter with 0xffff. */
51         outb(0xff, 0x42);
52         outb(0xff, 0x42);
53
54         /* Read the number of ticks during the period. */
55         start = rdtsc();
56         while (!(inb(0x61) & 0x20)) ;
57         end = rdtsc();
58
59         /*
60          * The clock rate is 1193180 Hz, the number of milliseconds for a
61          * period of 0xffff is 1193180 / (0xFFFF * 1000) or .0182.
62          * Multiply that by the number of measured clocks to get the kHz value.
63          */
64         cpu_khz = (unsigned int)((end - start) * 1193180U / (1000 * 0xffff));
65
66         return cpu_khz;
67 }
68
69 static inline void _delay(unsigned int delta)
70 {
71         unsigned long long timeout = rdtsc() + delta;
72         while (rdtsc() < timeout) ;
73 }
74
75 void ndelay(unsigned int n)
76 {
77         _delay(n * cpu_khz / 1000000);
78 }
79
80 void mdelay(unsigned int m)
81 {
82         _delay(m * cpu_khz);
83 }
84
85 void delay(unsigned int s)
86 {
87         _delay(s * cpu_khz * 1000);
88 }