rtc.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * inclue/asm-generic/rtc.h
  3.  *
  4.  * Author: Tom Rini <trini@mvista.com>
  5.  *
  6.  * Based on:
  7.  * drivers/char/rtc.c
  8.  *
  9.  * Please read the COPYING file for all license details.
  10.  */
  11. #ifndef __ASM_RTC_H__
  12. #define __ASM_RTC_H__
  13. #ifdef __KERNEL__
  14. #include <linux/mc146818rtc.h>
  15. #include <linux/rtc.h>
  16. #include <linux/bcd.h>
  17. #define RTC_PIE 0x40 /* periodic interrupt enable */
  18. #define RTC_AIE 0x20 /* alarm interrupt enable */
  19. #define RTC_UIE 0x10 /* update-finished interrupt enable */
  20. /* some dummy definitions */
  21. #define RTC_BATT_BAD 0x100 /* battery bad */
  22. #define RTC_SQWE 0x08 /* enable square-wave output */
  23. #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */
  24. #define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */
  25. #define RTC_DST_EN 0x01         /* auto switch DST - works f. USA only */
  26. /*
  27.  * Returns true if a clock update is in progress
  28.  */
  29. static inline unsigned char rtc_is_updating(void)
  30. {
  31. unsigned char uip;
  32. spin_lock_irq(&rtc_lock);
  33. uip = (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP);
  34. spin_unlock_irq(&rtc_lock);
  35. return uip;
  36. }
  37. static inline unsigned int get_rtc_time(struct rtc_time *time)
  38. {
  39. unsigned long uip_watchdog = jiffies;
  40. unsigned char ctrl;
  41. #ifdef CONFIG_MACH_DECSTATION
  42. unsigned int real_year;
  43. #endif
  44. /*
  45.  * read RTC once any update in progress is done. The update
  46.  * can take just over 2ms. We wait 10 to 20ms. There is no need to
  47.  * to poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP.
  48.  * If you need to know *exactly* when a second has started, enable
  49.  * periodic update complete interrupts, (via ioctl) and then 
  50.  * immediately read /dev/rtc which will block until you get the IRQ.
  51.  * Once the read clears, read the RTC time (again via ioctl). Easy.
  52.  */
  53. if (rtc_is_updating() != 0)
  54. while (jiffies - uip_watchdog < 2*HZ/100) {
  55. barrier();
  56. cpu_relax();
  57. }
  58. /*
  59.  * Only the values that we read from the RTC are set. We leave
  60.  * tm_wday, tm_yday and tm_isdst untouched. Even though the
  61.  * RTC has RTC_DAY_OF_WEEK, we ignore it, as it is only updated
  62.  * by the RTC when initially set to a non-zero value.
  63.  */
  64. spin_lock_irq(&rtc_lock);
  65. time->tm_sec = CMOS_READ(RTC_SECONDS);
  66. time->tm_min = CMOS_READ(RTC_MINUTES);
  67. time->tm_hour = CMOS_READ(RTC_HOURS);
  68. time->tm_mday = CMOS_READ(RTC_DAY_OF_MONTH);
  69. time->tm_mon = CMOS_READ(RTC_MONTH);
  70. time->tm_year = CMOS_READ(RTC_YEAR);
  71. #ifdef CONFIG_MACH_DECSTATION
  72. real_year = CMOS_READ(RTC_DEC_YEAR);
  73. #endif
  74. ctrl = CMOS_READ(RTC_CONTROL);
  75. spin_unlock_irq(&rtc_lock);
  76. if (!(ctrl & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
  77. {
  78. BCD_TO_BIN(time->tm_sec);
  79. BCD_TO_BIN(time->tm_min);
  80. BCD_TO_BIN(time->tm_hour);
  81. BCD_TO_BIN(time->tm_mday);
  82. BCD_TO_BIN(time->tm_mon);
  83. BCD_TO_BIN(time->tm_year);
  84. }
  85. #ifdef CONFIG_MACH_DECSTATION
  86. time->tm_year += real_year - 72;
  87. #endif
  88. /*
  89.  * Account for differences between how the RTC uses the values
  90.  * and how they are defined in a struct rtc_time;
  91.  */
  92. if (time->tm_year <= 69)
  93. time->tm_year += 100;
  94. time->tm_mon--;
  95. return RTC_24H;
  96. }
  97. /* Set the current date and time in the real time clock. */
  98. static inline int set_rtc_time(struct rtc_time *time)
  99. {
  100. unsigned char mon, day, hrs, min, sec;
  101. unsigned char save_control, save_freq_select;
  102. unsigned int yrs;
  103. #ifdef CONFIG_MACH_DECSTATION
  104. unsigned int real_yrs, leap_yr;
  105. #endif
  106. yrs = time->tm_year;
  107. mon = time->tm_mon + 1;   /* tm_mon starts at zero */
  108. day = time->tm_mday;
  109. hrs = time->tm_hour;
  110. min = time->tm_min;
  111. sec = time->tm_sec;
  112. if (yrs > 255) /* They are unsigned */
  113. return -EINVAL;
  114. spin_lock_irq(&rtc_lock);
  115. #ifdef CONFIG_MACH_DECSTATION
  116. real_yrs = yrs;
  117. leap_yr = ((!((yrs + 1900) % 4) && ((yrs + 1900) % 100)) ||
  118. !((yrs + 1900) % 400));
  119. yrs = 72;
  120. /*
  121.  * We want to keep the year set to 73 until March
  122.  * for non-leap years, so that Feb, 29th is handled
  123.  * correctly.
  124.  */
  125. if (!leap_yr && mon < 3) {
  126. real_yrs--;
  127. yrs = 73;
  128. }
  129. #endif
  130. /* These limits and adjustments are independent of
  131.  * whether the chip is in binary mode or not.
  132.  */
  133. if (yrs > 169) {
  134. spin_unlock_irq(&rtc_lock);
  135. return -EINVAL;
  136. }
  137. if (yrs >= 100)
  138. yrs -= 100;
  139. if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY)
  140.     || RTC_ALWAYS_BCD) {
  141. BIN_TO_BCD(sec);
  142. BIN_TO_BCD(min);
  143. BIN_TO_BCD(hrs);
  144. BIN_TO_BCD(day);
  145. BIN_TO_BCD(mon);
  146. BIN_TO_BCD(yrs);
  147. }
  148. save_control = CMOS_READ(RTC_CONTROL);
  149. CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
  150. save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
  151. CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
  152. #ifdef CONFIG_MACH_DECSTATION
  153. CMOS_WRITE(real_yrs, RTC_DEC_YEAR);
  154. #endif
  155. CMOS_WRITE(yrs, RTC_YEAR);
  156. CMOS_WRITE(mon, RTC_MONTH);
  157. CMOS_WRITE(day, RTC_DAY_OF_MONTH);
  158. CMOS_WRITE(hrs, RTC_HOURS);
  159. CMOS_WRITE(min, RTC_MINUTES);
  160. CMOS_WRITE(sec, RTC_SECONDS);
  161. CMOS_WRITE(save_control, RTC_CONTROL);
  162. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  163. spin_unlock_irq(&rtc_lock);
  164. return 0;
  165. }
  166. static inline unsigned int get_rtc_ss(void)
  167. {
  168. struct rtc_time h;
  169. get_rtc_time(&h);
  170. return h.tm_sec;
  171. }
  172. static inline int get_rtc_pll(struct rtc_pll_info *pll)
  173. {
  174. return -EINVAL;
  175. }
  176. static inline int set_rtc_pll(struct rtc_pll_info *pll)
  177. {
  178. return -EINVAL;
  179. }
  180. #endif /* __KERNEL__ */
  181. #endif /* __ASM_RTC_H__ */