time.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:11k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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
  11.  *  Copyright (c) 2002  Vojtech Pavlik
  12.  *
  13.  */
  14. #define HPET_BIOS_SUPPORT_WORKING
  15. #include <linux/kernel.h>
  16. #include <linux/sched.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/init.h>
  19. #include <linux/mc146818rtc.h>
  20. #include <linux/irq.h>
  21. #include <linux/ioport.h>
  22. #include <asm/vsyscall.h>
  23. #include <asm/timex.h>
  24. extern rwlock_t xtime_lock;
  25. spinlock_t rtc_lock = SPIN_LOCK_UNLOCKED;
  26. unsigned int cpu_khz; /* TSC clocks / usec, not used here */
  27. unsigned long hpet_period; /* fsecs / HPET clock */
  28. unsigned long hpet_tick; /* HPET clocks / interrupt */
  29. int hpet_report_lost_ticks; /* command line option */
  30. struct hpet_data __hpet __section_hpet; /* address, quotient, trigger, hz */
  31. volatile unsigned long __jiffies __section_jiffies;
  32. unsigned long __wall_jiffies __section_wall_jiffies;
  33. struct timeval __xtime __section_xtime;
  34. struct timezone __sys_tz __section_sys_tz;
  35. /*
  36.  * do_gettimeoffset() returns microseconds since last timer interrupt was
  37.  * triggered by hardware. A memory read of HPET is slower than a register read
  38.  * of TSC, but much more reliable. It's also synchronized to the timer
  39.  * interrupt. Note that do_gettimeoffset() may return more than hpet_tick, if a
  40.  * timer interrupt has happened already, but hpet.trigger wasn't updated yet.
  41.  * This is not a problem, because jiffies hasn't updated either. They are bound
  42.  * together by xtime_lock.
  43.  */
  44. static spinlock_t time_offset_lock = SPIN_LOCK_UNLOCKED;
  45. static unsigned long timeoffset = 0;
  46. inline unsigned int do_gettimeoffset(void)
  47. {
  48. unsigned long t;
  49. rdtscll(t);
  50. return (t  - hpet.last_tsc) * (1000000L / HZ) / hpet.ticks + hpet.offset;
  51. }
  52. /*
  53.  * This version of gettimeofday() has microsecond resolution and better than
  54.  * microsecond precision, as we're using at least a 10 MHz (usually 14.31818
  55.  * MHz) HPET timer.
  56.  */
  57. void do_gettimeofday(struct timeval *tv)
  58. {
  59. unsigned long flags, t;
  60.   unsigned int sec, usec;
  61. read_lock_irqsave(&xtime_lock, flags);
  62. spin_lock(&time_offset_lock);
  63. sec = xtime.tv_sec;
  64. usec = xtime.tv_usec;
  65. t = (jiffies - wall_jiffies) * (1000000L / HZ) + do_gettimeoffset();
  66. if (t > timeoffset) timeoffset = t;
  67. usec += timeoffset;
  68. spin_unlock(&time_offset_lock);
  69. read_unlock_irqrestore(&xtime_lock, flags);
  70. tv->tv_sec = sec + usec / 1000000;
  71. tv->tv_usec = usec % 1000000;
  72. }
  73. /*
  74.  * settimeofday() first undoes the correction that gettimeofday would do
  75.  * on the time, and then saves it. This is ugly, but has been like this for
  76.  * ages already.
  77.  */
  78. void do_settimeofday(struct timeval *tv)
  79. {
  80. write_lock_irq(&xtime_lock);
  81. vxtime_lock();
  82. tv->tv_usec -= do_gettimeoffset() +
  83. (jiffies - wall_jiffies) * tick;
  84. while (tv->tv_usec < 0) {
  85. tv->tv_usec += 1000000;
  86. tv->tv_sec--;
  87. }
  88. xtime = *tv;
  89. vxtime_unlock();
  90. time_adjust = 0; /* stop active adjtime() */
  91. time_status |= STA_UNSYNC;
  92. time_maxerror = NTP_PHASE_LIMIT;
  93. time_esterror = NTP_PHASE_LIMIT;
  94. write_unlock_irq(&xtime_lock);
  95. }
  96. /*
  97.  * In order to set the CMOS clock precisely, set_rtc_mmss has to be called 500
  98.  * ms after the second nowtime has started, because when nowtime is written
  99.  * into the registers of the CMOS clock, it will jump to the next second
  100.  * precisely 500 ms later. Check the Motorola MC146818A or Dallas DS12887 data
  101.  * sheet for details.
  102.  */
  103. static void set_rtc_mmss(unsigned long nowtime)
  104. {
  105. int real_seconds, real_minutes, cmos_minutes;
  106. unsigned char control, freq_select;
  107. /*
  108.  * IRQs are disabled when we're called from the timer interrupt,
  109.  * no need for spin_lock_irqsave()
  110.  */
  111. spin_lock(&rtc_lock);
  112. /*
  113.  * Tell the clock it's being set and stop it.
  114.  */
  115. control = CMOS_READ(RTC_CONTROL);
  116. CMOS_WRITE(control | RTC_SET, RTC_CONTROL);
  117. freq_select = CMOS_READ(RTC_FREQ_SELECT);
  118. CMOS_WRITE(freq_select | RTC_DIV_RESET2, RTC_FREQ_SELECT);
  119. cmos_minutes = CMOS_READ(RTC_MINUTES);
  120. BCD_TO_BIN(cmos_minutes);
  121. /*
  122.  * since we're only adjusting minutes and seconds, don't interfere with hour
  123.  * overflow. This avoids messing with unknown time zones but requires your RTC
  124.  * not to be off by more than 15 minutes. Since we're calling it only when
  125.  * our clock is externally synchronized using NTP, this shouldn't be a problem.
  126.  */
  127. real_seconds = nowtime % 60;
  128. real_minutes = nowtime / 60;
  129. if (((abs(real_minutes - cmos_minutes) + 15) / 30) & 1)
  130. real_minutes += 30; /* correct for half hour time zone */
  131. real_minutes %= 60;
  132. if (abs(real_minutes - cmos_minutes) < 30) {
  133. BIN_TO_BCD(real_seconds);
  134. BIN_TO_BCD(real_minutes);
  135. CMOS_WRITE(real_seconds, RTC_SECONDS);
  136. CMOS_WRITE(real_minutes, RTC_MINUTES);
  137. } else
  138. printk(KERN_WARNING "time.c: can't update CMOS clock from %d to %dn",
  139. cmos_minutes, real_minutes);
  140. /*
  141.  * The following flags have to be released exactly in this order, otherwise the
  142.  * DS12887 (popular MC146818A clone with integrated battery and quartz) will
  143.  * not reset the oscillator and will not update precisely 500 ms later. You
  144.  * won't find this mentioned in the Dallas Semiconductor data sheets, but who
  145.  * believes data sheets anyway ... -- Markus Kuhn
  146.  */
  147. CMOS_WRITE(control, RTC_CONTROL);
  148. CMOS_WRITE(freq_select, RTC_FREQ_SELECT);
  149. spin_unlock(&rtc_lock);
  150. }
  151. static void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  152. {
  153. static unsigned long rtc_update = 0;
  154. /*
  155.  * Here we are in the timer irq handler. We have irqs locally disabled (so we
  156.  * don't need spin_lock_irqsave()) but we don't know if the timer_bh is running
  157.  * on the other CPU, so we need a lock. We also need to lock the vsyscall
  158.  * variables, because both do_timer() and us change them -arca+vojtech
  159.  */
  160. write_lock(&xtime_lock);
  161. vxtime_lock();
  162. {
  163. unsigned long t;
  164. rdtscll(t);
  165. hpet.offset = (t  - hpet.last_tsc) * (1000000L / HZ) / hpet.ticks + hpet.offset - 1000000L / HZ;
  166. if (hpet.offset >= 1000000L / HZ)
  167. hpet.offset = 0;
  168. hpet.ticks = min_t(long, max_t(long, (t  - hpet.last_tsc) * (1000000L / HZ) / (1000000L / HZ - hpet.offset),
  169. cpu_khz * 1000/HZ * 15 / 16), cpu_khz * 1000/HZ * 16 / 15); 
  170. hpet.last_tsc = t;
  171. }
  172. /*
  173.  * Do the timer stuff.
  174.  */
  175. do_timer(regs);
  176. /*
  177.  * If we have an externally synchronized Linux clock, then update CMOS clock
  178.  * accordingly every ~11 minutes. set_rtc_mmss() will be called in the jiffy
  179.  * closest to exactly 500 ms before the next second. If the update fails, we
  180.  * don'tcare, as it'll be updated on the next turn, and the problem (time way
  181.  * off) isn't likely to go away much sooner anyway.
  182.  */
  183. if ((~time_status & STA_UNSYNC) && xtime.tv_sec > rtc_update &&
  184. abs(xtime.tv_usec - 500000) <= tick / 2) {
  185. set_rtc_mmss(xtime.tv_sec);
  186. rtc_update = xtime.tv_sec + 660;
  187. }
  188. vxtime_unlock();
  189. write_unlock(&xtime_lock);
  190. }
  191. static unsigned long get_cmos_time(void)
  192. {
  193. unsigned int timeout, year, mon, day, hour, min, sec;
  194. unsigned char last, this;
  195. /*
  196.  * The Linux interpretation of the CMOS clock register contents: When the
  197.  * Update-In-Progress (UIP) flag goes from 1 to 0, the RTC registers show the
  198.  * second which has precisely just started. Waiting for this can take up to 1
  199.  * second, we timeout approximately after 2.4 seconds on a machine with
  200.  * standard 8.3 MHz ISA bus.
  201.  */
  202. spin_lock(&rtc_lock);
  203. timeout = 1000000;
  204. last = this = 0;
  205. while (timeout && last && !this) {
  206. last = this;
  207. this = CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP;
  208. timeout--;
  209. }
  210. /*
  211.  * Here we are safe to assume the registers won't change for a whole second, so
  212.  * we just go ahead and read them.
  213.  */
  214. sec = CMOS_READ(RTC_SECONDS);
  215. min = CMOS_READ(RTC_MINUTES);
  216. hour = CMOS_READ(RTC_HOURS);
  217. day = CMOS_READ(RTC_DAY_OF_MONTH);
  218. mon = CMOS_READ(RTC_MONTH);
  219. year = CMOS_READ(RTC_YEAR);
  220. spin_unlock(&rtc_lock);
  221. /*
  222.  * We know that x86-64 always uses BCD format, no need to check the config
  223.  * register.
  224.  */
  225. BCD_TO_BIN(sec);
  226. BCD_TO_BIN(min);
  227. BCD_TO_BIN(hour);
  228. BCD_TO_BIN(day);
  229. BCD_TO_BIN(mon);
  230. BCD_TO_BIN(year);
  231. /*
  232.  * This will work up to Dec 31, 2069.
  233.  */
  234. if ((year += 1900) < 1970)
  235. year += 100;
  236. return mktime(year, mon, day, hour, min, sec);
  237. }
  238. /*
  239.  * calibrate_tsc() calibrates the processor TSC in a very simple way, comparing
  240.  * it to the HPET timer of known frequency.
  241.  */
  242. #define TICK_COUNT 100000000
  243. static unsigned int __init hpet_calibrate_tsc(void)
  244. {
  245. int tsc_start, hpet_start;
  246. int tsc_now, hpet_now;
  247. unsigned long flags;
  248. __save_flags(flags);
  249. __cli();
  250. hpet_start = hpet_readl(HPET_COUNTER);
  251. rdtscl(tsc_start);
  252. do {
  253. __cli();
  254. hpet_now = hpet_readl(HPET_COUNTER);
  255. rdtscl(tsc_now);
  256. __restore_flags(flags);
  257. } while ((tsc_now - tsc_start) < TICK_COUNT && (hpet_now - hpet_start) < TICK_COUNT);
  258. return (tsc_now - tsc_start) * 1000000000L
  259. / ((hpet_now - hpet_start) * hpet_period / 1000);
  260. }
  261. /*
  262.  * pit_calibrate_tsc() uses the speaker output (channel 2) of
  263.  * the PIT. This is better than using the timer interrupt output,
  264.  * because we can read the value of the speaker with just one inb(),
  265.  * where we need three i/o operations for the interrupt channel.
  266.  * We count how many ticks the TSC does in 50 ms.
  267.  */
  268. static unsigned int __init pit_calibrate_tsc(void)
  269. {
  270. unsigned long start, end;
  271. unsigned long flags;
  272. outb((inb(0x61) & ~0x02) | 0x01, 0x61);
  273. __save_flags(flags);
  274. __cli();
  275. outb(0xb0, 0x43);
  276. outb((1193182 / (1000 / 50)) & 0xff, 0x42);
  277. outb((1193182 / (1000 / 50)) >> 8, 0x42);
  278. rdtscll(start);
  279. while ((inb(0x61) & 0x20) == 0);
  280. rdtscll(end);
  281. __restore_flags(flags);
  282. return (end - start) / 50;
  283. }
  284. static int hpet_init(void)
  285. {
  286. unsigned int cfg, id;
  287. if (!hpet.address)
  288. return -1;
  289. set_fixmap_nocache(FIX_HPET_BASE, hpet.address);
  290. /*
  291.  * Read the period, compute tick and quotient.
  292.  */
  293. id = hpet_readl(HPET_ID);
  294. if (!(id & HPET_ID_VENDOR) || !(id & HPET_ID_NUMBER) || !(id & HPET_ID_LEGSUP))
  295. return -1;
  296. hpet_period = hpet_readl(HPET_PERIOD);
  297. if (hpet_period < 100000 || hpet_period > 100000000)
  298. return -1;
  299. hpet_tick = (1000000000L * tick + hpet_period / 2) / hpet_period;
  300. /*
  301.  * Stop the timers and reset the main counter.
  302.  */
  303. cfg = hpet_readl(HPET_CFG);
  304. cfg &= ~(HPET_CFG_ENABLE | HPET_CFG_LEGACY);
  305. hpet_writel(cfg, HPET_CFG);
  306. hpet_writel(0, HPET_COUNTER);
  307. hpet_writel(0, HPET_COUNTER + 4);
  308. /*
  309.  * Set up timer 0, as periodic with first interrupt to happen at hpet_tick,
  310.  * and period also hpet_tick.
  311.  */
  312. hpet_writel(HPET_T0_ENABLE | HPET_T0_PERIODIC | HPET_T0_SETVAL | HPET_T0_32BIT, HPET_T0_CFG);
  313. hpet_writel(hpet_tick, HPET_T0_CMP);
  314. hpet_writel(hpet_tick, HPET_T0_CMP);
  315. /*
  316.  * Go!
  317.  */
  318. cfg |= HPET_CFG_ENABLE | HPET_CFG_LEGACY;
  319. hpet_writel(cfg, HPET_CFG);
  320. return 0;
  321. }
  322. void __init pit_init(void)
  323. {
  324. outb_p(0x34, 0x43); /* binary, mode 2, LSB/MSB, ch 0 */
  325. outb_p(LATCH & 0xff, 0x40); /* LSB */
  326. outb_p(LATCH >> 8, 0x40); /* MSB */
  327. }
  328. int __init time_setup(char *str)
  329. {
  330. hpet_report_lost_ticks = 1;
  331. return 1;
  332. }
  333. static struct irqaction irq0 = { timer_interrupt, SA_INTERRUPT, 0, "timer", NULL, NULL};
  334. extern void __init config_acpi_tables(void);
  335. void __init time_init(void)
  336. {
  337. xtime.tv_sec = get_cmos_time();
  338. xtime.tv_usec = 0;
  339. printk(KERN_WARNING "time.c: HPET timer not found, precise timing unavailable.n");
  340. pit_init();
  341. printk(KERN_INFO "time.c: Using 1.1931816 MHz PIT timer.n");
  342. setup_irq(0, &irq0);
  343. cpu_khz = pit_calibrate_tsc();
  344. printk(KERN_INFO "time.c: Detected %d.%03d MHz processor.n",
  345. cpu_khz / 1000, cpu_khz % 1000);
  346. hpet.ticks = cpu_khz * (1000 / HZ);
  347. rdtscll(hpet.last_tsc);
  348. }
  349. __setup("report_lost_ticks", time_setup);