blob: bd929b0e7d7defdd94335cca248a8526ee24d1e0 [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>
Shawn Guo179a5022012-10-04 17:13:49 -070010#include <linux/platform_device.h>
Anson Huange7afddb2019-03-27 06:18:20 +000011#include <linux/pm_wakeirq.h>
Shawn Guo179a5022012-10-04 17:13:49 -070012#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);
Anson Huang4b957bd2020-05-22 10:19:56 +0800151 unsigned long time;
152 int ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700153
Xu Wang081e2502020-11-13 08:03:05 +0000154 ret = clk_enable(data->clk);
155 if (ret)
156 return ret;
Anson Huang4b957bd2020-05-22 10:19:56 +0800157
158 time = rtc_read_lp_counter(data);
Alexandre Bellonic59a9fc2019-08-28 22:50:56 +0200159 rtc_time64_to_tm(time, tm);
Shawn Guo179a5022012-10-04 17:13:49 -0700160
Xu Wang081e2502020-11-13 08:03:05 +0000161 clk_disable(data->clk);
Anson Huang4b957bd2020-05-22 10:19:56 +0800162
Shawn Guo179a5022012-10-04 17:13:49 -0700163 return 0;
164}
165
166static int snvs_rtc_set_time(struct device *dev, struct rtc_time *tm)
167{
168 struct snvs_rtc_data *data = dev_get_drvdata(dev);
Alexandre Bellonic59a9fc2019-08-28 22:50:56 +0200169 unsigned long time = rtc_tm_to_time64(tm);
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100170 int ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700171
Xu Wang081e2502020-11-13 08:03:05 +0000172 ret = clk_enable(data->clk);
173 if (ret)
174 return ret;
Anson Huang4b957bd2020-05-22 10:19:56 +0800175
Shawn Guo179a5022012-10-04 17:13:49 -0700176 /* Disable RTC first */
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100177 ret = snvs_rtc_enable(data, false);
178 if (ret)
179 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700180
181 /* Write 32-bit time to 47-bit timer, leaving 15 LSBs blank */
Frank Lid4828932015-05-27 00:25:57 +0800182 regmap_write(data->regmap, data->offset + SNVS_LPSRTCLR, time << CNTR_TO_SECS_SH);
183 regmap_write(data->regmap, data->offset + SNVS_LPSRTCMR, time >> (32 - CNTR_TO_SECS_SH));
Shawn Guo179a5022012-10-04 17:13:49 -0700184
185 /* Enable RTC again */
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100186 ret = snvs_rtc_enable(data, true);
Shawn Guo179a5022012-10-04 17:13:49 -0700187
Xu Wang081e2502020-11-13 08:03:05 +0000188 clk_disable(data->clk);
Anson Huang4b957bd2020-05-22 10:19:56 +0800189
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100190 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700191}
192
193static int snvs_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
194{
195 struct snvs_rtc_data *data = dev_get_drvdata(dev);
196 u32 lptar, lpsr;
Anson Huang4b957bd2020-05-22 10:19:56 +0800197 int ret;
198
Xu Wang081e2502020-11-13 08:03:05 +0000199 ret = clk_enable(data->clk);
200 if (ret)
201 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700202
Frank Lid4828932015-05-27 00:25:57 +0800203 regmap_read(data->regmap, data->offset + SNVS_LPTAR, &lptar);
Alexandre Bellonic59a9fc2019-08-28 22:50:56 +0200204 rtc_time64_to_tm(lptar, &alrm->time);
Shawn Guo179a5022012-10-04 17:13:49 -0700205
Frank Lid4828932015-05-27 00:25:57 +0800206 regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700207 alrm->pending = (lpsr & SNVS_LPSR_LPTA) ? 1 : 0;
208
Xu Wang081e2502020-11-13 08:03:05 +0000209 clk_disable(data->clk);
Anson Huang4b957bd2020-05-22 10:19:56 +0800210
Shawn Guo179a5022012-10-04 17:13:49 -0700211 return 0;
212}
213
214static int snvs_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)
215{
216 struct snvs_rtc_data *data = dev_get_drvdata(dev);
Anson Huang4b957bd2020-05-22 10:19:56 +0800217 int ret;
218
Xu Wang081e2502020-11-13 08:03:05 +0000219 ret = clk_enable(data->clk);
220 if (ret)
221 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700222
Frank Lid4828932015-05-27 00:25:57 +0800223 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR,
224 (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN),
225 enable ? (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN) : 0);
Shawn Guo179a5022012-10-04 17:13:49 -0700226
Anson Huang4b957bd2020-05-22 10:19:56 +0800227 ret = rtc_write_sync_lp(data);
228
Xu Wang081e2502020-11-13 08:03:05 +0000229 clk_disable(data->clk);
Anson Huang4b957bd2020-05-22 10:19:56 +0800230
231 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700232}
233
234static int snvs_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
235{
236 struct snvs_rtc_data *data = dev_get_drvdata(dev);
Alexandre Bellonic59a9fc2019-08-28 22:50:56 +0200237 unsigned long time = rtc_tm_to_time64(&alrm->time);
Trent Piephocd7f3a22018-05-16 16:45:51 -0700238 int ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700239
Xu Wang081e2502020-11-13 08:03:05 +0000240 ret = clk_enable(data->clk);
241 if (ret)
242 return ret;
Anson Huang4b957bd2020-05-22 10:19:56 +0800243
Frank Lid4828932015-05-27 00:25:57 +0800244 regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_LPTA_EN, 0);
Trent Piephocd7f3a22018-05-16 16:45:51 -0700245 ret = rtc_write_sync_lp(data);
246 if (ret)
247 return ret;
Frank Lid4828932015-05-27 00:25:57 +0800248 regmap_write(data->regmap, data->offset + SNVS_LPTAR, time);
Shawn Guo179a5022012-10-04 17:13:49 -0700249
250 /* Clear alarm interrupt status bit */
Frank Lid4828932015-05-27 00:25:57 +0800251 regmap_write(data->regmap, data->offset + SNVS_LPSR, SNVS_LPSR_LPTA);
Shawn Guo179a5022012-10-04 17:13:49 -0700252
Xu Wang081e2502020-11-13 08:03:05 +0000253 clk_disable(data->clk);
Anson Huang4b957bd2020-05-22 10:19:56 +0800254
Shawn Guo179a5022012-10-04 17:13:49 -0700255 return snvs_rtc_alarm_irq_enable(dev, alrm->enabled);
256}
257
258static const struct rtc_class_ops snvs_rtc_ops = {
259 .read_time = snvs_rtc_read_time,
260 .set_time = snvs_rtc_set_time,
261 .read_alarm = snvs_rtc_read_alarm,
262 .set_alarm = snvs_rtc_set_alarm,
263 .alarm_irq_enable = snvs_rtc_alarm_irq_enable,
264};
265
266static irqreturn_t snvs_rtc_irq_handler(int irq, void *dev_id)
267{
268 struct device *dev = dev_id;
269 struct snvs_rtc_data *data = dev_get_drvdata(dev);
270 u32 lpsr;
271 u32 events = 0;
272
Xu Wang081e2502020-11-13 08:03:05 +0000273 clk_enable(data->clk);
Anson Huangedb190c2019-01-11 07:09:02 +0000274
Frank Lid4828932015-05-27 00:25:57 +0800275 regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700276
277 if (lpsr & SNVS_LPSR_LPTA) {
278 events |= (RTC_AF | RTC_IRQF);
279
280 /* RTC alarm should be one-shot */
281 snvs_rtc_alarm_irq_enable(dev, 0);
282
283 rtc_update_irq(data->rtc, 1, events);
284 }
285
286 /* clear interrupt status */
Frank Lid4828932015-05-27 00:25:57 +0800287 regmap_write(data->regmap, data->offset + SNVS_LPSR, lpsr);
Shawn Guo179a5022012-10-04 17:13:49 -0700288
Xu Wang081e2502020-11-13 08:03:05 +0000289 clk_disable(data->clk);
Anson Huangedb190c2019-01-11 07:09:02 +0000290
Shawn Guo179a5022012-10-04 17:13:49 -0700291 return events ? IRQ_HANDLED : IRQ_NONE;
292}
293
Frank Lid4828932015-05-27 00:25:57 +0800294static const struct regmap_config snvs_rtc_config = {
295 .reg_bits = 32,
296 .val_bits = 32,
297 .reg_stride = 4,
298};
299
Anson Huang7863bd02020-03-13 22:30:49 +0800300static void snvs_rtc_action(void *data)
301{
Xu Wang081e2502020-11-13 08:03:05 +0000302 clk_disable_unprepare(data);
Anson Huang7863bd02020-03-13 22:30:49 +0800303}
304
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800305static int snvs_rtc_probe(struct platform_device *pdev)
Shawn Guo179a5022012-10-04 17:13:49 -0700306{
307 struct snvs_rtc_data *data;
Shawn Guo179a5022012-10-04 17:13:49 -0700308 int ret;
Frank Lid4828932015-05-27 00:25:57 +0800309 void __iomem *mmio;
Shawn Guo179a5022012-10-04 17:13:49 -0700310
311 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
312 if (!data)
313 return -ENOMEM;
314
Anson Huang6fd4fe92019-07-16 15:18:58 +0800315 data->rtc = devm_rtc_allocate_device(&pdev->dev);
316 if (IS_ERR(data->rtc))
317 return PTR_ERR(data->rtc);
318
Frank Lid4828932015-05-27 00:25:57 +0800319 data->regmap = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, "regmap");
320
321 if (IS_ERR(data->regmap)) {
322 dev_warn(&pdev->dev, "snvs rtc: you use old dts file, please update it\n");
Frank Lid4828932015-05-27 00:25:57 +0800323
Anson Huang0c46b072019-04-01 05:29:13 +0000324 mmio = devm_platform_ioremap_resource(pdev, 0);
Frank Lid4828932015-05-27 00:25:57 +0800325 if (IS_ERR(mmio))
326 return PTR_ERR(mmio);
327
328 data->regmap = devm_regmap_init_mmio(&pdev->dev, mmio, &snvs_rtc_config);
329 } else {
330 data->offset = SNVS_LPREGISTER_OFFSET;
331 of_property_read_u32(pdev->dev.of_node, "offset", &data->offset);
332 }
333
Pan Bian75892902017-04-23 13:43:24 +0800334 if (IS_ERR(data->regmap)) {
Frank Lid4828932015-05-27 00:25:57 +0800335 dev_err(&pdev->dev, "Can't find snvs syscon\n");
336 return -ENODEV;
337 }
Shawn Guo179a5022012-10-04 17:13:49 -0700338
339 data->irq = platform_get_irq(pdev, 0);
340 if (data->irq < 0)
341 return data->irq;
342
Sanchayan Maity7f899392014-12-10 15:54:17 -0800343 data->clk = devm_clk_get(&pdev->dev, "snvs-rtc");
344 if (IS_ERR(data->clk)) {
345 data->clk = NULL;
346 } else {
347 ret = clk_prepare_enable(data->clk);
348 if (ret) {
349 dev_err(&pdev->dev,
350 "Could not prepare or enable the snvs clock\n");
351 return ret;
352 }
353 }
354
Anson Huang7863bd02020-03-13 22:30:49 +0800355 ret = devm_add_action_or_reset(&pdev->dev, snvs_rtc_action, data->clk);
356 if (ret)
357 return ret;
358
Shawn Guo179a5022012-10-04 17:13:49 -0700359 platform_set_drvdata(pdev, data);
360
Shawn Guo179a5022012-10-04 17:13:49 -0700361 /* Initialize glitch detect */
Frank Lid4828932015-05-27 00:25:57 +0800362 regmap_write(data->regmap, data->offset + SNVS_LPPGDR, SNVS_LPPGDR_INIT);
Shawn Guo179a5022012-10-04 17:13:49 -0700363
364 /* Clear interrupt status */
Frank Lid4828932015-05-27 00:25:57 +0800365 regmap_write(data->regmap, data->offset + SNVS_LPSR, 0xffffffff);
Shawn Guo179a5022012-10-04 17:13:49 -0700366
367 /* Enable RTC */
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100368 ret = snvs_rtc_enable(data, true);
369 if (ret) {
370 dev_err(&pdev->dev, "failed to enable rtc %d\n", ret);
Anson Huang7863bd02020-03-13 22:30:49 +0800371 return ret;
Bryan O'Donoghue14859912018-03-28 20:14:05 +0100372 }
Shawn Guo179a5022012-10-04 17:13:49 -0700373
374 device_init_wakeup(&pdev->dev, true);
Anson Huange7afddb2019-03-27 06:18:20 +0000375 ret = dev_pm_set_wake_irq(&pdev->dev, data->irq);
376 if (ret)
377 dev_err(&pdev->dev, "failed to enable irq wake\n");
Shawn Guo179a5022012-10-04 17:13:49 -0700378
379 ret = devm_request_irq(&pdev->dev, data->irq, snvs_rtc_irq_handler,
380 IRQF_SHARED, "rtc alarm", &pdev->dev);
381 if (ret) {
382 dev_err(&pdev->dev, "failed to request irq %d: %d\n",
383 data->irq, ret);
Anson Huang7863bd02020-03-13 22:30:49 +0800384 return ret;
Shawn Guo179a5022012-10-04 17:13:49 -0700385 }
386
Anson Huang6fd4fe92019-07-16 15:18:58 +0800387 data->rtc->ops = &snvs_rtc_ops;
Alexandre Belloni79610342019-08-28 22:50:55 +0200388 data->rtc->range_max = U32_MAX;
Shawn Guo179a5022012-10-04 17:13:49 -0700389
Bartosz Golaszewskifdcfd852020-11-09 17:34:08 +0100390 return devm_rtc_register_device(data->rtc);
Shawn Guo179a5022012-10-04 17:13:49 -0700391}
392
Anson Huangdacb6a42019-04-30 01:07:08 +0000393static int __maybe_unused snvs_rtc_suspend_noirq(struct device *dev)
Stefan Agner119434f2015-05-21 17:29:35 +0200394{
395 struct snvs_rtc_data *data = dev_get_drvdata(dev);
396
Xu Wang081e2502020-11-13 08:03:05 +0000397 clk_disable(data->clk);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800398
Shawn Guo179a5022012-10-04 17:13:49 -0700399 return 0;
400}
401
Anson Huangdacb6a42019-04-30 01:07:08 +0000402static int __maybe_unused snvs_rtc_resume_noirq(struct device *dev)
Stefan Agner119434f2015-05-21 17:29:35 +0200403{
404 struct snvs_rtc_data *data = dev_get_drvdata(dev);
405
406 if (data->clk)
Anson Huang20af6772020-05-22 10:19:55 +0800407 return clk_enable(data->clk);
Sanchayan Maity7f899392014-12-10 15:54:17 -0800408
Shawn Guo179a5022012-10-04 17:13:49 -0700409 return 0;
410}
Shawn Guo179a5022012-10-04 17:13:49 -0700411
Sanchayan Maity7654e9d2014-12-10 15:54:20 -0800412static const struct dev_pm_ops snvs_rtc_pm_ops = {
Anson Huangdacb6a42019-04-30 01:07:08 +0000413 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(snvs_rtc_suspend_noirq, snvs_rtc_resume_noirq)
Sanchayan Maity7654e9d2014-12-10 15:54:20 -0800414};
Shawn Guo179a5022012-10-04 17:13:49 -0700415
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800416static const struct of_device_id snvs_dt_ids[] = {
Shawn Guo179a5022012-10-04 17:13:49 -0700417 { .compatible = "fsl,sec-v4.0-mon-rtc-lp", },
418 { /* sentinel */ }
419};
420MODULE_DEVICE_TABLE(of, snvs_dt_ids);
421
422static struct platform_driver snvs_rtc_driver = {
423 .driver = {
424 .name = "snvs_rtc",
Anson Huangdacb6a42019-04-30 01:07:08 +0000425 .pm = &snvs_rtc_pm_ops,
Sachin Kamatc39b3712013-11-12 15:10:57 -0800426 .of_match_table = snvs_dt_ids,
Shawn Guo179a5022012-10-04 17:13:49 -0700427 },
428 .probe = snvs_rtc_probe,
Shawn Guo179a5022012-10-04 17:13:49 -0700429};
430module_platform_driver(snvs_rtc_driver);
431
432MODULE_AUTHOR("Freescale Semiconductor, Inc.");
433MODULE_DESCRIPTION("Freescale SNVS RTC Driver");
434MODULE_LICENSE("GPL");