Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 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 | |
Uwe Hermann | 3153863 | 2008-08-31 22:10:35 +0000 | [diff] [blame] | 30 | /** |
| 31 | * @file i386/timer.c |
| 32 | * i386 specific timer routines |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 33 | */ |
| 34 | |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 35 | #include <libpayload.h> |
| 36 | #include <arch/rdtsc.h> |
| 37 | |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 38 | /** |
| 39 | * @ingroup arch |
Uwe Hermann | 3153863 | 2008-08-31 22:10:35 +0000 | [diff] [blame] | 40 | * Global variable containing the speed of the processor in KHz. |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 41 | */ |
Jordan Crouse | 4839266 | 2008-08-28 23:12:02 +0000 | [diff] [blame] | 42 | u32 cpu_khz; |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 43 | |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 44 | /** |
| 45 | * Calculate the speed of the processor for use in delays. |
| 46 | * |
| 47 | * @return The CPU speed in kHz. |
| 48 | */ |
Uwe Hermann | dc69e05 | 2008-03-20 01:53:30 +0000 | [diff] [blame] | 49 | unsigned int get_cpu_speed(void) |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 50 | { |
| 51 | unsigned long long start, end; |
| 52 | |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 53 | /* Set up the PPC port - disable the speaker, enable the T2 gate. */ |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 54 | outb((inb(0x61) & ~0x02) | 0x01, 0x61); |
| 55 | |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 56 | /* Set the PIT to Mode 0, counter 2, word access. */ |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 57 | outb(0xB0, 0x43); |
| 58 | |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 59 | /* Load the counter with 0xffff. */ |
| 60 | outb(0xff, 0x42); |
| 61 | outb(0xff, 0x42); |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 62 | |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 63 | /* Read the number of ticks during the period. */ |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 64 | start = rdtsc(); |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 65 | while (!(inb(0x61) & 0x20)) ; |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 66 | end = rdtsc(); |
| 67 | |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 68 | /* |
Uwe Hermann | 661e380 | 2008-03-21 18:37:23 +0000 | [diff] [blame] | 69 | * The clock rate is 1193180 Hz, the number of milliseconds for a |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 70 | * period of 0xffff is 1193180 / (0xFFFF * 1000) or .0182. |
| 71 | * Multiply that by the number of measured clocks to get the kHz value. |
| 72 | */ |
| 73 | cpu_khz = (unsigned int)((end - start) * 1193180U / (1000 * 0xffff)); |
Uwe Hermann | 14a3feb | 2008-03-20 20:46:44 +0000 | [diff] [blame] | 74 | |
| 75 | return cpu_khz; |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Jordan Crouse | f2433a9 | 2008-10-20 17:08:08 +0000 | [diff] [blame] | 78 | static inline void _delay(unsigned long long delta) |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 79 | { |
| 80 | unsigned long long timeout = rdtsc() + delta; |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 81 | while (rdtsc() < timeout) ; |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 84 | /** |
Uwe Hermann | 3153863 | 2008-08-31 22:10:35 +0000 | [diff] [blame] | 85 | * Delay for a specified number of nanoseconds. |
| 86 | * |
| 87 | * @param n Number of nanoseconds to delay for. |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 88 | */ |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 89 | void ndelay(unsigned int n) |
| 90 | { |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 91 | _delay(n * cpu_khz / 1000000); |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 94 | /** |
Uwe Hermann | 3153863 | 2008-08-31 22:10:35 +0000 | [diff] [blame] | 95 | * Delay for a specified number of microseconds. |
| 96 | * |
| 97 | * @param n Number of microseconds to delay for. |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 98 | */ |
Jordan Crouse | 234e87f | 2008-04-10 22:50:44 +0000 | [diff] [blame] | 99 | void udelay(unsigned int n) |
| 100 | { |
| 101 | _delay(n * cpu_khz / 1000); |
| 102 | } |
| 103 | |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 104 | /** |
Uwe Hermann | 3153863 | 2008-08-31 22:10:35 +0000 | [diff] [blame] | 105 | * Delay for a specified number of milliseconds. |
| 106 | * |
| 107 | * @param m Number of milliseconds to delay for. |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 108 | */ |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 109 | void mdelay(unsigned int m) |
| 110 | { |
| 111 | _delay(m * cpu_khz); |
| 112 | } |
| 113 | |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 114 | /** |
Uwe Hermann | 3153863 | 2008-08-31 22:10:35 +0000 | [diff] [blame] | 115 | * Delay for a specified number of seconds. |
| 116 | * |
| 117 | * @param s Number of seconds to delay for. |
Jordan Crouse | b746178 | 2008-08-28 23:12:22 +0000 | [diff] [blame] | 118 | */ |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 119 | void delay(unsigned int s) |
| 120 | { |
| 121 | _delay(s * cpu_khz * 1000); |
| 122 | } |