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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/mips/dec/time.c
  3.  *
  4.  *  Copyright (C) 1991, 1992, 1995  Linus Torvalds
  5.  *  Copyright (C) 2000  Maciej W. Rozycki
  6.  *
  7.  * This file contains the time handling details for PC-style clocks as
  8.  * found in some MIPS systems.
  9.  *
  10.  */
  11. #include <linux/types.h>
  12. #include <linux/errno.h>
  13. #include <linux/init.h>
  14. #include <linux/sched.h>
  15. #include <linux/kernel.h>
  16. #include <linux/param.h>
  17. #include <linux/string.h>
  18. #include <linux/mm.h>
  19. #include <linux/interrupt.h>
  20. #include <asm/cpu.h>
  21. #include <asm/bootinfo.h>
  22. #include <asm/mipsregs.h>
  23. #include <asm/io.h>
  24. #include <asm/irq.h>
  25. #include <asm/dec/machtype.h>
  26. #include <asm/dec/ioasic.h>
  27. #include <asm/dec/ioasic_addrs.h>
  28. #include <linux/mc146818rtc.h>
  29. #include <linux/timex.h>
  30. #include <asm/div64.h>
  31. extern void (*board_time_init)(struct irqaction *irq);
  32. extern volatile unsigned long wall_jiffies;
  33. extern rwlock_t xtime_lock;
  34. /*
  35.  * Change this if you have some constant time drift
  36.  */
  37. /* This is the value for the PC-style PICs. */
  38. /* #define USECS_PER_JIFFY (1000020/HZ) */
  39. /* This is for machines which generate the exact clock. */
  40. #define USECS_PER_JIFFY (1000000/HZ)
  41. #define USECS_PER_JIFFY_FRAC ((u32)((1000000ULL << 32) / HZ))
  42. /* Cycle counter value at the previous timer interrupt.. */
  43. static unsigned int timerhi, timerlo;
  44. /*
  45.  * Cached "1/(clocks per usec)*2^32" value.
  46.  * It has to be recalculated once each jiffy.
  47.  */
  48. static unsigned long cached_quotient = 0;
  49. /* Last jiffy when do_fast_gettimeoffset() was called. */
  50. static unsigned long last_jiffies = 0;
  51. /*
  52.  * On MIPS only R4000 and better have a cycle counter.
  53.  *
  54.  * FIXME: Does playing with the RP bit in c0_status interfere with this code?
  55.  */
  56. static unsigned long do_fast_gettimeoffset(void)
  57. {
  58. u32 count;
  59. unsigned long res, tmp;
  60. unsigned long quotient;
  61. tmp = jiffies;
  62. quotient = cached_quotient;
  63. if (last_jiffies != tmp) {
  64.     last_jiffies = tmp;
  65.     if (last_jiffies != 0) {
  66. unsigned long r0;
  67. __asm__(".set pushnt"
  68. ".set mips3nt"
  69. "lwu %0,%3nt"
  70. "dsll32 %1,%2,0nt"
  71. "or %1,%1,%0nt"
  72. "ddivu $0,%1,%4nt"
  73. "mflo %1nt"
  74. "dsll32 %0,%5,0nt"
  75. "or %0,%0,%6nt"
  76. "ddivu $0,%0,%1nt"
  77. "mflo %0nt"
  78. ".set pop"
  79. : "=&r" (quotient), "=&r" (r0)
  80. : "r" (timerhi), "m" (timerlo),
  81.   "r" (tmp), "r" (USECS_PER_JIFFY),
  82.   "r" (USECS_PER_JIFFY_FRAC));
  83. cached_quotient = quotient;
  84.     }
  85. }
  86. /* Get last timer tick in absolute kernel time */
  87. count = read_32bit_cp0_register(CP0_COUNT);
  88. /* .. relative to previous jiffy (32 bits is enough) */
  89. count -= timerlo;
  90. //printk("count: %08lx, %08lx:%08lxn", count, timerhi, timerlo);
  91. __asm__("multu %2,%3"
  92. : "=l" (tmp), "=h" (res)
  93. : "r" (count), "r" (quotient));
  94. /*
  95.  * Due to possible jiffies inconsistencies, we need to check
  96.  * the result so that we'll get a timer that is monotonic.
  97.  */
  98. if (res >= USECS_PER_JIFFY)
  99. res = USECS_PER_JIFFY - 1;
  100. return res;
  101. }
  102. static unsigned long do_ioasic_gettimeoffset(void)
  103. {
  104. u32 count;
  105. unsigned long res, tmp;
  106. unsigned long quotient;
  107. tmp = jiffies;
  108. quotient = cached_quotient;
  109. if (last_jiffies != tmp) {
  110. last_jiffies = tmp;
  111. if (last_jiffies != 0) {
  112. unsigned long r0;
  113. do_div64_32(r0, timerhi, timerlo, tmp);
  114. do_div64_32(quotient, USECS_PER_JIFFY,
  115.     USECS_PER_JIFFY_FRAC, r0);
  116. cached_quotient = quotient;
  117. }
  118. }
  119. /* Get last timer tick in absolute kernel time */
  120. count = ioasic_read(FCTR);
  121. /* .. relative to previous jiffy (32 bits is enough) */
  122. count -= timerlo;
  123. //printk("count: %08x, %08x:%08xn", count, timerhi, timerlo);
  124. __asm__("multu %2,%3"
  125. : "=l" (tmp), "=h" (res)
  126. : "r" (count), "r" (quotient));
  127. /*
  128.  * Due to possible jiffies inconsistencies, we need to check
  129.  * the result so that we'll get a timer that is monotonic.
  130.  */
  131. if (res >= USECS_PER_JIFFY)
  132.          res = USECS_PER_JIFFY - 1;
  133. return res;
  134. }
  135. /* This function must be called with interrupts disabled
  136.  * It was inspired by Steve McCanne's microtime-i386 for BSD.  -- jrs
  137.  *
  138.  * However, the pc-audio speaker driver changes the divisor so that
  139.  * it gets interrupted rather more often - it loads 64 into the
  140.  * counter rather than 11932! This has an adverse impact on
  141.  * do_gettimeoffset() -- it stops working! What is also not
  142.  * good is that the interval that our timer function gets called
  143.  * is no longer 10.0002 ms, but 9.9767 ms. To get around this
  144.  * would require using a different timing source. Maybe someone
  145.  * could use the RTC - I know that this can interrupt at frequencies
  146.  * ranging from 8192Hz to 2Hz. If I had the energy, I'd somehow fix
  147.  * it so that at startup, the timer code in sched.c would select
  148.  * using either the RTC or the 8253 timer. The decision would be
  149.  * based on whether there was any other device around that needed
  150.  * to trample on the 8253. I'd set up the RTC to interrupt at 1024 Hz,
  151.  * and then do some jiggery to have a version of do_timer that
  152.  * advanced the clock by 1/1024 s. Every time that reached over 1/100
  153.  * of a second, then do all the old code. If the time was kept correct
  154.  * then do_gettimeoffset could just return 0 - there is no low order
  155.  * divider that can be accessed.
  156.  *
  157.  * Ideally, you would be able to use the RTC for the speaker driver,
  158.  * but it appears that the speaker driver really needs interrupt more
  159.  * often than every 120 us or so.
  160.  *
  161.  * Anyway, this needs more thought....          pjsg (1993-08-28)
  162.  *
  163.  * If you are really that interested, you should be reading
  164.  * comp.protocols.time.ntp!
  165.  */
  166. #define TICK_SIZE tick
  167. static unsigned long do_slow_gettimeoffset(void)
  168. {
  169. /*
  170.  * This is a kludge until I find a way for the
  171.  * DECstations without bus cycle counter. HK
  172.  */
  173. return 0;
  174. }
  175. static unsigned long (*do_gettimeoffset) (void) = do_slow_gettimeoffset;
  176. /*
  177.  * This version of gettimeofday has near microsecond resolution.
  178.  */
  179. void do_gettimeofday(struct timeval *tv)
  180. {
  181. unsigned long flags;
  182. read_lock_irqsave(&xtime_lock, flags);
  183. *tv = xtime;
  184. tv->tv_usec += do_gettimeoffset();
  185. /*
  186.  * xtime is atomically updated in timer_bh. jiffies - wall_jiffies
  187.  * is nonzero if the timer bottom half hasnt executed yet.
  188.  */
  189. if (jiffies - wall_jiffies)
  190. tv->tv_usec += USECS_PER_JIFFY;
  191. read_unlock_irqrestore(&xtime_lock, flags);
  192. if (tv->tv_usec >= 1000000) {
  193. tv->tv_usec -= 1000000;
  194. tv->tv_sec++;
  195. }
  196. }
  197. void do_settimeofday(struct timeval *tv)
  198. {
  199. write_lock_irq(&xtime_lock);
  200. /* This is revolting. We need to set the xtime.tv_usec
  201.  * correctly. However, the value in this location is
  202.  * is value at the last tick.
  203.  * Discover what correction gettimeofday
  204.  * would have done, and then undo it!
  205.  */
  206. tv->tv_usec -= do_gettimeoffset();
  207. if (tv->tv_usec < 0) {
  208. tv->tv_usec += 1000000;
  209. tv->tv_sec--;
  210. }
  211. xtime = *tv;
  212. time_adjust = 0; /* stop active adjtime() */
  213. time_status |= STA_UNSYNC;
  214. time_maxerror = NTP_PHASE_LIMIT;
  215. time_esterror = NTP_PHASE_LIMIT;
  216. write_unlock_irq(&xtime_lock);
  217. }
  218. /*
  219.  * In order to set the CMOS clock precisely, set_rtc_mmss has to be
  220.  * called 500 ms after the second nowtime has started, because when
  221.  * nowtime is written into the registers of the CMOS clock, it will
  222.  * jump to the next second precisely 500 ms later. Check the Motorola
  223.  * MC146818A or Dallas DS12887 data sheet for details.
  224.  */
  225. static int set_rtc_mmss(unsigned long nowtime)
  226. {
  227. int retval = 0;
  228. int real_seconds, real_minutes, cmos_minutes;
  229. unsigned char save_control, save_freq_select;
  230. save_control = CMOS_READ(RTC_CONTROL); /* tell the clock it's being set */
  231. CMOS_WRITE((save_control | RTC_SET), RTC_CONTROL);
  232. save_freq_select = CMOS_READ(RTC_FREQ_SELECT); /* stop and reset prescaler */
  233. CMOS_WRITE((save_freq_select | RTC_DIV_RESET2), RTC_FREQ_SELECT);
  234. cmos_minutes = CMOS_READ(RTC_MINUTES);
  235. if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
  236. BCD_TO_BIN(cmos_minutes);
  237. /*
  238.  * since we're only adjusting minutes and seconds,
  239.  * don't interfere with hour overflow. This avoids
  240.  * messing with unknown time zones but requires your
  241.  * RTC not to be off by more than 15 minutes
  242.  */
  243. real_seconds = nowtime % 60;
  244. real_minutes = nowtime / 60;
  245. if (((abs(real_minutes - cmos_minutes) + 15) / 30) & 1)
  246. real_minutes += 30; /* correct for half hour time zone */
  247. real_minutes %= 60;
  248. if (abs(real_minutes - cmos_minutes) < 30) {
  249. if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  250. BIN_TO_BCD(real_seconds);
  251. BIN_TO_BCD(real_minutes);
  252. }
  253. CMOS_WRITE(real_seconds, RTC_SECONDS);
  254. CMOS_WRITE(real_minutes, RTC_MINUTES);
  255. } else {
  256. printk(KERN_WARNING
  257.        "set_rtc_mmss: can't update from %d to %dn",
  258.        cmos_minutes, real_minutes);
  259. retval = -1;
  260. }
  261. /* The following flags have to be released exactly in this order,
  262.  * otherwise the DS12887 (popular MC146818A clone with integrated
  263.  * battery and quartz) will not reset the oscillator and will not
  264.  * update precisely 500 ms later. You won't find this mentioned in
  265.  * the Dallas Semiconductor data sheets, but who believes data
  266.  * sheets anyway ...                           -- Markus Kuhn
  267.  */
  268. CMOS_WRITE(save_control, RTC_CONTROL);
  269. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  270. return retval;
  271. }
  272. /* last time the cmos clock got updated */
  273. static long last_rtc_update;
  274. /*
  275.  * timer_interrupt() needs to keep up the real-time clock,
  276.  * as well as call the "do_timer()" routine every clocktick
  277.  */
  278. static void inline
  279. timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  280. {
  281. volatile unsigned char dummy;
  282. dummy = CMOS_READ(RTC_REG_C); /* ACK RTC Interrupt */
  283. if (!user_mode(regs)) {
  284. if (prof_buffer && current->pid) {
  285. extern int _stext;
  286. unsigned long pc = regs->cp0_epc;
  287. pc -= (unsigned long) &_stext;
  288. pc >>= prof_shift;
  289. /*
  290.  * Dont ignore out-of-bounds pc values silently,
  291.  * put them into the last histogram slot, so if
  292.  * present, they will show up as a sharp peak.
  293.  */
  294. if (pc > prof_len - 1)
  295. pc = prof_len - 1;
  296. atomic_inc((atomic_t *) & prof_buffer[pc]);
  297. }
  298. }
  299. do_timer(regs);
  300. /*
  301.  * If we have an externally synchronized Linux clock, then update
  302.  * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be
  303.  * called as close as possible to 500 ms before the new second starts.
  304.  */
  305. read_lock(&xtime_lock);
  306. if ((time_status & STA_UNSYNC) == 0
  307.     && xtime.tv_sec > last_rtc_update + 660
  308.     && xtime.tv_usec >= 500000 - tick / 2
  309.     && xtime.tv_usec <= 500000 + tick / 2) {
  310. if (set_rtc_mmss(xtime.tv_sec) == 0)
  311. last_rtc_update = xtime.tv_sec;
  312. else
  313. /* do it again in 60 s */
  314. last_rtc_update = xtime.tv_sec - 600;
  315. }
  316. /* As we return to user mode fire off the other CPU schedulers.. this is
  317.    basically because we don't yet share IRQ's around. This message is
  318.    rigged to be safe on the 386 - basically it's a hack, so don't look
  319.    closely for now.. */
  320. /*smp_message_pass(MSG_ALL_BUT_SELF, MSG_RESCHEDULE, 0L, 0); */
  321. read_unlock(&xtime_lock);
  322. }
  323. static void r4k_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  324. {
  325. unsigned int count;
  326. /*
  327.  * The cycle counter is only 32 bit which is good for about
  328.  * a minute at current count rates of upto 150MHz or so.
  329.  */
  330. count = read_32bit_cp0_register(CP0_COUNT);
  331. timerhi += (count < timerlo); /* Wrap around */
  332. timerlo = count;
  333. if (jiffies == ~0) {
  334. /*
  335.  * If jiffies is to overflow in this timer_interrupt we must
  336.  * update the timer[hi]/[lo] to make do_fast_gettimeoffset()
  337.  * quotient calc still valid. -arca
  338.  */
  339. write_32bit_cp0_register(CP0_COUNT, 0);
  340. timerhi = timerlo = 0;
  341. }
  342. timer_interrupt(irq, dev_id, regs);
  343. }
  344. static void ioasic_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  345. {
  346. unsigned int count;
  347. /*
  348.  * The free-running counter is 32 bit which is good for about
  349.  * 2 minutes, 50 seconds at possible count rates of upto 25MHz.
  350.  */
  351. count = ioasic_read(FCTR);
  352. timerhi += (count < timerlo); /* Wrap around */
  353. timerlo = count;
  354. if (jiffies == ~0) {
  355. /*
  356.  * If jiffies is to overflow in this timer_interrupt we must
  357.  * update the timer[hi]/[lo] to make do_fast_gettimeoffset()
  358.  * quotient calc still valid. -arca
  359.  */
  360. ioasic_write(FCTR, 0);
  361. timerhi = timerlo = 0;
  362. }
  363. timer_interrupt(irq, dev_id, regs);
  364. }
  365. struct irqaction irq0 = {timer_interrupt, SA_INTERRUPT, 0,
  366.  "timer", NULL, NULL};
  367. void __init time_init(void)
  368. {
  369. unsigned int year, mon, day, hour, min, sec, real_year;
  370. int i;
  371. /* The Linux interpretation of the CMOS clock register contents:
  372.  * When the Update-In-Progress (UIP) flag goes from 1 to 0, the
  373.  * RTC registers show the second which has precisely just started.
  374.  * Let's hope other operating systems interpret the RTC the same way.
  375.  */
  376. /* read RTC exactly on falling edge of update flag */
  377. for (i = 0; i < 1000000; i++) /* may take up to 1 second... */
  378. if (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP)
  379. break;
  380. for (i = 0; i < 1000000; i++) /* must try at least 2.228 ms */
  381. if (!(CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP))
  382. break;
  383. do { /* Isn't this overkill ? UIP above should guarantee consistency */
  384. sec = CMOS_READ(RTC_SECONDS);
  385. min = CMOS_READ(RTC_MINUTES);
  386. hour = CMOS_READ(RTC_HOURS);
  387. day = CMOS_READ(RTC_DAY_OF_MONTH);
  388. mon = CMOS_READ(RTC_MONTH);
  389. year = CMOS_READ(RTC_YEAR);
  390. } while (sec != CMOS_READ(RTC_SECONDS));
  391. if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  392. BCD_TO_BIN(sec);
  393. BCD_TO_BIN(min);
  394. BCD_TO_BIN(hour);
  395. BCD_TO_BIN(day);
  396. BCD_TO_BIN(mon);
  397. BCD_TO_BIN(year);
  398. }
  399. /*
  400.  * The PROM will reset the year to either '72 or '73.
  401.  * Therefore we store the real year separately, in one
  402.  * of unused BBU RAM locations.
  403.  */
  404. real_year = CMOS_READ(RTC_DEC_YEAR);
  405. year += real_year - 72 + 2000;
  406. write_lock_irq(&xtime_lock);
  407. xtime.tv_sec = mktime(year, mon, day, hour, min, sec);
  408. xtime.tv_usec = 0;
  409. write_unlock_irq(&xtime_lock);
  410. if (mips_cpu.options & MIPS_CPU_COUNTER) {
  411. write_32bit_cp0_register(CP0_COUNT, 0);
  412. do_gettimeoffset = do_fast_gettimeoffset;
  413. irq0.handler = r4k_timer_interrupt;
  414. } else if (IOASIC) {
  415. ioasic_write(FCTR, 0);
  416. do_gettimeoffset = do_ioasic_gettimeoffset;
  417. irq0.handler = ioasic_timer_interrupt;
  418.         }
  419. board_time_init(&irq0);
  420. }