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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  4.  *
  5.  * Common time service routines for MIPS machines. See 
  6.  * Documents/MIPS/README.txt. 
  7.  *
  8.  * This program is free software; you can redistribute  it and/or modify it
  9.  * under  the terms of  the GNU General  Public License as published by the
  10.  * Free Software Foundation;  either version 2 of the  License, or (at your
  11.  * option) any later version.
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/types.h>
  15. #include <linux/kernel.h>
  16. #include <linux/init.h>
  17. #include <linux/sched.h>
  18. #include <linux/param.h>
  19. #include <linux/time.h>
  20. #include <linux/smp.h>
  21. #include <linux/kernel_stat.h>
  22. #include <linux/spinlock.h>
  23. #include <linux/interrupt.h>
  24. #include <asm/bootinfo.h>
  25. #include <asm/cpu.h>
  26. #include <asm/time.h>
  27. #include <asm/hardirq.h>
  28. #include <asm/div64.h>
  29. /* This is for machines which generate the exact clock. */
  30. #define USECS_PER_JIFFY (1000000/HZ)
  31. #define USECS_PER_JIFFY_FRAC ((1000000ULL << 32) / HZ & 0xffffffff)
  32. /*
  33.  * forward reference
  34.  */
  35. extern rwlock_t xtime_lock;
  36. extern volatile unsigned long wall_jiffies;
  37. /*
  38.  * By default we provide the null RTC ops
  39.  */
  40. static unsigned long null_rtc_get_time(void)
  41. {
  42. return mktime(2000, 1, 1, 0, 0, 0);
  43. }
  44. static int null_rtc_set_time(unsigned long sec)
  45. {
  46. return 0;
  47. }
  48. unsigned long (*rtc_get_time)(void) = null_rtc_get_time;
  49. int (*rtc_set_time)(unsigned long) = null_rtc_set_time;
  50. /*
  51.  * timeofday services, for syscalls.
  52.  */
  53. void do_gettimeofday(struct timeval *tv)
  54. {
  55. unsigned long flags;
  56. read_lock_irqsave (&xtime_lock, flags);
  57. *tv = xtime;
  58. tv->tv_usec += do_gettimeoffset();
  59. /*
  60.  * xtime is atomically updated in timer_bh. jiffies - wall_jiffies
  61.  * is nonzero if the timer bottom half hasnt executed yet.
  62.  */
  63. if (jiffies - wall_jiffies)
  64. tv->tv_usec += USECS_PER_JIFFY;
  65. read_unlock_irqrestore (&xtime_lock, flags);
  66. if (tv->tv_usec >= 1000000) {
  67. tv->tv_usec -= 1000000;
  68. tv->tv_sec++;
  69. }
  70. }
  71. void do_settimeofday(struct timeval *tv)
  72. {
  73. write_lock_irq (&xtime_lock);
  74. /* This is revolting. We need to set the xtime.tv_usec
  75.  * correctly. However, the value in this location is
  76.  * is value at the last tick.
  77.  * Discover what correction gettimeofday
  78.  * would have done, and then undo it!
  79.  */
  80. tv->tv_usec -= do_gettimeoffset();
  81. if (tv->tv_usec < 0) {
  82. tv->tv_usec += 1000000;
  83. tv->tv_sec--;
  84. }
  85. xtime = *tv;
  86. time_adjust = 0; /* stop active adjtime() */
  87. time_status |= STA_UNSYNC;
  88. time_maxerror = NTP_PHASE_LIMIT;
  89. time_esterror = NTP_PHASE_LIMIT;
  90. write_unlock_irq (&xtime_lock);
  91. }
  92. /*
  93.  * Gettimeoffset routines.  These routines returns the time duration
  94.  * since last timer interrupt in usecs.
  95.  *
  96.  * If the exact CPU counter frequency is known, use fixed_rate_gettimeoffset.
  97.  * Otherwise use calibrate_gettimeoffset()
  98.  *
  99.  * If the CPU does not have counter register all, you can either supply
  100.  * your own gettimeoffset() routine, or use null_gettimeoffset() routines,
  101.  * which gives the same resolution as HZ.
  102.  */
  103. /* This is for machines which generate the exact clock. */
  104. #define USECS_PER_JIFFY (1000000/HZ)
  105. /* usecs per counter cycle, shifted to left by 32 bits */
  106. static unsigned int sll32_usecs_per_cycle=0;
  107. /* how many counter cycles in a jiffy */
  108. static unsigned long cycles_per_jiffy=0;
  109. /* Cycle counter value at the previous timer interrupt.. */
  110. static unsigned int timerhi, timerlo;
  111. /* last time when xtime and rtc are sync'ed up */
  112. static long last_rtc_update;
  113. /* the function pointer to one of the gettimeoffset funcs*/
  114. unsigned long (*do_gettimeoffset)(void) = null_gettimeoffset;
  115. unsigned long null_gettimeoffset(void)
  116. {
  117. return 0;
  118. }
  119. unsigned long fixed_rate_gettimeoffset(void)
  120. {
  121. u32 count;
  122. unsigned long res;
  123. /* Get last timer tick in absolute kernel time */
  124. count = read_32bit_cp0_register(CP0_COUNT);
  125. /* .. relative to previous jiffy (32 bits is enough) */
  126. count -= timerlo;
  127. __asm__("multut%1,%2nt"
  128.         "mfhit%0"
  129.         :"=r" (res)
  130.         :"r" (count),
  131.          "r" (sll32_usecs_per_cycle));
  132. /*
  133.  * Due to possible jiffies inconsistencies, we need to check
  134.  * the result so that we'll get a timer that is monotonic.
  135.  */
  136. if (res >= USECS_PER_JIFFY)
  137. res = USECS_PER_JIFFY-1;
  138. return res;
  139. }
  140. /*
  141.  * Cached "1/(clocks per usec)*2^32" value.
  142.  * It has to be recalculated once each jiffy.
  143.  */
  144. static unsigned long cached_quotient;
  145. /* Last jiffy when calibrate_divXX_gettimeoffset() was called. */
  146. static unsigned long last_jiffies = 0;
  147. /*
  148.  * This is copied from dec/time.c:do_ioasic_gettimeoffset() by Mercij.
  149.  */
  150. unsigned long calibrate_div32_gettimeoffset(void)
  151. {
  152. u32 count;
  153. unsigned long res, tmp;
  154. unsigned long quotient;
  155. tmp = jiffies;
  156. quotient = cached_quotient;
  157. if (last_jiffies != tmp) {
  158. last_jiffies = tmp;
  159. if (last_jiffies != 0) {
  160. unsigned long r0;
  161. do_div64_32(r0, timerhi, timerlo, tmp);
  162. do_div64_32(quotient, USECS_PER_JIFFY,
  163.             USECS_PER_JIFFY_FRAC, r0);
  164. cached_quotient = quotient;
  165. }
  166. }
  167. /* Get last timer tick in absolute kernel time */
  168. count = read_32bit_cp0_register(CP0_COUNT);
  169. /* .. relative to previous jiffy (32 bits is enough) */
  170. count -= timerlo;
  171. __asm__("multu  %2,%3"
  172.         : "=l" (tmp), "=h" (res)
  173.         : "r" (count), "r" (quotient));
  174. /*
  175.  * Due to possible jiffies inconsistencies, we need to check
  176.  * the result so that we'll get a timer that is monotonic.
  177.  */
  178. if (res >= USECS_PER_JIFFY)
  179. res = USECS_PER_JIFFY - 1;
  180. return res;
  181. }
  182. unsigned long calibrate_div64_gettimeoffset(void)
  183. {
  184. u32 count;
  185. unsigned long res, tmp;
  186. unsigned long quotient;
  187. tmp = jiffies;
  188. quotient = cached_quotient;
  189. if (tmp && last_jiffies != tmp) {
  190. last_jiffies = tmp;
  191. __asm__(".settnoreordernt"
  192.         ".settnoatnt"
  193.         ".settmips3nt"
  194.         "lwut%0,%2nt"
  195.         "dsll32t$1,%1,0nt"
  196.         "ort$1,$1,%0nt"
  197.         "ddivut$0,$1,%3nt"
  198.         "mflot$1nt"
  199.         "dsll32t%0,%4,0nt"
  200.         "nopnt"
  201.         "ddivut$0,%0,$1nt"
  202.         "mflot%0nt"
  203.         ".settmips0nt"
  204.         ".settatnt"
  205.         ".settreorder"
  206.         :"=&r" (quotient)
  207.         :"r" (timerhi),
  208.          "m" (timerlo),
  209.          "r" (tmp),
  210.          "r" (USECS_PER_JIFFY)
  211.         :"$1");
  212.         cached_quotient = quotient;
  213. }
  214. /* Get last timer tick in absolute kernel time */
  215. count = read_32bit_cp0_register(CP0_COUNT);
  216. /* .. relative to previous jiffy (32 bits is enough) */
  217. count -= timerlo;
  218. __asm__("multut%1,%2nt"
  219.         "mfhit%0"
  220.         :"=r" (res)
  221.         :"r" (count),
  222.          "r" (quotient));
  223. /*
  224.  * Due to possible jiffies inconsistencies, we need to check
  225.  * the result so that we'll get a timer that is monotonic.
  226.  */
  227. if (res >= USECS_PER_JIFFY)
  228. res = USECS_PER_JIFFY-1;
  229. return res;
  230. }
  231. /*
  232.  * high-level timer interrupt service routines.  This function
  233.  * is set as irqaction->handler and is invoked through do_IRQ.
  234.  */
  235. void timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  236. {
  237. if (mips_cpu.options & MIPS_CPU_COUNTER) {
  238. unsigned int count;
  239. /*
  240.  * The cycle counter is only 32 bit which is good for about
  241.  * a minute at current count rates of upto 150MHz or so.
  242.  */
  243. count = read_32bit_cp0_register(CP0_COUNT);
  244. timerhi += (count < timerlo);   /* Wrap around */
  245. timerlo = count;
  246. /*
  247.  * set up for next timer interrupt - no harm if the machine
  248.  * is using another timer interrupt source.
  249.  * Note that writing to COMPARE register clears the interrupt
  250.  */
  251. write_32bit_cp0_register (CP0_COMPARE,
  252.   count + cycles_per_jiffy);
  253. }
  254. if(!user_mode(regs)) {
  255. if (prof_buffer && current->pid) {
  256. extern int _stext;
  257. unsigned long pc = regs->cp0_epc;
  258. pc -= (unsigned long) &_stext;
  259. pc >>= prof_shift;
  260. /*
  261.  * Dont ignore out-of-bounds pc values silently,
  262.  * put them into the last histogram slot, so if
  263.  * present, they will show up as a sharp peak.
  264.  */
  265. if (pc > prof_len-1)
  266. pc = prof_len-1;
  267. atomic_inc((atomic_t *)&prof_buffer[pc]);
  268. }
  269. }
  270. /*
  271.  * call the generic timer interrupt handling
  272.  */
  273. do_timer(regs);
  274. /*
  275.  * If we have an externally synchronized Linux clock, then update
  276.  * CMOS clock accordingly every ~11 minutes. rtc_set_time() has to be
  277.  * called as close as possible to 500 ms before the new second starts.
  278.  */
  279. read_lock (&xtime_lock);
  280. if ((time_status & STA_UNSYNC) == 0 &&
  281.     xtime.tv_sec > last_rtc_update + 660 &&
  282.     xtime.tv_usec >= 500000 - ((unsigned) tick) / 2 &&
  283.     xtime.tv_usec <= 500000 + ((unsigned) tick) / 2) {
  284. if (rtc_set_time(xtime.tv_sec) == 0) {
  285. last_rtc_update = xtime.tv_sec;
  286. } else {
  287. last_rtc_update = xtime.tv_sec - 600; 
  288. /* do it again in 60 s */
  289. }
  290. }
  291. read_unlock (&xtime_lock);
  292. /*
  293.  * If jiffies has overflowed in this timer_interrupt we must
  294.  * update the timer[hi]/[lo] to make fast gettimeoffset funcs
  295.  * quotient calc still valid. -arca
  296.  */
  297. if (!jiffies) {
  298. timerhi = timerlo = 0;
  299. }
  300. }
  301. asmlinkage void ll_timer_interrupt(int irq, struct pt_regs *regs)
  302. {
  303. int cpu = smp_processor_id();
  304. irq_enter(cpu, irq);
  305. kstat.irqs[cpu][irq]++;
  306. /* we keep interrupt disabled all the time */
  307. timer_interrupt(irq, NULL, regs);
  308. irq_exit(cpu, irq);
  309. if (softirq_pending(cpu))
  310. do_softirq();
  311. }
  312. /*
  313.  * time_init() - it does the following things.
  314.  *
  315.  * 1) board_time_init() - 
  316.  *  a) (optional) set up RTC routines, 
  317.  *      b) (optional) calibrate and set the mips_counter_frequency
  318.  *     (only needed if you intended to use fixed_rate_gettimeoffset
  319.  *      or use cpu counter as timer interrupt source)
  320.  * 2) setup xtime based on rtc_get_time().
  321.  * 3) choose a appropriate gettimeoffset routine.
  322.  * 4) calculate a couple of cached variables for later usage
  323.  * 5) board_timer_setup() - 
  324.  * a) (optional) over-write any choices made above by time_init().
  325.  * b) machine specific code should setup the timer irqaction.
  326.  * c) enable the timer interrupt
  327.  */ 
  328. void (*board_time_init)(void) = NULL;
  329. void (*board_timer_setup)(struct irqaction *irq) = NULL;
  330. unsigned int mips_counter_frequency = 0;
  331. static struct irqaction timer_irqaction = {
  332. timer_interrupt,
  333. SA_INTERRUPT,
  334. 0,
  335. "timer",
  336. NULL,
  337. NULL};
  338. void __init time_init(void)
  339. {
  340. if (board_time_init)
  341. board_time_init();
  342. xtime.tv_sec = rtc_get_time();
  343. xtime.tv_usec = 0;
  344. /* choose appropriate gettimeoffset routine */
  345. if (!(mips_cpu.options & MIPS_CPU_COUNTER)) {
  346. /* no cpu counter - sorry */
  347. do_gettimeoffset = null_gettimeoffset;
  348. } else if (mips_counter_frequency != 0) {
  349. /* we have cpu counter and know counter frequency! */
  350. do_gettimeoffset = fixed_rate_gettimeoffset;
  351. } else if ((mips_cpu.isa_level == MIPS_CPU_ISA_M32) ||
  352.    (mips_cpu.isa_level == MIPS_CPU_ISA_I) ||
  353.    (mips_cpu.isa_level == MIPS_CPU_ISA_II) ) {
  354. /* we need to calibrate the counter but we don't have
  355.  * 64-bit division. */
  356. do_gettimeoffset = calibrate_div32_gettimeoffset;
  357. } else {
  358. /* we need to calibrate the counter but we *do* have
  359.  * 64-bit division. */
  360. do_gettimeoffset = calibrate_div64_gettimeoffset;
  361. }
  362. /* caclulate cache parameters */
  363. if (mips_counter_frequency) {
  364. cycles_per_jiffy = mips_counter_frequency / HZ;
  365. /* sll32_usecs_per_cycle = 10^6 * 2^32 / mips_counter_freq */
  366. /* any better way to do this? */
  367. sll32_usecs_per_cycle = mips_counter_frequency / 100000;
  368. sll32_usecs_per_cycle = 0xffffffff / sll32_usecs_per_cycle;
  369. sll32_usecs_per_cycle *= 10;
  370. }
  371. /* 
  372.  * Call board specific timer interrupt setup.
  373.  *
  374.  * this pointer must be setup in machine setup routine. 
  375.  *
  376.  * Even if the machine choose to use low-level timer interrupt,
  377.  * it still needs to setup the timer_irqaction.
  378.  * In that case, it might be better to set timer_irqaction.handler 
  379.  * to be NULL function so that we are sure the high-level code
  380.  * is not invoked accidentally.
  381.  */
  382. board_timer_setup(&timer_irqaction);
  383. }
  384. #define FEBRUARY 2
  385. #define STARTOFTIME 1970
  386. #define SECDAY 86400L
  387. #define SECYR (SECDAY * 365)
  388. #define leapyear(year) ((year) % 4 == 0)
  389. #define days_in_year(a) (leapyear(a) ? 366 : 365)
  390. #define days_in_month(a) (month_days[(a) - 1])
  391. static int month_days[12] = {
  392. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
  393. };
  394. void to_tm(unsigned long tim, struct rtc_time * tm)
  395. {
  396. long hms, day;
  397. int i;
  398. day = tim / SECDAY;
  399. hms = tim % SECDAY;
  400. /* Hours, minutes, seconds are easy */
  401. tm->tm_hour = hms / 3600;
  402. tm->tm_min = (hms % 3600) / 60;
  403. tm->tm_sec = (hms % 3600) % 60;
  404. /* Number of years in days */
  405. for (i = STARTOFTIME; day >= days_in_year(i); i++)
  406. day -= days_in_year(i);
  407. tm->tm_year = i;
  408. /* Number of months in days left */
  409. if (leapyear(tm->tm_year))
  410. days_in_month(FEBRUARY) = 29;
  411. for (i = 1; day >= days_in_month(i); i++)
  412. day -= days_in_month(i);
  413. days_in_month(FEBRUARY) = 28;
  414. tm->tm_mon = i;
  415. /* Days are what is left over (+1) from all that. */
  416. tm->tm_mday = day + 1;
  417. /*
  418.  * Determine the day of week
  419.  */
  420. tm->tm_wday = (day + 3) % 7;
  421. }