Blame view

drivers/rtc/rtc-snvs.c 9.26 KB
179a502f8   Shawn Guo   rtc: snvs: add Fr...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /*
   * Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
   *
   * The code contained herein is licensed under the GNU General Public
   * License. You may obtain a copy of the GNU General Public License
   * Version 2 or later at the following locations:
   *
   * http://www.opensource.org/licenses/gpl-license.html
   * http://www.gnu.org/copyleft/gpl.html
   */
  
  #include <linux/init.h>
  #include <linux/io.h>
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/of.h>
  #include <linux/of_device.h>
  #include <linux/platform_device.h>
  #include <linux/rtc.h>
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
20
  #include <linux/clk.h>
d482893b1   Frank Li   rtc: snvs: use sy...
21
22
23
24
  #include <linux/mfd/syscon.h>
  #include <linux/regmap.h>
  
  #define SNVS_LPREGISTER_OFFSET	0x34
179a502f8   Shawn Guo   rtc: snvs: add Fr...
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  
  /* These register offsets are relative to LP (Low Power) range */
  #define SNVS_LPCR		0x04
  #define SNVS_LPSR		0x18
  #define SNVS_LPSRTCMR		0x1c
  #define SNVS_LPSRTCLR		0x20
  #define SNVS_LPTAR		0x24
  #define SNVS_LPPGDR		0x30
  
  #define SNVS_LPCR_SRTC_ENV	(1 << 0)
  #define SNVS_LPCR_LPTA_EN	(1 << 1)
  #define SNVS_LPCR_LPWUI_EN	(1 << 3)
  #define SNVS_LPSR_LPTA		(1 << 0)
  
  #define SNVS_LPPGDR_INIT	0x41736166
  #define CNTR_TO_SECS_SH		15
  
  struct snvs_rtc_data {
  	struct rtc_device *rtc;
d482893b1   Frank Li   rtc: snvs: use sy...
44
45
  	struct regmap *regmap;
  	int offset;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
46
  	int irq;
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
47
  	struct clk *clk;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
48
  };
d482893b1   Frank Li   rtc: snvs: use sy...
49
  static u32 rtc_read_lp_counter(struct snvs_rtc_data *data)
179a502f8   Shawn Guo   rtc: snvs: add Fr...
50
51
  {
  	u64 read1, read2;
d482893b1   Frank Li   rtc: snvs: use sy...
52
  	u32 val;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
53
54
  
  	do {
d482893b1   Frank Li   rtc: snvs: use sy...
55
56
  		regmap_read(data->regmap, data->offset + SNVS_LPSRTCMR, &val);
  		read1 = val;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
57
  		read1 <<= 32;
d482893b1   Frank Li   rtc: snvs: use sy...
58
59
  		regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &val);
  		read1 |= val;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
60

d482893b1   Frank Li   rtc: snvs: use sy...
61
62
  		regmap_read(data->regmap, data->offset + SNVS_LPSRTCMR, &val);
  		read2 = val;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
63
  		read2 <<= 32;
d482893b1   Frank Li   rtc: snvs: use sy...
64
65
  		regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &val);
  		read2 |= val;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
66
67
68
69
70
  	} while (read1 != read2);
  
  	/* Convert 47-bit counter to 32-bit raw second count */
  	return (u32) (read1 >> CNTR_TO_SECS_SH);
  }
d482893b1   Frank Li   rtc: snvs: use sy...
71
  static void rtc_write_sync_lp(struct snvs_rtc_data *data)
179a502f8   Shawn Guo   rtc: snvs: add Fr...
72
73
74
75
76
77
78
  {
  	u32 count1, count2, count3;
  	int i;
  
  	/* Wait for 3 CKIL cycles */
  	for (i = 0; i < 3; i++) {
  		do {
d482893b1   Frank Li   rtc: snvs: use sy...
79
80
  			regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count1);
  			regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count2);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
81
82
83
84
85
  		} while (count1 != count2);
  
  		/* Now wait until counter value changes */
  		do {
  			do {
d482893b1   Frank Li   rtc: snvs: use sy...
86
87
  				regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count2);
  				regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count3);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
88
89
90
91
92
93
94
  			} while (count2 != count3);
  		} while (count3 == count1);
  	}
  }
  
  static int snvs_rtc_enable(struct snvs_rtc_data *data, bool enable)
  {
179a502f8   Shawn Guo   rtc: snvs: add Fr...
95
96
  	int timeout = 1000;
  	u32 lpcr;
d482893b1   Frank Li   rtc: snvs: use sy...
97
98
  	regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_SRTC_ENV,
  			   enable ? SNVS_LPCR_SRTC_ENV : 0);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
