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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  *  arch/ppc/platforms/chrp_time.c
  6.  *
  7.  *  Copyright (C) 1991, 1992, 1995  Linus Torvalds
  8.  *
  9.  * Adapted for PowerPC (PReP) by Gary Thomas
  10.  * Modified by Cort Dougan (cort@cs.nmt.edu).
  11.  * Copied and modified from arch/i386/kernel/time.c
  12.  *
  13.  */
  14. #include <linux/errno.h>
  15. #include <linux/sched.h>
  16. #include <linux/kernel.h>
  17. #include <linux/param.h>
  18. #include <linux/string.h>
  19. #include <linux/mm.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/time.h>
  22. #include <linux/timex.h>
  23. #include <linux/kernel_stat.h>
  24. #include <linux/mc146818rtc.h>
  25. #include <linux/init.h>
  26. #include <asm/segment.h>
  27. #include <asm/io.h>
  28. #include <asm/processor.h>
  29. #include <asm/nvram.h>
  30. #include <asm/prom.h>
  31. #include <asm/sections.h>
  32. #include <asm/time.h>
  33. extern spinlock_t rtc_lock;
  34. static int nvram_as1 = NVRAM_AS1;
  35. static int nvram_as0 = NVRAM_AS0;
  36. static int nvram_data = NVRAM_DATA;
  37. long __init chrp_time_init(void)
  38. {
  39. struct device_node *rtcs;
  40. int base;
  41. rtcs = find_compatible_devices("rtc", "pnpPNP,b00");
  42. if (rtcs == NULL || rtcs->addrs == NULL)
  43. return 0;
  44. base = rtcs->addrs[0].address;
  45. nvram_as1 = 0;
  46. nvram_as0 = base;
  47. nvram_data = base + 1;
  48. return 0;
  49. }
  50. int __chrp chrp_cmos_clock_read(int addr)
  51. {
  52. if (nvram_as1 != 0)
  53. outb(addr>>8, nvram_as1);
  54. outb(addr, nvram_as0);
  55. return (inb(nvram_data));
  56. }
  57. void __chrp chrp_cmos_clock_write(unsigned long val, int addr)
  58. {
  59. if (nvram_as1 != 0)
  60. outb(addr>>8, nvram_as1);
  61. outb(addr, nvram_as0);
  62. outb(val, nvram_data);
  63. return;
  64. }
  65. /*
  66.  * Set the hardware clock. -- Cort
  67.  */
  68. int __chrp chrp_set_rtc_time(unsigned long nowtime)
  69. {
  70. unsigned char save_control, save_freq_select;
  71. struct rtc_time tm;
  72. spin_lock(&rtc_lock);
  73. to_tm(nowtime, &tm);
  74. save_control = chrp_cmos_clock_read(RTC_CONTROL); /* tell the clock it's being set */
  75. chrp_cmos_clock_write((save_control|RTC_SET), RTC_CONTROL);
  76. save_freq_select = chrp_cmos_clock_read(RTC_FREQ_SELECT); /* stop and reset prescaler */
  77. chrp_cmos_clock_write((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
  78.         tm.tm_year -= 1900;
  79. if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
  80. BIN_TO_BCD(tm.tm_sec);
  81. BIN_TO_BCD(tm.tm_min);
  82. BIN_TO_BCD(tm.tm_hour);
  83. BIN_TO_BCD(tm.tm_mon);
  84. BIN_TO_BCD(tm.tm_mday);
  85. BIN_TO_BCD(tm.tm_year);
  86. }
  87. chrp_cmos_clock_write(tm.tm_sec,RTC_SECONDS);
  88. chrp_cmos_clock_write(tm.tm_min,RTC_MINUTES);
  89. chrp_cmos_clock_write(tm.tm_hour,RTC_HOURS);
  90. chrp_cmos_clock_write(tm.tm_mon,RTC_MONTH);
  91. chrp_cmos_clock_write(tm.tm_mday,RTC_DAY_OF_MONTH);
  92. chrp_cmos_clock_write(tm.tm_year,RTC_YEAR);
  93. /* The following flags have to be released exactly in this order,
  94.  * otherwise the DS12887 (popular MC146818A clone with integrated
  95.  * battery and quartz) will not reset the oscillator and will not
  96.  * update precisely 500 ms later. You won't find this mentioned in
  97.  * the Dallas Semiconductor data sheets, but who believes data
  98.  * sheets anyway ...                           -- Markus Kuhn
  99.  */
  100. chrp_cmos_clock_write(save_control, RTC_CONTROL);
  101. chrp_cmos_clock_write(save_freq_select, RTC_FREQ_SELECT);
  102. if ( (time_state == TIME_ERROR) || (time_state == TIME_BAD) )
  103. time_state = TIME_OK;
  104. spin_unlock(&rtc_lock);
  105. return 0;
  106. }
  107. unsigned long __chrp chrp_get_rtc_time(void)
  108. {
  109. unsigned int year, mon, day, hour, min, sec;
  110. int uip, i;
  111. /* The Linux interpretation of the CMOS clock register contents:
  112.  * When the Update-In-Progress (UIP) flag goes from 1 to 0, the
  113.  * RTC registers show the second which has precisely just started.
  114.  * Let's hope other operating systems interpret the RTC the same way.
  115.  */
  116. /* Since the UIP flag is set for about 2.2 ms and the clock
  117.  * is typically written with a precision of 1 jiffy, trying
  118.  * to obtain a precision better than a few milliseconds is 
  119.  * an illusion. Only consistency is interesting, this also
  120.  * allows to use the routine for /dev/rtc without a potential
  121.  * 1 second kernel busy loop triggered by any reader of /dev/rtc. 
  122.  */
  123. for ( i = 0; i<1000000; i++) {
  124. uip = chrp_cmos_clock_read(RTC_FREQ_SELECT);
  125. sec = chrp_cmos_clock_read(RTC_SECONDS);
  126. min = chrp_cmos_clock_read(RTC_MINUTES);
  127. hour = chrp_cmos_clock_read(RTC_HOURS);
  128. day = chrp_cmos_clock_read(RTC_DAY_OF_MONTH);
  129. mon = chrp_cmos_clock_read(RTC_MONTH);
  130. year = chrp_cmos_clock_read(RTC_YEAR);
  131. uip |= chrp_cmos_clock_read(RTC_FREQ_SELECT);
  132. if ((uip & RTC_UIP)==0) break;
  133. }
  134. if (!(chrp_cmos_clock_read(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
  135.   {
  136.     BCD_TO_BIN(sec);
  137.     BCD_TO_BIN(min);
  138.     BCD_TO_BIN(hour);
  139.     BCD_TO_BIN(day);
  140.     BCD_TO_BIN(mon);
  141.     BCD_TO_BIN(year);
  142.   }
  143. if ((year += 1900) < 1970)
  144. year += 100;
  145. return mktime(year, mon, day, hour, min, sec);
  146. }
  147. void __init chrp_calibrate_decr(void)
  148. {
  149. struct device_node *cpu;
  150. unsigned int freq, *fp;
  151. if (via_calibrate_decr())
  152. return;
  153. /*
  154.  * The cpu node should have a timebase-frequency property
  155.  * to tell us the rate at which the decrementer counts.
  156.  */
  157. freq = 16666000; /* hardcoded default */
  158. cpu = find_type_devices("cpu");
  159. if (cpu != 0) {
  160. fp = (unsigned int *)
  161. get_property(cpu, "timebase-frequency", NULL);
  162. if (fp != 0)
  163. freq = *fp;
  164. }
  165. printk("time_init: decrementer frequency = %u.%.6u MHzn",
  166.          freq/1000000, freq%1000000);
  167. tb_ticks_per_jiffy = freq / HZ;
  168. tb_to_us = mulhwu_scale_factor(freq, 1000000);
  169. }