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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * ########################################################################
  6.  *
  7.  *  This program is free software; you can distribute it and/or modify it
  8.  *  under the terms of the GNU General Public License (Version 2) as
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope it will be useful, but WITHOUT
  12.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *  for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License along
  17.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  18.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19.  *
  20.  * ########################################################################
  21.  *
  22.  * Setting up the clock on the MIPS boards.
  23.  *
  24.  */
  25. #include <linux/types.h>
  26. #include <linux/config.h>
  27. #include <linux/init.h>
  28. #include <linux/kernel_stat.h>
  29. #include <linux/sched.h>
  30. #include <linux/spinlock.h>
  31. #include <asm/mipsregs.h>
  32. #include <asm/ptrace.h>
  33. #include <asm/hardirq.h>
  34. #include <asm/div64.h>
  35. #include <asm/cpu.h>
  36. #include <asm/time.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/mc146818rtc.h>
  39. #include <linux/timex.h>
  40. #include <asm/mips-boards/generic.h>
  41. #include <asm/mips-boards/prom.h>
  42. static unsigned int r4k_offset; /* Amount to increment compare reg each time */
  43. static unsigned int r4k_cur;    /* What counter should be at next timer irq */
  44. #define ALLINTS (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4 | IE_IRQ5)
  45. #if defined(CONFIG_MIPS_ATLAS)
  46. static char display_string[] = "        LINUX ON ATLAS       ";
  47. #endif
  48. #if defined(CONFIG_MIPS_MALTA)
  49. static char display_string[] = "        LINUX ON MALTA       ";
  50. #endif
  51. static unsigned int display_count = 0;
  52. #define MAX_DISPLAY_COUNT (sizeof(display_string) - 8)
  53. #define MIPS_CPU_TIMER_IRQ 7
  54. static unsigned int timer_tick_count=0;
  55. static inline void ack_r4ktimer(unsigned int newval)
  56. {
  57. write_32bit_cp0_register(CP0_COMPARE, newval);
  58. }
  59. void mips_timer_interrupt(struct pt_regs *regs)
  60. {
  61. if ((timer_tick_count++ % HZ) == 0) {
  62. mips_display_message(&display_string[display_count++]);
  63. if (display_count == MAX_DISPLAY_COUNT)
  64.         display_count = 0;
  65. }
  66. ll_timer_interrupt(MIPS_CPU_TIMER_IRQ, regs);
  67. }
  68. /*
  69.  * Figure out the r4k offset, the amount to increment the compare
  70.  * register for each time tick.
  71.  * Use the RTC to calculate offset.
  72.  */
  73. static unsigned int __init cal_r4koff(void)
  74. {
  75. unsigned int flags;
  76. __save_and_cli(flags);
  77. /* Start counter exactly on falling edge of update flag */
  78. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  79. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  80. /* Start r4k counter. */
  81. write_32bit_cp0_register(CP0_COUNT, 0);
  82. /* Read counter exactly on falling edge of update flag */
  83. while (CMOS_READ(RTC_REG_A) & RTC_UIP);
  84. while (!(CMOS_READ(RTC_REG_A) & RTC_UIP));
  85. mips_counter_frequency = read_32bit_cp0_register(CP0_COUNT);
  86. /* restore interrupts */
  87. __restore_flags(flags);
  88. return (mips_counter_frequency / HZ);
  89. }
  90. unsigned long __init mips_rtc_get_time(void)
  91. {
  92. unsigned int year, mon, day, hour, min, sec;
  93. unsigned char save_control;
  94. save_control = CMOS_READ(RTC_CONTROL);
  95. /* Freeze it. */
  96. CMOS_WRITE(save_control | RTC_SET, RTC_CONTROL);
  97. /* Read regs. */
  98. sec = CMOS_READ(RTC_SECONDS);
  99. min = CMOS_READ(RTC_MINUTES);
  100. hour = CMOS_READ(RTC_HOURS);
  101. if (!(save_control & RTC_24H))
  102. {
  103. if ((hour & 0xf) == 0xc)
  104.         hour &= 0x80;
  105.         if (hour & 0x80)
  106.         hour = (hour & 0xf) + 12;
  107. }
  108. day = CMOS_READ(RTC_DAY_OF_MONTH);
  109. mon = CMOS_READ(RTC_MONTH);
  110. year = CMOS_READ(RTC_YEAR);
  111. /* Unfreeze clock. */
  112. CMOS_WRITE(save_control, RTC_CONTROL);
  113. if ((year += 1900) < 1970)
  114.         year += 100;
  115. return mktime(year, mon, day, hour, min, sec);
  116. }
  117. void __init mips_time_init(void)
  118. {
  119.         unsigned int est_freq, flags;
  120. __save_and_cli(flags);
  121.         /* Set Data mode - binary. */
  122.         CMOS_WRITE(CMOS_READ(RTC_CONTROL) | RTC_DM_BINARY, RTC_CONTROL);
  123. printk("calculating r4koff... ");
  124. r4k_offset = cal_r4koff();
  125. printk("%08x(%d)n", r4k_offset, r4k_offset);
  126.         if ((read_32bit_cp0_register(CP0_PRID) & 0xffff00) ==
  127.     (PRID_COMP_MIPS | PRID_IMP_20KC))
  128. est_freq = r4k_offset*HZ;
  129. else
  130. est_freq = 2*r4k_offset*HZ;
  131. est_freq += 5000;    /* round */
  132. est_freq -= est_freq%10000;
  133. printk("CPU frequency %d.%02d MHzn", est_freq/1000000,
  134.        (est_freq%1000000)*100/1000000);
  135. __restore_flags(flags);
  136. }
  137. void __init mips_timer_setup(struct irqaction *irq)
  138. {
  139. /* we are using the cpu counter for timer interrupts */
  140. irq->handler = no_action;     /* we use our own handler */
  141. setup_irq(MIPS_CPU_TIMER_IRQ, irq);
  142.         /* to generate the first timer interrupt */
  143. r4k_cur = (read_32bit_cp0_register(CP0_COUNT) + r4k_offset);
  144. write_32bit_cp0_register(CP0_COMPARE, r4k_cur);
  145. set_cp0_status(ALLINTS);
  146. }