blob: 71eee39520f0b68d3bf55da16693189599466dc3 [file] [log] [blame]
Shawn Guo179a5022012-10-04 17:13:49 -07001/*
2 * Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
3 *
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
7 *
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
10 */
11
12#include <linux/init.h>
13#include <linux/io.h>
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/of.h>
17#include <linux/of_device.h>
18#include <linux/platform_device.h>
19#include <linux/rtc.h>
Sanchayan Maity7f899392014-12-10 15:54:17 -080020#include <linux/clk.h>
Frank Lid4828932015-05-27 00:25:57 +080021#include <linux/mfd/syscon.h>
22#include <linux/regmap.h>
23
24#define SNVS_LPREGISTER_OFFSET 0x34
Shawn Guo179a5022012-10-04 17:13:49 -070025
26/* These register offsets are relative to LP (Low Power) range */
27#define SNVS_LPCR 0x04
28#define SNVS_LPSR 0x18
29#define SNVS_LPSRTCMR 0x1c
30#define SNVS_LPSRTCLR 0x20
31#define SNVS_LPTAR 0x24
32#define SNVS_LPPGDR 0x30
33
34#define SNVS_LPCR_SRTC_ENV (1 << 0)
35#define SNVS_LPCR_LPTA_EN (1 << 1)
36#define SNVS_LPCR_LPWUI_EN (1 << 3)
37#define SNVS_LPSR_LPTA (1 << 0)
38
39#define SNVS_LPPGDR_INIT 0x41736166
40#define CNTR_TO_SECS_SH 15
41
42struct snvs_rtc_data {
43 struct rtc_device *rtc;
Frank Lid4828932015-05-27 00:25:57 +080044 struct regmap *regmap;
45 int offset;
Shawn Guo179a5022012-10-04 17:13:49 -070046 int irq;
Sanchayan Maity7f899392014-12-10 15:54:17 -080047 struct clk *clk;
Shawn Guo179a5022012-10-04 17:13:49 -070048};
49
Trent Piepho1228a332018-05-16 16:45:51 -070050/* Read 64 bit timer register, which could be in inconsistent state */
51static u64 rtc_read_lpsrt(struct snvs_rtc_data *data)
52{
53 u32 msb, lsb;
54
55 regmap_read(data->regmap, data->offset + SNVS_LPSRTCMR, &msb);
56 regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &lsb);
57 return (u64)msb << 32 | lsb;
58}
59
60/* Read the secure real time counter, taking care to deal with the cases of the
61 * counter updating while being read.
62 */
Frank Lid4828932015-05-27 00:25:57 +080063static u32 rtc_read_lp_counter(struct snvs_rtc_data *data)
Shawn Guo179a5022012-10-04 17:13:49 -070064{
65 u64 read1, read2;
Trent Piepho1228a332018-05-16 16:45:51 -070066 unsigned int timeout = 100;
Shawn Guo179a5022012-10-04 17:13:49 -070067
Trent Piepho1228a332018-05-16 16:45:51 -070068 /* As expected, the registers might update between the read of the LSB
69 * reg and the MSB reg. It's also possible that one register might be
70 * in partially modified state as well.
71 */
72 read1 = rtc_read_lpsrt(data);
Shawn Guo179a5022012-10-04 17:13:49 -070073 do {
Trent Piepho1228a332018-05-16 16:45:51 -070074 read2 = read1;
75 read1 = rtc_read_lpsrt(data);
76 } while (read1 != read2 && --timeout);
77 if (!timeout)
78 dev_err(&data->rtc->dev, "Timeout trying to get valid LPSRT Counter read\n");
Shawn Guo179a5022012-10-04 17:13:49 -070079
80 /* Convert 47-bit counter to 32-bit raw second count */
81 return (u32) (read1 >> CNTR_TO_SECS_SH);
82}
83
Trent Piepho1228a332018-05-16 16:45:51 -070084/* Just read the lsb from the counter, dealing with inconsistent state */
85static int rtc_read_lp_counter_lsb(struct snvs_rtc_data *data, u32 *lsb)
Shawn Guo179a5022012-10-04 17:13:49 -070086{
Trent Piepho1228a332018-05-16 16:45:51 -070087 u32 count1, count2;
88 unsigned int timeout = 100;
Shawn Guo179a5022012-10-04 17:13:49 -070089
Trent Piepho1228a332018-05-16 16:45:51 -070090 regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count1);
91 do {
92 count2 = count1;
93 regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count1);
94 } while (count1 != count2 && --timeout);
95 if (!timeout) {
96 dev_err(&data->rtc->dev, "Timeout trying to get valid LPSRT Counter read\n");
97 return -ETIMEDOUT;
Shawn Guo179a5022012-10-04 17:13:49 -070098 }
Trent Piepho1228a332018-05-16 16:45:51 -070099
100 *lsb = count1;
101 return 0;
102}
103
104static int rtc_write_sync_lp(struct snvs_rtc_data *data)
105{
106 u32 count1, count2;
107 u32 elapsed;
108 unsigned int timeout = 1000;
109 int ret;
110
111 ret = rtc_read_lp_counter_lsb(data, &count1);
112 if (ret)
113 return ret;
114
115 /* Wait for 3 CKIL cycles, about 61.0-91.5 µs */
116 do {
117 ret = rtc_read_lp_counter_lsb(data, &count2);
118 if (ret)
119 return ret;
120 elapsed = count2 - count1; /* wrap around _is_ handled! */
121 } while (elapsed < 3 && --timeout);
122 if (!timeout) {
123 dev_err(&data->rtc->dev, "Timeout waiting for LPSRT Counter to change\n");
124 return -ETIMEDOUT;
125 }
126 return 0;
Shawn Guo179a5022012-10-04 17:13:49 -0700127}
128
129static int snvs_rtc_enable(struct snvs_rtc_data *data, bool enable)
130{
Shawn Guo179a5022012-10-04 17:13:49 -0700131 int timeout = 1000;
132 u32 lpcr;
133
Frank Lid4828932015-05-27 00:25:57 +0800134 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_SRTC_ENV,
135 enable ? SNVS_LPCR_SRTC_ENV : 0);
Shawn Guo179a5022012-10-04 17:13:49 -0700136
137 while (--timeout) {
Frank Lid4828932015-05-27 00:25:57 +0800138 regmap_read(data->regmap, data->offset + SNVS_LPCR, &lpcr);
Shawn Guo179a5022012-10-04 17:13:49 -0700139
140 if (enable) {
141 if (lpcr & SNVS_LPCR_SRTC_ENV)
142 break;
143 } else {
144 if (!(lpcr & SNVS_LPCR_SRTC_ENV))
145 break;
146 }
147 }
148
149 if (!timeout)
150 return -ETIMEDOUT;
151
152 return 0;
153}
154
155static int snvs_rtc_read_time(struct device *dev, struct rtc_time *tm)
156{
157 struct snvs_rtc_data *data = dev_get_drvdata(dev);
Frank Lid4828932015-05-27 00:25:57 +0800158 unsigned long time = rtc_read_lp_counter(data);
Shawn Guo179a5022012-10-04 17:13:49 -0700159
160 rtc_time_to_tm(time, tm);
161
162 return 0;
163}
164
165static int snvs_rtc_set_time(struct device *dev, struct rtc_time *tm)
166{
167 struct snvs_rtc_data *data = dev_get_drvdata(dev);
168 unsigned long time;
Bryan O'Donoghue36ce9312018-03-28 20:14:05 +0100169 int ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700170
171 rtc_tm_to_time(tm, &time);
172
173 /* Disable RTC first */
Bryan O'Donoghue36ce9312018-03-28 20:14:05 +0100174 ret = snvs_rtc_enable(data, false);
175 if (ret)
176 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700177
178 /* Write 32-bit time to 47-bit timer, leaving 15 LSBs blank */
Frank Lid4828932015-05-27 00:25:57 +0800179 regmap_write(data->regmap, data->offset + SNVS_LPSRTCLR, time << CNTR_TO_SECS_SH);
180 regmap_write(data->regmap, data->offset + SNVS_LPSRTCMR, time >> (32 - CNTR_TO_SECS_SH));
Shawn Guo179a5022012-10-04 17:13:49 -0700181
182 /* Enable RTC again */
Bryan O'Donoghue36ce9312018-03-28 20:14:05 +0100183 ret = snvs_rtc_enable(data, true);
Shawn Guo179a5022012-10-04 17:13:49 -0700184
Bryan O'Donoghue36ce9312018-03-28 20:14:05 +0100185 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700186}
187
188static int snvs_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
189{
190 struct snvs_rtc_data *data = dev_get_drvdata(dev);
191 u32 lptar, lpsr;
192
Frank Lid4828932015-05-27 00:25:57 +0800193 regmap_read(data->regmap, data->offset + SNVS_LPTAR, &lptar);
Shawn Guo179a5022012-10-04 17:13:49 -0700194 rtc_time_to_tm(lptar, &alrm->time);
195
Frank Lid4828932015-05-27 00:25:57 +0800196 regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700197 alrm->pending = (lpsr & SNVS_LPSR_LPTA) ? 1 : 0;
198
199 return 0;
200}
201
202static int snvs_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)
203{
204 struct snvs_rtc_data *data = dev_get_drvdata(dev);
Shawn Guo179a5022012-10-04 17:13:49 -0700205
Frank Lid4828932015-05-27 00:25:57 +0800206 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR,
207 (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN),
208 enable ? (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN) : 0);
Shawn Guo179a5022012-10-04 17:13:49 -0700209
Trent Piepho1228a332018-05-16 16:45:51 -0700210 return rtc_write_sync_lp(data);
Shawn Guo179a5022012-10-04 17:13:49 -0700211}
212
213static int snvs_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
214{
215 struct snvs_rtc_data *data = dev_get_drvdata(dev);
216 struct rtc_time *alrm_tm = &alrm->time;
217 unsigned long time;
Trent Piepho1228a332018-05-16 16:45:51 -0700218 int ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700219
220 rtc_tm_to_time(alrm_tm, &time);
221
Frank Lid4828932015-05-27 00:25:57 +0800222 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_LPTA_EN, 0);
Trent Piepho1228a332018-05-16 16:45:51 -0700223 ret = rtc_write_sync_lp(data);
224 if (ret)
225 return ret;
Frank Lid4828932015-05-27 00:25:57 +0800226 regmap_write(data->regmap, data->offset + SNVS_LPTAR, time);
Shawn Guo179a5022012-10-04 17:13:49 -0700227
228 /* Clear alarm interrupt status bit */
Frank Lid4828932015-05-27 00:25:57 +0800229 regmap_write(data->regmap, data->offset + SNVS_LPSR, SNVS_LPSR_LPTA);
Shawn Guo179a5022012-10-04 17:13:49 -0700230
231 return snvs_rtc_alarm_irq_enable(dev, alrm->enabled);
232}
233
234static const struct rtc_class_ops snvs_rtc_ops = {
235 .read_time = snvs_rtc_read_time,
236 .set_time = snvs_rtc_set_time,
237 .read_alarm = snvs_rtc_read_alarm,
238 .set_alarm = snvs_rtc_set_alarm,
239 .alarm_irq_enable = snvs_rtc_alarm_irq_enable,
240};
241
242static irqreturn_t snvs_rtc_irq_handler(int irq, void *dev_id)
243{
244 struct device *dev = dev_id;
245 struct snvs_rtc_data *data = dev_get_drvdata(dev);
246 u32 lpsr;
247 u32 events = 0;
248
Frank Lid4828932015-05-27 00:25:57 +0800249 regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700250
251 if (lpsr & SNVS_LPSR_LPTA) {
252 events |= (RTC_AF | RTC_IRQF);
253
254 /* RTC alarm should be one-shot */
255 snvs_rtc_alarm_irq_enable(dev, 0);
256
257 rtc_update_irq(data->rtc, 1, events);
258 }
259
260 /* clear interrupt status */
Frank Lid4828932015-05-27 00:25:57 +0800261 regmap_write(data->regmap, data->offset + SNVS_LPSR, lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700262
263 return events ? IRQ_HANDLED : IRQ_NONE;
264}
265
Frank Lid4828932015-05-27 00:25:57 +0800266static const struct regmap_config snvs_rtc_config = {
267 .reg_bits = 32,
268 .val_bits = 32,
269 .reg_stride = 4,
270};
271
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800272static int snvs_rtc_probe(struct platform_device *pdev)
Shawn Guo179a5022012-10-04 17:13:49 -0700273{
274 struct snvs_rtc_data *data;
275 struct resource *res;
276 int ret;
Frank Lid4828932015-05-27 00:25:57 +0800277 void __iomem *mmio;
Shawn Guo179a5022012-10-04 17:13:49 -0700278
279 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
280 if (!data)
281 return -ENOMEM;
282
Frank Lid4828932015-05-27 00:25:57 +0800283 data->regmap = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, "regmap");
284
285 if (IS_ERR(data->regmap)) {
286 dev_warn(&pdev->dev, "snvs rtc: you use old dts file, please update it\n");
287 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
288
289 mmio = devm_ioremap_resource(&pdev->dev, res);
290 if (IS_ERR(mmio))
291 return PTR_ERR(mmio);
292
293 data->regmap = devm_regmap_init_mmio(&pdev->dev, mmio, &snvs_rtc_config);
294 } else {
295 data->offset = SNVS_LPREGISTER_OFFSET;
296 of_property_read_u32(pdev->dev.of_node, "offset", &data->offset);
297 }
298
Pan Biand36d6e42017-04-23 13:43:24 +0800299 if (IS_ERR(data->regmap)) {
Frank Lid4828932015-05-27 00:25:57 +0800300 dev_err(&pdev->dev, "Can't find snvs syscon\n");
301 return -ENODEV;
302 }
Shawn Guo179a5022012-10-04 17:13:49 -0700303
304 data->irq = platform_get_irq(pdev, 0);
305 if (data->irq < 0)
306 return data->irq;
307
Sanchayan Maity7f899392014-12-10 15:54:17 -0800308 data->clk = devm_clk_get(&pdev->dev, "snvs-rtc");
309 if (IS_ERR(data->clk)) {
310 data->clk = NULL;
311 } else {
312 ret = clk_prepare_enable(data->clk);
313 if (ret) {
314 dev_err(&pdev->dev,
315 "Could not prepare or enable the snvs clock\n");
316 return ret;
317 }
318 }
319
Shawn Guo179a5022012-10-04 17:13:49 -0700320 platform_set_drvdata(pdev, data);
321
Shawn Guo179a5022012-10-04 17:13:49 -0700322 /* Initialize glitch detect */
Frank Lid4828932015-05-27 00:25:57 +0800323 regmap_write(data->regmap, data->offset + SNVS_LPPGDR, SNVS_LPPGDR_INIT);
Shawn Guo179a5022012-10-04 17:13:49 -0700324
325 /* Clear interrupt status */
Frank Lid4828932015-05-27 00:25:57 +0800326 regmap_write(data->regmap, data->offset + SNVS_LPSR, 0xffffffff);
Shawn Guo179a5022012-10-04 17:13:49 -0700327
328 /* Enable RTC */
Bryan O'Donoghue36ce9312018-03-28 20:14:05 +0100329 ret = snvs_rtc_enable(data, true);
330 if (ret) {
331 dev_err(&pdev->dev, "failed to enable rtc %d\n", ret);
332 goto error_rtc_device_register;
333 }
Shawn Guo179a5022012-10-04 17:13:49 -0700334
335 device_init_wakeup(&pdev->dev, true);
336
337 ret = devm_request_irq(&pdev->dev, data->irq, snvs_rtc_irq_handler,
338 IRQF_SHARED, "rtc alarm", &pdev->dev);
339 if (ret) {
340 dev_err(&pdev->dev, "failed to request irq %d: %d\n",
341 data->irq, ret);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800342 goto error_rtc_device_register;
Shawn Guo179a5022012-10-04 17:13:49 -0700343 }
344
Jingoo Han904784c2013-04-29 16:19:12 -0700345 data->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
Shawn Guo179a5022012-10-04 17:13:49 -0700346 &snvs_rtc_ops, THIS_MODULE);
347 if (IS_ERR(data->rtc)) {
348 ret = PTR_ERR(data->rtc);
349 dev_err(&pdev->dev, "failed to register rtc: %d\n", ret);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800350 goto error_rtc_device_register;
Shawn Guo179a5022012-10-04 17:13:49 -0700351 }
352
353 return 0;
Sanchayan Maity7f899392014-12-10 15:54:17 -0800354
355error_rtc_device_register:
356 if (data->clk)
357 clk_disable_unprepare(data->clk);
358
359 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700360}
361
Shawn Guo179a5022012-10-04 17:13:49 -0700362#ifdef CONFIG_PM_SLEEP
363static int snvs_rtc_suspend(struct device *dev)
364{
365 struct snvs_rtc_data *data = dev_get_drvdata(dev);
366
367 if (device_may_wakeup(dev))
Stefan Agnera3502592016-04-20 16:09:57 -0700368 return enable_irq_wake(data->irq);
Shawn Guo179a5022012-10-04 17:13:49 -0700369
Stefan Agner119434f2015-05-21 17:29:35 +0200370 return 0;
371}
372
373static int snvs_rtc_suspend_noirq(struct device *dev)
374{
375 struct snvs_rtc_data *data = dev_get_drvdata(dev);
376
Sanchayan Maity7f899392014-12-10 15:54:17 -0800377 if (data->clk)
378 clk_disable_unprepare(data->clk);
379
Shawn Guo179a5022012-10-04 17:13:49 -0700380 return 0;
381}
382
383static int snvs_rtc_resume(struct device *dev)
384{
385 struct snvs_rtc_data *data = dev_get_drvdata(dev);
386
387 if (device_may_wakeup(dev))
Stefan Agner119434f2015-05-21 17:29:35 +0200388 return disable_irq_wake(data->irq);
Shawn Guo179a5022012-10-04 17:13:49 -0700389
Stefan Agner119434f2015-05-21 17:29:35 +0200390 return 0;
391}
392
393static int snvs_rtc_resume_noirq(struct device *dev)
394{
395 struct snvs_rtc_data *data = dev_get_drvdata(dev);
396
397 if (data->clk)
398 return clk_prepare_enable(data->clk);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800399
Shawn Guo179a5022012-10-04 17:13:49 -0700400 return 0;
401}
Shawn Guo179a5022012-10-04 17:13:49 -0700402
Sanchayan Maity7654e9d2014-12-10 15:54:20 -0800403static const struct dev_pm_ops snvs_rtc_pm_ops = {
Stefan Agner119434f2015-05-21 17:29:35 +0200404 .suspend = snvs_rtc_suspend,
405 .suspend_noirq = snvs_rtc_suspend_noirq,
406 .resume = snvs_rtc_resume,
407 .resume_noirq = snvs_rtc_resume_noirq,
Sanchayan Maity7654e9d2014-12-10 15:54:20 -0800408};
Shawn Guo179a5022012-10-04 17:13:49 -0700409
Guenter Roeck88221c32014-12-12 16:54:12 -0800410#define SNVS_RTC_PM_OPS (&snvs_rtc_pm_ops)
411
412#else
413
414#define SNVS_RTC_PM_OPS NULL
415
416#endif
417
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800418static const struct of_device_id snvs_dt_ids[] = {
Shawn Guo179a5022012-10-04 17:13:49 -0700419 { .compatible = "fsl,sec-v4.0-mon-rtc-lp", },
420 { /* sentinel */ }
421};
422MODULE_DEVICE_TABLE(of, snvs_dt_ids);
423
424static struct platform_driver snvs_rtc_driver = {
425 .driver = {
426 .name = "snvs_rtc",
Guenter Roeck88221c32014-12-12 16:54:12 -0800427 .pm = SNVS_RTC_PM_OPS,
Sachin Kamatc39b3712013-11-12 15:10:57 -0800428 .of_match_table = snvs_dt_ids,
Shawn Guo179a5022012-10-04 17:13:49 -0700429 },
430 .probe = snvs_rtc_probe,
Shawn Guo179a5022012-10-04 17:13:49 -0700431};
432module_platform_driver(snvs_rtc_driver);
433
434MODULE_AUTHOR("Freescale Semiconductor, Inc.");
435MODULE_DESCRIPTION("Freescale SNVS RTC Driver");
436MODULE_LICENSE("GPL");