Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[linux-2.6.git] / drivers / rtc / rtc-pm8xxx.c
blob03f8f75d5af2267ae89c99e843d17ca0f60ff062
1 /* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/rtc.h>
16 #include <linux/pm.h>
17 #include <linux/slab.h>
18 #include <linux/spinlock.h>
20 #include <linux/mfd/pm8xxx/core.h>
21 #include <linux/mfd/pm8xxx/rtc.h>
24 /* RTC Register offsets from RTC CTRL REG */
25 #define PM8XXX_ALARM_CTRL_OFFSET 0x01
26 #define PM8XXX_RTC_WRITE_OFFSET 0x02
27 #define PM8XXX_RTC_READ_OFFSET 0x06
28 #define PM8XXX_ALARM_RW_OFFSET 0x0A
30 /* RTC_CTRL register bit fields */
31 #define PM8xxx_RTC_ENABLE BIT(7)
32 #define PM8xxx_RTC_ALARM_ENABLE BIT(1)
33 #define PM8xxx_RTC_ALARM_CLEAR BIT(0)
35 #define NUM_8_BIT_RTC_REGS 0x4
37 /**
38 * struct pm8xxx_rtc - rtc driver internal structure
39 * @rtc: rtc device for this driver.
40 * @rtc_alarm_irq: rtc alarm irq number.
41 * @rtc_base: address of rtc control register.
42 * @rtc_read_base: base address of read registers.
43 * @rtc_write_base: base address of write registers.
44 * @alarm_rw_base: base address of alarm registers.
45 * @ctrl_reg: rtc control register.
46 * @rtc_dev: device structure.
47 * @ctrl_reg_lock: spinlock protecting access to ctrl_reg.
49 struct pm8xxx_rtc {
50 struct rtc_device *rtc;
51 int rtc_alarm_irq;
52 int rtc_base;
53 int rtc_read_base;
54 int rtc_write_base;
55 int alarm_rw_base;
56 u8 ctrl_reg;
57 struct device *rtc_dev;
58 spinlock_t ctrl_reg_lock;
62 * The RTC registers need to be read/written one byte at a time. This is a
63 * hardware limitation.
65 static int pm8xxx_read_wrapper(struct pm8xxx_rtc *rtc_dd, u8 *rtc_val,
66 int base, int count)
68 int i, rc;
69 struct device *parent = rtc_dd->rtc_dev->parent;
71 for (i = 0; i < count; i++) {
72 rc = pm8xxx_readb(parent, base + i, &rtc_val[i]);
73 if (rc < 0) {
74 dev_err(rtc_dd->rtc_dev, "PMIC read failed\n");
75 return rc;
79 return 0;
82 static int pm8xxx_write_wrapper(struct pm8xxx_rtc *rtc_dd, u8 *rtc_val,
83 int base, int count)
85 int i, rc;
86 struct device *parent = rtc_dd->rtc_dev->parent;
88 for (i = 0; i < count; i++) {
89 rc = pm8xxx_writeb(parent, base + i, rtc_val[i]);
90 if (rc < 0) {
91 dev_err(rtc_dd->rtc_dev, "PMIC write failed\n");
92 return rc;
96 return 0;
100 * Steps to write the RTC registers.
101 * 1. Disable alarm if enabled.
102 * 2. Write 0x00 to LSB.
103 * 3. Write Byte[1], Byte[2], Byte[3] then Byte[0].
104 * 4. Enable alarm if disabled in step 1.
106 static int pm8xxx_rtc_set_time(struct device *dev, struct rtc_time *tm)
108 int rc, i;
109 unsigned long secs, irq_flags;
110 u8 value[NUM_8_BIT_RTC_REGS], reg = 0, alarm_enabled = 0, ctrl_reg;
111 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
113 rtc_tm_to_time(tm, &secs);
115 for (i = 0; i < NUM_8_BIT_RTC_REGS; i++) {
116 value[i] = secs & 0xFF;
117 secs >>= 8;
120 dev_dbg(dev, "Seconds value to be written to RTC = %lu\n", secs);
122 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
123 ctrl_reg = rtc_dd->ctrl_reg;
125 if (ctrl_reg & PM8xxx_RTC_ALARM_ENABLE) {
126 alarm_enabled = 1;
127 ctrl_reg &= ~PM8xxx_RTC_ALARM_ENABLE;
128 rc = pm8xxx_write_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base,
130 if (rc < 0) {
131 dev_err(dev, "Write to RTC control register "
132 "failed\n");
133 goto rtc_rw_fail;
135 rtc_dd->ctrl_reg = ctrl_reg;
136 } else
137 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
139 /* Write 0 to Byte[0] */
140 reg = 0;
141 rc = pm8xxx_write_wrapper(rtc_dd, &reg, rtc_dd->rtc_write_base, 1);
142 if (rc < 0) {
143 dev_err(dev, "Write to RTC write data register failed\n");
144 goto rtc_rw_fail;
147 /* Write Byte[1], Byte[2], Byte[3] */
148 rc = pm8xxx_write_wrapper(rtc_dd, value + 1,
149 rtc_dd->rtc_write_base + 1, 3);
150 if (rc < 0) {
151 dev_err(dev, "Write to RTC write data register failed\n");
152 goto rtc_rw_fail;
155 /* Write Byte[0] */
156 rc = pm8xxx_write_wrapper(rtc_dd, value, rtc_dd->rtc_write_base, 1);
157 if (rc < 0) {
158 dev_err(dev, "Write to RTC write data register failed\n");
159 goto rtc_rw_fail;
162 if (alarm_enabled) {
163 ctrl_reg |= PM8xxx_RTC_ALARM_ENABLE;
164 rc = pm8xxx_write_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base,
166 if (rc < 0) {
167 dev_err(dev, "Write to RTC control register "
168 "failed\n");
169 goto rtc_rw_fail;
171 rtc_dd->ctrl_reg = ctrl_reg;
174 rtc_rw_fail:
175 if (alarm_enabled)
176 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
178 return rc;
181 static int pm8xxx_rtc_read_time(struct device *dev, struct rtc_time *tm)
183 int rc;
184 u8 value[NUM_8_BIT_RTC_REGS], reg;
185 unsigned long secs;
186 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
188 rc = pm8xxx_read_wrapper(rtc_dd, value, rtc_dd->rtc_read_base,
189 NUM_8_BIT_RTC_REGS);
190 if (rc < 0) {
191 dev_err(dev, "RTC read data register failed\n");
192 return rc;
196 * Read the LSB again and check if there has been a carry over.
197 * If there is, redo the read operation.
199 rc = pm8xxx_read_wrapper(rtc_dd, &reg, rtc_dd->rtc_read_base, 1);
200 if (rc < 0) {
201 dev_err(dev, "RTC read data register failed\n");
202 return rc;
205 if (unlikely(reg < value[0])) {
206 rc = pm8xxx_read_wrapper(rtc_dd, value,
207 rtc_dd->rtc_read_base, NUM_8_BIT_RTC_REGS);
208 if (rc < 0) {
209 dev_err(dev, "RTC read data register failed\n");
210 return rc;
214 secs = value[0] | (value[1] << 8) | (value[2] << 16) | (value[3] << 24);
216 rtc_time_to_tm(secs, tm);
218 rc = rtc_valid_tm(tm);
219 if (rc < 0) {
220 dev_err(dev, "Invalid time read from RTC\n");
221 return rc;
224 dev_dbg(dev, "secs = %lu, h:m:s == %d:%d:%d, d/m/y = %d/%d/%d\n",
225 secs, tm->tm_hour, tm->tm_min, tm->tm_sec,
226 tm->tm_mday, tm->tm_mon, tm->tm_year);
228 return 0;
231 static int pm8xxx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
233 int rc, i;
234 u8 value[NUM_8_BIT_RTC_REGS], ctrl_reg;
235 unsigned long secs, irq_flags;
236 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
238 rtc_tm_to_time(&alarm->time, &secs);
240 for (i = 0; i < NUM_8_BIT_RTC_REGS; i++) {
241 value[i] = secs & 0xFF;
242 secs >>= 8;
245 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
247 rc = pm8xxx_write_wrapper(rtc_dd, value, rtc_dd->alarm_rw_base,
248 NUM_8_BIT_RTC_REGS);
249 if (rc < 0) {
250 dev_err(dev, "Write to RTC ALARM register failed\n");
251 goto rtc_rw_fail;
254 ctrl_reg = rtc_dd->ctrl_reg;
255 ctrl_reg = alarm->enabled ? (ctrl_reg | PM8xxx_RTC_ALARM_ENABLE) :
256 (ctrl_reg & ~PM8xxx_RTC_ALARM_ENABLE);
258 rc = pm8xxx_write_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base, 1);
259 if (rc < 0) {
260 dev_err(dev, "Write to RTC control register failed\n");
261 goto rtc_rw_fail;
264 rtc_dd->ctrl_reg = ctrl_reg;
266 dev_dbg(dev, "Alarm Set for h:r:s=%d:%d:%d, d/m/y=%d/%d/%d\n",
267 alarm->time.tm_hour, alarm->time.tm_min,
268 alarm->time.tm_sec, alarm->time.tm_mday,
269 alarm->time.tm_mon, alarm->time.tm_year);
270 rtc_rw_fail:
271 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
272 return rc;
275 static int pm8xxx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
277 int rc;
278 u8 value[NUM_8_BIT_RTC_REGS];
279 unsigned long secs;
280 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
282 rc = pm8xxx_read_wrapper(rtc_dd, value, rtc_dd->alarm_rw_base,
283 NUM_8_BIT_RTC_REGS);
284 if (rc < 0) {
285 dev_err(dev, "RTC alarm time read failed\n");
286 return rc;
289 secs = value[0] | (value[1] << 8) | (value[2] << 16) | (value[3] << 24);
291 rtc_time_to_tm(secs, &alarm->time);
293 rc = rtc_valid_tm(&alarm->time);
294 if (rc < 0) {
295 dev_err(dev, "Invalid alarm time read from RTC\n");
296 return rc;
299 dev_dbg(dev, "Alarm set for - h:r:s=%d:%d:%d, d/m/y=%d/%d/%d\n",
300 alarm->time.tm_hour, alarm->time.tm_min,
301 alarm->time.tm_sec, alarm->time.tm_mday,
302 alarm->time.tm_mon, alarm->time.tm_year);
304 return 0;
307 static int pm8xxx_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)
309 int rc;
310 unsigned long irq_flags;
311 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
312 u8 ctrl_reg;
314 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
315 ctrl_reg = rtc_dd->ctrl_reg;
316 ctrl_reg = (enable) ? (ctrl_reg | PM8xxx_RTC_ALARM_ENABLE) :
317 (ctrl_reg & ~PM8xxx_RTC_ALARM_ENABLE);
319 rc = pm8xxx_write_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base, 1);
320 if (rc < 0) {
321 dev_err(dev, "Write to RTC control register failed\n");
322 goto rtc_rw_fail;
325 rtc_dd->ctrl_reg = ctrl_reg;
327 rtc_rw_fail:
328 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
329 return rc;
332 static struct rtc_class_ops pm8xxx_rtc_ops = {
333 .read_time = pm8xxx_rtc_read_time,
334 .set_alarm = pm8xxx_rtc_set_alarm,
335 .read_alarm = pm8xxx_rtc_read_alarm,
336 .alarm_irq_enable = pm8xxx_rtc_alarm_irq_enable,
339 static irqreturn_t pm8xxx_alarm_trigger(int irq, void *dev_id)
341 struct pm8xxx_rtc *rtc_dd = dev_id;
342 u8 ctrl_reg;
343 int rc;
344 unsigned long irq_flags;
346 rtc_update_irq(rtc_dd->rtc, 1, RTC_IRQF | RTC_AF);
348 spin_lock_irqsave(&rtc_dd->ctrl_reg_lock, irq_flags);
350 /* Clear the alarm enable bit */
351 ctrl_reg = rtc_dd->ctrl_reg;
352 ctrl_reg &= ~PM8xxx_RTC_ALARM_ENABLE;
354 rc = pm8xxx_write_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base, 1);
355 if (rc < 0) {
356 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
357 dev_err(rtc_dd->rtc_dev, "Write to RTC control register "
358 "failed\n");
359 goto rtc_alarm_handled;
362 rtc_dd->ctrl_reg = ctrl_reg;
363 spin_unlock_irqrestore(&rtc_dd->ctrl_reg_lock, irq_flags);
365 /* Clear RTC alarm register */
366 rc = pm8xxx_read_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base +
367 PM8XXX_ALARM_CTRL_OFFSET, 1);
368 if (rc < 0) {
369 dev_err(rtc_dd->rtc_dev, "RTC Alarm control register read "
370 "failed\n");
371 goto rtc_alarm_handled;
374 ctrl_reg &= ~PM8xxx_RTC_ALARM_CLEAR;
375 rc = pm8xxx_write_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base +
376 PM8XXX_ALARM_CTRL_OFFSET, 1);
377 if (rc < 0)
378 dev_err(rtc_dd->rtc_dev, "Write to RTC Alarm control register"
379 " failed\n");
381 rtc_alarm_handled:
382 return IRQ_HANDLED;
385 static int pm8xxx_rtc_probe(struct platform_device *pdev)
387 int rc;
388 u8 ctrl_reg;
389 bool rtc_write_enable = false;
390 struct pm8xxx_rtc *rtc_dd;
391 struct resource *rtc_resource;
392 const struct pm8xxx_rtc_platform_data *pdata =
393 dev_get_platdata(&pdev->dev);
395 if (pdata != NULL)
396 rtc_write_enable = pdata->rtc_write_enable;
398 rtc_dd = devm_kzalloc(&pdev->dev, sizeof(*rtc_dd), GFP_KERNEL);
399 if (rtc_dd == NULL) {
400 dev_err(&pdev->dev, "Unable to allocate memory!\n");
401 return -ENOMEM;
404 /* Initialise spinlock to protect RTC control register */
405 spin_lock_init(&rtc_dd->ctrl_reg_lock);
407 rtc_dd->rtc_alarm_irq = platform_get_irq(pdev, 0);
408 if (rtc_dd->rtc_alarm_irq < 0) {
409 dev_err(&pdev->dev, "Alarm IRQ resource absent!\n");
410 return -ENXIO;
413 rtc_resource = platform_get_resource_byname(pdev, IORESOURCE_IO,
414 "pmic_rtc_base");
415 if (!(rtc_resource && rtc_resource->start)) {
416 dev_err(&pdev->dev, "RTC IO resource absent!\n");
417 return -ENXIO;
420 rtc_dd->rtc_base = rtc_resource->start;
422 /* Setup RTC register addresses */
423 rtc_dd->rtc_write_base = rtc_dd->rtc_base + PM8XXX_RTC_WRITE_OFFSET;
424 rtc_dd->rtc_read_base = rtc_dd->rtc_base + PM8XXX_RTC_READ_OFFSET;
425 rtc_dd->alarm_rw_base = rtc_dd->rtc_base + PM8XXX_ALARM_RW_OFFSET;
427 rtc_dd->rtc_dev = &pdev->dev;
429 /* Check if the RTC is on, else turn it on */
430 rc = pm8xxx_read_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base, 1);
431 if (rc < 0) {
432 dev_err(&pdev->dev, "RTC control register read failed!\n");
433 return rc;
436 if (!(ctrl_reg & PM8xxx_RTC_ENABLE)) {
437 ctrl_reg |= PM8xxx_RTC_ENABLE;
438 rc = pm8xxx_write_wrapper(rtc_dd, &ctrl_reg, rtc_dd->rtc_base,
440 if (rc < 0) {
441 dev_err(&pdev->dev, "Write to RTC control register "
442 "failed\n");
443 return rc;
447 rtc_dd->ctrl_reg = ctrl_reg;
448 if (rtc_write_enable == true)
449 pm8xxx_rtc_ops.set_time = pm8xxx_rtc_set_time;
451 platform_set_drvdata(pdev, rtc_dd);
453 /* Register the RTC device */
454 rtc_dd->rtc = devm_rtc_device_register(&pdev->dev, "pm8xxx_rtc",
455 &pm8xxx_rtc_ops, THIS_MODULE);
456 if (IS_ERR(rtc_dd->rtc)) {
457 dev_err(&pdev->dev, "%s: RTC registration failed (%ld)\n",
458 __func__, PTR_ERR(rtc_dd->rtc));
459 return PTR_ERR(rtc_dd->rtc);
462 /* Request the alarm IRQ */
463 rc = request_any_context_irq(rtc_dd->rtc_alarm_irq,
464 pm8xxx_alarm_trigger, IRQF_TRIGGER_RISING,
465 "pm8xxx_rtc_alarm", rtc_dd);
466 if (rc < 0) {
467 dev_err(&pdev->dev, "Request IRQ failed (%d)\n", rc);
468 return rc;
471 device_init_wakeup(&pdev->dev, 1);
473 dev_dbg(&pdev->dev, "Probe success !!\n");
475 return 0;
478 static int pm8xxx_rtc_remove(struct platform_device *pdev)
480 struct pm8xxx_rtc *rtc_dd = platform_get_drvdata(pdev);
482 device_init_wakeup(&pdev->dev, 0);
483 free_irq(rtc_dd->rtc_alarm_irq, rtc_dd);
485 return 0;
488 #ifdef CONFIG_PM_SLEEP
489 static int pm8xxx_rtc_resume(struct device *dev)
491 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
493 if (device_may_wakeup(dev))
494 disable_irq_wake(rtc_dd->rtc_alarm_irq);
496 return 0;
499 static int pm8xxx_rtc_suspend(struct device *dev)
501 struct pm8xxx_rtc *rtc_dd = dev_get_drvdata(dev);
503 if (device_may_wakeup(dev))
504 enable_irq_wake(rtc_dd->rtc_alarm_irq);
506 return 0;
508 #endif
510 static SIMPLE_DEV_PM_OPS(pm8xxx_rtc_pm_ops, pm8xxx_rtc_suspend, pm8xxx_rtc_resume);
512 static struct platform_driver pm8xxx_rtc_driver = {
513 .probe = pm8xxx_rtc_probe,
514 .remove = pm8xxx_rtc_remove,
515 .driver = {
516 .name = PM8XXX_RTC_DEV_NAME,
517 .owner = THIS_MODULE,
518 .pm = &pm8xxx_rtc_pm_ops,
522 module_platform_driver(pm8xxx_rtc_driver);
524 MODULE_ALIAS("platform:rtc-pm8xxx");
525 MODULE_DESCRIPTION("PMIC8xxx RTC driver");
526 MODULE_LICENSE("GPL v2");
527 MODULE_AUTHOR("Anirudh Ghayal <aghayal@codeaurora.org>");