blob: 3cf011e1205301d6123f1c237809237951369f66 [file] [log] [blame]
Fabio Estevam5874c7f2018-05-21 23:45:58 -03001// SPDX-License-Identifier: GPL-2.0+
2//
3// Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
Shawn Guo179a5022012-10-04 17:13:49 -07004
5#include <linux/init.h>
6#include <linux/io.h>
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/of.h>
10#include <linux/of_device.h>
11#include <linux/platform_device.h>
12#include <linux/rtc.h>
Sanchayan Maity7f899392014-12-10 15:54:17 -080013#include <linux/clk.h>
Frank Lid4828932015-05-27 00:25:57 +080014#include <linux/mfd/syscon.h>
15#include <linux/regmap.h>
16
17#define SNVS_LPREGISTER_OFFSET 0x34
Shawn Guo179a5022012-10-04 17:13:49 -070018
19/* These register offsets are relative to LP (Low Power) range */
20#define SNVS_LPCR 0x04
21#define SNVS_LPSR 0x18
22#define SNVS_LPSRTCMR 0x1c
23#define SNVS_LPSRTCLR 0x20
24#define SNVS_LPTAR 0x24
25#define SNVS_LPPGDR 0x30
26
27#define SNVS_LPCR_SRTC_ENV (1 << 0)
28#define SNVS_LPCR_LPTA_EN (1 << 1)
29#define SNVS_LPCR_LPWUI_EN (1 << 3)
30#define SNVS_LPSR_LPTA (1 << 0)
31
32#define SNVS_LPPGDR_INIT 0x41736166
33#define CNTR_TO_SECS_SH 15
34
35struct snvs_rtc_data {
36 struct rtc_device *rtc;
Frank Lid4828932015-05-27 00:25:57 +080037 struct regmap *regmap;
38 int offset;
Shawn Guo179a5022012-10-04 17:13:49 -070039 int irq;
Sanchayan Maity7f899392014-12-10 15:54:17 -080040 struct clk *clk;
Shawn Guo179a5022012-10-04 17:13:49 -070041};
42
Trent Piephocd7f3a22018-05-16 16:45:51 -070043/* Read 64 bit timer register, which could be in inconsistent state */
44static u64 rtc_read_lpsrt(struct snvs_rtc_data *data)
45{
46 u32 msb, lsb;
47
48 regmap_read(data->regmap, data->offset + SNVS_LPSRTCMR, &msb);
49 regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &lsb);
50 return (u64)msb << 32 | lsb;
51}
52
53/* Read the secure real time counter, taking care to deal with the cases of the
54 * counter updating while being read.
55 */
Frank Lid4828932015-05-27 00:25:57 +080056static u32 rtc_read_lp_counter(struct snvs_rtc_data *data)
Shawn Guo179a5022012-10-04 17:13:49 -070057{
58 u64 read1, read2;
Trent Piephocd7f3a22018-05-16 16:45:51 -070059 unsigned int timeout = 100;
Shawn Guo179a5022012-10-04 17:13:49 -070060
Trent Piephocd7f3a22018-05-16 16:45:51 -070061 /* As expected, the registers might update between the read of the LSB
62 * reg and the MSB reg. It's also possible that one register might be
63 * in partially modified state as well.
64 */
65 read1 = rtc_read_lpsrt(data);
Shawn Guo179a5022012-10-04 17:13:49 -070066 do {
Trent Piephocd7f3a22018-05-16 16:45:51 -070067 read2 = read1;
68 read1 = rtc_read_lpsrt(data);
69 } while (read1 != read2 && --timeout);
70 if (!timeout)
71 dev_err(&data->rtc->dev, "Timeout trying to get valid LPSRT Counter read\n");
Shawn Guo179a5022012-10-04 17:13:49 -070072
73 /* Convert 47-bit counter to 32-bit raw second count */
74 return (u32) (read1 >> CNTR_TO_SECS_SH);
75}
76
Trent Piephocd7f3a22018-05-16 16:45:51 -070077/* Just read the lsb from the counter, dealing with inconsistent state */
78static int rtc_read_lp_counter_lsb(struct snvs_rtc_data *data, u32 *lsb)
Shawn Guo179a5022012-10-04 17:13:49 -070079{
Trent Piephocd7f3a22018-05-16 16:45:51 -070080 u32 count1, count2;
81 unsigned int timeout = 100;
Shawn Guo179a5022012-10-04 17:13:49 -070082
Trent Piephocd7f3a22018-05-16 16:45:51 -070083 regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count1);
84 do {
85 count2 = count1;
86 regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count1);
87 } while (count1 != count2 && --timeout);
88 if (!timeout) {
89 dev_err(&data->rtc->dev, "Timeout trying to get valid LPSRT Counter read\n");
90 return -ETIMEDOUT;
Shawn Guo179a5022012-10-04 17:13:49 -070091 }
Trent Piephocd7f3a22018-05-16 16:45:51 -070092
93 *lsb = count1;
94 return 0;
95}
96
97static int rtc_write_sync_lp(struct snvs_rtc_data *data)
98{
99 u32 count1, count2;
100 u32 elapsed;
101 unsigned int timeout = 1000;
102 int ret;
103
104 ret = rtc_read_lp_counter_lsb(data, &count1);
105 if (ret)
106 return ret;
107
108 /* Wait for 3 CKIL cycles, about 61.0-91.5 µs */
109 do {
110 ret = rtc_read_lp_counter_lsb(data, &count2);
111 if (ret)
112 return ret;
113 elapsed = count2 - count1; /* wrap around _is_ handled! */
114 } while (elapsed < 3 && --timeout);
115 if (!timeout) {
116 dev_err(&data->rtc->dev, "Timeout waiting for LPSRT Counter to change\n");
117 return -ETIMEDOUT;
118 }
119 return 0;
Shawn Guo179a5022012-10-04 17:13:49 -0700120}
121
122static int snvs_rtc_enable(struct snvs_rtc_data *data, bool enable)
123{
Shawn Guo179a5022012-10-04 17:13:49 -0700124 int timeout = 1000;
125 u32 lpcr;
126
Frank Lid4828932015-05-27 00:25:57 +0800127 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_SRTC_ENV,
128 enable ? SNVS_LPCR_SRTC_ENV : 0);
Shawn Guo179a5022012-10-04 17:13:49 -0700129
130 while (--timeout) {
Frank Lid4828932015-05-27 00:25:57 +0800131 regmap_read(data->regmap, data->offset + SNVS_LPCR, &lpcr);
Shawn Guo179a5022012-10-04 17:13:49 -0700132
133 if (enable) {
134 if (lpcr & SNVS_LPCR_SRTC_ENV)
135 break;
136 } else {
137 if (!(lpcr & SNVS_LPCR_SRTC_ENV))
138 break;
139 }
140 }
141
142 if (!timeout)
143 return -ETIMEDOUT;
144
145 return 0;
146}
147
148static int snvs_rtc_read_time(struct device *dev, struct rtc_time *tm)
149{
150 struct snvs_rtc_data *data = dev_get_drvdata(dev);
Frank Lid4828932015-05-27 00:25:57 +0800151 unsigned long time = rtc_read_lp_counter(data);
Shawn Guo179a5022012-10-04 17:13:49 -0700152
153 rtc_time_to_tm(time, tm);
154
155 return 0;
156}
157
158static int snvs_rtc_set_time(struct device *dev, struct rtc_time *tm)
159{
160 struct snvs_rtc_data *data = dev_get_drvdata(dev);
161 unsigned long time;
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100162 int ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700163
164 rtc_tm_to_time(tm, &time);
165
166 /* Disable RTC first */
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100167 ret = snvs_rtc_enable(data, false);
168 if (ret)
169 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700170
171 /* Write 32-bit time to 47-bit timer, leaving 15 LSBs blank */
Frank Lid4828932015-05-27 00:25:57 +0800172 regmap_write(data->regmap, data->offset + SNVS_LPSRTCLR, time << CNTR_TO_SECS_SH);
173 regmap_write(data->regmap, data->offset + SNVS_LPSRTCMR, time >> (32 - CNTR_TO_SECS_SH));
Shawn Guo179a5022012-10-04 17:13:49 -0700174
175 /* Enable RTC again */
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100176 ret = snvs_rtc_enable(data, true);
Shawn Guo179a5022012-10-04 17:13:49 -0700177
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100178 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700179}
180
181static int snvs_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
182{
183 struct snvs_rtc_data *data = dev_get_drvdata(dev);
184 u32 lptar, lpsr;
185
Frank Lid4828932015-05-27 00:25:57 +0800186 regmap_read(data->regmap, data->offset + SNVS_LPTAR, &lptar);
Shawn Guo179a5022012-10-04 17:13:49 -0700187 rtc_time_to_tm(lptar, &alrm->time);
188
Frank Lid4828932015-05-27 00:25:57 +0800189 regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700190 alrm->pending = (lpsr & SNVS_LPSR_LPTA) ? 1 : 0;
191
192 return 0;
193}
194
195static int snvs_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)
196{
197 struct snvs_rtc_data *data = dev_get_drvdata(dev);
Shawn Guo179a5022012-10-04 17:13:49 -0700198
Frank Lid4828932015-05-27 00:25:57 +0800199 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR,
200 (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN),
201 enable ? (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN) : 0);
Shawn Guo179a5022012-10-04 17:13:49 -0700202
Trent Piephocd7f3a22018-05-16 16:45:51 -0700203 return rtc_write_sync_lp(data);
Shawn Guo179a5022012-10-04 17:13:49 -0700204}
205
206static int snvs_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
207{
208 struct snvs_rtc_data *data = dev_get_drvdata(dev);
209 struct rtc_time *alrm_tm = &alrm->time;
210 unsigned long time;
Trent Piephocd7f3a22018-05-16 16:45:51 -0700211 int ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700212
213 rtc_tm_to_time(alrm_tm, &time);
214
Frank Lid4828932015-05-27 00:25:57 +0800215 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_LPTA_EN, 0);
Trent Piephocd7f3a22018-05-16 16:45:51 -0700216 ret = rtc_write_sync_lp(data);
217 if (ret)
218 return ret;
Frank Lid4828932015-05-27 00:25:57 +0800219 regmap_write(data->regmap, data->offset + SNVS_LPTAR, time);
Shawn Guo179a5022012-10-04 17:13:49 -0700220
221 /* Clear alarm interrupt status bit */
Frank Lid4828932015-05-27 00:25:57 +0800222 regmap_write(data->regmap, data->offset + SNVS_LPSR, SNVS_LPSR_LPTA);
Shawn Guo179a5022012-10-04 17:13:49 -0700223
224 return snvs_rtc_alarm_irq_enable(dev, alrm->enabled);
225}
226
227static const struct rtc_class_ops snvs_rtc_ops = {
228 .read_time = snvs_rtc_read_time,
229 .set_time = snvs_rtc_set_time,
230 .read_alarm = snvs_rtc_read_alarm,
231 .set_alarm = snvs_rtc_set_alarm,
232 .alarm_irq_enable = snvs_rtc_alarm_irq_enable,
233};
234
235static irqreturn_t snvs_rtc_irq_handler(int irq, void *dev_id)
236{
237 struct device *dev = dev_id;
238 struct snvs_rtc_data *data = dev_get_drvdata(dev);
239 u32 lpsr;
240 u32 events = 0;
241
Frank Lid4828932015-05-27 00:25:57 +0800242 regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700243
244 if (lpsr & SNVS_LPSR_LPTA) {
245 events |= (RTC_AF | RTC_IRQF);
246
247 /* RTC alarm should be one-shot */
248 snvs_rtc_alarm_irq_enable(dev, 0);
249
250 rtc_update_irq(data->rtc, 1, events);
251 }
252
253 /* clear interrupt status */
Frank Lid4828932015-05-27 00:25:57 +0800254 regmap_write(data->regmap, data->offset + SNVS_LPSR, lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700255
256 return events ? IRQ_HANDLED : IRQ_NONE;
257}
258
Frank Lid4828932015-05-27 00:25:57 +0800259static const struct regmap_config snvs_rtc_config = {
260 .reg_bits = 32,
261 .val_bits = 32,
262 .reg_stride = 4,
263};
264
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800265static int snvs_rtc_probe(struct platform_device *pdev)
Shawn Guo179a5022012-10-04 17:13:49 -0700266{
267 struct snvs_rtc_data *data;
268 struct resource *res;
269 int ret;
Frank Lid4828932015-05-27 00:25:57 +0800270 void __iomem *mmio;
Shawn Guo179a5022012-10-04 17:13:49 -0700271
272 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
273 if (!data)
274 return -ENOMEM;
275
Anson Huang607f9572019-07-16 15:18:58 +0800276 data->rtc = devm_rtc_allocate_device(&pdev->dev);
277 if (IS_ERR(data->rtc))
278 return PTR_ERR(data->rtc);
279
Frank Lid4828932015-05-27 00:25:57 +0800280 data->regmap = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, "regmap");
281
282 if (IS_ERR(data->regmap)) {
283 dev_warn(&pdev->dev, "snvs rtc: you use old dts file, please update it\n");
284 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
285
286 mmio = devm_ioremap_resource(&pdev->dev, res);
287 if (IS_ERR(mmio))
288 return PTR_ERR(mmio);
289
290 data->regmap = devm_regmap_init_mmio(&pdev->dev, mmio, &snvs_rtc_config);
291 } else {
292 data->offset = SNVS_LPREGISTER_OFFSET;
293 of_property_read_u32(pdev->dev.of_node, "offset", &data->offset);
294 }
295
Pan Bian75892902017-04-23 13:43:24 +0800296 if (IS_ERR(data->regmap)) {
Frank Lid4828932015-05-27 00:25:57 +0800297 dev_err(&pdev->dev, "Can't find snvs syscon\n");
298 return -ENODEV;
299 }
Shawn Guo179a5022012-10-04 17:13:49 -0700300
301 data->irq = platform_get_irq(pdev, 0);
302 if (data->irq < 0)
303 return data->irq;
304
Sanchayan Maity7f899392014-12-10 15:54:17 -0800305 data->clk = devm_clk_get(&pdev->dev, "snvs-rtc");
306 if (IS_ERR(data->clk)) {
307 data->clk = NULL;
308 } else {
309 ret = clk_prepare_enable(data->clk);
310 if (ret) {
311 dev_err(&pdev->dev,
312 "Could not prepare or enable the snvs clock\n");
313 return ret;
314 }
315 }
316
Shawn Guo179a5022012-10-04 17:13:49 -0700317 platform_set_drvdata(pdev, data);
318
Shawn Guo179a5022012-10-04 17:13:49 -0700319 /* Initialize glitch detect */
Frank Lid4828932015-05-27 00:25:57 +0800320 regmap_write(data->regmap, data->offset + SNVS_LPPGDR, SNVS_LPPGDR_INIT);
Shawn Guo179a5022012-10-04 17:13:49 -0700321
322 /* Clear interrupt status */
Frank Lid4828932015-05-27 00:25:57 +0800323 regmap_write(data->regmap, data->offset + SNVS_LPSR, 0xffffffff);
Shawn Guo179a5022012-10-04 17:13:49 -0700324
325 /* Enable RTC */
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100326 ret = snvs_rtc_enable(data, true);
327 if (ret) {
328 dev_err(&pdev->dev, "failed to enable rtc %d\n", ret);
329 goto error_rtc_device_register;
330 }
Shawn Guo179a5022012-10-04 17:13:49 -0700331
332 device_init_wakeup(&pdev->dev, true);
333
334 ret = devm_request_irq(&pdev->dev, data->irq, snvs_rtc_irq_handler,
335 IRQF_SHARED, "rtc alarm", &pdev->dev);
336 if (ret) {
337 dev_err(&pdev->dev, "failed to request irq %d: %d\n",
338 data->irq, ret);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800339 goto error_rtc_device_register;
Shawn Guo179a5022012-10-04 17:13:49 -0700340 }
341
Anson Huang607f9572019-07-16 15:18:58 +0800342 data->rtc->ops = &snvs_rtc_ops;
343 ret = rtc_register_device(data->rtc);
344 if (ret) {
Shawn Guo179a5022012-10-04 17:13:49 -0700345 dev_err(&pdev->dev, "failed to register rtc: %d\n", ret);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800346 goto error_rtc_device_register;
Shawn Guo179a5022012-10-04 17:13:49 -0700347 }
348
349 return 0;
Sanchayan Maity7f899392014-12-10 15:54:17 -0800350
351error_rtc_device_register:
352 if (data->clk)
353 clk_disable_unprepare(data->clk);
354
355 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700356}
357
Shawn Guo179a5022012-10-04 17:13:49 -0700358#ifdef CONFIG_PM_SLEEP
359static int snvs_rtc_suspend(struct device *dev)
360{
361 struct snvs_rtc_data *data = dev_get_drvdata(dev);
362
363 if (device_may_wakeup(dev))
Stefan Agnera3502592016-04-20 16:09:57 -0700364 return enable_irq_wake(data->irq);
Shawn Guo179a5022012-10-04 17:13:49 -0700365
Stefan Agner119434f2015-05-21 17:29:35 +0200366 return 0;
367}
368
369static int snvs_rtc_suspend_noirq(struct device *dev)
370{
371 struct snvs_rtc_data *data = dev_get_drvdata(dev);
372
Sanchayan Maity7f899392014-12-10 15:54:17 -0800373 if (data->clk)
374 clk_disable_unprepare(data->clk);
375
Shawn Guo179a5022012-10-04 17:13:49 -0700376 return 0;
377}
378
379static int snvs_rtc_resume(struct device *dev)
380{
381 struct snvs_rtc_data *data = dev_get_drvdata(dev);
382
383 if (device_may_wakeup(dev))
Stefan Agner119434f2015-05-21 17:29:35 +0200384 return disable_irq_wake(data->irq);
Shawn Guo179a5022012-10-04 17:13:49 -0700385
Stefan Agner119434f2015-05-21 17:29:35 +0200386 return 0;
387}
388
389static int snvs_rtc_resume_noirq(struct device *dev)
390{
391 struct snvs_rtc_data *data = dev_get_drvdata(dev);
392
393 if (data->clk)
394 return clk_prepare_enable(data->clk);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800395
Shawn Guo179a5022012-10-04 17:13:49 -0700396 return 0;
397}
Shawn Guo179a5022012-10-04 17:13:49 -0700398
Sanchayan Maity7654e9d2014-12-10 15:54:20 -0800399static const struct dev_pm_ops snvs_rtc_pm_ops = {
Stefan Agner119434f2015-05-21 17:29:35 +0200400 .suspend = snvs_rtc_suspend,
401 .suspend_noirq = snvs_rtc_suspend_noirq,
402 .resume = snvs_rtc_resume,
403 .resume_noirq = snvs_rtc_resume_noirq,
Sanchayan Maity7654e9d2014-12-10 15:54:20 -0800404};
Shawn Guo179a5022012-10-04 17:13:49 -0700405
Guenter Roeck88221c32014-12-12 16:54:12 -0800406#define SNVS_RTC_PM_OPS (&snvs_rtc_pm_ops)
407
408#else
409
410#define SNVS_RTC_PM_OPS NULL
411
412#endif
413
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800414static const struct of_device_id snvs_dt_ids[] = {
Shawn Guo179a5022012-10-04 17:13:49 -0700415 { .compatible = "fsl,sec-v4.0-mon-rtc-lp", },
416 { /* sentinel */ }
417};
418MODULE_DEVICE_TABLE(of, snvs_dt_ids);
419
420static struct platform_driver snvs_rtc_driver = {
421 .driver = {
422 .name = "snvs_rtc",
Guenter Roeck88221c32014-12-12 16:54:12 -0800423 .pm = SNVS_RTC_PM_OPS,
Sachin Kamatc39b3712013-11-12 15:10:57 -0800424 .of_match_table = snvs_dt_ids,
Shawn Guo179a5022012-10-04 17:13:49 -0700425 },
426 .probe = snvs_rtc_probe,
Shawn Guo179a5022012-10-04 17:13:49 -0700427};
428module_platform_driver(snvs_rtc_driver);
429
430MODULE_AUTHOR("Freescale Semiconductor, Inc.");
431MODULE_DESCRIPTION("Freescale SNVS RTC Driver");
432MODULE_LICENSE("GPL");