time.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.time.c 1.29 12/11/01 11:40:45 trini
  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 (smp_processor_id())
  140. continue;
  141. /* We are in an interrupt, no need to save/restore flags */
  142. write_lock(&xtime_lock);
  143. tb_last_stamp = jiffy_stamp;
  144. do_timer(regs);
  145. /*
  146.  * update the rtc when needed, this should be performed on the
  147.  * right fraction of a second. Half or full second ?
  148.  * Full second works on mk48t59 clocks, others need testing.
  149.  * Note that this update is basically only used through
  150.  * the adjtimex system calls. Setting the HW clock in
  151.  * any other way is a /dev/rtc and userland business.
  152.  * This is still wrong by -0.5/+1.5 jiffies because of the
  153.  * timer interrupt resolution and possible delay, but here we
  154.  * hit a quantization limit which can only be solved by higher
  155.  * resolution timers and decoupling time management from timer
  156.  * interrupts. This is also wrong on the clocks
  157.  * which require being written at the half second boundary.
  158.  * We should have an rtc call that only sets the minutes and
  159.  * seconds like on Intel to avoid problems with non UTC clocks.
  160.  */
  161. if ( (time_status & STA_UNSYNC) == 0 &&
  162.      xtime.tv_sec - last_rtc_update >= 659 &&
  163.      abs(xtime.tv_usec - (1000000-1000000/HZ)) < 500000/HZ &&
  164.      jiffies - wall_jiffies == 1) {
  165.    if (ppc_md.set_rtc_time(xtime.tv_sec+1 + time_offset) == 0)
  166. last_rtc_update = xtime.tv_sec+1;
  167. else
  168. /* Try again one minute later */
  169. last_rtc_update += 60;
  170. }
  171. write_unlock(&xtime_lock);
  172. }
  173. if ( !disarm_decr[smp_processor_id()] )
  174. set_dec(next_dec);
  175. last_jiffy_stamp(cpu) = jiffy_stamp;
  176. #ifdef CONFIG_SMP
  177. smp_local_timer_interrupt(regs);
  178. #endif /* CONFIG_SMP */
  179. if (ppc_md.heartbeat && !ppc_md.heartbeat_count--)
  180. ppc_md.heartbeat();
  181. hardirq_exit(cpu);
  182. if (softirq_pending(cpu))
  183. do_softirq();
  184. return 1; /* lets ret_from_int know we can do checks */
  185. }
  186. /*
  187.  * This version of gettimeofday has microsecond resolution.
  188.  */
  189. void do_gettimeofday(struct timeval *tv)
  190. {
  191. unsigned long flags;
  192. unsigned delta, lost_ticks, usec, sec;
  193. read_lock_irqsave(&xtime_lock, flags);
  194. sec = xtime.tv_sec;
  195. usec = xtime.tv_usec;
  196. delta = tb_ticks_since(tb_last_stamp);
  197. #ifdef CONFIG_SMP
  198. /* As long as timebases are not in sync, gettimeofday can only
  199.  * have jiffy resolution on SMP.
  200.  */
  201. if (!smp_tb_synchronized)
  202. delta = 0;
  203. #endif /* CONFIG_SMP */
  204. lost_ticks = jiffies - wall_jiffies;
  205. read_unlock_irqrestore(&xtime_lock, flags);
  206. usec += mulhwu(tb_to_us, tb_ticks_per_jiffy * lost_ticks + delta);
  207. while (usec >= 1000000) {
  208.    sec++;
  209. usec -= 1000000;
  210. }
  211. tv->tv_sec = sec;
  212. tv->tv_usec = usec;
  213. }
  214. void do_settimeofday(struct timeval *tv)
  215. {
  216. unsigned long flags;
  217. int tb_delta, new_usec, new_sec;
  218. write_lock_irqsave(&xtime_lock, flags);
  219. /* Updating the RTC is not the job of this code. If the time is
  220.  * stepped under NTP, the RTC will be update after STA_UNSYNC
  221.  * is cleared. Tool like clock/hwclock either copy the RTC
  222.  * to the system time, in which case there is no point in writing
  223.  * to the RTC again, or write to the RTC but then they don't call
  224.  * settimeofday to perform this operation. Note also that
  225.  * we don't touch the decrementer since:
  226.  * a) it would lose timer interrupt synchronization on SMP
  227.  * (if it is working one day)
  228.  * b) it could make one jiffy spuriously shorter or longer
  229.  * which would introduce another source of uncertainty potentially
  230.  * harmful to relatively short timers.
  231.  */
  232. /* This works perfectly on SMP only if the tb are in sync but 
  233.  * guarantees an error < 1 jiffy even if they are off by eons,
  234.  * still reasonable when gettimeofday resolution is 1 jiffy.
  235.  */
  236. tb_delta = tb_ticks_since(last_jiffy_stamp(smp_processor_id()));
  237. tb_delta += (jiffies - wall_jiffies) * tb_ticks_per_jiffy;
  238. new_sec = tv->tv_sec;
  239. new_usec = tv->tv_usec - mulhwu(tb_to_us, tb_delta);
  240. while (new_usec <0) {
  241. new_sec--; 
  242. new_usec += 1000000;
  243. }
  244. xtime.tv_usec = new_usec;
  245. xtime.tv_sec = new_sec;
  246. /* In case of a large backwards jump in time with NTP, we want the 
  247.  * clock to be updated as soon as the PLL is again in lock.
  248.  */
  249. last_rtc_update = new_sec - 658;
  250. time_adjust = 0;                /* stop active adjtime() */
  251. time_status |= STA_UNSYNC;
  252. time_state = TIME_ERROR;        /* p. 24, (a) */
  253. time_maxerror = NTP_PHASE_LIMIT;
  254. time_esterror = NTP_PHASE_LIMIT;
  255. write_unlock_irqrestore(&xtime_lock, flags);
  256. }
  257. void __init time_init(void)
  258. {
  259. time_t sec, old_sec;
  260. unsigned old_stamp, stamp, elapsed;
  261. /* This function is only called on the boot processor */
  262. unsigned long flags;
  263.         if (ppc_md.time_init != NULL)
  264.                 time_offset = ppc_md.time_init();
  265. if (__USE_RTC()) {
  266. /* 601 processor: dec counts down by 128 every 128ns */
  267. tb_ticks_per_jiffy = DECREMENTER_COUNT_601;
  268. /* mulhwu_scale_factor(1000000000, 1000000) is 0x418937 */
  269. tb_to_us = 0x418937;
  270.         } else {
  271.                 ppc_md.calibrate_decr();
  272. }
  273. /* Now that the decrementer is calibrated, it can be used in case the 
  274.  * clock is stuck, but the fact that we have to handle the 601
  275.  * makes things more complex. Repeatedly read the RTC until the
  276.  * next second boundary to try to achieve some precision...
  277.  */
  278. if (ppc_md.get_rtc_time) {
  279. stamp = get_native_tbl();
  280. sec = ppc_md.get_rtc_time();
  281. elapsed = 0;
  282. do {
  283. old_stamp = stamp; 
  284. old_sec = sec;
  285. stamp = get_native_tbl();
  286. if (__USE_RTC() && stamp < old_stamp) old_stamp -= 1000000000;
  287. elapsed += stamp - old_stamp;
  288. sec = ppc_md.get_rtc_time();
  289. } while ( sec == old_sec && elapsed < 2*HZ*tb_ticks_per_jiffy);
  290. if (sec==old_sec) {
  291. printk("Warning: real time clock seems stuck!n");
  292. }
  293. write_lock_irqsave(&xtime_lock, flags);
  294. xtime.tv_sec = sec;
  295. last_jiffy_stamp(0) = tb_last_stamp = stamp;
  296. xtime.tv_usec = 0;
  297. /* No update now, we just read the time from the RTC ! */
  298. last_rtc_update = xtime.tv_sec;
  299. write_unlock_irqrestore(&xtime_lock, flags);
  300. }
  301. /* Not exact, but the timer interrupt takes care of this */
  302. set_dec(tb_ticks_per_jiffy);
  303. /* If platform provided a timezone (pmac), we correct the time
  304.  * using do_sys_settimeofday() which in turn calls warp_clock()
  305.  */
  306.         if (time_offset) {
  307.          struct timezone tz;
  308.          tz.tz_minuteswest = -time_offset / 60;
  309.          tz.tz_dsttime = 0;
  310.          do_sys_settimeofday(NULL, &tz);
  311.         }
  312. }
  313. #define FEBRUARY 2
  314. #define STARTOFTIME 1970
  315. #define SECDAY 86400L
  316. #define SECYR (SECDAY * 365)
  317. #define leapyear(year) ((year) % 4 == 0)
  318. #define days_in_year(a)  (leapyear(a) ? 366 : 365)
  319. #define days_in_month(a)  (month_days[(a) - 1])
  320. static int month_days[12] = {
  321. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
  322. };
  323. void to_tm(int tim, struct rtc_time * tm)
  324. {
  325. register int i;
  326. register long hms, day, gday;
  327. gday = day = tim / SECDAY;
  328. hms = tim % SECDAY;
  329. /* Hours, minutes, seconds are easy */
  330. tm->tm_hour = hms / 3600;
  331. tm->tm_min = (hms % 3600) / 60;
  332. tm->tm_sec = (hms % 3600) % 60;
  333. /* Number of years in days */
  334. for (i = STARTOFTIME; day >= days_in_year(i); i++)
  335. day -= days_in_year(i);
  336. tm->tm_year = i;
  337. /* Number of months in days left */
  338. if (leapyear(tm->tm_year))
  339. days_in_month(FEBRUARY) = 29;
  340. for (i = 1; day >= days_in_month(i); i++)
  341. day -= days_in_month(i);
  342. days_in_month(FEBRUARY) = 28;
  343. tm->tm_mon = i;
  344. /* Days are what is left over (+1) from all that. */
  345. tm->tm_mday = day + 1;
  346. /*
  347.  * Determine the day of week. Jan. 1, 1970 was a Thursday.
  348.  */
  349. tm->tm_wday = (gday + 4) % 7;
  350. }
  351. /* Auxiliary function to compute scaling factors */
  352. /* Actually the choice of a timebase running at 1/4 the of the bus
  353.  * frequency giving resolution of a few tens of nanoseconds is quite nice.
  354.  * It makes this computation very precise (27-28 bits typically) which
  355.  * is optimistic considering the stability of most processor clock
  356.  * oscillators and the precision with which the timebase frequency
  357.  * is measured but does not harm.
  358.  */
  359. unsigned mulhwu_scale_factor(unsigned inscale, unsigned outscale) {
  360. unsigned mlt=0, tmp, err;
  361. /* No concern for performance, it's done once: use a stupid
  362.  * but safe and compact method to find the multiplier.
  363.  */
  364. for (tmp = 1U<<31; tmp != 0; tmp >>= 1) {
  365. if (mulhwu(inscale, mlt|tmp) < outscale) mlt|=tmp;
  366. }
  367. /* We might still be off by 1 for the best approximation.
  368.  * A side effect of this is that if outscale is too large
  369.  * the returned value will be zero.
  370.  * Many corner cases have been checked and seem to work,
  371.  * some might have been forgotten in the test however.
  372.  */
  373. err = inscale*(mlt+1);
  374. if (err <= inscale/2) mlt++;
  375. return mlt;
  376. }