⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.c

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 C
字号:
/* *  linux/arch/x86-64/kernel/time.c * *  "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 *  Copyright (c) 2002  Vojtech Pavlik * */#include <linux/kernel.h>#include <linux/sched.h>#include <linux/interrupt.h>#include <linux/init.h>#include <linux/mc146818rtc.h>#include <linux/irq.h>#include <linux/ioport.h>#include <asm/vsyscall.h>#include <asm/timex.h>extern rwlock_t xtime_lock;spinlock_t rtc_lock = SPIN_LOCK_UNLOCKED;spinlock_t i8253_lock = SPIN_LOCK_UNLOCKED;unsigned int cpu_khz;					/* TSC clocks / usec, not used here */unsigned long hpet_address;unsigned long hpet_period;				/* fsecs / HPET clock */unsigned int hpet_tick;					/* HPET clocks / interrupt */unsigned long vxtime_hz = 1193182;int report_lost_ticks;					/* command line option */struct vxtime_data __vxtime __section_vxtime;		/* data for vsyscall */volatile unsigned long __jiffies __section_jiffies;unsigned long __wall_jiffies __section_wall_jiffies;struct timeval __xtime __section_xtime;struct timezone __sys_tz __section_sys_tz;long last_tsc;spinlock_t last_tsc_lock = SPIN_LOCK_UNLOCKED;void rdtscll_safe(long *x){	long temp;	unsigned long flags;	spin_lock_irqsave(&last_tsc_lock, flags);	rdtscll(temp);	if (last_tsc - temp < 0L) last_tsc = temp;	*x = last_tsc;	spin_unlock_irqrestore(&last_tsc_lock, flags);}/* * do_gettimeoffset() returns microseconds since last timer interrupt was * triggered by hardware.  */static unsigned int do_gettimeoffset_tsc(void){	unsigned long t;	rdtscll(t);		return ((t  - vxtime.last_tsc) * vxtime.tsc_quot) >> 32;}static unsigned int do_gettimeoffset_tsc_safe(void){	unsigned long t;	rdtscll_safe(&t);		return ((t  - vxtime.last_tsc) * vxtime.tsc_quot) >> 32;}static unsigned int do_gettimeoffset_hpet(void){	return ((hpet_readl(HPET_COUNTER) - vxtime.last) * vxtime.quot) >> 32;}unsigned int (*do_gettimeoffset)(void) = do_gettimeoffset_tsc;unsigned int (*do_gettimeoffset_safe)(void) = do_gettimeoffset_tsc_safe;/* * This version of gettimeofday() has microsecond resolution and better than * microsecond precision, as we're using at least a 10 MHz (usually 14.31818 * MHz) HPET timer. */void do_gettimeofday(struct timeval *tv){	unsigned long flags; 	unsigned int sec, usec;	read_lock_irqsave(&xtime_lock, flags);	sec = xtime.tv_sec;	usec = xtime.tv_usec		+ (jiffies - wall_jiffies) * tick		+ do_gettimeoffset_safe();	read_unlock_irqrestore(&xtime_lock, flags);	tv->tv_sec = sec + usec / 1000000;	tv->tv_usec = usec % 1000000;}/* * settimeofday() first undoes the correction that gettimeofday would do * on the time, and then saves it. This is ugly, but has been like this for * ages already. */void do_settimeofday(struct timeval *tv){	write_lock_irq(&xtime_lock);	vxtime_lock();	tv->tv_usec -= (jiffies - wall_jiffies) * tick			+ do_gettimeoffset_safe();	while (tv->tv_usec < 0) {		tv->tv_usec += 1000000;		tv->tv_sec--;	}	xtime = *tv;	vxtime_unlock();	time_adjust = 0;		/* stop active adjtime() */	time_status |= STA_UNSYNC;	time_maxerror = NTP_PHASE_LIMIT;	time_esterror = NTP_PHASE_LIMIT;	write_unlock_irq(&xtime_lock);}/* * In order to set the CMOS clock precisely, set_rtc_mmss has to be called 500 * ms after the second nowtime has started, because when nowtime is written * into the registers of the CMOS clock, it will jump to the next second * precisely 500 ms later. Check the Motorola MC146818A or Dallas DS12887 data * sheet for details. */static void set_rtc_mmss(unsigned long nowtime){	int real_seconds, real_minutes, cmos_minutes;	unsigned char control, freq_select;/* * IRQs are disabled when we're called from the timer interrupt, * no need for spin_lock_irqsave() */	spin_lock(&rtc_lock);/* * Tell the clock it's being set and stop it. */	control = CMOS_READ(RTC_CONTROL);	CMOS_WRITE(control | RTC_SET, RTC_CONTROL);	freq_select = CMOS_READ(RTC_FREQ_SELECT);	CMOS_WRITE(freq_select | RTC_DIV_RESET2, RTC_FREQ_SELECT);	cmos_minutes = CMOS_READ(RTC_MINUTES);	BCD_TO_BIN(cmos_minutes);/* * since we're only adjusting minutes and seconds, don't interfere with hour * overflow. This avoids messing with unknown time zones but requires your RTC * not to be off by more than 15 minutes. Since we're calling it only when * our clock is externally synchronized using NTP, this shouldn't be a problem. */	real_seconds = nowtime % 60;	real_minutes = nowtime / 60;	if (((abs(real_minutes - cmos_minutes) + 15) / 30) & 1)		real_minutes += 30;	/* correct for half hour time zone */	real_minutes %= 60;	if (abs(real_minutes - cmos_minutes) < 30) {		BIN_TO_BCD(real_seconds);		BIN_TO_BCD(real_minutes);		CMOS_WRITE(real_seconds, RTC_SECONDS);		CMOS_WRITE(real_minutes, RTC_MINUTES);	} else		printk(KERN_WARNING "time.c: can't update CMOS clock from %d to %d\n",			cmos_minutes, real_minutes);/* * The following flags have to be released exactly in this order, otherwise the * DS12887 (popular MC146818A clone with integrated battery and quartz) will * not reset the oscillator and will not update precisely 500 ms later. You * won't find this mentioned in the Dallas Semiconductor data sheets, but who * believes data sheets anyway ... -- Markus Kuhn */	CMOS_WRITE(control, RTC_CONTROL);	CMOS_WRITE(freq_select, RTC_FREQ_SELECT);	spin_unlock(&rtc_lock);}static void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs){	static unsigned long rtc_update = 0;/* * Here we are in the timer irq handler. We have irqs locally disabled (so we * don't need spin_lock_irqsave()) but we don't know if the timer_bh is running * on the other CPU, so we need a lock. We also need to lock the vsyscall * variables, because both do_timer() and us change them -arca+vojtech */	write_lock(&xtime_lock);	vxtime_lock();	{		long tsc;		int delay, offset = 0;		if (hpet_address) {			offset = hpet_readl(HPET_T0_CMP) - hpet_tick;			delay = hpet_readl(HPET_COUNTER) - offset;		} else {			spin_lock(&i8253_lock);			outb_p(0x00, 0x43);			delay = inb_p(0x40);			delay |= inb(0x40) << 8;			spin_unlock(&i8253_lock);			delay = LATCH - 1 - delay;		}		rdtscll_safe(&tsc);		if (vxtime.mode == VXTIME_HPET) {			if (offset - vxtime.last > hpet_tick) {				if (report_lost_ticks)					printk(KERN_WARNING "time.c: Lost %d timer tick(s)! (rip %016lx)\n",						(offset - vxtime.last) / hpet_tick - 1, regs->rip);				jiffies += (offset - vxtime.last) / hpet_tick - 1;			}			vxtime.last = offset;		} else {			offset = (((tsc - vxtime.last_tsc) * vxtime.tsc_quot) >> 32) - tick;			if (offset > tick) {				if (report_lost_ticks)					printk(KERN_WARNING "time.c: lost %ld tick(s) (rip %016lx)\n",						 offset / tick, regs->rip);				jiffies += offset / tick;				offset %= tick;			}			vxtime.last_tsc = tsc - vxtime.quot * delay / vxtime.tsc_quot;			if ((((tsc - vxtime.last_tsc) * vxtime.tsc_quot) >> 32) < offset)				vxtime.last_tsc = tsc - (((long)offset << 32) / vxtime.tsc_quot) - 1;		}	}/* * Do the timer stuff. */	do_timer(regs);/* * If we have an externally synchronized Linux clock, then update CMOS clock * accordingly every ~11 minutes. set_rtc_mmss() will be called in the jiffy * closest to exactly 500 ms before the next second. If the update fails, we * don'tcare, as it'll be updated on the next turn, and the problem (time way * off) isn't likely to go away much sooner anyway. */	if ((~time_status & STA_UNSYNC) && xtime.tv_sec > rtc_update &&		abs(xtime.tv_usec - 500000) <= tick / 2) {		set_rtc_mmss(xtime.tv_sec);		rtc_update = xtime.tv_sec + 660;	}	vxtime_unlock();	write_unlock(&xtime_lock);}static unsigned long get_cmos_time(void){	unsigned int timeout, year, mon, day, hour, min, sec;	unsigned char last, this;/* * The Linux interpretation of the CMOS clock register contents: When the * Update-In-Progress (UIP) flag goes from 1 to 0, the RTC registers show the * second which has precisely just started. Waiting for this can take up to 1 * second, we timeout approximately after 2.4 seconds on a machine with * standard 8.3 MHz ISA bus. */	spin_lock(&rtc_lock);	timeout = 1000000;	last = this = 0;	while (timeout && last && !this) {		last = this;		this = CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP;		timeout--;	}/* * Here we are safe to assume the registers won't change for a whole second, so * we just go ahead and read them. */	sec = CMOS_READ(RTC_SECONDS);	min = CMOS_READ(RTC_MINUTES);	hour = CMOS_READ(RTC_HOURS);	day = CMOS_READ(RTC_DAY_OF_MONTH);	mon = CMOS_READ(RTC_MONTH);	year = CMOS_READ(RTC_YEAR);	spin_unlock(&rtc_lock);/* * We know that x86-64 always uses BCD format, no need to check the config * register. */	BCD_TO_BIN(sec);	BCD_TO_BIN(min);	BCD_TO_BIN(hour);	BCD_TO_BIN(day);	BCD_TO_BIN(mon);	BCD_TO_BIN(year);/* * This will work up to Dec 31, 2069. */	if ((year += 1900) < 1970)		year += 100;	return mktime(year, mon, day, hour, min, sec);}/* * calibrate_tsc() calibrates the processor TSC in a very simple way, comparing * it to the HPET timer of known frequency. */#define TICK_COUNT 100000000static unsigned int __init hpet_calibrate_tsc(void){	int tsc_start, hpet_start;	int tsc_now, hpet_now;	unsigned long flags;	__save_flags(flags);	__cli();	hpet_start = hpet_readl(HPET_COUNTER);	rdtscl(tsc_start);	do {		__cli();		hpet_now = hpet_readl(HPET_COUNTER);		rdtscl(tsc_now);		__restore_flags(flags);	} while ((tsc_now - tsc_start) < TICK_COUNT && (hpet_now - hpet_start) < TICK_COUNT);	return (tsc_now - tsc_start) * 1000000000L		/ ((hpet_now - hpet_start) * hpet_period / 1000);}/* * pit_calibrate_tsc() uses the speaker output (channel 2) of * the PIT. This is better than using the timer interrupt output, * because we can read the value of the speaker with just one inb(), * where we need three i/o operations for the interrupt channel. * We count how many ticks the TSC does in 50 ms. */static unsigned int __init pit_calibrate_tsc(void){	unsigned long start, end;	outb((inb(0x61) & ~0x02) | 0x01, 0x61);	spin_lock_irq(&i8253_lock);	outb(0xb0, 0x43);	outb((1193182 / (1000 / 50)) & 0xff, 0x42);	outb((1193182 / (1000 / 50)) >> 8, 0x42);	rdtscll(start);	while ((inb(0x61) & 0x20) == 0);	rdtscll(end);	spin_unlock_irq(&i8253_lock);	return (end - start) / 50;}static int hpet_init(void){	unsigned int cfg, id;	if (!hpet_address)		return -1;	set_fixmap_nocache(FIX_HPET_BASE, hpet_address);/* * Read the period, compute tick and quotient. */	id = hpet_readl(HPET_ID);	if (!(id & HPET_ID_VENDOR) || !(id & HPET_ID_NUMBER) || !(id & HPET_ID_LEGSUP))		return -1;	hpet_period = hpet_readl(HPET_PERIOD);	if (hpet_period < 100000 || hpet_period > 100000000)		return -1;	hpet_tick = (1000000000L * tick + hpet_period / 2) / hpet_period;/* * Stop the timers and reset the main counter. */	cfg = hpet_readl(HPET_CFG);	cfg &= ~(HPET_CFG_ENABLE | HPET_CFG_LEGACY);	hpet_writel(cfg, HPET_CFG);	hpet_writel(0, HPET_COUNTER);	hpet_writel(0, HPET_COUNTER + 4);/* * Set up timer 0, as periodic with first interrupt to happen at hpet_tick, * and period also hpet_tick. */	hpet_writel(HPET_T0_ENABLE | HPET_T0_PERIODIC | HPET_T0_SETVAL | HPET_T0_32BIT, HPET_T0_CFG);	hpet_writel(hpet_tick, HPET_T0_CMP);	hpet_writel(hpet_tick, HPET_T0_CMP);/* * Go! */	cfg |= HPET_CFG_ENABLE | HPET_CFG_LEGACY;	hpet_writel(cfg, HPET_CFG);	return 0;}void __init pit_init(void){	spin_lock_irq(&i8253_lock);	outb_p(0x34, 0x43);		/* binary, mode 2, LSB/MSB, ch 0 */	outb_p(LATCH & 0xff, 0x40);	/* LSB */	outb_p(LATCH >> 8, 0x40);	/* MSB */	spin_unlock_irq(&i8253_lock);}int __init time_setup(char *str){	report_lost_ticks = 1;	return 1;}static struct irqaction irq0 = { timer_interrupt, SA_INTERRUPT, 0, "timer", NULL, NULL};extern void __init config_acpi_tables(void);void __init time_init(void){	char *timename;	config_acpi_tables();#ifdef HPET_HACK_ENABLE_DANGEROUS        if (!hpet_address) {		printk(KERN_WARNING "time.c: WARNING: Enabling HPET base manually!\n");                outl(0x800038a0, 0xcf8);                outl(0xff000001, 0xcfc);                outl(0x800038a0, 0xcf8);                hpet_address = inl(0xcfc) & 0xfffffffe;		printk(KERN_WARNING "time.c: WARNING: Enabled HPET at at %#lx.\n", hpet_address);        }#endif#ifndef CONFIG_HPET_TIMER        hpet_address = 0;#endif	write_lock(&xtime_lock);	xtime.tv_sec = get_cmos_time();	xtime.tv_usec = 0;	write_unlock(&xtime_lock);	if (!hpet_init()) {                vxtime_hz = (1000000000000000L + hpet_period / 2) / hpet_period;                cpu_khz = hpet_calibrate_tsc();		timename = "HPET";	} else {		pit_init();		cpu_khz = pit_calibrate_tsc();		timename = "PIT";	}	vxtime.mode = VXTIME_TSC_SAFE;	vxtime.quot = (1000000L << 32) / vxtime_hz;	vxtime.tsc_quot = (1000L << 32) / cpu_khz;	rdtscll_safe(&vxtime.last_tsc);	setup_irq(0, &irq0);        printk(KERN_INFO "time.c: Detected %ld.%06ld MHz %s timer.\n",		vxtime_hz / 1000000, vxtime_hz % 1000000, timename);	printk(KERN_INFO "time.c: Detected %d.%03d MHz TSC timer.\n",			cpu_khz / 1000, cpu_khz % 1000);}void __init time_init_smp(void){	char *timetype;	if (hpet_address) {		if (smp_num_cpus > 1) {			timetype = "HPET";			vxtime.last = hpet_readl(HPET_T0_CMP) - hpet_tick;			vxtime.mode = VXTIME_HPET;			do_gettimeoffset = do_gettimeoffset_hpet;			do_gettimeoffset_safe = do_gettimeoffset_hpet;		} else {			timetype = "HPET/TSC";			vxtime.mode = VXTIME_TSC;			do_gettimeoffset = do_gettimeoffset_tsc;			do_gettimeoffset_safe = do_gettimeoffset_tsc;		}			} else {		if (smp_num_cpus > 1) {			timetype = "PIT/TSC/SpinLock";		} else {			timetype = "PIT/TSC";			vxtime.mode = VXTIME_TSC;			do_gettimeoffset_safe = do_gettimeoffset_tsc;		}	}	printk(KERN_INFO "time.c: Using %s based timekeeping.\n", timetype);}__setup("report_lost_ticks", time_setup);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -