2 * drivers/rtc/rtc-pl031.c
4 * Real Time Clock interface for ARM AMBA PrimeCell 031 RTC
6 * Author: Deepak Saxena <dsaxena@plexity.net>
8 * Copyright 2006 (c) MontaVista Software, Inc.
10 * Author: Mian Yousaf Kaukab <mian.yousaf.kaukab@stericsson.com>
11 * Copyright 2010 (c) ST-Ericsson AB
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
18 #include <linux/module.h>
19 #include <linux/rtc.h>
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
22 #include <linux/amba/bus.h>
24 #include <linux/bcd.h>
25 #include <linux/delay.h>
26 #include <linux/pm_wakeirq.h>
27 #include <linux/slab.h>
30 * Register definitions
32 #define RTC_DR 0x00 /* Data read register */
33 #define RTC_MR 0x04 /* Match register */
34 #define RTC_LR 0x08 /* Data load register */
35 #define RTC_CR 0x0c /* Control register */
36 #define RTC_IMSC 0x10 /* Interrupt mask and set register */
37 #define RTC_RIS 0x14 /* Raw interrupt status register */
38 #define RTC_MIS 0x18 /* Masked interrupt status register */
39 #define RTC_ICR 0x1c /* Interrupt clear register */
40 /* ST variants have additional timer functionality */
41 #define RTC_TDR 0x20 /* Timer data read register */
42 #define RTC_TLR 0x24 /* Timer data load register */
43 #define RTC_TCR 0x28 /* Timer control register */
44 #define RTC_YDR 0x30 /* Year data read register */
45 #define RTC_YMR 0x34 /* Year match register */
46 #define RTC_YLR 0x38 /* Year data load register */
48 #define RTC_CR_EN (1 << 0) /* counter enable bit */
49 #define RTC_CR_CWEN (1 << 26) /* Clockwatch enable bit */
51 #define RTC_TCR_EN (1 << 1) /* Periodic timer enable bit */
53 /* Common bit definitions for Interrupt status and control registers */
54 #define RTC_BIT_AI (1 << 0) /* Alarm interrupt bit */
55 #define RTC_BIT_PI (1 << 1) /* Periodic interrupt bit. ST variants only. */
57 /* Common bit definations for ST v2 for reading/writing time */
58 #define RTC_SEC_SHIFT 0
59 #define RTC_SEC_MASK (0x3F << RTC_SEC_SHIFT) /* Second [0-59] */
60 #define RTC_MIN_SHIFT 6
61 #define RTC_MIN_MASK (0x3F << RTC_MIN_SHIFT) /* Minute [0-59] */
62 #define RTC_HOUR_SHIFT 12
63 #define RTC_HOUR_MASK (0x1F << RTC_HOUR_SHIFT) /* Hour [0-23] */
64 #define RTC_WDAY_SHIFT 17
65 #define RTC_WDAY_MASK (0x7 << RTC_WDAY_SHIFT) /* Day of Week [1-7] 1=Sunday */
66 #define RTC_MDAY_SHIFT 20
67 #define RTC_MDAY_MASK (0x1F << RTC_MDAY_SHIFT) /* Day of Month [1-31] */
68 #define RTC_MON_SHIFT 25
69 #define RTC_MON_MASK (0xF << RTC_MON_SHIFT) /* Month [1-12] 1=January */
71 #define RTC_TIMER_FREQ 32768
74 * struct pl031_vendor_data - per-vendor variations
75 * @ops: the vendor-specific operations used on this silicon version
76 * @clockwatch: if this is an ST Microelectronics silicon version with a
78 * @st_weekday: if this is an ST Microelectronics silicon version that need
80 * @irqflags: special IRQ flags per variant
82 struct pl031_vendor_data {
83 struct rtc_class_ops ops;
86 unsigned long irqflags;
90 struct pl031_vendor_data *vendor;
91 struct rtc_device *rtc;
95 static int pl031_alarm_irq_enable(struct device *dev,
98 struct pl031_local *ldata = dev_get_drvdata(dev);
101 /* Clear any pending alarm interrupts. */
102 writel(RTC_BIT_AI, ldata->base + RTC_ICR);
104 imsc = readl(ldata->base + RTC_IMSC);
107 writel(imsc | RTC_BIT_AI, ldata->base + RTC_IMSC);
109 writel(imsc & ~RTC_BIT_AI, ldata->base + RTC_IMSC);
115 * Convert Gregorian date to ST v2 RTC format.
117 static int pl031_stv2_tm_to_time(struct device *dev,
118 struct rtc_time *tm, unsigned long *st_time,
119 unsigned long *bcd_year)
121 int year = tm->tm_year + 1900;
122 int wday = tm->tm_wday;
124 /* wday masking is not working in hardware so wday must be valid */
125 if (wday < -1 || wday > 6) {
126 dev_err(dev, "invalid wday value %d\n", tm->tm_wday);
128 } else if (wday == -1) {
129 /* wday is not provided, calculate it here */
131 struct rtc_time calc_tm;
133 rtc_tm_to_time(tm, &time);
134 rtc_time_to_tm(time, &calc_tm);
135 wday = calc_tm.tm_wday;
138 *bcd_year = (bin2bcd(year % 100) | bin2bcd(year / 100) << 8);
140 *st_time = ((tm->tm_mon + 1) << RTC_MON_SHIFT)
141 | (tm->tm_mday << RTC_MDAY_SHIFT)
142 | ((wday + 1) << RTC_WDAY_SHIFT)
143 | (tm->tm_hour << RTC_HOUR_SHIFT)
144 | (tm->tm_min << RTC_MIN_SHIFT)
145 | (tm->tm_sec << RTC_SEC_SHIFT);
151 * Convert ST v2 RTC format to Gregorian date.
153 static int pl031_stv2_time_to_tm(unsigned long st_time, unsigned long bcd_year,
156 tm->tm_year = bcd2bin(bcd_year) + (bcd2bin(bcd_year >> 8) * 100);
157 tm->tm_mon = ((st_time & RTC_MON_MASK) >> RTC_MON_SHIFT) - 1;
158 tm->tm_mday = ((st_time & RTC_MDAY_MASK) >> RTC_MDAY_SHIFT);
159 tm->tm_wday = ((st_time & RTC_WDAY_MASK) >> RTC_WDAY_SHIFT) - 1;
160 tm->tm_hour = ((st_time & RTC_HOUR_MASK) >> RTC_HOUR_SHIFT);
161 tm->tm_min = ((st_time & RTC_MIN_MASK) >> RTC_MIN_SHIFT);
162 tm->tm_sec = ((st_time & RTC_SEC_MASK) >> RTC_SEC_SHIFT);
164 tm->tm_yday = rtc_year_days(tm->tm_mday, tm->tm_mon, tm->tm_year);
170 static int pl031_stv2_read_time(struct device *dev, struct rtc_time *tm)
172 struct pl031_local *ldata = dev_get_drvdata(dev);
174 pl031_stv2_time_to_tm(readl(ldata->base + RTC_DR),
175 readl(ldata->base + RTC_YDR), tm);
180 static int pl031_stv2_set_time(struct device *dev, struct rtc_time *tm)
183 unsigned long bcd_year;
184 struct pl031_local *ldata = dev_get_drvdata(dev);
187 ret = pl031_stv2_tm_to_time(dev, tm, &time, &bcd_year);
189 writel(bcd_year, ldata->base + RTC_YLR);
190 writel(time, ldata->base + RTC_LR);
196 static int pl031_stv2_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
198 struct pl031_local *ldata = dev_get_drvdata(dev);
201 ret = pl031_stv2_time_to_tm(readl(ldata->base + RTC_MR),
202 readl(ldata->base + RTC_YMR), &alarm->time);
204 alarm->pending = readl(ldata->base + RTC_RIS) & RTC_BIT_AI;
205 alarm->enabled = readl(ldata->base + RTC_IMSC) & RTC_BIT_AI;
210 static int pl031_stv2_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
212 struct pl031_local *ldata = dev_get_drvdata(dev);
214 unsigned long bcd_year;
217 /* At the moment, we can only deal with non-wildcarded alarm times. */
218 ret = rtc_valid_tm(&alarm->time);
220 ret = pl031_stv2_tm_to_time(dev, &alarm->time,
223 writel(bcd_year, ldata->base + RTC_YMR);
224 writel(time, ldata->base + RTC_MR);
226 pl031_alarm_irq_enable(dev, alarm->enabled);
233 static irqreturn_t pl031_interrupt(int irq, void *dev_id)
235 struct pl031_local *ldata = dev_id;
236 unsigned long rtcmis;
237 unsigned long events = 0;
239 rtcmis = readl(ldata->base + RTC_MIS);
240 if (rtcmis & RTC_BIT_AI) {
241 writel(RTC_BIT_AI, ldata->base + RTC_ICR);
242 events |= (RTC_AF | RTC_IRQF);
243 rtc_update_irq(ldata->rtc, 1, events);
251 static int pl031_read_time(struct device *dev, struct rtc_time *tm)
253 struct pl031_local *ldata = dev_get_drvdata(dev);
255 rtc_time_to_tm(readl(ldata->base + RTC_DR), tm);
260 static int pl031_set_time(struct device *dev, struct rtc_time *tm)
263 struct pl031_local *ldata = dev_get_drvdata(dev);
266 ret = rtc_tm_to_time(tm, &time);
269 writel(time, ldata->base + RTC_LR);
274 static int pl031_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
276 struct pl031_local *ldata = dev_get_drvdata(dev);
278 rtc_time_to_tm(readl(ldata->base + RTC_MR), &alarm->time);
280 alarm->pending = readl(ldata->base + RTC_RIS) & RTC_BIT_AI;
281 alarm->enabled = readl(ldata->base + RTC_IMSC) & RTC_BIT_AI;
286 static int pl031_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
288 struct pl031_local *ldata = dev_get_drvdata(dev);
292 /* At the moment, we can only deal with non-wildcarded alarm times. */
293 ret = rtc_valid_tm(&alarm->time);
295 ret = rtc_tm_to_time(&alarm->time, &time);
297 writel(time, ldata->base + RTC_MR);
298 pl031_alarm_irq_enable(dev, alarm->enabled);
305 static int pl031_remove(struct amba_device *adev)
307 struct pl031_local *ldata = dev_get_drvdata(&adev->dev);
309 dev_pm_clear_wake_irq(&adev->dev);
310 device_init_wakeup(&adev->dev, false);
312 free_irq(adev->irq[0], ldata);
313 rtc_device_unregister(ldata->rtc);
314 iounmap(ldata->base);
316 amba_release_regions(adev);
321 static int pl031_probe(struct amba_device *adev, const struct amba_id *id)
324 struct pl031_local *ldata;
325 struct pl031_vendor_data *vendor = id->data;
326 struct rtc_class_ops *ops = &vendor->ops;
327 unsigned long time, data;
329 ret = amba_request_regions(adev, NULL);
333 ldata = kzalloc(sizeof(struct pl031_local), GFP_KERNEL);
338 ldata->vendor = vendor;
340 ldata->base = ioremap(adev->res.start, resource_size(&adev->res));
347 amba_set_drvdata(adev, ldata);
349 dev_dbg(&adev->dev, "designer ID = 0x%02x\n", amba_manf(adev));
350 dev_dbg(&adev->dev, "revision = 0x%01x\n", amba_rev(adev));
352 data = readl(ldata->base + RTC_CR);
353 /* Enable the clockwatch on ST Variants */
354 if (vendor->clockwatch)
358 writel(data, ldata->base + RTC_CR);
361 * On ST PL031 variants, the RTC reset value does not provide correct
362 * weekday for 2000-01-01. Correct the erroneous sunday to saturday.
364 if (vendor->st_weekday) {
365 if (readl(ldata->base + RTC_YDR) == 0x2000) {
366 time = readl(ldata->base + RTC_DR);
368 (RTC_MON_MASK | RTC_MDAY_MASK | RTC_WDAY_MASK))
370 time = time | (0x7 << RTC_WDAY_SHIFT);
371 writel(0x2000, ldata->base + RTC_YLR);
372 writel(time, ldata->base + RTC_LR);
377 device_init_wakeup(&adev->dev, true);
378 ldata->rtc = rtc_device_register("pl031", &adev->dev, ops,
380 if (IS_ERR(ldata->rtc)) {
381 ret = PTR_ERR(ldata->rtc);
386 ret = request_irq(adev->irq[0], pl031_interrupt,
387 vendor->irqflags, "rtc-pl031", ldata);
390 dev_pm_set_wake_irq(&adev->dev, adev->irq[0]);
395 rtc_device_unregister(ldata->rtc);
397 iounmap(ldata->base);
401 amba_release_regions(adev);
407 /* Operations for the original ARM version */
408 static struct pl031_vendor_data arm_pl031 = {
410 .read_time = pl031_read_time,
411 .set_time = pl031_set_time,
412 .read_alarm = pl031_read_alarm,
413 .set_alarm = pl031_set_alarm,
414 .alarm_irq_enable = pl031_alarm_irq_enable,
418 /* The First ST derivative */
419 static struct pl031_vendor_data stv1_pl031 = {
421 .read_time = pl031_read_time,
422 .set_time = pl031_set_time,
423 .read_alarm = pl031_read_alarm,
424 .set_alarm = pl031_set_alarm,
425 .alarm_irq_enable = pl031_alarm_irq_enable,
431 /* And the second ST derivative */
432 static struct pl031_vendor_data stv2_pl031 = {
434 .read_time = pl031_stv2_read_time,
435 .set_time = pl031_stv2_set_time,
436 .read_alarm = pl031_stv2_read_alarm,
437 .set_alarm = pl031_stv2_set_alarm,
438 .alarm_irq_enable = pl031_alarm_irq_enable,
443 * This variant shares the IRQ with another block and must not
444 * suspend that IRQ line.
445 * TODO check if it shares with IRQF_NO_SUSPEND user, else we can
446 * remove IRQF_COND_SUSPEND
448 .irqflags = IRQF_SHARED | IRQF_COND_SUSPEND,
451 static struct amba_id pl031_ids[] = {
457 /* ST Micro variants */
471 MODULE_DEVICE_TABLE(amba, pl031_ids);
473 static struct amba_driver pl031_driver = {
477 .id_table = pl031_ids,
478 .probe = pl031_probe,
479 .remove = pl031_remove,
482 module_amba_driver(pl031_driver);
484 MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>");
485 MODULE_DESCRIPTION("ARM AMBA PL031 RTC Driver");
486 MODULE_LICENSE("GPL");