time.c 2.7 KB

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