blob: cf68a9b1c9ebbc64cb37620ecc0331dfb2481d76 [file] [log] [blame]
Alexandre Belloni3a205b92019-03-20 13:32:29 +01001// SPDX-License-Identifier: GPL-2.0+
Loc Hof12d8692014-06-06 14:35:42 -07002/*
3 * APM X-Gene SoC Real Time Clock Driver
4 *
5 * Copyright (c) 2014, Applied Micro Circuits Corporation
6 * Author: Rameshwar Prasad Sahu <rsahu@apm.com>
7 * Loc Ho <lho@apm.com>
Loc Hof12d8692014-06-06 14:35:42 -07008 */
9
Alexandre Bellonidb785342019-03-20 13:32:30 +010010#include <linux/clk.h>
11#include <linux/delay.h>
Loc Hof12d8692014-06-06 14:35:42 -070012#include <linux/init.h>
Alexandre Bellonidb785342019-03-20 13:32:30 +010013#include <linux/io.h>
Loc Hof12d8692014-06-06 14:35:42 -070014#include <linux/module.h>
15#include <linux/of.h>
16#include <linux/platform_device.h>
Loc Hof12d8692014-06-06 14:35:42 -070017#include <linux/rtc.h>
Alexandre Bellonidb785342019-03-20 13:32:30 +010018#include <linux/slab.h>
Loc Hof12d8692014-06-06 14:35:42 -070019
20/* RTC CSR Registers */
21#define RTC_CCVR 0x00
22#define RTC_CMR 0x04
23#define RTC_CLR 0x08
24#define RTC_CCR 0x0C
25#define RTC_CCR_IE BIT(0)
26#define RTC_CCR_MASK BIT(1)
27#define RTC_CCR_EN BIT(2)
28#define RTC_CCR_WEN BIT(3)
29#define RTC_STAT 0x10
30#define RTC_STAT_BIT BIT(0)
31#define RTC_RSTAT 0x14
32#define RTC_EOI 0x18
33#define RTC_VER 0x1C
34
35struct xgene_rtc_dev {
36 struct rtc_device *rtc;
Loc Hof12d8692014-06-06 14:35:42 -070037 void __iomem *csr_base;
38 struct clk *clk;
39 unsigned int irq_wake;
Loc Hod0bcd822014-04-14 12:09:04 -060040 unsigned int irq_enabled;
Loc Hof12d8692014-06-06 14:35:42 -070041};
42
43static int xgene_rtc_read_time(struct device *dev, struct rtc_time *tm)
44{
45 struct xgene_rtc_dev *pdata = dev_get_drvdata(dev);
46
Alexandre Belloni43f327f2019-03-20 13:32:32 +010047 rtc_time64_to_tm(readl(pdata->csr_base + RTC_CCVR), tm);
Alexandre Belloniab626702018-02-19 16:23:55 +010048 return 0;
Loc Hof12d8692014-06-06 14:35:42 -070049}
50
Alexandre Belloni58f88912019-03-20 13:32:33 +010051static int xgene_rtc_set_time(struct device *dev, struct rtc_time *tm)
Loc Hof12d8692014-06-06 14:35:42 -070052{
53 struct xgene_rtc_dev *pdata = dev_get_drvdata(dev);
54
55 /*
56 * NOTE: After the following write, the RTC_CCVR is only reflected
57 * after the update cycle of 1 seconds.
58 */
Alexandre Belloni58f88912019-03-20 13:32:33 +010059 writel((u32)rtc_tm_to_time64(tm), pdata->csr_base + RTC_CLR);
Loc Hof12d8692014-06-06 14:35:42 -070060 readl(pdata->csr_base + RTC_CLR); /* Force a barrier */
61
62 return 0;
63}
64
65static int xgene_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
66{
67 struct xgene_rtc_dev *pdata = dev_get_drvdata(dev);
68
Alexandre Belloni9a842a72019-03-20 13:32:31 +010069 /* If possible, CMR should be read here */
Alexandre Belloni43f327f2019-03-20 13:32:32 +010070 rtc_time64_to_tm(0, &alrm->time);
Loc Hof12d8692014-06-06 14:35:42 -070071 alrm->enabled = readl(pdata->csr_base + RTC_CCR) & RTC_CCR_IE;
72
73 return 0;
74}
75
76static int xgene_rtc_alarm_irq_enable(struct device *dev, u32 enabled)
77{
78 struct xgene_rtc_dev *pdata = dev_get_drvdata(dev);
79 u32 ccr;
80
81 ccr = readl(pdata->csr_base + RTC_CCR);
82 if (enabled) {
83 ccr &= ~RTC_CCR_MASK;
84 ccr |= RTC_CCR_IE;
85 } else {
86 ccr &= ~RTC_CCR_IE;
87 ccr |= RTC_CCR_MASK;
88 }
89 writel(ccr, pdata->csr_base + RTC_CCR);
90
91 return 0;
92}
93
Loc Hod0bcd822014-04-14 12:09:04 -060094static int xgene_rtc_alarm_irq_enabled(struct device *dev)
95{
96 struct xgene_rtc_dev *pdata = dev_get_drvdata(dev);
97
98 return readl(pdata->csr_base + RTC_CCR) & RTC_CCR_IE ? 1 : 0;
99}
100
Loc Hof12d8692014-06-06 14:35:42 -0700101static int xgene_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
102{
103 struct xgene_rtc_dev *pdata = dev_get_drvdata(dev);
Loc Hof12d8692014-06-06 14:35:42 -0700104
Alexandre Belloni43f327f2019-03-20 13:32:32 +0100105 writel((u32)rtc_tm_to_time64(&alrm->time), pdata->csr_base + RTC_CMR);
Loc Hof12d8692014-06-06 14:35:42 -0700106
107 xgene_rtc_alarm_irq_enable(dev, alrm->enabled);
108
109 return 0;
110}
111
112static const struct rtc_class_ops xgene_rtc_ops = {
113 .read_time = xgene_rtc_read_time,
Alexandre Belloni58f88912019-03-20 13:32:33 +0100114 .set_time = xgene_rtc_set_time,
Loc Hof12d8692014-06-06 14:35:42 -0700115 .read_alarm = xgene_rtc_read_alarm,
116 .set_alarm = xgene_rtc_set_alarm,
117 .alarm_irq_enable = xgene_rtc_alarm_irq_enable,
118};
119
120static irqreturn_t xgene_rtc_interrupt(int irq, void *id)
121{
Alexandre Bellonidb785342019-03-20 13:32:30 +0100122 struct xgene_rtc_dev *pdata = id;
Loc Hof12d8692014-06-06 14:35:42 -0700123
124 /* Check if interrupt asserted */
125 if (!(readl(pdata->csr_base + RTC_STAT) & RTC_STAT_BIT))
126 return IRQ_NONE;
127
128 /* Clear interrupt */
129 readl(pdata->csr_base + RTC_EOI);
130
131 rtc_update_irq(pdata->rtc, 1, RTC_IRQF | RTC_AF);
132
133 return IRQ_HANDLED;
134}
135
136static int xgene_rtc_probe(struct platform_device *pdev)
137{
138 struct xgene_rtc_dev *pdata;
Loc Hof12d8692014-06-06 14:35:42 -0700139 int ret;
140 int irq;
141
142 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
143 if (!pdata)
144 return -ENOMEM;
145 platform_set_drvdata(pdev, pdata);
Loc Hof12d8692014-06-06 14:35:42 -0700146
YueHaibing09ef18b2019-10-06 18:29:20 +0800147 pdata->csr_base = devm_platform_ioremap_resource(pdev, 0);
Loc Hof12d8692014-06-06 14:35:42 -0700148 if (IS_ERR(pdata->csr_base))
149 return PTR_ERR(pdata->csr_base);
150
Alexandre Bellonia652e002019-03-20 13:32:27 +0100151 pdata->rtc = devm_rtc_allocate_device(&pdev->dev);
152 if (IS_ERR(pdata->rtc))
153 return PTR_ERR(pdata->rtc);
154
Loc Hof12d8692014-06-06 14:35:42 -0700155 irq = platform_get_irq(pdev, 0);
Stephen Boydfaac9102019-07-30 11:15:39 -0700156 if (irq < 0)
Loc Hof12d8692014-06-06 14:35:42 -0700157 return irq;
Loc Hof12d8692014-06-06 14:35:42 -0700158 ret = devm_request_irq(&pdev->dev, irq, xgene_rtc_interrupt, 0,
159 dev_name(&pdev->dev), pdata);
160 if (ret) {
161 dev_err(&pdev->dev, "Could not request IRQ\n");
162 return ret;
163 }
164
165 pdata->clk = devm_clk_get(&pdev->dev, NULL);
166 if (IS_ERR(pdata->clk)) {
167 dev_err(&pdev->dev, "Couldn't get the clock for RTC\n");
168 return -ENODEV;
169 }
Loc Hod0bcd822014-04-14 12:09:04 -0600170 ret = clk_prepare_enable(pdata->clk);
171 if (ret)
172 return ret;
Loc Hof12d8692014-06-06 14:35:42 -0700173
174 /* Turn on the clock and the crystal */
175 writel(RTC_CCR_EN, pdata->csr_base + RTC_CCR);
176
Loc Hod0bcd822014-04-14 12:09:04 -0600177 ret = device_init_wakeup(&pdev->dev, 1);
178 if (ret) {
179 clk_disable_unprepare(pdata->clk);
180 return ret;
181 }
Loc Hof12d8692014-06-06 14:35:42 -0700182
Loc Hof12d8692014-06-06 14:35:42 -0700183 /* HW does not support update faster than 1 seconds */
184 pdata->rtc->uie_unsupported = 1;
Alexandre Bellonia652e002019-03-20 13:32:27 +0100185 pdata->rtc->ops = &xgene_rtc_ops;
Alexandre Belloni490595a2019-03-20 13:32:28 +0100186 pdata->rtc->range_max = U32_MAX;
Alexandre Bellonia652e002019-03-20 13:32:27 +0100187
Bartosz Golaszewskifdcfd852020-11-09 17:34:08 +0100188 ret = devm_rtc_register_device(pdata->rtc);
Alexandre Bellonia652e002019-03-20 13:32:27 +0100189 if (ret) {
190 clk_disable_unprepare(pdata->clk);
191 return ret;
192 }
Loc Hof12d8692014-06-06 14:35:42 -0700193
194 return 0;
195}
196
197static int xgene_rtc_remove(struct platform_device *pdev)
198{
199 struct xgene_rtc_dev *pdata = platform_get_drvdata(pdev);
200
201 xgene_rtc_alarm_irq_enable(&pdev->dev, 0);
202 device_init_wakeup(&pdev->dev, 0);
203 clk_disable_unprepare(pdata->clk);
204 return 0;
205}
206
Arnd Bergmann573e2bf2017-11-08 13:08:10 +0100207static int __maybe_unused xgene_rtc_suspend(struct device *dev)
Loc Hof12d8692014-06-06 14:35:42 -0700208{
209 struct platform_device *pdev = to_platform_device(dev);
210 struct xgene_rtc_dev *pdata = platform_get_drvdata(pdev);
211 int irq;
212
213 irq = platform_get_irq(pdev, 0);
Loc Hod0bcd822014-04-14 12:09:04 -0600214
215 /*
216 * If this RTC alarm will be used for waking the system up,
217 * don't disable it of course. Else we just disable the alarm
218 * and await suspension.
219 */
Loc Hof12d8692014-06-06 14:35:42 -0700220 if (device_may_wakeup(&pdev->dev)) {
221 if (!enable_irq_wake(irq))
222 pdata->irq_wake = 1;
223 } else {
Loc Hod0bcd822014-04-14 12:09:04 -0600224 pdata->irq_enabled = xgene_rtc_alarm_irq_enabled(dev);
Loc Hof12d8692014-06-06 14:35:42 -0700225 xgene_rtc_alarm_irq_enable(dev, 0);
Loc Hod0bcd822014-04-14 12:09:04 -0600226 clk_disable_unprepare(pdata->clk);
Loc Hof12d8692014-06-06 14:35:42 -0700227 }
Loc Hof12d8692014-06-06 14:35:42 -0700228 return 0;
229}
230
Arnd Bergmann573e2bf2017-11-08 13:08:10 +0100231static int __maybe_unused xgene_rtc_resume(struct device *dev)
Loc Hof12d8692014-06-06 14:35:42 -0700232{
233 struct platform_device *pdev = to_platform_device(dev);
234 struct xgene_rtc_dev *pdata = platform_get_drvdata(pdev);
235 int irq;
Loc Hod0bcd822014-04-14 12:09:04 -0600236 int rc;
Loc Hof12d8692014-06-06 14:35:42 -0700237
238 irq = platform_get_irq(pdev, 0);
Loc Hod0bcd822014-04-14 12:09:04 -0600239
Loc Hof12d8692014-06-06 14:35:42 -0700240 if (device_may_wakeup(&pdev->dev)) {
241 if (pdata->irq_wake) {
242 disable_irq_wake(irq);
243 pdata->irq_wake = 0;
244 }
245 } else {
Loc Hod0bcd822014-04-14 12:09:04 -0600246 rc = clk_prepare_enable(pdata->clk);
247 if (rc) {
248 dev_err(dev, "Unable to enable clock error %d\n", rc);
249 return rc;
250 }
251 xgene_rtc_alarm_irq_enable(dev, pdata->irq_enabled);
Loc Hof12d8692014-06-06 14:35:42 -0700252 }
253
254 return 0;
255}
Loc Hof12d8692014-06-06 14:35:42 -0700256
257static SIMPLE_DEV_PM_OPS(xgene_rtc_pm_ops, xgene_rtc_suspend, xgene_rtc_resume);
258
259#ifdef CONFIG_OF
260static const struct of_device_id xgene_rtc_of_match[] = {
261 {.compatible = "apm,xgene-rtc" },
262 { }
263};
264MODULE_DEVICE_TABLE(of, xgene_rtc_of_match);
265#endif
266
267static struct platform_driver xgene_rtc_driver = {
268 .probe = xgene_rtc_probe,
269 .remove = xgene_rtc_remove,
270 .driver = {
Loc Hof12d8692014-06-06 14:35:42 -0700271 .name = "xgene-rtc",
272 .pm = &xgene_rtc_pm_ops,
273 .of_match_table = of_match_ptr(xgene_rtc_of_match),
274 },
275};
276
277module_platform_driver(xgene_rtc_driver);
278
279MODULE_DESCRIPTION("APM X-Gene SoC RTC driver");
280MODULE_AUTHOR("Rameshwar Sahu <rsahu@apm.com>");
281MODULE_LICENSE("GPL");