date.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * (C) Copyright 2001
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. /*
  8. * Date & Time support for Philips PCF8563 RTC
  9. */
  10. #include <common.h>
  11. #include <command.h>
  12. #include <rtc.h>
  13. #if defined(CONFIG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
  14. #define FEBRUARY 2
  15. #define STARTOFTIME 1970
  16. #define SECDAY 86400L
  17. #define SECYR (SECDAY * 365)
  18. #define leapyear(year) ((year) % 4 == 0)
  19. #define days_in_year(a) (leapyear(a) ? 366 : 365)
  20. #define days_in_month(a) (month_days[(a) - 1])
  21. static int month_days[12] = {
  22. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
  23. };
  24. /*
  25. * This only works for the Gregorian calendar - i.e. after 1752 (in the UK)
  26. */
  27. void GregorianDay(struct rtc_time * tm)
  28. {
  29. int leapsToDate;
  30. int lastYear;
  31. int day;
  32. int MonthOffset[] = { 0,31,59,90,120,151,181,212,243,273,304,334 };
  33. lastYear=tm->tm_year-1;
  34. /*
  35. * Number of leap corrections to apply up to end of last year
  36. */
  37. leapsToDate = lastYear/4 - lastYear/100 + lastYear/400;
  38. /*
  39. * This year is a leap year if it is divisible by 4 except when it is
  40. * divisible by 100 unless it is divisible by 400
  41. *
  42. * e.g. 1904 was a leap year, 1900 was not, 1996 is, and 2000 will be
  43. */
  44. if((tm->tm_year%4==0) &&
  45. ((tm->tm_year%100!=0) || (tm->tm_year%400==0)) &&
  46. (tm->tm_mon>2)) {
  47. /*
  48. * We are past Feb. 29 in a leap year
  49. */
  50. day=1;
  51. } else {
  52. day=0;
  53. }
  54. day += lastYear*365 + leapsToDate + MonthOffset[tm->tm_mon-1] + tm->tm_mday;
  55. tm->tm_wday=day%7;
  56. }
  57. void to_tm(int tim, struct rtc_time * tm)
  58. {
  59. register int i;
  60. register long hms, day;
  61. day = tim / SECDAY;
  62. hms = tim % SECDAY;
  63. /* Hours, minutes, seconds are easy */
  64. tm->tm_hour = hms / 3600;
  65. tm->tm_min = (hms % 3600) / 60;
  66. tm->tm_sec = (hms % 3600) % 60;
  67. /* Number of years in days */
  68. for (i = STARTOFTIME; day >= days_in_year(i); i++) {
  69. day -= days_in_year(i);
  70. }
  71. tm->tm_year = i;
  72. /* Number of months in days left */
  73. if (leapyear(tm->tm_year)) {
  74. days_in_month(FEBRUARY) = 29;
  75. }
  76. for (i = 1; day >= days_in_month(i); i++) {
  77. day -= days_in_month(i);
  78. }
  79. days_in_month(FEBRUARY) = 28;
  80. tm->tm_mon = i;
  81. /* Days are what is left over (+1) from all that. */
  82. tm->tm_mday = day + 1;
  83. /*
  84. * Determine the day of week
  85. */
  86. GregorianDay(tm);
  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 were 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
  104. mktime (unsigned int year, unsigned int mon,
  105. unsigned int day, unsigned int hour,
  106. unsigned int min, unsigned int sec)
  107. {
  108. if (0 >= (int) (mon -= 2)) { /* 1..12 -> 11,12,1..10 */
  109. mon += 12; /* Puts Feb last since it has leap day */
  110. year -= 1;
  111. }
  112. return (((
  113. (unsigned long) (year/4 - year/100 + year/400 + 367*mon/12 + day) +
  114. year*365 - 719499
  115. )*24 + hour /* now have hours */
  116. )*60 + min /* now have minutes */
  117. )*60 + sec; /* finally seconds */
  118. }
  119. #endif