time.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * arch/sh/kernel/time.c
  3. *
  4. * Copyright (C) 1999 Tetsuya Okada & Niibe Yutaka
  5. * Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>
  6. * Copyright (C) 2002 - 2009 Paul Mundt
  7. * Copyright (C) 2002 M. R. Brown <mrbrown@linux-sh.org>
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file "COPYING" in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/init.h>
  16. #include <linux/profile.h>
  17. #include <linux/timex.h>
  18. #include <linux/sched.h>
  19. #include <linux/clockchips.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/smp.h>
  22. #include <linux/rtc.h>
  23. #include <asm/clock.h>
  24. #include <asm/rtc.h>
  25. #include <asm/timer.h>
  26. struct sys_timer *sys_timer;
  27. /* Dummy RTC ops */
  28. static void null_rtc_get_time(struct timespec *tv)
  29. {
  30. tv->tv_sec = mktime(2000, 1, 1, 0, 0, 0);
  31. tv->tv_nsec = 0;
  32. }
  33. static int null_rtc_set_time(const time_t secs)
  34. {
  35. return 0;
  36. }
  37. void (*rtc_sh_get_time)(struct timespec *) = null_rtc_get_time;
  38. int (*rtc_sh_set_time)(const time_t) = null_rtc_set_time;
  39. #ifdef CONFIG_GENERIC_CMOS_UPDATE
  40. unsigned long read_persistent_clock(void)
  41. {
  42. struct timespec tv;
  43. rtc_sh_get_time(&tv);
  44. return tv.tv_sec;
  45. }
  46. int update_persistent_clock(struct timespec now)
  47. {
  48. return rtc_sh_set_time(now.tv_sec);
  49. }
  50. #endif
  51. unsigned int get_rtc_time(struct rtc_time *tm)
  52. {
  53. if (rtc_sh_get_time != null_rtc_get_time) {
  54. struct timespec tv;
  55. rtc_sh_get_time(&tv);
  56. rtc_time_to_tm(tv.tv_sec, tm);
  57. }
  58. return RTC_24H;
  59. }
  60. EXPORT_SYMBOL(get_rtc_time);
  61. int set_rtc_time(struct rtc_time *tm)
  62. {
  63. unsigned long secs;
  64. rtc_tm_to_time(tm, &secs);
  65. return rtc_sh_set_time(secs);
  66. }
  67. EXPORT_SYMBOL(set_rtc_time);
  68. static int __init rtc_generic_init(void)
  69. {
  70. struct platform_device *pdev;
  71. if (rtc_sh_get_time == null_rtc_get_time)
  72. return -ENODEV;
  73. pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
  74. if (IS_ERR(pdev))
  75. return PTR_ERR(pdev);
  76. return 0;
  77. }
  78. module_init(rtc_generic_init);
  79. void (*board_time_init)(void);
  80. struct clocksource clocksource_sh = {
  81. .name = "SuperH",
  82. };
  83. unsigned long long sched_clock(void)
  84. {
  85. unsigned long long cycles;
  86. /* jiffies based sched_clock if no clocksource is installed */
  87. if (!clocksource_sh.rating)
  88. return (jiffies_64 - INITIAL_JIFFIES) * (NSEC_PER_SEC / HZ);
  89. cycles = clocksource_sh.read(&clocksource_sh);
  90. return cyc2ns(&clocksource_sh, cycles);
  91. }
  92. static void __init sh_late_time_init(void)
  93. {
  94. /*
  95. * Make sure all compiled-in early timers register themselves.
  96. * Run probe() for one "earlytimer" device.
  97. */
  98. early_platform_driver_register_all("earlytimer");
  99. if (early_platform_driver_probe("earlytimer", 1, 0))
  100. return;
  101. /*
  102. * Find the timer to use as the system timer, it will be
  103. * initialized for us.
  104. */
  105. sys_timer = get_sys_timer();
  106. if (unlikely(!sys_timer))
  107. panic("System timer missing.\n");
  108. printk(KERN_INFO "Using %s for system timer\n", sys_timer->name);
  109. }
  110. void __init time_init(void)
  111. {
  112. if (board_time_init)
  113. board_time_init();
  114. clk_init();
  115. rtc_sh_get_time(&xtime);
  116. set_normalized_timespec(&wall_to_monotonic,
  117. -xtime.tv_sec, -xtime.tv_nsec);
  118. #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
  119. local_timer_setup(smp_processor_id());
  120. #endif
  121. late_time_init = sh_late_time_init;
  122. }