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