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