ftrtc010.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Faraday FTRTC010 Real Time Clock
  3. *
  4. * (C) Copyright 2009 Faraday Technology
  5. * Po-Yu Chuang <ratbert@faraday-tech.com>
  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 as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. #include <config.h>
  22. #include <common.h>
  23. #include <rtc.h>
  24. #include <asm/io.h>
  25. struct ftrtc010 {
  26. unsigned int sec; /* 0x00 */
  27. unsigned int min; /* 0x04 */
  28. unsigned int hour; /* 0x08 */
  29. unsigned int day; /* 0x0c */
  30. unsigned int alarm_sec; /* 0x10 */
  31. unsigned int alarm_min; /* 0x14 */
  32. unsigned int alarm_hour; /* 0x18 */
  33. unsigned int record; /* 0x1c */
  34. unsigned int cr; /* 0x20 */
  35. unsigned int wsec; /* 0x24 */
  36. unsigned int wmin; /* 0x28 */
  37. unsigned int whour; /* 0x2c */
  38. unsigned int wday; /* 0x30 */
  39. unsigned int intr; /* 0x34 */
  40. unsigned int div; /* 0x38 */
  41. unsigned int rev; /* 0x3c */
  42. };
  43. /*
  44. * RTC Control Register
  45. */
  46. #define FTRTC010_CR_ENABLE (1 << 0)
  47. #define FTRTC010_CR_INTERRUPT_SEC (1 << 1) /* per second irq */
  48. #define FTRTC010_CR_INTERRUPT_MIN (1 << 2) /* per minute irq */
  49. #define FTRTC010_CR_INTERRUPT_HR (1 << 3) /* per hour irq */
  50. #define FTRTC010_CR_INTERRUPT_DAY (1 << 4) /* per day irq */
  51. static struct ftrtc010 *rtc = (struct ftrtc010 *)CONFIG_FTRTC010_BASE;
  52. static void ftrtc010_enable(void)
  53. {
  54. writel(FTRTC010_CR_ENABLE, &rtc->cr);
  55. }
  56. /*
  57. * return current time in seconds
  58. */
  59. static unsigned long ftrtc010_time(void)
  60. {
  61. unsigned long day;
  62. unsigned long hour;
  63. unsigned long minute;
  64. unsigned long second;
  65. unsigned long second2;
  66. do {
  67. second = readl(&rtc->sec);
  68. day = readl(&rtc->day);
  69. hour = readl(&rtc->hour);
  70. minute = readl(&rtc->min);
  71. second2 = readl(&rtc->sec);
  72. } while (second != second2);
  73. return day * 24 * 60 * 60 + hour * 60 * 60 + minute * 60 + second;
  74. }
  75. /*
  76. * Get the current time from the RTC
  77. */
  78. int rtc_get(struct rtc_time *tmp)
  79. {
  80. unsigned long now;
  81. debug("%s(): record register: %x\n",
  82. __func__, readl(&rtc->record));
  83. #ifdef CONFIG_FTRTC010_PCLK
  84. now = (ftrtc010_time() + readl(&rtc->record)) / RTC_DIV_COUNT;
  85. #else /* CONFIG_FTRTC010_EXTCLK */
  86. now = ftrtc010_time() + readl(&rtc->record);
  87. #endif
  88. to_tm(now, tmp);
  89. return 0;
  90. }
  91. /*
  92. * Set the RTC
  93. */
  94. int rtc_set(struct rtc_time *tmp)
  95. {
  96. unsigned long new;
  97. unsigned long now;
  98. debug("%s(): DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
  99. __func__,
  100. tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
  101. tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
  102. new = mktime(tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_hour,
  103. tmp->tm_min, tmp->tm_sec);
  104. now = ftrtc010_time();
  105. debug("%s(): write %lx to record register\n", __func__, new - now);
  106. writel(new - now, &rtc->record);
  107. return 0;
  108. }
  109. void rtc_reset(void)
  110. {
  111. debug("%s()\n", __func__);
  112. ftrtc010_enable();
  113. }