hctosys.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * RTC subsystem, initialize system time on startup
  3. *
  4. * Copyright (C) 2005 Tower Technologies
  5. * Author: Alessandro Zummo <a.zummo@towertech.it>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/rtc.h>
  12. /* IMPORTANT: the RTC only stores whole seconds. It is arbitrary
  13. * whether it stores the most close value or the value with partial
  14. * seconds truncated. However, it is important that we use it to store
  15. * the truncated value. This is because otherwise it is necessary,
  16. * in an rtc sync function, to read both xtime.tv_sec and
  17. * xtime.tv_nsec. On some processors (i.e. ARM), an atomic read
  18. * of >32bits is not possible. So storing the most close value would
  19. * slow down the sync API. So here we have the truncated value and
  20. * the best guess is to add 0.5s.
  21. */
  22. static int __init rtc_hctosys(void)
  23. {
  24. int err = -ENODEV;
  25. struct rtc_time tm;
  26. struct timespec tv = {
  27. .tv_nsec = NSEC_PER_SEC >> 1,
  28. };
  29. struct rtc_device *rtc = rtc_class_open(CONFIG_RTC_HCTOSYS_DEVICE);
  30. if (rtc == NULL) {
  31. pr_err("%s: unable to open rtc device (%s)\n",
  32. __FILE__, CONFIG_RTC_HCTOSYS_DEVICE);
  33. goto err_open;
  34. }
  35. err = rtc_read_time(rtc, &tm);
  36. if (err) {
  37. dev_err(rtc->dev.parent,
  38. "hctosys: unable to read the hardware clock\n");
  39. goto err_read;
  40. }
  41. err = rtc_valid_tm(&tm);
  42. if (err) {
  43. dev_err(rtc->dev.parent,
  44. "hctosys: invalid date/time\n");
  45. goto err_invalid;
  46. }
  47. rtc_tm_to_time(&tm, &tv.tv_sec);
  48. err = do_settimeofday(&tv);
  49. dev_info(rtc->dev.parent,
  50. "setting system clock to "
  51. "%d-%02d-%02d %02d:%02d:%02d UTC (%u)\n",
  52. tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
  53. tm.tm_hour, tm.tm_min, tm.tm_sec,
  54. (unsigned int) tv.tv_sec);
  55. err_invalid:
  56. err_read:
  57. rtc_class_close(rtc);
  58. err_open:
  59. rtc_hctosys_ret = err;
  60. return err;
  61. }
  62. late_initcall(rtc_hctosys);