time.c 2.6 KB

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