2 * Real Time Clock driver for Wolfson Microelectronics WM831x
4 * Copyright (C) 2009 Wolfson Microelectronics PLC.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/time.h>
18 #include <linux/rtc.h>
19 #include <linux/slab.h>
20 #include <linux/bcd.h>
21 #include <linux/interrupt.h>
22 #include <linux/ioctl.h>
23 #include <linux/completion.h>
24 #include <linux/mfd/wm831x/core.h>
25 #include <linux/delay.h>
26 #include <linux/platform_device.h>
30 * R16416 (0x4020) - RTC Write Counter
32 #define WM831X_RTC_WR_CNT_MASK 0xFFFF /* RTC_WR_CNT - [15:0] */
33 #define WM831X_RTC_WR_CNT_SHIFT 0 /* RTC_WR_CNT - [15:0] */
34 #define WM831X_RTC_WR_CNT_WIDTH 16 /* RTC_WR_CNT - [15:0] */
37 * R16417 (0x4021) - RTC Time 1
39 #define WM831X_RTC_TIME_MASK 0xFFFF /* RTC_TIME - [15:0] */
40 #define WM831X_RTC_TIME_SHIFT 0 /* RTC_TIME - [15:0] */
41 #define WM831X_RTC_TIME_WIDTH 16 /* RTC_TIME - [15:0] */
44 * R16418 (0x4022) - RTC Time 2
46 #define WM831X_RTC_TIME_MASK 0xFFFF /* RTC_TIME - [15:0] */
47 #define WM831X_RTC_TIME_SHIFT 0 /* RTC_TIME - [15:0] */
48 #define WM831X_RTC_TIME_WIDTH 16 /* RTC_TIME - [15:0] */
51 * R16419 (0x4023) - RTC Alarm 1
53 #define WM831X_RTC_ALM_MASK 0xFFFF /* RTC_ALM - [15:0] */
54 #define WM831X_RTC_ALM_SHIFT 0 /* RTC_ALM - [15:0] */
55 #define WM831X_RTC_ALM_WIDTH 16 /* RTC_ALM - [15:0] */
58 * R16420 (0x4024) - RTC Alarm 2
60 #define WM831X_RTC_ALM_MASK 0xFFFF /* RTC_ALM - [15:0] */
61 #define WM831X_RTC_ALM_SHIFT 0 /* RTC_ALM - [15:0] */
62 #define WM831X_RTC_ALM_WIDTH 16 /* RTC_ALM - [15:0] */
65 * R16421 (0x4025) - RTC Control
67 #define WM831X_RTC_VALID 0x8000 /* RTC_VALID */
68 #define WM831X_RTC_VALID_MASK 0x8000 /* RTC_VALID */
69 #define WM831X_RTC_VALID_SHIFT 15 /* RTC_VALID */
70 #define WM831X_RTC_VALID_WIDTH 1 /* RTC_VALID */
71 #define WM831X_RTC_SYNC_BUSY 0x4000 /* RTC_SYNC_BUSY */
72 #define WM831X_RTC_SYNC_BUSY_MASK 0x4000 /* RTC_SYNC_BUSY */
73 #define WM831X_RTC_SYNC_BUSY_SHIFT 14 /* RTC_SYNC_BUSY */
74 #define WM831X_RTC_SYNC_BUSY_WIDTH 1 /* RTC_SYNC_BUSY */
75 #define WM831X_RTC_ALM_ENA 0x0400 /* RTC_ALM_ENA */
76 #define WM831X_RTC_ALM_ENA_MASK 0x0400 /* RTC_ALM_ENA */
77 #define WM831X_RTC_ALM_ENA_SHIFT 10 /* RTC_ALM_ENA */
78 #define WM831X_RTC_ALM_ENA_WIDTH 1 /* RTC_ALM_ENA */
79 #define WM831X_RTC_PINT_FREQ_MASK 0x0070 /* RTC_PINT_FREQ - [6:4] */
80 #define WM831X_RTC_PINT_FREQ_SHIFT 4 /* RTC_PINT_FREQ - [6:4] */
81 #define WM831X_RTC_PINT_FREQ_WIDTH 3 /* RTC_PINT_FREQ - [6:4] */
84 * R16422 (0x4026) - RTC Trim
86 #define WM831X_RTC_TRIM_MASK 0x03FF /* RTC_TRIM - [9:0] */
87 #define WM831X_RTC_TRIM_SHIFT 0 /* RTC_TRIM - [9:0] */
88 #define WM831X_RTC_TRIM_WIDTH 10 /* RTC_TRIM - [9:0] */
90 #define WM831X_SET_TIME_RETRIES 5
91 #define WM831X_GET_TIME_RETRIES 5
94 struct wm831x *wm831x;
95 struct rtc_device *rtc;
96 unsigned int alarm_enabled:1;
100 * Read current time and date in RTC
102 static int wm831x_rtc_readtime(struct device *dev, struct rtc_time *tm)
104 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev);
105 struct wm831x *wm831x = wm831x_rtc->wm831x;
106 u16 time1[2], time2[2];
110 /* Has the RTC been programmed? */
111 ret = wm831x_reg_read(wm831x, WM831X_RTC_CONTROL);
113 dev_err(dev, "Failed to read RTC control: %d\n", ret);
116 if (!(ret & WM831X_RTC_VALID)) {
117 dev_dbg(dev, "RTC not yet configured\n");
121 /* Read twice to make sure we don't read a corrupt, partially
122 * incremented, value.
125 ret = wm831x_bulk_read(wm831x, WM831X_RTC_TIME_1,
130 ret = wm831x_bulk_read(wm831x, WM831X_RTC_TIME_1,
135 if (memcmp(time1, time2, sizeof(time1)) == 0) {
136 u32 time = (time1[0] << 16) | time1[1];
138 rtc_time_to_tm(time, tm);
139 return rtc_valid_tm(tm);
142 } while (++count < WM831X_GET_TIME_RETRIES);
144 dev_err(dev, "Timed out reading current time\n");
150 * Set current time and date in RTC
152 static int wm831x_rtc_set_mmss(struct device *dev, unsigned long time)
154 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev);
155 struct wm831x *wm831x = wm831x_rtc->wm831x;
156 struct rtc_time new_tm;
157 unsigned long new_time;
161 ret = wm831x_reg_write(wm831x, WM831X_RTC_TIME_1,
162 (time >> 16) & 0xffff);
164 dev_err(dev, "Failed to write TIME_1: %d\n", ret);
168 ret = wm831x_reg_write(wm831x, WM831X_RTC_TIME_2, time & 0xffff);
170 dev_err(dev, "Failed to write TIME_2: %d\n", ret);
174 /* Wait for the update to complete - should happen first time
175 * round but be conservative.
180 ret = wm831x_reg_read(wm831x, WM831X_RTC_CONTROL);
182 ret = WM831X_RTC_SYNC_BUSY;
183 } while (!(ret & WM831X_RTC_SYNC_BUSY) &&
184 ++count < WM831X_SET_TIME_RETRIES);
186 if (ret & WM831X_RTC_SYNC_BUSY) {
187 dev_err(dev, "Timed out writing RTC update\n");
191 /* Check that the update was accepted; security features may
192 * have caused the update to be ignored.
194 ret = wm831x_rtc_readtime(dev, &new_tm);
198 ret = rtc_tm_to_time(&new_tm, &new_time);
200 dev_err(dev, "Failed to convert time: %d\n", ret);
204 /* Allow a second of change in case of tick */
205 if (new_time - time > 1) {
206 dev_err(dev, "RTC update not permitted by hardware\n");
214 * Read alarm time and date in RTC
216 static int wm831x_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm)
218 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev);
223 ret = wm831x_bulk_read(wm831x_rtc->wm831x, WM831X_RTC_ALARM_1,
226 dev_err(dev, "Failed to read alarm time: %d\n", ret);
230 time = (data[0] << 16) | data[1];
232 rtc_time_to_tm(time, &alrm->time);
234 ret = wm831x_reg_read(wm831x_rtc->wm831x, WM831X_RTC_CONTROL);
236 dev_err(dev, "Failed to read RTC control: %d\n", ret);
240 if (ret & WM831X_RTC_ALM_ENA)
248 static int wm831x_rtc_stop_alarm(struct wm831x_rtc *wm831x_rtc)
250 wm831x_rtc->alarm_enabled = 0;
252 return wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL,
253 WM831X_RTC_ALM_ENA, 0);
256 static int wm831x_rtc_start_alarm(struct wm831x_rtc *wm831x_rtc)
258 wm831x_rtc->alarm_enabled = 1;
260 return wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL,
261 WM831X_RTC_ALM_ENA, WM831X_RTC_ALM_ENA);
264 static int wm831x_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
266 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev);
267 struct wm831x *wm831x = wm831x_rtc->wm831x;
271 ret = rtc_tm_to_time(&alrm->time, &time);
273 dev_err(dev, "Failed to convert time: %d\n", ret);
277 ret = wm831x_rtc_stop_alarm(wm831x_rtc);
279 dev_err(dev, "Failed to stop alarm: %d\n", ret);
283 ret = wm831x_reg_write(wm831x, WM831X_RTC_ALARM_1,
284 (time >> 16) & 0xffff);
286 dev_err(dev, "Failed to write ALARM_1: %d\n", ret);
290 ret = wm831x_reg_write(wm831x, WM831X_RTC_ALARM_2, time & 0xffff);
292 dev_err(dev, "Failed to write ALARM_2: %d\n", ret);
297 ret = wm831x_rtc_start_alarm(wm831x_rtc);
299 dev_err(dev, "Failed to start alarm: %d\n", ret);
307 static int wm831x_rtc_alarm_irq_enable(struct device *dev,
308 unsigned int enabled)
310 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(dev);
313 return wm831x_rtc_start_alarm(wm831x_rtc);
315 return wm831x_rtc_stop_alarm(wm831x_rtc);
318 static irqreturn_t wm831x_alm_irq(int irq, void *data)
320 struct wm831x_rtc *wm831x_rtc = data;
322 rtc_update_irq(wm831x_rtc->rtc, 1, RTC_IRQF | RTC_AF);
327 static irqreturn_t wm831x_per_irq(int irq, void *data)
329 struct wm831x_rtc *wm831x_rtc = data;
331 rtc_update_irq(wm831x_rtc->rtc, 1, RTC_IRQF | RTC_UF);
336 static const struct rtc_class_ops wm831x_rtc_ops = {
337 .read_time = wm831x_rtc_readtime,
338 .set_mmss = wm831x_rtc_set_mmss,
339 .read_alarm = wm831x_rtc_readalarm,
340 .set_alarm = wm831x_rtc_setalarm,
341 .alarm_irq_enable = wm831x_rtc_alarm_irq_enable,
345 /* Turn off the alarm if it should not be a wake source. */
346 static int wm831x_rtc_suspend(struct device *dev)
348 struct platform_device *pdev = to_platform_device(dev);
349 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(&pdev->dev);
352 if (wm831x_rtc->alarm_enabled && device_may_wakeup(&pdev->dev))
353 enable = WM831X_RTC_ALM_ENA;
357 ret = wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL,
358 WM831X_RTC_ALM_ENA, enable);
360 dev_err(&pdev->dev, "Failed to update RTC alarm: %d\n", ret);
365 /* Enable the alarm if it should be enabled (in case it was disabled to
366 * prevent use as a wake source).
368 static int wm831x_rtc_resume(struct device *dev)
370 struct platform_device *pdev = to_platform_device(dev);
371 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(&pdev->dev);
374 if (wm831x_rtc->alarm_enabled) {
375 ret = wm831x_rtc_start_alarm(wm831x_rtc);
378 "Failed to restart RTC alarm: %d\n", ret);
384 /* Unconditionally disable the alarm */
385 static int wm831x_rtc_freeze(struct device *dev)
387 struct platform_device *pdev = to_platform_device(dev);
388 struct wm831x_rtc *wm831x_rtc = dev_get_drvdata(&pdev->dev);
391 ret = wm831x_set_bits(wm831x_rtc->wm831x, WM831X_RTC_CONTROL,
392 WM831X_RTC_ALM_ENA, 0);
394 dev_err(&pdev->dev, "Failed to stop RTC alarm: %d\n", ret);
399 #define wm831x_rtc_suspend NULL
400 #define wm831x_rtc_resume NULL
401 #define wm831x_rtc_freeze NULL
404 static int wm831x_rtc_probe(struct platform_device *pdev)
406 struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent);
407 struct wm831x_rtc *wm831x_rtc;
408 int per_irq = platform_get_irq_byname(pdev, "PER");
409 int alm_irq = platform_get_irq_byname(pdev, "ALM");
412 wm831x_rtc = kzalloc(sizeof(*wm831x_rtc), GFP_KERNEL);
413 if (wm831x_rtc == NULL)
416 platform_set_drvdata(pdev, wm831x_rtc);
417 wm831x_rtc->wm831x = wm831x;
419 ret = wm831x_reg_read(wm831x, WM831X_RTC_CONTROL);
421 dev_err(&pdev->dev, "Failed to read RTC control: %d\n", ret);
424 if (ret & WM831X_RTC_ALM_ENA)
425 wm831x_rtc->alarm_enabled = 1;
427 device_init_wakeup(&pdev->dev, 1);
429 wm831x_rtc->rtc = rtc_device_register("wm831x", &pdev->dev,
430 &wm831x_rtc_ops, THIS_MODULE);
431 if (IS_ERR(wm831x_rtc->rtc)) {
432 ret = PTR_ERR(wm831x_rtc->rtc);
436 ret = request_threaded_irq(per_irq, NULL, wm831x_per_irq,
437 IRQF_TRIGGER_RISING, "RTC period",
440 dev_err(&pdev->dev, "Failed to request periodic IRQ %d: %d\n",
444 ret = request_threaded_irq(alm_irq, NULL, wm831x_alm_irq,
445 IRQF_TRIGGER_RISING, "RTC alarm",
448 dev_err(&pdev->dev, "Failed to request alarm IRQ %d: %d\n",
459 static int __devexit wm831x_rtc_remove(struct platform_device *pdev)
461 struct wm831x_rtc *wm831x_rtc = platform_get_drvdata(pdev);
462 int per_irq = platform_get_irq_byname(pdev, "PER");
463 int alm_irq = platform_get_irq_byname(pdev, "ALM");
465 free_irq(alm_irq, wm831x_rtc);
466 free_irq(per_irq, wm831x_rtc);
467 rtc_device_unregister(wm831x_rtc->rtc);
473 static const struct dev_pm_ops wm831x_rtc_pm_ops = {
474 .suspend = wm831x_rtc_suspend,
475 .resume = wm831x_rtc_resume,
477 .freeze = wm831x_rtc_freeze,
478 .thaw = wm831x_rtc_resume,
479 .restore = wm831x_rtc_resume,
481 .poweroff = wm831x_rtc_suspend,
484 static struct platform_driver wm831x_rtc_driver = {
485 .probe = wm831x_rtc_probe,
486 .remove = __devexit_p(wm831x_rtc_remove),
488 .name = "wm831x-rtc",
489 .pm = &wm831x_rtc_pm_ops,
493 static int __init wm831x_rtc_init(void)
495 return platform_driver_register(&wm831x_rtc_driver);
497 module_init(wm831x_rtc_init);
499 static void __exit wm831x_rtc_exit(void)
501 platform_driver_unregister(&wm831x_rtc_driver);
503 module_exit(wm831x_rtc_exit);
506 MODULE_DESCRIPTION("RTC driver for the WM831x series PMICs");
507 MODULE_LICENSE("GPL");
508 MODULE_ALIAS("platform:wm831x-rtc");