rtc-rs5c348.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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/rtc.h>
  22. #include <linux/workqueue.h>
  23. #include <linux/spi/spi.h>
  24. #define DRV_VERSION "0.2"
  25. #define RS5C348_REG_SECS 0
  26. #define RS5C348_REG_MINS 1
  27. #define RS5C348_REG_HOURS 2
  28. #define RS5C348_REG_WDAY 3
  29. #define RS5C348_REG_DAY 4
  30. #define RS5C348_REG_MONTH 5
  31. #define RS5C348_REG_YEAR 6
  32. #define RS5C348_REG_CTL1 14
  33. #define RS5C348_REG_CTL2 15
  34. #define RS5C348_SECS_MASK 0x7f
  35. #define RS5C348_MINS_MASK 0x7f
  36. #define RS5C348_HOURS_MASK 0x3f
  37. #define RS5C348_WDAY_MASK 0x03
  38. #define RS5C348_DAY_MASK 0x3f
  39. #define RS5C348_MONTH_MASK 0x1f
  40. #define RS5C348_BIT_PM 0x20 /* REG_HOURS */
  41. #define RS5C348_BIT_Y2K 0x80 /* REG_MONTH */
  42. #define RS5C348_BIT_24H 0x20 /* REG_CTL1 */
  43. #define RS5C348_BIT_XSTP 0x10 /* REG_CTL2 */
  44. #define RS5C348_BIT_VDET 0x40 /* REG_CTL2 */
  45. #define RS5C348_CMD_W(addr) (((addr) << 4) | 0x08) /* single write */
  46. #define RS5C348_CMD_R(addr) (((addr) << 4) | 0x0c) /* single read */
  47. #define RS5C348_CMD_MW(addr) (((addr) << 4) | 0x00) /* burst write */
  48. #define RS5C348_CMD_MR(addr) (((addr) << 4) | 0x04) /* burst read */
  49. struct rs5c348_plat_data {
  50. struct rtc_device *rtc;
  51. int rtc_24h;
  52. };
  53. static int
  54. rs5c348_rtc_set_time(struct device *dev, struct rtc_time *tm)
  55. {
  56. struct spi_device *spi = to_spi_device(dev);
  57. struct rs5c348_plat_data *pdata = spi->dev.platform_data;
  58. u8 txbuf[5+7], *txp;
  59. int ret;
  60. /* Transfer 5 bytes before writing SEC. This gives 31us for carry. */
  61. txp = txbuf;
  62. txbuf[0] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  63. txbuf[1] = 0; /* dummy */
  64. txbuf[2] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  65. txbuf[3] = 0; /* dummy */
  66. txbuf[4] = RS5C348_CMD_MW(RS5C348_REG_SECS); /* cmd, sec, ... */
  67. txp = &txbuf[5];
  68. txp[RS5C348_REG_SECS] = bin2bcd(tm->tm_sec);
  69. txp[RS5C348_REG_MINS] = bin2bcd(tm->tm_min);
  70. if (pdata->rtc_24h) {
  71. txp[RS5C348_REG_HOURS] = bin2bcd(tm->tm_hour);
  72. } else {
  73. /* hour 0 is AM12, noon is PM12 */
  74. txp[RS5C348_REG_HOURS] = bin2bcd((tm->tm_hour + 11) % 12 + 1) |
  75. (tm->tm_hour >= 12 ? RS5C348_BIT_PM : 0);
  76. }
  77. txp[RS5C348_REG_WDAY] = bin2bcd(tm->tm_wday);
  78. txp[RS5C348_REG_DAY] = bin2bcd(tm->tm_mday);
  79. txp[RS5C348_REG_MONTH] = bin2bcd(tm->tm_mon + 1) |
  80. (tm->tm_year >= 100 ? RS5C348_BIT_Y2K : 0);
  81. txp[RS5C348_REG_YEAR] = bin2bcd(tm->tm_year % 100);
  82. /* write in one transfer to avoid data inconsistency */
  83. ret = spi_write_then_read(spi, txbuf, sizeof(txbuf), NULL, 0);
  84. udelay(62); /* Tcsr 62us */
  85. return ret;
  86. }
  87. static int
  88. rs5c348_rtc_read_time(struct device *dev, struct rtc_time *tm)
  89. {
  90. struct spi_device *spi = to_spi_device(dev);
  91. struct rs5c348_plat_data *pdata = spi->dev.platform_data;
  92. u8 txbuf[5], rxbuf[7];
  93. int ret;
  94. /* Transfer 5 byte befores reading SEC. This gives 31us for carry. */
  95. txbuf[0] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  96. txbuf[1] = 0; /* dummy */
  97. txbuf[2] = RS5C348_CMD_R(RS5C348_REG_CTL2); /* cmd, ctl2 */
  98. txbuf[3] = 0; /* dummy */
  99. txbuf[4] = RS5C348_CMD_MR(RS5C348_REG_SECS); /* cmd, sec, ... */
  100. /* read in one transfer to avoid data inconsistency */
  101. ret = spi_write_then_read(spi, txbuf, sizeof(txbuf),
  102. rxbuf, sizeof(rxbuf));
  103. udelay(62); /* Tcsr 62us */
  104. if (ret < 0)
  105. return ret;
  106. tm->tm_sec = bcd2bin(rxbuf[RS5C348_REG_SECS] & RS5C348_SECS_MASK);
  107. tm->tm_min = bcd2bin(rxbuf[RS5C348_REG_MINS] & RS5C348_MINS_MASK);
  108. tm->tm_hour = bcd2bin(rxbuf[RS5C348_REG_HOURS] & RS5C348_HOURS_MASK);
  109. if (!pdata->rtc_24h) {
  110. tm->tm_hour %= 12;
  111. if (rxbuf[RS5C348_REG_HOURS] & RS5C348_BIT_PM)
  112. tm->tm_hour += 12;
  113. }
  114. tm->tm_wday = bcd2bin(rxbuf[RS5C348_REG_WDAY] & RS5C348_WDAY_MASK);
  115. tm->tm_mday = bcd2bin(rxbuf[RS5C348_REG_DAY] & RS5C348_DAY_MASK);
  116. tm->tm_mon =
  117. bcd2bin(rxbuf[RS5C348_REG_MONTH] & RS5C348_MONTH_MASK) - 1;
  118. /* year is 1900 + tm->tm_year */
  119. tm->tm_year = bcd2bin(rxbuf[RS5C348_REG_YEAR]) +
  120. ((rxbuf[RS5C348_REG_MONTH] & RS5C348_BIT_Y2K) ? 100 : 0);
  121. if (rtc_valid_tm(tm) < 0) {
  122. dev_err(&spi->dev, "retrieved date/time is not valid.\n");
  123. rtc_time_to_tm(0, tm);
  124. }
  125. return 0;
  126. }
  127. static const struct rtc_class_ops rs5c348_rtc_ops = {
  128. .read_time = rs5c348_rtc_read_time,
  129. .set_time = rs5c348_rtc_set_time,
  130. };
  131. static struct spi_driver rs5c348_driver;
  132. static int __devinit rs5c348_probe(struct spi_device *spi)
  133. {
  134. int ret;
  135. struct rtc_device *rtc;
  136. struct rs5c348_plat_data *pdata;
  137. pdata = kzalloc(sizeof(struct rs5c348_plat_data), GFP_KERNEL);
  138. if (!pdata)
  139. return -ENOMEM;
  140. spi->dev.platform_data = pdata;
  141. /* Check D7 of SECOND register */
  142. ret = spi_w8r8(spi, RS5C348_CMD_R(RS5C348_REG_SECS));
  143. if (ret < 0 || (ret & 0x80)) {
  144. dev_err(&spi->dev, "not found.\n");
  145. goto kfree_exit;
  146. }
  147. dev_info(&spi->dev, "chip found, driver version " DRV_VERSION "\n");
  148. dev_info(&spi->dev, "spiclk %u KHz.\n",
  149. (spi->max_speed_hz + 500) / 1000);
  150. /* turn RTC on if it was not on */
  151. ret = spi_w8r8(spi, RS5C348_CMD_R(RS5C348_REG_CTL2));
  152. if (ret < 0)
  153. goto kfree_exit;
  154. if (ret & (RS5C348_BIT_XSTP | RS5C348_BIT_VDET)) {
  155. u8 buf[2];
  156. struct rtc_time tm;
  157. if (ret & RS5C348_BIT_VDET)
  158. dev_warn(&spi->dev, "voltage-low detected.\n");
  159. if (ret & RS5C348_BIT_XSTP)
  160. dev_warn(&spi->dev, "oscillator-stop detected.\n");
  161. rtc_time_to_tm(0, &tm); /* 1970/1/1 */
  162. ret = rs5c348_rtc_set_time(&spi->dev, &tm);
  163. if (ret < 0)
  164. goto kfree_exit;
  165. buf[0] = RS5C348_CMD_W(RS5C348_REG_CTL2);
  166. buf[1] = 0;
  167. ret = spi_write_then_read(spi, buf, sizeof(buf), NULL, 0);
  168. if (ret < 0)
  169. goto kfree_exit;
  170. }
  171. ret = spi_w8r8(spi, RS5C348_CMD_R(RS5C348_REG_CTL1));
  172. if (ret < 0)
  173. goto kfree_exit;
  174. if (ret & RS5C348_BIT_24H)
  175. pdata->rtc_24h = 1;
  176. rtc = rtc_device_register(rs5c348_driver.driver.name, &spi->dev,
  177. &rs5c348_rtc_ops, THIS_MODULE);
  178. if (IS_ERR(rtc)) {
  179. ret = PTR_ERR(rtc);
  180. goto kfree_exit;
  181. }
  182. pdata->rtc = rtc;
  183. return 0;
  184. kfree_exit:
  185. kfree(pdata);
  186. return ret;
  187. }
  188. static int __devexit rs5c348_remove(struct spi_device *spi)
  189. {
  190. struct rs5c348_plat_data *pdata = spi->dev.platform_data;
  191. struct rtc_device *rtc = pdata->rtc;
  192. if (rtc)
  193. rtc_device_unregister(rtc);
  194. kfree(pdata);
  195. return 0;
  196. }
  197. static struct spi_driver rs5c348_driver = {
  198. .driver = {
  199. .name = "rtc-rs5c348",
  200. .bus = &spi_bus_type,
  201. .owner = THIS_MODULE,
  202. },
  203. .probe = rs5c348_probe,
  204. .remove = __devexit_p(rs5c348_remove),
  205. };
  206. static __init int rs5c348_init(void)
  207. {
  208. return spi_register_driver(&rs5c348_driver);
  209. }
  210. static __exit void rs5c348_exit(void)
  211. {
  212. spi_unregister_driver(&rs5c348_driver);
  213. }
  214. module_init(rs5c348_init);
  215. module_exit(rs5c348_exit);
  216. MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>");
  217. MODULE_DESCRIPTION("Ricoh RS5C348 RTC driver");
  218. MODULE_LICENSE("GPL");
  219. MODULE_VERSION(DRV_VERSION);