99
100
  
  	while (--timeout) {
d482893b1   Frank Li   rtc: snvs: use sy...
101
  		regmap_read(data->regmap, data->offset + SNVS_LPCR, &lpcr);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  
  		if (enable) {
  			if (lpcr & SNVS_LPCR_SRTC_ENV)
  				break;
  		} else {
  			if (!(lpcr & SNVS_LPCR_SRTC_ENV))
  				break;
  		}
  	}
  
  	if (!timeout)
  		return -ETIMEDOUT;
  
  	return 0;
  }
  
  static int snvs_rtc_read_time(struct device *dev, struct rtc_time *tm)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
d482893b1   Frank Li   rtc: snvs: use sy...
121
  	unsigned long time = rtc_read_lp_counter(data);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  
  	rtc_time_to_tm(time, tm);
  
  	return 0;
  }
  
  static int snvs_rtc_set_time(struct device *dev, struct rtc_time *tm)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
  	unsigned long time;
  
  	rtc_tm_to_time(tm, &time);
  
  	/* Disable RTC first */
  	snvs_rtc_enable(data, false);
  
  	/* Write 32-bit time to 47-bit timer, leaving 15 LSBs blank */
d482893b1   Frank Li   rtc: snvs: use sy...
139
140
  	regmap_write(data->regmap, data->offset + SNVS_LPSRTCLR, time << CNTR_TO_SECS_SH);
  	regmap_write(data->regmap, data->offset + SNVS_LPSRTCMR, time >> (32 - CNTR_TO_SECS_SH));
179a502f8   Shawn Guo   rtc: snvs: add Fr...
141
142
143
144
145
146
147
148
149
150
151
  
  	/* Enable RTC again */
  	snvs_rtc_enable(data, true);
  
  	return 0;
  }
  
  static int snvs_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
  	u32 lptar, lpsr;
d482893b1   Frank Li   rtc: snvs: use sy...
152
  	regmap_read(data->regmap, data->offset + SNVS_LPTAR, &lptar);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
153
  	rtc_time_to_tm(lptar, &alrm->time);
d482893b1   Frank Li   rtc: snvs: use sy...
154
  	regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
155
156
157
158
159
160
161
162
  	alrm->pending = (lpsr & SNVS_LPSR_LPTA) ? 1 : 0;
  
  	return 0;
  }
  
  static int snvs_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
163

d482893b1   Frank Li   rtc: snvs: use sy...
164
165
166
  	regmap_update_bits(data->regmap, data->offset + SNVS_LPCR,
  			   (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN),
  			   enable ? (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN) : 0);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
167

d482893b1   Frank Li   rtc: snvs: use sy...
168
  	rtc_write_sync_lp(data);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
169
170
171
172
173
174
175
176
177
  
  	return 0;
  }
  
  static int snvs_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
  	struct rtc_time *alrm_tm = &alrm->time;
  	unsigned long time;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
178
179
  
  	rtc_tm_to_time(alrm_tm, &time);
d482893b1   Frank Li   rtc: snvs: use sy...
180
181
  	regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_LPTA_EN, 0);
  	regmap_write(data->regmap, data->offset + SNVS_LPTAR, time);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
182
183
  
  	/* Clear alarm interrupt status bit */
d482893b1   Frank Li   rtc: snvs: use sy...
184
  	regmap_write(data->regmap, data->offset + SNVS_LPSR, SNVS_LPSR_LPTA);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
  
  	return snvs_rtc_alarm_irq_enable(dev, alrm->enabled);
  }
  
  static const struct rtc_class_ops snvs_rtc_ops = {
  	.read_time = snvs_rtc_read_time,
  	.set_time = snvs_rtc_set_time,
  	.read_alarm = snvs_rtc_read_alarm,
  	.set_alarm = snvs_rtc_set_alarm,
  	.alarm_irq_enable = snvs_rtc_alarm_irq_enable,
  };
  
  static irqreturn_t snvs_rtc_irq_handler(int irq, void *dev_id)
  {
  	struct device *dev = dev_id;
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
  	u32 lpsr;
  	u32 events = 0;
d482893b1   Frank Li   rtc: snvs: use sy...
203
  	regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
204
205
206
207
208
209
210
211
212
213
214
  
  	if (lpsr & SNVS_LPSR_LPTA) {
  		events |= (RTC_AF | RTC_IRQF);
  
  		/* RTC alarm should be one-shot */
  		snvs_rtc_alarm_irq_enable(dev, 0);
  
  		rtc_update_irq(data->rtc, 1, events);
  	}
  
  	/* clear interrupt status */
d482893b1   Frank Li   rtc: snvs: use sy...
215
  	regmap_write(data->regmap, data->offset + SNVS_LPSR, lpsr);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
216
217
218
  
  	return events ? IRQ_HANDLED : IRQ_NONE;
  }
