rtc_lib.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * rtc and date/time utility functions
  3. *
  4. * Copyright (C) 2005-06 Tower Technologies
  5. * Author: Alessandro Zummo <a.zummo@towertech.it>
  6. *
  7. * based on arch/arm/common/rtctime.c and other bits
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <drivers/rtc.h>
  14. #include <kernel.h>
  15. static const unsigned char rtc_days_in_month[] = {
  16. 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
  17. };
  18. #if 0
  19. static const unsigned short rtc_ydays[2][13] = {
  20. /* Normal years */
  21. { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
  22. /* Leap years */
  23. { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
  24. };
  25. #endif
  26. #define LEAPS_THRU_END_OF(y) ((y)/4 - (y)/100 + (y)/400)
  27. static inline bool is_leap_year(unsigned int year)
  28. {
  29. return (!(year % 4) && (year % 100)) || !(year % 400);
  30. }
  31. /*
  32. * The number of days in the month.
  33. */
  34. int rtc_month_days(unsigned int month, unsigned int year)
  35. {
  36. return rtc_days_in_month[month] + (is_leap_year(year) && month == 1);
  37. }
  38. #if 0
  39. /*
  40. * The number of days since January 1. (0 to 365)
  41. */
  42. int rtc_year_days(unsigned int day, unsigned int month, unsigned int year)
  43. {
  44. return rtc_ydays[is_leap_year(year)][month] + day-1;
  45. }
  46. #endif
  47. /*
  48. * Convert seconds since 01-01-1970 00:00:00 to Gregorian date.
  49. */
  50. void rtc_time_to_tm(uint32_t time, struct rtc_time *tm)
  51. {
  52. unsigned int month, year;
  53. int days;
  54. days = time / 86400;
  55. time -= (unsigned int) days * 86400;
  56. /* day of the week, 1970-01-01 was a Thursday */
  57. tm->tm_wday = (days + 4) % 7;
  58. year = 1970 + days / 365;
  59. days -= (year - 1970) * 365
  60. + LEAPS_THRU_END_OF(year - 1)
  61. - LEAPS_THRU_END_OF(1970 - 1);
  62. if (days < 0) {
  63. year -= 1;
  64. days += 365 + is_leap_year(year);
  65. }
  66. tm->tm_year = year - 1900;
  67. // tm->tm_yday = days + 1;
  68. for (month = 0; month < 11; month++) {
  69. int newdays;
  70. newdays = days - rtc_month_days(month, year);
  71. if (newdays < 0)
  72. break;
  73. days = newdays;
  74. }
  75. tm->tm_mon = month;
  76. tm->tm_mday = days + 1;
  77. tm->tm_hour = time / 3600;
  78. time -= tm->tm_hour * 3600;
  79. tm->tm_min = time / 60;
  80. tm->tm_sec = time - tm->tm_min * 60;
  81. tm->tm_ms = 0;
  82. // tm->tm_isdst = 0;
  83. }
  84. /*
  85. * Does the rtc_time represent a valid date/time?
  86. */
  87. int rtc_valid_tm(struct rtc_time *tm)
  88. {
  89. if (tm->tm_year < 70
  90. || ((unsigned)tm->tm_mon) >= 12
  91. || tm->tm_mday < 1
  92. || tm->tm_mday > rtc_month_days(tm->tm_mon, tm->tm_year + 1900)
  93. || ((unsigned)tm->tm_hour) >= 24
  94. || ((unsigned)tm->tm_min) >= 60
  95. || ((unsigned)tm->tm_sec) >= 60
  96. || ((unsigned)tm->tm_ms) >= 1000)
  97. return -EINVAL;
  98. return 0;
  99. }
  100. unsigned long
  101. mktime(const unsigned int year0, const unsigned int mon0,
  102. const unsigned int day, const unsigned int hour,
  103. const unsigned int min, const unsigned int sec)
  104. {
  105. unsigned int mon = mon0, year = year0;
  106. /* 1..12 -> 11,12,1..10 */
  107. if (0 >= (int) (mon -= 2)) {
  108. mon += 12; /* Puts Feb last since it has leap day */
  109. year -= 1;
  110. }
  111. return ((((unsigned long)
  112. (year/4 - year/100 + year/400 + 367*mon/12 + day) +
  113. year*365 - 719499
  114. )*24 + hour /* now have hours */
  115. )*60 + min /* now have minutes */
  116. )*60 + sec; /* finally seconds */
  117. }
  118. /*
  119. * Convert Gregorian date to seconds since 01-01-1970 00:00:00.
  120. */
  121. int rtc_tm_to_time(struct rtc_time *tm, uint32_t *time)
  122. {
  123. *time = mktime(tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
  124. tm->tm_hour, tm->tm_min, tm->tm_sec);
  125. return 0;
  126. }
  127. void print_rtc_time(struct rtc_time *tm)
  128. {
  129. printk("rtc_time: %02d-%02d-%02d %02d:%02d:%02d:%03d\n",
  130. 1900 + tm->tm_year, tm->tm_mon + 1, tm->tm_mday,
  131. tm->tm_hour, tm->tm_min, tm->tm_sec, tm->tm_ms);
  132. }