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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-ebsa285/time.h
  3.  *
  4.  *  Copyright (C) 1998 Russell King.
  5.  *  Copyright (C) 1998 Phil Blundell
  6.  *
  7.  * CATS has a real-time clock, though the evaluation board doesn't.
  8.  *
  9.  * Changelog:
  10.  *  21-Mar-1998 RMK Created
  11.  *  27-Aug-1998 PJB CATS support
  12.  *  28-Dec-1998 APH Made leds optional
  13.  *  20-Jan-1999 RMK Started merge of EBSA285, CATS and NetWinder
  14.  *  16-Mar-1999 RMK More support for EBSA285-like machines with RTCs in
  15.  */
  16. #define RTC_PORT(x) (rtc_base+(x))
  17. #define RTC_ALWAYS_BCD 0
  18. #include <linux/mc146818rtc.h>
  19. #include <asm/hardware/dec21285.h>
  20. #include <asm/leds.h>
  21. #include <asm/mach-types.h>
  22. static int rtc_base;
  23. #define mSEC_10_from_14 ((14318180 + 100) / 200)
  24. static unsigned long isa_gettimeoffset(void)
  25. {
  26. int count;
  27. static int count_p = (mSEC_10_from_14/6);    /* for the first call after boot */
  28. static unsigned long jiffies_p = 0;
  29. /*
  30.  * cache volatile jiffies temporarily; we have IRQs turned off. 
  31.  */
  32. unsigned long jiffies_t;
  33. /* timer count may underflow right here */
  34. outb_p(0x00, 0x43); /* latch the count ASAP */
  35. count = inb_p(0x40); /* read the latched count */
  36. /*
  37.  * We do this guaranteed double memory access instead of a _p 
  38.  * postfix in the previous port access. Wheee, hackady hack
  39.  */
  40.   jiffies_t = jiffies;
  41. count |= inb_p(0x40) << 8;
  42. /* Detect timer underflows.  If we haven't had a timer tick since 
  43.    the last time we were called, and time is apparently going
  44.    backwards, the counter must have wrapped during this routine. */
  45. if ((jiffies_t == jiffies_p) && (count > count_p))
  46. count -= (mSEC_10_from_14/6);
  47. else
  48. jiffies_p = jiffies_t;
  49. count_p = count;
  50. count = (((mSEC_10_from_14/6)-1) - count) * tick;
  51. count = (count + (mSEC_10_from_14/6)/2) / (mSEC_10_from_14/6);
  52. return count;
  53. }
  54. static void isa_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  55. {
  56. if (machine_is_netwinder())
  57. do_leds();
  58. do_timer(regs);
  59. do_set_rtc();
  60. do_profile(regs);
  61. }
  62. static unsigned long __init get_isa_cmos_time(void)
  63. {
  64. unsigned int year, mon, day, hour, min, sec;
  65. int i;
  66. // check to see if the RTC makes sense.....
  67. if ((CMOS_READ(RTC_VALID) & RTC_VRT) == 0)
  68. return mktime(1970, 1, 1, 0, 0, 0);
  69. /* The Linux interpretation of the CMOS clock register contents:
  70.  * When the Update-In-Progress (UIP) flag goes from 1 to 0, the
  71.  * RTC registers show the second which has precisely just started.
  72.  * Let's hope other operating systems interpret the RTC the same way.
  73.  */
  74. /* read RTC exactly on falling edge of update flag */
  75. for (i = 0 ; i < 1000000 ; i++) /* may take up to 1 second... */
  76. if (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP)
  77. break;
  78. for (i = 0 ; i < 1000000 ; i++) /* must try at least 2.228 ms */
  79. if (!(CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP))
  80. break;
  81. do { /* Isn't this overkill ? UIP above should guarantee consistency */
  82. sec  = CMOS_READ(RTC_SECONDS);
  83. min  = CMOS_READ(RTC_MINUTES);
  84. hour = CMOS_READ(RTC_HOURS);
  85. day  = CMOS_READ(RTC_DAY_OF_MONTH);
  86. mon  = CMOS_READ(RTC_MONTH);
  87. year = CMOS_READ(RTC_YEAR);
  88. } while (sec != CMOS_READ(RTC_SECONDS));
  89. if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  90. BCD_TO_BIN(sec);
  91. BCD_TO_BIN(min);
  92. BCD_TO_BIN(hour);
  93. BCD_TO_BIN(day);
  94. BCD_TO_BIN(mon);
  95. BCD_TO_BIN(year);
  96. }
  97. if ((year += 1900) < 1970)
  98. year += 100;
  99. return mktime(year, mon, day, hour, min, sec);
  100. }
  101. static int
  102. set_isa_cmos_time(void)
  103. {
  104. int retval = 0;
  105. int real_seconds, real_minutes, cmos_minutes;
  106. unsigned char save_control, save_freq_select;
  107. unsigned long nowtime = xtime.tv_sec;
  108. save_control = CMOS_READ(RTC_CONTROL); /* tell the clock it's being set */
  109. CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
  110. save_freq_select = CMOS_READ(RTC_FREQ_SELECT); /* stop and reset prescaler */
  111. CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
  112. cmos_minutes = CMOS_READ(RTC_MINUTES);
  113. if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
  114. BCD_TO_BIN(cmos_minutes);
  115. /*
  116.  * since we're only adjusting minutes and seconds,
  117.  * don't interfere with hour overflow. This avoids
  118.  * messing with unknown time zones but requires your
  119.  * RTC not to be off by more than 15 minutes
  120.  */
  121. real_seconds = nowtime % 60;
  122. real_minutes = nowtime / 60;
  123. if (((abs(real_minutes - cmos_minutes) + 15)/30) & 1)
  124. real_minutes += 30; /* correct for half hour time zone */
  125. real_minutes %= 60;
  126. if (abs(real_minutes - cmos_minutes) < 30) {
  127. if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  128. BIN_TO_BCD(real_seconds);
  129. BIN_TO_BCD(real_minutes);
  130. }
  131. CMOS_WRITE(real_seconds,RTC_SECONDS);
  132. CMOS_WRITE(real_minutes,RTC_MINUTES);
  133. } else
  134. retval = -1;
  135. /* The following flags have to be released exactly in this order,
  136.  * otherwise the DS12887 (popular MC146818A clone with integrated
  137.  * battery and quartz) will not reset the oscillator and will not
  138.  * update precisely 500 ms later. You won't find this mentioned in
  139.  * the Dallas Semiconductor data sheets, but who believes data
  140.  * sheets anyway ...                           -- Markus Kuhn
  141.  */
  142. CMOS_WRITE(save_control, RTC_CONTROL);
  143. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  144. return retval;
  145. }
  146. static unsigned long timer1_gettimeoffset (void)
  147. {
  148. unsigned long value = LATCH - *CSR_TIMER1_VALUE;
  149. return (tick * value) / LATCH;
  150. }
  151. static void timer1_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  152. {
  153. *CSR_TIMER1_CLR = 0;
  154. /* Do the LEDs things */
  155. do_leds();
  156. do_timer(regs);
  157. do_set_rtc();
  158. do_profile(regs);
  159. }
  160. /*
  161.  * Set up timer interrupt.
  162.  */
  163. static inline void setup_timer(void)
  164. {
  165. int irq;
  166. if (machine_is_co285() ||
  167.     machine_is_personal_server())
  168. /*
  169.  * Add-in 21285s shouldn't access the RTC
  170.  */
  171. rtc_base = 0;
  172. else
  173. rtc_base = 0x70;
  174. if (rtc_base) {
  175. int reg_d, reg_b;
  176. /*
  177.  * Probe for the RTC.
  178.  */
  179. reg_d = CMOS_READ(RTC_REG_D);
  180. /*
  181.  * make sure the divider is set
  182.  */
  183. CMOS_WRITE(RTC_REF_CLCK_32KHZ, RTC_REG_A);
  184. /*
  185.  * Set control reg B
  186.  *   (24 hour mode, update enabled)
  187.  */
  188. reg_b = CMOS_READ(RTC_REG_B) & 0x7f;
  189. reg_b |= 2;
  190. CMOS_WRITE(reg_b, RTC_REG_B);
  191. if ((CMOS_READ(RTC_REG_A) & 0x7f) == RTC_REF_CLCK_32KHZ &&
  192.     CMOS_READ(RTC_REG_B) == reg_b) {
  193. /*
  194.  * We have a RTC.  Check the battery
  195.  */
  196. if ((reg_d & 0x80) == 0)
  197. printk(KERN_WARNING "RTC: *** warning: CMOS battery badn");
  198. xtime.tv_sec = get_isa_cmos_time();
  199. set_rtc = set_isa_cmos_time;
  200. } else
  201. rtc_base = 0;
  202. }
  203. if (machine_is_ebsa285() ||
  204.     machine_is_co285() ||
  205.     machine_is_personal_server()) {
  206. gettimeoffset = timer1_gettimeoffset;
  207. *CSR_TIMER1_CLR  = 0;
  208. *CSR_TIMER1_LOAD = LATCH;
  209. *CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_AUTORELOAD | TIMER_CNTL_DIV16;
  210. timer_irq.handler = timer1_interrupt;
  211. irq = IRQ_TIMER1;
  212. } else {
  213. /* enable PIT timer */
  214. /* set for periodic (4) and LSB/MSB write (0x30) */
  215. outb(0x34, 0x43);
  216. outb((mSEC_10_from_14/6) & 0xFF, 0x40);
  217. outb((mSEC_10_from_14/6) >> 8, 0x40);
  218. gettimeoffset = isa_gettimeoffset;
  219. timer_irq.handler = isa_timer_interrupt;
  220. irq = IRQ_ISA_TIMER;
  221. }
  222. setup_arm_irq(irq, &timer_irq);
  223. }