1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/rtc/rtc-pl030.c
5 * Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
7 #include <linux/module.h>
9 #include <linux/init.h>
10 #include <linux/interrupt.h>
11 #include <linux/amba/bus.h>
13 #include <linux/slab.h>
21 #define RTC_CR_MIE (1 << 0)
24 struct rtc_device *rtc;
28 static irqreturn_t pl030_interrupt(int irq, void *dev_id)
30 struct pl030_rtc *rtc = dev_id;
31 writel(0, rtc->base + RTC_EOI);
35 static int pl030_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
37 struct pl030_rtc *rtc = dev_get_drvdata(dev);
39 rtc_time_to_tm(readl(rtc->base + RTC_MR), &alrm->time);
43 static int pl030_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
45 struct pl030_rtc *rtc = dev_get_drvdata(dev);
50 * At the moment, we can only deal with non-wildcarded alarm times.
52 ret = rtc_valid_tm(&alrm->time);
54 ret = rtc_tm_to_time(&alrm->time, &time);
56 writel(time, rtc->base + RTC_MR);
60 static int pl030_read_time(struct device *dev, struct rtc_time *tm)
62 struct pl030_rtc *rtc = dev_get_drvdata(dev);
64 rtc_time_to_tm(readl(rtc->base + RTC_DR), tm);
70 * Set the RTC time. Unfortunately, we can't accurately set
71 * the point at which the counter updates.
73 * Also, since RTC_LR is transferred to RTC_CR on next rising
74 * edge of the 1Hz clock, we must write the time one second
77 static int pl030_set_time(struct device *dev, struct rtc_time *tm)
79 struct pl030_rtc *rtc = dev_get_drvdata(dev);
83 ret = rtc_tm_to_time(tm, &time);
85 writel(time + 1, rtc->base + RTC_LR);
90 static const struct rtc_class_ops pl030_ops = {
91 .read_time = pl030_read_time,
92 .set_time = pl030_set_time,
93 .read_alarm = pl030_read_alarm,
94 .set_alarm = pl030_set_alarm,
97 static int pl030_probe(struct amba_device *dev, const struct amba_id *id)
99 struct pl030_rtc *rtc;
102 ret = amba_request_regions(dev, NULL);
106 rtc = devm_kzalloc(&dev->dev, sizeof(*rtc), GFP_KERNEL);
112 rtc->rtc = devm_rtc_allocate_device(&dev->dev);
113 if (IS_ERR(rtc->rtc)) {
114 ret = PTR_ERR(rtc->rtc);
118 rtc->rtc->ops = &pl030_ops;
119 rtc->base = ioremap(dev->res.start, resource_size(&dev->res));
125 __raw_writel(0, rtc->base + RTC_CR);
126 __raw_writel(0, rtc->base + RTC_EOI);
128 amba_set_drvdata(dev, rtc);
130 ret = request_irq(dev->irq[0], pl030_interrupt, 0,
135 ret = rtc_register_device(rtc->rtc);
142 free_irq(dev->irq[0], rtc);
146 amba_release_regions(dev);
151 static int pl030_remove(struct amba_device *dev)
153 struct pl030_rtc *rtc = amba_get_drvdata(dev);
155 writel(0, rtc->base + RTC_CR);
157 free_irq(dev->irq[0], rtc);
159 amba_release_regions(dev);
164 static struct amba_id pl030_ids[] = {
172 MODULE_DEVICE_TABLE(amba, pl030_ids);
174 static struct amba_driver pl030_driver = {
178 .probe = pl030_probe,
179 .remove = pl030_remove,
180 .id_table = pl030_ids,
183 module_amba_driver(pl030_driver);
186 MODULE_DESCRIPTION("ARM AMBA PL030 RTC Driver");
187 MODULE_LICENSE("GPL");