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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copytight (C) 1999, 2000 Ralf Baechle (ralf@gnu.org)
  3.  * Copytight (C) 1999, 2000 Silicon Graphics, Inc.
  4.  */
  5. #include <linux/config.h>
  6. #include <linux/init.h>
  7. #include <linux/kernel.h>
  8. #include <linux/sched.h>
  9. #include <linux/interrupt.h>
  10. #include <linux/kernel_stat.h>
  11. #include <linux/param.h>
  12. #include <linux/timex.h>
  13. #include <linux/mm.h>
  14. #include <asm/time.h>
  15. #include <asm/pgtable.h>
  16. #include <asm/sgialib.h>
  17. #include <asm/sn/ioc3.h>
  18. #include <asm/m48t35.h>
  19. #include <asm/sn/klconfig.h>
  20. #include <asm/sn/arch.h>
  21. #include <asm/sn/addrs.h>
  22. #include <asm/sn/sn_private.h>
  23. #include <asm/sn/sn0/ip27.h>
  24. #include <asm/sn/sn0/hub.h>
  25. /*
  26.  * This is a hack; we really need to figure these values out dynamically
  27.  *
  28.  * Since 800 ns works very well with various HUB frequencies, such as
  29.  * 360, 380, 390 and 400 MHZ, we use 800 ns rtc cycle time.
  30.  *
  31.  * Ralf: which clock rate is used to feed the counter?
  32.  */
  33. #define NSEC_PER_CYCLE 800
  34. #define NSEC_PER_SEC 1000000000
  35. #define CYCLES_PER_SEC (NSEC_PER_SEC/NSEC_PER_CYCLE)
  36. #define CYCLES_PER_JIFFY (CYCLES_PER_SEC/HZ)
  37. static unsigned long ct_cur[NR_CPUS]; /* What counter should be at next timer irq */
  38. static long last_rtc_update; /* Last time the rtc clock got updated */
  39. extern rwlock_t xtime_lock;
  40. extern volatile unsigned long wall_jiffies;
  41. static int set_rtc_mmss(unsigned long nowtime)
  42. {
  43. int retval = 0;
  44. int real_seconds, real_minutes, cmos_minutes;
  45. struct m48t35_rtc *rtc;
  46. nasid_t nid;
  47. nid = get_nasid();
  48. rtc = (struct m48t35_rtc *)(KL_CONFIG_CH_CONS_INFO(nid)->memory_base +
  49. IOC3_BYTEBUS_DEV0);
  50. rtc->control |= M48T35_RTC_READ;
  51. cmos_minutes = rtc->min;
  52. BCD_TO_BIN(cmos_minutes);
  53. rtc->control &= ~M48T35_RTC_READ;
  54. /*
  55.  * Since we're only adjusting minutes and seconds, don't interfere with
  56.  * hour overflow. This avoids messing with unknown time zones but
  57.  * requires your RTC not to be off by more than 15 minutes
  58.  */
  59. real_seconds = nowtime % 60;
  60. real_minutes = nowtime / 60;
  61. if (((abs(real_minutes - cmos_minutes) + 15)/30) & 1)
  62. real_minutes += 30; /* correct for half hour time zone */
  63. real_minutes %= 60;
  64. if (abs(real_minutes - cmos_minutes) < 30) {
  65. BIN_TO_BCD(real_seconds);
  66. BIN_TO_BCD(real_minutes);
  67. rtc->control |= M48T35_RTC_SET;
  68. rtc->sec = real_seconds;
  69. rtc->min = real_minutes;
  70. rtc->control &= ~M48T35_RTC_SET;
  71. } else {
  72. printk(KERN_WARNING
  73.        "set_rtc_mmss: can't update from %d to %dn",
  74.        cmos_minutes, real_minutes);
  75. retval = -1;
  76. }
  77. return retval;
  78. }
  79. void rt_timer_interrupt(struct pt_regs *regs)
  80. {
  81. int cpu = smp_processor_id();
  82. int cpuA = ((cputoslice(cpu)) == 0);
  83. int irq = 9; /* XXX Assign number */
  84. irq_enter(cpu, irq);
  85. write_lock(&xtime_lock);
  86. again:
  87. LOCAL_HUB_S(cpuA ? PI_RT_PEND_A : PI_RT_PEND_B, 0); /* Ack  */
  88. ct_cur[cpu] += CYCLES_PER_JIFFY;
  89. LOCAL_HUB_S(cpuA ? PI_RT_COMPARE_A : PI_RT_COMPARE_B, ct_cur[cpu]);
  90. if (LOCAL_HUB_L(PI_RT_COUNT) >= ct_cur[cpu])
  91. goto again;
  92. kstat.irqs[cpu][irq]++; /* kstat only for bootcpu? */
  93. if (cpu == 0)
  94. do_timer(regs);
  95. #ifdef CONFIG_SMP
  96. update_process_times(user_mode(regs));
  97. #endif /* CONFIG_SMP */
  98. /*
  99.  * If we have an externally synchronized Linux clock, then update
  100.  * RTC clock accordingly every ~11 minutes. Set_rtc_mmss() has to be
  101.  * called as close as possible to when a second starts.
  102.  */
  103. if ((time_status & STA_UNSYNC) == 0 &&
  104.     xtime.tv_sec > last_rtc_update + 660) {
  105. if (xtime.tv_usec >= 1000000 - ((unsigned) tick) / 2) {
  106. if (set_rtc_mmss(xtime.tv_sec + 1) == 0)
  107. last_rtc_update = xtime.tv_sec;
  108. else
  109. last_rtc_update = xtime.tv_sec - 600;
  110. } else if (xtime.tv_usec <= ((unsigned) tick) / 2) {
  111. if (set_rtc_mmss(xtime.tv_sec) == 0)
  112. last_rtc_update = xtime.tv_sec;
  113. else
  114. last_rtc_update = xtime.tv_sec - 600;
  115. }
  116.         }
  117. write_unlock(&xtime_lock);
  118. irq_exit(cpu, irq);
  119. if (softirq_pending(cpu))
  120. do_softirq();
  121. }
  122. unsigned long ip27_do_gettimeoffset(void)
  123. {
  124. unsigned long ct_cur1;
  125. ct_cur1 = REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT) + CYCLES_PER_JIFFY;
  126. return (ct_cur1 - ct_cur[0]) * NSEC_PER_CYCLE / 1000;
  127. }
  128. /* Includes for ioc3_init().  */
  129. #include <asm/sn/types.h>
  130. #include <asm/sn/sn0/addrs.h>
  131. #include <asm/sn/sn0/hubni.h>
  132. #include <asm/sn/sn0/hubio.h>
  133. #include <asm/pci/bridge.h>
  134. static __init unsigned long get_m48t35_time(void)
  135. {
  136.         unsigned int year, month, date, hour, min, sec;
  137. struct m48t35_rtc *rtc;
  138. nasid_t nid;
  139. nid = get_nasid();
  140. rtc = (struct m48t35_rtc *)(KL_CONFIG_CH_CONS_INFO(nid)->memory_base +
  141. IOC3_BYTEBUS_DEV0);
  142. rtc->control |= M48T35_RTC_READ;
  143. sec = rtc->sec;
  144. min = rtc->min;
  145. hour = rtc->hour;
  146. date = rtc->date;
  147. month = rtc->month;
  148. year = rtc->year;
  149. rtc->control &= ~M48T35_RTC_READ;
  150.         BCD_TO_BIN(sec);
  151.         BCD_TO_BIN(min);
  152.         BCD_TO_BIN(hour);
  153.         BCD_TO_BIN(date);
  154.         BCD_TO_BIN(month);
  155.         BCD_TO_BIN(year);
  156.         year += 1970;
  157.         return mktime(year, month, date, hour, min, sec);
  158. }
  159. void __init ip27_time_init(void)
  160. {
  161. xtime.tv_sec = get_m48t35_time();
  162. xtime.tv_usec = 0;
  163. do_gettimeoffset = ip27_do_gettimeoffset;
  164. }
  165. void __init cpu_time_init(void)
  166. {
  167. lboard_t *board;
  168. klcpu_t *cpu;
  169. int cpuid;
  170. /* Don't use ARCS.  ARCS is fragile.  Klconfig is simple and sane.  */
  171. board = find_lboard(KL_CONFIG_INFO(get_nasid()), KLTYPE_IP27);
  172. if (!board)
  173. panic("Can't find board info for myself.");
  174. cpuid = LOCAL_HUB_L(PI_CPU_NUM) ? IP27_CPU0_INDEX : IP27_CPU1_INDEX;
  175. cpu = (klcpu_t *) KLCF_COMP(board, cpuid);
  176. if (!cpu)
  177. panic("No information about myself?");
  178. printk("CPU %d clock is %dMHz.n", smp_processor_id(), cpu->cpu_speed);
  179. set_cp0_status(SRB_TIMOCLK);
  180. }
  181. void __init hub_rtc_init(cnodeid_t cnode)
  182. {
  183. /*
  184.  * We only need to initialize the current node.
  185.  * If this is not the current node then it is a cpuless
  186.  * node and timeouts will not happen there.
  187.  */
  188. if (get_compact_nodeid() == cnode) {
  189. int cpu = smp_processor_id();
  190. LOCAL_HUB_S(PI_RT_EN_A, 1);
  191. LOCAL_HUB_S(PI_RT_EN_B, 1);
  192. LOCAL_HUB_S(PI_PROF_EN_A, 0);
  193. LOCAL_HUB_S(PI_PROF_EN_B, 0);
  194. ct_cur[cpu] = CYCLES_PER_JIFFY;
  195. LOCAL_HUB_S(PI_RT_COMPARE_A, ct_cur[cpu]);
  196. LOCAL_HUB_S(PI_RT_COUNT, 0);
  197. LOCAL_HUB_S(PI_RT_PEND_A, 0);
  198. LOCAL_HUB_S(PI_RT_COMPARE_B, ct_cur[cpu]);
  199. LOCAL_HUB_S(PI_RT_COUNT, 0);
  200. LOCAL_HUB_S(PI_RT_PEND_B, 0);
  201. }
  202. }