rtc-isl12057.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /*
  2. * rtc-isl12057 - Driver for Intersil ISL12057 I2C Real Time Clock
  3. *
  4. * Copyright (C) 2013, Arnaud EBALARD <arno@natisbad.org>
  5. *
  6. * This work is largely based on Intersil ISL1208 driver developed by
  7. * Hebert Valerio Riedel <hvr@gnu.org>.
  8. *
  9. * Detailed datasheet on which this development is based is available here:
  10. *
  11. * http://natisbad.org/NAS2/refs/ISL12057.pdf
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. */
  23. #include <linux/module.h>
  24. #include <linux/mutex.h>
  25. #include <linux/rtc.h>
  26. #include <linux/i2c.h>
  27. #include <linux/bcd.h>
  28. #include <linux/of.h>
  29. #include <linux/of_device.h>
  30. #include <linux/regmap.h>
  31. #define DRV_NAME "rtc-isl12057"
  32. /* RTC section */
  33. #define ISL12057_REG_RTC_SC 0x00 /* Seconds */
  34. #define ISL12057_REG_RTC_MN 0x01 /* Minutes */
  35. #define ISL12057_REG_RTC_HR 0x02 /* Hours */
  36. #define ISL12057_REG_RTC_HR_PM BIT(5) /* AM/PM bit in 12h format */
  37. #define ISL12057_REG_RTC_HR_MIL BIT(6) /* 24h/12h format */
  38. #define ISL12057_REG_RTC_DW 0x03 /* Day of the Week */
  39. #define ISL12057_REG_RTC_DT 0x04 /* Date */
  40. #define ISL12057_REG_RTC_MO 0x05 /* Month */
  41. #define ISL12057_REG_RTC_MO_CEN BIT(7) /* Century bit */
  42. #define ISL12057_REG_RTC_YR 0x06 /* Year */
  43. #define ISL12057_RTC_SEC_LEN 7
  44. /* Alarm 1 section */
  45. #define ISL12057_REG_A1_SC 0x07 /* Alarm 1 Seconds */
  46. #define ISL12057_REG_A1_MN 0x08 /* Alarm 1 Minutes */
  47. #define ISL12057_REG_A1_HR 0x09 /* Alarm 1 Hours */
  48. #define ISL12057_REG_A1_HR_PM BIT(5) /* AM/PM bit in 12h format */
  49. #define ISL12057_REG_A1_HR_MIL BIT(6) /* 24h/12h format */
  50. #define ISL12057_REG_A1_DWDT 0x0A /* Alarm 1 Date / Day of the week */
  51. #define ISL12057_REG_A1_DWDT_B BIT(6) /* DW / DT selection bit */
  52. #define ISL12057_A1_SEC_LEN 4
  53. /* Alarm 2 section */
  54. #define ISL12057_REG_A2_MN 0x0B /* Alarm 2 Minutes */
  55. #define ISL12057_REG_A2_HR 0x0C /* Alarm 2 Hours */
  56. #define ISL12057_REG_A2_DWDT 0x0D /* Alarm 2 Date / Day of the week */
  57. #define ISL12057_A2_SEC_LEN 3
  58. /* Control/Status registers */
  59. #define ISL12057_REG_INT 0x0E
  60. #define ISL12057_REG_INT_A1IE BIT(0) /* Alarm 1 interrupt enable bit */
  61. #define ISL12057_REG_INT_A2IE BIT(1) /* Alarm 2 interrupt enable bit */
  62. #define ISL12057_REG_INT_INTCN BIT(2) /* Interrupt control enable bit */
  63. #define ISL12057_REG_INT_RS1 BIT(3) /* Freq out control bit 1 */
  64. #define ISL12057_REG_INT_RS2 BIT(4) /* Freq out control bit 2 */
  65. #define ISL12057_REG_INT_EOSC BIT(7) /* Oscillator enable bit */
  66. #define ISL12057_REG_SR 0x0F
  67. #define ISL12057_REG_SR_A1F BIT(0) /* Alarm 1 interrupt bit */
  68. #define ISL12057_REG_SR_A2F BIT(1) /* Alarm 2 interrupt bit */
  69. #define ISL12057_REG_SR_OSF BIT(7) /* Oscillator failure bit */
  70. /* Register memory map length */
  71. #define ISL12057_MEM_MAP_LEN 0x10
  72. struct isl12057_rtc_data {
  73. struct regmap *regmap;
  74. struct mutex lock;
  75. };
  76. static void isl12057_rtc_regs_to_tm(struct rtc_time *tm, u8 *regs)
  77. {
  78. tm->tm_sec = bcd2bin(regs[ISL12057_REG_RTC_SC]);
  79. tm->tm_min = bcd2bin(regs[ISL12057_REG_RTC_MN]);
  80. if (regs[ISL12057_REG_RTC_HR] & ISL12057_REG_RTC_HR_MIL) { /* AM/PM */
  81. tm->tm_hour = bcd2bin(regs[ISL12057_REG_RTC_HR] & 0x1f);
  82. if (regs[ISL12057_REG_RTC_HR] & ISL12057_REG_RTC_HR_PM)
  83. tm->tm_hour += 12;
  84. } else { /* 24 hour mode */
  85. tm->tm_hour = bcd2bin(regs[ISL12057_REG_RTC_HR] & 0x3f);
  86. }
  87. tm->tm_mday = bcd2bin(regs[ISL12057_REG_RTC_DT]);
  88. tm->tm_wday = bcd2bin(regs[ISL12057_REG_RTC_DW]) - 1; /* starts at 1 */
  89. tm->tm_mon = bcd2bin(regs[ISL12057_REG_RTC_MO] & 0x1f) - 1; /* ditto */
  90. tm->tm_year = bcd2bin(regs[ISL12057_REG_RTC_YR]) + 100;
  91. /* Check if years register has overflown from 99 to 00 */
  92. if (regs[ISL12057_REG_RTC_MO] & ISL12057_REG_RTC_MO_CEN)
  93. tm->tm_year += 100;
  94. }
  95. static int isl12057_rtc_tm_to_regs(u8 *regs, struct rtc_time *tm)
  96. {
  97. u8 century_bit;
  98. /*
  99. * The clock has an 8 bit wide bcd-coded register for the year.
  100. * It also has a century bit encoded in MO flag which provides
  101. * information about overflow of year register from 99 to 00.
  102. * tm_year is an offset from 1900 and we are interested in the
  103. * 2000-2199 range, so any value less than 100 or larger than
  104. * 299 is invalid.
  105. */
  106. if (tm->tm_year < 100 || tm->tm_year > 299)
  107. return -EINVAL;
  108. century_bit = (tm->tm_year > 199) ? ISL12057_REG_RTC_MO_CEN : 0;
  109. regs[ISL12057_REG_RTC_SC] = bin2bcd(tm->tm_sec);
  110. regs[ISL12057_REG_RTC_MN] = bin2bcd(tm->tm_min);
  111. regs[ISL12057_REG_RTC_HR] = bin2bcd(tm->tm_hour); /* 24-hour format */
  112. regs[ISL12057_REG_RTC_DT] = bin2bcd(tm->tm_mday);
  113. regs[ISL12057_REG_RTC_MO] = bin2bcd(tm->tm_mon + 1) | century_bit;
  114. regs[ISL12057_REG_RTC_YR] = bin2bcd(tm->tm_year % 100);
  115. regs[ISL12057_REG_RTC_DW] = bin2bcd(tm->tm_wday + 1);
  116. return 0;
  117. }
  118. /*
  119. * Try and match register bits w/ fixed null values to see whether we
  120. * are dealing with an ISL12057. Note: this function is called early
  121. * during init and hence does need mutex protection.
  122. */
  123. static int isl12057_i2c_validate_chip(struct regmap *regmap)
  124. {
  125. u8 regs[ISL12057_MEM_MAP_LEN];
  126. static const u8 mask[ISL12057_MEM_MAP_LEN] = { 0x80, 0x80, 0x80, 0xf8,
  127. 0xc0, 0x60, 0x00, 0x00,
  128. 0x00, 0x00, 0x00, 0x00,
  129. 0x00, 0x00, 0x60, 0x7c };
  130. int ret, i;
  131. ret = regmap_bulk_read(regmap, 0, regs, ISL12057_MEM_MAP_LEN);
  132. if (ret)
  133. return ret;
  134. for (i = 0; i < ISL12057_MEM_MAP_LEN; ++i) {
  135. if (regs[i] & mask[i]) /* check if bits are cleared */
  136. return -ENODEV;
  137. }
  138. return 0;
  139. }
  140. static int isl12057_rtc_read_time(struct device *dev, struct rtc_time *tm)
  141. {
  142. struct isl12057_rtc_data *data = dev_get_drvdata(dev);
  143. u8 regs[ISL12057_RTC_SEC_LEN];
  144. unsigned int sr;
  145. int ret;
  146. mutex_lock(&data->lock);
  147. ret = regmap_read(data->regmap, ISL12057_REG_SR, &sr);
  148. if (ret) {
  149. dev_err(dev, "%s: unable to read oscillator status flag (%d)\n",
  150. __func__, ret);
  151. goto out;
  152. } else {
  153. if (sr & ISL12057_REG_SR_OSF) {
  154. ret = -ENODATA;
  155. goto out;
  156. }
  157. }
  158. ret = regmap_bulk_read(data->regmap, ISL12057_REG_RTC_SC, regs,
  159. ISL12057_RTC_SEC_LEN);
  160. if (ret)
  161. dev_err(dev, "%s: unable to read RTC time section (%d)\n",
  162. __func__, ret);
  163. out:
  164. mutex_unlock(&data->lock);
  165. if (ret)
  166. return ret;
  167. isl12057_rtc_regs_to_tm(tm, regs);
  168. return rtc_valid_tm(tm);
  169. }
  170. static int isl12057_rtc_set_time(struct device *dev, struct rtc_time *tm)
  171. {
  172. struct isl12057_rtc_data *data = dev_get_drvdata(dev);
  173. u8 regs[ISL12057_RTC_SEC_LEN];
  174. int ret;
  175. ret = isl12057_rtc_tm_to_regs(regs, tm);
  176. if (ret)
  177. return ret;
  178. mutex_lock(&data->lock);
  179. ret = regmap_bulk_write(data->regmap, ISL12057_REG_RTC_SC, regs,
  180. ISL12057_RTC_SEC_LEN);
  181. if (ret) {
  182. dev_err(dev, "%s: unable to write RTC time section (%d)\n",
  183. __func__, ret);
  184. goto out;
  185. }
  186. /*
  187. * Now that RTC time has been updated, let's clear oscillator
  188. * failure flag, if needed.
  189. */
  190. ret = regmap_update_bits(data->regmap, ISL12057_REG_SR,
  191. ISL12057_REG_SR_OSF, 0);
  192. if (ret < 0)
  193. dev_err(dev, "%s: unable to clear osc. failure bit (%d)\n",
  194. __func__, ret);
  195. out:
  196. mutex_unlock(&data->lock);
  197. return ret;
  198. }
  199. /*
  200. * Check current RTC status and enable/disable what needs to be. Return 0 if
  201. * everything went ok and a negative value upon error. Note: this function
  202. * is called early during init and hence does need mutex protection.
  203. */
  204. static int isl12057_check_rtc_status(struct device *dev, struct regmap *regmap)
  205. {
  206. int ret;
  207. /* Enable oscillator if not already running */
  208. ret = regmap_update_bits(regmap, ISL12057_REG_INT,
  209. ISL12057_REG_INT_EOSC, 0);
  210. if (ret < 0) {
  211. dev_err(dev, "%s: unable to enable oscillator (%d)\n",
  212. __func__, ret);
  213. return ret;
  214. }
  215. /* Clear alarm bit if needed */
  216. ret = regmap_update_bits(regmap, ISL12057_REG_SR,
  217. ISL12057_REG_SR_A1F, 0);
  218. if (ret < 0) {
  219. dev_err(dev, "%s: unable to clear alarm bit (%d)\n",
  220. __func__, ret);
  221. return ret;
  222. }
  223. return 0;
  224. }
  225. static const struct rtc_class_ops rtc_ops = {
  226. .read_time = isl12057_rtc_read_time,
  227. .set_time = isl12057_rtc_set_time,
  228. };
  229. static struct regmap_config isl12057_rtc_regmap_config = {
  230. .reg_bits = 8,
  231. .val_bits = 8,
  232. };
  233. static int isl12057_probe(struct i2c_client *client,
  234. const struct i2c_device_id *id)
  235. {
  236. struct device *dev = &client->dev;
  237. struct isl12057_rtc_data *data;
  238. struct rtc_device *rtc;
  239. struct regmap *regmap;
  240. int ret;
  241. if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C |
  242. I2C_FUNC_SMBUS_BYTE_DATA |
  243. I2C_FUNC_SMBUS_I2C_BLOCK))
  244. return -ENODEV;
  245. regmap = devm_regmap_init_i2c(client, &isl12057_rtc_regmap_config);
  246. if (IS_ERR(regmap)) {
  247. ret = PTR_ERR(regmap);
  248. dev_err(dev, "%s: regmap allocation failed (%d)\n",
  249. __func__, ret);
  250. return ret;
  251. }
  252. ret = isl12057_i2c_validate_chip(regmap);
  253. if (ret)
  254. return ret;
  255. ret = isl12057_check_rtc_status(dev, regmap);
  256. if (ret)
  257. return ret;
  258. data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
  259. if (!data)
  260. return -ENOMEM;
  261. mutex_init(&data->lock);
  262. data->regmap = regmap;
  263. dev_set_drvdata(dev, data);
  264. rtc = devm_rtc_device_register(dev, DRV_NAME, &rtc_ops, THIS_MODULE);
  265. return PTR_ERR_OR_ZERO(rtc);
  266. }
  267. #ifdef CONFIG_OF
  268. static const struct of_device_id isl12057_dt_match[] = {
  269. { .compatible = "isl,isl12057" },
  270. { },
  271. };
  272. #endif
  273. static const struct i2c_device_id isl12057_id[] = {
  274. { "isl12057", 0 },
  275. { }
  276. };
  277. MODULE_DEVICE_TABLE(i2c, isl12057_id);
  278. static struct i2c_driver isl12057_driver = {
  279. .driver = {
  280. .name = DRV_NAME,
  281. .owner = THIS_MODULE,
  282. .of_match_table = of_match_ptr(isl12057_dt_match),
  283. },
  284. .probe = isl12057_probe,
  285. .id_table = isl12057_id,
  286. };
  287. module_i2c_driver(isl12057_driver);
  288. MODULE_AUTHOR("Arnaud EBALARD <arno@natisbad.org>");
  289. MODULE_DESCRIPTION("Intersil ISL12057 RTC driver");
  290. MODULE_LICENSE("GPL");