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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/kernel/time.c
  3.  *
  4.  *  Copyright (C) 1991, 1992, 1995  Linus Torvalds
  5.  *
  6.  * This file contains the m68k-specific time handling details.
  7.  * Most of the stuff is located in the machine specific files.
  8.  *
  9.  * 1997-09-10 Updated NTP code according to technical memorandum Jan '96
  10.  * "A Kernel Model for Precision Timekeeping" by Dave Mills
  11.  */
  12. #include <linux/config.h> /* CONFIG_HEARTBEAT */
  13. #include <linux/errno.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 <asm/machdep.h>
  20. #include <asm/io.h>
  21. #include <linux/timex.h>
  22. static inline int set_rtc_mmss(unsigned long nowtime)
  23. {
  24.   if (mach_set_clock_mmss)
  25.     return mach_set_clock_mmss (nowtime);
  26.   return -1;
  27. }
  28. static inline void do_profile (unsigned long pc)
  29. {
  30. if (prof_buffer && current->pid) {
  31. extern int _stext;
  32. pc -= (unsigned long) &_stext;
  33. pc >>= prof_shift;
  34. if (pc < prof_len)
  35. ++prof_buffer[pc];
  36. else
  37. /*
  38.  * Don't ignore out-of-bounds PC values silently,
  39.  * put them into the last histogram slot, so if
  40.  * present, they will show up as a sharp peak.
  41.  */
  42. ++prof_buffer[prof_len-1];
  43. }
  44. }
  45. /*
  46.  * timer_interrupt() needs to keep up the real-time clock,
  47.  * as well as call the "do_timer()" routine every clocktick
  48.  */
  49. static void timer_interrupt(int irq, void *dummy, struct pt_regs * regs)
  50. {
  51. /* last time the cmos clock got updated */
  52. static long last_rtc_update=0;
  53. do_timer(regs);
  54. if (!user_mode(regs))
  55. do_profile(regs->pc);
  56. /*
  57.  * If we have an externally synchronized Linux clock, then update
  58.  * CMOS clock accordingly every ~11 minutes. Set_rtc_mmss() has to be
  59.  * called as close as possible to 500 ms before the new second starts.
  60.  */
  61. if ((time_status & STA_UNSYNC) == 0 &&
  62.     xtime.tv_sec > last_rtc_update + 660 &&
  63.     xtime.tv_usec >= 500000 - ((unsigned) tick) / 2 &&
  64.     xtime.tv_usec <= 500000 + ((unsigned) tick) / 2) {
  65.   if (set_rtc_mmss(xtime.tv_sec) == 0)
  66.     last_rtc_update = xtime.tv_sec;
  67.   else
  68.     last_rtc_update = xtime.tv_sec - 600; /* do it again in 60 s */
  69. }
  70. #ifdef CONFIG_HEARTBEAT
  71. /* use power LED as a heartbeat instead -- much more useful
  72.    for debugging -- based on the version for PReP by Cort */
  73. /* acts like an actual heart beat -- ie thump-thump-pause... */
  74. if (mach_heartbeat) {
  75.     static unsigned cnt = 0, period = 0, dist = 0;
  76.     if (cnt == 0 || cnt == dist)
  77. mach_heartbeat( 1 );
  78.     else if (cnt == 7 || cnt == dist+7)
  79. mach_heartbeat( 0 );
  80.     if (++cnt > period) {
  81. cnt = 0;
  82. /* The hyperbolic function below modifies the heartbeat period
  83.  * length in dependency of the current (5min) load. It goes
  84.  * through the points f(0)=126, f(1)=86, f(5)=51,
  85.  * f(inf)->30. */
  86. period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
  87. dist = period / 4;
  88.     }
  89. }
  90. #endif /* CONFIG_HEARTBEAT */
  91. }
  92. void time_init(void)
  93. {
  94. unsigned int year, mon, day, hour, min, sec;
  95. extern void arch_gettod(int *year, int *mon, int *day, int *hour,
  96. int *min, int *sec);
  97. arch_gettod (&year, &mon, &day, &hour, &min, &sec);
  98. if ((year += 1900) < 1970)
  99. year += 100;
  100. xtime.tv_sec = mktime(year, mon, day, hour, min, sec);
  101. xtime.tv_usec = 0;
  102. mach_sched_init(timer_interrupt);
  103. }
  104. extern rwlock_t xtime_lock;
  105. /*
  106.  * This version of gettimeofday has near microsecond resolution.
  107.  */
  108. void do_gettimeofday(struct timeval *tv)
  109. {
  110. extern unsigned long wall_jiffies;
  111. unsigned long flags;
  112. unsigned long usec, sec, lost;
  113. read_lock_irqsave(&xtime_lock, flags);
  114. usec = mach_gettimeoffset();
  115. lost = jiffies - wall_jiffies;
  116. if (lost)
  117. usec += lost * (1000000/HZ);
  118. sec = xtime.tv_sec;
  119. usec += xtime.tv_usec;
  120. read_unlock_irqrestore(&xtime_lock, flags);
  121. while (usec >= 1000000) {
  122. usec -= 1000000;
  123. sec++;
  124. }
  125. tv->tv_sec = sec;
  126. tv->tv_usec = usec;
  127. }
  128. void do_settimeofday(struct timeval *tv)
  129. {
  130. write_lock_irq(&xtime_lock);
  131. /* This is revolting. We need to set the xtime.tv_usec
  132.  * correctly. However, the value in this location is
  133.  * is value at the last tick.
  134.  * Discover what correction gettimeofday
  135.  * would have done, and then undo it!
  136.  */
  137. tv->tv_usec -= mach_gettimeoffset();
  138. while (tv->tv_usec < 0) {
  139. tv->tv_usec += 1000000;
  140. tv->tv_sec--;
  141. }
  142. xtime = *tv;
  143. time_adjust = 0; /* stop active adjtime() */
  144. time_status |= STA_UNSYNC;
  145. time_maxerror = NTP_PHASE_LIMIT;
  146. time_esterror = NTP_PHASE_LIMIT;
  147. write_unlock_irq(&xtime_lock);
  148. }