]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/rtc/rtc-s3c.c
rtc: s3c: initialize driver data before using it
[net-next-2.6.git] / drivers / rtc / rtc-s3c.c
CommitLineData
1add6781
BD
1/* drivers/rtc/rtc-s3c.c
2 *
3 * Copyright (c) 2004,2006 Simtec Electronics
4 * Ben Dooks, <ben@simtec.co.uk>
5 * http://armlinux.simtec.co.uk/
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 * S3C2410/S3C2440/S3C24XX Internal RTC Driver
12*/
13
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>
9974b6ea 23#include <linux/log2.h>
5a0e3ad6 24#include <linux/slab.h>
1add6781 25
a09e64fb 26#include <mach/hardware.h>
1add6781
BD
27#include <asm/uaccess.h>
28#include <asm/io.h>
29#include <asm/irq.h>
e2cd00cf 30#include <plat/regs-rtc.h>
1add6781 31
9f4123b7
MC
32enum s3c_cpu_type {
33 TYPE_S3C2410,
34 TYPE_S3C64XX,
35};
36
1add6781
BD
37/* I have yet to find an S3C implementation with more than one
38 * of these rtc blocks in */
39
40static struct resource *s3c_rtc_mem;
41
42static void __iomem *s3c_rtc_base;
43static int s3c_rtc_alarmno = NO_IRQ;
44static int s3c_rtc_tickno = NO_IRQ;
9f4123b7 45static enum s3c_cpu_type s3c_rtc_cpu_type;
1add6781
BD
46
47static DEFINE_SPINLOCK(s3c_rtc_pie_lock);
1add6781
BD
48
49/* IRQ Handlers */
50
7d12e780 51static irqreturn_t s3c_rtc_alarmirq(int irq, void *id)
1add6781
BD
52{
53 struct rtc_device *rdev = id;
54
ab6a2d70 55 rtc_update_irq(rdev, 1, RTC_AF | RTC_IRQF);
1add6781
BD
56 return IRQ_HANDLED;
57}
58
7d12e780 59static irqreturn_t s3c_rtc_tickirq(int irq, void *id)
1add6781
BD
60{
61 struct rtc_device *rdev = id;
62
773be7ee 63 rtc_update_irq(rdev, 1, RTC_PF | RTC_IRQF);
1add6781
BD
64 return IRQ_HANDLED;
65}
66
67/* Update control registers */
68static void s3c_rtc_setaie(int to)
69{
70 unsigned int tmp;
71
2a4e2b87 72 pr_debug("%s: aie=%d\n", __func__, to);
1add6781 73
9a654518 74 tmp = readb(s3c_rtc_base + S3C2410_RTCALM) & ~S3C2410_RTCALM_ALMEN;
1add6781
BD
75
76 if (to)
77 tmp |= S3C2410_RTCALM_ALMEN;
78
9a654518 79 writeb(tmp, s3c_rtc_base + S3C2410_RTCALM);
1add6781
BD
80}
81
773be7ee 82static int s3c_rtc_setpie(struct device *dev, int enabled)
1add6781
BD
83{
84 unsigned int tmp;
85
773be7ee 86 pr_debug("%s: pie=%d\n", __func__, enabled);
1add6781
BD
87
88 spin_lock_irq(&s3c_rtc_pie_lock);
1add6781 89
9f4123b7
MC
90 if (s3c_rtc_cpu_type == TYPE_S3C64XX) {
91 tmp = readb(s3c_rtc_base + S3C2410_RTCCON);
92 tmp &= ~S3C64XX_RTCCON_TICEN;
93
94 if (enabled)
95 tmp |= S3C64XX_RTCCON_TICEN;
96
97 writeb(tmp, s3c_rtc_base + S3C2410_RTCCON);
98 } else {
99 tmp = readb(s3c_rtc_base + S3C2410_TICNT);
100 tmp &= ~S3C2410_TICNT_ENABLE;
101
102 if (enabled)
103 tmp |= S3C2410_TICNT_ENABLE;
104
105 writeb(tmp, s3c_rtc_base + S3C2410_TICNT);
106 }
1add6781 107
1add6781 108 spin_unlock_irq(&s3c_rtc_pie_lock);
773be7ee
BD
109
110 return 0;
1add6781
BD
111}
112
773be7ee 113static int s3c_rtc_setfreq(struct device *dev, int freq)
1add6781 114{
9f4123b7
MC
115 struct platform_device *pdev = to_platform_device(dev);
116 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
117 unsigned int tmp = 0;
1add6781 118
5d2a5037
JC
119 if (!is_power_of_2(freq))
120 return -EINVAL;
121
1add6781 122 spin_lock_irq(&s3c_rtc_pie_lock);
1add6781 123
9f4123b7
MC
124 if (s3c_rtc_cpu_type == TYPE_S3C2410) {
125 tmp = readb(s3c_rtc_base + S3C2410_TICNT);
126 tmp &= S3C2410_TICNT_ENABLE;
127 }
128
129 tmp |= (rtc_dev->max_user_freq / freq)-1;
1add6781 130
9a654518 131 writeb(tmp, s3c_rtc_base + S3C2410_TICNT);
1add6781 132 spin_unlock_irq(&s3c_rtc_pie_lock);
773be7ee
BD
133
134 return 0;
1add6781
BD
135}
136
137/* Time read/write */
138
139static int s3c_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
140{
141 unsigned int have_retried = 0;
9a654518 142 void __iomem *base = s3c_rtc_base;
1add6781
BD
143
144 retry_get_time:
9a654518
BD
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);
1add6781
BD
151
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
155 */
156
157 if (rtc_tm->tm_sec == 0 && !have_retried) {
158 have_retried = 1;
159 goto retry_get_time;
160 }
161
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);
165
fe20ba70
AB
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);
1add6781
BD
172
173 rtc_tm->tm_year += 100;
174 rtc_tm->tm_mon -= 1;
175
176 return 0;
177}
178
179static int s3c_rtc_settime(struct device *dev, struct rtc_time *tm)
180{
9a654518 181 void __iomem *base = s3c_rtc_base;
641741e0 182 int year = tm->tm_year - 100;
9a654518 183
641741e0
BD
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);
187
188 /* we get around y2k by simply not supporting it */
1add6781 189
641741e0 190 if (year < 0 || year >= 100) {
9a654518 191 dev_err(dev, "rtc only supports 100 years\n");
1add6781 192 return -EINVAL;
9a654518
BD
193 }
194
fe20ba70
AB
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);
1add6781
BD
201
202 return 0;
203}
204
205static int s3c_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm)
206{
207 struct rtc_time *alm_tm = &alrm->time;
9a654518 208 void __iomem *base = s3c_rtc_base;
1add6781
BD
209 unsigned int alm_en;
210
9a654518
BD
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);
1add6781 217
9a654518 218 alm_en = readb(base + S3C2410_RTCALM);
1add6781 219
a2db8dfc
DB
220 alrm->enabled = (alm_en & S3C2410_RTCALM_ALMEN) ? 1 : 0;
221
1add6781
BD
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);
226
227
228 /* decode the alarm enable field */
229
230 if (alm_en & S3C2410_RTCALM_SECEN)
fe20ba70 231 alm_tm->tm_sec = bcd2bin(alm_tm->tm_sec);
1add6781
BD
232 else
233 alm_tm->tm_sec = 0xff;
234
235 if (alm_en & S3C2410_RTCALM_MINEN)
fe20ba70 236 alm_tm->tm_min = bcd2bin(alm_tm->tm_min);
1add6781
BD
237 else
238 alm_tm->tm_min = 0xff;
239
240 if (alm_en & S3C2410_RTCALM_HOUREN)
fe20ba70 241 alm_tm->tm_hour = bcd2bin(alm_tm->tm_hour);
1add6781
BD
242 else
243 alm_tm->tm_hour = 0xff;
244
245 if (alm_en & S3C2410_RTCALM_DAYEN)
fe20ba70 246 alm_tm->tm_mday = bcd2bin(alm_tm->tm_mday);
1add6781
BD
247 else
248 alm_tm->tm_mday = 0xff;
249
250 if (alm_en & S3C2410_RTCALM_MONEN) {
fe20ba70 251 alm_tm->tm_mon = bcd2bin(alm_tm->tm_mon);
1add6781
BD
252 alm_tm->tm_mon -= 1;
253 } else {
254 alm_tm->tm_mon = 0xff;
255 }
256
257 if (alm_en & S3C2410_RTCALM_YEAREN)
fe20ba70 258 alm_tm->tm_year = bcd2bin(alm_tm->tm_year);
1add6781
BD
259 else
260 alm_tm->tm_year = 0xffff;
261
262 return 0;
263}
264
265static int s3c_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
266{
267 struct rtc_time *tm = &alrm->time;
9a654518 268 void __iomem *base = s3c_rtc_base;
1add6781
BD
269 unsigned int alrm_en;
270
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);
275
276
9a654518
BD
277 alrm_en = readb(base + S3C2410_RTCALM) & S3C2410_RTCALM_ALMEN;
278 writeb(0x00, base + S3C2410_RTCALM);
1add6781
BD
279
280 if (tm->tm_sec < 60 && tm->tm_sec >= 0) {
281 alrm_en |= S3C2410_RTCALM_SECEN;
fe20ba70 282 writeb(bin2bcd(tm->tm_sec), base + S3C2410_ALMSEC);
1add6781
BD
283 }
284
285 if (tm->tm_min < 60 && tm->tm_min >= 0) {
286 alrm_en |= S3C2410_RTCALM_MINEN;
fe20ba70 287 writeb(bin2bcd(tm->tm_min), base + S3C2410_ALMMIN);
1add6781
BD
288 }
289
290 if (tm->tm_hour < 24 && tm->tm_hour >= 0) {
291 alrm_en |= S3C2410_RTCALM_HOUREN;
fe20ba70 292 writeb(bin2bcd(tm->tm_hour), base + S3C2410_ALMHOUR);
1add6781
BD
293 }
294
295 pr_debug("setting S3C2410_RTCALM to %08x\n", alrm_en);
296
9a654518 297 writeb(alrm_en, base + S3C2410_RTCALM);
1add6781 298
773be7ee 299 s3c_rtc_setaie(alrm->enabled);
1add6781
BD
300
301 if (alrm->enabled)
302 enable_irq_wake(s3c_rtc_alarmno);
303 else
304 disable_irq_wake(s3c_rtc_alarmno);
305
306 return 0;
307}
308
1add6781
BD
309static int s3c_rtc_proc(struct device *dev, struct seq_file *seq)
310{
9f4123b7 311 unsigned int ticnt;
1add6781 312
9f4123b7
MC
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;
319 }
320
321 seq_printf(seq, "periodic_IRQ\t: %s\n", ticnt ? "yes" : "no");
1add6781
BD
322 return 0;
323}
324
325static int s3c_rtc_open(struct device *dev)
326{
327 struct platform_device *pdev = to_platform_device(dev);
328 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
329 int ret;
330
331 ret = request_irq(s3c_rtc_alarmno, s3c_rtc_alarmirq,
38515e90 332 IRQF_DISABLED, "s3c2410-rtc alarm", rtc_dev);
1add6781
BD
333
334 if (ret) {
335 dev_err(dev, "IRQ%d error %d\n", s3c_rtc_alarmno, ret);
336 return ret;
337 }
338
339 ret = request_irq(s3c_rtc_tickno, s3c_rtc_tickirq,
38515e90 340 IRQF_DISABLED, "s3c2410-rtc tick", rtc_dev);
1add6781
BD
341
342 if (ret) {
343 dev_err(dev, "IRQ%d error %d\n", s3c_rtc_tickno, ret);
344 goto tick_err;
345 }
346
347 return ret;
348
349 tick_err:
350 free_irq(s3c_rtc_alarmno, rtc_dev);
351 return ret;
352}
353
354static void s3c_rtc_release(struct device *dev)
355{
356 struct platform_device *pdev = to_platform_device(dev);
357 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
358
359 /* do not clear AIE here, it may be needed for wake */
360
773be7ee 361 s3c_rtc_setpie(dev, 0);
1add6781
BD
362 free_irq(s3c_rtc_alarmno, rtc_dev);
363 free_irq(s3c_rtc_tickno, rtc_dev);
364}
365
ff8371ac 366static const struct rtc_class_ops s3c_rtcops = {
1add6781
BD
367 .open = s3c_rtc_open,
368 .release = s3c_rtc_release,
1add6781
BD
369 .read_time = s3c_rtc_gettime,
370 .set_time = s3c_rtc_settime,
371 .read_alarm = s3c_rtc_getalarm,
372 .set_alarm = s3c_rtc_setalarm,
773be7ee
BD
373 .irq_set_freq = s3c_rtc_setfreq,
374 .irq_set_state = s3c_rtc_setpie,
1add6781
BD
375 .proc = s3c_rtc_proc,
376};
377
378static void s3c_rtc_enable(struct platform_device *pdev, int en)
379{
9a654518 380 void __iomem *base = s3c_rtc_base;
1add6781
BD
381 unsigned int tmp;
382
383 if (s3c_rtc_base == NULL)
384 return;
385
386 if (!en) {
9a654518 387 tmp = readb(base + S3C2410_RTCCON);
9f4123b7
MC
388 if (s3c_rtc_cpu_type == TYPE_S3C64XX)
389 tmp &= ~S3C64XX_RTCCON_TICEN;
390 tmp &= ~S3C2410_RTCCON_RTCEN;
391 writeb(tmp, base + S3C2410_RTCCON);
392
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);
397 }
1add6781
BD
398 } else {
399 /* re-enable the device, and check it is ok */
400
9a654518 401 if ((readb(base+S3C2410_RTCCON) & S3C2410_RTCCON_RTCEN) == 0){
1add6781
BD
402 dev_info(&pdev->dev, "rtc disabled, re-enabling\n");
403
9a654518
BD
404 tmp = readb(base + S3C2410_RTCCON);
405 writeb(tmp|S3C2410_RTCCON_RTCEN, base+S3C2410_RTCCON);
1add6781
BD
406 }
407
9a654518 408 if ((readb(base + S3C2410_RTCCON) & S3C2410_RTCCON_CNTSEL)){
1add6781
BD
409 dev_info(&pdev->dev, "removing RTCCON_CNTSEL\n");
410
9a654518
BD
411 tmp = readb(base + S3C2410_RTCCON);
412 writeb(tmp& ~S3C2410_RTCCON_CNTSEL, base+S3C2410_RTCCON);
1add6781
BD
413 }
414
9a654518 415 if ((readb(base + S3C2410_RTCCON) & S3C2410_RTCCON_CLKRST)){
1add6781
BD
416 dev_info(&pdev->dev, "removing RTCCON_CLKRST\n");
417
9a654518
BD
418 tmp = readb(base + S3C2410_RTCCON);
419 writeb(tmp & ~S3C2410_RTCCON_CLKRST, base+S3C2410_RTCCON);
1add6781
BD
420 }
421 }
422}
423
4cd0c5c4 424static int __devexit s3c_rtc_remove(struct platform_device *dev)
1add6781
BD
425{
426 struct rtc_device *rtc = platform_get_drvdata(dev);
427
428 platform_set_drvdata(dev, NULL);
429 rtc_device_unregister(rtc);
430
773be7ee 431 s3c_rtc_setpie(&dev->dev, 0);
1add6781
BD
432 s3c_rtc_setaie(0);
433
434 iounmap(s3c_rtc_base);
435 release_resource(s3c_rtc_mem);
436 kfree(s3c_rtc_mem);
437
438 return 0;
439}
440
4cd0c5c4 441static int __devinit s3c_rtc_probe(struct platform_device *pdev)
1add6781
BD
442{
443 struct rtc_device *rtc;
444 struct resource *res;
445 int ret;
446
2a4e2b87 447 pr_debug("%s: probe=%p\n", __func__, pdev);
1add6781
BD
448
449 /* find the IRQs */
450
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;
455 }
456
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;
461 }
462
463 pr_debug("s3c2410_rtc: tick irq %d, alarm irq %d\n",
464 s3c_rtc_tickno, s3c_rtc_alarmno);
465
466 /* get the memory region */
467
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;
472 }
473
474 s3c_rtc_mem = request_mem_region(res->start,
9a654518
BD
475 res->end-res->start+1,
476 pdev->name);
1add6781
BD
477
478 if (s3c_rtc_mem == NULL) {
479 dev_err(&pdev->dev, "failed to reserve memory region\n");
480 ret = -ENOENT;
481 goto err_nores;
482 }
483
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;
489 }
490
491 /* check to see if everything is setup correctly */
492
493 s3c_rtc_enable(pdev, 1);
494
9a654518
BD
495 pr_debug("s3c2410_rtc: RTCCON=%02x\n",
496 readb(s3c_rtc_base + S3C2410_RTCCON));
1add6781 497
51b7616e
YK
498 device_init_wakeup(&pdev->dev, 1);
499
1add6781
BD
500 /* register RTC and exit */
501
502 rtc = rtc_device_register("s3c", &pdev->dev, &s3c_rtcops,
503 THIS_MODULE);
504
505 if (IS_ERR(rtc)) {
506 dev_err(&pdev->dev, "cannot attach rtc\n");
507 ret = PTR_ERR(rtc);
508 goto err_nortc;
509 }
510
9f4123b7
MC
511 if (s3c_rtc_cpu_type == TYPE_S3C64XX)
512 rtc->max_user_freq = 32768;
513 else
514 rtc->max_user_freq = 128;
515
516 s3c_rtc_cpu_type = platform_get_device_id(pdev)->driver_data;
1add6781
BD
517
518 platform_set_drvdata(pdev, rtc);
e893de59
MC
519
520 s3c_rtc_setfreq(&pdev->dev, 1);
521
1add6781
BD
522 return 0;
523
524 err_nortc:
525 s3c_rtc_enable(pdev, 0);
526 iounmap(s3c_rtc_base);
527
528 err_nomap:
529 release_resource(s3c_rtc_mem);
530
531 err_nores:
532 return ret;
533}
534
535#ifdef CONFIG_PM
536
537/* RTC Power management control */
538
9f4123b7 539static int ticnt_save, ticnt_en_save;
1add6781
BD
540
541static int s3c_rtc_suspend(struct platform_device *pdev, pm_message_t state)
542{
1add6781 543 /* save TICNT for anyone using periodic interrupts */
9a654518 544 ticnt_save = readb(s3c_rtc_base + S3C2410_TICNT);
9f4123b7
MC
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;
548 }
1add6781 549 s3c_rtc_enable(pdev, 0);
1add6781
BD
550 return 0;
551}
552
553static int s3c_rtc_resume(struct platform_device *pdev)
554{
9f4123b7
MC
555 unsigned int tmp;
556
1add6781 557 s3c_rtc_enable(pdev, 1);
9a654518 558 writeb(ticnt_save, s3c_rtc_base + S3C2410_TICNT);
9f4123b7
MC
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);
562 }
1add6781
BD
563 return 0;
564}
565#else
566#define s3c_rtc_suspend NULL
567#define s3c_rtc_resume NULL
568#endif
569
9f4123b7
MC
570static struct platform_device_id s3c_rtc_driver_ids[] = {
571 {
572 .name = "s3c2410-rtc",
573 .driver_data = TYPE_S3C2410,
574 }, {
575 .name = "s3c64xx-rtc",
576 .driver_data = TYPE_S3C64XX,
577 },
578 { }
579};
580
581MODULE_DEVICE_TABLE(platform, s3c_rtc_driver_ids);
582
583static struct platform_driver s3c_rtc_driver = {
1add6781 584 .probe = s3c_rtc_probe,
4cd0c5c4 585 .remove = __devexit_p(s3c_rtc_remove),
1add6781
BD
586 .suspend = s3c_rtc_suspend,
587 .resume = s3c_rtc_resume,
9f4123b7 588 .id_table = s3c_rtc_driver_ids,
1add6781 589 .driver = {
9f4123b7 590 .name = "s3c-rtc",
1add6781
BD
591 .owner = THIS_MODULE,
592 },
593};
594
595static char __initdata banner[] = "S3C24XX RTC, (c) 2004,2006 Simtec Electronics\n";
596
597static int __init s3c_rtc_init(void)
598{
599 printk(banner);
9f4123b7 600 return platform_driver_register(&s3c_rtc_driver);
1add6781
BD
601}
602
603static void __exit s3c_rtc_exit(void)
604{
9f4123b7 605 platform_driver_unregister(&s3c_rtc_driver);
1add6781
BD
606}
607
608module_init(s3c_rtc_init);
609module_exit(s3c_rtc_exit);
610
611MODULE_DESCRIPTION("Samsung S3C RTC Driver");
612MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
613MODULE_LICENSE("GPL");
ad28a07b 614MODULE_ALIAS("platform:s3c2410-rtc");