x86_64: convert to clock events
[linux-2.6-block.git] / arch / x86 / kernel / time_64.c
CommitLineData
1da177e4
LT
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
2f82bde4 11 * Copyright (c) 2002,2006 Vojtech Pavlik
1da177e4
LT
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>
1da177e4
LT
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>
a670fad0
VP
27#include <linux/notifier.h>
28#include <linux/cpu.h>
1da177e4 29#include <linux/kallsyms.h>
312df5f1 30#include <linux/acpi.h>
b8ce3359
TG
31#include <linux/clockchips.h>
32
8d916406 33#ifdef CONFIG_ACPI
312df5f1 34#include <acpi/achware.h> /* for PM timer frequency */
0e5f61b0 35#include <acpi/acpi_bus.h>
8d916406 36#endif
28318daf 37#include <asm/i8253.h>
1da177e4
LT
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>
1da177e4 44#include <linux/hpet.h>
1da177e4 45#include <asm/apic.h>
c37e7bb5 46#include <asm/hpet.h>
803d80f6 47#include <asm/mpspec.h>
6b37f5a2 48#include <asm/nmi.h>
2aae950b 49#include <asm/vgtod.h>
1da177e4
LT
50
51DEFINE_SPINLOCK(rtc_lock);
2ee60e17 52EXPORT_SYMBOL(rtc_lock);
1da177e4 53
1da177e4 54volatile unsigned long __jiffies __section_jiffies = INITIAL_JIFFIES;
1da177e4 55
1da177e4
LT
56unsigned long profile_pc(struct pt_regs *regs)
57{
58 unsigned long pc = instruction_pointer(regs);
59
31679f38
AK
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. */
d5a26017 63 if (!user_mode(regs) && in_lock_functions(pc)) {
31679f38
AK
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];
1da177e4
LT
69 }
70 return pc;
71}
72EXPORT_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
af74522a 82static int set_rtc_mmss(unsigned long nowtime)
1da177e4 83{
af74522a 84 int retval = 0;
1da177e4
LT
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
1da177e4
LT
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);
af74522a 124 retval = -1;
28456ede 125 } else {
0b91317e
AK
126 BIN_TO_BCD(real_seconds);
127 BIN_TO_BCD(real_minutes);
1da177e4
LT
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);
af74522a
TG
144
145 return retval;
1da177e4
LT
146}
147
af74522a
TG
148int update_persistent_clock(struct timespec now)
149{
150 return set_rtc_mmss(now.tv_sec);
151}
1da177e4 152
7d12e780 153void main_timer_handler(void)
1da177e4 154{
1da177e4
LT
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
1da177e4
LT
164/*
165 * Do the timer stuff.
166 */
167
1489939f 168 do_timer(1);
1da177e4 169#ifndef CONFIG_SMP
7d12e780 170 update_process_times(user_mode(get_irq_regs()));
1da177e4
LT
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
1da177e4 179 if (!using_apic_timer)
7d12e780 180 smp_local_timer_interrupt();
1da177e4 181
1da177e4 182 write_sequnlock(&xtime_lock);
73dea47f 183}
1da177e4 184
7d12e780 185static irqreturn_t timer_interrupt(int irq, void *dev_id)
73dea47f
AK
186{
187 if (apic_runs_main_timer > 1)
188 return IRQ_HANDLED;
7d12e780 189 main_timer_handler();
d25bf7e5
VP
190 if (using_apic_timer)
191 smp_send_timer_broadcast_ipi();
1da177e4
LT
192 return IRQ_HANDLED;
193}
194
b8ce3359
TG
195static irqreturn_t timer_event_interrupt(int irq, void *dev_id)
196{
197 global_clock_event->event_handler(global_clock_event);
198
199 return IRQ_HANDLED;
200}
201
ef81ab2c 202unsigned long read_persistent_clock(void)
1da177e4 203{
641f71f5 204 unsigned int year, mon, day, hour, min, sec;
1da177e4 205 unsigned long flags;
ad71860a 206 unsigned century = 0;
1da177e4 207
1da177e4
LT
208 spin_lock_irqsave(&rtc_lock, flags);
209
641f71f5
MM
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);
6954bee8 217#ifdef CONFIG_ACPI
ad71860a
AS
218 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
219 acpi_gbl_FADT.century)
220 century = CMOS_READ(acpi_gbl_FADT.century);
6954bee8 221#endif
641f71f5 222 } while (sec != CMOS_READ(RTC_SECONDS));
6954bee8 223
1da177e4
LT
224 spin_unlock_irqrestore(&rtc_lock, flags);
225
0b91317e
AK
226 /*
227 * We know that x86-64 always uses BCD format, no need to check the
228 * config register.
2618f86e 229 */
1da177e4 230
0b91317e
AK
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);
1da177e4 237
ad71860a
AS
238 if (century) {
239 BCD_TO_BIN(century);
240 year += century * 100;
241 printk(KERN_INFO "Extended CMOS year: %d\n", century * 100);
2618f86e 242 } else {
6954bee8
AK
243 /*
244 * x86-64 systems only exists since 2002.
245 * This will work up to Dec 31, 2100
2618f86e 246 */
6954bee8
AK
247 year += 2000;
248 }
1da177e4
LT
249
250 return mktime(year, mon, day, hour, min, sec);
251}
252
6b37f5a2
JR
253/* calibrate_cpu is used on systems with fixed rate TSCs to determine
254 * processor frequency */
255#define TICK_COUNT 100000000
256static unsigned int __init tsc_calibrate_cpu_khz(void)
257{
2618f86e
TG
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);
6b37f5a2 297}
1da177e4 298
1da177e4 299static struct irqaction irq0 = {
b8ce3359 300 .handler = timer_event_interrupt,
5fa3a246 301 .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING,
e6d828f4 302 .mask = CPU_MASK_NONE,
2618f86e 303 .name = "timer"
1da177e4
LT
304};
305
a670fad0
VP
306void __init time_init(void)
307{
b8ce3359
TG
308 if (!hpet_enable())
309 setup_pit_timer();
a3a00751 310
b8ce3359 311 setup_irq(0, &irq0);
1da177e4 312
d371698e
TG
313 tsc_calibrate();
314
6b37f5a2
JR
315 cpu_khz = tsc_khz;
316 if (cpu_has(&boot_cpu_data, X86_FEATURE_CONSTANT_TSC) &&
317 boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
318 boot_cpu_data.x86 == 16)
319 cpu_khz = tsc_calibrate_cpu_khz();
320
312df5f1 321 if (unsynchronized_tsc())
5a90cf20 322 mark_tsc_unstable("TSCs unsynchronized");
a670fad0 323
2d0c87c3 324 if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
c08c8205
VP
325 vgetcpu_mode = VGETCPU_RDTSCP;
326 else
327 vgetcpu_mode = VGETCPU_LSL;
328
6b37f5a2 329 set_cyc2ns_scale(tsc_khz);
a670fad0
VP
330 printk(KERN_INFO "time.c: Detected %d.%03d MHz processor.\n",
331 cpu_khz / 1000, cpu_khz % 1000);
6bb74df4 332 init_tsc_clocksource();
1da177e4 333}