亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? time.c

?? 優龍2410linux2.6.8內核源代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* $Id: time.c,v 1.21 2004/04/21 00:09:15 lethal Exp $ * *  linux/arch/sh/kernel/time.c * *  Copyright (C) 1999  Tetsuya Okada & Niibe Yutaka *  Copyright (C) 2000  Philipp Rumpf <prumpf@tux.org> *  Copyright (C) 2002, 2003, 2004  Paul Mundt *  Copyright (C) 2002  M. R. Brown  <mrbrown@linux-sh.org> * *  Some code taken from i386 version. *    Copyright (C) 1991, 1992, 1995  Linus Torvalds */#include <linux/config.h>#include <linux/errno.h>#include <linux/module.h>#include <linux/sched.h>#include <linux/kernel.h>#include <linux/param.h>#include <linux/string.h>#include <linux/mm.h>#include <linux/interrupt.h>#include <linux/time.h>#include <linux/delay.h>#include <linux/init.h>#include <linux/smp.h>#include <asm/processor.h>#include <asm/uaccess.h>#include <asm/io.h>#include <asm/irq.h>#include <asm/delay.h>#include <asm/machvec.h>#include <asm/rtc.h>#include <asm/freq.h>#ifdef CONFIG_SH_KGDB#include <asm/kgdb.h>#endif#include <linux/timex.h>#include <linux/irq.h>#define TMU_TOCR_INIT	0x00#define TMU0_TCR_INIT	0x0020#define TMU_TSTR_INIT	1#define TMU0_TCR_CALIB	0x0000#if defined(CONFIG_CPU_SH3)#if defined(CONFIG_CPU_SUBTYPE_SH7300)#define TMU_TSTR        0xA412FE92      /* Byte access */#define TMU0_TCOR       0xA412FE94      /* Long access */#define TMU0_TCNT       0xA412FE98      /* Long access */#define TMU0_TCR        0xA412FE9C      /* Word access */#define TMU1_TCOR	0xA412FEA0	/* Long access */#define TMU1_TCNT	0xA412FEA4	/* Long access */#define TMU1_TCR	0xA412FEA8	/* Word access */#define FRQCR           0xA415FF80#else#define TMU_TOCR	0xfffffe90	/* Byte access */#define TMU_TSTR	0xfffffe92	/* Byte access */#define TMU0_TCOR	0xfffffe94	/* Long access */#define TMU0_TCNT	0xfffffe98	/* Long access */#define TMU0_TCR	0xfffffe9c	/* Word access */#endif#elif defined(CONFIG_CPU_SH4)#define TMU_TOCR	0xffd80000	/* Byte access */#define TMU_TSTR	0xffd80004	/* Byte access */#define TMU0_TCOR	0xffd80008	/* Long access */#define TMU0_TCNT	0xffd8000c	/* Long access */#define TMU0_TCR	0xffd80010	/* Word access */#ifdef CONFIG_CPU_SUBTYPE_ST40STB1#define CLOCKGEN_MEMCLKCR 0xbb040038#define MEMCLKCR_RATIO_MASK 0x7#endif /* CONFIG_CPU_SUBTYPE_ST40STB1 */#endif /* CONFIG_CPU_SH3 or CONFIG_CPU_SH4 */extern unsigned long wall_jiffies;#define TICK_SIZE (tick_nsec / 1000)spinlock_t tmu0_lock = SPIN_LOCK_UNLOCKED;u64 jiffies_64 = INITIAL_JIFFIES;EXPORT_SYMBOL(jiffies_64);/* XXX: Can we initialize this in a routine somewhere?  Dreamcast doesn't want * these routines anywhere... */#ifdef CONFIG_SH_RTCvoid (*rtc_get_time)(struct timespec *) = sh_rtc_gettimeofday;int (*rtc_set_time)(const time_t) = sh_rtc_settimeofday;#elsevoid (*rtc_get_time)(struct timespec *) = 0;int (*rtc_set_time)(const time_t) = 0;#endif#if defined(CONFIG_CPU_SUBTYPE_SH7300)static int md_table[] = { 1, 2, 3, 4, 6, 8, 12 };#endif#if defined(CONFIG_CPU_SH3)static int stc_multipliers[] = { 1, 2, 3, 4, 6, 1, 1, 1 };static int stc_values[]      = { 0, 1, 4, 2, 5, 0, 0, 0 };#define bfc_divisors stc_multipliers#define bfc_values stc_valuesstatic int ifc_divisors[]    = { 1, 2, 3, 4, 1, 1, 1, 1 };static int ifc_values[]      = { 0, 1, 4, 2, 0, 0, 0, 0 };static int pfc_divisors[]    = { 1, 2, 3, 4, 6, 1, 1, 1 };static int pfc_values[]      = { 0, 1, 4, 2, 5, 0, 0, 0 };#elif defined(CONFIG_CPU_SH4)static int ifc_divisors[] = { 1, 2, 3, 4, 6, 8, 1, 1 };static int ifc_values[]   = { 0, 1, 2, 3, 0, 4, 0, 5 };#define bfc_divisors ifc_divisors	/* Same */#define bfc_values ifc_valuesstatic int pfc_divisors[] = { 2, 3, 4, 6, 8, 2, 2, 2 };static int pfc_values[]   = { 0, 0, 1, 2, 0, 3, 0, 4 };#else#error "Unknown ifc/bfc/pfc/stc values for this processor"#endif/* * Scheduler clock - returns current time in nanosec units. */unsigned long long sched_clock(void){	return (unsigned long long)jiffies * (1000000000 / HZ);}static unsigned long do_gettimeoffset(void){	int count;	unsigned long flags;	static int count_p = 0x7fffffff;    /* for the first call after boot */	static unsigned long jiffies_p = 0;	/*	 * cache volatile jiffies temporarily; we have IRQs turned off. 	 */	unsigned long jiffies_t;	spin_lock_irqsave(&tmu0_lock, flags);	/* timer count may underflow right here */	count = ctrl_inl(TMU0_TCNT);	/* read the latched count */ 	jiffies_t = jiffies;	/*	 * avoiding timer inconsistencies (they are rare, but they happen)...	 * there is one kind of problem that must be avoided here:	 *  1. the timer counter underflows	 */	if( jiffies_t == jiffies_p ) {		if( count > count_p ) {			/* the nutcase */			if(ctrl_inw(TMU0_TCR) & 0x100) { /* Check UNF bit */				/*				 * We cannot detect lost timer interrupts ... 				 * well, that's why we call them lost, don't we? :)				 * [hmm, on the Pentium and Alpha we can ... sort of]				 */				count -= LATCH;			} else {				printk("do_slow_gettimeoffset(): hardware timer problem?\n");			}		}	} else		jiffies_p = jiffies_t;	count_p = count;	spin_unlock_irqrestore(&tmu0_lock, flags);	count = ((LATCH-1) - count) * TICK_SIZE;	count = (count + LATCH/2) / LATCH;	return count;}void do_gettimeofday(struct timeval *tv){	unsigned long seq;	unsigned long usec, sec;	unsigned long lost;	do {		seq = read_seqbegin(&xtime_lock);		usec = do_gettimeoffset();				lost = jiffies - wall_jiffies;		if (lost)			usec += lost * (1000000 / HZ);		sec = xtime.tv_sec;		usec += xtime.tv_nsec / 1000;	} while (read_seqretry(&xtime_lock, seq));	while (usec >= 1000000) {		usec -= 1000000;		sec++;	}	tv->tv_sec = sec;	tv->tv_usec = usec;}EXPORT_SYMBOL(do_gettimeofday);int do_settimeofday(struct timespec *tv){	time_t wtm_sec, sec = tv->tv_sec;	long wtm_nsec, nsec = tv->tv_nsec;	if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)		return -EINVAL;	write_seqlock_irq(&xtime_lock);	/*	 * This is revolting. We need to set "xtime" correctly. However, the	 * value in this location is the value at the most recent update of	 * wall time.  Discover what correction gettimeofday() would have	 * made, and then undo it!	 */	nsec -= 1000 * (do_gettimeoffset() +				(jiffies - wall_jiffies) * (1000000 / HZ));	wtm_sec  = wall_to_monotonic.tv_sec + (xtime.tv_sec - sec);	wtm_nsec = wall_to_monotonic.tv_nsec + (xtime.tv_nsec - nsec);	set_normalized_timespec(&xtime, sec, nsec);	set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec);	time_adjust = 0;		/* stop active adjtime() */	time_status |= STA_UNSYNC;	time_maxerror = NTP_PHASE_LIMIT;	time_esterror = NTP_PHASE_LIMIT;	write_sequnlock_irq(&xtime_lock);	clock_was_set();	return 0;}EXPORT_SYMBOL(do_settimeofday);/* last time the RTC clock got updated */static long last_rtc_update;/* Profiling definitions */extern unsigned long prof_cpu_mask;extern unsigned int * prof_buffer;extern unsigned long prof_len;extern unsigned long prof_shift;extern char _stext;static inline void sh_do_profile(unsigned long pc){	/* Don't profile cpu_idle.. */	if (!prof_buffer || !current->pid)		return;	if (pc >= 0xa0000000UL && pc < 0xc0000000UL)		pc -= 0x20000000;	pc -= (unsigned long)&_stext;	pc >>= prof_shift;	/*	 * Don't ignore out-of-bounds PC values silently,	 * put them into the last histogram slot, so if	 * present, they will show up as a sharp peak.	 */	if (pc > prof_len - 1)		pc = prof_len - 1;	atomic_inc((atomic_t *)&prof_buffer[pc]);}/* * timer_interrupt() needs to keep up the real-time clock, * as well as call the "do_timer()" routine every clocktick */static inline void do_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs){	do_timer(regs);	if (!user_mode(regs))		sh_do_profile(regs->pc);#ifdef CONFIG_HEARTBEAT	if (sh_mv.mv_heartbeat != NULL) 		sh_mv.mv_heartbeat();#endif	/*	 * If we have an externally synchronized Linux clock, then update	 * RTC clock accordingly every ~11 minutes. Set_rtc_mmss() has to be	 * called as close as possible to 500 ms before the new second starts.	 */	if ((time_status & STA_UNSYNC) == 0 &&	    xtime.tv_sec > last_rtc_update + 660 &&	    (xtime.tv_nsec / 1000) >= 500000 - ((unsigned) TICK_SIZE) / 2 &&	    (xtime.tv_nsec / 1000) <= 500000 + ((unsigned) TICK_SIZE) / 2) {		if (rtc_set_time(xtime.tv_sec) == 0)			last_rtc_update = xtime.tv_sec;		else			last_rtc_update = xtime.tv_sec - 600; /* do it again in 60 s */	}}/* * This is the same as the above, except we _also_ save the current * Time Stamp Counter value at the time of the timer interrupt, so that * we later on can estimate the time of day more exactly. */static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs){	unsigned long timer_status;	/* Clear UNF bit */	timer_status = ctrl_inw(TMU0_TCR);	timer_status &= ~0x100;	ctrl_outw(timer_status, TMU0_TCR);	/*	 * Here we are in the timer irq handler. We just have irqs locally	 * disabled but we don't know if the timer_bh is running on the other	 * CPU. We need to avoid to SMP race with it. NOTE: we don' t need	 * the irq version of write_lock because as just said we have irq	 * locally disabled. -arca	 */	write_seqlock(&xtime_lock);	do_timer_interrupt(irq, NULL, regs);	write_sequnlock(&xtime_lock);	return IRQ_HANDLED;}/* * Hah!  We'll see if this works (switching from usecs to nsecs). */static unsigned int __init get_timer_frequency(void){	u32 freq;	struct timespec ts1, ts2;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区二区三区精华液| 97国产一区二区| 精品在线免费观看| 99久久综合精品| 日韩一区二区三区观看| 国产精品国产自产拍在线| 日韩电影在线免费| 91在线视频观看| 久久色.com| 日本成人在线网站| 日本久久电影网| 中文字幕第一区综合| 久久精品国产99久久6| 色av成人天堂桃色av| 国产精品久久久久久户外露出 | 性感美女极品91精品| 国产盗摄一区二区| 日韩一区二区免费在线观看| 一区二区三区国产| 成人黄色av电影| 国产亚洲欧美在线| 久久精品国产在热久久| 欧美精品1区2区3区| 亚洲高清免费视频| 一本大道久久a久久综合| 国产亚洲综合色| 国产综合成人久久大片91| 日韩精品一区二区三区在线播放 | 亚洲国产成人av网| 在线中文字幕一区| 亚洲色图在线看| 一本到高清视频免费精品| 国产精品久久久久三级| 国产91丝袜在线18| 久久久av毛片精品| 国产91色综合久久免费分享| 国产亚洲综合av| 成人动漫在线一区| 亚洲乱码中文字幕| 91成人国产精品| 午夜精品久久久久久久蜜桃app| 欧美在线一区二区三区| 一区二区三区日本| 91精品国产91久久久久久一区二区 | 精品国产青草久久久久福利| 视频一区二区欧美| 3d动漫精品啪啪| 久久成人精品无人区| 精品国产乱码久久久久久夜甘婷婷 | 免费精品视频最新在线| 欧美一级精品在线| 黑人巨大精品欧美一区| 中文字幕不卡的av| 91在线国产福利| 亚洲国产美国国产综合一区二区| 欧美日韩国产另类一区| 美日韩一级片在线观看| 国产视频一区在线播放| av一区二区三区在线| 亚洲国产色一区| 欧美精品一区二区久久婷婷| 国产成人av福利| 一区二区国产视频| 日韩视频在线一区二区| 成人av中文字幕| 午夜一区二区三区视频| 久久精品一区二区三区不卡牛牛| 色综合天天天天做夜夜夜夜做| 亚洲成av人片一区二区| 久久蜜桃av一区精品变态类天堂 | 蜜臀av性久久久久蜜臀aⅴ四虎| 久久―日本道色综合久久| 91在线观看一区二区| 亚洲成a人片在线观看中文| 久久精品亚洲精品国产欧美| 欧美性xxxxxx少妇| 韩国毛片一区二区三区| 亚洲黄一区二区三区| 久久久一区二区三区| 欧美三区在线观看| 大尺度一区二区| 首页国产欧美久久| 中文字幕日本不卡| 日韩精品一区二区在线观看| 日本电影亚洲天堂一区| 国产精品白丝jk白祙喷水网站| 亚洲一区二区欧美激情| 中文字幕一区二区三区在线不卡| 精品欧美一区二区久久| 欧美日韩在线播放一区| 99精品一区二区| 国产一区二区久久| 日韩精品亚洲一区| 一区二区免费视频| 中文字幕中文字幕一区二区| 久久婷婷综合激情| 91精品国产综合久久精品| 色欧美88888久久久久久影院| 国产精品一卡二| 日本亚洲欧美天堂免费| 亚洲第一综合色| 一区二区三区**美女毛片| 国产精品萝li| 国产日韩欧美精品一区| 精品国产乱码久久久久久浪潮| 8x福利精品第一导航| 欧美日韩一级黄| 欧美色图12p| 欧美自拍偷拍一区| 在线一区二区三区四区五区| 91在线一区二区三区| 99久久国产综合精品麻豆| 成人国产视频在线观看| 成人av在线资源网| 成人av网在线| 91网站在线观看视频| 99re66热这里只有精品3直播 | 免费av成人在线| 婷婷综合在线观看| 美女高潮久久久| 免费的国产精品| 极品少妇一区二区| 国产在线播放一区三区四| 麻豆成人久久精品二区三区红| 奇米一区二区三区| 国产在线视频精品一区| 国产精品99久久久久久似苏梦涵 | 99亚偷拍自图区亚洲| 成人激情图片网| 91久久国产综合久久| 欧美三级欧美一级| 99re热视频这里只精品| 在线免费视频一区二区| 欧美日韩三级一区| 欧美成人精精品一区二区频| 2020国产精品自拍| 国产精品久久看| 亚洲国产裸拍裸体视频在线观看乱了| 亚洲图片欧美一区| 九色综合国产一区二区三区| 国产在线精品一区二区夜色| 风间由美一区二区三区在线观看 | 一区二区中文字幕在线| 亚洲激情自拍偷拍| 日本视频一区二区| 国产xxx精品视频大全| 91福利视频网站| 精品国产青草久久久久福利| 久久久久久久网| 亚洲精品免费在线| 蜜臀av一区二区| 成人免费va视频| 9191成人精品久久| 国产精品无圣光一区二区| 香蕉久久夜色精品国产使用方法| 国产综合色精品一区二区三区| 成人精品免费视频| 91麻豆精品国产91久久久久久| 国产无人区一区二区三区| 一区二区三区91| 国产成人夜色高潮福利影视| 欧美日本一区二区| 国产三级精品三级在线专区| 亚洲小少妇裸体bbw| 国产精品一区久久久久| 欧美日本一区二区三区| 中文字幕免费一区| 麻豆国产一区二区| 欧美性猛片aaaaaaa做受| 久久久五月婷婷| 日本va欧美va瓶| 欧美性大战久久久久久久蜜臀| 久久久久久电影| 日韩精品乱码免费| 91免费版pro下载短视频| 精品福利视频一区二区三区| 亚洲国产精品自拍| 91免费看片在线观看| 国产三级久久久| 麻豆精品视频在线| 在线观看国产日韩| 亚洲欧美激情小说另类| 国产一区二区日韩精品| 欧美一级片免费看| 亚洲一区二区在线免费看| jvid福利写真一区二区三区| 久久综合久久99| 久久成人av少妇免费| 欧美一卡在线观看| 日韩影院精彩在线| 在线电影一区二区三区| 久久se精品一区二区| 欧美三级日韩三级| 亚洲一区二区在线免费看| 日本韩国欧美在线| 亚洲精品视频自拍| 91免费视频大全| 一区二区三区产品免费精品久久75| 99久久综合国产精品| 国产精品美女久久久久久久网站|