Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/* drivers/rtc/rtc-s3c.c
3 *
4 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * Copyright (c) 2004,2006 Simtec Electronics
8 * Ben Dooks, <ben@simtec.co.uk>
9 * http://armlinux.simtec.co.uk/
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>
23#include <linux/log2.h>
24#include <linux/slab.h>
25#include <linux/of.h>
26#include <linux/uaccess.h>
27#include <linux/io.h>
28
29#include <asm/irq.h>
30#include "rtc-s3c.h"
31
32struct s3c_rtc {
33 struct device *dev;
34 struct rtc_device *rtc;
35
36 void __iomem *base;
37 struct clk *rtc_clk;
38 struct clk *rtc_src_clk;
39 bool alarm_enabled;
40
41 const struct s3c_rtc_data *data;
42
43 int irq_alarm;
44 spinlock_t alarm_lock;
45
46 bool wake_en;
47};
48
49struct s3c_rtc_data {
50 bool needs_src_clk;
51
52 void (*irq_handler) (struct s3c_rtc *info, int mask);
53 void (*enable) (struct s3c_rtc *info);
54 void (*disable) (struct s3c_rtc *info);
55};
56
57static int s3c_rtc_enable_clk(struct s3c_rtc *info)
58{
59 int ret;
60
61 ret = clk_enable(info->rtc_clk);
62 if (ret)
63 return ret;
64
65 if (info->data->needs_src_clk) {
66 ret = clk_enable(info->rtc_src_clk);
67 if (ret) {
68 clk_disable(info->rtc_clk);
69 return ret;
70 }
71 }
72 return 0;
73}
74
75static void s3c_rtc_disable_clk(struct s3c_rtc *info)
76{
77 if (info->data->needs_src_clk)
78 clk_disable(info->rtc_src_clk);
79 clk_disable(info->rtc_clk);
80}
81
82/* IRQ Handler */
83static irqreturn_t s3c_rtc_alarmirq(int irq, void *id)
84{
85 struct s3c_rtc *info = (struct s3c_rtc *)id;
86
87 if (info->data->irq_handler)
88 info->data->irq_handler(info, S3C2410_INTP_ALM);
89
90 return IRQ_HANDLED;
91}
92
93/* Update control registers */
94static int s3c_rtc_setaie(struct device *dev, unsigned int enabled)
95{
96 struct s3c_rtc *info = dev_get_drvdata(dev);
97 unsigned long flags;
98 unsigned int tmp;
99 int ret;
100
101 dev_dbg(info->dev, "%s: aie=%d\n", __func__, enabled);
102
103 ret = s3c_rtc_enable_clk(info);
104 if (ret)
105 return ret;
106
107 tmp = readb(info->base + S3C2410_RTCALM) & ~S3C2410_RTCALM_ALMEN;
108
109 if (enabled)
110 tmp |= S3C2410_RTCALM_ALMEN;
111
112 writeb(tmp, info->base + S3C2410_RTCALM);
113
114 spin_lock_irqsave(&info->alarm_lock, flags);
115
116 if (info->alarm_enabled && !enabled)
117 s3c_rtc_disable_clk(info);
118 else if (!info->alarm_enabled && enabled)
119 ret = s3c_rtc_enable_clk(info);
120
121 info->alarm_enabled = enabled;
122 spin_unlock_irqrestore(&info->alarm_lock, flags);
123
124 s3c_rtc_disable_clk(info);
125
126 return ret;
127}
128
129/* Read time from RTC and convert it from BCD */
130static int s3c_rtc_read_time(struct s3c_rtc *info, struct rtc_time *tm)
131{
132 unsigned int have_retried = 0;
133 int ret;
134
135 ret = s3c_rtc_enable_clk(info);
136 if (ret)
137 return ret;
138
139retry_get_time:
140 tm->tm_min = readb(info->base + S3C2410_RTCMIN);
141 tm->tm_hour = readb(info->base + S3C2410_RTCHOUR);
142 tm->tm_mday = readb(info->base + S3C2410_RTCDATE);
143 tm->tm_mon = readb(info->base + S3C2410_RTCMON);
144 tm->tm_year = readb(info->base + S3C2410_RTCYEAR);
145 tm->tm_sec = readb(info->base + S3C2410_RTCSEC);
146
147 /*
148 * The only way to work out whether the system was mid-update
149 * when we read it is to check the second counter, and if it
150 * is zero, then we re-try the entire read
151 */
152 if (tm->tm_sec == 0 && !have_retried) {
153 have_retried = 1;
154 goto retry_get_time;
155 }
156
157 s3c_rtc_disable_clk(info);
158
159 tm->tm_sec = bcd2bin(tm->tm_sec);
160 tm->tm_min = bcd2bin(tm->tm_min);
161 tm->tm_hour = bcd2bin(tm->tm_hour);
162 tm->tm_mday = bcd2bin(tm->tm_mday);
163 tm->tm_mon = bcd2bin(tm->tm_mon);
164 tm->tm_year = bcd2bin(tm->tm_year);
165
166 return 0;
167}
168
169/* Convert time to BCD and write it to RTC */
170static int s3c_rtc_write_time(struct s3c_rtc *info, const struct rtc_time *tm)
171{
172 int ret;
173
174 ret = s3c_rtc_enable_clk(info);
175 if (ret)
176 return ret;
177
178 writeb(bin2bcd(tm->tm_sec), info->base + S3C2410_RTCSEC);
179 writeb(bin2bcd(tm->tm_min), info->base + S3C2410_RTCMIN);
180 writeb(bin2bcd(tm->tm_hour), info->base + S3C2410_RTCHOUR);
181 writeb(bin2bcd(tm->tm_mday), info->base + S3C2410_RTCDATE);
182 writeb(bin2bcd(tm->tm_mon), info->base + S3C2410_RTCMON);
183 writeb(bin2bcd(tm->tm_year), info->base + S3C2410_RTCYEAR);
184
185 s3c_rtc_disable_clk(info);
186
187 return 0;
188}
189
190static int s3c_rtc_gettime(struct device *dev, struct rtc_time *tm)
191{
192 struct s3c_rtc *info = dev_get_drvdata(dev);
193 int ret;
194
195 ret = s3c_rtc_read_time(info, tm);
196 if (ret)
197 return ret;
198
199 /* Convert internal representation to actual date/time */
200 tm->tm_year += 100;
201 tm->tm_mon -= 1;
202
203 dev_dbg(dev, "read time %ptR\n", tm);
204 return 0;
205}
206
207static int s3c_rtc_settime(struct device *dev, struct rtc_time *tm)
208{
209 struct s3c_rtc *info = dev_get_drvdata(dev);
210 struct rtc_time rtc_tm = *tm;
211
212 dev_dbg(dev, "set time %ptR\n", tm);
213
214 /*
215 * Convert actual date/time to internal representation.
216 * We get around Y2K by simply not supporting it.
217 */
218 rtc_tm.tm_year -= 100;
219 rtc_tm.tm_mon += 1;
220
221 return s3c_rtc_write_time(info, &rtc_tm);
222}
223
224static int s3c_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm)
225{
226 struct s3c_rtc *info = dev_get_drvdata(dev);
227 struct rtc_time *alm_tm = &alrm->time;
228 unsigned int alm_en;
229 int ret;
230
231 ret = s3c_rtc_enable_clk(info);
232 if (ret)
233 return ret;
234
235 alm_tm->tm_sec = readb(info->base + S3C2410_ALMSEC);
236 alm_tm->tm_min = readb(info->base + S3C2410_ALMMIN);
237 alm_tm->tm_hour = readb(info->base + S3C2410_ALMHOUR);
238 alm_tm->tm_mon = readb(info->base + S3C2410_ALMMON);
239 alm_tm->tm_mday = readb(info->base + S3C2410_ALMDATE);
240 alm_tm->tm_year = readb(info->base + S3C2410_ALMYEAR);
241
242 alm_en = readb(info->base + S3C2410_RTCALM);
243
244 s3c_rtc_disable_clk(info);
245
246 alrm->enabled = (alm_en & S3C2410_RTCALM_ALMEN) ? 1 : 0;
247
248 dev_dbg(dev, "read alarm %d, %ptR\n", alm_en, alm_tm);
249
250 /* decode the alarm enable field */
251 if (alm_en & S3C2410_RTCALM_SECEN)
252 alm_tm->tm_sec = bcd2bin(alm_tm->tm_sec);
253
254 if (alm_en & S3C2410_RTCALM_MINEN)
255 alm_tm->tm_min = bcd2bin(alm_tm->tm_min);
256
257 if (alm_en & S3C2410_RTCALM_HOUREN)
258 alm_tm->tm_hour = bcd2bin(alm_tm->tm_hour);
259
260 if (alm_en & S3C2410_RTCALM_DAYEN)
261 alm_tm->tm_mday = bcd2bin(alm_tm->tm_mday);
262
263 if (alm_en & S3C2410_RTCALM_MONEN) {
264 alm_tm->tm_mon = bcd2bin(alm_tm->tm_mon);
265 alm_tm->tm_mon -= 1;
266 }
267
268 if (alm_en & S3C2410_RTCALM_YEAREN)
269 alm_tm->tm_year = bcd2bin(alm_tm->tm_year);
270
271 return 0;
272}
273
274static int s3c_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
275{
276 struct s3c_rtc *info = dev_get_drvdata(dev);
277 struct rtc_time *tm = &alrm->time;
278 unsigned int alrm_en;
279 int ret;
280
281 dev_dbg(dev, "s3c_rtc_setalarm: %d, %ptR\n", alrm->enabled, tm);
282
283 ret = s3c_rtc_enable_clk(info);
284 if (ret)
285 return ret;
286
287 alrm_en = readb(info->base + S3C2410_RTCALM) & S3C2410_RTCALM_ALMEN;
288 writeb(0x00, info->base + S3C2410_RTCALM);
289
290 if (tm->tm_sec < 60 && tm->tm_sec >= 0) {
291 alrm_en |= S3C2410_RTCALM_SECEN;
292 writeb(bin2bcd(tm->tm_sec), info->base + S3C2410_ALMSEC);
293 }
294
295 if (tm->tm_min < 60 && tm->tm_min >= 0) {
296 alrm_en |= S3C2410_RTCALM_MINEN;
297 writeb(bin2bcd(tm->tm_min), info->base + S3C2410_ALMMIN);
298 }
299
300 if (tm->tm_hour < 24 && tm->tm_hour >= 0) {
301 alrm_en |= S3C2410_RTCALM_HOUREN;
302 writeb(bin2bcd(tm->tm_hour), info->base + S3C2410_ALMHOUR);
303 }
304
305 if (tm->tm_mon < 12 && tm->tm_mon >= 0) {
306 alrm_en |= S3C2410_RTCALM_MONEN;
307 writeb(bin2bcd(tm->tm_mon + 1), info->base + S3C2410_ALMMON);
308 }
309
310 if (tm->tm_mday <= 31 && tm->tm_mday >= 1) {
311 alrm_en |= S3C2410_RTCALM_DAYEN;
312 writeb(bin2bcd(tm->tm_mday), info->base + S3C2410_ALMDATE);
313 }
314
315 dev_dbg(dev, "setting S3C2410_RTCALM to %08x\n", alrm_en);
316
317 writeb(alrm_en, info->base + S3C2410_RTCALM);
318
319 s3c_rtc_setaie(dev, alrm->enabled);
320
321 s3c_rtc_disable_clk(info);
322
323 return 0;
324}
325
326static const struct rtc_class_ops s3c_rtcops = {
327 .read_time = s3c_rtc_gettime,
328 .set_time = s3c_rtc_settime,
329 .read_alarm = s3c_rtc_getalarm,
330 .set_alarm = s3c_rtc_setalarm,
331 .alarm_irq_enable = s3c_rtc_setaie,
332};
333
334static void s3c24xx_rtc_enable(struct s3c_rtc *info)
335{
336 unsigned int con, tmp;
337
338 con = readw(info->base + S3C2410_RTCCON);
339 /* re-enable the device, and check it is ok */
340 if ((con & S3C2410_RTCCON_RTCEN) == 0) {
341 dev_info(info->dev, "rtc disabled, re-enabling\n");
342
343 tmp = readw(info->base + S3C2410_RTCCON);
344 writew(tmp | S3C2410_RTCCON_RTCEN, info->base + S3C2410_RTCCON);
345 }
346
347 if (con & S3C2410_RTCCON_CNTSEL) {
348 dev_info(info->dev, "removing RTCCON_CNTSEL\n");
349
350 tmp = readw(info->base + S3C2410_RTCCON);
351 writew(tmp & ~S3C2410_RTCCON_CNTSEL,
352 info->base + S3C2410_RTCCON);
353 }
354
355 if (con & S3C2410_RTCCON_CLKRST) {
356 dev_info(info->dev, "removing RTCCON_CLKRST\n");
357
358 tmp = readw(info->base + S3C2410_RTCCON);
359 writew(tmp & ~S3C2410_RTCCON_CLKRST,
360 info->base + S3C2410_RTCCON);
361 }
362}
363
364static void s3c24xx_rtc_disable(struct s3c_rtc *info)
365{
366 unsigned int con;
367
368 con = readw(info->base + S3C2410_RTCCON);
369 con &= ~S3C2410_RTCCON_RTCEN;
370 writew(con, info->base + S3C2410_RTCCON);
371
372 con = readb(info->base + S3C2410_TICNT);
373 con &= ~S3C2410_TICNT_ENABLE;
374 writeb(con, info->base + S3C2410_TICNT);
375}
376
377static void s3c6410_rtc_disable(struct s3c_rtc *info)
378{
379 unsigned int con;
380
381 con = readw(info->base + S3C2410_RTCCON);
382 con &= ~S3C64XX_RTCCON_TICEN;
383 con &= ~S3C2410_RTCCON_RTCEN;
384 writew(con, info->base + S3C2410_RTCCON);
385}
386
387static void s3c_rtc_remove(struct platform_device *pdev)
388{
389 struct s3c_rtc *info = platform_get_drvdata(pdev);
390
391 s3c_rtc_setaie(info->dev, 0);
392
393 if (info->data->needs_src_clk)
394 clk_unprepare(info->rtc_src_clk);
395 clk_unprepare(info->rtc_clk);
396}
397
398static int s3c_rtc_probe(struct platform_device *pdev)
399{
400 struct s3c_rtc *info = NULL;
401 int ret;
402
403 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
404 if (!info)
405 return -ENOMEM;
406
407 info->dev = &pdev->dev;
408 info->data = of_device_get_match_data(&pdev->dev);
409 if (!info->data) {
410 dev_err(&pdev->dev, "failed getting s3c_rtc_data\n");
411 return -EINVAL;
412 }
413 spin_lock_init(&info->alarm_lock);
414
415 platform_set_drvdata(pdev, info);
416
417 info->irq_alarm = platform_get_irq(pdev, 0);
418 if (info->irq_alarm < 0)
419 return info->irq_alarm;
420
421 dev_dbg(&pdev->dev, "s3c2410_rtc: alarm irq %d\n", info->irq_alarm);
422
423 /* get the memory region */
424 info->base = devm_platform_ioremap_resource(pdev, 0);
425 if (IS_ERR(info->base))
426 return PTR_ERR(info->base);
427
428 info->rtc_clk = devm_clk_get(&pdev->dev, "rtc");
429 if (IS_ERR(info->rtc_clk))
430 return dev_err_probe(&pdev->dev, PTR_ERR(info->rtc_clk),
431 "failed to find rtc clock\n");
432 ret = clk_prepare_enable(info->rtc_clk);
433 if (ret)
434 return ret;
435
436 if (info->data->needs_src_clk) {
437 info->rtc_src_clk = devm_clk_get(&pdev->dev, "rtc_src");
438 if (IS_ERR(info->rtc_src_clk)) {
439 ret = dev_err_probe(&pdev->dev, PTR_ERR(info->rtc_src_clk),
440 "failed to find rtc source clock\n");
441 goto err_src_clk;
442 }
443 ret = clk_prepare_enable(info->rtc_src_clk);
444 if (ret)
445 goto err_src_clk;
446 }
447
448 /* disable RTC enable bits potentially set by the bootloader */
449 if (info->data->disable)
450 info->data->disable(info);
451
452 /* check to see if everything is setup correctly */
453 if (info->data->enable)
454 info->data->enable(info);
455
456 dev_dbg(&pdev->dev, "s3c2410_rtc: RTCCON=%02x\n",
457 readw(info->base + S3C2410_RTCCON));
458
459 device_init_wakeup(&pdev->dev, 1);
460
461 info->rtc = devm_rtc_allocate_device(&pdev->dev);
462 if (IS_ERR(info->rtc)) {
463 ret = PTR_ERR(info->rtc);
464 goto err_nortc;
465 }
466
467 info->rtc->ops = &s3c_rtcops;
468 info->rtc->range_min = RTC_TIMESTAMP_BEGIN_2000;
469 info->rtc->range_max = RTC_TIMESTAMP_END_2099;
470
471 ret = devm_rtc_register_device(info->rtc);
472 if (ret)
473 goto err_nortc;
474
475 ret = devm_request_irq(&pdev->dev, info->irq_alarm, s3c_rtc_alarmirq,
476 0, "s3c2410-rtc alarm", info);
477 if (ret) {
478 dev_err(&pdev->dev, "IRQ%d error %d\n", info->irq_alarm, ret);
479 goto err_nortc;
480 }
481
482 s3c_rtc_disable_clk(info);
483
484 return 0;
485
486err_nortc:
487 if (info->data->disable)
488 info->data->disable(info);
489
490 if (info->data->needs_src_clk)
491 clk_disable_unprepare(info->rtc_src_clk);
492err_src_clk:
493 clk_disable_unprepare(info->rtc_clk);
494
495 return ret;
496}
497
498#ifdef CONFIG_PM_SLEEP
499
500static int s3c_rtc_suspend(struct device *dev)
501{
502 struct s3c_rtc *info = dev_get_drvdata(dev);
503 int ret;
504
505 ret = s3c_rtc_enable_clk(info);
506 if (ret)
507 return ret;
508
509 if (info->data->disable)
510 info->data->disable(info);
511
512 if (device_may_wakeup(dev) && !info->wake_en) {
513 if (enable_irq_wake(info->irq_alarm) == 0)
514 info->wake_en = true;
515 else
516 dev_err(dev, "enable_irq_wake failed\n");
517 }
518
519 return 0;
520}
521
522static int s3c_rtc_resume(struct device *dev)
523{
524 struct s3c_rtc *info = dev_get_drvdata(dev);
525
526 if (info->data->enable)
527 info->data->enable(info);
528
529 s3c_rtc_disable_clk(info);
530
531 if (device_may_wakeup(dev) && info->wake_en) {
532 disable_irq_wake(info->irq_alarm);
533 info->wake_en = false;
534 }
535
536 return 0;
537}
538#endif
539static SIMPLE_DEV_PM_OPS(s3c_rtc_pm_ops, s3c_rtc_suspend, s3c_rtc_resume);
540
541static void s3c24xx_rtc_irq(struct s3c_rtc *info, int mask)
542{
543 rtc_update_irq(info->rtc, 1, RTC_AF | RTC_IRQF);
544}
545
546static void s3c6410_rtc_irq(struct s3c_rtc *info, int mask)
547{
548 rtc_update_irq(info->rtc, 1, RTC_AF | RTC_IRQF);
549 writeb(mask, info->base + S3C2410_INTP);
550}
551
552static struct s3c_rtc_data const s3c2410_rtc_data = {
553 .irq_handler = s3c24xx_rtc_irq,
554 .enable = s3c24xx_rtc_enable,
555 .disable = s3c24xx_rtc_disable,
556};
557
558static struct s3c_rtc_data const s3c2416_rtc_data = {
559 .irq_handler = s3c24xx_rtc_irq,
560 .enable = s3c24xx_rtc_enable,
561 .disable = s3c24xx_rtc_disable,
562};
563
564static struct s3c_rtc_data const s3c2443_rtc_data = {
565 .irq_handler = s3c24xx_rtc_irq,
566 .enable = s3c24xx_rtc_enable,
567 .disable = s3c24xx_rtc_disable,
568};
569
570static struct s3c_rtc_data const s3c6410_rtc_data = {
571 .needs_src_clk = true,
572 .irq_handler = s3c6410_rtc_irq,
573 .enable = s3c24xx_rtc_enable,
574 .disable = s3c6410_rtc_disable,
575};
576
577static const __maybe_unused struct of_device_id s3c_rtc_dt_match[] = {
578 {
579 .compatible = "samsung,s3c2410-rtc",
580 .data = &s3c2410_rtc_data,
581 }, {
582 .compatible = "samsung,s3c2416-rtc",
583 .data = &s3c2416_rtc_data,
584 }, {
585 .compatible = "samsung,s3c2443-rtc",
586 .data = &s3c2443_rtc_data,
587 }, {
588 .compatible = "samsung,s3c6410-rtc",
589 .data = &s3c6410_rtc_data,
590 }, {
591 .compatible = "samsung,exynos3250-rtc",
592 .data = &s3c6410_rtc_data,
593 },
594 { /* sentinel */ },
595};
596MODULE_DEVICE_TABLE(of, s3c_rtc_dt_match);
597
598static struct platform_driver s3c_rtc_driver = {
599 .probe = s3c_rtc_probe,
600 .remove_new = s3c_rtc_remove,
601 .driver = {
602 .name = "s3c-rtc",
603 .pm = &s3c_rtc_pm_ops,
604 .of_match_table = of_match_ptr(s3c_rtc_dt_match),
605 },
606};
607module_platform_driver(s3c_rtc_driver);
608
609MODULE_DESCRIPTION("Samsung S3C RTC Driver");
610MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
611MODULE_LICENSE("GPL");
612MODULE_ALIAS("platform:s3c2410-rtc");
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 <asm/irq.h>
33#include "rtc-s3c.h"
34
35struct s3c_rtc {
36 struct device *dev;
37 struct rtc_device *rtc;
38
39 void __iomem *base;
40 struct clk *rtc_clk;
41 struct clk *rtc_src_clk;
42 bool clk_disabled;
43
44 const struct s3c_rtc_data *data;
45
46 int irq_alarm;
47 int irq_tick;
48
49 spinlock_t pie_lock;
50 spinlock_t alarm_clk_lock;
51
52 int ticnt_save;
53 int ticnt_en_save;
54 bool wake_en;
55};
56
57struct s3c_rtc_data {
58 int max_user_freq;
59 bool needs_src_clk;
60
61 void (*irq_handler) (struct s3c_rtc *info, int mask);
62 void (*set_freq) (struct s3c_rtc *info, int freq);
63 void (*enable_tick) (struct s3c_rtc *info, struct seq_file *seq);
64 void (*select_tick_clk) (struct s3c_rtc *info);
65 void (*save_tick_cnt) (struct s3c_rtc *info);
66 void (*restore_tick_cnt) (struct s3c_rtc *info);
67 void (*enable) (struct s3c_rtc *info);
68 void (*disable) (struct s3c_rtc *info);
69};
70
71static int s3c_rtc_enable_clk(struct s3c_rtc *info)
72{
73 unsigned long irq_flags;
74 int ret = 0;
75
76 spin_lock_irqsave(&info->alarm_clk_lock, irq_flags);
77
78 if (info->clk_disabled) {
79 ret = clk_enable(info->rtc_clk);
80 if (ret)
81 goto out;
82
83 if (info->data->needs_src_clk) {
84 ret = clk_enable(info->rtc_src_clk);
85 if (ret) {
86 clk_disable(info->rtc_clk);
87 goto out;
88 }
89 }
90 info->clk_disabled = false;
91 }
92
93out:
94 spin_unlock_irqrestore(&info->alarm_clk_lock, irq_flags);
95
96 return ret;
97}
98
99static void s3c_rtc_disable_clk(struct s3c_rtc *info)
100{
101 unsigned long irq_flags;
102
103 spin_lock_irqsave(&info->alarm_clk_lock, irq_flags);
104 if (!info->clk_disabled) {
105 if (info->data->needs_src_clk)
106 clk_disable(info->rtc_src_clk);
107 clk_disable(info->rtc_clk);
108 info->clk_disabled = true;
109 }
110 spin_unlock_irqrestore(&info->alarm_clk_lock, irq_flags);
111}
112
113/* IRQ Handlers */
114static irqreturn_t s3c_rtc_tickirq(int irq, void *id)
115{
116 struct s3c_rtc *info = (struct s3c_rtc *)id;
117
118 if (info->data->irq_handler)
119 info->data->irq_handler(info, S3C2410_INTP_TIC);
120
121 return IRQ_HANDLED;
122}
123
124static irqreturn_t s3c_rtc_alarmirq(int irq, void *id)
125{
126 struct s3c_rtc *info = (struct s3c_rtc *)id;
127
128 if (info->data->irq_handler)
129 info->data->irq_handler(info, S3C2410_INTP_ALM);
130
131 return IRQ_HANDLED;
132}
133
134/* Update control registers */
135static int s3c_rtc_setaie(struct device *dev, unsigned int enabled)
136{
137 struct s3c_rtc *info = dev_get_drvdata(dev);
138 unsigned int tmp;
139 int ret;
140
141 dev_dbg(info->dev, "%s: aie=%d\n", __func__, enabled);
142
143 ret = s3c_rtc_enable_clk(info);
144 if (ret)
145 return ret;
146
147 tmp = readb(info->base + S3C2410_RTCALM) & ~S3C2410_RTCALM_ALMEN;
148
149 if (enabled)
150 tmp |= S3C2410_RTCALM_ALMEN;
151
152 writeb(tmp, info->base + S3C2410_RTCALM);
153
154 s3c_rtc_disable_clk(info);
155
156 if (enabled) {
157 ret = s3c_rtc_enable_clk(info);
158 if (ret)
159 return ret;
160 } else {
161 s3c_rtc_disable_clk(info);
162 }
163
164 return 0;
165}
166
167/* Set RTC frequency */
168static int s3c_rtc_setfreq(struct s3c_rtc *info, int freq)
169{
170 int ret;
171
172 if (!is_power_of_2(freq))
173 return -EINVAL;
174
175 ret = s3c_rtc_enable_clk(info);
176 if (ret)
177 return ret;
178 spin_lock_irq(&info->pie_lock);
179
180 if (info->data->set_freq)
181 info->data->set_freq(info, freq);
182
183 spin_unlock_irq(&info->pie_lock);
184 s3c_rtc_disable_clk(info);
185
186 return 0;
187}
188
189/* Time read/write */
190static int s3c_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
191{
192 struct s3c_rtc *info = dev_get_drvdata(dev);
193 unsigned int have_retried = 0;
194 int ret;
195
196 ret = s3c_rtc_enable_clk(info);
197 if (ret)
198 return ret;
199
200retry_get_time:
201 rtc_tm->tm_min = readb(info->base + S3C2410_RTCMIN);
202 rtc_tm->tm_hour = readb(info->base + S3C2410_RTCHOUR);
203 rtc_tm->tm_mday = readb(info->base + S3C2410_RTCDATE);
204 rtc_tm->tm_mon = readb(info->base + S3C2410_RTCMON);
205 rtc_tm->tm_year = readb(info->base + S3C2410_RTCYEAR);
206 rtc_tm->tm_sec = readb(info->base + S3C2410_RTCSEC);
207
208 /* the only way to work out whether the system was mid-update
209 * when we read it is to check the second counter, and if it
210 * is zero, then we re-try the entire read
211 */
212
213 if (rtc_tm->tm_sec == 0 && !have_retried) {
214 have_retried = 1;
215 goto retry_get_time;
216 }
217
218 rtc_tm->tm_sec = bcd2bin(rtc_tm->tm_sec);
219 rtc_tm->tm_min = bcd2bin(rtc_tm->tm_min);
220 rtc_tm->tm_hour = bcd2bin(rtc_tm->tm_hour);
221 rtc_tm->tm_mday = bcd2bin(rtc_tm->tm_mday);
222 rtc_tm->tm_mon = bcd2bin(rtc_tm->tm_mon);
223 rtc_tm->tm_year = bcd2bin(rtc_tm->tm_year);
224
225 s3c_rtc_disable_clk(info);
226
227 rtc_tm->tm_year += 100;
228
229 dev_dbg(dev, "read time %04d.%02d.%02d %02d:%02d:%02d\n",
230 1900 + rtc_tm->tm_year, rtc_tm->tm_mon, rtc_tm->tm_mday,
231 rtc_tm->tm_hour, rtc_tm->tm_min, rtc_tm->tm_sec);
232
233 rtc_tm->tm_mon -= 1;
234
235 return 0;
236}
237
238static int s3c_rtc_settime(struct device *dev, struct rtc_time *tm)
239{
240 struct s3c_rtc *info = dev_get_drvdata(dev);
241 int year = tm->tm_year - 100;
242 int ret;
243
244 dev_dbg(dev, "set time %04d.%02d.%02d %02d:%02d:%02d\n",
245 1900 + tm->tm_year, tm->tm_mon, tm->tm_mday,
246 tm->tm_hour, tm->tm_min, tm->tm_sec);
247
248 /* we get around y2k by simply not supporting it */
249
250 if (year < 0 || year >= 100) {
251 dev_err(dev, "rtc only supports 100 years\n");
252 return -EINVAL;
253 }
254
255 ret = s3c_rtc_enable_clk(info);
256 if (ret)
257 return ret;
258
259 writeb(bin2bcd(tm->tm_sec), info->base + S3C2410_RTCSEC);
260 writeb(bin2bcd(tm->tm_min), info->base + S3C2410_RTCMIN);
261 writeb(bin2bcd(tm->tm_hour), info->base + S3C2410_RTCHOUR);
262 writeb(bin2bcd(tm->tm_mday), info->base + S3C2410_RTCDATE);
263 writeb(bin2bcd(tm->tm_mon + 1), info->base + S3C2410_RTCMON);
264 writeb(bin2bcd(year), info->base + S3C2410_RTCYEAR);
265
266 s3c_rtc_disable_clk(info);
267
268 return 0;
269}
270
271static int s3c_rtc_getalarm(struct device *dev, struct rtc_wkalrm *alrm)
272{
273 struct s3c_rtc *info = dev_get_drvdata(dev);
274 struct rtc_time *alm_tm = &alrm->time;
275 unsigned int alm_en;
276 int ret;
277
278 ret = s3c_rtc_enable_clk(info);
279 if (ret)
280 return ret;
281
282 alm_tm->tm_sec = readb(info->base + S3C2410_ALMSEC);
283 alm_tm->tm_min = readb(info->base + S3C2410_ALMMIN);
284 alm_tm->tm_hour = readb(info->base + S3C2410_ALMHOUR);
285 alm_tm->tm_mon = readb(info->base + S3C2410_ALMMON);
286 alm_tm->tm_mday = readb(info->base + S3C2410_ALMDATE);
287 alm_tm->tm_year = readb(info->base + S3C2410_ALMYEAR);
288
289 alm_en = readb(info->base + S3C2410_RTCALM);
290
291 s3c_rtc_disable_clk(info);
292
293 alrm->enabled = (alm_en & S3C2410_RTCALM_ALMEN) ? 1 : 0;
294
295 dev_dbg(dev, "read alarm %d, %04d.%02d.%02d %02d:%02d:%02d\n",
296 alm_en,
297 1900 + alm_tm->tm_year, alm_tm->tm_mon, alm_tm->tm_mday,
298 alm_tm->tm_hour, alm_tm->tm_min, alm_tm->tm_sec);
299
300 /* decode the alarm enable field */
301 if (alm_en & S3C2410_RTCALM_SECEN)
302 alm_tm->tm_sec = bcd2bin(alm_tm->tm_sec);
303
304 if (alm_en & S3C2410_RTCALM_MINEN)
305 alm_tm->tm_min = bcd2bin(alm_tm->tm_min);
306
307 if (alm_en & S3C2410_RTCALM_HOUREN)
308 alm_tm->tm_hour = bcd2bin(alm_tm->tm_hour);
309
310 if (alm_en & S3C2410_RTCALM_DAYEN)
311 alm_tm->tm_mday = bcd2bin(alm_tm->tm_mday);
312
313 if (alm_en & S3C2410_RTCALM_MONEN) {
314 alm_tm->tm_mon = bcd2bin(alm_tm->tm_mon);
315 alm_tm->tm_mon -= 1;
316 }
317
318 if (alm_en & S3C2410_RTCALM_YEAREN)
319 alm_tm->tm_year = bcd2bin(alm_tm->tm_year);
320
321 return 0;
322}
323
324static int s3c_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)
325{
326 struct s3c_rtc *info = dev_get_drvdata(dev);
327 struct rtc_time *tm = &alrm->time;
328 unsigned int alrm_en;
329 int ret;
330 int year = tm->tm_year - 100;
331
332 dev_dbg(dev, "s3c_rtc_setalarm: %d, %04d.%02d.%02d %02d:%02d:%02d\n",
333 alrm->enabled,
334 1900 + tm->tm_year, tm->tm_mon + 1, tm->tm_mday,
335 tm->tm_hour, tm->tm_min, tm->tm_sec);
336
337 ret = s3c_rtc_enable_clk(info);
338 if (ret)
339 return ret;
340
341 alrm_en = readb(info->base + S3C2410_RTCALM) & S3C2410_RTCALM_ALMEN;
342 writeb(0x00, info->base + S3C2410_RTCALM);
343
344 if (tm->tm_sec < 60 && tm->tm_sec >= 0) {
345 alrm_en |= S3C2410_RTCALM_SECEN;
346 writeb(bin2bcd(tm->tm_sec), info->base + S3C2410_ALMSEC);
347 }
348
349 if (tm->tm_min < 60 && tm->tm_min >= 0) {
350 alrm_en |= S3C2410_RTCALM_MINEN;
351 writeb(bin2bcd(tm->tm_min), info->base + S3C2410_ALMMIN);
352 }
353
354 if (tm->tm_hour < 24 && tm->tm_hour >= 0) {
355 alrm_en |= S3C2410_RTCALM_HOUREN;
356 writeb(bin2bcd(tm->tm_hour), info->base + S3C2410_ALMHOUR);
357 }
358
359 if (year < 100 && year >= 0) {
360 alrm_en |= S3C2410_RTCALM_YEAREN;
361 writeb(bin2bcd(year), info->base + S3C2410_ALMYEAR);
362 }
363
364 if (tm->tm_mon < 12 && tm->tm_mon >= 0) {
365 alrm_en |= S3C2410_RTCALM_MONEN;
366 writeb(bin2bcd(tm->tm_mon + 1), info->base + S3C2410_ALMMON);
367 }
368
369 if (tm->tm_mday <= 31 && tm->tm_mday >= 1) {
370 alrm_en |= S3C2410_RTCALM_DAYEN;
371 writeb(bin2bcd(tm->tm_mday), info->base + S3C2410_ALMDATE);
372 }
373
374 dev_dbg(dev, "setting S3C2410_RTCALM to %08x\n", alrm_en);
375
376 writeb(alrm_en, info->base + S3C2410_RTCALM);
377
378 s3c_rtc_disable_clk(info);
379
380 s3c_rtc_setaie(dev, alrm->enabled);
381
382 return 0;
383}
384
385static int s3c_rtc_proc(struct device *dev, struct seq_file *seq)
386{
387 struct s3c_rtc *info = dev_get_drvdata(dev);
388 int ret;
389
390 ret = s3c_rtc_enable_clk(info);
391 if (ret)
392 return ret;
393
394 if (info->data->enable_tick)
395 info->data->enable_tick(info, seq);
396
397 s3c_rtc_disable_clk(info);
398
399 return 0;
400}
401
402static const struct rtc_class_ops s3c_rtcops = {
403 .read_time = s3c_rtc_gettime,
404 .set_time = s3c_rtc_settime,
405 .read_alarm = s3c_rtc_getalarm,
406 .set_alarm = s3c_rtc_setalarm,
407 .proc = s3c_rtc_proc,
408 .alarm_irq_enable = s3c_rtc_setaie,
409};
410
411static void s3c24xx_rtc_enable(struct s3c_rtc *info)
412{
413 unsigned int con, tmp;
414
415 con = readw(info->base + S3C2410_RTCCON);
416 /* re-enable the device, and check it is ok */
417 if ((con & S3C2410_RTCCON_RTCEN) == 0) {
418 dev_info(info->dev, "rtc disabled, re-enabling\n");
419
420 tmp = readw(info->base + S3C2410_RTCCON);
421 writew(tmp | S3C2410_RTCCON_RTCEN, info->base + S3C2410_RTCCON);
422 }
423
424 if (con & S3C2410_RTCCON_CNTSEL) {
425 dev_info(info->dev, "removing RTCCON_CNTSEL\n");
426
427 tmp = readw(info->base + S3C2410_RTCCON);
428 writew(tmp & ~S3C2410_RTCCON_CNTSEL,
429 info->base + S3C2410_RTCCON);
430 }
431
432 if (con & S3C2410_RTCCON_CLKRST) {
433 dev_info(info->dev, "removing RTCCON_CLKRST\n");
434
435 tmp = readw(info->base + S3C2410_RTCCON);
436 writew(tmp & ~S3C2410_RTCCON_CLKRST,
437 info->base + S3C2410_RTCCON);
438 }
439}
440
441static void s3c24xx_rtc_disable(struct s3c_rtc *info)
442{
443 unsigned int con;
444
445 con = readw(info->base + S3C2410_RTCCON);
446 con &= ~S3C2410_RTCCON_RTCEN;
447 writew(con, info->base + S3C2410_RTCCON);
448
449 con = readb(info->base + S3C2410_TICNT);
450 con &= ~S3C2410_TICNT_ENABLE;
451 writeb(con, info->base + S3C2410_TICNT);
452}
453
454static void s3c6410_rtc_disable(struct s3c_rtc *info)
455{
456 unsigned int con;
457
458 con = readw(info->base + S3C2410_RTCCON);
459 con &= ~S3C64XX_RTCCON_TICEN;
460 con &= ~S3C2410_RTCCON_RTCEN;
461 writew(con, info->base + S3C2410_RTCCON);
462}
463
464static int s3c_rtc_remove(struct platform_device *pdev)
465{
466 struct s3c_rtc *info = platform_get_drvdata(pdev);
467
468 s3c_rtc_setaie(info->dev, 0);
469
470 if (info->data->needs_src_clk)
471 clk_unprepare(info->rtc_src_clk);
472 clk_unprepare(info->rtc_clk);
473
474 return 0;
475}
476
477static const struct of_device_id s3c_rtc_dt_match[];
478
479static const struct s3c_rtc_data *s3c_rtc_get_data(struct platform_device *pdev)
480{
481 const struct of_device_id *match;
482
483 match = of_match_node(s3c_rtc_dt_match, pdev->dev.of_node);
484 return match->data;
485}
486
487static int s3c_rtc_probe(struct platform_device *pdev)
488{
489 struct s3c_rtc *info = NULL;
490 struct rtc_time rtc_tm;
491 struct resource *res;
492 int ret;
493
494 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
495 if (!info)
496 return -ENOMEM;
497
498 /* find the IRQs */
499 info->irq_tick = platform_get_irq(pdev, 1);
500 if (info->irq_tick < 0) {
501 dev_err(&pdev->dev, "no irq for rtc tick\n");
502 return info->irq_tick;
503 }
504
505 info->dev = &pdev->dev;
506 info->data = s3c_rtc_get_data(pdev);
507 if (!info->data) {
508 dev_err(&pdev->dev, "failed getting s3c_rtc_data\n");
509 return -EINVAL;
510 }
511 spin_lock_init(&info->pie_lock);
512 spin_lock_init(&info->alarm_clk_lock);
513
514 platform_set_drvdata(pdev, info);
515
516 info->irq_alarm = platform_get_irq(pdev, 0);
517 if (info->irq_alarm < 0) {
518 dev_err(&pdev->dev, "no irq for alarm\n");
519 return info->irq_alarm;
520 }
521
522 dev_dbg(&pdev->dev, "s3c2410_rtc: tick irq %d, alarm irq %d\n",
523 info->irq_tick, info->irq_alarm);
524
525 /* get the memory region */
526 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
527 info->base = devm_ioremap_resource(&pdev->dev, res);
528 if (IS_ERR(info->base))
529 return PTR_ERR(info->base);
530
531 info->rtc_clk = devm_clk_get(&pdev->dev, "rtc");
532 if (IS_ERR(info->rtc_clk)) {
533 ret = PTR_ERR(info->rtc_clk);
534 if (ret != -EPROBE_DEFER)
535 dev_err(&pdev->dev, "failed to find rtc clock\n");
536 else
537 dev_dbg(&pdev->dev, "probe deferred due to missing rtc clk\n");
538 return ret;
539 }
540 ret = clk_prepare_enable(info->rtc_clk);
541 if (ret)
542 return ret;
543
544 if (info->data->needs_src_clk) {
545 info->rtc_src_clk = devm_clk_get(&pdev->dev, "rtc_src");
546 if (IS_ERR(info->rtc_src_clk)) {
547 ret = PTR_ERR(info->rtc_src_clk);
548 if (ret != -EPROBE_DEFER)
549 dev_err(&pdev->dev,
550 "failed to find rtc source clock\n");
551 else
552 dev_dbg(&pdev->dev,
553 "probe deferred due to missing rtc src clk\n");
554 goto err_src_clk;
555 }
556 ret = clk_prepare_enable(info->rtc_src_clk);
557 if (ret)
558 goto err_src_clk;
559 }
560
561 /* check to see if everything is setup correctly */
562 if (info->data->enable)
563 info->data->enable(info);
564
565 dev_dbg(&pdev->dev, "s3c2410_rtc: RTCCON=%02x\n",
566 readw(info->base + S3C2410_RTCCON));
567
568 device_init_wakeup(&pdev->dev, 1);
569
570 /* Check RTC Time */
571 if (s3c_rtc_gettime(&pdev->dev, &rtc_tm)) {
572 rtc_tm.tm_year = 100;
573 rtc_tm.tm_mon = 0;
574 rtc_tm.tm_mday = 1;
575 rtc_tm.tm_hour = 0;
576 rtc_tm.tm_min = 0;
577 rtc_tm.tm_sec = 0;
578
579 s3c_rtc_settime(&pdev->dev, &rtc_tm);
580
581 dev_warn(&pdev->dev, "warning: invalid RTC value so initializing it\n");
582 }
583
584 /* register RTC and exit */
585 info->rtc = devm_rtc_device_register(&pdev->dev, "s3c", &s3c_rtcops,
586 THIS_MODULE);
587 if (IS_ERR(info->rtc)) {
588 dev_err(&pdev->dev, "cannot attach rtc\n");
589 ret = PTR_ERR(info->rtc);
590 goto err_nortc;
591 }
592
593 ret = devm_request_irq(&pdev->dev, info->irq_alarm, s3c_rtc_alarmirq,
594 0, "s3c2410-rtc alarm", info);
595 if (ret) {
596 dev_err(&pdev->dev, "IRQ%d error %d\n", info->irq_alarm, ret);
597 goto err_nortc;
598 }
599
600 ret = devm_request_irq(&pdev->dev, info->irq_tick, s3c_rtc_tickirq,
601 0, "s3c2410-rtc tick", info);
602 if (ret) {
603 dev_err(&pdev->dev, "IRQ%d error %d\n", info->irq_tick, ret);
604 goto err_nortc;
605 }
606
607 if (info->data->select_tick_clk)
608 info->data->select_tick_clk(info);
609
610 s3c_rtc_setfreq(info, 1);
611
612 return 0;
613
614err_nortc:
615 if (info->data->disable)
616 info->data->disable(info);
617
618 if (info->data->needs_src_clk)
619 clk_disable_unprepare(info->rtc_src_clk);
620err_src_clk:
621 clk_disable_unprepare(info->rtc_clk);
622
623 return ret;
624}
625
626#ifdef CONFIG_PM_SLEEP
627
628static int s3c_rtc_suspend(struct device *dev)
629{
630 struct s3c_rtc *info = dev_get_drvdata(dev);
631 int ret;
632
633 ret = s3c_rtc_enable_clk(info);
634 if (ret)
635 return ret;
636
637 /* save TICNT for anyone using periodic interrupts */
638 if (info->data->save_tick_cnt)
639 info->data->save_tick_cnt(info);
640
641 if (info->data->disable)
642 info->data->disable(info);
643
644 if (device_may_wakeup(dev) && !info->wake_en) {
645 if (enable_irq_wake(info->irq_alarm) == 0)
646 info->wake_en = true;
647 else
648 dev_err(dev, "enable_irq_wake failed\n");
649 }
650
651 return 0;
652}
653
654static int s3c_rtc_resume(struct device *dev)
655{
656 struct s3c_rtc *info = dev_get_drvdata(dev);
657
658 if (info->data->enable)
659 info->data->enable(info);
660
661 if (info->data->restore_tick_cnt)
662 info->data->restore_tick_cnt(info);
663
664 s3c_rtc_disable_clk(info);
665
666 if (device_may_wakeup(dev) && info->wake_en) {
667 disable_irq_wake(info->irq_alarm);
668 info->wake_en = false;
669 }
670
671 return 0;
672}
673#endif
674static SIMPLE_DEV_PM_OPS(s3c_rtc_pm_ops, s3c_rtc_suspend, s3c_rtc_resume);
675
676static void s3c24xx_rtc_irq(struct s3c_rtc *info, int mask)
677{
678 rtc_update_irq(info->rtc, 1, RTC_AF | RTC_IRQF);
679}
680
681static void s3c6410_rtc_irq(struct s3c_rtc *info, int mask)
682{
683 rtc_update_irq(info->rtc, 1, RTC_AF | RTC_IRQF);
684 writeb(mask, info->base + S3C2410_INTP);
685}
686
687static void s3c2410_rtc_setfreq(struct s3c_rtc *info, int freq)
688{
689 unsigned int tmp = 0;
690 int val;
691
692 tmp = readb(info->base + S3C2410_TICNT);
693 tmp &= S3C2410_TICNT_ENABLE;
694
695 val = (info->rtc->max_user_freq / freq) - 1;
696 tmp |= val;
697
698 writel(tmp, info->base + S3C2410_TICNT);
699}
700
701static void s3c2416_rtc_setfreq(struct s3c_rtc *info, int freq)
702{
703 unsigned int tmp = 0;
704 int val;
705
706 tmp = readb(info->base + S3C2410_TICNT);
707 tmp &= S3C2410_TICNT_ENABLE;
708
709 val = (info->rtc->max_user_freq / freq) - 1;
710
711 tmp |= S3C2443_TICNT_PART(val);
712 writel(S3C2443_TICNT1_PART(val), info->base + S3C2443_TICNT1);
713
714 writel(S3C2416_TICNT2_PART(val), info->base + S3C2416_TICNT2);
715
716 writel(tmp, info->base + S3C2410_TICNT);
717}
718
719static void s3c2443_rtc_setfreq(struct s3c_rtc *info, int freq)
720{
721 unsigned int tmp = 0;
722 int val;
723
724 tmp = readb(info->base + S3C2410_TICNT);
725 tmp &= S3C2410_TICNT_ENABLE;
726
727 val = (info->rtc->max_user_freq / freq) - 1;
728
729 tmp |= S3C2443_TICNT_PART(val);
730 writel(S3C2443_TICNT1_PART(val), info->base + S3C2443_TICNT1);
731
732 writel(tmp, info->base + S3C2410_TICNT);
733}
734
735static void s3c6410_rtc_setfreq(struct s3c_rtc *info, int freq)
736{
737 int val;
738
739 val = (info->rtc->max_user_freq / freq) - 1;
740 writel(val, info->base + S3C2410_TICNT);
741}
742
743static void s3c24xx_rtc_enable_tick(struct s3c_rtc *info, struct seq_file *seq)
744{
745 unsigned int ticnt;
746
747 ticnt = readb(info->base + S3C2410_TICNT);
748 ticnt &= S3C2410_TICNT_ENABLE;
749
750 seq_printf(seq, "periodic_IRQ\t: %s\n", ticnt ? "yes" : "no");
751}
752
753static void s3c2416_rtc_select_tick_clk(struct s3c_rtc *info)
754{
755 unsigned int con;
756
757 con = readw(info->base + S3C2410_RTCCON);
758 con |= S3C2443_RTCCON_TICSEL;
759 writew(con, info->base + S3C2410_RTCCON);
760}
761
762static void s3c6410_rtc_enable_tick(struct s3c_rtc *info, struct seq_file *seq)
763{
764 unsigned int ticnt;
765
766 ticnt = readw(info->base + S3C2410_RTCCON);
767 ticnt &= S3C64XX_RTCCON_TICEN;
768
769 seq_printf(seq, "periodic_IRQ\t: %s\n", ticnt ? "yes" : "no");
770}
771
772static void s3c24xx_rtc_save_tick_cnt(struct s3c_rtc *info)
773{
774 info->ticnt_save = readb(info->base + S3C2410_TICNT);
775}
776
777static void s3c24xx_rtc_restore_tick_cnt(struct s3c_rtc *info)
778{
779 writeb(info->ticnt_save, info->base + S3C2410_TICNT);
780}
781
782static void s3c6410_rtc_save_tick_cnt(struct s3c_rtc *info)
783{
784 info->ticnt_en_save = readw(info->base + S3C2410_RTCCON);
785 info->ticnt_en_save &= S3C64XX_RTCCON_TICEN;
786 info->ticnt_save = readl(info->base + S3C2410_TICNT);
787}
788
789static void s3c6410_rtc_restore_tick_cnt(struct s3c_rtc *info)
790{
791 unsigned int con;
792
793 writel(info->ticnt_save, info->base + S3C2410_TICNT);
794 if (info->ticnt_en_save) {
795 con = readw(info->base + S3C2410_RTCCON);
796 writew(con | info->ticnt_en_save, info->base + S3C2410_RTCCON);
797 }
798}
799
800static struct s3c_rtc_data const s3c2410_rtc_data = {
801 .max_user_freq = 128,
802 .irq_handler = s3c24xx_rtc_irq,
803 .set_freq = s3c2410_rtc_setfreq,
804 .enable_tick = s3c24xx_rtc_enable_tick,
805 .save_tick_cnt = s3c24xx_rtc_save_tick_cnt,
806 .restore_tick_cnt = s3c24xx_rtc_restore_tick_cnt,
807 .enable = s3c24xx_rtc_enable,
808 .disable = s3c24xx_rtc_disable,
809};
810
811static struct s3c_rtc_data const s3c2416_rtc_data = {
812 .max_user_freq = 32768,
813 .irq_handler = s3c24xx_rtc_irq,
814 .set_freq = s3c2416_rtc_setfreq,
815 .enable_tick = s3c24xx_rtc_enable_tick,
816 .select_tick_clk = s3c2416_rtc_select_tick_clk,
817 .save_tick_cnt = s3c24xx_rtc_save_tick_cnt,
818 .restore_tick_cnt = s3c24xx_rtc_restore_tick_cnt,
819 .enable = s3c24xx_rtc_enable,
820 .disable = s3c24xx_rtc_disable,
821};
822
823static struct s3c_rtc_data const s3c2443_rtc_data = {
824 .max_user_freq = 32768,
825 .irq_handler = s3c24xx_rtc_irq,
826 .set_freq = s3c2443_rtc_setfreq,
827 .enable_tick = s3c24xx_rtc_enable_tick,
828 .select_tick_clk = s3c2416_rtc_select_tick_clk,
829 .save_tick_cnt = s3c24xx_rtc_save_tick_cnt,
830 .restore_tick_cnt = s3c24xx_rtc_restore_tick_cnt,
831 .enable = s3c24xx_rtc_enable,
832 .disable = s3c24xx_rtc_disable,
833};
834
835static struct s3c_rtc_data const s3c6410_rtc_data = {
836 .max_user_freq = 32768,
837 .needs_src_clk = true,
838 .irq_handler = s3c6410_rtc_irq,
839 .set_freq = s3c6410_rtc_setfreq,
840 .enable_tick = s3c6410_rtc_enable_tick,
841 .save_tick_cnt = s3c6410_rtc_save_tick_cnt,
842 .restore_tick_cnt = s3c6410_rtc_restore_tick_cnt,
843 .enable = s3c24xx_rtc_enable,
844 .disable = s3c6410_rtc_disable,
845};
846
847static const struct of_device_id s3c_rtc_dt_match[] = {
848 {
849 .compatible = "samsung,s3c2410-rtc",
850 .data = &s3c2410_rtc_data,
851 }, {
852 .compatible = "samsung,s3c2416-rtc",
853 .data = &s3c2416_rtc_data,
854 }, {
855 .compatible = "samsung,s3c2443-rtc",
856 .data = &s3c2443_rtc_data,
857 }, {
858 .compatible = "samsung,s3c6410-rtc",
859 .data = &s3c6410_rtc_data,
860 }, {
861 .compatible = "samsung,exynos3250-rtc",
862 .data = &s3c6410_rtc_data,
863 },
864 { /* sentinel */ },
865};
866MODULE_DEVICE_TABLE(of, s3c_rtc_dt_match);
867
868static struct platform_driver s3c_rtc_driver = {
869 .probe = s3c_rtc_probe,
870 .remove = s3c_rtc_remove,
871 .driver = {
872 .name = "s3c-rtc",
873 .pm = &s3c_rtc_pm_ops,
874 .of_match_table = of_match_ptr(s3c_rtc_dt_match),
875 },
876};
877module_platform_driver(s3c_rtc_driver);
878
879MODULE_DESCRIPTION("Samsung S3C RTC Driver");
880MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
881MODULE_LICENSE("GPL");
882MODULE_ALIAS("platform:s3c2410-rtc");