time.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * Carsten Langgaard, carstenl@mips.com
  3. * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
  4. *
  5. * Copyright (C) 2003 MontaVista Software Inc.
  6. * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  7. *
  8. * ########################################################################
  9. *
  10. * This program is free software; you can distribute it and/or modify it
  11. * under the terms of the GNU General Public License (Version 2) as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope it will be useful, but WITHOUT
  15. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  17. * for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License along
  20. * with this program; if not, write to the Free Software Foundation, Inc.,
  21. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  22. *
  23. * ########################################################################
  24. *
  25. * Setting up the clock on the MIPS boards.
  26. */
  27. #include <linux/init.h>
  28. #include <linux/kernel_stat.h>
  29. #include <linux/sched.h>
  30. #include <linux/time.h>
  31. #include <linux/spinlock.h>
  32. #include <linux/mc146818rtc.h>
  33. #include <asm/time.h>
  34. #include <asm/mipsregs.h>
  35. #include <asm/ptrace.h>
  36. #include <asm/it8172/it8172.h>
  37. #include <asm/it8172/it8172_int.h>
  38. #include <asm/debug.h>
  39. #define IT8172_RTC_ADR_REG (IT8172_PCI_IO_BASE + IT_RTC_BASE)
  40. #define IT8172_RTC_DAT_REG (IT8172_RTC_ADR_REG + 1)
  41. #define IT8172_RTC_CENTURY_REG (IT8172_PCI_IO_BASE + IT_RTC_CENTURY)
  42. static volatile char *rtc_adr_reg = (char*)KSEG1ADDR(IT8172_RTC_ADR_REG);
  43. static volatile char *rtc_dat_reg = (char*)KSEG1ADDR(IT8172_RTC_DAT_REG);
  44. static volatile char *rtc_century_reg = (char*)KSEG1ADDR(IT8172_RTC_CENTURY_REG);
  45. unsigned char it8172_rtc_read_data(unsigned long addr)
  46. {
  47. unsigned char retval;
  48. *rtc_adr_reg = addr;
  49. retval = *rtc_dat_reg;
  50. return retval;
  51. }
  52. void it8172_rtc_write_data(unsigned char data, unsigned long addr)
  53. {
  54. *rtc_adr_reg = addr;
  55. *rtc_dat_reg = data;
  56. }
  57. #undef CMOS_READ
  58. #undef CMOS_WRITE
  59. #define CMOS_READ(addr) it8172_rtc_read_data(addr)
  60. #define CMOS_WRITE(data, addr) it8172_rtc_write_data(data, addr)
  61. static unsigned char saved_control; /* remember rtc control reg */
  62. static inline int rtc_24h(void) { return saved_control & RTC_24H; }
  63. static inline int rtc_dm_binary(void) { return saved_control & RTC_DM_BINARY; }
  64. static inline unsigned char
  65. bin_to_hw(unsigned char c)
  66. {
  67. if (rtc_dm_binary())
  68. return c;
  69. else
  70. return ((c/10) << 4) + (c%10);
  71. }
  72. static inline unsigned char
  73. hw_to_bin(unsigned char c)
  74. {
  75. if (rtc_dm_binary())
  76. return c;
  77. else
  78. return (c>>4)*10 + (c &0xf);
  79. }
  80. /* 0x80 bit indicates pm in 12-hour format */
  81. static inline unsigned char
  82. hour_bin_to_hw(unsigned char c)
  83. {
  84. if (rtc_24h())
  85. return bin_to_hw(c);
  86. if (c >= 12)
  87. return 0x80 | bin_to_hw((c==12)?12:c-12); /* 12 is 12pm */
  88. else
  89. return bin_to_hw((c==0)?12:c); /* 0 is 12 AM, not 0 am */
  90. }
  91. static inline unsigned char
  92. hour_hw_to_bin(unsigned char c)
  93. {
  94. unsigned char tmp = hw_to_bin(c&0x3f);
  95. if (rtc_24h())
  96. return tmp;
  97. if (c & 0x80)
  98. return (tmp==12)?12:tmp+12; /* 12pm is 12, not 24 */
  99. else
  100. return (tmp==12)?0:tmp; /* 12am is 0 */
  101. }
  102. static unsigned long r4k_offset; /* Amount to increment compare reg each time */
  103. static unsigned long r4k_cur; /* What counter should be at next timer irq */
  104. extern unsigned int mips_hpt_frequency;
  105. /*
  106. * Figure out the r4k offset, the amount to increment the compare
  107. * register for each time tick.
  108. * Use the RTC to calculate offset.
  109. */
  110. static unsigned long __init cal_r4koff(void)
  111. {
  112. unsigned int flags;
  113. local_irq_save(flags);
  114. /* Start counter exactly on falling edge of update flag */
  115. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  116. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  117. /* Start r4k counter. */
  118. write_c0_count(0);
  119. /* Read counter exactly on falling edge of update flag */
  120. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  121. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  122. mips_hpt_frequency = read_c0_count();
  123. /* restore interrupts */
  124. local_irq_restore(flags);
  125. return (mips_hpt_frequency / HZ);
  126. }
  127. static unsigned long
  128. it8172_rtc_get_time(void)
  129. {
  130. unsigned int year, mon, day, hour, min, sec;
  131. unsigned int flags;
  132. /* avoid update-in-progress. */
  133. for (;;) {
  134. local_irq_save(flags);
  135. if (! (CMOS_READ(RTC_REG_A) & RTC_UIP))
  136. break;
  137. /* don't hold intr closed all the time */
  138. local_irq_restore(flags);
  139. }
  140. /* Read regs. */
  141. sec = hw_to_bin(CMOS_READ(RTC_SECONDS));
  142. min = hw_to_bin(CMOS_READ(RTC_MINUTES));
  143. hour = hour_hw_to_bin(CMOS_READ(RTC_HOURS));
  144. day = hw_to_bin(CMOS_READ(RTC_DAY_OF_MONTH));
  145. mon = hw_to_bin(CMOS_READ(RTC_MONTH));
  146. year = hw_to_bin(CMOS_READ(RTC_YEAR)) +
  147. hw_to_bin(*rtc_century_reg) * 100;
  148. /* restore interrupts */
  149. local_irq_restore(flags);
  150. return mktime(year, mon, day, hour, min, sec);
  151. }
  152. static int
  153. it8172_rtc_set_time(unsigned long t)
  154. {
  155. struct rtc_time tm;
  156. unsigned int flags;
  157. /* convert */
  158. to_tm(t, &tm);
  159. /* avoid update-in-progress. */
  160. for (;;) {
  161. local_irq_save(flags);
  162. if (! (CMOS_READ(RTC_REG_A) & RTC_UIP))
  163. break;
  164. /* don't hold intr closed all the time */
  165. local_irq_restore(flags);
  166. }
  167. *rtc_century_reg = bin_to_hw(tm.tm_year/100);
  168. CMOS_WRITE(bin_to_hw(tm.tm_sec), RTC_SECONDS);
  169. CMOS_WRITE(bin_to_hw(tm.tm_min), RTC_MINUTES);
  170. CMOS_WRITE(hour_bin_to_hw(tm.tm_hour), RTC_HOURS);
  171. CMOS_WRITE(bin_to_hw(tm.tm_mday), RTC_DAY_OF_MONTH);
  172. CMOS_WRITE(bin_to_hw(tm.tm_mon+1), RTC_MONTH); /* tm_mon starts from 0 */
  173. CMOS_WRITE(bin_to_hw(tm.tm_year%100), RTC_YEAR);
  174. /* restore interrupts */
  175. local_irq_restore(flags);
  176. return 0;
  177. }
  178. void __init it8172_time_init(void)
  179. {
  180. unsigned int est_freq, flags;
  181. local_irq_save(flags);
  182. saved_control = CMOS_READ(RTC_CONTROL);
  183. printk("calculating r4koff... ");
  184. r4k_offset = cal_r4koff();
  185. printk("%08lx(%d)\n", r4k_offset, (int) r4k_offset);
  186. est_freq = 2*r4k_offset*HZ;
  187. est_freq += 5000; /* round */
  188. est_freq -= est_freq%10000;
  189. printk("CPU frequency %d.%02d MHz\n", est_freq/1000000,
  190. (est_freq%1000000)*100/1000000);
  191. local_irq_restore(flags);
  192. rtc_mips_get_time = it8172_rtc_get_time;
  193. rtc_mips_set_time = it8172_rtc_set_time;
  194. }
  195. #define ALLINTS (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4 | IE_IRQ5)
  196. void __init it8172_timer_setup(struct irqaction *irq)
  197. {
  198. puts("timer_setup\n");
  199. put32(NR_IRQS);
  200. puts("");
  201. /* we are using the cpu counter for timer interrupts */
  202. setup_irq(MIPS_CPU_TIMER_IRQ, irq);
  203. /* to generate the first timer interrupt */
  204. r4k_cur = (read_c0_count() + r4k_offset);
  205. write_c0_compare(r4k_cur);
  206. set_c0_status(ALLINTS);
  207. }