davinci.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * (C) Copyright 2011 DENX Software Engineering GmbH
  3. * Heiko Schocher <hs@denx.de>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <command.h>
  25. #include <rtc.h>
  26. #include <asm/io.h>
  27. #include <asm/arch/hardware.h>
  28. #if defined(CONFIG_CMD_DATE)
  29. int rtc_get(struct rtc_time *tmp)
  30. {
  31. struct davinci_rtc *rtc = davinci_rtc_base;
  32. unsigned long sec, min, hour, mday, wday, mon_cent, year;
  33. unsigned long status;
  34. status = readl(&rtc->status);
  35. if ((status & RTC_STATE_RUN) != RTC_STATE_RUN) {
  36. printf("RTC doesn't run\n");
  37. return -1;
  38. }
  39. if ((status & RTC_STATE_BUSY) == RTC_STATE_BUSY)
  40. udelay(20);
  41. sec = readl(&rtc->second);
  42. min = readl(&rtc->minutes);
  43. hour = readl(&rtc->hours);
  44. mday = readl(&rtc->day);
  45. wday = readl(&rtc->dotw);
  46. mon_cent = readl(&rtc->month);
  47. year = readl(&rtc->year);
  48. debug("Get RTC year: %02lx mon/cent: %02lx mday: %02lx wday: %02lx "
  49. "hr: %02lx min: %02lx sec: %02lx\n",
  50. year, mon_cent, mday, wday,
  51. hour, min, sec);
  52. tmp->tm_sec = bcd2bin(sec & 0x7F);
  53. tmp->tm_min = bcd2bin(min & 0x7F);
  54. tmp->tm_hour = bcd2bin(hour & 0x3F);
  55. tmp->tm_mday = bcd2bin(mday & 0x3F);
  56. tmp->tm_mon = bcd2bin(mon_cent & 0x1F);
  57. tmp->tm_year = bcd2bin(year) + 2000;
  58. tmp->tm_wday = bcd2bin(wday & 0x07);
  59. tmp->tm_yday = 0;
  60. tmp->tm_isdst = 0;
  61. debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
  62. tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
  63. tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
  64. return 0;
  65. }
  66. int rtc_set(struct rtc_time *tmp)
  67. {
  68. struct davinci_rtc *rtc = davinci_rtc_base;
  69. debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
  70. tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
  71. tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
  72. writel(bin2bcd(tmp->tm_year % 100), &rtc->year);
  73. writel(bin2bcd(tmp->tm_mon), &rtc->month);
  74. writel(bin2bcd(tmp->tm_wday), &rtc->dotw);
  75. writel(bin2bcd(tmp->tm_mday), &rtc->day);
  76. writel(bin2bcd(tmp->tm_hour), &rtc->hours);
  77. writel(bin2bcd(tmp->tm_min), &rtc->minutes);
  78. writel(bin2bcd(tmp->tm_sec), &rtc->second);
  79. return 0;
  80. }
  81. void rtc_reset(void)
  82. {
  83. struct davinci_rtc *rtc = davinci_rtc_base;
  84. /* run RTC counter */
  85. writel(0x01, &rtc->ctrl);
  86. }
  87. #endif