s3c44b0_rtc.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * (C) Copyright 2004
  3. * DAVE Srl
  4. * http://www.dave-tech.it
  5. * http://www.wawnet.biz
  6. * mailto:info@wawnet.biz
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. /*
  27. * S3C44B0 CPU specific code
  28. */
  29. #include <common.h>
  30. #include <command.h>
  31. #include <asm/hardware.h>
  32. #include <rtc.h>
  33. int rtc_get (struct rtc_time* tm)
  34. {
  35. RTCCON |= 1;
  36. tm->tm_year = bcd2bin(BCDYEAR);
  37. tm->tm_mon = bcd2bin(BCDMON);
  38. tm->tm_wday = bcd2bin(BCDDATE);
  39. tm->tm_mday = bcd2bin(BCDDAY);
  40. tm->tm_hour = bcd2bin(BCDHOUR);
  41. tm->tm_min = bcd2bin(BCDMIN);
  42. tm->tm_sec = bcd2bin(BCDSEC);
  43. if (tm->tm_sec==0) {
  44. /* we have to re-read the rtc data because of the "one second deviation" problem */
  45. /* see RTC datasheet for more info about it */
  46. tm->tm_year = bcd2bin(BCDYEAR);
  47. tm->tm_mon = bcd2bin(BCDMON);
  48. tm->tm_mday = bcd2bin(BCDDAY);
  49. tm->tm_wday = bcd2bin(BCDDATE);
  50. tm->tm_hour = bcd2bin(BCDHOUR);
  51. tm->tm_min = bcd2bin(BCDMIN);
  52. tm->tm_sec = bcd2bin(BCDSEC);
  53. }
  54. RTCCON &= ~1;
  55. if(tm->tm_year >= 70)
  56. tm->tm_year += 1900;
  57. else
  58. tm->tm_year += 2000;
  59. return 0;
  60. }
  61. int rtc_set (struct rtc_time* tm)
  62. {
  63. if(tm->tm_year < 2000)
  64. tm->tm_year -= 1900;
  65. else
  66. tm->tm_year -= 2000;
  67. RTCCON |= 1;
  68. BCDYEAR = bin2bcd(tm->tm_year);
  69. BCDMON = bin2bcd(tm->tm_mon);
  70. BCDDAY = bin2bcd(tm->tm_mday);
  71. BCDDATE = bin2bcd(tm->tm_wday);
  72. BCDHOUR = bin2bcd(tm->tm_hour);
  73. BCDMIN = bin2bcd(tm->tm_min);
  74. BCDSEC = bin2bcd(tm->tm_sec);
  75. RTCCON &= 1;
  76. return 0;
  77. }
  78. void rtc_reset (void)
  79. {
  80. RTCCON |= 1;
  81. BCDYEAR = 0;
  82. BCDMON = 0;
  83. BCDDAY = 0;
  84. BCDDATE = 0;
  85. BCDHOUR = 0;
  86. BCDMIN = 0;
  87. BCDSEC = 0;
  88. RTCCON &= 1;
  89. }