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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  * Common time routines among all ppc machines.
  6.  *
  7.  * Written by Cort Dougan (cort@cs.nmt.edu) to merge
  8.  * Paul Mackerras' version and mine for PReP and Pmac.
  9.  * MPC8xx/MBX changes by Dan Malek (dmalek@jlc.net).
  10.  *
  11.  * First round of bugfixes by Gabriel Paubert (paubert@iram.es)
  12.  * to make clock more stable (2.4.0-test5). The only thing
  13.  * that this code assumes is that the timebases have been synchronized
  14.  * by firmware on SMP and are never stopped (never do sleep
  15.  * on SMP then, nap and doze are OK).
  16.  *
  17.  * TODO (not necessarily in this file):
  18.  * - improve precision and reproducibility of timebase frequency
  19.  * measurement at boot time.
  20.  * - get rid of xtime_lock for gettimeofday (generic kernel problem
  21.  * to be implemented on all architectures for SMP scalability and
  22.  * eventually implementing gettimeofday without entering the kernel).
  23.  * - put all time/clock related variables in a single structure
  24.  * to minimize number of cache lines touched by gettimeofday()
  25.  * - for astronomical applications: add a new function to get
  26.  * non ambiguous timestamps even around leap seconds. This needs
  27.  * a new timestamp format and a good name.
  28.  *
  29.  *
  30.  * The following comment is partially obsolete (at least the long wait
  31.  * is no more a valid reason):
  32.  * Since the MPC8xx has a programmable interrupt timer, I decided to
  33.  * use that rather than the decrementer.  Two reasons: 1.) the clock
  34.  * frequency is low, causing 2.) a long wait in the timer interrupt
  35.  * while ((d = get_dec()) == dval)
  36.  * loop.  The MPC8xx can be driven from a variety of input clocks,
  37.  * so a number of assumptions have been made here because the kernel
  38.  * parameter HZ is a constant.  We assume (correctly, today :-) that
  39.  * the MPC8xx on the MBX board is driven from a 32.768 kHz crystal.
  40.  * This is then divided by 4, providing a 8192 Hz clock into the PIT.
  41.  * Since it is not possible to get a nice 100 Hz clock out of this, without
  42.  * creating a software PLL, I have set HZ to 128.  -- Dan
  43.  *
  44.  * 1997-09-10  Updated NTP code according to technical memorandum Jan '96
  45.  *             "A Kernel Model for Precision Timekeeping" by Dave Mills
  46.  */
  47. #include <linux/config.h>
  48. #include <linux/errno.h>
  49. #include <linux/sched.h>
  50. #include <linux/kernel.h>
  51. #include <linux/param.h>
  52. #include <linux/string.h>
  53. #include <linux/mm.h>
  54. #include <linux/module.h>
  55. #include <linux/interrupt.h>
  56. #include <linux/timex.h>
  57. #include <linux/kernel_stat.h>
  58. #include <linux/mc146818rtc.h>
  59. #include <linux/time.h>
  60. #include <linux/init.h>
  61. #include <asm/segment.h>
  62. #include <asm/io.h>
  63. #include <asm/processor.h>
  64. #include <asm/nvram.h>
  65. #include <asm/cache.h>
  66. #include <asm/8xx_immap.h>
  67. #include <asm/machdep.h>
  68. #include <asm/time.h>
  69. unsigned long disarm_decr[NR_CPUS];
  70. extern int do_sys_settimeofday(struct timeval *tv, struct timezone *tz);
  71. /* keep track of when we need to update the rtc */
  72. time_t last_rtc_update;
  73. extern rwlock_t xtime_lock;
  74. /* The decrementer counts down by 128 every 128ns on a 601. */
  75. #define DECREMENTER_COUNT_601 (1000000000 / HZ)
  76. unsigned tb_ticks_per_jiffy;
  77. unsigned tb_to_us;
  78. unsigned tb_last_stamp;
  79. extern unsigned long wall_jiffies;
  80. static long time_offset;
  81. spinlock_t rtc_lock = SPIN_LOCK_UNLOCKED;
  82. EXPORT_SYMBOL(rtc_lock);
  83. /* Timer interrupt helper function */
  84. static inline int tb_delta(unsigned *jiffy_stamp) {
  85. int delta;
  86. if (__USE_RTC()) {
  87. delta = get_rtcl();
  88. if (delta < *jiffy_stamp) *jiffy_stamp -= 1000000000;
  89. delta -= *jiffy_stamp;
  90. } else {
  91. delta = get_tbl() - *jiffy_stamp;
  92. }
  93. return delta;
  94. }
  95. extern unsigned long prof_cpu_mask;
  96. extern unsigned int * prof_buffer;
  97. extern unsigned long prof_len;
  98. extern unsigned long prof_shift;
  99. extern char _stext;
  100. static inline void ppc_do_profile (unsigned long nip)
  101. {
  102. if (!prof_buffer)
  103. return;
  104. /*
  105.  * Only measure the CPUs specified by /proc/irq/prof_cpu_mask.
  106.  * (default is all CPUs.)
  107.  */
  108. if (!((1<<smp_processor_id()) & prof_cpu_mask))
  109. return;
  110. nip -= (unsigned long) &_stext;
  111. nip >>= prof_shift;
  112. /*
  113.  * Don't ignore out-of-bounds EIP values silently,
  114.  * put them into the last histogram slot, so if
  115.  * present, they will show up as a sharp peak.
  116.  */
  117. if (nip > prof_len-1)
  118. nip = prof_len-1;
  119. atomic_inc((atomic_t *)&prof_buffer[nip]);
  120. }
  121. /*
  122.  * timer_interrupt - gets called when the decrementer overflows,
  123.  * with interrupts disabled.
  124.  * We set it up to overflow again in 1/HZ seconds.
  125.  */
  126. int timer_interrupt(struct pt_regs * regs)
  127. {
  128. int next_dec;
  129. unsigned long cpu = smp_processor_id();
  130. unsigned jiffy_stamp = last_jiffy_stamp(cpu);
  131. extern void do_IRQ(struct pt_regs *);
  132. if (atomic_read(&ppc_n_lost_interrupts) != 0)
  133. do_IRQ(regs);
  134. hardirq_enter(cpu);
  135. while ((next_dec = tb_ticks_per_jiffy - tb_delta(&jiffy_stamp)) < 0) {
  136. jiffy_stamp += tb_ticks_per_jiffy;
  137. if (!user_mode(regs))
  138. ppc_do_profile(instruction_pointer(regs));
  139. if (unlikely(!heartbeat_count(cpu)--) 
  140. && heartbeat_reset(cpu)) {
  141. ppc_md.heartbeat();
  142. heartbeat_count(cpu) = heartbeat_reset(cpu);
  143. }
  144.    if (cpu)
  145. continue;
  146. /* We are in an interrupt, no need to save/restore flags */
  147. write_lock(&xtime_lock);
  148. tb_last_stamp = jiffy_stamp;
  149. do_timer(regs);
  150. /*
  151.  * update the rtc when needed, this should be performed on the
  152.  * right fraction of a second. Half or full second ?
  153.  * Full second works on mk48t59 clocks, others need testing.
  154.  * Note that this update is basically only used through
  155.  * the adjtimex system calls. Setting the HW clock in
  156.  * any other way is a /dev/rtc and userland business.
  157.  * This is still wrong by -0.5/+1.5 jiffies because of the
  158.  * timer interrupt resolution and possible delay, but here we
  159.  * hit a quantization limit which can only be solved by higher
  160.  * resolution timers and decoupling time management from timer
  161.  * interrupts. This is also wrong on the clocks
  162.  * which require being written at the half second boundary.
  163.  * We should have an rtc call that only sets the minutes and
  164.  * seconds like on Intel to avoid problems with non UTC clocks.
  165.  */
  166. if ( (time_status & STA_UNSYNC) == 0 &&
  167.      xtime.tv_sec - last_rtc_update >= 659 &&
  168.      abs(xtime.tv_usec - (1000000-1000000/HZ)) < 500000/HZ &&
  169.      jiffies - wall_jiffies == 1) {
  170.    if (ppc_md.set_rtc_time(xtime.tv_sec+1 + time_offset) == 0)
  171. last_rtc_update = xtime.tv_sec+1;
  172. else
  173. /* Try again one minute later */
  174. last_rtc_update += 60;
  175. }
  176. write_unlock(&xtime_lock);
  177. }
  178. if (!disarm_decr[cpu])
  179. set_dec(next_dec);
  180. last_jiffy_stamp(cpu) = jiffy_stamp;
  181. #ifdef CONFIG_SMP
  182. smp_local_timer_interrupt(regs);
  183. #endif /* CONFIG_SMP */
  184. hardirq_exit(cpu);
  185. if (softirq_pending(cpu))
  186. do_softirq();
  187. return 1; /* lets ret_from_int know we can do checks */
  188. }
  189. /*
  190.  * This version of gettimeofday has microsecond resolution.
  191.  */
  192. void do_gettimeofday(struct timeval *tv)
  193. {
  194. unsigned long flags;
  195. unsigned delta, lost_ticks, usec, sec;
  196. read_lock_irqsave(&xtime_lock, flags);
  197. sec = xtime.tv_sec;
  198. usec = xtime.tv_usec;
  199. delta = tb_ticks_since(tb_last_stamp);
  200. #ifdef CONFIG_SMP
  201. /* As long as timebases are not in sync, gettimeofday can only
  202.  * have jiffy resolution on SMP.
  203.  */
  204. if (!smp_tb_synchronized)
  205. delta = 0;
  206. #endif /* CONFIG_SMP */
  207. lost_ticks = jiffies - wall_jiffies;
  208. read_unlock_irqrestore(&xtime_lock, flags);
  209. usec += mulhwu(tb_to_us, tb_ticks_per_jiffy * lost_ticks + delta);
  210. while (usec >= 1000000) {
  211.    sec++;
  212. usec -= 1000000;
  213. }
  214. tv->tv_sec = sec;
  215. tv->tv_usec = usec;
  216. }
  217. void do_settimeofday(struct timeval *tv)
  218. {
  219. unsigned long flags;
  220. int tb_delta, new_usec, new_sec;
  221. write_lock_irqsave(&xtime_lock, flags);
  222. /* Updating the RTC is not the job of this code. If the time is
  223.  * stepped under NTP, the RTC will be update after STA_UNSYNC
  224.  * is cleared. Tool like clock/hwclock either copy the RTC
  225.  * to the system time, in which case there is no point in writing
  226.  * to the RTC again, or write to the RTC but then they don't call
  227.  * settimeofday to perform this operation. Note also that
  228.  * we don't touch the decrementer since:
  229.  * a) it would lose timer interrupt synchronization on SMP
  230.  * (if it is working one day)
  231.  * b) it could make one jiffy spuriously shorter or longer
  232.  * which would introduce another source of uncertainty potentially
  233.  * harmful to relatively short timers.
  234.  */
  235. /* This works perfectly on SMP only if the tb are in sync but 
  236.  * guarantees an error < 1 jiffy even if they are off by eons,
  237.  * still reasonable when gettimeofday resolution is 1 jiffy.
  238.  */
  239. tb_delta = tb_ticks_since(last_jiffy_stamp(smp_processor_id()));
  240. tb_delta += (jiffies - wall_jiffies) * tb_ticks_per_jiffy;
  241. new_sec = tv->tv_sec;
  242. new_usec = tv->tv_usec - mulhwu(tb_to_us, tb_delta);
  243. while (new_usec <0) {
  244. new_sec--; 
  245. new_usec += 1000000;
  246. }
  247. xtime.tv_usec = new_usec;
  248. xtime.tv_sec = new_sec;
  249. /* In case of a large backwards jump in time with NTP, we want the 
  250.  * clock to be updated as soon as the PLL is again in lock.
  251.  */
  252. last_rtc_update = new_sec - 658;
  253. time_adjust = 0;                /* stop active adjtime() */
  254. time_status |= STA_UNSYNC;
  255. time_state = TIME_ERROR;        /* p. 24, (a) */
  256. time_maxerror = NTP_PHASE_LIMIT;
  257. time_esterror = NTP_PHASE_LIMIT;
  258. write_unlock_irqrestore(&xtime_lock, flags);
  259. }
  260. void __init time_init(void)
  261. {
  262. time_t sec, old_sec;
  263. unsigned old_stamp, stamp, elapsed;
  264. /* This function is only called on the boot processor */
  265. unsigned long flags;
  266.         if (ppc_md.time_init != NULL)
  267.                 time_offset = ppc_md.time_init();
  268. if (__USE_RTC()) {
  269. /* 601 processor: dec counts down by 128 every 128ns */
  270. tb_ticks_per_jiffy = DECREMENTER_COUNT_601;
  271. /* mulhwu_scale_factor(1000000000, 1000000) is 0x418937 */
  272. tb_to_us = 0x418937;
  273.         } else {
  274.                 ppc_md.calibrate_decr();
  275. }
  276. /* Now that the decrementer is calibrated, it can be used in case the 
  277.  * clock is stuck, but the fact that we have to handle the 601
  278.  * makes things more complex. Repeatedly read the RTC until the
  279.  * next second boundary to try to achieve some precision...
  280.  */
  281. if (ppc_md.get_rtc_time) {
  282. stamp = get_native_tbl();
  283. sec = ppc_md.get_rtc_time();
  284. elapsed = 0;
  285. do {
  286. old_stamp = stamp; 
  287. old_sec = sec;
  288. stamp = get_native_tbl();
  289. if (__USE_RTC() && stamp < old_stamp) old_stamp -= 1000000000;
  290. elapsed += stamp - old_stamp;
  291. sec = ppc_md.get_rtc_time();
  292. } while ( sec == old_sec && elapsed < 2*HZ*tb_ticks_per_jiffy);
  293. if (sec==old_sec) {
  294. printk("Warning: real time clock seems stuck!n");
  295. }
  296. write_lock_irqsave(&xtime_lock, flags);
  297. xtime.tv_sec = sec;
  298. last_jiffy_stamp(0) = tb_last_stamp = stamp;
  299. xtime.tv_usec = 0;
  300. /* No update now, we just read the time from the RTC ! */
  301. last_rtc_update = xtime.tv_sec;
  302. write_unlock_irqrestore(&xtime_lock, flags);
  303. }
  304. /* Not exact, but the timer interrupt takes care of this */
  305. set_dec(tb_ticks_per_jiffy);
  306. /* If platform provided a timezone (pmac), we correct the time
  307.  * using do_sys_settimeofday() which in turn calls warp_clock()
  308.  */
  309.         if (time_offset) {
  310.          struct timezone tz;
  311.          tz.tz_minuteswest = -time_offset / 60;
  312.          tz.tz_dsttime = 0;
  313.          do_sys_settimeofday(NULL, &tz);
  314.         }
  315. }
  316. #define FEBRUARY 2
  317. #define STARTOFTIME 1970
  318. #define SECDAY 86400L
  319. #define SECYR (SECDAY * 365)
  320. #define leapyear(y) ((!(y % 4) && (y % 100)) || !(y % 400))
  321. #define days_in_year(a)  (leapyear(a) ? 366 : 365)
  322. #define days_in_month(a)  (month_days[(a) - 1])
  323. static int month_days[12] = {
  324. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
  325. };
  326. void to_tm(int tim, struct rtc_time * tm)
  327. {
  328. register int i;
  329. register long hms, day, gday;
  330. gday = day = tim / SECDAY;
  331. hms = tim % SECDAY;
  332. /* Hours, minutes, seconds are easy */
  333. tm->tm_hour = hms / 3600;
  334. tm->tm_min = (hms % 3600) / 60;
  335. tm->tm_sec = (hms % 3600) % 60;
  336. /* Number of years in days */
  337. for (i = STARTOFTIME; day >= days_in_year(i); i++)
  338. day -= days_in_year(i);
  339. tm->tm_year = i;
  340. /* Number of months in days left */
  341. if (leapyear(tm->tm_year))
  342. days_in_month(FEBRUARY) = 29;
  343. for (i = 1; day >= days_in_month(i); i++)
  344. day -= days_in_month(i);
  345. days_in_month(FEBRUARY) = 28;
  346. tm->tm_mon = i;
  347. /* Days are what is left over (+1) from all that. */
  348. tm->tm_mday = day + 1;
  349. /*
  350.  * Determine the day of week. Jan. 1, 1970 was a Thursday.
  351.  */
  352. tm->tm_wday = (gday + 4) % 7;
  353. }
  354. /* Auxiliary function to compute scaling factors */
  355. /* Actually the choice of a timebase running at 1/4 the of the bus
  356.  * frequency giving resolution of a few tens of nanoseconds is quite nice.
  357.  * It makes this computation very precise (27-28 bits typically) which
  358.  * is optimistic considering the stability of most processor clock
  359.  * oscillators and the precision with which the timebase frequency
  360.  * is measured but does not harm.
  361.  */
  362. unsigned mulhwu_scale_factor(unsigned inscale, unsigned outscale) {
  363. unsigned mlt=0, tmp, err;
  364. /* No concern for performance, it's done once: use a stupid
  365.  * but safe and compact method to find the multiplier.
  366.  */
  367. for (tmp = 1U<<31; tmp != 0; tmp >>= 1) {
  368. if (mulhwu(inscale, mlt|tmp) < outscale) mlt|=tmp;
  369. }
  370. /* We might still be off by 1 for the best approximation.
  371.  * A side effect of this is that if outscale is too large
  372.  * the returned value will be zero.
  373.  * Many corner cases have been checked and seem to work,
  374.  * some might have been forgotten in the test however.
  375.  */
  376. err = inscale*(mlt+1);
  377. if (err <= inscale/2) mlt++;
  378. return mlt;
  379. }