switch sysfs to ->evict_inode()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / rtc / rtc-s3c.c
blob70b68d35f9694c804272c1bca502253f15a563c9
1 /* drivers/rtc/rtc-s3c.c
3 * Copyright (c) 2004,2006 Simtec Electronics
4 * Ben Dooks, <ben@simtec.co.uk>
5 * http://armlinux.simtec.co.uk/
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.
11 * S3C2410/S3C2440/S3C24XX Internal RTC Driver
14 #include <linux/module.h>
15 #include <linux/fs.h>
16 #include <linux/string.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/interrupt.h>
20 #include <linux/rtc.h>
21 #include <linux/bcd.h>
22 #include <linux/clk.h>
23 #include <linux/log2.h>
24 #include <linux/slab.h>
26 #include <mach/hardware.h>
27 #include <asm/uaccess.h>
28 #include <asm/io.h>
29 #include <asm/irq.h>
30 #include <plat/regs-rtc.h>
32 enum s3c_cpu_type {
33 TYPE_S3C2410,
34 TYPE_S3C64XX,
37 /* I have yet to find an S3C implementation with more than one
38 * of these rtc blocks in */
40 static struct resource *s3c_rtc_mem;
42 static void __iomem *s3c_rtc_base;
43 static int s3c_rtc_alarmno = NO_IRQ;
44 static int s3c_rtc_tickno = NO_IRQ;
45 static enum s3c_cpu_type s3c_rtc_cpu_type;
47 static DEFINE_SPINLOCK(s3c_rtc_pie_lock);
49 /* IRQ Handlers */
51 static irqreturn_t s3c_rtc_alarmirq(int irq, void *id)
53 struct rtc_device *rdev = id;
55 rtc_update_irq(rdev, 1, RTC_AF | RTC_IRQF);
56 return IRQ_HANDLED;
59 static irqreturn_t s3c_rtc_tickirq(int irq, void *id)
61 struct rtc_device *rdev = id;
63 rtc_update_irq(rdev, 1, RTC_PF | RTC_IRQF);
64 return IRQ_HANDLED;
67 /* Update control registers */
68 static void s3c_rtc_setaie(int to)
70 unsigned int tmp;
72 pr_debug("%s: aie=%d\n", __func__, to);
74 tmp = readb(s3c_rtc_base + S3C2410_RTCALM) & ~S3C2410_RTCALM_ALMEN;
76 if (to)
77 tmp |= S3C2410_RTCALM_ALMEN;
79 writeb(tmp, s3c_rtc_base + S3C2410_RTCALM);
82 static int s3c_rtc_setpie(struct device *dev, int enabled)
84 unsigned int tmp;
86 pr_debug("%s: pie=%d\n", __func__, enabled);
88 spin_lock_irq(&s3c_rtc_pie_lock);
90 if (s3c_rtc_cpu_type == TYPE_S3C64XX) {
91 tmp = readb(s3c_rtc_base + S3C2410_RTCCON);
92 tmp &= ~S3C64XX_RTCCON_TICEN;
94 if (enabled)
95 tmp |= S3C64XX_RTCCON_TICEN;
97 writeb(tmp, s3c_rtc_base + S3C2410_RTCCON);
98 } else {
99 tmp = readb(s3c_rtc_base + S3C2410_TICNT);
100 tmp &= ~S3C2410_TICNT_ENABLE;
102 if (enabled)
103 tmp |= S3C2410_TICNT_ENABLE;
105 writeb(tmp, s3c_rtc_base + S3C2410_TICNT);
108 spin_unlock_irq(&s3c_rtc_pie_lock);
110 return 0;
113 static int s3c_rtc_setfreq(struct device *dev, int freq)
115 struct platform_device *pdev = to_platform_device(dev);
116 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
117 unsigned int tmp = 0;
119 if (!is_power_of_2(freq))
120 return -EINVAL;
122 spin_lock_irq(&s3c_rtc_pie_lock);
124 if (s3c_rtc_cpu_type == TYPE_S3C2410) {
125 tmp = readb(s3c_rtc_base + S3C2410_TICNT);
126 tmp &= S3C2410_TICNT_ENABLE;
129 tmp |= (rtc_dev->max_user_freq / freq)-1;
131 writeb(tmp, s3c_rtc_base + S3C2410_TICNT);
132 spin_unlock_irq(&s3c_rtc_pie_lock);
134 return 0;
137 /* Time read/write */
139 static int s3c_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
141 unsigned int have_retried = 0;
142 void __iomem *base = s3c_rtc_base;
144 retry_get_time:
145 rtc_tm->tm_min = readb(base + S3C2410_RTCMIN);
146 rtc_tm->tm_hour = readb(base + S3C2410_RTCHOUR);
147 rtc_tm->tm_mday = readb(base + S3C2410_RTCDATE);
148 rtc_tm->tm_mon = readb(base + S3C2410_RTCMON);
149 rtc_tm->tm_year = readb(base + S3C2410_RTCYEAR);
150 rtc_tm->tm_sec = readb(base + S3C2410_RTCSEC);
152 /* the only way to work out wether the system was mid-update
153 * when we read it is to check the second counter, and if it
154 * is zero, then we re-try the entire read
157 if (rtc_tm->tm_sec == 0 && !have_retried) {
158 have_retried = 1;
159 goto retry_get_time;
162 pr_debug("read time %02x.%02x.%02x %02x/%02x/%02x\n",
163 rtc_tm->tm_year, rtc_tm->tm_mon, rtc_tm->tm_mday,
164 rtc_tm->tm_hour, rtc_tm->tm_min, rtc_tm->tm_sec);
166 rtc_tm->tm_sec = bcd2bin(rtc_tm->tm_sec);
167 rtc_tm->tm_min = bcd2bin(rtc_tm->tm_min);
168 rtc_tm->tm_hour = bcd2bin(rtc_tm->tm_hour);
169 rtc_tm->tm_mday = bcd2bin(rtc_tm->tm_mday);
170 rtc_tm->tm_mon = bcd2bin(rtc_tm->tm_mon);
171 rtc_tm->tm_year = bcd2bin(rtc_tm->tm_year);
173 rtc_tm->tm_year += 100;
174 rtc_tm->tm_mon -= 1;
176 return 0;
179 static int s3c_rtc_settime(struct device *dev, struct rtc_time *tm)
181 void __iomem *base = s3c_rtc_base;
182 int year = tm->tm_year - 100;
184 pr_debug("set time %02d.%02d.%02d %02d/%02d/%02d\n",
185 tm->tm_year, tm->tm_mon, tm->tm_mday,
186 tm->tm_hour, tm->tm_min, tm->tm_sec);
188 /* we get around y2k by simply not supporting it */
190 if (year < 0 || year >= 100) {
191 dev_err(dev, "rtc only supports 100 years\n");
192 return -EINVAL;
195 writeb(bin2bcd(tm->tm_sec), base + S3C2410_RTCSEC);
196 writeb(bin2bcd(tm->tm_min), base + S3C2410_RTCMIN);
197 writeb(bin2bcd(tm->tm_hour), base + S3C2410_RTCHOUR);
198 writeb(bin2bcd(tm->tm_mday), base + S3C2410_RTCDATE);
199 writeb(bin2bcd(tm->tm_mon + 1), base + S3C2410_RTCMON);
200 writeb(bin2bcd(year), base + S3C2410_RTCYEAR);
202 return 0;
205 static int s3c_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm)
207 struct rtc_time *alm_tm = &alrm->time;
208 void __iomem *base = s3c_rtc_base;
209 unsigned int alm_en;
211 alm_tm->tm_sec = readb(base + S3C2410_ALMSEC);
212 alm_tm->tm_min = readb(base + S3C2410_ALMMIN);
213 alm_tm->tm_hour = readb(base + S3C2410_ALMHOUR);
214 alm_tm->tm_mon = readb(base + S3C2410_ALMMON);
215 alm_tm->tm_mday = readb(base + S3C2410_ALMDATE);
216 alm_tm->tm_year = readb(base + S3C2410_ALMYEAR);
218 alm_en = readb(base + S3C2410_RTCALM);
220 alrm->enabled = (alm_en & S3C2410_RTCALM_ALMEN) ? 1 : 0;
222 pr_debug("read alarm %02x %02x.%02x.%02x %02x/%02x/%02x\n",
223 alm_en,
224 alm_tm->tm_year, alm_tm->tm_mon, alm_tm->tm_mday,
225 alm_tm->tm_hour, alm_tm->tm_min, alm_tm->tm_sec);
228 /* decode the alarm enable field */
230 if (alm_en & S3C2410_RTCALM_SECEN)
231 alm_tm->tm_sec = bcd2bin(alm_tm->tm_sec);
232 else
233 alm_tm->tm_sec = 0xff;
235 if (alm_en & S3C2410_RTCALM_MINEN)
236 alm_tm->tm_min = bcd2bin(alm_tm->tm_min);
237 else
238 alm_tm->tm_min = 0xff;
240 if (alm_en & S3C2410_RTCALM_HOUREN)
241 alm_tm->tm_hour = bcd2bin(alm_tm->tm_hour);
242 else
243 alm_tm->tm_hour = 0xff;
245 if (alm_en & S3C2410_RTCALM_DAYEN)
246 alm_tm->tm_mday = bcd2bin(alm_tm->tm_mday);
247 else
248 alm_tm->tm_mday = 0xff;
250 if (alm_en & S3C2410_RTCALM_MONEN) {
251 alm_tm->tm_mon = bcd2bin(alm_tm->tm_mon);
252 alm_tm->tm_mon -= 1;
253 } else {
254 alm_tm->tm_mon = 0xff;
257 if (alm_en & S3C2410_RTCALM_YEAREN)
258 alm_tm->tm_year = bcd2bin(alm_tm->tm_year);
259 else
260 alm_tm->tm_year = 0xffff;
262 return 0;
265 static int s3c_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
267 struct rtc_time *tm = &alrm->time;
268 void __iomem *base = s3c_rtc_base;
269 unsigned int alrm_en;
271 pr_debug("s3c_rtc_setalarm: %d, %02x/%02x/%02x %02x.%02x.%02x\n",
272 alrm->enabled,
273 tm->tm_mday & 0xff, tm->tm_mon & 0xff, tm->tm_year & 0xff,
274 tm->tm_hour & 0xff, tm->tm_min & 0xff, tm->tm_sec);
277 alrm_en = readb(base + S3C2410_RTCALM) & S3C2410_RTCALM_ALMEN;
278 writeb(0x00, base + S3C2410_RTCALM);
280 if (tm->tm_sec < 60 && tm->tm_sec >= 0) {
281 alrm_en |= S3C2410_RTCALM_SECEN;
282 writeb(bin2bcd(tm->tm_sec), base + S3C2410_ALMSEC);
285 if (tm->tm_min < 60 && tm->tm_min >= 0) {
286 alrm_en |= S3C2410_RTCALM_MINEN;
287 writeb(bin2bcd(tm->tm_min), base + S3C2410_ALMMIN);
290 if (tm->tm_hour < 24 && tm->tm_hour >= 0) {
291 alrm_en |= S3C2410_RTCALM_HOUREN;
292 writeb(bin2bcd(tm->tm_hour), base + S3C2410_ALMHOUR);
295 pr_debug("setting S3C2410_RTCALM to %08x\n", alrm_en);
297 writeb(alrm_en, base + S3C2410_RTCALM);
299 s3c_rtc_setaie(alrm->enabled);
301 if (alrm->enabled)
302 enable_irq_wake(s3c_rtc_alarmno);
303 else
304 disable_irq_wake(s3c_rtc_alarmno);
306 return 0;
309 static int s3c_rtc_proc(struct device *dev, struct seq_file *seq)
311 unsigned int ticnt;
313 if (s3c_rtc_cpu_type == TYPE_S3C64XX) {
314 ticnt = readb(s3c_rtc_base + S3C2410_RTCCON);
315 ticnt &= S3C64XX_RTCCON_TICEN;
316 } else {
317 ticnt = readb(s3c_rtc_base + S3C2410_TICNT);
318 ticnt &= S3C2410_TICNT_ENABLE;
321 seq_printf(seq, "periodic_IRQ\t: %s\n", ticnt ? "yes" : "no");
322 return 0;
325 static int s3c_rtc_open(struct device *dev)
327 struct platform_device *pdev = to_platform_device(dev);
328 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
329 int ret;
331 ret = request_irq(s3c_rtc_alarmno, s3c_rtc_alarmirq,
332 IRQF_DISABLED, "s3c2410-rtc alarm", rtc_dev);
334 if (ret) {
335 dev_err(dev, "IRQ%d error %d\n", s3c_rtc_alarmno, ret);
336 return ret;
339 ret = request_irq(s3c_rtc_tickno, s3c_rtc_tickirq,
340 IRQF_DISABLED, "s3c2410-rtc tick", rtc_dev);
342 if (ret) {
343 dev_err(dev, "IRQ%d error %d\n", s3c_rtc_tickno, ret);
344 goto tick_err;
347 return ret;
349 tick_err:
350 free_irq(s3c_rtc_alarmno, rtc_dev);
351 return ret;
354 static void s3c_rtc_release(struct device *dev)
356 struct platform_device *pdev = to_platform_device(dev);
357 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
359 /* do not clear AIE here, it may be needed for wake */
361 s3c_rtc_setpie(dev, 0);
362 free_irq(s3c_rtc_alarmno, rtc_dev);
363 free_irq(s3c_rtc_tickno, rtc_dev);
366 static const struct rtc_class_ops s3c_rtcops = {
367 .open = s3c_rtc_open,
368 .release = s3c_rtc_release,
369 .read_time = s3c_rtc_gettime,
370 .set_time = s3c_rtc_settime,
371 .read_alarm = s3c_rtc_getalarm,
372 .set_alarm = s3c_rtc_setalarm,
373 .irq_set_freq = s3c_rtc_setfreq,
374 .irq_set_state = s3c_rtc_setpie,
375 .proc = s3c_rtc_proc,
378 static void s3c_rtc_enable(struct platform_device *pdev, int en)
380 void __iomem *base = s3c_rtc_base;
381 unsigned int tmp;
383 if (s3c_rtc_base == NULL)
384 return;
386 if (!en) {
387 tmp = readb(base + S3C2410_RTCCON);
388 if (s3c_rtc_cpu_type == TYPE_S3C64XX)
389 tmp &= ~S3C64XX_RTCCON_TICEN;
390 tmp &= ~S3C2410_RTCCON_RTCEN;
391 writeb(tmp, base + S3C2410_RTCCON);
393 if (s3c_rtc_cpu_type == TYPE_S3C2410) {
394 tmp = readb(base + S3C2410_TICNT);
395 tmp &= ~S3C2410_TICNT_ENABLE;
396 writeb(tmp, base + S3C2410_TICNT);
398 } else {
399 /* re-enable the device, and check it is ok */
401 if ((readb(base+S3C2410_RTCCON) & S3C2410_RTCCON_RTCEN) == 0){
402 dev_info(&pdev->dev, "rtc disabled, re-enabling\n");
404 tmp = readb(base + S3C2410_RTCCON);
405 writeb(tmp|S3C2410_RTCCON_RTCEN, base+S3C2410_RTCCON);
408 if ((readb(base + S3C2410_RTCCON) & S3C2410_RTCCON_CNTSEL)){
409 dev_info(&pdev->dev, "removing RTCCON_CNTSEL\n");
411 tmp = readb(base + S3C2410_RTCCON);
412 writeb(tmp& ~S3C2410_RTCCON_CNTSEL, base+S3C2410_RTCCON);
415 if ((readb(base + S3C2410_RTCCON) & S3C2410_RTCCON_CLKRST)){
416 dev_info(&pdev->dev, "removing RTCCON_CLKRST\n");
418 tmp = readb(base + S3C2410_RTCCON);
419 writeb(tmp & ~S3C2410_RTCCON_CLKRST, base+S3C2410_RTCCON);
424 static int __devexit s3c_rtc_remove(struct platform_device *dev)
426 struct rtc_device *rtc = platform_get_drvdata(dev);
428 platform_set_drvdata(dev, NULL);
429 rtc_device_unregister(rtc);
431 s3c_rtc_setpie(&dev->dev, 0);
432 s3c_rtc_setaie(0);
434 iounmap(s3c_rtc_base);
435 release_resource(s3c_rtc_mem);
436 kfree(s3c_rtc_mem);
438 return 0;
441 static int __devinit s3c_rtc_probe(struct platform_device *pdev)
443 struct rtc_device *rtc;
444 struct resource *res;
445 int ret;
447 pr_debug("%s: probe=%p\n", __func__, pdev);
449 /* find the IRQs */
451 s3c_rtc_tickno = platform_get_irq(pdev, 1);
452 if (s3c_rtc_tickno < 0) {
453 dev_err(&pdev->dev, "no irq for rtc tick\n");
454 return -ENOENT;
457 s3c_rtc_alarmno = platform_get_irq(pdev, 0);
458 if (s3c_rtc_alarmno < 0) {
459 dev_err(&pdev->dev, "no irq for alarm\n");
460 return -ENOENT;
463 pr_debug("s3c2410_rtc: tick irq %d, alarm irq %d\n",
464 s3c_rtc_tickno, s3c_rtc_alarmno);
466 /* get the memory region */
468 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
469 if (res == NULL) {
470 dev_err(&pdev->dev, "failed to get memory region resource\n");
471 return -ENOENT;
474 s3c_rtc_mem = request_mem_region(res->start,
475 res->end-res->start+1,
476 pdev->name);
478 if (s3c_rtc_mem == NULL) {
479 dev_err(&pdev->dev, "failed to reserve memory region\n");
480 ret = -ENOENT;
481 goto err_nores;
484 s3c_rtc_base = ioremap(res->start, res->end - res->start + 1);
485 if (s3c_rtc_base == NULL) {
486 dev_err(&pdev->dev, "failed ioremap()\n");
487 ret = -EINVAL;
488 goto err_nomap;
491 /* check to see if everything is setup correctly */
493 s3c_rtc_enable(pdev, 1);
495 pr_debug("s3c2410_rtc: RTCCON=%02x\n",
496 readb(s3c_rtc_base + S3C2410_RTCCON));
498 device_init_wakeup(&pdev->dev, 1);
500 /* register RTC and exit */
502 rtc = rtc_device_register("s3c", &pdev->dev, &s3c_rtcops,
503 THIS_MODULE);
505 if (IS_ERR(rtc)) {
506 dev_err(&pdev->dev, "cannot attach rtc\n");
507 ret = PTR_ERR(rtc);
508 goto err_nortc;
511 s3c_rtc_cpu_type = platform_get_device_id(pdev)->driver_data;
513 if (s3c_rtc_cpu_type == TYPE_S3C64XX)
514 rtc->max_user_freq = 32768;
515 else
516 rtc->max_user_freq = 128;
518 platform_set_drvdata(pdev, rtc);
520 s3c_rtc_setfreq(&pdev->dev, 1);
522 return 0;
524 err_nortc:
525 s3c_rtc_enable(pdev, 0);
526 iounmap(s3c_rtc_base);
528 err_nomap:
529 release_resource(s3c_rtc_mem);
531 err_nores:
532 return ret;
535 #ifdef CONFIG_PM
537 /* RTC Power management control */
539 static int ticnt_save, ticnt_en_save;
541 static int s3c_rtc_suspend(struct platform_device *pdev, pm_message_t state)
543 /* save TICNT for anyone using periodic interrupts */
544 ticnt_save = readb(s3c_rtc_base + S3C2410_TICNT);
545 if (s3c_rtc_cpu_type == TYPE_S3C64XX) {
546 ticnt_en_save = readb(s3c_rtc_base + S3C2410_RTCCON);
547 ticnt_en_save &= S3C64XX_RTCCON_TICEN;
549 s3c_rtc_enable(pdev, 0);
550 return 0;
553 static int s3c_rtc_resume(struct platform_device *pdev)
555 unsigned int tmp;
557 s3c_rtc_enable(pdev, 1);
558 writeb(ticnt_save, s3c_rtc_base + S3C2410_TICNT);
559 if (s3c_rtc_cpu_type == TYPE_S3C64XX && ticnt_en_save) {
560 tmp = readb(s3c_rtc_base + S3C2410_RTCCON);
561 writeb(tmp | ticnt_en_save, s3c_rtc_base + S3C2410_RTCCON);
563 return 0;
565 #else
566 #define s3c_rtc_suspend NULL
567 #define s3c_rtc_resume NULL
568 #endif
570 static struct platform_device_id s3c_rtc_driver_ids[] = {
572 .name = "s3c2410-rtc",
573 .driver_data = TYPE_S3C2410,
574 }, {
575 .name = "s3c64xx-rtc",
576 .driver_data = TYPE_S3C64XX,
581 MODULE_DEVICE_TABLE(platform, s3c_rtc_driver_ids);
583 static struct platform_driver s3c_rtc_driver = {
584 .probe = s3c_rtc_probe,
585 .remove = __devexit_p(s3c_rtc_remove),
586 .suspend = s3c_rtc_suspend,
587 .resume = s3c_rtc_resume,
588 .id_table = s3c_rtc_driver_ids,
589 .driver = {
590 .name = "s3c-rtc",
591 .owner = THIS_MODULE,
595 static char __initdata banner[] = "S3C24XX RTC, (c) 2004,2006 Simtec Electronics\n";
597 static int __init s3c_rtc_init(void)
599 printk(banner);
600 return platform_driver_register(&s3c_rtc_driver);
603 static void __exit s3c_rtc_exit(void)
605 platform_driver_unregister(&s3c_rtc_driver);
608 module_init(s3c_rtc_init);
609 module_exit(s3c_rtc_exit);
611 MODULE_DESCRIPTION("Samsung S3C RTC Driver");
612 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
613 MODULE_LICENSE("GPL");
614 MODULE_ALIAS("platform:s3c2410-rtc");