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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/kernel/time.c
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Hartmut Penner (hp@de.ibm.com),
  7.  *               Martin Schwidefsky (schwidefsky@de.ibm.com),
  8.  *               Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
  9.  *
  10.  *  Derived from "arch/i386/kernel/time.c"
  11.  *    Copyright (C) 1991, 1992, 1995  Linus Torvalds
  12.  */
  13. #include <linux/errno.h>
  14. #include <linux/sched.h>
  15. #include <linux/kernel.h>
  16. #include <linux/param.h>
  17. #include <linux/string.h>
  18. #include <linux/mm.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/time.h>
  21. #include <linux/delay.h>
  22. #include <linux/init.h>
  23. #include <linux/smp.h>
  24. #include <linux/types.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/delay.h>
  27. #include <linux/timex.h>
  28. #include <linux/config.h>
  29. #include <asm/irq.h>
  30. #include <asm/s390_ext.h>
  31. /* change this if you have some constant time drift */
  32. #define USECS_PER_JIFFY     ((unsigned long) 1000000/HZ)
  33. #define CLK_TICKS_PER_JIFFY ((unsigned long) USECS_PER_JIFFY << 12)
  34. #define TICK_SIZE tick
  35. static ext_int_info_t ext_int_info_timer;
  36. static uint64_t init_timer_cc;
  37. extern rwlock_t xtime_lock;
  38. extern unsigned long wall_jiffies;
  39. void tod_to_timeval(__u64 todval, struct timeval *xtime)
  40. {
  41.         todval >>= 12;
  42.         xtime->tv_sec = todval / 1000000;
  43.         xtime->tv_usec = todval % 1000000;
  44. }
  45. static inline unsigned long do_gettimeoffset(void) 
  46. {
  47. __u64 now;
  48. asm ("STCK 0(%0)" : : "a" (&now) : "memory", "cc");
  49.         now = (now - init_timer_cc) >> 12;
  50. /* We require the offset from the latest update of xtime */
  51. now -= (__u64) wall_jiffies*USECS_PER_JIFFY;
  52. return (unsigned long) now;
  53. }
  54. /*
  55.  * This version of gettimeofday has microsecond resolution.
  56.  */
  57. void do_gettimeofday(struct timeval *tv)
  58. {
  59. unsigned long flags;
  60. unsigned long usec, sec;
  61. read_lock_irqsave(&xtime_lock, flags);
  62. sec = xtime.tv_sec;
  63. usec = xtime.tv_usec + do_gettimeoffset();
  64. read_unlock_irqrestore(&xtime_lock, flags);
  65. while (usec >= 1000000) {
  66. usec -= 1000000;
  67. sec++;
  68. }
  69. tv->tv_sec = sec;
  70. tv->tv_usec = usec;
  71. }
  72. void do_settimeofday(struct timeval *tv)
  73. {
  74. write_lock_irq(&xtime_lock);
  75. /* This is revolting. We need to set the xtime.tv_usec
  76.  * correctly. However, the value in this location is
  77.  * is value at the last tick.
  78.  * Discover what correction gettimeofday
  79.  * would have done, and then undo it!
  80.  */
  81. tv->tv_usec -= do_gettimeoffset();
  82. while (tv->tv_usec < 0) {
  83. tv->tv_usec += 1000000;
  84. tv->tv_sec--;
  85. }
  86. xtime = *tv;
  87. time_adjust = 0; /* stop active adjtime() */
  88. time_status |= STA_UNSYNC;
  89. time_maxerror = NTP_PHASE_LIMIT;
  90. time_esterror = NTP_PHASE_LIMIT;
  91. write_unlock_irq(&xtime_lock);
  92. }
  93. /*
  94.  * timer_interrupt() needs to keep up the real-time clock,
  95.  * as well as call the "do_timer()" routine every clocktick
  96.  */
  97. #ifdef CONFIG_SMP
  98. extern __u16 boot_cpu_addr;
  99. #endif
  100. static void do_comparator_interrupt(struct pt_regs *regs, __u16 error_code)
  101. {
  102. int cpu = smp_processor_id();
  103. irq_enter(cpu, 0);
  104. /*
  105.  * set clock comparator for next tick
  106.  */
  107.         S390_lowcore.jiffy_timer += CLK_TICKS_PER_JIFFY;
  108.         asm volatile ("SCKC %0" : : "m" (S390_lowcore.jiffy_timer));
  109. #ifdef CONFIG_SMP
  110. if (S390_lowcore.cpu_data.cpu_addr == boot_cpu_addr)
  111. write_lock(&xtime_lock);
  112. update_process_times(user_mode(regs));
  113. if (S390_lowcore.cpu_data.cpu_addr == boot_cpu_addr) {
  114. do_timer(regs);
  115. write_unlock(&xtime_lock);
  116. }
  117. #else
  118. do_timer(regs);
  119. #endif
  120. irq_exit(cpu, 0);
  121. }
  122. /*
  123.  * Start the clock comparator on the current CPU
  124.  */
  125. void init_cpu_timer(void)
  126. {
  127. unsigned long cr0;
  128.         /* allow clock comparator timer interrupt */
  129.         asm volatile ("STCTG 0,0,%0" : "=m" (cr0) : : "memory");
  130.         cr0 |= 0x800;
  131.         asm volatile ("LCTLG 0,0,%0" : : "m" (cr0) : "memory");
  132. S390_lowcore.jiffy_timer = (__u64) jiffies * CLK_TICKS_PER_JIFFY;
  133. S390_lowcore.jiffy_timer += init_timer_cc + CLK_TICKS_PER_JIFFY;
  134. asm volatile ("SCKC %0" : : "m" (S390_lowcore.jiffy_timer));
  135. }
  136. /*
  137.  * Initialize the TOD clock and the CPU timer of
  138.  * the boot cpu.
  139.  */
  140. void __init time_init(void)
  141. {
  142.         __u64 set_time_cc;
  143. int cc;
  144.         /* kick the TOD clock */
  145.         asm volatile ("STCK 0(%1)nt"
  146.                       "IPM  %0nt"
  147.                       "SRL  %0,28" : "=r" (cc) : "a" (&init_timer_cc) 
  148.    : "memory", "cc");
  149.         switch (cc) {
  150.         case 0: /* clock in set state: all is fine */
  151.                 break;
  152.         case 1: /* clock in non-set state: FIXME */
  153.                 printk("time_init: TOD clock in non-set staten");
  154.                 break;
  155.         case 2: /* clock in error state: FIXME */
  156.                 printk("time_init: TOD clock in error staten");
  157.                 break;
  158.         case 3: /* clock in stopped or not-operational state: FIXME */
  159.                 printk("time_init: TOD clock stopped/non-operationaln");
  160.                 break;
  161.         }
  162. /* set xtime */
  163.         set_time_cc = init_timer_cc - 0x8126d60e46000000LL +
  164.                       (0x3c26700LL*1000000*4096);
  165.         tod_to_timeval(set_time_cc, &xtime);
  166.         /* request the 0x1004 external interrupt */
  167.         if (register_early_external_interrupt(0x1004, do_comparator_interrupt,
  168.       &ext_int_info_timer) != 0)
  169.                 panic("Couldn't request external interrupt 0x1004");
  170.         /* init CPU timer */
  171.         init_cpu_timer();
  172. }