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