2 * DS1286 Real Time Clock interface for Linux
4 * Copyright (C) 1998, 1999, 2000 Ralf Baechle
5 * Copyright (C) 2008 Thomas Bogendoerfer
7 * Based on code written by Paul Gortmaker.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
15 #include <linux/module.h>
16 #include <linux/rtc.h>
17 #include <linux/platform_device.h>
18 #include <linux/bcd.h>
19 #include <linux/ds1286.h>
22 #define DRV_VERSION "1.0"
25 struct rtc_device *rtc;
28 unsigned long baseaddr;
32 static inline u8 ds1286_rtc_read(struct ds1286_priv *priv, int reg)
34 return __raw_readl(&priv->rtcregs[reg]) & 0xff;
37 static inline void ds1286_rtc_write(struct ds1286_priv *priv, u8 data, int reg)
39 __raw_writel(data, &priv->rtcregs[reg]);
42 #ifdef CONFIG_RTC_INTF_DEV
44 static int ds1286_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
46 struct ds1286_priv *priv = dev_get_drvdata(dev);
52 /* Mask alarm int. enab. bit */
53 spin_lock_irqsave(&priv->lock, flags);
54 val = ds1286_rtc_read(priv, RTC_CMD);
56 ds1286_rtc_write(priv, val, RTC_CMD);
57 spin_unlock_irqrestore(&priv->lock, flags);
60 /* Allow alarm interrupts. */
61 spin_lock_irqsave(&priv->lock, flags);
62 val = ds1286_rtc_read(priv, RTC_CMD);
64 ds1286_rtc_write(priv, val, RTC_CMD);
65 spin_unlock_irqrestore(&priv->lock, flags);
68 /* Mask watchdog int. enab. bit */
69 spin_lock_irqsave(&priv->lock, flags);
70 val = ds1286_rtc_read(priv, RTC_CMD);
72 ds1286_rtc_write(priv, val, RTC_CMD);
73 spin_unlock_irqrestore(&priv->lock, flags);
76 /* Allow watchdog interrupts. */
77 spin_lock_irqsave(&priv->lock, flags);
78 val = ds1286_rtc_read(priv, RTC_CMD);
80 ds1286_rtc_write(priv, val, RTC_CMD);
81 spin_unlock_irqrestore(&priv->lock, flags);
90 #define ds1286_ioctl NULL
95 static int ds1286_proc(struct device *dev, struct seq_file *seq)
97 struct ds1286_priv *priv = dev_get_drvdata(dev);
98 unsigned char month, cmd, amode;
101 month = ds1286_rtc_read(priv, RTC_MONTH);
104 "square_wave\t: %s\n",
105 (month & RTC_EOSC) ? "disabled" : "enabled",
106 (month & RTC_ESQW) ? "disabled" : "enabled");
108 amode = ((ds1286_rtc_read(priv, RTC_MINUTES_ALARM) & 0x80) >> 5) |
109 ((ds1286_rtc_read(priv, RTC_HOURS_ALARM) & 0x80) >> 6) |
110 ((ds1286_rtc_read(priv, RTC_DAY_ALARM) & 0x80) >> 7);
119 s = "hours and minutes match";
122 s = "days, hours and minutes match";
128 seq_printf(seq, "alarm_mode\t: %s\n", s);
130 cmd = ds1286_rtc_read(priv, RTC_CMD);
132 "alarm_enable\t: %s\n"
135 "wdog_alarm_mask\t: %s\n"
136 "interrupt_mode\t: %s\n"
137 "INTB_mode\t: %s_active\n"
138 "interrupt_pins\t: %s\n",
139 (cmd & RTC_TDF) ? "yes" : "no",
140 (cmd & RTC_WAF) ? "yes" : "no",
141 (cmd & RTC_TDM) ? "disabled" : "enabled",
142 (cmd & RTC_WAM) ? "disabled" : "enabled",
143 (cmd & RTC_PU_LVL) ? "pulse" : "level",
144 (cmd & RTC_IBH_LO) ? "low" : "high",
145 (cmd & RTC_IPSW) ? "unswapped" : "swapped");
150 #define ds1286_proc NULL
153 static int ds1286_read_time(struct device *dev, struct rtc_time *tm)
155 struct ds1286_priv *priv = dev_get_drvdata(dev);
156 unsigned char save_control;
158 unsigned long uip_watchdog = jiffies;
161 * read RTC once any update in progress is done. The update
162 * can take just over 2ms. We wait 10 to 20ms. There is no need to
163 * to poll-wait (up to 1s - eeccch) for the falling edge of RTC_UIP.
164 * If you need to know *exactly* when a second has started, enable
165 * periodic update complete interrupts, (via ioctl) and then
166 * immediately read /dev/rtc which will block until you get the IRQ.
167 * Once the read clears, read the RTC time (again via ioctl). Easy.
170 if (ds1286_rtc_read(priv, RTC_CMD) & RTC_TE)
171 while (time_before(jiffies, uip_watchdog + 2*HZ/100))
175 * Only the values that we read from the RTC are set. We leave
176 * tm_wday, tm_yday and tm_isdst untouched. Even though the
177 * RTC has RTC_DAY_OF_WEEK, we ignore it, as it is only updated
178 * by the RTC when initially set to a non-zero value.
180 spin_lock_irqsave(&priv->lock, flags);
181 save_control = ds1286_rtc_read(priv, RTC_CMD);
182 ds1286_rtc_write(priv, (save_control|RTC_TE), RTC_CMD);
184 tm->tm_sec = ds1286_rtc_read(priv, RTC_SECONDS);
185 tm->tm_min = ds1286_rtc_read(priv, RTC_MINUTES);
186 tm->tm_hour = ds1286_rtc_read(priv, RTC_HOURS) & 0x3f;
187 tm->tm_mday = ds1286_rtc_read(priv, RTC_DATE);
188 tm->tm_mon = ds1286_rtc_read(priv, RTC_MONTH) & 0x1f;
189 tm->tm_year = ds1286_rtc_read(priv, RTC_YEAR);
191 ds1286_rtc_write(priv, save_control, RTC_CMD);
192 spin_unlock_irqrestore(&priv->lock, flags);
194 tm->tm_sec = bcd2bin(tm->tm_sec);
195 tm->tm_min = bcd2bin(tm->tm_min);
196 tm->tm_hour = bcd2bin(tm->tm_hour);
197 tm->tm_mday = bcd2bin(tm->tm_mday);
198 tm->tm_mon = bcd2bin(tm->tm_mon);
199 tm->tm_year = bcd2bin(tm->tm_year);
202 * Account for differences between how the RTC uses the values
203 * and how they are defined in a struct rtc_time;
205 if (tm->tm_year < 45)
208 if (tm->tm_year < 70)
213 return rtc_valid_tm(tm);
216 static int ds1286_set_time(struct device *dev, struct rtc_time *tm)
218 struct ds1286_priv *priv = dev_get_drvdata(dev);
219 unsigned char mon, day, hrs, min, sec;
220 unsigned char save_control;
224 yrs = tm->tm_year + 1900;
225 mon = tm->tm_mon + 1; /* tm_mon starts at zero */
235 if (yrs > 255) /* They are unsigned */
248 spin_lock_irqsave(&priv->lock, flags);
249 save_control = ds1286_rtc_read(priv, RTC_CMD);
250 ds1286_rtc_write(priv, (save_control|RTC_TE), RTC_CMD);
252 ds1286_rtc_write(priv, yrs, RTC_YEAR);
253 ds1286_rtc_write(priv, mon, RTC_MONTH);
254 ds1286_rtc_write(priv, day, RTC_DATE);
255 ds1286_rtc_write(priv, hrs, RTC_HOURS);
256 ds1286_rtc_write(priv, min, RTC_MINUTES);
257 ds1286_rtc_write(priv, sec, RTC_SECONDS);
258 ds1286_rtc_write(priv, 0, RTC_HUNDREDTH_SECOND);
260 ds1286_rtc_write(priv, save_control, RTC_CMD);
261 spin_unlock_irqrestore(&priv->lock, flags);
265 static int ds1286_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
267 struct ds1286_priv *priv = dev_get_drvdata(dev);
272 * Only the values that we read from the RTC are set. That
273 * means only tm_wday, tm_hour, tm_min.
275 spin_lock_irqsave(&priv->lock, flags);
276 alm->time.tm_min = ds1286_rtc_read(priv, RTC_MINUTES_ALARM) & 0x7f;
277 alm->time.tm_hour = ds1286_rtc_read(priv, RTC_HOURS_ALARM) & 0x1f;
278 alm->time.tm_wday = ds1286_rtc_read(priv, RTC_DAY_ALARM) & 0x07;
279 cmd = ds1286_rtc_read(priv, RTC_CMD);
280 spin_unlock_irqrestore(&priv->lock, flags);
282 alm->time.tm_min = bcd2bin(alm->time.tm_min);
283 alm->time.tm_hour = bcd2bin(alm->time.tm_hour);
284 alm->time.tm_sec = 0;
288 static int ds1286_set_alarm(struct device *dev, struct rtc_wkalrm *alm)
290 struct ds1286_priv *priv = dev_get_drvdata(dev);
291 unsigned char hrs, min, sec;
293 hrs = alm->time.tm_hour;
294 min = alm->time.tm_min;
295 sec = alm->time.tm_sec;
309 spin_lock(&priv->lock);
310 ds1286_rtc_write(priv, hrs, RTC_HOURS_ALARM);
311 ds1286_rtc_write(priv, min, RTC_MINUTES_ALARM);
312 spin_unlock(&priv->lock);
317 static const struct rtc_class_ops ds1286_ops = {
318 .ioctl = ds1286_ioctl,
320 .read_time = ds1286_read_time,
321 .set_time = ds1286_set_time,
322 .read_alarm = ds1286_read_alarm,
323 .set_alarm = ds1286_set_alarm,
326 static int __devinit ds1286_probe(struct platform_device *pdev)
328 struct rtc_device *rtc;
329 struct resource *res;
330 struct ds1286_priv *priv;
333 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
336 priv = kzalloc(sizeof(struct ds1286_priv), GFP_KERNEL);
340 priv->size = res->end - res->start + 1;
341 if (!request_mem_region(res->start, priv->size, pdev->name)) {
345 priv->baseaddr = res->start;
346 priv->rtcregs = ioremap(priv->baseaddr, priv->size);
347 if (!priv->rtcregs) {
351 spin_lock_init(&priv->lock);
352 rtc = rtc_device_register("ds1286", &pdev->dev,
353 &ds1286_ops, THIS_MODULE);
359 platform_set_drvdata(pdev, priv);
364 rtc_device_unregister(priv->rtc);
366 iounmap(priv->rtcregs);
368 release_mem_region(priv->baseaddr, priv->size);
373 static int __devexit ds1286_remove(struct platform_device *pdev)
375 struct ds1286_priv *priv = platform_get_drvdata(pdev);
377 rtc_device_unregister(priv->rtc);
378 iounmap(priv->rtcregs);
379 release_mem_region(priv->baseaddr, priv->size);
384 static struct platform_driver ds1286_platform_driver = {
386 .name = "rtc-ds1286",
387 .owner = THIS_MODULE,
389 .probe = ds1286_probe,
390 .remove = __devexit_p(ds1286_remove),
393 static int __init ds1286_init(void)
395 return platform_driver_register(&ds1286_platform_driver);
398 static void __exit ds1286_exit(void)
400 platform_driver_unregister(&ds1286_platform_driver);
403 MODULE_AUTHOR("Thomas Bogendoerfer <tsbogend@alpha.franken.de>");
404 MODULE_DESCRIPTION("DS1286 RTC driver");
405 MODULE_LICENSE("GPL");
406 MODULE_VERSION(DRV_VERSION);
407 MODULE_ALIAS("platform:rtc-ds1286");
409 module_init(ds1286_init);
410 module_exit(ds1286_exit);