rtc_m41t81.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*
  2. * Copyright (C) 2000, 2001 Broadcom Corporation
  3. *
  4. * Copyright (C) 2002 MontaVista Software Inc.
  5. * Author: jsun@mvista.com or jsun@junsun.net
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. *
  12. */
  13. #include <linux/bcd.h>
  14. #include <linux/types.h>
  15. #include <linux/time.h>
  16. #include <asm/time.h>
  17. #include <asm/addrspace.h>
  18. #include <asm/io.h>
  19. #include <asm/sibyte/sb1250.h>
  20. #include <asm/sibyte/sb1250_regs.h>
  21. #include <asm/sibyte/sb1250_smbus.h>
  22. /* M41T81 definitions */
  23. /*
  24. * Register bits
  25. */
  26. #define M41T81REG_SC_ST 0x80 /* stop bit */
  27. #define M41T81REG_HR_CB 0x40 /* century bit */
  28. #define M41T81REG_HR_CEB 0x80 /* century enable bit */
  29. #define M41T81REG_CTL_S 0x20 /* sign bit */
  30. #define M41T81REG_CTL_FT 0x40 /* frequency test bit */
  31. #define M41T81REG_CTL_OUT 0x80 /* output level */
  32. #define M41T81REG_WD_RB0 0x01 /* watchdog resolution bit 0 */
  33. #define M41T81REG_WD_RB1 0x02 /* watchdog resolution bit 1 */
  34. #define M41T81REG_WD_BMB0 0x04 /* watchdog multiplier bit 0 */
  35. #define M41T81REG_WD_BMB1 0x08 /* watchdog multiplier bit 1 */
  36. #define M41T81REG_WD_BMB2 0x10 /* watchdog multiplier bit 2 */
  37. #define M41T81REG_WD_BMB3 0x20 /* watchdog multiplier bit 3 */
  38. #define M41T81REG_WD_BMB4 0x40 /* watchdog multiplier bit 4 */
  39. #define M41T81REG_AMO_ABE 0x20 /* alarm in "battery back-up mode" enable bit */
  40. #define M41T81REG_AMO_SQWE 0x40 /* square wave enable */
  41. #define M41T81REG_AMO_AFE 0x80 /* alarm flag enable flag */
  42. #define M41T81REG_ADT_RPT5 0x40 /* alarm repeat mode bit 5 */
  43. #define M41T81REG_ADT_RPT4 0x80 /* alarm repeat mode bit 4 */
  44. #define M41T81REG_AHR_RPT3 0x80 /* alarm repeat mode bit 3 */
  45. #define M41T81REG_AHR_HT 0x40 /* halt update bit */
  46. #define M41T81REG_AMN_RPT2 0x80 /* alarm repeat mode bit 2 */
  47. #define M41T81REG_ASC_RPT1 0x80 /* alarm repeat mode bit 1 */
  48. #define M41T81REG_FLG_AF 0x40 /* alarm flag (read only) */
  49. #define M41T81REG_FLG_WDF 0x80 /* watchdog flag (read only) */
  50. #define M41T81REG_SQW_RS0 0x10 /* sqw frequency bit 0 */
  51. #define M41T81REG_SQW_RS1 0x20 /* sqw frequency bit 1 */
  52. #define M41T81REG_SQW_RS2 0x40 /* sqw frequency bit 2 */
  53. #define M41T81REG_SQW_RS3 0x80 /* sqw frequency bit 3 */
  54. /*
  55. * Register numbers
  56. */
  57. #define M41T81REG_TSC 0x00 /* tenths/hundredths of second */
  58. #define M41T81REG_SC 0x01 /* seconds */
  59. #define M41T81REG_MN 0x02 /* minute */
  60. #define M41T81REG_HR 0x03 /* hour/century */
  61. #define M41T81REG_DY 0x04 /* day of week */
  62. #define M41T81REG_DT 0x05 /* date of month */
  63. #define M41T81REG_MO 0x06 /* month */
  64. #define M41T81REG_YR 0x07 /* year */
  65. #define M41T81REG_CTL 0x08 /* control */
  66. #define M41T81REG_WD 0x09 /* watchdog */
  67. #define M41T81REG_AMO 0x0A /* alarm: month */
  68. #define M41T81REG_ADT 0x0B /* alarm: date */
  69. #define M41T81REG_AHR 0x0C /* alarm: hour */
  70. #define M41T81REG_AMN 0x0D /* alarm: minute */
  71. #define M41T81REG_ASC 0x0E /* alarm: second */
  72. #define M41T81REG_FLG 0x0F /* flags */
  73. #define M41T81REG_SQW 0x13 /* square wave register */
  74. #define M41T81_CCR_ADDRESS 0x68
  75. #define SMB_CSR(reg) IOADDR(A_SMB_REGISTER(1, reg))
  76. static int m41t81_read(uint8_t addr)
  77. {
  78. while (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_BUSY)
  79. ;
  80. __raw_writeq(addr & 0xff, SMB_CSR(R_SMB_CMD));
  81. __raw_writeq(V_SMB_ADDR(M41T81_CCR_ADDRESS) | V_SMB_TT_WR1BYTE,
  82. SMB_CSR(R_SMB_START));
  83. while (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_BUSY)
  84. ;
  85. __raw_writeq(V_SMB_ADDR(M41T81_CCR_ADDRESS) | V_SMB_TT_RD1BYTE,
  86. SMB_CSR(R_SMB_START));
  87. while (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_BUSY)
  88. ;
  89. if (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_ERROR) {
  90. /* Clear error bit by writing a 1 */
  91. __raw_writeq(M_SMB_ERROR, SMB_CSR(R_SMB_STATUS));
  92. return -1;
  93. }
  94. return __raw_readq(SMB_CSR(R_SMB_DATA)) & 0xff;
  95. }
  96. static int m41t81_write(uint8_t addr, int b)
  97. {
  98. while (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_BUSY)
  99. ;
  100. __raw_writeq(addr & 0xff, SMB_CSR(R_SMB_CMD));
  101. __raw_writeq(b & 0xff, SMB_CSR(R_SMB_DATA));
  102. __raw_writeq(V_SMB_ADDR(M41T81_CCR_ADDRESS) | V_SMB_TT_WR2BYTE,
  103. SMB_CSR(R_SMB_START));
  104. while (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_BUSY)
  105. ;
  106. if (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_ERROR) {
  107. /* Clear error bit by writing a 1 */
  108. __raw_writeq(M_SMB_ERROR, SMB_CSR(R_SMB_STATUS));
  109. return -1;
  110. }
  111. /* read the same byte again to make sure it is written */
  112. __raw_writeq(V_SMB_ADDR(M41T81_CCR_ADDRESS) | V_SMB_TT_RD1BYTE,
  113. SMB_CSR(R_SMB_START));
  114. while (__raw_readq(SMB_CSR(R_SMB_STATUS)) & M_SMB_BUSY)
  115. ;
  116. return 0;
  117. }
  118. int m41t81_set_time(unsigned long t)
  119. {
  120. struct rtc_time tm;
  121. unsigned long flags;
  122. /* Note we don't care about the century */
  123. rtc_time_to_tm(t, &tm);
  124. /*
  125. * Note the write order matters as it ensures the correctness.
  126. * When we write sec, 10th sec is clear. It is reasonable to
  127. * believe we should finish writing min within a second.
  128. */
  129. spin_lock_irqsave(&rtc_lock, flags);
  130. tm.tm_sec = bin2bcd(tm.tm_sec);
  131. m41t81_write(M41T81REG_SC, tm.tm_sec);
  132. tm.tm_min = bin2bcd(tm.tm_min);
  133. m41t81_write(M41T81REG_MN, tm.tm_min);
  134. tm.tm_hour = bin2bcd(tm.tm_hour);
  135. tm.tm_hour = (tm.tm_hour & 0x3f) | (m41t81_read(M41T81REG_HR) & 0xc0);
  136. m41t81_write(M41T81REG_HR, tm.tm_hour);
  137. /* tm_wday starts from 0 to 6 */
  138. if (tm.tm_wday == 0) tm.tm_wday = 7;
  139. tm.tm_wday = bin2bcd(tm.tm_wday);
  140. m41t81_write(M41T81REG_DY, tm.tm_wday);
  141. tm.tm_mday = bin2bcd(tm.tm_mday);
  142. m41t81_write(M41T81REG_DT, tm.tm_mday);
  143. /* tm_mon starts from 0, *ick* */
  144. tm.tm_mon ++;
  145. tm.tm_mon = bin2bcd(tm.tm_mon);
  146. m41t81_write(M41T81REG_MO, tm.tm_mon);
  147. /* we don't do century, everything is beyond 2000 */
  148. tm.tm_year %= 100;
  149. tm.tm_year = bin2bcd(tm.tm_year);
  150. m41t81_write(M41T81REG_YR, tm.tm_year);
  151. spin_unlock_irqrestore(&rtc_lock, flags);
  152. return 0;
  153. }
  154. unsigned long m41t81_get_time(void)
  155. {
  156. unsigned int year, mon, day, hour, min, sec;
  157. unsigned long flags;
  158. /*
  159. * min is valid if two reads of sec are the same.
  160. */
  161. for (;;) {
  162. spin_lock_irqsave(&rtc_lock, flags);
  163. sec = m41t81_read(M41T81REG_SC);
  164. min = m41t81_read(M41T81REG_MN);
  165. if (sec == m41t81_read(M41T81REG_SC)) break;
  166. spin_unlock_irqrestore(&rtc_lock, flags);
  167. }
  168. hour = m41t81_read(M41T81REG_HR) & 0x3f;
  169. day = m41t81_read(M41T81REG_DT);
  170. mon = m41t81_read(M41T81REG_MO);
  171. year = m41t81_read(M41T81REG_YR);
  172. spin_unlock_irqrestore(&rtc_lock, flags);
  173. sec = bcd2bin(sec);
  174. min = bcd2bin(min);
  175. hour = bcd2bin(hour);
  176. day = bcd2bin(day);
  177. mon = bcd2bin(mon);
  178. year = bcd2bin(year);
  179. year += 2000;
  180. return mktime(year, mon, day, hour, min, sec);
  181. }
  182. int m41t81_probe(void)
  183. {
  184. unsigned int tmp;
  185. /* enable chip if it is not enabled yet */
  186. tmp = m41t81_read(M41T81REG_SC);
  187. m41t81_write(M41T81REG_SC, tmp & 0x7f);
  188. return m41t81_read(M41T81REG_SC) != -1;
  189. }