date.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * (C) Copyright 2001
  4. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. */
  6. #include <common.h>
  7. #include <command.h>
  8. #include <errno.h>
  9. #include <rtc.h>
  10. #if defined(CONFIG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
  11. #define FEBRUARY 2
  12. #define STARTOFTIME 1970
  13. #define SECDAY 86400L
  14. #define SECYR (SECDAY * 365)
  15. #define leapyear(year) ((year) % 4 == 0)
  16. #define days_in_year(a) (leapyear(a) ? 366 : 365)
  17. #define days_in_month(a) (month_days[(a) - 1])
  18. static int month_days[12] = {
  19. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
  20. };
  21. static int month_offset[] = {
  22. 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
  23. };
  24. /*
  25. * This only works for the Gregorian calendar - i.e. after 1752 (in the UK)
  26. */
  27. int rtc_calc_weekday(struct rtc_time *tm)
  28. {
  29. int leaps_to_date;
  30. int last_year;
  31. int day;
  32. if (tm->tm_year < 1753)
  33. return -1;
  34. last_year = tm->tm_year - 1;
  35. /* Number of leap corrections to apply up to end of last year */
  36. leaps_to_date = last_year / 4 - last_year / 100 + last_year / 400;
  37. /*
  38. * This year is a leap year if it is divisible by 4 except when it is
  39. * divisible by 100 unless it is divisible by 400
  40. *
  41. * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 is.
  42. */
  43. if (tm->tm_year % 4 == 0 &&
  44. ((tm->tm_year % 100 != 0) || (tm->tm_year % 400 == 0)) &&
  45. tm->tm_mon > 2) {
  46. /* We are past Feb. 29 in a leap year */
  47. day = 1;
  48. } else {
  49. day = 0;
  50. }
  51. day += last_year * 365 + leaps_to_date + month_offset[tm->tm_mon - 1] +
  52. tm->tm_mday;
  53. tm->tm_wday = day % 7;
  54. return 0;
  55. }
  56. int rtc_to_tm(int tim, struct rtc_time *tm)
  57. {
  58. register int i;
  59. register long hms, day;
  60. day = tim / SECDAY;
  61. hms = tim % SECDAY;
  62. /* Hours, minutes, seconds are easy */
  63. tm->tm_hour = hms / 3600;
  64. tm->tm_min = (hms % 3600) / 60;
  65. tm->tm_sec = (hms % 3600) % 60;
  66. /* Number of years in days */
  67. for (i = STARTOFTIME; day >= days_in_year(i); i++)
  68. day -= days_in_year(i);
  69. tm->tm_year = i;
  70. /* Number of months in days left */
  71. if (leapyear(tm->tm_year))
  72. days_in_month(FEBRUARY) = 29;
  73. for (i = 1; day >= days_in_month(i); i++)
  74. day -= days_in_month(i);
  75. days_in_month(FEBRUARY) = 28;
  76. tm->tm_mon = i;
  77. /* Days are what is left over (+1) from all that */
  78. tm->tm_mday = day + 1;
  79. /* Zero unused fields */
  80. tm->tm_yday = 0;
  81. tm->tm_isdst = 0;
  82. /*
  83. * Determine the day of week
  84. */
  85. return rtc_calc_weekday(tm);
  86. }
  87. /*
  88. * Converts Gregorian date to seconds since 1970-01-01 00:00:00.
  89. * Assumes input in normal date format, i.e. 1980-12-31 23:59:59
  90. * => year=1980, mon=12, day=31, hour=23, min=59, sec=59.
  91. *
  92. * [For the Julian calendar (which was used in Russia before 1917,
  93. * Britain & colonies before 1752, anywhere else before 1582,
  94. * and is still in use by some communities) leave out the
  95. * -year / 100 + year / 400 terms, and add 10.]
  96. *
  97. * This algorithm was first published by Gauss (I think).
  98. *
  99. * WARNING: this function will overflow on 2106-02-07 06:28:16 on
  100. * machines where long is 32-bit! (However, as time_t is signed, we
  101. * will already get problems at other places on 2038-01-19 03:14:08)
  102. */
  103. unsigned long rtc_mktime(const struct rtc_time *tm)
  104. {
  105. int mon = tm->tm_mon;
  106. int year = tm->tm_year;
  107. int days, hours;
  108. mon -= 2;
  109. if (0 >= (int)mon) { /* 1..12 -> 11, 12, 1..10 */
  110. mon += 12; /* Puts Feb last since it has leap day */
  111. year -= 1;
  112. }
  113. days = (unsigned long)(year / 4 - year / 100 + year / 400 +
  114. 367 * mon / 12 + tm->tm_mday) +
  115. year * 365 - 719499;
  116. hours = days * 24 + tm->tm_hour;
  117. return (hours * 60 + tm->tm_min) * 60 + tm->tm_sec;
  118. }
  119. #endif