time_64.c 3.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
/*
 *  "High Precision Event Timer" based timekeeping.
 *
 *  Copyright (c) 1991,1992,1995  Linus Torvalds
 *  Copyright (c) 1994  Alan Modra
 *  Copyright (c) 1995  Markus Kuhn
 *  Copyright (c) 1996  Ingo Molnar
 *  Copyright (c) 1998  Andrea Arcangeli
9
 *  Copyright (c) 2002,2006  Vojtech Pavlik
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *  Copyright (c) 2003  Andi Kleen
 *  RTC support code taken from arch/i386/kernel/timers/time_hpet.c
 */

#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/mc146818rtc.h>
#include <linux/time.h>
#include <linux/ioport.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/sysdev.h>
#include <linux/bcd.h>
25 26
#include <linux/notifier.h>
#include <linux/cpu.h>
L
Linus Torvalds 已提交
27
#include <linux/kallsyms.h>
A
Andi Kleen 已提交
28
#include <linux/acpi.h>
T
Thomas Gleixner 已提交
29 30
#include <linux/clockchips.h>

31
#ifdef CONFIG_ACPI
A
Andi Kleen 已提交
32
#include <acpi/achware.h>	/* for PM timer frequency */
33
#include <acpi/acpi_bus.h>
34
#endif
35
#include <asm/i8253.h>
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43
#include <asm/pgtable.h>
#include <asm/vsyscall.h>
#include <asm/timex.h>
#include <asm/proto.h>
#include <asm/hpet.h>
#include <asm/sections.h>
#include <linux/hpet.h>
#include <asm/apic.h>
44
#include <asm/hpet.h>
45
#include <asm/mpspec.h>
46
#include <asm/nmi.h>
47
#include <asm/vgtod.h>
L
Linus Torvalds 已提交
48 49 50 51 52 53 54

volatile unsigned long __jiffies __section_jiffies = INITIAL_JIFFIES;

unsigned long profile_pc(struct pt_regs *regs)
{
	unsigned long pc = instruction_pointer(regs);

55 56 57
	/* Assume the lock function has either no stack frame or a copy
	   of eflags from PUSHF
	   Eflags always has bits 22 and up cleared unlike kernel addresses. */
58
	if (!user_mode(regs) && in_lock_functions(pc)) {
59 60 61 62 63
		unsigned long *sp = (unsigned long *)regs->rsp;
		if (sp[0] >> 22)
			return sp[0];
		if (sp[1] >> 22)
			return sp[1];
L
Linus Torvalds 已提交
64 65 66 67 68
	}
	return pc;
}
EXPORT_SYMBOL(profile_pc);

T
Thomas Gleixner 已提交
69 70
static irqreturn_t timer_event_interrupt(int irq, void *dev_id)
{
71 72
	add_pda(irq0_irqs, 1);

T
Thomas Gleixner 已提交
73 74 75
	global_clock_event->event_handler(global_clock_event);

	return IRQ_HANDLED;
L
Linus Torvalds 已提交
76 77
}

78 79 80 81 82
/* calibrate_cpu is used on systems with fixed rate TSCs to determine
 * processor frequency */
#define TICK_COUNT 100000000
static unsigned int __init tsc_calibrate_cpu_khz(void)
{
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	int tsc_start, tsc_now;
	int i, no_ctr_free;
	unsigned long evntsel3 = 0, pmc3 = 0, pmc_now = 0;
	unsigned long flags;

	for (i = 0; i < 4; i++)
		if (avail_to_resrv_perfctr_nmi_bit(i))
			break;
	no_ctr_free = (i == 4);
	if (no_ctr_free) {
		i = 3;
		rdmsrl(MSR_K7_EVNTSEL3, evntsel3);
		wrmsrl(MSR_K7_EVNTSEL3, 0);
		rdmsrl(MSR_K7_PERFCTR3, pmc3);
	} else {
		reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i);
		reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
	}
	local_irq_save(flags);
	/* start meauring cycles, incrementing from 0 */
	wrmsrl(MSR_K7_PERFCTR0 + i, 0);
	wrmsrl(MSR_K7_EVNTSEL0 + i, 1 << 22 | 3 << 16 | 0x76);
	rdtscl(tsc_start);
	do {
		rdmsrl(MSR_K7_PERFCTR0 + i, pmc_now);
		tsc_now = get_cycles_sync();
	} while ((tsc_now - tsc_start) < TICK_COUNT);

	local_irq_restore(flags);
	if (no_ctr_free) {
		wrmsrl(MSR_K7_EVNTSEL3, 0);
		wrmsrl(MSR_K7_PERFCTR3, pmc3);
		wrmsrl(MSR_K7_EVNTSEL3, evntsel3);
	} else {
		release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
		release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
	}

	return pmc_now * tsc_khz / (tsc_now - tsc_start);
122
}
L
Linus Torvalds 已提交
123 124

static struct irqaction irq0 = {
T
Thomas Gleixner 已提交
125
	.handler	= timer_event_interrupt,
126
	.flags		= IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING,
B
Bernhard Walle 已提交
127
	.mask		= CPU_MASK_NONE,
128
	.name		= "timer"
L
Linus Torvalds 已提交
129 130
};

131 132
void __init time_init(void)
{
T
Thomas Gleixner 已提交
133 134
	if (!hpet_enable())
		setup_pit_timer();
135

T
Thomas Gleixner 已提交
136
	setup_irq(0, &irq0);
L
Linus Torvalds 已提交
137

138 139
	tsc_calibrate();

140 141 142 143 144 145
	cpu_khz = tsc_khz;
	if (cpu_has(&boot_cpu_data, X86_FEATURE_CONSTANT_TSC) &&
		boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
		boot_cpu_data.x86 == 16)
		cpu_khz = tsc_calibrate_cpu_khz();

A
Andi Kleen 已提交
146
	if (unsynchronized_tsc())
147
		mark_tsc_unstable("TSCs unsynchronized");
148

149
	if (cpu_has(&boot_cpu_data, X86_FEATURE_RDTSCP))
150 151 152 153
		vgetcpu_mode = VGETCPU_RDTSCP;
	else
		vgetcpu_mode = VGETCPU_LSL;

154 155
	printk(KERN_INFO "time.c: Detected %d.%03d MHz processor.\n",
		cpu_khz / 1000, cpu_khz % 1000);
156
	init_tsc_clocksource();
L
Linus Torvalds 已提交
157
}