rtc-rs5c348.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * A SPI driver for the Ricoh RS5C348 RTC
  3. *
  4. * Copyright (C) 2006 Atsushi Nemoto <anemo@mba.ocn.ne.jp>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * The board specific init code should provide characteristics of this
  11. * device:
  12. * Mode 1 (High-Active, Shift-Then-Sample), High Avtive CS
  13. */
  14. #include <linux/bcd.h>
  15. #include <linux/delay.h>
  16. #include <linux/device.h>
  17. #include <linux/errno.h>
  18. #include <linux/init.h>
  19. #include <linux/kernel.h>
  20. #include <linux/string.h>
  21. #include <linux/slab.h>
  22. #include <linux/rtc.h>
  23. #include <linux/workqueue.h>
  24. #include <linux/spi/spi.h>
  25. #include <linux/module.h>
  26. #define RS5C348_REG_SECS 0
  27. #define RS5C348_REG_MINS 1
  28. #define RS5C348_REG_HOURS 2
  29. #define RS5C348_REG_WDAY 3
  30. #define RS5C348_REG_DAY 4
  31. #define RS5C348_REG_MONTH 5
  32. #define RS5C348_REG_YEAR 6
  33. #define RS5C348_REG_CTL1 14
  34. #define RS5C348_REG_CTL2 15
  35. #define RS5C348_SECS_MASK 0x7f
  36. #define RS5C348_MINS_MASK 0x7f
  37. #define RS5C348_HOURS_MASK 0x3f
  38. #define RS5C348_WDAY_MASK 0x03
  39. #define RS5C348_DAY_MASK 0x3f
  40. #define RS5C348_MONTH_MASK 0x1f
  41. #define RS5C348_BIT_PM 0x20 /* REG_HOURS */
  42. #define RS5C348_BIT_Y2K 0x80 /* REG_MONTH */
  43. #define RS5C348_BIT_24H 0x20 /* REG_CTL1 */
  44. #define RS5C348_BIT_XSTP 0x10 /* REG_CTL2 */
  45. #define RS5C348_BIT_VDET 0x40 /* REG_CTL2 */
  46. #define RS5C348_CMD_W(addr) (((addr) << 4) | 0x08) /* single write */
  47. #define RS5C348_CMD_R(addr) (((addr) << 4) | 0x0c) /* single read */
  48. #define RS5C348_CMD_MW(addr) (((addr) << 4) | 0x00) /* burst write */
  49. #define RS5C348_CMD_MR(addr) (((addr) << 4) | 0x04) /* burst read */
  50. struct rs5c348_plat_data {
  51. struct rtc_device *rtc;
  52. int rtc_24h;
  53. };
  54. static int
  55. rs5c348_rtc_set_time(struct device *dev, struct rtc_time *tm)
  56. {
  57. struct spi_device *spi = to_spi_device(dev);
  58. struct rs5c348_plat_data *pdata = dev_get_platdata(&spi->dev);
  59. u8 txbuf[5+7], *txp;
  60. int ret;
  61. /* Transfer 5 bytes before writing SEC. This gives 31us for carry. */
  62. txp = txbuf;
  63. txbuf[0] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  64. txbuf[1] = 0; /* dummy */
  65. txbuf[2] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  66. txbuf[3] = 0; /* dummy */
  67. txbuf[4] = RS5C348_CMD_MW(RS5C348_REG_SECS); /* cmd, sec, ... */
  68. txp = &txbuf[5];
  69. txp[RS5C348_REG_SECS] = bin2bcd(tm->tm_sec);
  70. txp[RS5C348_REG_MINS] = bin2bcd(tm->tm_min);
  71. if (pdata->rtc_24h) {
  72. txp[RS5C348_REG_HOURS] = bin2bcd(tm->tm_hour);
  73. } else {
  74. /* hour 0 is AM12, noon is PM12 */
  75. txp[RS5C348_REG_HOURS] = bin2bcd((tm->tm_hour + 11) % 12 + 1) |
  76. (tm->tm_hour >= 12 ? RS5C348_BIT_PM : 0);
  77. }
  78. txp[RS5C348_REG_WDAY] = bin2bcd(tm->tm_wday);
  79. txp[RS5C348_REG_DAY] = bin2bcd(tm->tm_mday);
  80. txp[RS5C348_REG_MONTH] = bin2bcd(tm->tm_mon + 1) |
  81. (tm->tm_year >= 100 ? RS5C348_BIT_Y2K : 0);
  82. txp[RS5C348_REG_YEAR] = bin2bcd(tm->tm_year % 100);
  83. /* write in one transfer to avoid data inconsistency */
  84. ret = spi_write_then_read(spi, txbuf, sizeof(txbuf), NULL, 0);
  85. udelay(62); /* Tcsr 62us */
  86. return ret;
  87. }
  88. static int
  89. rs5c348_rtc_read_time(struct device *dev, struct rtc_time *tm)
  90. {
  91. struct spi_device *spi = to_spi_device(dev);
  92. struct rs5c348_plat_data *pdata = dev_get_platdata(&spi->dev);
  93. u8 txbuf[5], rxbuf[7];
  94. int ret;
  95. /* Transfer 5 byte befores reading SEC. This gives 31us for carry. */
  96. txbuf[0] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  97. txbuf[1] = 0; /* dummy */
  98. txbuf[2] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  99. txbuf[3] = 0; /* dummy */
  100. txbuf[4] = RS5C348_CMD_MR(RS5C348_REG_SECS); /* cmd, sec, ... */
  101. /* read in one transfer to avoid data inconsistency */
  102. ret = spi_write_then_read(spi, txbuf, sizeof(txbuf),
  103. rxbuf, sizeof(rxbuf));
  104. udelay(62); /* Tcsr 62us */
  105. if (ret < 0)
  106. return ret;
  107. tm->tm_sec = bcd2bin(rxbuf[RS5C348_REG_SECS] & RS5C348_SECS_MASK);
  108. tm->tm_min = bcd2bin(rxbuf[RS5C348_REG_MINS] & RS5C348_MINS_MASK);
  109. tm->tm_hour = bcd2bin(rxbuf[RS5C348_REG_HOURS] & RS5C348_HOURS_MASK);
  110. if (!pdata->rtc_24h) {
  111. if (rxbuf[RS5C348_REG_HOURS] & RS5C348_BIT_PM) {
  112. tm->tm_hour -= 20;
  113. tm->tm_hour %= 12;
  114. tm->tm_hour += 12;
  115. } else
  116. tm->tm_hour %= 12;
  117. }
  118. tm->tm_wday = bcd2bin(rxbuf[RS5C348_REG_WDAY] & RS5C348_WDAY_MASK);
  119. tm->tm_mday = bcd2bin(rxbuf[RS5C348_REG_DAY] & RS5C348_DAY_MASK);
  120. tm->tm_mon =
  121. bcd2bin(rxbuf[RS5C348_REG_MONTH] & RS5C348_MONTH_MASK) - 1;
  122. /* year is 1900 + tm->tm_year */
  123. tm->tm_year = bcd2bin(rxbuf[RS5C348_REG_YEAR]) +
  124. ((rxbuf[RS5C348_REG_MONTH] & RS5C348_BIT_Y2K) ? 100 : 0);
  125. if (rtc_valid_tm(tm) < 0) {
  126. dev_err(&spi->dev, "retrieved date/time is not valid.\n");
  127. rtc_time_to_tm(0, tm);
  128. }
  129. return 0;
  130. }
  131. static const struct rtc_class_ops rs5c348_rtc_ops = {
  132. .read_time = rs5c348_rtc_read_time,
  133. .set_time = rs5c348_rtc_set_time,
  134. };
  135. static struct spi_driver rs5c348_driver;
  136. static int rs5c348_probe(struct spi_device *spi)
  137. {
  138. int ret;
  139. struct rtc_device *rtc;
  140. struct rs5c348_plat_data *pdata;
  141. pdata = devm_kzalloc(&spi->dev, sizeof(struct rs5c348_plat_data),
  142. GFP_KERNEL);
  143. if (!pdata)
  144. return -ENOMEM;
  145. spi->dev.platform_data = pdata;
  146. /* Check D7 of SECOND register */
  147. ret = spi_w8r8(spi, RS5C348_CMD_R(RS5C348_REG_SECS));
  148. if (ret < 0 || (ret & 0x80)) {
  149. dev_err(&spi->dev, "not found.\n");
  150. goto kfree_exit;
  151. }
  152. dev_info(&spi->dev, "spiclk %u KHz.\n",
  153. (spi->max_speed_hz + 500) / 1000);
  154. /* turn RTC on if it was not on */
  155. ret = spi_w8r8(spi, RS5C348_CMD_R(RS5C348_REG_CTL2));
  156. if (ret < 0)
  157. goto kfree_exit;
  158. if (ret & (RS5C348_BIT_XSTP | RS5C348_BIT_VDET)) {
  159. u8 buf[2];
  160. struct rtc_time tm;
  161. if (ret & RS5C348_BIT_VDET)
  162. dev_warn(&spi->dev, "voltage-low detected.\n");
  163. if (ret & RS5C348_BIT_XSTP)
  164. dev_warn(&spi->dev, "oscillator-stop detected.\n");
  165. rtc_time_to_tm(0, &tm); /* 1970/1/1 */
  166. ret = rs5c348_rtc_set_time(&spi->dev, &tm);
  167. if (ret < 0)
  168. goto kfree_exit;
  169. buf[0] = RS5C348_CMD_W(RS5C348_REG_CTL2);
  170. buf[1] = 0;
  171. ret = spi_write_then_read(spi, buf, sizeof(buf), NULL, 0);
  172. if (ret < 0)
  173. goto kfree_exit;
  174. }
  175. ret = spi_w8r8(spi, RS5C348_CMD_R(RS5C348_REG_CTL1));
  176. if (ret < 0)
  177. goto kfree_exit;
  178. if (ret & RS5C348_BIT_24H)
  179. pdata->rtc_24h = 1;
  180. rtc = devm_rtc_device_register(&spi->dev, rs5c348_driver.driver.name,
  181. &rs5c348_rtc_ops, THIS_MODULE);
  182. if (IS_ERR(rtc)) {
  183. ret = PTR_ERR(rtc);
  184. goto kfree_exit;
  185. }
  186. pdata->rtc = rtc;
  187. return 0;
  188. kfree_exit:
  189. return ret;
  190. }
  191. static struct spi_driver rs5c348_driver = {
  192. .driver = {
  193. .name = "rtc-rs5c348",
  194. },
  195. .probe = rs5c348_probe,
  196. };
  197. module_spi_driver(rs5c348_driver);
  198. MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>");
  199. MODULE_DESCRIPTION("Ricoh RS5C348 RTC driver");
  200. MODULE_LICENSE("GPL");
  201. MODULE_ALIAS("spi:rtc-rs5c348");