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