time.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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/hwblk.h>
  25. #include <asm/rtc.h>
  26. /* Dummy RTC ops */
  27. static void null_rtc_get_time(struct timespec *tv)
  28. {
  29. tv->tv_sec = mktime(2000, 1, 1, 0, 0, 0);
  30. tv->tv_nsec = 0;
  31. }
  32. static int null_rtc_set_time(const time_t secs)
  33. {
  34. return 0;
  35. }
  36. void (*rtc_sh_get_time)(struct timespec *) = null_rtc_get_time;
  37. int (*rtc_sh_set_time)(const time_t) = null_rtc_set_time;
  38. #ifdef CONFIG_GENERIC_CMOS_UPDATE
  39. unsigned long read_persistent_clock(void)
  40. {
  41. struct timespec tv;
  42. rtc_sh_get_time(&tv);
  43. return tv.tv_sec;
  44. }
  45. int update_persistent_clock(struct timespec now)
  46. {
  47. return rtc_sh_set_time(now.tv_sec);
  48. }
  49. #endif
  50. unsigned int get_rtc_time(struct rtc_time *tm)
  51. {
  52. if (rtc_sh_get_time != null_rtc_get_time) {
  53. struct timespec tv;
  54. rtc_sh_get_time(&tv);
  55. rtc_time_to_tm(tv.tv_sec, tm);
  56. }
  57. return RTC_24H;
  58. }
  59. EXPORT_SYMBOL(get_rtc_time);
  60. int set_rtc_time(struct rtc_time *tm)
  61. {
  62. unsigned long secs;
  63. rtc_tm_to_time(tm, &secs);
  64. return rtc_sh_set_time(secs);
  65. }
  66. EXPORT_SYMBOL(set_rtc_time);
  67. static int __init rtc_generic_init(void)
  68. {
  69. struct platform_device *pdev;
  70. if (rtc_sh_get_time == null_rtc_get_time)
  71. return -ENODEV;
  72. pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
  73. if (IS_ERR(pdev))
  74. return PTR_ERR(pdev);
  75. return 0;
  76. }
  77. module_init(rtc_generic_init);
  78. void (*board_time_init)(void);
  79. static void __init sh_late_time_init(void)
  80. {
  81. /*
  82. * Make sure all compiled-in early timers register themselves.
  83. *
  84. * Run probe() for two "earlytimer" devices, these will be the
  85. * clockevents and clocksource devices respectively. In the event
  86. * that only a clockevents device is available, we -ENODEV on the
  87. * clocksource and the jiffies clocksource is used transparently
  88. * instead. No error handling is necessary here.
  89. */
  90. early_platform_driver_register_all("earlytimer");
  91. early_platform_driver_probe("earlytimer", 2, 0);
  92. }
  93. void __init time_init(void)
  94. {
  95. if (board_time_init)
  96. board_time_init();
  97. hwblk_init();
  98. clk_init();
  99. rtc_sh_get_time(&xtime);
  100. set_normalized_timespec(&wall_to_monotonic,
  101. -xtime.tv_sec, -xtime.tv_nsec);
  102. #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
  103. local_timer_setup(smp_processor_id());
  104. #endif
  105. late_time_init = sh_late_time_init;
  106. }