blob: e97a3ee135518a6ddfb31790aa5eb67d6e111c22 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Pavlik2f82bde42006-06-26 13:58:38 +020011 * Copyright (c) 2002,2006 Vojtech Pavlik
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * 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 Torvalds1da177e2005-04-16 15:20:36 -070021#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 Pavlika670fad2006-09-26 10:52:28 +020027#include <linux/notifier.h>
28#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kallsyms.h>
Andi Kleen312df5f2005-05-16 21:53:28 -070030#include <linux/acpi.h>
Andi Kleen8d916402005-05-31 14:39:26 -070031#ifdef CONFIG_ACPI
Andi Kleen312df5f2005-05-16 21:53:28 -070032#include <acpi/achware.h> /* for PM timer frequency */
Andi Kleen0e5f61b2006-07-29 21:42:37 +020033#include <acpi/acpi_bus.h>
Andi Kleen8d916402005-05-31 14:39:26 -070034#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/8253pit.h>
Thomas Gleixner28318da2007-07-21 17:11:18 +020036#include <asm/i8253.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/pgtable.h>
38#include <asm/vsyscall.h>
39#include <asm/timex.h>
40#include <asm/proto.h>
41#include <asm/hpet.h>
42#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/apic.h>
john stultzc37e7bb2007-02-16 01:28:19 -080045#include <asm/hpet.h>
Andi Kleen803d80f2007-05-02 19:27:05 +020046#include <asm/mpspec.h>
Joerg Roedel6b37f5a2007-05-02 19:27:06 +020047#include <asm/nmi.h>
Andi Kleen2aae9502007-07-21 17:10:01 +020048#include <asm/vgtod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Vojtech Pavlika670fad2006-09-26 10:52:28 +020050static char *timename = NULL;
Andi Kleene8b91772006-02-26 04:18:49 +010051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052DEFINE_SPINLOCK(rtc_lock);
Andi Kleen2ee60e172006-06-26 13:59:44 +020053EXPORT_SYMBOL(rtc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054DEFINE_SPINLOCK(i8253_lock);
Thomas Gleixner28318da2007-07-21 17:11:18 +020055EXPORT_SYMBOL(i8253_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057volatile unsigned long __jiffies __section_jiffies = INITIAL_JIFFIES;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059unsigned long profile_pc(struct pt_regs *regs)
60{
61 unsigned long pc = instruction_pointer(regs);
62
Andi Kleen31679f32006-09-26 10:52:28 +020063 /* Assume the lock function has either no stack frame or a copy
64 of eflags from PUSHF
65 Eflags always has bits 22 and up cleared unlike kernel addresses. */
Andi Kleend5a26012006-07-28 14:44:42 +020066 if (!user_mode(regs) && in_lock_functions(pc)) {
Andi Kleen31679f32006-09-26 10:52:28 +020067 unsigned long *sp = (unsigned long *)regs->rsp;
68 if (sp[0] >> 22)
69 return sp[0];
70 if (sp[1] >> 22)
71 return sp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73 return pc;
74}
75EXPORT_SYMBOL(profile_pc);
76
77/*
78 * In order to set the CMOS clock precisely, set_rtc_mmss has to be called 500
79 * ms after the second nowtime has started, because when nowtime is written
80 * into the registers of the CMOS clock, it will jump to the next second
81 * precisely 500 ms later. Check the Motorola MC146818A or Dallas DS12887 data
82 * sheet for details.
83 */
84
Thomas Gleixneraf745222007-07-21 17:10:11 +020085static int set_rtc_mmss(unsigned long nowtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Thomas Gleixneraf745222007-07-21 17:10:11 +020087 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int real_seconds, real_minutes, cmos_minutes;
89 unsigned char control, freq_select;
90
91/*
92 * IRQs are disabled when we're called from the timer interrupt,
93 * no need for spin_lock_irqsave()
94 */
95
96 spin_lock(&rtc_lock);
97
98/*
99 * Tell the clock it's being set and stop it.
100 */
101
102 control = CMOS_READ(RTC_CONTROL);
103 CMOS_WRITE(control | RTC_SET, RTC_CONTROL);
104
105 freq_select = CMOS_READ(RTC_FREQ_SELECT);
106 CMOS_WRITE(freq_select | RTC_DIV_RESET2, RTC_FREQ_SELECT);
107
108 cmos_minutes = CMOS_READ(RTC_MINUTES);
109 BCD_TO_BIN(cmos_minutes);
110
111/*
112 * since we're only adjusting minutes and seconds, don't interfere with hour
113 * overflow. This avoids messing with unknown time zones but requires your RTC
114 * not to be off by more than 15 minutes. Since we're calling it only when
115 * our clock is externally synchronized using NTP, this shouldn't be a problem.
116 */
117
118 real_seconds = nowtime % 60;
119 real_minutes = nowtime / 60;
120 if (((abs(real_minutes - cmos_minutes) + 15) / 30) & 1)
121 real_minutes += 30; /* correct for half hour time zone */
122 real_minutes %= 60;
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (abs(real_minutes - cmos_minutes) >= 30) {
125 printk(KERN_WARNING "time.c: can't update CMOS clock "
126 "from %d to %d\n", cmos_minutes, real_minutes);
Thomas Gleixneraf745222007-07-21 17:10:11 +0200127 retval = -1;
Andi Kleen28456ed2006-03-25 16:30:37 +0100128 } else {
Andi Kleen0b913172006-01-11 22:45:33 +0100129 BIN_TO_BCD(real_seconds);
130 BIN_TO_BCD(real_minutes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 CMOS_WRITE(real_seconds, RTC_SECONDS);
132 CMOS_WRITE(real_minutes, RTC_MINUTES);
133 }
134
135/*
136 * The following flags have to be released exactly in this order, otherwise the
137 * DS12887 (popular MC146818A clone with integrated battery and quartz) will
138 * not reset the oscillator and will not update precisely 500 ms later. You
139 * won't find this mentioned in the Dallas Semiconductor data sheets, but who
140 * believes data sheets anyway ... -- Markus Kuhn
141 */
142
143 CMOS_WRITE(control, RTC_CONTROL);
144 CMOS_WRITE(freq_select, RTC_FREQ_SELECT);
145
146 spin_unlock(&rtc_lock);
Thomas Gleixneraf745222007-07-21 17:10:11 +0200147
148 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Thomas Gleixneraf745222007-07-21 17:10:11 +0200151int update_persistent_clock(struct timespec now)
152{
153 return set_rtc_mmss(now.tv_sec);
154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
David Howells7d12e782006-10-05 14:55:46 +0100156void main_timer_handler(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/*
159 * Here we are in the timer irq handler. We have irqs locally disabled (so we
160 * don't need spin_lock_irqsave()) but we don't know if the timer_bh is running
161 * on the other CPU, so we need a lock. We also need to lock the vsyscall
162 * variables, because both do_timer() and us change them -arca+vojtech
163 */
164
165 write_seqlock(&xtime_lock);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*
168 * Do the timer stuff.
169 */
170
john stultz14899392007-02-16 01:28:20 -0800171 do_timer(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#ifndef CONFIG_SMP
David Howells7d12e782006-10-05 14:55:46 +0100173 update_process_times(user_mode(get_irq_regs()));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#endif
175
176/*
177 * In the SMP case we use the local APIC timer interrupt to do the profiling,
178 * except when we simulate SMP mode on a uniprocessor system, in that case we
179 * have to call the local interrupt handler.
180 */
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (!using_apic_timer)
David Howells7d12e782006-10-05 14:55:46 +0100183 smp_local_timer_interrupt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 write_sequnlock(&xtime_lock);
Andi Kleen73dea472006-02-03 21:50:50 +0100186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
David Howells7d12e782006-10-05 14:55:46 +0100188static irqreturn_t timer_interrupt(int irq, void *dev_id)
Andi Kleen73dea472006-02-03 21:50:50 +0100189{
190 if (apic_runs_main_timer > 1)
191 return IRQ_HANDLED;
David Howells7d12e782006-10-05 14:55:46 +0100192 main_timer_handler();
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +0100193 if (using_apic_timer)
194 smp_send_timer_broadcast_ipi();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return IRQ_HANDLED;
196}
197
Thomas Gleixneref81ab22007-07-21 17:10:12 +0200198unsigned long read_persistent_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Matt Mackall641f71f2006-03-28 01:56:01 -0800200 unsigned int year, mon, day, hour, min, sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 unsigned long flags;
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300202 unsigned century = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 spin_lock_irqsave(&rtc_lock, flags);
205
Matt Mackall641f71f2006-03-28 01:56:01 -0800206 do {
207 sec = CMOS_READ(RTC_SECONDS);
208 min = CMOS_READ(RTC_MINUTES);
209 hour = CMOS_READ(RTC_HOURS);
210 day = CMOS_READ(RTC_DAY_OF_MONTH);
211 mon = CMOS_READ(RTC_MONTH);
212 year = CMOS_READ(RTC_YEAR);
Andi Kleen6954bee2006-03-25 16:30:31 +0100213#ifdef CONFIG_ACPI
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300214 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
215 acpi_gbl_FADT.century)
216 century = CMOS_READ(acpi_gbl_FADT.century);
Andi Kleen6954bee2006-03-25 16:30:31 +0100217#endif
Matt Mackall641f71f2006-03-28 01:56:01 -0800218 } while (sec != CMOS_READ(RTC_SECONDS));
Andi Kleen6954bee2006-03-25 16:30:31 +0100219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 spin_unlock_irqrestore(&rtc_lock, flags);
221
Andi Kleen0b913172006-01-11 22:45:33 +0100222 /*
223 * We know that x86-64 always uses BCD format, no need to check the
224 * config register.
Thomas Gleixner2618f862007-07-21 17:10:18 +0200225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Andi Kleen0b913172006-01-11 22:45:33 +0100227 BCD_TO_BIN(sec);
228 BCD_TO_BIN(min);
229 BCD_TO_BIN(hour);
230 BCD_TO_BIN(day);
231 BCD_TO_BIN(mon);
232 BCD_TO_BIN(year);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300234 if (century) {
235 BCD_TO_BIN(century);
236 year += century * 100;
237 printk(KERN_INFO "Extended CMOS year: %d\n", century * 100);
Thomas Gleixner2618f862007-07-21 17:10:18 +0200238 } else {
Andi Kleen6954bee2006-03-25 16:30:31 +0100239 /*
240 * x86-64 systems only exists since 2002.
241 * This will work up to Dec 31, 2100
Thomas Gleixner2618f862007-07-21 17:10:18 +0200242 */
Andi Kleen6954bee2006-03-25 16:30:31 +0100243 year += 2000;
244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 return mktime(year, mon, day, hour, min, sec);
247}
248
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200249/* calibrate_cpu is used on systems with fixed rate TSCs to determine
250 * processor frequency */
251#define TICK_COUNT 100000000
252static unsigned int __init tsc_calibrate_cpu_khz(void)
253{
Thomas Gleixner2618f862007-07-21 17:10:18 +0200254 int tsc_start, tsc_now;
255 int i, no_ctr_free;
256 unsigned long evntsel3 = 0, pmc3 = 0, pmc_now = 0;
257 unsigned long flags;
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200258
Thomas Gleixner2618f862007-07-21 17:10:18 +0200259 for (i = 0; i < 4; i++)
260 if (avail_to_resrv_perfctr_nmi_bit(i))
261 break;
262 no_ctr_free = (i == 4);
263 if (no_ctr_free) {
264 i = 3;
265 rdmsrl(MSR_K7_EVNTSEL3, evntsel3);
266 wrmsrl(MSR_K7_EVNTSEL3, 0);
267 rdmsrl(MSR_K7_PERFCTR3, pmc3);
268 } else {
269 reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i);
270 reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
271 }
272 local_irq_save(flags);
273 /* start meauring cycles, incrementing from 0 */
274 wrmsrl(MSR_K7_PERFCTR0 + i, 0);
275 wrmsrl(MSR_K7_EVNTSEL0 + i, 1 << 22 | 3 << 16 | 0x76);
276 rdtscl(tsc_start);
277 do {
278 rdmsrl(MSR_K7_PERFCTR0 + i, pmc_now);
279 tsc_now = get_cycles_sync();
280 } while ((tsc_now - tsc_start) < TICK_COUNT);
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200281
Thomas Gleixner2618f862007-07-21 17:10:18 +0200282 local_irq_restore(flags);
283 if (no_ctr_free) {
284 wrmsrl(MSR_K7_EVNTSEL3, 0);
285 wrmsrl(MSR_K7_PERFCTR3, pmc3);
286 wrmsrl(MSR_K7_EVNTSEL3, evntsel3);
287 } else {
288 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
289 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
290 }
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200291
Thomas Gleixner2618f862007-07-21 17:10:18 +0200292 return pmc_now * tsc_khz / (tsc_now - tsc_start);
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200293}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Andi Kleen73dea472006-02-03 21:50:50 +0100295#define PIT_MODE 0x43
296#define PIT_CH0 0x40
297
Bernhard Walle141f9cf2007-05-02 19:27:11 +0200298static void __pit_init(int val, u8 mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 unsigned long flags;
301
302 spin_lock_irqsave(&i8253_lock, flags);
Andi Kleen73dea472006-02-03 21:50:50 +0100303 outb_p(mode, PIT_MODE);
304 outb_p(val & 0xff, PIT_CH0); /* LSB */
305 outb_p(val >> 8, PIT_CH0); /* MSB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 spin_unlock_irqrestore(&i8253_lock, flags);
307}
308
Andi Kleen73dea472006-02-03 21:50:50 +0100309void __init pit_init(void)
310{
311 __pit_init(LATCH, 0x34); /* binary, mode 2, LSB/MSB, ch 0 */
312}
313
Bernhard Walle141f9cf2007-05-02 19:27:11 +0200314void pit_stop_interrupt(void)
Andi Kleen73dea472006-02-03 21:50:50 +0100315{
316 __pit_init(0, 0x30); /* mode 0 */
317}
318
Bernhard Walle141f9cf2007-05-02 19:27:11 +0200319void stop_timer_interrupt(void)
Andi Kleen73dea472006-02-03 21:50:50 +0100320{
321 char *name;
john stultz2d0c87c2007-02-16 01:28:18 -0800322 if (hpet_address) {
Andi Kleen73dea472006-02-03 21:50:50 +0100323 name = "HPET";
324 hpet_timer_stop_set_go(0);
325 } else {
326 name = "PIT";
327 pit_stop_interrupt();
328 }
329 printk(KERN_INFO "timer: %s interrupt stopped.\n", name);
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static struct irqaction irq0 = {
Bernhard Wallee6d828f2007-05-08 00:35:28 -0700333 .handler = timer_interrupt,
Venki Pallipadi5fa3a242007-10-12 23:04:06 +0200334 .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING,
Bernhard Wallee6d828f2007-05-08 00:35:28 -0700335 .mask = CPU_MASK_NONE,
Thomas Gleixner2618f862007-07-21 17:10:18 +0200336 .name = "timer"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337};
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339void __init time_init(void)
340{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (nohpet)
john stultz2d0c87c2007-02-16 01:28:18 -0800342 hpet_address = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
john stultz14899392007-02-16 01:28:20 -0800344 if (hpet_arch_init())
john stultz2d0c87c2007-02-16 01:28:18 -0800345 hpet_address = 0;
john stultza3a00752005-06-23 00:08:36 -0700346
347 if (hpet_use_timer) {
Jordan Hargraveb20367a2006-04-07 19:50:18 +0200348 /* set tick_nsec to use the proper rate for HPET */
Thomas Gleixner2618f862007-07-21 17:10:18 +0200349 tick_nsec = TICK_NSEC_HPET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 timename = "HPET";
351 } else {
352 pit_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 timename = "PIT";
354 }
355
Thomas Gleixnerd3716982007-10-12 23:04:06 +0200356 tsc_calibrate();
357
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200358 cpu_khz = tsc_khz;
359 if (cpu_has(&boot_cpu_data, X86_FEATURE_CONSTANT_TSC) &&
360 boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
361 boot_cpu_data.x86 == 16)
362 cpu_khz = tsc_calibrate_cpu_khz();
363
Andi Kleen312df5f2005-05-16 21:53:28 -0700364 if (unsynchronized_tsc())
john stultz5a90cf22007-05-02 19:27:08 +0200365 mark_tsc_unstable("TSCs unsynchronized");
Vojtech Pavlika670fad2006-09-26 10:52:28 +0200366
john stultz2d0c87c2007-02-16 01:28:18 -0800367 if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
Vojtech Pavlikc08c8202006-09-26 10:52:28 +0200368 vgetcpu_mode = VGETCPU_RDTSCP;
369 else
370 vgetcpu_mode = VGETCPU_LSL;
371
Joerg Roedel6b37f5a2007-05-02 19:27:06 +0200372 set_cyc2ns_scale(tsc_khz);
Vojtech Pavlika670fad2006-09-26 10:52:28 +0200373 printk(KERN_INFO "time.c: Detected %d.%03d MHz processor.\n",
374 cpu_khz / 1000, cpu_khz % 1000);
john stultz6bb74df2007-03-05 00:30:50 -0800375 init_tsc_clocksource();
376
john stultz14899392007-02-16 01:28:20 -0800377 setup_irq(0, &irq0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Andi Kleen0b913172006-01-11 22:45:33 +0100380/*
381 * sysfs support for the timer.
382 */
383
Pavel Machek0b9c33a2005-04-16 15:25:31 -0700384static int timer_suspend(struct sys_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return 0;
387}
388
389static int timer_resume(struct sys_device *dev)
390{
john stultz2d0c87c2007-02-16 01:28:18 -0800391 if (hpet_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 hpet_reenable();
393 else
394 i8254_timer_resume();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return 0;
396}
397
398static struct sysdev_class timer_sysclass = {
399 .resume = timer_resume,
400 .suspend = timer_suspend,
401 set_kset_name("timer"),
402};
403
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100404/* XXX this sysfs stuff should probably go elsewhere later -john */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405static struct sys_device device_timer = {
406 .id = 0,
407 .cls = &timer_sysclass,
408};
409
410static int time_init_device(void)
411{
412 int error = sysdev_class_register(&timer_sysclass);
413 if (!error)
414 error = sysdev_register(&device_timer);
415 return error;
416}
417
418device_initcall(time_init_device);