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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * ########################################################################
  6.  *
  7.  *  This program is free software; you can distribute it and/or modify it
  8.  *  under the terms of the GNU General Public License (Version 2) as
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope it will be useful, but WITHOUT
  12.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *  for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License along
  17.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  18.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19.  *
  20.  * ########################################################################
  21.  *
  22.  * Setting up the clock on the MIPS boards.
  23.  *
  24.  */
  25. #include <linux/config.h>
  26. #include <linux/init.h>
  27. #include <linux/kernel_stat.h>
  28. #include <linux/sched.h>
  29. #include <linux/spinlock.h>
  30. #include <asm/mipsregs.h>
  31. #include <asm/ptrace.h>
  32. #include <asm/it8172/it8172_int.h>
  33. #include <linux/mc146818rtc.h>
  34. #include <linux/timex.h>
  35. extern void enable_cpu_timer(void);
  36. extern volatile unsigned long wall_jiffies;
  37. extern rwlock_t xtime_lock;
  38. unsigned long missed_heart_beats = 0;
  39. static long last_rtc_update = 0;
  40. static unsigned long r4k_offset; /* Amount to increment compare reg each time */
  41. static unsigned long r4k_cur;    /* What counter should be at next timer irq */
  42. static unsigned int timer_tick_count=0;
  43. static inline void ack_r4ktimer(unsigned long newval)
  44. {
  45. write_32bit_cp0_register(CP0_COMPARE, newval);
  46. }
  47. /*
  48.  * In order to set the CMOS clock precisely, set_rtc_mmss has to be
  49.  * called 500 ms after the second nowtime has started, because when
  50.  * nowtime is written into the registers of the CMOS clock, it will
  51.  * jump to the next second precisely 500 ms later. Check the Motorola
  52.  * MC146818A or Dallas DS12887 data sheet for details.
  53.  *
  54.  * BUG: This routine does not handle hour overflow properly; it just
  55.  *      sets the minutes. Usually you won't notice until after reboot!
  56.  */
  57. static int set_rtc_mmss(unsigned long nowtime)
  58. {
  59. int retval = 0;
  60. int real_seconds, real_minutes, cmos_minutes;
  61. unsigned char save_control, save_freq_select;
  62. save_control = CMOS_READ(RTC_CONTROL); /* tell the clock it's being set */
  63. CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
  64. save_freq_select = CMOS_READ(RTC_FREQ_SELECT); /* stop and reset prescaler */
  65. CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
  66. cmos_minutes = CMOS_READ(RTC_MINUTES);
  67. /*
  68.  * since we're only adjusting minutes and seconds,
  69.  * don't interfere with hour overflow. This avoids
  70.  * messing with unknown time zones but requires your
  71.  * RTC not to be off by more than 15 minutes
  72.  */
  73. real_seconds = nowtime % 60;
  74. real_minutes = nowtime / 60;
  75. if (((abs(real_minutes - cmos_minutes) + 15)/30) & 1)
  76. real_minutes += 30; /* correct for half hour time zone */
  77. real_minutes %= 60;
  78. if (abs(real_minutes - cmos_minutes) < 30) {
  79. CMOS_WRITE(real_seconds,RTC_SECONDS);
  80. CMOS_WRITE(real_minutes,RTC_MINUTES);
  81. } else {
  82. printk(KERN_WARNING
  83.        "set_rtc_mmss: can't update from %d to %dn",
  84.        cmos_minutes, real_minutes);
  85.   retval = -1;
  86. }
  87. /* The following flags have to be released exactly in this order,
  88.  * otherwise the DS12887 (popular MC146818A clone with integrated
  89.  * battery and quartz) will not reset the oscillator and will not
  90.  * update precisely 500 ms later. You won't find this mentioned in
  91.  * the Dallas Semiconductor data sheets, but who believes data
  92.  * sheets anyway ...                           -- Markus Kuhn
  93.  */
  94. CMOS_WRITE(save_control, RTC_CONTROL);
  95. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  96. return retval;
  97. }
  98. /*
  99.  * There are a lot of conceptually broken versions of the MIPS timer interrupt
  100.  * handler floating around.  This one is rather different, but the algorithm
  101.  * is provably more robust.
  102.  */
  103. void mips_timer_interrupt(struct pt_regs *regs)
  104. {
  105. if (r4k_offset == 0)
  106. goto null;
  107. do {
  108. kstat.irqs[0][MIPS_CPU_TIMER_IRQ]++;
  109. do_timer(regs);
  110. /* Historical comment/code:
  111.    * RTC time of day s updated approx. every 11 
  112.    * minutes.  Because of how the numbers work out 
  113.    * we need to make absolutely sure we do this update
  114.    * within 500ms before the * next second starts, 
  115.    * thus the following code.
  116.    */
  117. read_lock(&xtime_lock);
  118. if ((time_status & STA_UNSYNC) == 0 
  119.     && xtime.tv_sec > last_rtc_update + 660 
  120.     && xtime.tv_usec >= 500000 - (tick >> 1) 
  121.     && xtime.tv_usec <= 500000 + (tick >> 1))
  122. if (set_rtc_mmss(xtime.tv_sec) == 0)
  123. last_rtc_update = xtime.tv_sec;
  124. else {
  125. /* do it again in 60 s */
  126.      last_rtc_update = xtime.tv_sec - 600; 
  127. }
  128. read_unlock(&xtime_lock);
  129. r4k_cur += r4k_offset;
  130. ack_r4ktimer(r4k_cur);
  131. } while (((unsigned long)read_32bit_cp0_register(CP0_COUNT)
  132.          - r4k_cur) < 0x7fffffff);
  133. return;
  134. null:
  135. ack_r4ktimer(0);
  136. }
  137. /* 
  138.  * Figure out the r4k offset, the amount to increment the compare
  139.  * register for each time tick. 
  140.  * Use the RTC to calculate offset.
  141.  */
  142. static unsigned long __init cal_r4koff(void)
  143. {
  144. unsigned long count;
  145. unsigned int flags;
  146. __save_and_cli(flags);
  147. /* Start counter exactly on falling edge of update flag */
  148. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  149. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  150. /* Start r4k counter. */
  151. write_32bit_cp0_register(CP0_COUNT, 0);
  152. /* Read counter exactly on falling edge of update flag */
  153. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  154. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  155. count = read_32bit_cp0_register(CP0_COUNT);
  156. /* restore interrupts */
  157. __restore_flags(flags);
  158. return (count / HZ);
  159. }
  160. static unsigned long __init get_mips_time(void)
  161. {
  162. unsigned int year, mon, day, hour, min, sec;
  163. unsigned char save_control;
  164. save_control = CMOS_READ(RTC_CONTROL);
  165. /* Freeze it. */
  166. CMOS_WRITE(save_control | RTC_SET, RTC_CONTROL);
  167. /* Read regs. */
  168. sec = CMOS_READ(RTC_SECONDS);
  169. min = CMOS_READ(RTC_MINUTES);
  170. hour = CMOS_READ(RTC_HOURS);
  171. if (!(save_control & RTC_24H))
  172. {
  173. if ((hour & 0xf) == 0xc)
  174.         hour &= 0x80;
  175.         if (hour & 0x80)
  176.         hour = (hour & 0xf) + 12;     
  177. }
  178. day = CMOS_READ(RTC_DAY_OF_MONTH);
  179. mon = CMOS_READ(RTC_MONTH);
  180. year = CMOS_READ(RTC_YEAR);
  181. /* Unfreeze clock. */
  182. CMOS_WRITE(save_control, RTC_CONTROL);
  183. if ((year += 1900) < 1970)
  184.         year += 100;
  185. return mktime(year, mon, day, hour, min, sec);
  186. }
  187. void __init time_init(void)
  188. {
  189.         unsigned int est_freq, flags;
  190.         /* Set Data mode - binary. */ 
  191.         CMOS_WRITE(CMOS_READ(RTC_CONTROL) | RTC_DM_BINARY, RTC_CONTROL);
  192. printk("calculating r4koff... ");
  193. r4k_offset = cal_r4koff();
  194. printk("%08lx(%d)n", r4k_offset, (int) r4k_offset);
  195. est_freq = 2*r4k_offset*HZ;
  196. est_freq += 5000;    /* round */
  197. est_freq -= est_freq%10000;
  198. printk("CPU frequency %d.%02d MHzn", est_freq/1000000, 
  199.        (est_freq%1000000)*100/1000000);
  200. r4k_cur = (read_32bit_cp0_register(CP0_COUNT) + r4k_offset);
  201. write_32bit_cp0_register(CP0_COMPARE, r4k_cur);
  202. enable_cpu_timer();
  203. /* Read time from the RTC chipset. */
  204. write_lock_irqsave (&xtime_lock, flags);
  205. xtime.tv_sec = get_mips_time();
  206. xtime.tv_usec = 0;
  207. write_unlock_irqrestore(&xtime_lock, flags);
  208. }
  209. /* This is for machines which generate the exact clock. */
  210. #define USECS_PER_JIFFY (1000000/HZ)
  211. /* Cycle counter value at the previous timer interrupt.. */
  212. static unsigned int timerhi = 0, timerlo = 0;
  213. /*
  214.  * FIXME: Does playing with the RP bit in c0_status interfere with this code?
  215.  */
  216. static unsigned long do_fast_gettimeoffset(void)
  217. {
  218. u32 count;
  219. unsigned long res, tmp;
  220. /* Last jiffy when do_fast_gettimeoffset() was called. */
  221. static unsigned long last_jiffies=0;
  222. unsigned long quotient;
  223. /*
  224.  * Cached "1/(clocks per usec)*2^32" value.
  225.  * It has to be recalculated once each jiffy.
  226.  */
  227. static unsigned long cached_quotient=0;
  228. tmp = jiffies;
  229. quotient = cached_quotient;
  230. if (tmp && last_jiffies != tmp) {
  231. last_jiffies = tmp;
  232. __asm__(".settnoreordernt"
  233. ".settnoatnt"
  234. ".settmips3nt"
  235. "lwut%0,%2nt"
  236. "dsll32t$1,%1,0nt"
  237. "ort$1,$1,%0nt"
  238. "ddivut$0,$1,%3nt"
  239. "mflot$1nt"
  240. "dsll32t%0,%4,0nt"
  241. "nopnt"
  242. "ddivut$0,%0,$1nt"
  243. "mflot%0nt"
  244. ".settmips0nt"
  245. ".settatnt"
  246. ".settreorder"
  247. :"=&r" (quotient)
  248. :"r" (timerhi),
  249.  "m" (timerlo),
  250.  "r" (tmp),
  251.  "r" (USECS_PER_JIFFY)
  252. :"$1");
  253. cached_quotient = quotient;
  254. }
  255. /* Get last timer tick in absolute kernel time */
  256. count = read_32bit_cp0_register(CP0_COUNT);
  257. /* .. relative to previous jiffy (32 bits is enough) */
  258. count -= timerlo;
  259. __asm__("multut%1,%2nt"
  260. "mfhit%0"
  261. :"=r" (res)
  262. :"r" (count),
  263.  "r" (quotient));
  264. /*
  265.    * Due to possible jiffies inconsistencies, we need to check 
  266.  * the result so that we'll get a timer that is monotonic.
  267.  */
  268. if (res >= USECS_PER_JIFFY)
  269. res = USECS_PER_JIFFY-1;
  270. return res;
  271. }
  272. void do_gettimeofday(struct timeval *tv)
  273. {
  274. unsigned int flags;
  275. read_lock_irqsave (&xtime_lock, flags);
  276. *tv = xtime;
  277. tv->tv_usec += do_fast_gettimeoffset();
  278. /*
  279.  * xtime is atomically updated in timer_bh. jiffies - wall_jiffies
  280.  * is nonzero if the timer bottom half hasnt executed yet.
  281.  */
  282. if (jiffies - wall_jiffies)
  283. tv->tv_usec += USECS_PER_JIFFY;
  284. read_unlock_irqrestore (&xtime_lock, flags);
  285. if (tv->tv_usec >= 1000000) {
  286. tv->tv_usec -= 1000000;
  287. tv->tv_sec++;
  288. }
  289. }
  290. void do_settimeofday(struct timeval *tv)
  291. {
  292. write_lock_irq (&xtime_lock);
  293. /* This is revolting. We need to set the xtime.tv_usec correctly.
  294.  * However, the value in this location is is value at the last tick.
  295.  * Discover what correction gettimeofday would have done, and then
  296.  * undo it!
  297.  */
  298. tv->tv_usec -= do_fast_gettimeoffset();
  299. if (tv->tv_usec < 0) {
  300. tv->tv_usec += 1000000;
  301. tv->tv_sec--;
  302. }
  303. xtime = *tv;
  304. time_adjust = 0; /* stop active adjtime() */
  305. time_status |= STA_UNSYNC;
  306. time_maxerror = NTP_PHASE_LIMIT;
  307. time_esterror = NTP_PHASE_LIMIT;
  308. write_unlock_irq (&xtime_lock);
  309. }