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

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