d482893b1   Frank Li   rtc: snvs: use sy...
219
220
221
222
223
  static const struct regmap_config snvs_rtc_config = {
  	.reg_bits = 32,
  	.val_bits = 32,
  	.reg_stride = 4,
  };
5a167f454   Greg Kroah-Hartman   Drivers: rtc: rem...
224
  static int snvs_rtc_probe(struct platform_device *pdev)
179a502f8   Shawn Guo   rtc: snvs: add Fr...
225
226
227
228
  {
  	struct snvs_rtc_data *data;
  	struct resource *res;
  	int ret;
d482893b1   Frank Li   rtc: snvs: use sy...
229
  	void __iomem *mmio;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
230
231
232
233
  
  	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
  	if (!data)
  		return -ENOMEM;
d482893b1   Frank Li   rtc: snvs: use sy...
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  	data->regmap = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, "regmap");
  
  	if (IS_ERR(data->regmap)) {
  		dev_warn(&pdev->dev, "snvs rtc: you use old dts file, please update it
  ");
  		res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  
  		mmio = devm_ioremap_resource(&pdev->dev, res);
  		if (IS_ERR(mmio))
  			return PTR_ERR(mmio);
  
  		data->regmap = devm_regmap_init_mmio(&pdev->dev, mmio, &snvs_rtc_config);
  	} else {
  		data->offset = SNVS_LPREGISTER_OFFSET;
  		of_property_read_u32(pdev->dev.of_node, "offset", &data->offset);
  	}
  
  	if (!data->regmap) {
  		dev_err(&pdev->dev, "Can't find snvs syscon
  ");
  		return -ENODEV;
  	}
179a502f8   Shawn Guo   rtc: snvs: add Fr...
256
257
258
259
  
  	data->irq = platform_get_irq(pdev, 0);
  	if (data->irq < 0)
  		return data->irq;
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
260
261
262
263
264
265
266
267
268
269
270
271
  	data->clk = devm_clk_get(&pdev->dev, "snvs-rtc");
  	if (IS_ERR(data->clk)) {
  		data->clk = NULL;
  	} else {
  		ret = clk_prepare_enable(data->clk);
  		if (ret) {
  			dev_err(&pdev->dev,
  				"Could not prepare or enable the snvs clock
  ");
  			return ret;
  		}
  	}
179a502f8   Shawn Guo   rtc: snvs: add Fr...
272
  	platform_set_drvdata(pdev, data);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
273
  	/* Initialize glitch detect */
d482893b1   Frank Li   rtc: snvs: use sy...
274
  	regmap_write(data->regmap, data->offset + SNVS_LPPGDR, SNVS_LPPGDR_INIT);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
275
276
  
  	/* Clear interrupt status */
d482893b1   Frank Li   rtc: snvs: use sy...
277
  	regmap_write(data->regmap, data->offset + SNVS_LPSR, 0xffffffff);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
278
279
280
281
282
283
284
285
286
287
288
289
  
  	/* Enable RTC */
  	snvs_rtc_enable(data, true);
  
  	device_init_wakeup(&pdev->dev, true);
  
  	ret = devm_request_irq(&pdev->dev, data->irq, snvs_rtc_irq_handler,
  			       IRQF_SHARED, "rtc alarm", &pdev->dev);
  	if (ret) {
  		dev_err(&pdev->dev, "failed to request irq %d: %d
  ",
  			data->irq, ret);
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
290
  		goto error_rtc_device_register;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
291
  	}
904784c11   Jingoo Han   rtc: rtc-snvs: us...
292
  	data->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
179a502f8   Shawn Guo   rtc: snvs: add Fr...
293
294
295
296
297
  					&snvs_rtc_ops, THIS_MODULE);
  	if (IS_ERR(data->rtc)) {
  		ret = PTR_ERR(data->rtc);
  		dev_err(&pdev->dev, "failed to register rtc: %d
  ", ret);
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
298
  		goto error_rtc_device_register;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
299
300
301
  	}
  
  	return 0;
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
302
303
304
305
306
307
  
  error_rtc_device_register:
  	if (data->clk)
  		clk_disable_unprepare(data->clk);
  
  	return ret;
179a502f8   Shawn Guo   rtc: snvs: add Fr...
308
  }
179a502f8   Shawn Guo   rtc: snvs: add Fr...
309
310
311
312
313
314
  #ifdef CONFIG_PM_SLEEP
  static int snvs_rtc_suspend(struct device *dev)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
  
  	if (device_may_wakeup(dev))
a350259da   Stefan Agner   rtc: snvs: return...
315
  		return enable_irq_wake(data->irq);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
316

119434f44   Stefan Agner   rtc: snvs: fix wa...
317
318
319
320
321
322
  	return 0;
  }
  
  static int snvs_rtc_suspend_noirq(struct device *dev)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
323
324
  	if (data->clk)
  		clk_disable_unprepare(data->clk);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
325
326
327
328
329
330
331
332
  	return 0;
  }
  
  static int snvs_rtc_resume(struct device *dev)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
  
  	if (device_may_wakeup(dev))
