rtc-mxc.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. // SPDX-License-Identifier: GPL-2.0+
  2. //
  3. // Copyright 2004-2008 Freescale Semiconductor, Inc. All Rights Reserved.
  4. #include <linux/io.h>
  5. #include <linux/rtc.h>
  6. #include <linux/module.h>
  7. #include <linux/slab.h>
  8. #include <linux/interrupt.h>
  9. #include <linux/platform_device.h>
  10. #include <linux/clk.h>
  11. #include <linux/of.h>
  12. #include <linux/of_device.h>
  13. #define RTC_INPUT_CLK_32768HZ (0x00 << 5)
  14. #define RTC_INPUT_CLK_32000HZ (0x01 << 5)
  15. #define RTC_INPUT_CLK_38400HZ (0x02 << 5)
  16. #define RTC_SW_BIT (1 << 0)
  17. #define RTC_ALM_BIT (1 << 2)
  18. #define RTC_1HZ_BIT (1 << 4)
  19. #define RTC_2HZ_BIT (1 << 7)
  20. #define RTC_SAM0_BIT (1 << 8)
  21. #define RTC_SAM1_BIT (1 << 9)
  22. #define RTC_SAM2_BIT (1 << 10)
  23. #define RTC_SAM3_BIT (1 << 11)
  24. #define RTC_SAM4_BIT (1 << 12)
  25. #define RTC_SAM5_BIT (1 << 13)
  26. #define RTC_SAM6_BIT (1 << 14)
  27. #define RTC_SAM7_BIT (1 << 15)
  28. #define PIT_ALL_ON (RTC_2HZ_BIT | RTC_SAM0_BIT | RTC_SAM1_BIT | \
  29. RTC_SAM2_BIT | RTC_SAM3_BIT | RTC_SAM4_BIT | \
  30. RTC_SAM5_BIT | RTC_SAM6_BIT | RTC_SAM7_BIT)
  31. #define RTC_ENABLE_BIT (1 << 7)
  32. #define MAX_PIE_NUM 9
  33. #define MAX_PIE_FREQ 512
  34. #define MXC_RTC_TIME 0
  35. #define MXC_RTC_ALARM 1
  36. #define RTC_HOURMIN 0x00 /* 32bit rtc hour/min counter reg */
  37. #define RTC_SECOND 0x04 /* 32bit rtc seconds counter reg */
  38. #define RTC_ALRM_HM 0x08 /* 32bit rtc alarm hour/min reg */
  39. #define RTC_ALRM_SEC 0x0C /* 32bit rtc alarm seconds reg */
  40. #define RTC_RTCCTL 0x10 /* 32bit rtc control reg */
  41. #define RTC_RTCISR 0x14 /* 32bit rtc interrupt status reg */
  42. #define RTC_RTCIENR 0x18 /* 32bit rtc interrupt enable reg */
  43. #define RTC_STPWCH 0x1C /* 32bit rtc stopwatch min reg */
  44. #define RTC_DAYR 0x20 /* 32bit rtc days counter reg */
  45. #define RTC_DAYALARM 0x24 /* 32bit rtc day alarm reg */
  46. #define RTC_TEST1 0x28 /* 32bit rtc test reg 1 */
  47. #define RTC_TEST2 0x2C /* 32bit rtc test reg 2 */
  48. #define RTC_TEST3 0x30 /* 32bit rtc test reg 3 */
  49. enum imx_rtc_type {
  50. IMX1_RTC,
  51. IMX21_RTC,
  52. };
  53. struct rtc_plat_data {
  54. struct rtc_device *rtc;
  55. void __iomem *ioaddr;
  56. int irq;
  57. struct clk *clk_ref;
  58. struct clk *clk_ipg;
  59. struct rtc_time g_rtc_alarm;
  60. enum imx_rtc_type devtype;
  61. };
  62. static const struct platform_device_id imx_rtc_devtype[] = {
  63. {
  64. .name = "imx1-rtc",
  65. .driver_data = IMX1_RTC,
  66. }, {
  67. .name = "imx21-rtc",
  68. .driver_data = IMX21_RTC,
  69. }, {
  70. /* sentinel */
  71. }
  72. };
  73. MODULE_DEVICE_TABLE(platform, imx_rtc_devtype);
  74. #ifdef CONFIG_OF
  75. static const struct of_device_id imx_rtc_dt_ids[] = {
  76. { .compatible = "fsl,imx1-rtc", .data = (const void *)IMX1_RTC },
  77. { .compatible = "fsl,imx21-rtc", .data = (const void *)IMX21_RTC },
  78. {}
  79. };
  80. MODULE_DEVICE_TABLE(of, imx_rtc_dt_ids);
  81. #endif
  82. static inline int is_imx1_rtc(struct rtc_plat_data *data)
  83. {
  84. return data->devtype == IMX1_RTC;
  85. }
  86. /*
  87. * This function is used to obtain the RTC time or the alarm value in
  88. * second.
  89. */
  90. static time64_t get_alarm_or_time(struct device *dev, int time_alarm)
  91. {
  92. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  93. void __iomem *ioaddr = pdata->ioaddr;
  94. u32 day = 0, hr = 0, min = 0, sec = 0, hr_min = 0;
  95. switch (time_alarm) {
  96. case MXC_RTC_TIME:
  97. day = readw(ioaddr + RTC_DAYR);
  98. hr_min = readw(ioaddr + RTC_HOURMIN);
  99. sec = readw(ioaddr + RTC_SECOND);
  100. break;
  101. case MXC_RTC_ALARM:
  102. day = readw(ioaddr + RTC_DAYALARM);
  103. hr_min = readw(ioaddr + RTC_ALRM_HM) & 0xffff;
  104. sec = readw(ioaddr + RTC_ALRM_SEC);
  105. break;
  106. }
  107. hr = hr_min >> 8;
  108. min = hr_min & 0xff;
  109. return ((((time64_t)day * 24 + hr) * 60) + min) * 60 + sec;
  110. }
  111. /*
  112. * This function sets the RTC alarm value or the time value.
  113. */
  114. static void set_alarm_or_time(struct device *dev, int time_alarm, time64_t time)
  115. {
  116. u32 tod, day, hr, min, sec, temp;
  117. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  118. void __iomem *ioaddr = pdata->ioaddr;
  119. day = div_s64_rem(time, 86400, &tod);
  120. /* time is within a day now */
  121. hr = tod / 3600;
  122. tod -= hr * 3600;
  123. /* time is within an hour now */
  124. min = tod / 60;
  125. sec = tod - min * 60;
  126. temp = (hr << 8) + min;
  127. switch (time_alarm) {
  128. case MXC_RTC_TIME:
  129. writew(day, ioaddr + RTC_DAYR);
  130. writew(sec, ioaddr + RTC_SECOND);
  131. writew(temp, ioaddr + RTC_HOURMIN);
  132. break;
  133. case MXC_RTC_ALARM:
  134. writew(day, ioaddr + RTC_DAYALARM);
  135. writew(sec, ioaddr + RTC_ALRM_SEC);
  136. writew(temp, ioaddr + RTC_ALRM_HM);
  137. break;
  138. }
  139. }
  140. /*
  141. * This function updates the RTC alarm registers and then clears all the
  142. * interrupt status bits.
  143. */
  144. static void rtc_update_alarm(struct device *dev, struct rtc_time *alrm)
  145. {
  146. time64_t time;
  147. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  148. void __iomem *ioaddr = pdata->ioaddr;
  149. time = rtc_tm_to_time64(alrm);
  150. /* clear all the interrupt status bits */
  151. writew(readw(ioaddr + RTC_RTCISR), ioaddr + RTC_RTCISR);
  152. set_alarm_or_time(dev, MXC_RTC_ALARM, time);
  153. }
  154. static void mxc_rtc_irq_enable(struct device *dev, unsigned int bit,
  155. unsigned int enabled)
  156. {
  157. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  158. void __iomem *ioaddr = pdata->ioaddr;
  159. u32 reg;
  160. spin_lock_irq(&pdata->rtc->irq_lock);
  161. reg = readw(ioaddr + RTC_RTCIENR);
  162. if (enabled)
  163. reg |= bit;
  164. else
  165. reg &= ~bit;
  166. writew(reg, ioaddr + RTC_RTCIENR);
  167. spin_unlock_irq(&pdata->rtc->irq_lock);
  168. }
  169. /* This function is the RTC interrupt service routine. */
  170. static irqreturn_t mxc_rtc_interrupt(int irq, void *dev_id)
  171. {
  172. struct platform_device *pdev = dev_id;
  173. struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
  174. void __iomem *ioaddr = pdata->ioaddr;
  175. unsigned long flags;
  176. u32 status;
  177. u32 events = 0;
  178. spin_lock_irqsave(&pdata->rtc->irq_lock, flags);
  179. status = readw(ioaddr + RTC_RTCISR) & readw(ioaddr + RTC_RTCIENR);
  180. /* clear interrupt sources */
  181. writew(status, ioaddr + RTC_RTCISR);
  182. /* update irq data & counter */
  183. if (status & RTC_ALM_BIT) {
  184. events |= (RTC_AF | RTC_IRQF);
  185. /* RTC alarm should be one-shot */
  186. mxc_rtc_irq_enable(&pdev->dev, RTC_ALM_BIT, 0);
  187. }
  188. if (status & PIT_ALL_ON)
  189. events |= (RTC_PF | RTC_IRQF);
  190. rtc_update_irq(pdata->rtc, 1, events);
  191. spin_unlock_irqrestore(&pdata->rtc->irq_lock, flags);
  192. return IRQ_HANDLED;
  193. }
  194. static int mxc_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
  195. {
  196. mxc_rtc_irq_enable(dev, RTC_ALM_BIT, enabled);
  197. return 0;
  198. }
  199. /*
  200. * This function reads the current RTC time into tm in Gregorian date.
  201. */
  202. static int mxc_rtc_read_time(struct device *dev, struct rtc_time *tm)
  203. {
  204. time64_t val;
  205. /* Avoid roll-over from reading the different registers */
  206. do {
  207. val = get_alarm_or_time(dev, MXC_RTC_TIME);
  208. } while (val != get_alarm_or_time(dev, MXC_RTC_TIME));
  209. rtc_time64_to_tm(val, tm);
  210. return 0;
  211. }
  212. /*
  213. * This function sets the internal RTC time based on tm in Gregorian date.
  214. */
  215. static int mxc_rtc_set_mmss(struct device *dev, time64_t time)
  216. {
  217. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  218. /*
  219. * TTC_DAYR register is 9-bit in MX1 SoC, save time and day of year only
  220. */
  221. if (is_imx1_rtc(pdata)) {
  222. struct rtc_time tm;
  223. rtc_time64_to_tm(time, &tm);
  224. tm.tm_year = 70;
  225. time = rtc_tm_to_time64(&tm);
  226. }
  227. /* Avoid roll-over from reading the different registers */
  228. do {
  229. set_alarm_or_time(dev, MXC_RTC_TIME, time);
  230. } while (time != get_alarm_or_time(dev, MXC_RTC_TIME));
  231. return 0;
  232. }
  233. /*
  234. * This function reads the current alarm value into the passed in 'alrm'
  235. * argument. It updates the alrm's pending field value based on the whether
  236. * an alarm interrupt occurs or not.
  237. */
  238. static int mxc_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
  239. {
  240. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  241. void __iomem *ioaddr = pdata->ioaddr;
  242. rtc_time64_to_tm(get_alarm_or_time(dev, MXC_RTC_ALARM), &alrm->time);
  243. alrm->pending = ((readw(ioaddr + RTC_RTCISR) & RTC_ALM_BIT)) ? 1 : 0;
  244. return 0;
  245. }
  246. /*
  247. * This function sets the RTC alarm based on passed in alrm.
  248. */
  249. static int mxc_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
  250. {
  251. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  252. rtc_update_alarm(dev, &alrm->time);
  253. memcpy(&pdata->g_rtc_alarm, &alrm->time, sizeof(struct rtc_time));
  254. mxc_rtc_irq_enable(dev, RTC_ALM_BIT, alrm->enabled);
  255. return 0;
  256. }
  257. /* RTC layer */
  258. static const struct rtc_class_ops mxc_rtc_ops = {
  259. .read_time = mxc_rtc_read_time,
  260. .set_mmss64 = mxc_rtc_set_mmss,
  261. .read_alarm = mxc_rtc_read_alarm,
  262. .set_alarm = mxc_rtc_set_alarm,
  263. .alarm_irq_enable = mxc_rtc_alarm_irq_enable,
  264. };
  265. static int mxc_rtc_probe(struct platform_device *pdev)
  266. {
  267. struct resource *res;
  268. struct rtc_device *rtc;
  269. struct rtc_plat_data *pdata = NULL;
  270. u32 reg;
  271. unsigned long rate;
  272. int ret;
  273. const struct of_device_id *of_id;
  274. pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
  275. if (!pdata)
  276. return -ENOMEM;
  277. of_id = of_match_device(imx_rtc_dt_ids, &pdev->dev);
  278. if (of_id)
  279. pdata->devtype = (enum imx_rtc_type)of_id->data;
  280. else
  281. pdata->devtype = pdev->id_entry->driver_data;
  282. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  283. pdata->ioaddr = devm_ioremap_resource(&pdev->dev, res);
  284. if (IS_ERR(pdata->ioaddr))
  285. return PTR_ERR(pdata->ioaddr);
  286. pdata->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
  287. if (IS_ERR(pdata->clk_ipg)) {
  288. dev_err(&pdev->dev, "unable to get ipg clock!\n");
  289. return PTR_ERR(pdata->clk_ipg);
  290. }
  291. ret = clk_prepare_enable(pdata->clk_ipg);
  292. if (ret)
  293. return ret;
  294. pdata->clk_ref = devm_clk_get(&pdev->dev, "ref");
  295. if (IS_ERR(pdata->clk_ref)) {
  296. dev_err(&pdev->dev, "unable to get ref clock!\n");
  297. ret = PTR_ERR(pdata->clk_ref);
  298. goto exit_put_clk_ipg;
  299. }
  300. ret = clk_prepare_enable(pdata->clk_ref);
  301. if (ret)
  302. goto exit_put_clk_ipg;
  303. rate = clk_get_rate(pdata->clk_ref);
  304. if (rate == 32768)
  305. reg = RTC_INPUT_CLK_32768HZ;
  306. else if (rate == 32000)
  307. reg = RTC_INPUT_CLK_32000HZ;
  308. else if (rate == 38400)
  309. reg = RTC_INPUT_CLK_38400HZ;
  310. else {
  311. dev_err(&pdev->dev, "rtc clock is not valid (%lu)\n", rate);
  312. ret = -EINVAL;
  313. goto exit_put_clk_ref;
  314. }
  315. reg |= RTC_ENABLE_BIT;
  316. writew(reg, (pdata->ioaddr + RTC_RTCCTL));
  317. if (((readw(pdata->ioaddr + RTC_RTCCTL)) & RTC_ENABLE_BIT) == 0) {
  318. dev_err(&pdev->dev, "hardware module can't be enabled!\n");
  319. ret = -EIO;
  320. goto exit_put_clk_ref;
  321. }
  322. platform_set_drvdata(pdev, pdata);
  323. /* Configure and enable the RTC */
  324. pdata->irq = platform_get_irq(pdev, 0);
  325. if (pdata->irq >= 0 &&
  326. devm_request_irq(&pdev->dev, pdata->irq, mxc_rtc_interrupt,
  327. IRQF_SHARED, pdev->name, pdev) < 0) {
  328. dev_warn(&pdev->dev, "interrupt not available.\n");
  329. pdata->irq = -1;
  330. }
  331. if (pdata->irq >= 0)
  332. device_init_wakeup(&pdev->dev, 1);
  333. rtc = devm_rtc_device_register(&pdev->dev, pdev->name, &mxc_rtc_ops,
  334. THIS_MODULE);
  335. if (IS_ERR(rtc)) {
  336. ret = PTR_ERR(rtc);
  337. goto exit_put_clk_ref;
  338. }
  339. pdata->rtc = rtc;
  340. return 0;
  341. exit_put_clk_ref:
  342. clk_disable_unprepare(pdata->clk_ref);
  343. exit_put_clk_ipg:
  344. clk_disable_unprepare(pdata->clk_ipg);
  345. return ret;
  346. }
  347. static int mxc_rtc_remove(struct platform_device *pdev)
  348. {
  349. struct rtc_plat_data *pdata = platform_get_drvdata(pdev);
  350. clk_disable_unprepare(pdata->clk_ref);
  351. clk_disable_unprepare(pdata->clk_ipg);
  352. return 0;
  353. }
  354. #ifdef CONFIG_PM_SLEEP
  355. static int mxc_rtc_suspend(struct device *dev)
  356. {
  357. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  358. if (device_may_wakeup(dev))
  359. enable_irq_wake(pdata->irq);
  360. return 0;
  361. }
  362. static int mxc_rtc_resume(struct device *dev)
  363. {
  364. struct rtc_plat_data *pdata = dev_get_drvdata(dev);
  365. if (device_may_wakeup(dev))
  366. disable_irq_wake(pdata->irq);
  367. return 0;
  368. }
  369. #endif
  370. static SIMPLE_DEV_PM_OPS(mxc_rtc_pm_ops, mxc_rtc_suspend, mxc_rtc_resume);
  371. static struct platform_driver mxc_rtc_driver = {
  372. .driver = {
  373. .name = "mxc_rtc",
  374. .of_match_table = of_match_ptr(imx_rtc_dt_ids),
  375. .pm = &mxc_rtc_pm_ops,
  376. },
  377. .id_table = imx_rtc_devtype,
  378. .probe = mxc_rtc_probe,
  379. .remove = mxc_rtc_remove,
  380. };
  381. module_platform_driver(mxc_rtc_driver)
  382. MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>");
  383. MODULE_DESCRIPTION("RTC driver for Freescale MXC");
  384. MODULE_LICENSE("GPL");