Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/x86-64/kernel/time.c |
| 3 | * |
| 4 | * "High Precision Event Timer" based timekeeping. |
| 5 | * |
| 6 | * Copyright (c) 1991,1992,1995 Linus Torvalds |
| 7 | * Copyright (c) 1994 Alan Modra |
| 8 | * Copyright (c) 1995 Markus Kuhn |
| 9 | * Copyright (c) 1996 Ingo Molnar |
| 10 | * Copyright (c) 1998 Andrea Arcangeli |
Vojtech Pavlik | 2f82bde4 | 2006-06-26 13:58:38 +0200 | [diff] [blame] | 11 | * Copyright (c) 2002,2006 Vojtech Pavlik |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * Copyright (c) 2003 Andi Kleen |
| 13 | * RTC support code taken from arch/i386/kernel/timers/time_hpet.c |
| 14 | */ |
| 15 | |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/sched.h> |
| 18 | #include <linux/interrupt.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/mc146818rtc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/time.h> |
| 22 | #include <linux/ioport.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/device.h> |
| 25 | #include <linux/sysdev.h> |
| 26 | #include <linux/bcd.h> |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 27 | #include <linux/notifier.h> |
| 28 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/kallsyms.h> |
Andi Kleen | 312df5f | 2005-05-16 21:53:28 -0700 | [diff] [blame] | 30 | #include <linux/acpi.h> |
Andi Kleen | 8d91640 | 2005-05-31 14:39:26 -0700 | [diff] [blame] | 31 | #ifdef CONFIG_ACPI |
Andi Kleen | 312df5f | 2005-05-16 21:53:28 -0700 | [diff] [blame] | 32 | #include <acpi/achware.h> /* for PM timer frequency */ |
Andi Kleen | 0e5f61b | 2006-07-29 21:42:37 +0200 | [diff] [blame] | 33 | #include <acpi/acpi_bus.h> |
Andi Kleen | 8d91640 | 2005-05-31 14:39:26 -0700 | [diff] [blame] | 34 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/8253pit.h> |
Thomas Gleixner | 28318da | 2007-07-21 17:11:18 +0200 | [diff] [blame] | 36 | #include <asm/i8253.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/pgtable.h> |
| 38 | #include <asm/vsyscall.h> |
| 39 | #include <asm/timex.h> |
| 40 | #include <asm/proto.h> |
| 41 | #include <asm/hpet.h> |
| 42 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/hpet.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <asm/apic.h> |
john stultz | c37e7bb | 2007-02-16 01:28:19 -0800 | [diff] [blame] | 45 | #include <asm/hpet.h> |
Andi Kleen | 803d80f | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 46 | #include <asm/mpspec.h> |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 47 | #include <asm/nmi.h> |
Andi Kleen | 2aae950 | 2007-07-21 17:10:01 +0200 | [diff] [blame] | 48 | #include <asm/vgtod.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 50 | static char *timename = NULL; |
Andi Kleen | e8b9177 | 2006-02-26 04:18:49 +0100 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | DEFINE_SPINLOCK(rtc_lock); |
Andi Kleen | 2ee60e17 | 2006-06-26 13:59:44 +0200 | [diff] [blame] | 53 | EXPORT_SYMBOL(rtc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | DEFINE_SPINLOCK(i8253_lock); |
Thomas Gleixner | 28318da | 2007-07-21 17:11:18 +0200 | [diff] [blame] | 55 | EXPORT_SYMBOL(i8253_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | volatile unsigned long __jiffies __section_jiffies = INITIAL_JIFFIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | unsigned long profile_pc(struct pt_regs *regs) |
| 60 | { |
| 61 | unsigned long pc = instruction_pointer(regs); |
| 62 | |
Andi Kleen | 31679f3 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 63 | /* Assume the lock function has either no stack frame or a copy |
| 64 | of eflags from PUSHF |
| 65 | Eflags always has bits 22 and up cleared unlike kernel addresses. */ |
Andi Kleen | d5a2601 | 2006-07-28 14:44:42 +0200 | [diff] [blame] | 66 | if (!user_mode(regs) && in_lock_functions(pc)) { |
Andi Kleen | 31679f3 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 67 | unsigned long *sp = (unsigned long *)regs->rsp; |
| 68 | if (sp[0] >> 22) |
| 69 | return sp[0]; |
| 70 | if (sp[1] >> 22) |
| 71 | return sp[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | } |
| 73 | return pc; |
| 74 | } |
| 75 | EXPORT_SYMBOL(profile_pc); |
| 76 | |
| 77 | /* |
| 78 | * In order to set the CMOS clock precisely, set_rtc_mmss has to be called 500 |
| 79 | * ms after the second nowtime has started, because when nowtime is written |
| 80 | * into the registers of the CMOS clock, it will jump to the next second |
| 81 | * precisely 500 ms later. Check the Motorola MC146818A or Dallas DS12887 data |
| 82 | * sheet for details. |
| 83 | */ |
| 84 | |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 85 | static int set_rtc_mmss(unsigned long nowtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 87 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | int real_seconds, real_minutes, cmos_minutes; |
| 89 | unsigned char control, freq_select; |
| 90 | |
| 91 | /* |
| 92 | * IRQs are disabled when we're called from the timer interrupt, |
| 93 | * no need for spin_lock_irqsave() |
| 94 | */ |
| 95 | |
| 96 | spin_lock(&rtc_lock); |
| 97 | |
| 98 | /* |
| 99 | * Tell the clock it's being set and stop it. |
| 100 | */ |
| 101 | |
| 102 | control = CMOS_READ(RTC_CONTROL); |
| 103 | CMOS_WRITE(control | RTC_SET, RTC_CONTROL); |
| 104 | |
| 105 | freq_select = CMOS_READ(RTC_FREQ_SELECT); |
| 106 | CMOS_WRITE(freq_select | RTC_DIV_RESET2, RTC_FREQ_SELECT); |
| 107 | |
| 108 | cmos_minutes = CMOS_READ(RTC_MINUTES); |
| 109 | BCD_TO_BIN(cmos_minutes); |
| 110 | |
| 111 | /* |
| 112 | * since we're only adjusting minutes and seconds, don't interfere with hour |
| 113 | * overflow. This avoids messing with unknown time zones but requires your RTC |
| 114 | * not to be off by more than 15 minutes. Since we're calling it only when |
| 115 | * our clock is externally synchronized using NTP, this shouldn't be a problem. |
| 116 | */ |
| 117 | |
| 118 | real_seconds = nowtime % 60; |
| 119 | real_minutes = nowtime / 60; |
| 120 | if (((abs(real_minutes - cmos_minutes) + 15) / 30) & 1) |
| 121 | real_minutes += 30; /* correct for half hour time zone */ |
| 122 | real_minutes %= 60; |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | if (abs(real_minutes - cmos_minutes) >= 30) { |
| 125 | printk(KERN_WARNING "time.c: can't update CMOS clock " |
| 126 | "from %d to %d\n", cmos_minutes, real_minutes); |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 127 | retval = -1; |
Andi Kleen | 28456ed | 2006-03-25 16:30:37 +0100 | [diff] [blame] | 128 | } else { |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 129 | BIN_TO_BCD(real_seconds); |
| 130 | BIN_TO_BCD(real_minutes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | CMOS_WRITE(real_seconds, RTC_SECONDS); |
| 132 | CMOS_WRITE(real_minutes, RTC_MINUTES); |
| 133 | } |
| 134 | |
| 135 | /* |
| 136 | * The following flags have to be released exactly in this order, otherwise the |
| 137 | * DS12887 (popular MC146818A clone with integrated battery and quartz) will |
| 138 | * not reset the oscillator and will not update precisely 500 ms later. You |
| 139 | * won't find this mentioned in the Dallas Semiconductor data sheets, but who |
| 140 | * believes data sheets anyway ... -- Markus Kuhn |
| 141 | */ |
| 142 | |
| 143 | CMOS_WRITE(control, RTC_CONTROL); |
| 144 | CMOS_WRITE(freq_select, RTC_FREQ_SELECT); |
| 145 | |
| 146 | spin_unlock(&rtc_lock); |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 147 | |
| 148 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 151 | int update_persistent_clock(struct timespec now) |
| 152 | { |
| 153 | return set_rtc_mmss(now.tv_sec); |
| 154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 156 | void main_timer_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* |
| 159 | * Here we are in the timer irq handler. We have irqs locally disabled (so we |
| 160 | * don't need spin_lock_irqsave()) but we don't know if the timer_bh is running |
| 161 | * on the other CPU, so we need a lock. We also need to lock the vsyscall |
| 162 | * variables, because both do_timer() and us change them -arca+vojtech |
| 163 | */ |
| 164 | |
| 165 | write_seqlock(&xtime_lock); |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | /* |
| 168 | * Do the timer stuff. |
| 169 | */ |
| 170 | |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 171 | do_timer(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | #ifndef CONFIG_SMP |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 173 | update_process_times(user_mode(get_irq_regs())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | #endif |
| 175 | |
| 176 | /* |
| 177 | * In the SMP case we use the local APIC timer interrupt to do the profiling, |
| 178 | * except when we simulate SMP mode on a uniprocessor system, in that case we |
| 179 | * have to call the local interrupt handler. |
| 180 | */ |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | if (!using_apic_timer) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 183 | smp_local_timer_interrupt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | write_sequnlock(&xtime_lock); |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 186 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 188 | static irqreturn_t timer_interrupt(int irq, void *dev_id) |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 189 | { |
| 190 | if (apic_runs_main_timer > 1) |
| 191 | return IRQ_HANDLED; |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 192 | main_timer_handler(); |
Venkatesh Pallipadi | d25bf7e | 2006-01-11 22:44:24 +0100 | [diff] [blame] | 193 | if (using_apic_timer) |
| 194 | smp_send_timer_broadcast_ipi(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | return IRQ_HANDLED; |
| 196 | } |
| 197 | |
Thomas Gleixner | ef81ab2 | 2007-07-21 17:10:12 +0200 | [diff] [blame] | 198 | unsigned long read_persistent_clock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 200 | unsigned int year, mon, day, hour, min, sec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | unsigned long flags; |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 202 | unsigned century = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | spin_lock_irqsave(&rtc_lock, flags); |
| 205 | |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 206 | do { |
| 207 | sec = CMOS_READ(RTC_SECONDS); |
| 208 | min = CMOS_READ(RTC_MINUTES); |
| 209 | hour = CMOS_READ(RTC_HOURS); |
| 210 | day = CMOS_READ(RTC_DAY_OF_MONTH); |
| 211 | mon = CMOS_READ(RTC_MONTH); |
| 212 | year = CMOS_READ(RTC_YEAR); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 213 | #ifdef CONFIG_ACPI |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 214 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && |
| 215 | acpi_gbl_FADT.century) |
| 216 | century = CMOS_READ(acpi_gbl_FADT.century); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 217 | #endif |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 218 | } while (sec != CMOS_READ(RTC_SECONDS)); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | spin_unlock_irqrestore(&rtc_lock, flags); |
| 221 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 222 | /* |
| 223 | * We know that x86-64 always uses BCD format, no need to check the |
| 224 | * config register. |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 225 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 227 | BCD_TO_BIN(sec); |
| 228 | BCD_TO_BIN(min); |
| 229 | BCD_TO_BIN(hour); |
| 230 | BCD_TO_BIN(day); |
| 231 | BCD_TO_BIN(mon); |
| 232 | BCD_TO_BIN(year); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 234 | if (century) { |
| 235 | BCD_TO_BIN(century); |
| 236 | year += century * 100; |
| 237 | printk(KERN_INFO "Extended CMOS year: %d\n", century * 100); |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 238 | } else { |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 239 | /* |
| 240 | * x86-64 systems only exists since 2002. |
| 241 | * This will work up to Dec 31, 2100 |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 242 | */ |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 243 | year += 2000; |
| 244 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
| 246 | return mktime(year, mon, day, hour, min, sec); |
| 247 | } |
| 248 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 249 | /* calibrate_cpu is used on systems with fixed rate TSCs to determine |
| 250 | * processor frequency */ |
| 251 | #define TICK_COUNT 100000000 |
| 252 | static unsigned int __init tsc_calibrate_cpu_khz(void) |
| 253 | { |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 254 | int tsc_start, tsc_now; |
| 255 | int i, no_ctr_free; |
| 256 | unsigned long evntsel3 = 0, pmc3 = 0, pmc_now = 0; |
| 257 | unsigned long flags; |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 258 | |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 259 | for (i = 0; i < 4; i++) |
| 260 | if (avail_to_resrv_perfctr_nmi_bit(i)) |
| 261 | break; |
| 262 | no_ctr_free = (i == 4); |
| 263 | if (no_ctr_free) { |
| 264 | i = 3; |
| 265 | rdmsrl(MSR_K7_EVNTSEL3, evntsel3); |
| 266 | wrmsrl(MSR_K7_EVNTSEL3, 0); |
| 267 | rdmsrl(MSR_K7_PERFCTR3, pmc3); |
| 268 | } else { |
| 269 | reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i); |
| 270 | reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i); |
| 271 | } |
| 272 | local_irq_save(flags); |
| 273 | /* start meauring cycles, incrementing from 0 */ |
| 274 | wrmsrl(MSR_K7_PERFCTR0 + i, 0); |
| 275 | wrmsrl(MSR_K7_EVNTSEL0 + i, 1 << 22 | 3 << 16 | 0x76); |
| 276 | rdtscl(tsc_start); |
| 277 | do { |
| 278 | rdmsrl(MSR_K7_PERFCTR0 + i, pmc_now); |
| 279 | tsc_now = get_cycles_sync(); |
| 280 | } while ((tsc_now - tsc_start) < TICK_COUNT); |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 281 | |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 282 | local_irq_restore(flags); |
| 283 | if (no_ctr_free) { |
| 284 | wrmsrl(MSR_K7_EVNTSEL3, 0); |
| 285 | wrmsrl(MSR_K7_PERFCTR3, pmc3); |
| 286 | wrmsrl(MSR_K7_EVNTSEL3, evntsel3); |
| 287 | } else { |
| 288 | release_perfctr_nmi(MSR_K7_PERFCTR0 + i); |
| 289 | release_evntsel_nmi(MSR_K7_EVNTSEL0 + i); |
| 290 | } |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 291 | |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 292 | return pmc_now * tsc_khz / (tsc_now - tsc_start); |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 295 | #define PIT_MODE 0x43 |
| 296 | #define PIT_CH0 0x40 |
| 297 | |
Bernhard Walle | 141f9cf | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 298 | static void __pit_init(int val, u8 mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
| 300 | unsigned long flags; |
| 301 | |
| 302 | spin_lock_irqsave(&i8253_lock, flags); |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 303 | outb_p(mode, PIT_MODE); |
| 304 | outb_p(val & 0xff, PIT_CH0); /* LSB */ |
| 305 | outb_p(val >> 8, PIT_CH0); /* MSB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | spin_unlock_irqrestore(&i8253_lock, flags); |
| 307 | } |
| 308 | |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 309 | void __init pit_init(void) |
| 310 | { |
| 311 | __pit_init(LATCH, 0x34); /* binary, mode 2, LSB/MSB, ch 0 */ |
| 312 | } |
| 313 | |
Bernhard Walle | 141f9cf | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 314 | void pit_stop_interrupt(void) |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 315 | { |
| 316 | __pit_init(0, 0x30); /* mode 0 */ |
| 317 | } |
| 318 | |
Bernhard Walle | 141f9cf | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 319 | void stop_timer_interrupt(void) |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 320 | { |
| 321 | char *name; |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 322 | if (hpet_address) { |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 323 | name = "HPET"; |
| 324 | hpet_timer_stop_set_go(0); |
| 325 | } else { |
| 326 | name = "PIT"; |
| 327 | pit_stop_interrupt(); |
| 328 | } |
| 329 | printk(KERN_INFO "timer: %s interrupt stopped.\n", name); |
| 330 | } |
| 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | static struct irqaction irq0 = { |
Bernhard Walle | e6d828f | 2007-05-08 00:35:28 -0700 | [diff] [blame] | 333 | .handler = timer_interrupt, |
Venki Pallipadi | 5fa3a24 | 2007-10-12 23:04:06 +0200 | [diff] [blame] | 334 | .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING, |
Bernhard Walle | e6d828f | 2007-05-08 00:35:28 -0700 | [diff] [blame] | 335 | .mask = CPU_MASK_NONE, |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 336 | .name = "timer" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | }; |
| 338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | void __init time_init(void) |
| 340 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | if (nohpet) |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 342 | hpet_address = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 344 | if (hpet_arch_init()) |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 345 | hpet_address = 0; |
john stultz | a3a0075 | 2005-06-23 00:08:36 -0700 | [diff] [blame] | 346 | |
| 347 | if (hpet_use_timer) { |
Jordan Hargrave | b20367a | 2006-04-07 19:50:18 +0200 | [diff] [blame] | 348 | /* set tick_nsec to use the proper rate for HPET */ |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 349 | tick_nsec = TICK_NSEC_HPET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | timename = "HPET"; |
| 351 | } else { |
| 352 | pit_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | timename = "PIT"; |
| 354 | } |
| 355 | |
Thomas Gleixner | d371698 | 2007-10-12 23:04:06 +0200 | [diff] [blame^] | 356 | tsc_calibrate(); |
| 357 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 358 | cpu_khz = tsc_khz; |
| 359 | if (cpu_has(&boot_cpu_data, X86_FEATURE_CONSTANT_TSC) && |
| 360 | boot_cpu_data.x86_vendor == X86_VENDOR_AMD && |
| 361 | boot_cpu_data.x86 == 16) |
| 362 | cpu_khz = tsc_calibrate_cpu_khz(); |
| 363 | |
Andi Kleen | 312df5f | 2005-05-16 21:53:28 -0700 | [diff] [blame] | 364 | if (unsynchronized_tsc()) |
john stultz | 5a90cf2 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 365 | mark_tsc_unstable("TSCs unsynchronized"); |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 366 | |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 367 | if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP)) |
Vojtech Pavlik | c08c820 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 368 | vgetcpu_mode = VGETCPU_RDTSCP; |
| 369 | else |
| 370 | vgetcpu_mode = VGETCPU_LSL; |
| 371 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 372 | set_cyc2ns_scale(tsc_khz); |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 373 | printk(KERN_INFO "time.c: Detected %d.%03d MHz processor.\n", |
| 374 | cpu_khz / 1000, cpu_khz % 1000); |
john stultz | 6bb74df | 2007-03-05 00:30:50 -0800 | [diff] [blame] | 375 | init_tsc_clocksource(); |
| 376 | |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 377 | setup_irq(0, &irq0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 380 | /* |
| 381 | * sysfs support for the timer. |
| 382 | */ |
| 383 | |
Pavel Machek | 0b9c33a | 2005-04-16 15:25:31 -0700 | [diff] [blame] | 384 | static int timer_suspend(struct sys_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | static int timer_resume(struct sys_device *dev) |
| 390 | { |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 391 | if (hpet_address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | hpet_reenable(); |
| 393 | else |
| 394 | i8254_timer_resume(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | static struct sysdev_class timer_sysclass = { |
| 399 | .resume = timer_resume, |
| 400 | .suspend = timer_suspend, |
| 401 | set_kset_name("timer"), |
| 402 | }; |
| 403 | |
Robert P. J. Day | 405ae7d | 2007-02-17 19:13:42 +0100 | [diff] [blame] | 404 | /* XXX this sysfs stuff should probably go elsewhere later -john */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | static struct sys_device device_timer = { |
| 406 | .id = 0, |
| 407 | .cls = &timer_sysclass, |
| 408 | }; |
| 409 | |
| 410 | static int time_init_device(void) |
| 411 | { |
| 412 | int error = sysdev_class_register(&timer_sysclass); |
| 413 | if (!error) |
| 414 | error = sysdev_register(&device_timer); |
| 415 | return error; |
| 416 | } |
| 417 | |
| 418 | device_initcall(time_init_device); |