119434f44   Stefan Agner   rtc: snvs: fix wa...
333
  		return disable_irq_wake(data->irq);
179a502f8   Shawn Guo   rtc: snvs: add Fr...
334

119434f44   Stefan Agner   rtc: snvs: fix wa...
335
336
337
338
339
340
341
342
343
  	return 0;
  }
  
  static int snvs_rtc_resume_noirq(struct device *dev)
  {
  	struct snvs_rtc_data *data = dev_get_drvdata(dev);
  
  	if (data->clk)
  		return clk_prepare_enable(data->clk);
7f8993995   Sanchayan Maity   drivers/rtc/rtc-s...
344

179a502f8   Shawn Guo   rtc: snvs: add Fr...
345
346
  	return 0;
  }
179a502f8   Shawn Guo   rtc: snvs: add Fr...
347

7654e9d4f   Sanchayan Maity   drivers/rtc/rtc-s...
348
  static const struct dev_pm_ops snvs_rtc_pm_ops = {
119434f44   Stefan Agner   rtc: snvs: fix wa...
349
350
351
352
  	.suspend = snvs_rtc_suspend,
  	.suspend_noirq = snvs_rtc_suspend_noirq,
  	.resume = snvs_rtc_resume,
  	.resume_noirq = snvs_rtc_resume_noirq,
7654e9d4f   Sanchayan Maity   drivers/rtc/rtc-s...
353
  };
179a502f8   Shawn Guo   rtc: snvs: add Fr...
354

88221c32f   Guenter Roeck   rtc: snvs: fix bu...
355
356
357
358
359
360
361
  #define SNVS_RTC_PM_OPS	(&snvs_rtc_pm_ops)
  
  #else
  
  #define SNVS_RTC_PM_OPS	NULL
  
  #endif
5a167f454   Greg Kroah-Hartman   Drivers: rtc: rem...
362
  static const struct of_device_id snvs_dt_ids[] = {
179a502f8   Shawn Guo   rtc: snvs: add Fr...
363
364
365
366
367
368
369
370
  	{ .compatible = "fsl,sec-v4.0-mon-rtc-lp", },
  	{ /* sentinel */ }
  };
  MODULE_DEVICE_TABLE(of, snvs_dt_ids);
  
  static struct platform_driver snvs_rtc_driver = {
  	.driver = {
  		.name	= "snvs_rtc",
88221c32f   Guenter Roeck   rtc: snvs: fix bu...
371
  		.pm	= SNVS_RTC_PM_OPS,
c39b3717b   Sachin Kamat   drivers/rtc/rtc-s...
372
  		.of_match_table = snvs_dt_ids,
179a502f8   Shawn Guo   rtc: snvs: add Fr...
373
374
  	},
  	.probe		= snvs_rtc_probe,
179a502f8   Shawn Guo   rtc: snvs: add Fr...
375
376
377
378
379
380
  };
  module_platform_driver(snvs_rtc_driver);
  
  MODULE_AUTHOR("Freescale Semiconductor, Inc.");
  MODULE_DESCRIPTION("Freescale SNVS RTC Driver");
  MODULE_LICENSE("GPL");