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

Linux/Unix编程

开发平台:

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