blob: 0a36c7ee3b401f1a603519e1b2bded44d893af10 [file] [log] [blame]
Richard Purdiee842f1c2006-03-27 01:16:46 -08001/*
2 * Real Time Clock interface for StrongARM SA1x00 and XScale PXA2xx
3 *
4 * Copyright (c) 2000 Nils Faerber
5 *
6 * Based on rtc.c by Paul Gortmaker
7 *
8 * Original Driver by Nils Faerber <nils@kernelconcepts.de>
9 *
10 * Modifications from:
11 * CIH <cih@coventive.com>
Nicolas Pitre2f82af02009-09-14 03:25:28 -040012 * Nicolas Pitre <nico@fluxnic.net>
Richard Purdiee842f1c2006-03-27 01:16:46 -080013 * Andrew Christian <andrew.christian@hp.com>
14 *
15 * Converted to the RTC subsystem and Driver Model
16 * by Richard Purdie <rpurdie@rpsys.net>
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
23
24#include <linux/platform_device.h>
25#include <linux/module.h>
26#include <linux/rtc.h>
27#include <linux/init.h>
28#include <linux/fs.h>
29#include <linux/interrupt.h>
Haojian Zhuang3888c092012-02-21 11:51:13 +080030#include <linux/slab.h>
Russell Kinga0164a52012-01-19 11:55:21 +000031#include <linux/string.h>
Richard Purdiee842f1c2006-03-27 01:16:46 -080032#include <linux/pm.h>
Russell Kinga0164a52012-01-19 11:55:21 +000033#include <linux/bitops.h>
Richard Purdiee842f1c2006-03-27 01:16:46 -080034
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/hardware.h>
Richard Purdiee842f1c2006-03-27 01:16:46 -080036#include <asm/irq.h>
Richard Purdiee842f1c2006-03-27 01:16:46 -080037
Haojian Zhuang3888c092012-02-21 11:51:13 +080038#if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP)
Russell Kinga0164a52012-01-19 11:55:21 +000039#include <mach/regs-rtc.h>
40#endif
41
Marcelo Roberto Jimeneza404ad12010-10-18 22:33:53 +010042#define RTC_DEF_DIVIDER (32768 - 1)
Richard Purdiee842f1c2006-03-27 01:16:46 -080043#define RTC_DEF_TRIM 0
Haojian Zhuang3888c092012-02-21 11:51:13 +080044#define RTC_FREQ 1024
Richard Purdiee842f1c2006-03-27 01:16:46 -080045
Haojian Zhuang3888c092012-02-21 11:51:13 +080046struct sa1100_rtc {
47 spinlock_t lock;
48 int irq_1hz;
49 int irq_alarm;
50 struct rtc_device *rtc;
51};
Richard Purdiee842f1c2006-03-27 01:16:46 -080052
David Howells7d12e782006-10-05 14:55:46 +010053static irqreturn_t sa1100_rtc_interrupt(int irq, void *dev_id)
Richard Purdiee842f1c2006-03-27 01:16:46 -080054{
Haojian Zhuang3888c092012-02-21 11:51:13 +080055 struct sa1100_rtc *info = dev_get_drvdata(dev_id);
56 struct rtc_device *rtc = info->rtc;
Richard Purdiee842f1c2006-03-27 01:16:46 -080057 unsigned int rtsr;
58 unsigned long events = 0;
59
Haojian Zhuang3888c092012-02-21 11:51:13 +080060 spin_lock(&info->lock);
Richard Purdiee842f1c2006-03-27 01:16:46 -080061
Russell Kinga0164a52012-01-19 11:55:21 +000062 rtsr = RTSR;
Richard Purdiee842f1c2006-03-27 01:16:46 -080063 /* clear interrupt sources */
Russell Kinga0164a52012-01-19 11:55:21 +000064 RTSR = 0;
Marcelo Roberto Jimenez7decaa52010-10-18 22:35:54 +010065 /* Fix for a nasty initialization problem the in SA11xx RTSR register.
66 * See also the comments in sa1100_rtc_probe(). */
67 if (rtsr & (RTSR_ALE | RTSR_HZE)) {
68 /* This is the original code, before there was the if test
69 * above. This code does not clear interrupts that were not
70 * enabled. */
Russell Kinga0164a52012-01-19 11:55:21 +000071 RTSR = (RTSR_AL | RTSR_HZ) & (rtsr >> 2);
Marcelo Roberto Jimenez7decaa52010-10-18 22:35:54 +010072 } else {
73 /* For some reason, it is possible to enter this routine
74 * without interruptions enabled, it has been tested with
75 * several units (Bug in SA11xx chip?).
76 *
77 * This situation leads to an infinite "loop" of interrupt
78 * routine calling and as a result the processor seems to
79 * lock on its first call to open(). */
Russell Kinga0164a52012-01-19 11:55:21 +000080 RTSR = RTSR_AL | RTSR_HZ;
Marcelo Roberto Jimenez7decaa52010-10-18 22:35:54 +010081 }
Richard Purdiee842f1c2006-03-27 01:16:46 -080082
83 /* clear alarm interrupt if it has occurred */
84 if (rtsr & RTSR_AL)
85 rtsr &= ~RTSR_ALE;
Russell Kinga0164a52012-01-19 11:55:21 +000086 RTSR = rtsr & (RTSR_ALE | RTSR_HZE);
Richard Purdiee842f1c2006-03-27 01:16:46 -080087
88 /* update irq data & counter */
89 if (rtsr & RTSR_AL)
90 events |= RTC_AF | RTC_IRQF;
91 if (rtsr & RTSR_HZ)
92 events |= RTC_UF | RTC_IRQF;
93
Russell Kinga0164a52012-01-19 11:55:21 +000094 rtc_update_irq(rtc, 1, events);
Richard Purdiee842f1c2006-03-27 01:16:46 -080095
Haojian Zhuang3888c092012-02-21 11:51:13 +080096 spin_unlock(&info->lock);
Richard Purdiee842f1c2006-03-27 01:16:46 -080097
98 return IRQ_HANDLED;
99}
100
Richard Purdiee842f1c2006-03-27 01:16:46 -0800101static int sa1100_rtc_open(struct device *dev)
102{
Haojian Zhuang3888c092012-02-21 11:51:13 +0800103 struct sa1100_rtc *info = dev_get_drvdata(dev);
104 struct rtc_device *rtc = info->rtc;
Richard Purdiee842f1c2006-03-27 01:16:46 -0800105 int ret;
106
Haojian Zhuang3888c092012-02-21 11:51:13 +0800107 ret = request_irq(info->irq_1hz, sa1100_rtc_interrupt, IRQF_DISABLED,
Russell Kinga0164a52012-01-19 11:55:21 +0000108 "rtc 1Hz", dev);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800109 if (ret) {
Haojian Zhuang3888c092012-02-21 11:51:13 +0800110 dev_err(dev, "IRQ %d already in use.\n", info->irq_1hz);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800111 goto fail_ui;
112 }
Haojian Zhuang3888c092012-02-21 11:51:13 +0800113 ret = request_irq(info->irq_alarm, sa1100_rtc_interrupt, IRQF_DISABLED,
Russell Kinga0164a52012-01-19 11:55:21 +0000114 "rtc Alrm", dev);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800115 if (ret) {
Haojian Zhuang3888c092012-02-21 11:51:13 +0800116 dev_err(dev, "IRQ %d already in use.\n", info->irq_alarm);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800117 goto fail_ai;
118 }
Russell Kinga0164a52012-01-19 11:55:21 +0000119 rtc->max_user_freq = RTC_FREQ;
120 rtc_irq_set_freq(rtc, NULL, RTC_FREQ);
Marcelo Roberto Jimenezd2ccb522010-12-16 21:31:32 +0100121
Richard Purdiee842f1c2006-03-27 01:16:46 -0800122 return 0;
123
Richard Purdiee842f1c2006-03-27 01:16:46 -0800124 fail_ai:
Haojian Zhuang3888c092012-02-21 11:51:13 +0800125 free_irq(info->irq_1hz, dev);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800126 fail_ui:
127 return ret;
128}
129
130static void sa1100_rtc_release(struct device *dev)
131{
Haojian Zhuang3888c092012-02-21 11:51:13 +0800132 struct sa1100_rtc *info = dev_get_drvdata(dev);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800133
Haojian Zhuang3888c092012-02-21 11:51:13 +0800134 spin_lock_irq(&info->lock);
135 RTSR = 0;
136 spin_unlock_irq(&info->lock);
137
138 free_irq(info->irq_alarm, dev);
139 free_irq(info->irq_1hz, dev);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800140}
141
John Stultz16380c12011-02-02 17:02:41 -0800142static int sa1100_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
143{
Haojian Zhuang3888c092012-02-21 11:51:13 +0800144 struct sa1100_rtc *info = dev_get_drvdata(dev);
145
146 spin_lock_irq(&info->lock);
John Stultz16380c12011-02-02 17:02:41 -0800147 if (enabled)
Russell Kinga0164a52012-01-19 11:55:21 +0000148 RTSR |= RTSR_ALE;
John Stultz16380c12011-02-02 17:02:41 -0800149 else
Russell Kinga0164a52012-01-19 11:55:21 +0000150 RTSR &= ~RTSR_ALE;
Haojian Zhuang3888c092012-02-21 11:51:13 +0800151 spin_unlock_irq(&info->lock);
John Stultz16380c12011-02-02 17:02:41 -0800152 return 0;
153}
154
Richard Purdiee842f1c2006-03-27 01:16:46 -0800155static int sa1100_rtc_read_time(struct device *dev, struct rtc_time *tm)
156{
Russell Kinga0164a52012-01-19 11:55:21 +0000157 rtc_time_to_tm(RCNR, tm);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800158 return 0;
159}
160
161static int sa1100_rtc_set_time(struct device *dev, struct rtc_time *tm)
162{
163 unsigned long time;
164 int ret;
165
166 ret = rtc_tm_to_time(tm, &time);
167 if (ret == 0)
Russell Kinga0164a52012-01-19 11:55:21 +0000168 RCNR = time;
Richard Purdiee842f1c2006-03-27 01:16:46 -0800169 return ret;
170}
171
172static int sa1100_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
173{
Russell Kinga0164a52012-01-19 11:55:21 +0000174 u32 rtsr;
David Brownell32b49da2007-02-20 13:58:13 -0800175
Russell Kinga0164a52012-01-19 11:55:21 +0000176 rtsr = RTSR;
David Brownell32b49da2007-02-20 13:58:13 -0800177 alrm->enabled = (rtsr & RTSR_ALE) ? 1 : 0;
178 alrm->pending = (rtsr & RTSR_AL) ? 1 : 0;
Richard Purdiee842f1c2006-03-27 01:16:46 -0800179 return 0;
180}
181
182static int sa1100_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
183{
Haojian Zhuang3888c092012-02-21 11:51:13 +0800184 struct sa1100_rtc *info = dev_get_drvdata(dev);
Haojian Zhuang1d8c38c2012-02-20 19:49:30 +0800185 unsigned long time;
Russell Kinga0164a52012-01-19 11:55:21 +0000186 int ret;
Richard Purdiee842f1c2006-03-27 01:16:46 -0800187
Haojian Zhuang3888c092012-02-21 11:51:13 +0800188 spin_lock_irq(&info->lock);
Haojian Zhuang1d8c38c2012-02-20 19:49:30 +0800189 ret = rtc_tm_to_time(&alrm->time, &time);
190 if (ret != 0)
191 goto out;
192 RTSR = RTSR & (RTSR_HZE|RTSR_ALE|RTSR_AL);
193 RTAR = time;
194 if (alrm->enabled)
195 RTSR |= RTSR_ALE;
196 else
197 RTSR &= ~RTSR_ALE;
198out:
Haojian Zhuang3888c092012-02-21 11:51:13 +0800199 spin_unlock_irq(&info->lock);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800200
Russell Kinga0164a52012-01-19 11:55:21 +0000201 return ret;
Richard Purdiee842f1c2006-03-27 01:16:46 -0800202}
203
204static int sa1100_rtc_proc(struct device *dev, struct seq_file *seq)
205{
Russell Kinga0164a52012-01-19 11:55:21 +0000206 seq_printf(seq, "trim/divider\t\t: 0x%08x\n", (u32) RTTR);
207 seq_printf(seq, "RTSR\t\t\t: 0x%08x\n", (u32)RTSR);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800208
209 return 0;
210}
211
David Brownellff8371a2006-09-30 23:28:17 -0700212static const struct rtc_class_ops sa1100_rtc_ops = {
Richard Purdiee842f1c2006-03-27 01:16:46 -0800213 .open = sa1100_rtc_open,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800214 .release = sa1100_rtc_release,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800215 .read_time = sa1100_rtc_read_time,
216 .set_time = sa1100_rtc_set_time,
217 .read_alarm = sa1100_rtc_read_alarm,
218 .set_alarm = sa1100_rtc_set_alarm,
219 .proc = sa1100_rtc_proc,
John Stultz16380c12011-02-02 17:02:41 -0800220 .alarm_irq_enable = sa1100_rtc_alarm_irq_enable,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800221};
222
223static int sa1100_rtc_probe(struct platform_device *pdev)
224{
Russell Kinga0164a52012-01-19 11:55:21 +0000225 struct rtc_device *rtc;
Haojian Zhuang3888c092012-02-21 11:51:13 +0800226 struct sa1100_rtc *info;
227 int irq_1hz, irq_alarm, ret = 0;
228
229 irq_1hz = platform_get_irq_byname(pdev, "rtc 1Hz");
230 irq_alarm = platform_get_irq_byname(pdev, "rtc alarm");
231 if (irq_1hz < 0 || irq_alarm < 0)
232 return -ENODEV;
233
234 info = kzalloc(sizeof(struct sa1100_rtc), GFP_KERNEL);
235 if (!info)
236 return -ENOMEM;
237 info->irq_1hz = irq_1hz;
238 info->irq_alarm = irq_alarm;
239 spin_lock_init(&info->lock);
240 platform_set_drvdata(pdev, info);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800241
242 /*
243 * According to the manual we should be able to let RTTR be zero
244 * and then a default diviser for a 32.768KHz clock is used.
245 * Apparently this doesn't work, at least for my SA1110 rev 5.
246 * If the clock divider is uninitialized then reset it to the
247 * default value to get the 1Hz clock.
248 */
Russell Kinga0164a52012-01-19 11:55:21 +0000249 if (RTTR == 0) {
250 RTTR = RTC_DEF_DIVIDER + (RTC_DEF_TRIM << 16);
251 dev_warn(&pdev->dev, "warning: "
252 "initializing default clock divider/trim value\n");
Richard Purdiee842f1c2006-03-27 01:16:46 -0800253 /* The current RTC value probably doesn't make sense either */
Russell Kinga0164a52012-01-19 11:55:21 +0000254 RCNR = 0;
Richard Purdiee842f1c2006-03-27 01:16:46 -0800255 }
256
Uli Luckase5a2c9c2008-06-18 09:54:03 +0100257 device_init_wakeup(&pdev->dev, 1);
258
Russell Kinga0164a52012-01-19 11:55:21 +0000259 rtc = rtc_device_register(pdev->name, &pdev->dev, &sa1100_rtc_ops,
260 THIS_MODULE);
261
Haojian Zhuang3888c092012-02-21 11:51:13 +0800262 if (IS_ERR(rtc)) {
263 ret = PTR_ERR(rtc);
264 goto err_dev;
265 }
266 info->rtc = rtc;
Russell Kinga0164a52012-01-19 11:55:21 +0000267
Marcelo Roberto Jimenez7decaa52010-10-18 22:35:54 +0100268 /* Fix for a nasty initialization problem the in SA11xx RTSR register.
269 * See also the comments in sa1100_rtc_interrupt().
270 *
271 * Sometimes bit 1 of the RTSR (RTSR_HZ) will wake up 1, which means an
272 * interrupt pending, even though interrupts were never enabled.
273 * In this case, this bit it must be reset before enabling
274 * interruptions to avoid a nonexistent interrupt to occur.
275 *
276 * In principle, the same problem would apply to bit 0, although it has
277 * never been observed to happen.
278 *
279 * This issue is addressed both here and in sa1100_rtc_interrupt().
280 * If the issue is not addressed here, in the times when the processor
281 * wakes up with the bit set there will be one spurious interrupt.
282 *
283 * The issue is also dealt with in sa1100_rtc_interrupt() to be on the
284 * safe side, once the condition that lead to this strange
285 * initialization is unknown and could in principle happen during
286 * normal processing.
287 *
288 * Notice that clearing bit 1 and 0 is accomplished by writting ONES to
289 * the corresponding bits in RTSR. */
Russell Kinga0164a52012-01-19 11:55:21 +0000290 RTSR = RTSR_AL | RTSR_HZ;
Marcelo Roberto Jimenez7decaa52010-10-18 22:35:54 +0100291
Richard Purdiee842f1c2006-03-27 01:16:46 -0800292 return 0;
Haojian Zhuang3888c092012-02-21 11:51:13 +0800293err_dev:
294 platform_set_drvdata(pdev, NULL);
295 kfree(info);
296 return ret;
Richard Purdiee842f1c2006-03-27 01:16:46 -0800297}
298
299static int sa1100_rtc_remove(struct platform_device *pdev)
300{
Haojian Zhuang3888c092012-02-21 11:51:13 +0800301 struct sa1100_rtc *info = platform_get_drvdata(pdev);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800302
Haojian Zhuang3888c092012-02-21 11:51:13 +0800303 if (info) {
304 rtc_device_unregister(info->rtc);
305 platform_set_drvdata(pdev, NULL);
306 kfree(info);
307 }
Russell Kinga0164a52012-01-19 11:55:21 +0000308
Richard Purdiee842f1c2006-03-27 01:16:46 -0800309 return 0;
310}
311
Russell King6bc54e62007-11-12 22:49:58 +0000312#ifdef CONFIG_PM
Haojian Zhuang5d027cd2009-07-21 14:31:09 +0800313static int sa1100_rtc_suspend(struct device *dev)
Russell King6bc54e62007-11-12 22:49:58 +0000314{
Haojian Zhuang3888c092012-02-21 11:51:13 +0800315 struct sa1100_rtc *info = dev_get_drvdata(dev);
Haojian Zhuang5d027cd2009-07-21 14:31:09 +0800316 if (device_may_wakeup(dev))
Haojian Zhuang3888c092012-02-21 11:51:13 +0800317 enable_irq_wake(info->irq_alarm);
Russell King6bc54e62007-11-12 22:49:58 +0000318 return 0;
319}
320
Haojian Zhuang5d027cd2009-07-21 14:31:09 +0800321static int sa1100_rtc_resume(struct device *dev)
Russell King6bc54e62007-11-12 22:49:58 +0000322{
Haojian Zhuang3888c092012-02-21 11:51:13 +0800323 struct sa1100_rtc *info = dev_get_drvdata(dev);
Haojian Zhuang5d027cd2009-07-21 14:31:09 +0800324 if (device_may_wakeup(dev))
Haojian Zhuang3888c092012-02-21 11:51:13 +0800325 disable_irq_wake(info->irq_alarm);
Russell King6bc54e62007-11-12 22:49:58 +0000326 return 0;
327}
Haojian Zhuang5d027cd2009-07-21 14:31:09 +0800328
Alexey Dobriyan47145212009-12-14 18:00:08 -0800329static const struct dev_pm_ops sa1100_rtc_pm_ops = {
Haojian Zhuang5d027cd2009-07-21 14:31:09 +0800330 .suspend = sa1100_rtc_suspend,
331 .resume = sa1100_rtc_resume,
332};
Russell King6bc54e62007-11-12 22:49:58 +0000333#endif
334
Richard Purdiee842f1c2006-03-27 01:16:46 -0800335static struct platform_driver sa1100_rtc_driver = {
336 .probe = sa1100_rtc_probe,
337 .remove = sa1100_rtc_remove,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800338 .driver = {
Haojian Zhuang5d027cd2009-07-21 14:31:09 +0800339 .name = "sa1100-rtc",
340#ifdef CONFIG_PM
341 .pm = &sa1100_rtc_pm_ops,
342#endif
Richard Purdiee842f1c2006-03-27 01:16:46 -0800343 },
344};
345
Axel Lin0c4eae62012-01-10 15:10:48 -0800346module_platform_driver(sa1100_rtc_driver);
Richard Purdiee842f1c2006-03-27 01:16:46 -0800347
348MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>");
349MODULE_DESCRIPTION("SA11x0/PXA2xx Realtime Clock Driver (RTC)");
350MODULE_LICENSE("GPL");
Kay Sieversad28a072008-04-10 21:29:25 -0700351MODULE_ALIAS("platform:sa1100-rtc");