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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * IP32 timer calibration
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 2001 Keith M Wesolowski
  9.  */
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/errno.h>
  13. #include <linux/sched.h>
  14. #include <linux/param.h>
  15. #include <linux/string.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/kernel_stat.h>
  18. #include <linux/mc146818rtc.h>
  19. #include <linux/timex.h>
  20. #include <asm/mipsregs.h>
  21. #include <asm/param.h>
  22. #include <asm/ip32/crime.h>
  23. #include <asm/ip32/ip32_ints.h>
  24. #include <asm/bootinfo.h>
  25. #include <asm/cpu.h>
  26. #include <asm/mipsregs.h>
  27. #include <asm/io.h>
  28. #include <asm/irq.h>
  29. extern volatile unsigned long wall_jiffies;
  30. extern rwlock_t xtime_lock;
  31. u32 cc_interval;
  32. /* Cycle counter value at the previous timer interrupt.. */
  33. static unsigned int timerhi, timerlo;
  34. /* An arbitrary time; this can be decreased if reliability looks good */
  35. #define WAIT_MS 10
  36. #define PER_MHZ (1000000 / 2 / HZ)
  37. /*
  38.  * Change this if you have some constant time drift
  39.  */
  40. #define USECS_PER_JIFFY (1000000/HZ)
  41. void __init ip32_timer_setup (struct irqaction *irq)
  42. {
  43. u64 crime_time;
  44. u32 cc_tick;
  45. printk("Calibrating system timer... ");
  46. crime_time = crime_read_64 (CRIME_TIME) & CRIME_TIME_MASK;
  47. cc_tick = read_32bit_cp0_register (CP0_COUNT);
  48. while ((crime_read_64 (CRIME_TIME) & CRIME_TIME_MASK) - crime_time
  49. < WAIT_MS * 1000000 / CRIME_NS_PER_TICK)
  50. ;
  51. cc_tick = read_32bit_cp0_register (CP0_COUNT) - cc_tick;
  52. cc_interval = cc_tick / HZ * (1000 / WAIT_MS);
  53. /* The round-off seems unnecessary; in testing, the error of the
  54.  * above procedure is < 100 ticks, which means it gets filtered
  55.  * out by the HZ adjustment.
  56.  */
  57. cc_interval = (cc_interval / PER_MHZ) * PER_MHZ;
  58. printk("%d MHz CPU detectedn", (int) (cc_interval / PER_MHZ));
  59. setup_irq (CLOCK_IRQ, irq);
  60. }
  61. struct irqaction irq0  = { NULL, SA_INTERRUPT, 0,
  62.    "timer", NULL, NULL};
  63. void cc_timer_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  64. {
  65. u32 count;
  66. /*
  67.  * The cycle counter is only 32 bit which is good for about
  68.  * a minute at current count rates of upto 150MHz or so.
  69.  */
  70. count = read_32bit_cp0_register(CP0_COUNT);
  71. timerhi += (count < timerlo); /* Wrap around */
  72. timerlo = count;
  73. write_32bit_cp0_register (CP0_COMPARE,
  74.   (u32) (count + cc_interval));
  75. kstat.irqs[0][irq]++;
  76. do_timer (regs);
  77. if (!jiffies)
  78. {
  79. /*
  80.  * If jiffies has overflowed in this timer_interrupt we must
  81.  * update the timer[hi]/[lo] to make do_fast_gettimeoffset()
  82.  * quotient calc still valid. -arca
  83.  */
  84. timerhi = timerlo = 0;
  85. }
  86. }
  87. /*
  88.  * On MIPS only R4000 and better have a cycle counter.
  89.  *
  90.  * FIXME: Does playing with the RP bit in c0_status interfere with this code?
  91.  */
  92. static unsigned long do_gettimeoffset(void)
  93. {
  94. u32 count;
  95. unsigned long res, tmp;
  96. /* Last jiffy when do_fast_gettimeoffset() was called. */
  97. static unsigned long last_jiffies;
  98. u32 quotient;
  99. /*
  100.  * Cached "1/(clocks per usec)*2^32" value.
  101.  * It has to be recalculated once each jiffy.
  102.  */
  103. static u32 cached_quotient;
  104. tmp = jiffies;
  105. quotient = cached_quotient;
  106. if (tmp && last_jiffies != tmp) {
  107. last_jiffies = tmp;
  108. __asm__(".settnoreordernt"
  109. ".settnoatnt"
  110. ".settmips3nt"
  111. "lwut%0,%2nt"
  112. "dsll32t$1,%1,0nt"
  113. "ort$1,$1,%0nt"
  114. "ddivut$0,$1,%3nt"
  115. "mflot$1nt"
  116. "dsll32t%0,%4,0nt"
  117. "nopnt"
  118. "ddivut$0,%0,$1nt"
  119. "mflot%0nt"
  120. ".settmips0nt"
  121. ".settatnt"
  122. ".settreorder"
  123. :"=&r" (quotient)
  124. :"r" (timerhi),
  125.  "m" (timerlo),
  126.  "r" (tmp),
  127.  "r" (USECS_PER_JIFFY)
  128. :"$1");
  129. cached_quotient = quotient;
  130. }
  131. /* Get last timer tick in absolute kernel time */
  132. count = read_32bit_cp0_register(CP0_COUNT);
  133. /* .. relative to previous jiffy (32 bits is enough) */
  134. count -= timerlo;
  135. __asm__("multut%1,%2nt"
  136. "mfhit%0"
  137. :"=r" (res)
  138. :"r" (count),
  139.  "r" (quotient));
  140. /*
  141.    * Due to possible jiffies inconsistencies, we need to check
  142.  * the result so that we'll get a timer that is monotonic.
  143.  */
  144. if (res >= USECS_PER_JIFFY)
  145. res = USECS_PER_JIFFY-1;
  146. return res;
  147. }
  148. void __init ip32_time_init(void)
  149. {
  150. unsigned int epoch = 0, year, mon, day, hour, min, sec;
  151. int i;
  152. /* The Linux interpretation of the CMOS clock register contents:
  153.  * When the Update-In-Progress (UIP) flag goes from 1 to 0, the
  154.  * RTC registers show the second which has precisely just started.
  155.  * Let's hope other operating systems interpret the RTC the same way.
  156.  */
  157. /* read RTC exactly on falling edge of update flag */
  158. for (i = 0 ; i < 1000000 ; i++) /* may take up to 1 second... */
  159. if (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP)
  160. break;
  161. for (i = 0 ; i < 1000000 ; i++) /* must try at least 2.228 ms */
  162. if (!(CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP))
  163. break;
  164. do { /* Isn't this overkill ? UIP above should guarantee consistency */
  165. sec = CMOS_READ(RTC_SECONDS);
  166. min = CMOS_READ(RTC_MINUTES);
  167. hour = CMOS_READ(RTC_HOURS);
  168. day = CMOS_READ(RTC_DAY_OF_MONTH);
  169. mon = CMOS_READ(RTC_MONTH);
  170. year = CMOS_READ(RTC_YEAR);
  171. } while (sec != CMOS_READ(RTC_SECONDS));
  172. if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  173. BCD_TO_BIN(sec);
  174. BCD_TO_BIN(min);
  175. BCD_TO_BIN(hour);
  176. BCD_TO_BIN(day);
  177. BCD_TO_BIN(mon);
  178. BCD_TO_BIN(year);
  179. }
  180. /* Attempt to guess the epoch.  This is the same heuristic as in
  181.  * rtc.c so no stupid things will happen to timekeeping.  Who knows,
  182.  * maybe Ultrix also uses 1952 as epoch ...
  183.  */
  184. if (year > 10 && year < 44)
  185. epoch = 1980;
  186. else if (year < 96)
  187. epoch = 1952;
  188. year += epoch;
  189. write_lock_irq (&xtime_lock);
  190. xtime.tv_sec = mktime(year, mon, day, hour, min, sec);
  191. xtime.tv_usec = 0;
  192. write_unlock_irq (&xtime_lock);
  193. write_32bit_cp0_register(CP0_COUNT, 0);
  194. irq0.handler = cc_timer_interrupt;
  195. ip32_timer_setup (&irq0);
  196. #define ALLINTS (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4 | IE_IRQ5)
  197. /* Set ourselves up for future interrupts */
  198.         write_32bit_cp0_register(CP0_COMPARE,
  199.  read_32bit_cp0_register(CP0_COUNT)
  200.  + cc_interval);
  201.         change_cp0_status(ST0_IM, ALLINTS);
  202. sti ();
  203. }