drivers/rtc/rtc-max8907.c: remove redundant code
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / drivers / rtc / rtc-s3c.c
1 /* drivers/rtc/rtc-s3c.c
2 *
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
5 *
6 * Copyright (c) 2004,2006 Simtec Electronics
7 * Ben Dooks, <ben@simtec.co.uk>
8 * http://armlinux.simtec.co.uk/
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * S3C2410/S3C2440/S3C24XX Internal RTC Driver
15 */
16
17 #include <linux/module.h>
18 #include <linux/fs.h>
19 #include <linux/string.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 #include <linux/interrupt.h>
23 #include <linux/rtc.h>
24 #include <linux/bcd.h>
25 #include <linux/clk.h>
26 #include <linux/log2.h>
27 #include <linux/slab.h>
28 #include <linux/of.h>
29 #include <linux/uaccess.h>
30 #include <linux/io.h>
31
32 #include <mach/hardware.h>
33 #include <asm/irq.h>
34 #include <plat/regs-rtc.h>
35
36 enum s3c_cpu_type {
37 TYPE_S3C2410,
38 TYPE_S3C2416,
39 TYPE_S3C2443,
40 TYPE_S3C64XX,
41 };
42
43 struct s3c_rtc_drv_data {
44 int cpu_type;
45 };
46
47 /* I have yet to find an S3C implementation with more than one
48 * of these rtc blocks in */
49
50 static struct clk *rtc_clk;
51 static void __iomem *s3c_rtc_base;
52 static int s3c_rtc_alarmno = NO_IRQ;
53 static int s3c_rtc_tickno = NO_IRQ;
54 static enum s3c_cpu_type s3c_rtc_cpu_type;
55
56 static DEFINE_SPINLOCK(s3c_rtc_pie_lock);
57
58 static void s3c_rtc_alarm_clk_enable(bool enable)
59 {
60 static DEFINE_SPINLOCK(s3c_rtc_alarm_clk_lock);
61 static bool alarm_clk_enabled;
62 unsigned long irq_flags;
63
64 spin_lock_irqsave(&s3c_rtc_alarm_clk_lock, irq_flags);
65 if (enable) {
66 if (!alarm_clk_enabled) {
67 clk_enable(rtc_clk);
68 alarm_clk_enabled = true;
69 }
70 } else {
71 if (alarm_clk_enabled) {
72 clk_disable(rtc_clk);
73 alarm_clk_enabled = false;
74 }
75 }
76 spin_unlock_irqrestore(&s3c_rtc_alarm_clk_lock, irq_flags);
77 }
78
79 /* IRQ Handlers */
80
81 static irqreturn_t s3c_rtc_alarmirq(int irq, void *id)
82 {
83 struct rtc_device *rdev = id;
84
85 clk_enable(rtc_clk);
86 rtc_update_irq(rdev, 1, RTC_AF | RTC_IRQF);
87
88 if (s3c_rtc_cpu_type == TYPE_S3C64XX)
89 writeb(S3C2410_INTP_ALM, s3c_rtc_base + S3C2410_INTP);
90
91 clk_disable(rtc_clk);
92
93 s3c_rtc_alarm_clk_enable(false);
94
95 return IRQ_HANDLED;
96 }
97
98 static irqreturn_t s3c_rtc_tickirq(int irq, void *id)
99 {
100 struct rtc_device *rdev = id;
101
102 clk_enable(rtc_clk);
103 rtc_update_irq(rdev, 1, RTC_PF | RTC_IRQF);
104
105 if (s3c_rtc_cpu_type == TYPE_S3C64XX)
106 writeb(S3C2410_INTP_TIC, s3c_rtc_base + S3C2410_INTP);
107
108 clk_disable(rtc_clk);
109 return IRQ_HANDLED;
110 }
111
112 /* Update control registers */
113 static int s3c_rtc_setaie(struct device *dev, unsigned int enabled)
114 {
115 unsigned int tmp;
116
117 dev_dbg(dev, "%s: aie=%d\n", __func__, enabled);
118
119 clk_enable(rtc_clk);
120 tmp = readb(s3c_rtc_base + S3C2410_RTCALM) & ~S3C2410_RTCALM_ALMEN;
121
122 if (enabled)
123 tmp |= S3C2410_RTCALM_ALMEN;
124
125 writeb(tmp, s3c_rtc_base + S3C2410_RTCALM);
126 clk_disable(rtc_clk);
127
128 s3c_rtc_alarm_clk_enable(enabled);
129
130 return 0;
131 }
132
133 static int s3c_rtc_setfreq(struct device *dev, int freq)
134 {
135 struct platform_device *pdev = to_platform_device(dev);
136 struct rtc_device *rtc_dev = platform_get_drvdata(pdev);
137 unsigned int tmp = 0;
138 int val;
139
140 if (!is_power_of_2(freq))
141 return -EINVAL;
142
143 clk_enable(rtc_clk);
144 spin_lock_irq(&s3c_rtc_pie_lock);
145
146 if (s3c_rtc_cpu_type != TYPE_S3C64XX) {
147 tmp = readb(s3c_rtc_base + S3C2410_TICNT);
148 tmp &= S3C2410_TICNT_ENABLE;
149 }
150
151 val = (rtc_dev->max_user_freq / freq) - 1;
152
153 if (s3c_rtc_cpu_type == TYPE_S3C2416 || s3c_rtc_cpu_type == TYPE_S3C2443) {
154 tmp |= S3C2443_TICNT_PART(val);
155 writel(S3C2443_TICNT1_PART(val), s3c_rtc_base + S3C2443_TICNT1);
156
157 if (s3c_rtc_cpu_type == TYPE_S3C2416)
158 writel(S3C2416_TICNT2_PART(val), s3c_rtc_base + S3C2416_TICNT2);
159 } else {
160 tmp |= val;
161 }
162
163 writel(tmp, s3c_rtc_base + S3C2410_TICNT);
164 spin_unlock_irq(&s3c_rtc_pie_lock);
165 clk_disable(rtc_clk);
166
167 return 0;
168 }
169
170 /* Time read/write */
171
172 static int s3c_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
173 {
174 unsigned int have_retried = 0;
175 void __iomem *base = s3c_rtc_base;
176
177 clk_enable(rtc_clk);
178 retry_get_time:
179 rtc_tm->tm_min = readb(base + S3C2410_RTCMIN);
180 rtc_tm->tm_hour = readb(base + S3C2410_RTCHOUR);
181 rtc_tm->tm_mday = readb(base + S3C2410_RTCDATE);
182 rtc_tm->tm_mon = readb(base + S3C2410_RTCMON);
183 rtc_tm->tm_year = readb(base + S3C2410_RTCYEAR);
184 rtc_tm->tm_sec = readb(base + S3C2410_RTCSEC);
185
186 /* the only way to work out whether the system was mid-update
187 * when we read it is to check the second counter, and if it
188 * is zero, then we re-try the entire read
189 */
190
191 if (rtc_tm->tm_sec == 0 && !have_retried) {
192 have_retried = 1;
193 goto retry_get_time;
194 }
195
196 rtc_tm->tm_sec = bcd2bin(rtc_tm->tm_sec);
197 rtc_tm->tm_min = bcd2bin(rtc_tm->tm_min);
198 rtc_tm->tm_hour = bcd2bin(rtc_tm->tm_hour);
199 rtc_tm->tm_mday = bcd2bin(rtc_tm->tm_mday);
200 rtc_tm->tm_mon = bcd2bin(rtc_tm->tm_mon);
201 rtc_tm->tm_year = bcd2bin(rtc_tm->tm_year);
202
203 rtc_tm->tm_year += 100;
204
205 dev_dbg(dev, "read time %04d.%02d.%02d %02d:%02d:%02d\n",
206 1900 + rtc_tm->tm_year, rtc_tm->tm_mon, rtc_tm->tm_mday,
207 rtc_tm->tm_hour, rtc_tm->tm_min, rtc_tm->tm_sec);
208
209 rtc_tm->tm_mon -= 1;
210
211 clk_disable(rtc_clk);
212 return rtc_valid_tm(rtc_tm);
213 }
214
215 static int s3c_rtc_settime(struct device *dev, struct rtc_time *tm)
216 {
217 void __iomem *base = s3c_rtc_base;
218 int year = tm->tm_year - 100;
219
220 dev_dbg(dev, "set time %04d.%02d.%02d %02d:%02d:%02d\n",
221 1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
222 tm->tm_hour, tm->tm_min, tm->tm_sec);
223
224 /* we get around y2k by simply not supporting it */
225
226 if (year < 0 || year >= 100) {
227 dev_err(dev, "rtc only supports 100 years\n");
228 return -EINVAL;
229 }
230
231 clk_enable(rtc_clk);
232 writeb(bin2bcd(tm->tm_sec), base + S3C2410_RTCSEC);
233 writeb(bin2bcd(tm->tm_min), base + S3C2410_RTCMIN);
234 writeb(bin2bcd(tm->tm_hour), base + S3C2410_RTCHOUR);
235 writeb(bin2bcd(tm->tm_mday), base + S3C2410_RTCDATE);
236 writeb(bin2bcd(tm->tm_mon + 1), base + S3C2410_RTCMON);
237 writeb(bin2bcd(year), base + S3C2410_RTCYEAR);
238 clk_disable(rtc_clk);
239
240 return 0;
241 }
242
243 static int s3c_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm)
244 {
245 struct rtc_time *alm_tm = &alrm->time;
246 void __iomem *base = s3c_rtc_base;
247 unsigned int alm_en;
248
249 clk_enable(rtc_clk);
250 alm_tm->tm_sec = readb(base + S3C2410_ALMSEC);
251 alm_tm->tm_min = readb(base + S3C2410_ALMMIN);
252 alm_tm->tm_hour = readb(base + S3C2410_ALMHOUR);
253 alm_tm->tm_mon = readb(base + S3C2410_ALMMON);
254 alm_tm->tm_mday = readb(base + S3C2410_ALMDATE);
255 alm_tm->tm_year = readb(base + S3C2410_ALMYEAR);
256
257 alm_en = readb(base + S3C2410_RTCALM);
258
259 alrm->enabled = (alm_en & S3C2410_RTCALM_ALMEN) ? 1 : 0;
260
261 dev_dbg(dev, "read alarm %d, %04d.%02d.%02d %02d:%02d:%02d\n",
262 alm_en,
263 1900 + alm_tm->tm_year, alm_tm->tm_mon, alm_tm->tm_mday,
264 alm_tm->tm_hour, alm_tm->tm_min, alm_tm->tm_sec);
265
266
267 /* decode the alarm enable field */
268
269 if (alm_en & S3C2410_RTCALM_SECEN)
270 alm_tm->tm_sec = bcd2bin(alm_tm->tm_sec);
271 else
272 alm_tm->tm_sec = -1;
273
274 if (alm_en & S3C2410_RTCALM_MINEN)
275 alm_tm->tm_min = bcd2bin(alm_tm->tm_min);
276 else
277 alm_tm->tm_min = -1;
278
279 if (alm_en & S3C2410_RTCALM_HOUREN)
280 alm_tm->tm_hour = bcd2bin(alm_tm->tm_hour);
281 else
282 alm_tm->tm_hour = -1;
283
284 if (alm_en & S3C2410_RTCALM_DAYEN)
285 alm_tm->tm_mday = bcd2bin(alm_tm->tm_mday);
286 else
287 alm_tm->tm_mday = -1;
288
289 if (alm_en & S3C2410_RTCALM_MONEN) {
290 alm_tm->tm_mon = bcd2bin(alm_tm->tm_mon);
291 alm_tm->tm_mon -= 1;
292 } else {
293 alm_tm->tm_mon = -1;
294 }
295
296 if (alm_en & S3C2410_RTCALM_YEAREN)
297 alm_tm->tm_year = bcd2bin(alm_tm->tm_year);
298 else
299 alm_tm->tm_year = -1;
300
301 clk_disable(rtc_clk);
302 return 0;
303 }
304
305 static int s3c_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
306 {
307 struct rtc_time *tm = &alrm->time;
308 void __iomem *base = s3c_rtc_base;
309 unsigned int alrm_en;
310
311 clk_enable(rtc_clk);
312 dev_dbg(dev, "s3c_rtc_setalarm: %d, %04d.%02d.%02d %02d:%02d:%02d\n",
313 alrm->enabled,
314 1900 + tm->tm_year, tm->tm_mon + 1, tm->tm_mday,
315 tm->tm_hour, tm->tm_min, tm->tm_sec);
316
317 alrm_en = readb(base + S3C2410_RTCALM) & S3C2410_RTCALM_ALMEN;
318 writeb(0x00, base + S3C2410_RTCALM);
319
320 if (tm->tm_sec < 60 && tm->tm_sec >= 0) {
321 alrm_en |= S3C2410_RTCALM_SECEN;
322 writeb(bin2bcd(tm->tm_sec), base + S3C2410_ALMSEC);
323 }
324
325 if (tm->tm_min < 60 && tm->tm_min >= 0) {
326 alrm_en |= S3C2410_RTCALM_MINEN;
327 writeb(bin2bcd(tm->tm_min), base + S3C2410_ALMMIN);
328 }
329
330 if (tm->tm_hour < 24 && tm->tm_hour >= 0) {
331 alrm_en |= S3C2410_RTCALM_HOUREN;
332 writeb(bin2bcd(tm->tm_hour), base + S3C2410_ALMHOUR);
333 }
334
335 dev_dbg(dev, "setting S3C2410_RTCALM to %08x\n", alrm_en);
336
337 writeb(alrm_en, base + S3C2410_RTCALM);
338
339 s3c_rtc_setaie(dev, alrm->enabled);
340
341 clk_disable(rtc_clk);
342 return 0;
343 }
344
345 static int s3c_rtc_proc(struct device *dev, struct seq_file *seq)
346 {
347 unsigned int ticnt;
348
349 clk_enable(rtc_clk);
350 if (s3c_rtc_cpu_type == TYPE_S3C64XX) {
351 ticnt = readw(s3c_rtc_base + S3C2410_RTCCON);
352 ticnt &= S3C64XX_RTCCON_TICEN;
353 } else {
354 ticnt = readb(s3c_rtc_base + S3C2410_TICNT);
355 ticnt &= S3C2410_TICNT_ENABLE;
356 }
357
358 seq_printf(seq, "periodic_IRQ\t: %s\n", ticnt ? "yes" : "no");
359 clk_disable(rtc_clk);
360 return 0;
361 }
362
363 static const struct rtc_class_ops s3c_rtcops = {
364 .read_time = s3c_rtc_gettime,
365 .set_time = s3c_rtc_settime,
366 .read_alarm = s3c_rtc_getalarm,
367 .set_alarm = s3c_rtc_setalarm,
368 .proc = s3c_rtc_proc,
369 .alarm_irq_enable = s3c_rtc_setaie,
370 };
371
372 static void s3c_rtc_enable(struct platform_device *pdev, int en)
373 {
374 void __iomem *base = s3c_rtc_base;
375 unsigned int tmp;
376
377 if (s3c_rtc_base == NULL)
378 return;
379
380 clk_enable(rtc_clk);
381 if (!en) {
382 tmp = readw(base + S3C2410_RTCCON);
383 if (s3c_rtc_cpu_type == TYPE_S3C64XX)
384 tmp &= ~S3C64XX_RTCCON_TICEN;
385 tmp &= ~S3C2410_RTCCON_RTCEN;
386 writew(tmp, base + S3C2410_RTCCON);
387
388 if (s3c_rtc_cpu_type != TYPE_S3C64XX) {
389 tmp = readb(base + S3C2410_TICNT);
390 tmp &= ~S3C2410_TICNT_ENABLE;
391 writeb(tmp, base + S3C2410_TICNT);
392 }
393 } else {
394 /* re-enable the device, and check it is ok */
395
396 if ((readw(base+S3C2410_RTCCON) & S3C2410_RTCCON_RTCEN) == 0) {
397 dev_info(&pdev->dev, "rtc disabled, re-enabling\n");
398
399 tmp = readw(base + S3C2410_RTCCON);
400 writew(tmp | S3C2410_RTCCON_RTCEN,
401 base + S3C2410_RTCCON);
402 }
403
404 if ((readw(base + S3C2410_RTCCON) & S3C2410_RTCCON_CNTSEL)) {
405 dev_info(&pdev->dev, "removing RTCCON_CNTSEL\n");
406
407 tmp = readw(base + S3C2410_RTCCON);
408 writew(tmp & ~S3C2410_RTCCON_CNTSEL,
409 base + S3C2410_RTCCON);
410 }
411
412 if ((readw(base + S3C2410_RTCCON) & S3C2410_RTCCON_CLKRST)) {
413 dev_info(&pdev->dev, "removing RTCCON_CLKRST\n");
414
415 tmp = readw(base + S3C2410_RTCCON);
416 writew(tmp & ~S3C2410_RTCCON_CLKRST,
417 base + S3C2410_RTCCON);
418 }
419 }
420 clk_disable(rtc_clk);
421 }
422
423 static int s3c_rtc_remove(struct platform_device *dev)
424 {
425 platform_set_drvdata(dev, NULL);
426
427 s3c_rtc_setaie(&dev->dev, 0);
428
429 rtc_clk = NULL;
430
431 return 0;
432 }
433
434 static const struct of_device_id s3c_rtc_dt_match[];
435
436 static inline int s3c_rtc_get_driver_data(struct platform_device *pdev)
437 {
438 #ifdef CONFIG_OF
439 struct s3c_rtc_drv_data *data;
440 if (pdev->dev.of_node) {
441 const struct of_device_id *match;
442 match = of_match_node(s3c_rtc_dt_match, pdev->dev.of_node);
443 data = (struct s3c_rtc_drv_data *) match->data;
444 return data->cpu_type;
445 }
446 #endif
447 return platform_get_device_id(pdev)->driver_data;
448 }
449
450 static int s3c_rtc_probe(struct platform_device *pdev)
451 {
452 struct rtc_device *rtc;
453 struct rtc_time rtc_tm;
454 struct resource *res;
455 int ret;
456 int tmp;
457
458 dev_dbg(&pdev->dev, "%s: probe=%p\n", __func__, pdev);
459
460 /* find the IRQs */
461
462 s3c_rtc_tickno = platform_get_irq(pdev, 1);
463 if (s3c_rtc_tickno < 0) {
464 dev_err(&pdev->dev, "no irq for rtc tick\n");
465 return s3c_rtc_tickno;
466 }
467
468 s3c_rtc_alarmno = platform_get_irq(pdev, 0);
469 if (s3c_rtc_alarmno < 0) {
470 dev_err(&pdev->dev, "no irq for alarm\n");
471 return s3c_rtc_alarmno;
472 }
473
474 dev_dbg(&pdev->dev, "s3c2410_rtc: tick irq %d, alarm irq %d\n",
475 s3c_rtc_tickno, s3c_rtc_alarmno);
476
477 /* get the memory region */
478
479 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
480 if (res == NULL) {
481 dev_err(&pdev->dev, "failed to get memory region resource\n");
482 return -ENOENT;
483 }
484
485 s3c_rtc_base = devm_ioremap_resource(&pdev->dev, res);
486 if (IS_ERR(s3c_rtc_base))
487 return PTR_ERR(s3c_rtc_base);
488
489 rtc_clk = devm_clk_get(&pdev->dev, "rtc");
490 if (IS_ERR(rtc_clk)) {
491 dev_err(&pdev->dev, "failed to find rtc clock source\n");
492 ret = PTR_ERR(rtc_clk);
493 rtc_clk = NULL;
494 return ret;
495 }
496
497 clk_enable(rtc_clk);
498
499 /* check to see if everything is setup correctly */
500
501 s3c_rtc_enable(pdev, 1);
502
503 dev_dbg(&pdev->dev, "s3c2410_rtc: RTCCON=%02x\n",
504 readw(s3c_rtc_base + S3C2410_RTCCON));
505
506 device_init_wakeup(&pdev->dev, 1);
507
508 /* register RTC and exit */
509
510 rtc = devm_rtc_device_register(&pdev->dev, "s3c", &s3c_rtcops,
511 THIS_MODULE);
512
513 if (IS_ERR(rtc)) {
514 dev_err(&pdev->dev, "cannot attach rtc\n");
515 ret = PTR_ERR(rtc);
516 goto err_nortc;
517 }
518
519 s3c_rtc_cpu_type = s3c_rtc_get_driver_data(pdev);
520
521 /* Check RTC Time */
522
523 s3c_rtc_gettime(NULL, &rtc_tm);
524
525 if (rtc_valid_tm(&rtc_tm)) {
526 rtc_tm.tm_year = 100;
527 rtc_tm.tm_mon = 0;
528 rtc_tm.tm_mday = 1;
529 rtc_tm.tm_hour = 0;
530 rtc_tm.tm_min = 0;
531 rtc_tm.tm_sec = 0;
532
533 s3c_rtc_settime(NULL, &rtc_tm);
534
535 dev_warn(&pdev->dev, "warning: invalid RTC value so initializing it\n");
536 }
537
538 if (s3c_rtc_cpu_type != TYPE_S3C2410)
539 rtc->max_user_freq = 32768;
540 else
541 rtc->max_user_freq = 128;
542
543 if (s3c_rtc_cpu_type == TYPE_S3C2416 || s3c_rtc_cpu_type == TYPE_S3C2443) {
544 tmp = readw(s3c_rtc_base + S3C2410_RTCCON);
545 tmp |= S3C2443_RTCCON_TICSEL;
546 writew(tmp, s3c_rtc_base + S3C2410_RTCCON);
547 }
548
549 platform_set_drvdata(pdev, rtc);
550
551 s3c_rtc_setfreq(&pdev->dev, 1);
552
553 ret = devm_request_irq(&pdev->dev, s3c_rtc_alarmno, s3c_rtc_alarmirq,
554 0, "s3c2410-rtc alarm", rtc);
555 if (ret) {
556 dev_err(&pdev->dev, "IRQ%d error %d\n", s3c_rtc_alarmno, ret);
557 goto err_alarm_irq;
558 }
559
560 ret = devm_request_irq(&pdev->dev, s3c_rtc_tickno, s3c_rtc_tickirq,
561 0, "s3c2410-rtc tick", rtc);
562 if (ret) {
563 dev_err(&pdev->dev, "IRQ%d error %d\n", s3c_rtc_tickno, ret);
564 goto err_alarm_irq;
565 }
566
567 clk_disable(rtc_clk);
568
569 return 0;
570
571 err_alarm_irq:
572 platform_set_drvdata(pdev, NULL);
573
574 err_nortc:
575 s3c_rtc_enable(pdev, 0);
576 clk_disable(rtc_clk);
577
578 return ret;
579 }
580
581 #ifdef CONFIG_PM_SLEEP
582 /* RTC Power management control */
583
584 static int ticnt_save, ticnt_en_save;
585 static bool wake_en;
586
587 static int s3c_rtc_suspend(struct device *dev)
588 {
589 struct platform_device *pdev = to_platform_device(dev);
590
591 clk_enable(rtc_clk);
592 /* save TICNT for anyone using periodic interrupts */
593 ticnt_save = readb(s3c_rtc_base + S3C2410_TICNT);
594 if (s3c_rtc_cpu_type == TYPE_S3C64XX) {
595 ticnt_en_save = readw(s3c_rtc_base + S3C2410_RTCCON);
596 ticnt_en_save &= S3C64XX_RTCCON_TICEN;
597 }
598 s3c_rtc_enable(pdev, 0);
599
600 if (device_may_wakeup(dev) && !wake_en) {
601 if (enable_irq_wake(s3c_rtc_alarmno) == 0)
602 wake_en = true;
603 else
604 dev_err(dev, "enable_irq_wake failed\n");
605 }
606 clk_disable(rtc_clk);
607
608 return 0;
609 }
610
611 static int s3c_rtc_resume(struct device *dev)
612 {
613 struct platform_device *pdev = to_platform_device(dev);
614 unsigned int tmp;
615
616 clk_enable(rtc_clk);
617 s3c_rtc_enable(pdev, 1);
618 writeb(ticnt_save, s3c_rtc_base + S3C2410_TICNT);
619 if (s3c_rtc_cpu_type == TYPE_S3C64XX && ticnt_en_save) {
620 tmp = readw(s3c_rtc_base + S3C2410_RTCCON);
621 writew(tmp | ticnt_en_save, s3c_rtc_base + S3C2410_RTCCON);
622 }
623
624 if (device_may_wakeup(dev) && wake_en) {
625 disable_irq_wake(s3c_rtc_alarmno);
626 wake_en = false;
627 }
628 clk_disable(rtc_clk);
629
630 return 0;
631 }
632 #endif
633
634 static SIMPLE_DEV_PM_OPS(s3c_rtc_pm_ops, s3c_rtc_suspend, s3c_rtc_resume);
635
636 #ifdef CONFIG_OF
637 static struct s3c_rtc_drv_data s3c_rtc_drv_data_array[] = {
638 [TYPE_S3C2410] = { TYPE_S3C2410 },
639 [TYPE_S3C2416] = { TYPE_S3C2416 },
640 [TYPE_S3C2443] = { TYPE_S3C2443 },
641 [TYPE_S3C64XX] = { TYPE_S3C64XX },
642 };
643
644 static const struct of_device_id s3c_rtc_dt_match[] = {
645 {
646 .compatible = "samsung,s3c2410-rtc",
647 .data = &s3c_rtc_drv_data_array[TYPE_S3C2410],
648 }, {
649 .compatible = "samsung,s3c2416-rtc",
650 .data = &s3c_rtc_drv_data_array[TYPE_S3C2416],
651 }, {
652 .compatible = "samsung,s3c2443-rtc",
653 .data = &s3c_rtc_drv_data_array[TYPE_S3C2443],
654 }, {
655 .compatible = "samsung,s3c6410-rtc",
656 .data = &s3c_rtc_drv_data_array[TYPE_S3C64XX],
657 },
658 {},
659 };
660 MODULE_DEVICE_TABLE(of, s3c_rtc_dt_match);
661 #endif
662
663 static struct platform_device_id s3c_rtc_driver_ids[] = {
664 {
665 .name = "s3c2410-rtc",
666 .driver_data = TYPE_S3C2410,
667 }, {
668 .name = "s3c2416-rtc",
669 .driver_data = TYPE_S3C2416,
670 }, {
671 .name = "s3c2443-rtc",
672 .driver_data = TYPE_S3C2443,
673 }, {
674 .name = "s3c64xx-rtc",
675 .driver_data = TYPE_S3C64XX,
676 },
677 { }
678 };
679
680 MODULE_DEVICE_TABLE(platform, s3c_rtc_driver_ids);
681
682 static struct platform_driver s3c_rtc_driver = {
683 .probe = s3c_rtc_probe,
684 .remove = s3c_rtc_remove,
685 .id_table = s3c_rtc_driver_ids,
686 .driver = {
687 .name = "s3c-rtc",
688 .owner = THIS_MODULE,
689 .pm = &s3c_rtc_pm_ops,
690 .of_match_table = of_match_ptr(s3c_rtc_dt_match),
691 },
692 };
693
694 module_platform_driver(s3c_rtc_driver);
695
696 MODULE_DESCRIPTION("Samsung S3C RTC Driver");
697 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
698 MODULE_LICENSE("GPL");
699 MODULE_ALIAS("platform:s3c2410-rtc");