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> |
| 36 | #include <asm/pgtable.h> |
| 37 | #include <asm/vsyscall.h> |
| 38 | #include <asm/timex.h> |
| 39 | #include <asm/proto.h> |
| 40 | #include <asm/hpet.h> |
| 41 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/hpet.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/apic.h> |
john stultz | c37e7bb | 2007-02-16 01:28:19 -0800 | [diff] [blame] | 44 | #include <asm/hpet.h> |
Andi Kleen | 803d80f | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 45 | #include <asm/mpspec.h> |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 46 | #include <asm/nmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 48 | static char *timename = NULL; |
Andi Kleen | e8b9177 | 2006-02-26 04:18:49 +0100 | [diff] [blame] | 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | DEFINE_SPINLOCK(rtc_lock); |
Andi Kleen | 2ee60e17 | 2006-06-26 13:59:44 +0200 | [diff] [blame] | 51 | EXPORT_SYMBOL(rtc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | DEFINE_SPINLOCK(i8253_lock); |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | volatile unsigned long __jiffies __section_jiffies = INITIAL_JIFFIES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | unsigned long profile_pc(struct pt_regs *regs) |
| 57 | { |
| 58 | unsigned long pc = instruction_pointer(regs); |
| 59 | |
Andi Kleen | 31679f3 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 60 | /* Assume the lock function has either no stack frame or a copy |
| 61 | of eflags from PUSHF |
| 62 | Eflags always has bits 22 and up cleared unlike kernel addresses. */ |
Andi Kleen | d5a2601 | 2006-07-28 14:44:42 +0200 | [diff] [blame] | 63 | if (!user_mode(regs) && in_lock_functions(pc)) { |
Andi Kleen | 31679f3 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 64 | unsigned long *sp = (unsigned long *)regs->rsp; |
| 65 | if (sp[0] >> 22) |
| 66 | return sp[0]; |
| 67 | if (sp[1] >> 22) |
| 68 | return sp[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } |
| 70 | return pc; |
| 71 | } |
| 72 | EXPORT_SYMBOL(profile_pc); |
| 73 | |
| 74 | /* |
| 75 | * In order to set the CMOS clock precisely, set_rtc_mmss has to be called 500 |
| 76 | * ms after the second nowtime has started, because when nowtime is written |
| 77 | * into the registers of the CMOS clock, it will jump to the next second |
| 78 | * precisely 500 ms later. Check the Motorola MC146818A or Dallas DS12887 data |
| 79 | * sheet for details. |
| 80 | */ |
| 81 | |
| 82 | static void set_rtc_mmss(unsigned long nowtime) |
| 83 | { |
| 84 | int real_seconds, real_minutes, cmos_minutes; |
| 85 | unsigned char control, freq_select; |
| 86 | |
| 87 | /* |
| 88 | * IRQs are disabled when we're called from the timer interrupt, |
| 89 | * no need for spin_lock_irqsave() |
| 90 | */ |
| 91 | |
| 92 | spin_lock(&rtc_lock); |
| 93 | |
| 94 | /* |
| 95 | * Tell the clock it's being set and stop it. |
| 96 | */ |
| 97 | |
| 98 | control = CMOS_READ(RTC_CONTROL); |
| 99 | CMOS_WRITE(control | RTC_SET, RTC_CONTROL); |
| 100 | |
| 101 | freq_select = CMOS_READ(RTC_FREQ_SELECT); |
| 102 | CMOS_WRITE(freq_select | RTC_DIV_RESET2, RTC_FREQ_SELECT); |
| 103 | |
| 104 | cmos_minutes = CMOS_READ(RTC_MINUTES); |
| 105 | BCD_TO_BIN(cmos_minutes); |
| 106 | |
| 107 | /* |
| 108 | * since we're only adjusting minutes and seconds, don't interfere with hour |
| 109 | * overflow. This avoids messing with unknown time zones but requires your RTC |
| 110 | * not to be off by more than 15 minutes. Since we're calling it only when |
| 111 | * our clock is externally synchronized using NTP, this shouldn't be a problem. |
| 112 | */ |
| 113 | |
| 114 | real_seconds = nowtime % 60; |
| 115 | real_minutes = nowtime / 60; |
| 116 | if (((abs(real_minutes - cmos_minutes) + 15) / 30) & 1) |
| 117 | real_minutes += 30; /* correct for half hour time zone */ |
| 118 | real_minutes %= 60; |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | if (abs(real_minutes - cmos_minutes) >= 30) { |
| 121 | printk(KERN_WARNING "time.c: can't update CMOS clock " |
| 122 | "from %d to %d\n", cmos_minutes, real_minutes); |
Andi Kleen | 28456ed | 2006-03-25 16:30:37 +0100 | [diff] [blame] | 123 | } else { |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 124 | BIN_TO_BCD(real_seconds); |
| 125 | BIN_TO_BCD(real_minutes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | CMOS_WRITE(real_seconds, RTC_SECONDS); |
| 127 | CMOS_WRITE(real_minutes, RTC_MINUTES); |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * The following flags have to be released exactly in this order, otherwise the |
| 132 | * DS12887 (popular MC146818A clone with integrated battery and quartz) will |
| 133 | * not reset the oscillator and will not update precisely 500 ms later. You |
| 134 | * won't find this mentioned in the Dallas Semiconductor data sheets, but who |
| 135 | * believes data sheets anyway ... -- Markus Kuhn |
| 136 | */ |
| 137 | |
| 138 | CMOS_WRITE(control, RTC_CONTROL); |
| 139 | CMOS_WRITE(freq_select, RTC_FREQ_SELECT); |
| 140 | |
| 141 | spin_unlock(&rtc_lock); |
| 142 | } |
| 143 | |
| 144 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 145 | void main_timer_handler(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
| 147 | static unsigned long rtc_update = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* |
| 149 | * Here we are in the timer irq handler. We have irqs locally disabled (so we |
| 150 | * don't need spin_lock_irqsave()) but we don't know if the timer_bh is running |
| 151 | * on the other CPU, so we need a lock. We also need to lock the vsyscall |
| 152 | * variables, because both do_timer() and us change them -arca+vojtech |
| 153 | */ |
| 154 | |
| 155 | write_seqlock(&xtime_lock); |
| 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | /* |
| 158 | * Do the timer stuff. |
| 159 | */ |
| 160 | |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 161 | do_timer(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | #ifndef CONFIG_SMP |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 163 | update_process_times(user_mode(get_irq_regs())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | #endif |
| 165 | |
| 166 | /* |
| 167 | * In the SMP case we use the local APIC timer interrupt to do the profiling, |
| 168 | * except when we simulate SMP mode on a uniprocessor system, in that case we |
| 169 | * have to call the local interrupt handler. |
| 170 | */ |
| 171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | if (!using_apic_timer) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 173 | smp_local_timer_interrupt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | * If we have an externally synchronized Linux clock, then update CMOS clock |
| 177 | * accordingly every ~11 minutes. set_rtc_mmss() will be called in the jiffy |
| 178 | * closest to exactly 500 ms before the next second. If the update fails, we |
| 179 | * don't care, as it'll be updated on the next turn, and the problem (time way |
| 180 | * off) isn't likely to go away much sooner anyway. |
| 181 | */ |
| 182 | |
john stultz | b149ee2 | 2005-09-06 15:17:46 -0700 | [diff] [blame] | 183 | if (ntp_synced() && xtime.tv_sec > rtc_update && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | abs(xtime.tv_nsec - 500000000) <= tick_nsec / 2) { |
| 185 | set_rtc_mmss(xtime.tv_sec); |
| 186 | rtc_update = xtime.tv_sec + 660; |
| 187 | } |
| 188 | |
| 189 | write_sequnlock(&xtime_lock); |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 190 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 192 | static irqreturn_t timer_interrupt(int irq, void *dev_id) |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 193 | { |
| 194 | if (apic_runs_main_timer > 1) |
| 195 | return IRQ_HANDLED; |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 196 | main_timer_handler(); |
Venkatesh Pallipadi | d25bf7e | 2006-01-11 22:44:24 +0100 | [diff] [blame] | 197 | if (using_apic_timer) |
| 198 | smp_send_timer_broadcast_ipi(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | return IRQ_HANDLED; |
| 200 | } |
| 201 | |
Andi Kleen | bdf2b1c | 2006-01-11 22:46:39 +0100 | [diff] [blame] | 202 | static unsigned long get_cmos_time(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 204 | unsigned int year, mon, day, hour, min, sec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | unsigned long flags; |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 206 | unsigned century = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | spin_lock_irqsave(&rtc_lock, flags); |
| 209 | |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 210 | do { |
| 211 | sec = CMOS_READ(RTC_SECONDS); |
| 212 | min = CMOS_READ(RTC_MINUTES); |
| 213 | hour = CMOS_READ(RTC_HOURS); |
| 214 | day = CMOS_READ(RTC_DAY_OF_MONTH); |
| 215 | mon = CMOS_READ(RTC_MONTH); |
| 216 | year = CMOS_READ(RTC_YEAR); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 217 | #ifdef CONFIG_ACPI |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 218 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && |
| 219 | acpi_gbl_FADT.century) |
| 220 | century = CMOS_READ(acpi_gbl_FADT.century); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 221 | #endif |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 222 | } while (sec != CMOS_READ(RTC_SECONDS)); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | spin_unlock_irqrestore(&rtc_lock, flags); |
| 225 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 226 | /* |
| 227 | * We know that x86-64 always uses BCD format, no need to check the |
| 228 | * config register. |
Andi Kleen | 7351c0b | 2006-03-25 16:30:34 +0100 | [diff] [blame] | 229 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 231 | BCD_TO_BIN(sec); |
| 232 | BCD_TO_BIN(min); |
| 233 | BCD_TO_BIN(hour); |
| 234 | BCD_TO_BIN(day); |
| 235 | BCD_TO_BIN(mon); |
| 236 | BCD_TO_BIN(year); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 238 | if (century) { |
| 239 | BCD_TO_BIN(century); |
| 240 | year += century * 100; |
| 241 | printk(KERN_INFO "Extended CMOS year: %d\n", century * 100); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 242 | } else { |
| 243 | /* |
| 244 | * x86-64 systems only exists since 2002. |
| 245 | * This will work up to Dec 31, 2100 |
| 246 | */ |
| 247 | year += 2000; |
| 248 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
| 250 | return mktime(year, mon, day, hour, min, sec); |
| 251 | } |
| 252 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 253 | /* calibrate_cpu is used on systems with fixed rate TSCs to determine |
| 254 | * processor frequency */ |
| 255 | #define TICK_COUNT 100000000 |
| 256 | static unsigned int __init tsc_calibrate_cpu_khz(void) |
| 257 | { |
| 258 | int tsc_start, tsc_now; |
| 259 | int i, no_ctr_free; |
| 260 | unsigned long evntsel3 = 0, pmc3 = 0, pmc_now = 0; |
| 261 | unsigned long flags; |
| 262 | |
| 263 | for (i = 0; i < 4; i++) |
| 264 | if (avail_to_resrv_perfctr_nmi_bit(i)) |
| 265 | break; |
| 266 | no_ctr_free = (i == 4); |
| 267 | if (no_ctr_free) { |
| 268 | i = 3; |
| 269 | rdmsrl(MSR_K7_EVNTSEL3, evntsel3); |
| 270 | wrmsrl(MSR_K7_EVNTSEL3, 0); |
| 271 | rdmsrl(MSR_K7_PERFCTR3, pmc3); |
| 272 | } else { |
| 273 | reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i); |
| 274 | reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i); |
| 275 | } |
| 276 | local_irq_save(flags); |
| 277 | /* start meauring cycles, incrementing from 0 */ |
| 278 | wrmsrl(MSR_K7_PERFCTR0 + i, 0); |
| 279 | wrmsrl(MSR_K7_EVNTSEL0 + i, 1 << 22 | 3 << 16 | 0x76); |
| 280 | rdtscl(tsc_start); |
| 281 | do { |
| 282 | rdmsrl(MSR_K7_PERFCTR0 + i, pmc_now); |
| 283 | tsc_now = get_cycles_sync(); |
| 284 | } while ((tsc_now - tsc_start) < TICK_COUNT); |
| 285 | |
| 286 | local_irq_restore(flags); |
| 287 | if (no_ctr_free) { |
| 288 | wrmsrl(MSR_K7_EVNTSEL3, 0); |
| 289 | wrmsrl(MSR_K7_PERFCTR3, pmc3); |
| 290 | wrmsrl(MSR_K7_EVNTSEL3, evntsel3); |
| 291 | } else { |
| 292 | release_perfctr_nmi(MSR_K7_PERFCTR0 + i); |
| 293 | release_evntsel_nmi(MSR_K7_EVNTSEL0 + i); |
| 294 | } |
| 295 | |
| 296 | return pmc_now * tsc_khz / (tsc_now - tsc_start); |
| 297 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | /* |
| 300 | * pit_calibrate_tsc() uses the speaker output (channel 2) of |
| 301 | * the PIT. This is better than using the timer interrupt output, |
| 302 | * because we can read the value of the speaker with just one inb(), |
| 303 | * where we need three i/o operations for the interrupt channel. |
| 304 | * We count how many ticks the TSC does in 50 ms. |
| 305 | */ |
| 306 | |
| 307 | static unsigned int __init pit_calibrate_tsc(void) |
| 308 | { |
| 309 | unsigned long start, end; |
| 310 | unsigned long flags; |
| 311 | |
| 312 | spin_lock_irqsave(&i8253_lock, flags); |
| 313 | |
| 314 | outb((inb(0x61) & ~0x02) | 0x01, 0x61); |
| 315 | |
| 316 | outb(0xb0, 0x43); |
| 317 | outb((PIT_TICK_RATE / (1000 / 50)) & 0xff, 0x42); |
| 318 | outb((PIT_TICK_RATE / (1000 / 50)) >> 8, 0x42); |
Andi Kleen | c818a18 | 2006-01-11 22:45:24 +0100 | [diff] [blame] | 319 | start = get_cycles_sync(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | while ((inb(0x61) & 0x20) == 0); |
Andi Kleen | c818a18 | 2006-01-11 22:45:24 +0100 | [diff] [blame] | 321 | end = get_cycles_sync(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | spin_unlock_irqrestore(&i8253_lock, flags); |
| 324 | |
| 325 | return (end - start) / 50; |
| 326 | } |
| 327 | |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 328 | #define PIT_MODE 0x43 |
| 329 | #define PIT_CH0 0x40 |
| 330 | |
| 331 | static void __init __pit_init(int val, u8 mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { |
| 333 | unsigned long flags; |
| 334 | |
| 335 | spin_lock_irqsave(&i8253_lock, flags); |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 336 | outb_p(mode, PIT_MODE); |
| 337 | outb_p(val & 0xff, PIT_CH0); /* LSB */ |
| 338 | outb_p(val >> 8, PIT_CH0); /* MSB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | spin_unlock_irqrestore(&i8253_lock, flags); |
| 340 | } |
| 341 | |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 342 | void __init pit_init(void) |
| 343 | { |
| 344 | __pit_init(LATCH, 0x34); /* binary, mode 2, LSB/MSB, ch 0 */ |
| 345 | } |
| 346 | |
| 347 | void __init pit_stop_interrupt(void) |
| 348 | { |
| 349 | __pit_init(0, 0x30); /* mode 0 */ |
| 350 | } |
| 351 | |
| 352 | void __init stop_timer_interrupt(void) |
| 353 | { |
| 354 | char *name; |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 355 | if (hpet_address) { |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 356 | name = "HPET"; |
| 357 | hpet_timer_stop_set_go(0); |
| 358 | } else { |
| 359 | name = "PIT"; |
| 360 | pit_stop_interrupt(); |
| 361 | } |
| 362 | printk(KERN_INFO "timer: %s interrupt stopped.\n", name); |
| 363 | } |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | static struct irqaction irq0 = { |
Thomas Gleixner | b1e05aa | 2006-07-01 19:29:29 -0700 | [diff] [blame] | 366 | timer_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "timer", NULL, NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | }; |
| 368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | void __init time_init(void) |
| 370 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | if (nohpet) |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 372 | hpet_address = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | xtime.tv_sec = get_cmos_time(); |
| 374 | xtime.tv_nsec = 0; |
| 375 | |
| 376 | set_normalized_timespec(&wall_to_monotonic, |
| 377 | -xtime.tv_sec, -xtime.tv_nsec); |
| 378 | |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 379 | if (hpet_arch_init()) |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 380 | hpet_address = 0; |
john stultz | a3a0075 | 2005-06-23 00:08:36 -0700 | [diff] [blame] | 381 | |
| 382 | if (hpet_use_timer) { |
Jordan Hargrave | b20367a | 2006-04-07 19:50:18 +0200 | [diff] [blame] | 383 | /* set tick_nsec to use the proper rate for HPET */ |
| 384 | tick_nsec = TICK_NSEC_HPET; |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 385 | tsc_khz = hpet_calibrate_tsc(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | timename = "HPET"; |
| 387 | } else { |
| 388 | pit_init(); |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 389 | tsc_khz = pit_calibrate_tsc(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | timename = "PIT"; |
| 391 | } |
| 392 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 393 | cpu_khz = tsc_khz; |
| 394 | if (cpu_has(&boot_cpu_data, X86_FEATURE_CONSTANT_TSC) && |
| 395 | boot_cpu_data.x86_vendor == X86_VENDOR_AMD && |
| 396 | boot_cpu_data.x86 == 16) |
| 397 | cpu_khz = tsc_calibrate_cpu_khz(); |
| 398 | |
Andi Kleen | 312df5f | 2005-05-16 21:53:28 -0700 | [diff] [blame] | 399 | if (unsynchronized_tsc()) |
john stultz | 5a90cf2 | 2007-05-02 19:27:08 +0200 | [diff] [blame^] | 400 | mark_tsc_unstable("TSCs unsynchronized"); |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 401 | |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 402 | if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP)) |
Vojtech Pavlik | c08c820 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 403 | vgetcpu_mode = VGETCPU_RDTSCP; |
| 404 | else |
| 405 | vgetcpu_mode = VGETCPU_LSL; |
| 406 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 407 | set_cyc2ns_scale(tsc_khz); |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 408 | printk(KERN_INFO "time.c: Detected %d.%03d MHz processor.\n", |
| 409 | cpu_khz / 1000, cpu_khz % 1000); |
john stultz | 6bb74df | 2007-03-05 00:30:50 -0800 | [diff] [blame] | 410 | init_tsc_clocksource(); |
| 411 | |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 412 | setup_irq(0, &irq0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
| 416 | static long clock_cmos_diff; |
| 417 | static unsigned long sleep_start; |
| 418 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 419 | /* |
| 420 | * sysfs support for the timer. |
| 421 | */ |
| 422 | |
Pavel Machek | 0b9c33a | 2005-04-16 15:25:31 -0700 | [diff] [blame] | 423 | static int timer_suspend(struct sys_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
| 425 | /* |
| 426 | * Estimate time zone so that set_time can update the clock |
| 427 | */ |
| 428 | long cmos_time = get_cmos_time(); |
| 429 | |
| 430 | clock_cmos_diff = -cmos_time; |
| 431 | clock_cmos_diff += get_seconds(); |
| 432 | sleep_start = cmos_time; |
| 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | static int timer_resume(struct sys_device *dev) |
| 437 | { |
| 438 | unsigned long flags; |
| 439 | unsigned long sec; |
| 440 | unsigned long ctime = get_cmos_time(); |
Rafael J. Wysocki | 34464a5 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 441 | long sleep_length = (ctime - sleep_start) * HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Rafael J. Wysocki | 34464a5 | 2006-09-26 10:52:37 +0200 | [diff] [blame] | 443 | if (sleep_length < 0) { |
| 444 | printk(KERN_WARNING "Time skew detected in timer resume!\n"); |
| 445 | /* The time after the resume must not be earlier than the time |
| 446 | * before the suspend or some nasty things will happen |
| 447 | */ |
| 448 | sleep_length = 0; |
| 449 | ctime = sleep_start; |
| 450 | } |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 451 | if (hpet_address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | hpet_reenable(); |
| 453 | else |
| 454 | i8254_timer_resume(); |
| 455 | |
| 456 | sec = ctime + clock_cmos_diff; |
| 457 | write_seqlock_irqsave(&xtime_lock,flags); |
| 458 | xtime.tv_sec = sec; |
| 459 | xtime.tv_nsec = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | jiffies += sleep_length; |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 461 | write_sequnlock_irqrestore(&xtime_lock,flags); |
Ingo Molnar | 8446f1d | 2005-09-06 15:16:27 -0700 | [diff] [blame] | 462 | touch_softlockup_watchdog(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | return 0; |
| 464 | } |
| 465 | |
| 466 | static struct sysdev_class timer_sysclass = { |
| 467 | .resume = timer_resume, |
| 468 | .suspend = timer_suspend, |
| 469 | set_kset_name("timer"), |
| 470 | }; |
| 471 | |
Robert P. J. Day | 405ae7d | 2007-02-17 19:13:42 +0100 | [diff] [blame] | 472 | /* XXX this sysfs stuff should probably go elsewhere later -john */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | static struct sys_device device_timer = { |
| 474 | .id = 0, |
| 475 | .cls = &timer_sysclass, |
| 476 | }; |
| 477 | |
| 478 | static int time_init_device(void) |
| 479 | { |
| 480 | int error = sysdev_class_register(&timer_sysclass); |
| 481 | if (!error) |
| 482 | error = sysdev_register(&device_timer); |
| 483 | return error; |
| 484 | } |
| 485 | |
| 486 | device_initcall(time_init_device); |