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> |
Thomas Gleixner | b8ce335 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 31 | #include <linux/clockchips.h> |
| 32 | |
Andi Kleen | 8d91640 | 2005-05-31 14:39:26 -0700 | [diff] [blame] | 33 | #ifdef CONFIG_ACPI |
Andi Kleen | 312df5f | 2005-05-16 21:53:28 -0700 | [diff] [blame] | 34 | #include <acpi/achware.h> /* for PM timer frequency */ |
Andi Kleen | 0e5f61b | 2006-07-29 21:42:37 +0200 | [diff] [blame] | 35 | #include <acpi/acpi_bus.h> |
Andi Kleen | 8d91640 | 2005-05-31 14:39:26 -0700 | [diff] [blame] | 36 | #endif |
Thomas Gleixner | 28318da | 2007-07-21 17:11:18 +0200 | [diff] [blame] | 37 | #include <asm/i8253.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/pgtable.h> |
| 39 | #include <asm/vsyscall.h> |
| 40 | #include <asm/timex.h> |
| 41 | #include <asm/proto.h> |
| 42 | #include <asm/hpet.h> |
| 43 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/hpet.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/apic.h> |
john stultz | c37e7bb | 2007-02-16 01:28:19 -0800 | [diff] [blame] | 46 | #include <asm/hpet.h> |
Andi Kleen | 803d80f | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 47 | #include <asm/mpspec.h> |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 48 | #include <asm/nmi.h> |
Andi Kleen | 2aae950 | 2007-07-21 17:10:01 +0200 | [diff] [blame] | 49 | #include <asm/vgtod.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 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 | |
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 | |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 82 | static int set_rtc_mmss(unsigned long nowtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 84 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | int real_seconds, real_minutes, cmos_minutes; |
| 86 | unsigned char control, freq_select; |
| 87 | |
| 88 | /* |
| 89 | * IRQs are disabled when we're called from the timer interrupt, |
| 90 | * no need for spin_lock_irqsave() |
| 91 | */ |
| 92 | |
| 93 | spin_lock(&rtc_lock); |
| 94 | |
| 95 | /* |
| 96 | * Tell the clock it's being set and stop it. |
| 97 | */ |
| 98 | |
| 99 | control = CMOS_READ(RTC_CONTROL); |
| 100 | CMOS_WRITE(control | RTC_SET, RTC_CONTROL); |
| 101 | |
| 102 | freq_select = CMOS_READ(RTC_FREQ_SELECT); |
| 103 | CMOS_WRITE(freq_select | RTC_DIV_RESET2, RTC_FREQ_SELECT); |
| 104 | |
| 105 | cmos_minutes = CMOS_READ(RTC_MINUTES); |
| 106 | BCD_TO_BIN(cmos_minutes); |
| 107 | |
| 108 | /* |
| 109 | * since we're only adjusting minutes and seconds, don't interfere with hour |
| 110 | * overflow. This avoids messing with unknown time zones but requires your RTC |
| 111 | * not to be off by more than 15 minutes. Since we're calling it only when |
| 112 | * our clock is externally synchronized using NTP, this shouldn't be a problem. |
| 113 | */ |
| 114 | |
| 115 | real_seconds = nowtime % 60; |
| 116 | real_minutes = nowtime / 60; |
| 117 | if (((abs(real_minutes - cmos_minutes) + 15) / 30) & 1) |
| 118 | real_minutes += 30; /* correct for half hour time zone */ |
| 119 | real_minutes %= 60; |
| 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | if (abs(real_minutes - cmos_minutes) >= 30) { |
| 122 | printk(KERN_WARNING "time.c: can't update CMOS clock " |
| 123 | "from %d to %d\n", cmos_minutes, real_minutes); |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 124 | retval = -1; |
Andi Kleen | 28456ed | 2006-03-25 16:30:37 +0100 | [diff] [blame] | 125 | } else { |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 126 | BIN_TO_BCD(real_seconds); |
| 127 | BIN_TO_BCD(real_minutes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | CMOS_WRITE(real_seconds, RTC_SECONDS); |
| 129 | CMOS_WRITE(real_minutes, RTC_MINUTES); |
| 130 | } |
| 131 | |
| 132 | /* |
| 133 | * The following flags have to be released exactly in this order, otherwise the |
| 134 | * DS12887 (popular MC146818A clone with integrated battery and quartz) will |
| 135 | * not reset the oscillator and will not update precisely 500 ms later. You |
| 136 | * won't find this mentioned in the Dallas Semiconductor data sheets, but who |
| 137 | * believes data sheets anyway ... -- Markus Kuhn |
| 138 | */ |
| 139 | |
| 140 | CMOS_WRITE(control, RTC_CONTROL); |
| 141 | CMOS_WRITE(freq_select, RTC_FREQ_SELECT); |
| 142 | |
| 143 | spin_unlock(&rtc_lock); |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 144 | |
| 145 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Thomas Gleixner | af74522 | 2007-07-21 17:10:11 +0200 | [diff] [blame] | 148 | int update_persistent_clock(struct timespec now) |
| 149 | { |
| 150 | return set_rtc_mmss(now.tv_sec); |
| 151 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* |
| 156 | * Here we are in the timer irq handler. We have irqs locally disabled (so we |
| 157 | * don't need spin_lock_irqsave()) but we don't know if the timer_bh is running |
| 158 | * on the other CPU, so we need a lock. We also need to lock the vsyscall |
| 159 | * variables, because both do_timer() and us change them -arca+vojtech |
| 160 | */ |
| 161 | |
| 162 | write_seqlock(&xtime_lock); |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /* |
| 165 | * Do the timer stuff. |
| 166 | */ |
| 167 | |
john stultz | 1489939 | 2007-02-16 01:28:20 -0800 | [diff] [blame] | 168 | do_timer(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | #ifndef CONFIG_SMP |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 170 | update_process_times(user_mode(get_irq_regs())); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | #endif |
| 172 | |
| 173 | /* |
| 174 | * In the SMP case we use the local APIC timer interrupt to do the profiling, |
| 175 | * except when we simulate SMP mode on a uniprocessor system, in that case we |
| 176 | * have to call the local interrupt handler. |
| 177 | */ |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (!using_apic_timer) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 180 | smp_local_timer_interrupt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | write_sequnlock(&xtime_lock); |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 183 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 185 | static irqreturn_t timer_interrupt(int irq, void *dev_id) |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 186 | { |
| 187 | if (apic_runs_main_timer > 1) |
| 188 | return IRQ_HANDLED; |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 189 | main_timer_handler(); |
Venkatesh Pallipadi | d25bf7e | 2006-01-11 22:44:24 +0100 | [diff] [blame] | 190 | if (using_apic_timer) |
| 191 | smp_send_timer_broadcast_ipi(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | return IRQ_HANDLED; |
| 193 | } |
| 194 | |
Thomas Gleixner | b8ce335 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 195 | static irqreturn_t timer_event_interrupt(int irq, void *dev_id) |
| 196 | { |
Thomas Gleixner | 4e77ae3 | 2007-10-12 23:04:07 +0200 | [diff] [blame^] | 197 | add_pda(irq0_irqs, 1); |
| 198 | |
Thomas Gleixner | b8ce335 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 199 | global_clock_event->event_handler(global_clock_event); |
| 200 | |
| 201 | return IRQ_HANDLED; |
| 202 | } |
| 203 | |
Thomas Gleixner | ef81ab2 | 2007-07-21 17:10:12 +0200 | [diff] [blame] | 204 | unsigned long read_persistent_clock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 206 | unsigned int year, mon, day, hour, min, sec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | unsigned long flags; |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 208 | unsigned century = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | spin_lock_irqsave(&rtc_lock, flags); |
| 211 | |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 212 | do { |
| 213 | sec = CMOS_READ(RTC_SECONDS); |
| 214 | min = CMOS_READ(RTC_MINUTES); |
| 215 | hour = CMOS_READ(RTC_HOURS); |
| 216 | day = CMOS_READ(RTC_DAY_OF_MONTH); |
| 217 | mon = CMOS_READ(RTC_MONTH); |
| 218 | year = CMOS_READ(RTC_YEAR); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 219 | #ifdef CONFIG_ACPI |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 220 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && |
| 221 | acpi_gbl_FADT.century) |
| 222 | century = CMOS_READ(acpi_gbl_FADT.century); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 223 | #endif |
Matt Mackall | 641f71f | 2006-03-28 01:56:01 -0800 | [diff] [blame] | 224 | } while (sec != CMOS_READ(RTC_SECONDS)); |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | spin_unlock_irqrestore(&rtc_lock, flags); |
| 227 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 228 | /* |
| 229 | * We know that x86-64 always uses BCD format, no need to check the |
| 230 | * config register. |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 231 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Andi Kleen | 0b91317 | 2006-01-11 22:45:33 +0100 | [diff] [blame] | 233 | BCD_TO_BIN(sec); |
| 234 | BCD_TO_BIN(min); |
| 235 | BCD_TO_BIN(hour); |
| 236 | BCD_TO_BIN(day); |
| 237 | BCD_TO_BIN(mon); |
| 238 | BCD_TO_BIN(year); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 240 | if (century) { |
| 241 | BCD_TO_BIN(century); |
| 242 | year += century * 100; |
| 243 | printk(KERN_INFO "Extended CMOS year: %d\n", century * 100); |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 244 | } else { |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 245 | /* |
| 246 | * x86-64 systems only exists since 2002. |
| 247 | * This will work up to Dec 31, 2100 |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 248 | */ |
Andi Kleen | 6954bee | 2006-03-25 16:30:31 +0100 | [diff] [blame] | 249 | year += 2000; |
| 250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | return mktime(year, mon, day, hour, min, sec); |
| 253 | } |
| 254 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 255 | /* calibrate_cpu is used on systems with fixed rate TSCs to determine |
| 256 | * processor frequency */ |
| 257 | #define TICK_COUNT 100000000 |
| 258 | static unsigned int __init tsc_calibrate_cpu_khz(void) |
| 259 | { |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 260 | int tsc_start, tsc_now; |
| 261 | int i, no_ctr_free; |
| 262 | unsigned long evntsel3 = 0, pmc3 = 0, pmc_now = 0; |
| 263 | unsigned long flags; |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 264 | |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 265 | for (i = 0; i < 4; i++) |
| 266 | if (avail_to_resrv_perfctr_nmi_bit(i)) |
| 267 | break; |
| 268 | no_ctr_free = (i == 4); |
| 269 | if (no_ctr_free) { |
| 270 | i = 3; |
| 271 | rdmsrl(MSR_K7_EVNTSEL3, evntsel3); |
| 272 | wrmsrl(MSR_K7_EVNTSEL3, 0); |
| 273 | rdmsrl(MSR_K7_PERFCTR3, pmc3); |
| 274 | } else { |
| 275 | reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i); |
| 276 | reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i); |
| 277 | } |
| 278 | local_irq_save(flags); |
| 279 | /* start meauring cycles, incrementing from 0 */ |
| 280 | wrmsrl(MSR_K7_PERFCTR0 + i, 0); |
| 281 | wrmsrl(MSR_K7_EVNTSEL0 + i, 1 << 22 | 3 << 16 | 0x76); |
| 282 | rdtscl(tsc_start); |
| 283 | do { |
| 284 | rdmsrl(MSR_K7_PERFCTR0 + i, pmc_now); |
| 285 | tsc_now = get_cycles_sync(); |
| 286 | } while ((tsc_now - tsc_start) < TICK_COUNT); |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 287 | |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 288 | local_irq_restore(flags); |
| 289 | if (no_ctr_free) { |
| 290 | wrmsrl(MSR_K7_EVNTSEL3, 0); |
| 291 | wrmsrl(MSR_K7_PERFCTR3, pmc3); |
| 292 | wrmsrl(MSR_K7_EVNTSEL3, evntsel3); |
| 293 | } else { |
| 294 | release_perfctr_nmi(MSR_K7_PERFCTR0 + i); |
| 295 | release_evntsel_nmi(MSR_K7_EVNTSEL0 + i); |
| 296 | } |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 297 | |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 298 | return pmc_now * tsc_khz / (tsc_now - tsc_start); |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | static struct irqaction irq0 = { |
Thomas Gleixner | b8ce335 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 302 | .handler = timer_event_interrupt, |
Venki Pallipadi | 5fa3a24 | 2007-10-12 23:04:06 +0200 | [diff] [blame] | 303 | .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING, |
Bernhard Walle | e6d828f | 2007-05-08 00:35:28 -0700 | [diff] [blame] | 304 | .mask = CPU_MASK_NONE, |
Thomas Gleixner | 2618f86 | 2007-07-21 17:10:18 +0200 | [diff] [blame] | 305 | .name = "timer" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | }; |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | void __init time_init(void) |
| 309 | { |
Thomas Gleixner | b8ce335 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 310 | if (!hpet_enable()) |
| 311 | setup_pit_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Thomas Gleixner | b8ce335 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 313 | setup_irq(0, &irq0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Thomas Gleixner | d371698 | 2007-10-12 23:04:06 +0200 | [diff] [blame] | 315 | tsc_calibrate(); |
| 316 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 317 | cpu_khz = tsc_khz; |
| 318 | if (cpu_has(&boot_cpu_data, X86_FEATURE_CONSTANT_TSC) && |
| 319 | boot_cpu_data.x86_vendor == X86_VENDOR_AMD && |
| 320 | boot_cpu_data.x86 == 16) |
| 321 | cpu_khz = tsc_calibrate_cpu_khz(); |
| 322 | |
Andi Kleen | 312df5f | 2005-05-16 21:53:28 -0700 | [diff] [blame] | 323 | if (unsynchronized_tsc()) |
john stultz | 5a90cf2 | 2007-05-02 19:27:08 +0200 | [diff] [blame] | 324 | mark_tsc_unstable("TSCs unsynchronized"); |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 325 | |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 326 | if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP)) |
Vojtech Pavlik | c08c820 | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 327 | vgetcpu_mode = VGETCPU_RDTSCP; |
| 328 | else |
| 329 | vgetcpu_mode = VGETCPU_LSL; |
| 330 | |
Joerg Roedel | 6b37f5a | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 331 | set_cyc2ns_scale(tsc_khz); |
Vojtech Pavlik | a670fad | 2006-09-26 10:52:28 +0200 | [diff] [blame] | 332 | printk(KERN_INFO "time.c: Detected %d.%03d MHz processor.\n", |
| 333 | cpu_khz / 1000, cpu_khz % 1000); |
john stultz | 6bb74df | 2007-03-05 00:30:50 -0800 | [diff] [blame] | 334 | init_tsc_clocksource(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | } |