rtc-pcf8563.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. /*
  2. * An I2C driver for the Philips PCF8563 RTC
  3. * Copyright 2005-06 Tower Technologies
  4. *
  5. * Author: Alessandro Zummo <a.zummo@towertech.it>
  6. * Maintainers: http://www.nslu2-linux.org/
  7. *
  8. * based on the other drivers in this same directory.
  9. *
  10. * http://www.semiconductors.philips.com/acrobat/datasheets/PCF8563-04.pdf
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. */
  16. #include <linux/i2c.h>
  17. #include <linux/bcd.h>
  18. #include <linux/rtc.h>
  19. #include <linux/slab.h>
  20. #include <linux/module.h>
  21. #include <linux/of.h>
  22. #include <linux/err.h>
  23. #define DRV_VERSION "0.4.3"
  24. #define PCF8563_REG_ST1 0x00 /* status */
  25. #define PCF8563_REG_ST2 0x01
  26. #define PCF8563_BIT_AIE (1 << 1)
  27. #define PCF8563_BIT_AF (1 << 3)
  28. #define PCF8563_BITS_ST2_N (7 << 5)
  29. #define PCF8563_REG_SC 0x02 /* datetime */
  30. #define PCF8563_REG_MN 0x03
  31. #define PCF8563_REG_HR 0x04
  32. #define PCF8563_REG_DM 0x05
  33. #define PCF8563_REG_DW 0x06
  34. #define PCF8563_REG_MO 0x07
  35. #define PCF8563_REG_YR 0x08
  36. #define PCF8563_REG_AMN 0x09 /* alarm */
  37. #define PCF8563_REG_CLKO 0x0D /* clock out */
  38. #define PCF8563_REG_TMRC 0x0E /* timer control */
  39. #define PCF8563_TMRC_ENABLE BIT(7)
  40. #define PCF8563_TMRC_4096 0
  41. #define PCF8563_TMRC_64 1
  42. #define PCF8563_TMRC_1 2
  43. #define PCF8563_TMRC_1_60 3
  44. #define PCF8563_TMRC_MASK 3
  45. #define PCF8563_REG_TMR 0x0F /* timer */
  46. #define PCF8563_SC_LV 0x80 /* low voltage */
  47. #define PCF8563_MO_C 0x80 /* century */
  48. static struct i2c_driver pcf8563_driver;
  49. struct pcf8563 {
  50. struct rtc_device *rtc;
  51. /*
  52. * The meaning of MO_C bit varies by the chip type.
  53. * From PCF8563 datasheet: this bit is toggled when the years
  54. * register overflows from 99 to 00
  55. * 0 indicates the century is 20xx
  56. * 1 indicates the century is 19xx
  57. * From RTC8564 datasheet: this bit indicates change of
  58. * century. When the year digit data overflows from 99 to 00,
  59. * this bit is set. By presetting it to 0 while still in the
  60. * 20th century, it will be set in year 2000, ...
  61. * There seems no reliable way to know how the system use this
  62. * bit. So let's do it heuristically, assuming we are live in
  63. * 1970...2069.
  64. */
  65. int c_polarity; /* 0: MO_C=1 means 19xx, otherwise MO_C=1 means 20xx */
  66. int voltage_low; /* incicates if a low_voltage was detected */
  67. struct i2c_client *client;
  68. };
  69. static int pcf8563_read_block_data(struct i2c_client *client, unsigned char reg,
  70. unsigned char length, unsigned char *buf)
  71. {
  72. struct i2c_msg msgs[] = {
  73. {/* setup read ptr */
  74. .addr = client->addr,
  75. .len = 1,
  76. .buf = &reg,
  77. },
  78. {
  79. .addr = client->addr,
  80. .flags = I2C_M_RD,
  81. .len = length,
  82. .buf = buf
  83. },
  84. };
  85. if ((i2c_transfer(client->adapter, msgs, 2)) != 2) {
  86. dev_err(&client->dev, "%s: read error\n", __func__);
  87. return -EIO;
  88. }
  89. return 0;
  90. }
  91. static int pcf8563_write_block_data(struct i2c_client *client,
  92. unsigned char reg, unsigned char length,
  93. unsigned char *buf)
  94. {
  95. int i, err;
  96. for (i = 0; i < length; i++) {
  97. unsigned char data[2] = { reg + i, buf[i] };
  98. err = i2c_master_send(client, data, sizeof(data));
  99. if (err != sizeof(data)) {
  100. dev_err(&client->dev,
  101. "%s: err=%d addr=%02x, data=%02x\n",
  102. __func__, err, data[0], data[1]);
  103. return -EIO;
  104. }
  105. }
  106. return 0;
  107. }
  108. static int pcf8563_set_alarm_mode(struct i2c_client *client, bool on)
  109. {
  110. unsigned char buf;
  111. int err;
  112. err = pcf8563_read_block_data(client, PCF8563_REG_ST2, 1, &buf);
  113. if (err < 0)
  114. return err;
  115. if (on)
  116. buf |= PCF8563_BIT_AIE;
  117. else
  118. buf &= ~PCF8563_BIT_AIE;
  119. buf &= ~(PCF8563_BIT_AF | PCF8563_BITS_ST2_N);
  120. err = pcf8563_write_block_data(client, PCF8563_REG_ST2, 1, &buf);
  121. if (err < 0) {
  122. dev_err(&client->dev, "%s: write error\n", __func__);
  123. return -EIO;
  124. }
  125. return 0;
  126. }
  127. static int pcf8563_get_alarm_mode(struct i2c_client *client, unsigned char *en,
  128. unsigned char *pen)
  129. {
  130. unsigned char buf;
  131. int err;
  132. err = pcf8563_read_block_data(client, PCF8563_REG_ST2, 1, &buf);
  133. if (err)
  134. return err;
  135. if (en)
  136. *en = !!(buf & PCF8563_BIT_AIE);
  137. if (pen)
  138. *pen = !!(buf & PCF8563_BIT_AF);
  139. return 0;
  140. }
  141. static irqreturn_t pcf8563_irq(int irq, void *dev_id)
  142. {
  143. struct pcf8563 *pcf8563 = i2c_get_clientdata(dev_id);
  144. int err;
  145. char pending;
  146. err = pcf8563_get_alarm_mode(pcf8563->client, NULL, &pending);
  147. if (err)
  148. return IRQ_NONE;
  149. if (pending) {
  150. rtc_update_irq(pcf8563->rtc, 1, RTC_IRQF | RTC_AF);
  151. pcf8563_set_alarm_mode(pcf8563->client, 1);
  152. return IRQ_HANDLED;
  153. }
  154. return IRQ_NONE;
  155. }
  156. /*
  157. * In the routines that deal directly with the pcf8563 hardware, we use
  158. * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch.
  159. */
  160. static int pcf8563_get_datetime(struct i2c_client *client, struct rtc_time *tm)
  161. {
  162. struct pcf8563 *pcf8563 = i2c_get_clientdata(client);
  163. unsigned char buf[9];
  164. int err;
  165. err = pcf8563_read_block_data(client, PCF8563_REG_ST1, 9, buf);
  166. if (err)
  167. return err;
  168. if (buf[PCF8563_REG_SC] & PCF8563_SC_LV) {
  169. pcf8563->voltage_low = 1;
  170. dev_info(&client->dev,
  171. "low voltage detected, date/time is not reliable.\n");
  172. }
  173. dev_dbg(&client->dev,
  174. "%s: raw data is st1=%02x, st2=%02x, sec=%02x, min=%02x, hr=%02x, "
  175. "mday=%02x, wday=%02x, mon=%02x, year=%02x\n",
  176. __func__,
  177. buf[0], buf[1], buf[2], buf[3],
  178. buf[4], buf[5], buf[6], buf[7],
  179. buf[8]);
  180. tm->tm_sec = bcd2bin(buf[PCF8563_REG_SC] & 0x7F);
  181. tm->tm_min = bcd2bin(buf[PCF8563_REG_MN] & 0x7F);
  182. tm->tm_hour = bcd2bin(buf[PCF8563_REG_HR] & 0x3F); /* rtc hr 0-23 */
  183. tm->tm_mday = bcd2bin(buf[PCF8563_REG_DM] & 0x3F);
  184. tm->tm_wday = buf[PCF8563_REG_DW] & 0x07;
  185. tm->tm_mon = bcd2bin(buf[PCF8563_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */
  186. tm->tm_year = bcd2bin(buf[PCF8563_REG_YR]);
  187. if (tm->tm_year < 70)
  188. tm->tm_year += 100; /* assume we are in 1970...2069 */
  189. /* detect the polarity heuristically. see note above. */
  190. pcf8563->c_polarity = (buf[PCF8563_REG_MO] & PCF8563_MO_C) ?
  191. (tm->tm_year >= 100) : (tm->tm_year < 100);
  192. dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, "
  193. "mday=%d, mon=%d, year=%d, wday=%d\n",
  194. __func__,
  195. tm->tm_sec, tm->tm_min, tm->tm_hour,
  196. tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday);
  197. /* the clock can give out invalid datetime, but we cannot return
  198. * -EINVAL otherwise hwclock will refuse to set the time on bootup.
  199. */
  200. if (rtc_valid_tm(tm) < 0)
  201. dev_err(&client->dev, "retrieved date/time is not valid.\n");
  202. return 0;
  203. }
  204. static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm)
  205. {
  206. struct pcf8563 *pcf8563 = i2c_get_clientdata(client);
  207. int err;
  208. unsigned char buf[9];
  209. dev_dbg(&client->dev, "%s: secs=%d, mins=%d, hours=%d, "
  210. "mday=%d, mon=%d, year=%d, wday=%d\n",
  211. __func__,
  212. tm->tm_sec, tm->tm_min, tm->tm_hour,
  213. tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday);
  214. /* hours, minutes and seconds */
  215. buf[PCF8563_REG_SC] = bin2bcd(tm->tm_sec);
  216. buf[PCF8563_REG_MN] = bin2bcd(tm->tm_min);
  217. buf[PCF8563_REG_HR] = bin2bcd(tm->tm_hour);
  218. buf[PCF8563_REG_DM] = bin2bcd(tm->tm_mday);
  219. /* month, 1 - 12 */
  220. buf[PCF8563_REG_MO] = bin2bcd(tm->tm_mon + 1);
  221. /* year and century */
  222. buf[PCF8563_REG_YR] = bin2bcd(tm->tm_year % 100);
  223. if (pcf8563->c_polarity ? (tm->tm_year >= 100) : (tm->tm_year < 100))
  224. buf[PCF8563_REG_MO] |= PCF8563_MO_C;
  225. buf[PCF8563_REG_DW] = tm->tm_wday & 0x07;
  226. err = pcf8563_write_block_data(client, PCF8563_REG_SC,
  227. 9 - PCF8563_REG_SC, buf + PCF8563_REG_SC);
  228. if (err)
  229. return err;
  230. return 0;
  231. }
  232. #ifdef CONFIG_RTC_INTF_DEV
  233. static int pcf8563_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
  234. {
  235. struct pcf8563 *pcf8563 = i2c_get_clientdata(to_i2c_client(dev));
  236. struct rtc_time tm;
  237. switch (cmd) {
  238. case RTC_VL_READ:
  239. if (pcf8563->voltage_low)
  240. dev_info(dev, "low voltage detected, date/time is not reliable.\n");
  241. if (copy_to_user((void __user *)arg, &pcf8563->voltage_low,
  242. sizeof(int)))
  243. return -EFAULT;
  244. return 0;
  245. case RTC_VL_CLR:
  246. /*
  247. * Clear the VL bit in the seconds register in case
  248. * the time has not been set already (which would
  249. * have cleared it). This does not really matter
  250. * because of the cached voltage_low value but do it
  251. * anyway for consistency.
  252. */
  253. if (pcf8563_get_datetime(to_i2c_client(dev), &tm))
  254. pcf8563_set_datetime(to_i2c_client(dev), &tm);
  255. /* Clear the cached value. */
  256. pcf8563->voltage_low = 0;
  257. return 0;
  258. default:
  259. return -ENOIOCTLCMD;
  260. }
  261. }
  262. #else
  263. #define pcf8563_rtc_ioctl NULL
  264. #endif
  265. static int pcf8563_rtc_read_time(struct device *dev, struct rtc_time *tm)
  266. {
  267. return pcf8563_get_datetime(to_i2c_client(dev), tm);
  268. }
  269. static int pcf8563_rtc_set_time(struct device *dev, struct rtc_time *tm)
  270. {
  271. return pcf8563_set_datetime(to_i2c_client(dev), tm);
  272. }
  273. static int pcf8563_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *tm)
  274. {
  275. struct i2c_client *client = to_i2c_client(dev);
  276. unsigned char buf[4];
  277. int err;
  278. err = pcf8563_read_block_data(client, PCF8563_REG_AMN, 4, buf);
  279. if (err)
  280. return err;
  281. dev_dbg(&client->dev,
  282. "%s: raw data is min=%02x, hr=%02x, mday=%02x, wday=%02x\n",
  283. __func__, buf[0], buf[1], buf[2], buf[3]);
  284. tm->time.tm_min = bcd2bin(buf[0] & 0x7F);
  285. tm->time.tm_hour = bcd2bin(buf[1] & 0x3F);
  286. tm->time.tm_mday = bcd2bin(buf[2] & 0x3F);
  287. tm->time.tm_wday = bcd2bin(buf[3] & 0x7);
  288. tm->time.tm_mon = -1;
  289. tm->time.tm_year = -1;
  290. tm->time.tm_yday = -1;
  291. tm->time.tm_isdst = -1;
  292. err = pcf8563_get_alarm_mode(client, &tm->enabled, &tm->pending);
  293. if (err < 0)
  294. return err;
  295. dev_dbg(&client->dev, "%s: tm is mins=%d, hours=%d, mday=%d, wday=%d,"
  296. " enabled=%d, pending=%d\n", __func__, tm->time.tm_min,
  297. tm->time.tm_hour, tm->time.tm_mday, tm->time.tm_wday,
  298. tm->enabled, tm->pending);
  299. return 0;
  300. }
  301. static int pcf8563_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *tm)
  302. {
  303. struct i2c_client *client = to_i2c_client(dev);
  304. unsigned char buf[4];
  305. int err;
  306. unsigned long alarm_time;
  307. /* The alarm has no seconds, round up to nearest minute */
  308. if (tm->time.tm_sec) {
  309. rtc_tm_to_time(&tm->time, &alarm_time);
  310. alarm_time += 60-tm->time.tm_sec;
  311. rtc_time_to_tm(alarm_time, &tm->time);
  312. }
  313. dev_dbg(dev, "%s, min=%d hour=%d wday=%d mday=%d "
  314. "enabled=%d pending=%d\n", __func__,
  315. tm->time.tm_min, tm->time.tm_hour, tm->time.tm_wday,
  316. tm->time.tm_mday, tm->enabled, tm->pending);
  317. buf[0] = bin2bcd(tm->time.tm_min);
  318. buf[1] = bin2bcd(tm->time.tm_hour);
  319. buf[2] = bin2bcd(tm->time.tm_mday);
  320. buf[3] = tm->time.tm_wday & 0x07;
  321. err = pcf8563_write_block_data(client, PCF8563_REG_AMN, 4, buf);
  322. if (err)
  323. return err;
  324. return pcf8563_set_alarm_mode(client, 1);
  325. }
  326. static int pcf8563_irq_enable(struct device *dev, unsigned int enabled)
  327. {
  328. dev_dbg(dev, "%s: en=%d\n", __func__, enabled);
  329. return pcf8563_set_alarm_mode(to_i2c_client(dev), !!enabled);
  330. }
  331. static const struct rtc_class_ops pcf8563_rtc_ops = {
  332. .ioctl = pcf8563_rtc_ioctl,
  333. .read_time = pcf8563_rtc_read_time,
  334. .set_time = pcf8563_rtc_set_time,
  335. .read_alarm = pcf8563_rtc_read_alarm,
  336. .set_alarm = pcf8563_rtc_set_alarm,
  337. .alarm_irq_enable = pcf8563_irq_enable,
  338. };
  339. static int pcf8563_probe(struct i2c_client *client,
  340. const struct i2c_device_id *id)
  341. {
  342. struct pcf8563 *pcf8563;
  343. int err;
  344. unsigned char buf;
  345. unsigned char alm_pending;
  346. dev_dbg(&client->dev, "%s\n", __func__);
  347. if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
  348. return -ENODEV;
  349. pcf8563 = devm_kzalloc(&client->dev, sizeof(struct pcf8563),
  350. GFP_KERNEL);
  351. if (!pcf8563)
  352. return -ENOMEM;
  353. dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n");
  354. i2c_set_clientdata(client, pcf8563);
  355. pcf8563->client = client;
  356. device_set_wakeup_capable(&client->dev, 1);
  357. /* Set timer to lowest frequency to save power (ref Haoyu datasheet) */
  358. buf = PCF8563_TMRC_1_60;
  359. err = pcf8563_write_block_data(client, PCF8563_REG_TMRC, 1, &buf);
  360. if (err < 0) {
  361. dev_err(&client->dev, "%s: write error\n", __func__);
  362. return err;
  363. }
  364. err = pcf8563_get_alarm_mode(client, NULL, &alm_pending);
  365. if (err < 0) {
  366. dev_err(&client->dev, "%s: read error\n", __func__);
  367. return err;
  368. }
  369. if (alm_pending)
  370. pcf8563_set_alarm_mode(client, 0);
  371. pcf8563->rtc = devm_rtc_device_register(&client->dev,
  372. pcf8563_driver.driver.name,
  373. &pcf8563_rtc_ops, THIS_MODULE);
  374. if (IS_ERR(pcf8563->rtc))
  375. return PTR_ERR(pcf8563->rtc);
  376. if (client->irq > 0) {
  377. err = devm_request_threaded_irq(&client->dev, client->irq,
  378. NULL, pcf8563_irq,
  379. IRQF_SHARED|IRQF_ONESHOT|IRQF_TRIGGER_FALLING,
  380. pcf8563->rtc->name, client);
  381. if (err) {
  382. dev_err(&client->dev, "unable to request IRQ %d\n",
  383. client->irq);
  384. return err;
  385. }
  386. }
  387. /* the pcf8563 alarm only supports a minute accuracy */
  388. pcf8563->rtc->uie_unsupported = 1;
  389. return 0;
  390. }
  391. static const struct i2c_device_id pcf8563_id[] = {
  392. { "pcf8563", 0 },
  393. { "rtc8564", 0 },
  394. { }
  395. };
  396. MODULE_DEVICE_TABLE(i2c, pcf8563_id);
  397. #ifdef CONFIG_OF
  398. static const struct of_device_id pcf8563_of_match[] = {
  399. { .compatible = "nxp,pcf8563" },
  400. {}
  401. };
  402. MODULE_DEVICE_TABLE(of, pcf8563_of_match);
  403. #endif
  404. static struct i2c_driver pcf8563_driver = {
  405. .driver = {
  406. .name = "rtc-pcf8563",
  407. .owner = THIS_MODULE,
  408. .of_match_table = of_match_ptr(pcf8563_of_match),
  409. },
  410. .probe = pcf8563_probe,
  411. .id_table = pcf8563_id,
  412. };
  413. module_i2c_driver(pcf8563_driver);
  414. MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>");
  415. MODULE_DESCRIPTION("Philips PCF8563/Epson RTC8564 RTC driver");
  416. MODULE_LICENSE("GPL");
  417. MODULE_VERSION(DRV_VERSION);