net: mv643xx_eth: disable clk on error path in mv643xx_eth_shared_probe()
[linux-stable.git] / drivers / rtc / rtc-puv3.c
blobf77ef282f013b093780979efd56c714b28d1ec5d
1 /*
2 * RTC driver code specific to PKUnity SoC and UniCore ISA
4 * Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn>
5 * Copyright (C) 2001-2010 Guan Xuetao
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.
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>
26 #include <asm/irq.h>
27 #include <mach/hardware.h>
29 static struct resource *puv3_rtc_mem;
31 static int puv3_rtc_alarmno = IRQ_RTCAlarm;
32 static int puv3_rtc_tickno = IRQ_RTC;
34 static DEFINE_SPINLOCK(puv3_rtc_pie_lock);
36 /* IRQ Handlers */
37 static irqreturn_t puv3_rtc_alarmirq(int irq, void *id)
39 struct rtc_device *rdev = id;
41 writel(readl(RTC_RTSR) | RTC_RTSR_AL, RTC_RTSR);
42 rtc_update_irq(rdev, 1, RTC_AF | RTC_IRQF);
43 return IRQ_HANDLED;
46 static irqreturn_t puv3_rtc_tickirq(int irq, void *id)
48 struct rtc_device *rdev = id;
50 writel(readl(RTC_RTSR) | RTC_RTSR_HZ, RTC_RTSR);
51 rtc_update_irq(rdev, 1, RTC_PF | RTC_IRQF);
52 return IRQ_HANDLED;
55 /* Update control registers */
56 static void puv3_rtc_setaie(struct device *dev, int to)
58 unsigned int tmp;
60 dev_dbg(dev, "%s: aie=%d\n", __func__, to);
62 tmp = readl(RTC_RTSR) & ~RTC_RTSR_ALE;
64 if (to)
65 tmp |= RTC_RTSR_ALE;
67 writel(tmp, RTC_RTSR);
70 static int puv3_rtc_setpie(struct device *dev, int enabled)
72 unsigned int tmp;
74 dev_dbg(dev, "%s: pie=%d\n", __func__, enabled);
76 spin_lock_irq(&puv3_rtc_pie_lock);
77 tmp = readl(RTC_RTSR) & ~RTC_RTSR_HZE;
79 if (enabled)
80 tmp |= RTC_RTSR_HZE;
82 writel(tmp, RTC_RTSR);
83 spin_unlock_irq(&puv3_rtc_pie_lock);
85 return 0;
88 /* Time read/write */
89 static int puv3_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
91 rtc_time_to_tm(readl(RTC_RCNR), rtc_tm);
93 dev_dbg(dev, "read time %ptRr\n", rtc_tm);
95 return 0;
98 static int puv3_rtc_settime(struct device *dev, struct rtc_time *tm)
100 unsigned long rtc_count = 0;
102 dev_dbg(dev, "set time %ptRr\n", tm);
104 rtc_tm_to_time(tm, &rtc_count);
105 writel(rtc_count, RTC_RCNR);
107 return 0;
110 static int puv3_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm)
112 struct rtc_time *alm_tm = &alrm->time;
114 rtc_time_to_tm(readl(RTC_RTAR), alm_tm);
116 alrm->enabled = readl(RTC_RTSR) & RTC_RTSR_ALE;
118 dev_dbg(dev, "read alarm: %d, %ptRr\n", alrm->enabled, alm_tm);
120 return 0;
123 static int puv3_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
125 struct rtc_time *tm = &alrm->time;
126 unsigned long rtcalarm_count = 0;
128 dev_dbg(dev, "set alarm: %d, %ptRr\n", alrm->enabled, tm);
130 rtc_tm_to_time(tm, &rtcalarm_count);
131 writel(rtcalarm_count, RTC_RTAR);
133 puv3_rtc_setaie(dev, alrm->enabled);
135 if (alrm->enabled)
136 enable_irq_wake(puv3_rtc_alarmno);
137 else
138 disable_irq_wake(puv3_rtc_alarmno);
140 return 0;
143 static int puv3_rtc_proc(struct device *dev, struct seq_file *seq)
145 seq_printf(seq, "periodic_IRQ\t: %s\n",
146 (readl(RTC_RTSR) & RTC_RTSR_HZE) ? "yes" : "no");
147 return 0;
150 static const struct rtc_class_ops puv3_rtcops = {
151 .read_time = puv3_rtc_gettime,
152 .set_time = puv3_rtc_settime,
153 .read_alarm = puv3_rtc_getalarm,
154 .set_alarm = puv3_rtc_setalarm,
155 .proc = puv3_rtc_proc,
158 static void puv3_rtc_enable(struct device *dev, int en)
160 if (!en) {
161 writel(readl(RTC_RTSR) & ~RTC_RTSR_HZE, RTC_RTSR);
162 } else {
163 /* re-enable the device, and check it is ok */
164 if ((readl(RTC_RTSR) & RTC_RTSR_HZE) == 0) {
165 dev_info(dev, "rtc disabled, re-enabling\n");
166 writel(readl(RTC_RTSR) | RTC_RTSR_HZE, RTC_RTSR);
171 static int puv3_rtc_remove(struct platform_device *dev)
173 puv3_rtc_setpie(&dev->dev, 0);
174 puv3_rtc_setaie(&dev->dev, 0);
176 release_resource(puv3_rtc_mem);
177 kfree(puv3_rtc_mem);
179 return 0;
182 static int puv3_rtc_probe(struct platform_device *pdev)
184 struct rtc_device *rtc;
185 struct resource *res;
186 int ret;
188 dev_dbg(&pdev->dev, "%s: probe=%p\n", __func__, pdev);
190 /* find the IRQs */
191 puv3_rtc_tickno = platform_get_irq(pdev, 1);
192 if (puv3_rtc_tickno < 0) {
193 dev_err(&pdev->dev, "no irq for rtc tick\n");
194 return -ENOENT;
197 puv3_rtc_alarmno = platform_get_irq(pdev, 0);
198 if (puv3_rtc_alarmno < 0) {
199 dev_err(&pdev->dev, "no irq for alarm\n");
200 return -ENOENT;
203 dev_dbg(&pdev->dev, "PKUnity_rtc: tick irq %d, alarm irq %d\n",
204 puv3_rtc_tickno, puv3_rtc_alarmno);
206 rtc = devm_rtc_allocate_device(&pdev->dev);
207 if (IS_ERR(rtc))
208 return PTR_ERR(rtc);
210 ret = devm_request_irq(&pdev->dev, puv3_rtc_alarmno, puv3_rtc_alarmirq,
211 0, "pkunity-rtc alarm", rtc);
212 if (ret) {
213 dev_err(&pdev->dev, "IRQ%d error %d\n", puv3_rtc_alarmno, ret);
214 return ret;
217 ret = devm_request_irq(&pdev->dev, puv3_rtc_tickno, puv3_rtc_tickirq,
218 0, "pkunity-rtc tick", rtc);
219 if (ret) {
220 dev_err(&pdev->dev, "IRQ%d error %d\n", puv3_rtc_tickno, ret);
221 return ret;
224 /* get the memory region */
225 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
226 if (res == NULL) {
227 dev_err(&pdev->dev, "failed to get memory region resource\n");
228 return -ENOENT;
231 puv3_rtc_mem = request_mem_region(res->start, resource_size(res),
232 pdev->name);
234 if (puv3_rtc_mem == NULL) {
235 dev_err(&pdev->dev, "failed to reserve memory region\n");
236 ret = -ENOENT;
237 goto err_nores;
240 puv3_rtc_enable(&pdev->dev, 1);
242 /* register RTC and exit */
243 rtc->ops = &puv3_rtcops;
244 ret = rtc_register_device(rtc);
245 if (ret) {
246 dev_err(&pdev->dev, "cannot attach rtc\n");
247 goto err_nortc;
250 /* platform setup code should have handled this; sigh */
251 if (!device_can_wakeup(&pdev->dev))
252 device_init_wakeup(&pdev->dev, 1);
254 platform_set_drvdata(pdev, rtc);
255 return 0;
257 err_nortc:
258 puv3_rtc_enable(&pdev->dev, 0);
259 release_resource(puv3_rtc_mem);
261 err_nores:
262 return ret;
265 #ifdef CONFIG_PM_SLEEP
266 static int ticnt_save;
268 static int puv3_rtc_suspend(struct device *dev)
270 /* save RTAR for anyone using periodic interrupts */
271 ticnt_save = readl(RTC_RTAR);
272 puv3_rtc_enable(dev, 0);
273 return 0;
276 static int puv3_rtc_resume(struct device *dev)
278 puv3_rtc_enable(dev, 1);
279 writel(ticnt_save, RTC_RTAR);
280 return 0;
282 #endif
284 static SIMPLE_DEV_PM_OPS(puv3_rtc_pm_ops, puv3_rtc_suspend, puv3_rtc_resume);
286 static struct platform_driver puv3_rtc_driver = {
287 .probe = puv3_rtc_probe,
288 .remove = puv3_rtc_remove,
289 .driver = {
290 .name = "PKUnity-v3-RTC",
291 .pm = &puv3_rtc_pm_ops,
295 module_platform_driver(puv3_rtc_driver);
297 MODULE_DESCRIPTION("RTC Driver for the PKUnity v3 chip");
298 MODULE_AUTHOR("Hu Dongliang");
299 MODULE_LICENSE("GPL v2");