blob: c0a6e638c6723ce35d728bcfcbeefedbff9a7f57 [file] [log] [blame]
GuanXuetao02b2ee12011-01-15 18:19:03 +08001/*
Guan Xuetao2809e802011-05-26 16:43:27 +08002 * RTC driver code specific to PKUnity SoC and UniCore ISA
GuanXuetao02b2ee12011-01-15 18:19:03 +08003 *
4 * Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn>
5 * Copyright (C) 2001-2010 Guan Xuetao
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
13#include <linux/fs.h>
14#include <linux/string.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
17#include <linux/interrupt.h>
18#include <linux/rtc.h>
19#include <linux/bcd.h>
20#include <linux/clk.h>
21#include <linux/log2.h>
22#include <linux/slab.h>
23#include <linux/uaccess.h>
24#include <linux/io.h>
25
26#include <asm/irq.h>
27#include <mach/hardware.h>
28
29static struct resource *puv3_rtc_mem;
30
31static int puv3_rtc_alarmno = IRQ_RTCAlarm;
32static int puv3_rtc_tickno = IRQ_RTC;
33
34static DEFINE_SPINLOCK(puv3_rtc_pie_lock);
35
36/* IRQ Handlers */
GuanXuetao02b2ee12011-01-15 18:19:03 +080037static irqreturn_t puv3_rtc_alarmirq(int irq, void *id)
38{
39 struct rtc_device *rdev = id;
40
GuanXuetaoe5abf782011-02-26 21:21:18 +080041 writel(readl(RTC_RTSR) | RTC_RTSR_AL, RTC_RTSR);
GuanXuetao02b2ee12011-01-15 18:19:03 +080042 rtc_update_irq(rdev, 1, RTC_AF | RTC_IRQF);
43 return IRQ_HANDLED;
44}
45
46static irqreturn_t puv3_rtc_tickirq(int irq, void *id)
47{
48 struct rtc_device *rdev = id;
49
GuanXuetaoe5abf782011-02-26 21:21:18 +080050 writel(readl(RTC_RTSR) | RTC_RTSR_HZ, RTC_RTSR);
GuanXuetao02b2ee12011-01-15 18:19:03 +080051 rtc_update_irq(rdev, 1, RTC_PF | RTC_IRQF);
52 return IRQ_HANDLED;
53}
54
55/* Update control registers */
Sangjung Woo1fbc4c42013-11-12 15:11:00 -080056static void puv3_rtc_setaie(struct device *dev, int to)
GuanXuetao02b2ee12011-01-15 18:19:03 +080057{
58 unsigned int tmp;
59
Sangjung Woo1fbc4c42013-11-12 15:11:00 -080060 dev_dbg(dev, "%s: aie=%d\n", __func__, to);
GuanXuetao02b2ee12011-01-15 18:19:03 +080061
GuanXuetaoe5abf782011-02-26 21:21:18 +080062 tmp = readl(RTC_RTSR) & ~RTC_RTSR_ALE;
GuanXuetao02b2ee12011-01-15 18:19:03 +080063
64 if (to)
65 tmp |= RTC_RTSR_ALE;
66
GuanXuetaoe5abf782011-02-26 21:21:18 +080067 writel(tmp, RTC_RTSR);
GuanXuetao02b2ee12011-01-15 18:19:03 +080068}
69
70static int puv3_rtc_setpie(struct device *dev, int enabled)
71{
72 unsigned int tmp;
73
Chen Gangc8638102014-05-03 13:07:57 +080074 dev_dbg(dev, "%s: pie=%d\n", __func__, enabled);
GuanXuetao02b2ee12011-01-15 18:19:03 +080075
76 spin_lock_irq(&puv3_rtc_pie_lock);
GuanXuetaoe5abf782011-02-26 21:21:18 +080077 tmp = readl(RTC_RTSR) & ~RTC_RTSR_HZE;
GuanXuetao02b2ee12011-01-15 18:19:03 +080078
79 if (enabled)
80 tmp |= RTC_RTSR_HZE;
81
GuanXuetaoe5abf782011-02-26 21:21:18 +080082 writel(tmp, RTC_RTSR);
GuanXuetao02b2ee12011-01-15 18:19:03 +080083 spin_unlock_irq(&puv3_rtc_pie_lock);
84
85 return 0;
86}
87
GuanXuetao02b2ee12011-01-15 18:19:03 +080088/* Time read/write */
GuanXuetao02b2ee12011-01-15 18:19:03 +080089static int puv3_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
90{
GuanXuetaoe5abf782011-02-26 21:21:18 +080091 rtc_time_to_tm(readl(RTC_RCNR), rtc_tm);
GuanXuetao02b2ee12011-01-15 18:19:03 +080092
Sangjung Woo1fbc4c42013-11-12 15:11:00 -080093 dev_dbg(dev, "read time %02x.%02x.%02x %02x/%02x/%02x\n",
GuanXuetao02b2ee12011-01-15 18:19:03 +080094 rtc_tm->tm_year, rtc_tm->tm_mon, rtc_tm->tm_mday,
95 rtc_tm->tm_hour, rtc_tm->tm_min, rtc_tm->tm_sec);
96
97 return 0;
98}
99
100static int puv3_rtc_settime(struct device *dev, struct rtc_time *tm)
101{
102 unsigned long rtc_count = 0;
103
Sangjung Woo1fbc4c42013-11-12 15:11:00 -0800104 dev_dbg(dev, "set time %02d.%02d.%02d %02d/%02d/%02d\n",
GuanXuetao02b2ee12011-01-15 18:19:03 +0800105 tm->tm_year, tm->tm_mon, tm->tm_mday,
106 tm->tm_hour, tm->tm_min, tm->tm_sec);
107
108 rtc_tm_to_time(tm, &rtc_count);
GuanXuetaoe5abf782011-02-26 21:21:18 +0800109 writel(rtc_count, RTC_RCNR);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800110
111 return 0;
112}
113
114static int puv3_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm)
115{
116 struct rtc_time *alm_tm = &alrm->time;
117
GuanXuetaoe5abf782011-02-26 21:21:18 +0800118 rtc_time_to_tm(readl(RTC_RTAR), alm_tm);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800119
GuanXuetaoe5abf782011-02-26 21:21:18 +0800120 alrm->enabled = readl(RTC_RTSR) & RTC_RTSR_ALE;
GuanXuetao02b2ee12011-01-15 18:19:03 +0800121
Sangjung Woo1fbc4c42013-11-12 15:11:00 -0800122 dev_dbg(dev, "read alarm %02x %02x.%02x.%02x %02x/%02x/%02x\n",
GuanXuetao02b2ee12011-01-15 18:19:03 +0800123 alrm->enabled,
124 alm_tm->tm_year, alm_tm->tm_mon, alm_tm->tm_mday,
125 alm_tm->tm_hour, alm_tm->tm_min, alm_tm->tm_sec);
126
127 return 0;
128}
129
130static int puv3_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
131{
132 struct rtc_time *tm = &alrm->time;
133 unsigned long rtcalarm_count = 0;
134
Sangjung Woo1fbc4c42013-11-12 15:11:00 -0800135 dev_dbg(dev, "puv3_rtc_setalarm: %d, %02x/%02x/%02x %02x.%02x.%02x\n",
GuanXuetao02b2ee12011-01-15 18:19:03 +0800136 alrm->enabled,
137 tm->tm_mday & 0xff, tm->tm_mon & 0xff, tm->tm_year & 0xff,
138 tm->tm_hour & 0xff, tm->tm_min & 0xff, tm->tm_sec);
139
140 rtc_tm_to_time(tm, &rtcalarm_count);
GuanXuetaoe5abf782011-02-26 21:21:18 +0800141 writel(rtcalarm_count, RTC_RTAR);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800142
Chen Gang73fa5402014-05-03 13:09:02 +0800143 puv3_rtc_setaie(dev, alrm->enabled);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800144
145 if (alrm->enabled)
146 enable_irq_wake(puv3_rtc_alarmno);
147 else
148 disable_irq_wake(puv3_rtc_alarmno);
149
150 return 0;
151}
152
153static int puv3_rtc_proc(struct device *dev, struct seq_file *seq)
154{
155 seq_printf(seq, "periodic_IRQ\t: %s\n",
GuanXuetaoe5abf782011-02-26 21:21:18 +0800156 (readl(RTC_RTSR) & RTC_RTSR_HZE) ? "yes" : "no");
GuanXuetao02b2ee12011-01-15 18:19:03 +0800157 return 0;
158}
159
160static int puv3_rtc_open(struct device *dev)
161{
162 struct platform_device *pdev = to_platform_device(dev);
163 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
164 int ret;
165
166 ret = request_irq(puv3_rtc_alarmno, puv3_rtc_alarmirq,
Guan Xuetaoa9196b02011-12-23 09:15:39 +0800167 0, "pkunity-rtc alarm", rtc_dev);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800168
169 if (ret) {
170 dev_err(dev, "IRQ%d error %d\n", puv3_rtc_alarmno, ret);
171 return ret;
172 }
173
174 ret = request_irq(puv3_rtc_tickno, puv3_rtc_tickirq,
Guan Xuetaoa9196b02011-12-23 09:15:39 +0800175 0, "pkunity-rtc tick", rtc_dev);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800176
177 if (ret) {
178 dev_err(dev, "IRQ%d error %d\n", puv3_rtc_tickno, ret);
179 goto tick_err;
180 }
181
182 return ret;
183
184 tick_err:
185 free_irq(puv3_rtc_alarmno, rtc_dev);
186 return ret;
187}
188
189static void puv3_rtc_release(struct device *dev)
190{
191 struct platform_device *pdev = to_platform_device(dev);
192 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
193
194 /* do not clear AIE here, it may be needed for wake */
GuanXuetao02b2ee12011-01-15 18:19:03 +0800195 puv3_rtc_setpie(dev, 0);
196 free_irq(puv3_rtc_alarmno, rtc_dev);
197 free_irq(puv3_rtc_tickno, rtc_dev);
198}
199
200static const struct rtc_class_ops puv3_rtcops = {
201 .open = puv3_rtc_open,
202 .release = puv3_rtc_release,
203 .read_time = puv3_rtc_gettime,
204 .set_time = puv3_rtc_settime,
205 .read_alarm = puv3_rtc_getalarm,
206 .set_alarm = puv3_rtc_setalarm,
GuanXuetao02b2ee12011-01-15 18:19:03 +0800207 .proc = puv3_rtc_proc,
208};
209
Jingoo Han5936fdb2013-04-29 16:21:02 -0700210static void puv3_rtc_enable(struct device *dev, int en)
GuanXuetao02b2ee12011-01-15 18:19:03 +0800211{
212 if (!en) {
GuanXuetaoe5abf782011-02-26 21:21:18 +0800213 writel(readl(RTC_RTSR) & ~RTC_RTSR_HZE, RTC_RTSR);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800214 } else {
215 /* re-enable the device, and check it is ok */
GuanXuetaoe5abf782011-02-26 21:21:18 +0800216 if ((readl(RTC_RTSR) & RTC_RTSR_HZE) == 0) {
Jingoo Han5936fdb2013-04-29 16:21:02 -0700217 dev_info(dev, "rtc disabled, re-enabling\n");
GuanXuetaoe5abf782011-02-26 21:21:18 +0800218 writel(readl(RTC_RTSR) | RTC_RTSR_HZE, RTC_RTSR);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800219 }
220 }
221}
222
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800223static int puv3_rtc_remove(struct platform_device *dev)
GuanXuetao02b2ee12011-01-15 18:19:03 +0800224{
225 struct rtc_device *rtc = platform_get_drvdata(dev);
226
GuanXuetao02b2ee12011-01-15 18:19:03 +0800227 rtc_device_unregister(rtc);
228
229 puv3_rtc_setpie(&dev->dev, 0);
Sangjung Woo1fbc4c42013-11-12 15:11:00 -0800230 puv3_rtc_setaie(&dev->dev, 0);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800231
232 release_resource(puv3_rtc_mem);
233 kfree(puv3_rtc_mem);
234
235 return 0;
236}
237
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800238static int puv3_rtc_probe(struct platform_device *pdev)
GuanXuetao02b2ee12011-01-15 18:19:03 +0800239{
240 struct rtc_device *rtc;
241 struct resource *res;
242 int ret;
243
Sangjung Woo1fbc4c42013-11-12 15:11:00 -0800244 dev_dbg(&pdev->dev, "%s: probe=%p\n", __func__, pdev);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800245
246 /* find the IRQs */
GuanXuetao02b2ee12011-01-15 18:19:03 +0800247 puv3_rtc_tickno = platform_get_irq(pdev, 1);
248 if (puv3_rtc_tickno < 0) {
249 dev_err(&pdev->dev, "no irq for rtc tick\n");
250 return -ENOENT;
251 }
252
253 puv3_rtc_alarmno = platform_get_irq(pdev, 0);
254 if (puv3_rtc_alarmno < 0) {
255 dev_err(&pdev->dev, "no irq for alarm\n");
256 return -ENOENT;
257 }
258
Sangjung Woo1fbc4c42013-11-12 15:11:00 -0800259 dev_dbg(&pdev->dev, "PKUnity_rtc: tick irq %d, alarm irq %d\n",
GuanXuetao02b2ee12011-01-15 18:19:03 +0800260 puv3_rtc_tickno, puv3_rtc_alarmno);
261
262 /* get the memory region */
GuanXuetao02b2ee12011-01-15 18:19:03 +0800263 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
264 if (res == NULL) {
265 dev_err(&pdev->dev, "failed to get memory region resource\n");
266 return -ENOENT;
267 }
268
Joe Perches28f65c112011-06-09 09:13:32 -0700269 puv3_rtc_mem = request_mem_region(res->start, resource_size(res),
270 pdev->name);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800271
272 if (puv3_rtc_mem == NULL) {
273 dev_err(&pdev->dev, "failed to reserve memory region\n");
274 ret = -ENOENT;
275 goto err_nores;
276 }
277
Jingoo Han5936fdb2013-04-29 16:21:02 -0700278 puv3_rtc_enable(&pdev->dev, 1);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800279
GuanXuetao02b2ee12011-01-15 18:19:03 +0800280 /* register RTC and exit */
GuanXuetao02b2ee12011-01-15 18:19:03 +0800281 rtc = rtc_device_register("pkunity", &pdev->dev, &puv3_rtcops,
282 THIS_MODULE);
283
284 if (IS_ERR(rtc)) {
285 dev_err(&pdev->dev, "cannot attach rtc\n");
286 ret = PTR_ERR(rtc);
287 goto err_nortc;
288 }
289
290 /* platform setup code should have handled this; sigh */
291 if (!device_can_wakeup(&pdev->dev))
292 device_init_wakeup(&pdev->dev, 1);
293
294 platform_set_drvdata(pdev, rtc);
295 return 0;
296
297 err_nortc:
Jingoo Han5936fdb2013-04-29 16:21:02 -0700298 puv3_rtc_enable(&pdev->dev, 0);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800299 release_resource(puv3_rtc_mem);
300
301 err_nores:
302 return ret;
303}
304
Jingoo Han5936fdb2013-04-29 16:21:02 -0700305#ifdef CONFIG_PM_SLEEP
GuanXuetao02b2ee12011-01-15 18:19:03 +0800306static int ticnt_save;
307
Jingoo Han5936fdb2013-04-29 16:21:02 -0700308static int puv3_rtc_suspend(struct device *dev)
GuanXuetao02b2ee12011-01-15 18:19:03 +0800309{
310 /* save RTAR for anyone using periodic interrupts */
GuanXuetaoe5abf782011-02-26 21:21:18 +0800311 ticnt_save = readl(RTC_RTAR);
Jingoo Han5936fdb2013-04-29 16:21:02 -0700312 puv3_rtc_enable(dev, 0);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800313 return 0;
314}
315
Jingoo Han5936fdb2013-04-29 16:21:02 -0700316static int puv3_rtc_resume(struct device *dev)
GuanXuetao02b2ee12011-01-15 18:19:03 +0800317{
Jingoo Han5936fdb2013-04-29 16:21:02 -0700318 puv3_rtc_enable(dev, 1);
GuanXuetaoe5abf782011-02-26 21:21:18 +0800319 writel(ticnt_save, RTC_RTAR);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800320 return 0;
321}
GuanXuetao02b2ee12011-01-15 18:19:03 +0800322#endif
323
Jingoo Han5936fdb2013-04-29 16:21:02 -0700324static SIMPLE_DEV_PM_OPS(puv3_rtc_pm_ops, puv3_rtc_suspend, puv3_rtc_resume);
325
Guan Xuetaob3a0aa32011-12-28 09:24:29 +0800326static struct platform_driver puv3_rtc_driver = {
GuanXuetao02b2ee12011-01-15 18:19:03 +0800327 .probe = puv3_rtc_probe,
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800328 .remove = puv3_rtc_remove,
GuanXuetao02b2ee12011-01-15 18:19:03 +0800329 .driver = {
330 .name = "PKUnity-v3-RTC",
Jingoo Han5936fdb2013-04-29 16:21:02 -0700331 .pm = &puv3_rtc_pm_ops,
GuanXuetao02b2ee12011-01-15 18:19:03 +0800332 }
333};
334
Guan Xuetaob3a0aa32011-12-28 09:24:29 +0800335module_platform_driver(puv3_rtc_driver);
GuanXuetao02b2ee12011-01-15 18:19:03 +0800336
337MODULE_DESCRIPTION("RTC Driver for the PKUnity v3 chip");
338MODULE_AUTHOR("Hu Dongliang");
339MODULE_LICENSE("GPL v2");