Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Xilinx Zynq Ultrascale+ MPSoC Real Time Clock Driver
  4 *
  5 * Copyright (C) 2015 Xilinx, Inc.
  6 *
 
 
 
 
 
 
 
 
 
 
 
 
  7 */
  8
  9#include <linux/clk.h>
 10#include <linux/delay.h>
 11#include <linux/init.h>
 12#include <linux/io.h>
 13#include <linux/module.h>
 14#include <linux/of.h>
 15#include <linux/platform_device.h>
 16#include <linux/rtc.h>
 17
 18/* RTC Registers */
 19#define RTC_SET_TM_WR		0x00
 20#define RTC_SET_TM_RD		0x04
 21#define RTC_CALIB_WR		0x08
 22#define RTC_CALIB_RD		0x0C
 23#define RTC_CUR_TM		0x10
 24#define RTC_CUR_TICK		0x14
 25#define RTC_ALRM		0x18
 26#define RTC_INT_STS		0x20
 27#define RTC_INT_MASK		0x24
 28#define RTC_INT_EN		0x28
 29#define RTC_INT_DIS		0x2C
 30#define RTC_CTRL		0x40
 31
 32#define RTC_FR_EN		BIT(20)
 33#define RTC_FR_DATSHIFT		16
 34#define RTC_TICK_MASK		0xFFFF
 35#define RTC_INT_SEC		BIT(0)
 36#define RTC_INT_ALRM		BIT(1)
 37#define RTC_OSC_EN		BIT(24)
 38#define RTC_BATT_EN		BIT(31)
 39
 40#define RTC_CALIB_DEF		0x7FFF
 41#define RTC_CALIB_MASK		0x1FFFFF
 42#define RTC_ALRM_MASK          BIT(1)
 43#define RTC_MSEC               1000
 44#define RTC_FR_MASK		0xF0000
 45#define RTC_FR_MAX_TICKS	16
 46#define RTC_PPB			1000000000LL
 47#define RTC_MIN_OFFSET		-32768000
 48#define RTC_MAX_OFFSET		32767000
 49
 50struct xlnx_rtc_dev {
 51	struct rtc_device	*rtc;
 52	void __iomem		*reg_base;
 53	int			alarm_irq;
 54	int			sec_irq;
 55	struct clk		*rtc_clk;
 56	unsigned int		freq;
 57};
 58
 59static int xlnx_rtc_set_time(struct device *dev, struct rtc_time *tm)
 60{
 61	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 62	unsigned long new_time;
 63
 64	/*
 65	 * The value written will be updated after 1 sec into the
 66	 * seconds read register, so we need to program time +1 sec
 67	 * to get the correct time on read.
 68	 */
 69	new_time = rtc_tm_to_time64(tm) + 1;
 70
 71	writel(new_time, xrtcdev->reg_base + RTC_SET_TM_WR);
 
 72
 73	/*
 74	 * Clear the rtc interrupt status register after setting the
 75	 * time. During a read_time function, the code should read the
 76	 * RTC_INT_STATUS register and if bit 0 is still 0, it means
 77	 * that one second has not elapsed yet since RTC was set and
 78	 * the current time should be read from SET_TIME_READ register;
 79	 * otherwise, CURRENT_TIME register is read to report the time
 80	 */
 81	writel(RTC_INT_SEC, xrtcdev->reg_base + RTC_INT_STS);
 82
 83	return 0;
 84}
 85
 86static int xlnx_rtc_read_time(struct device *dev, struct rtc_time *tm)
 87{
 88	u32 status;
 89	unsigned long read_time;
 90	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 91
 92	status = readl(xrtcdev->reg_base + RTC_INT_STS);
 93
 94	if (status & RTC_INT_SEC) {
 95		/*
 96		 * RTC has updated the CURRENT_TIME with the time written into
 97		 * SET_TIME_WRITE register.
 98		 */
 99		read_time = readl(xrtcdev->reg_base + RTC_CUR_TM);
100	} else {
101		/*
102		 * Time written in SET_TIME_WRITE has not yet updated into
103		 * the seconds read register, so read the time from the
104		 * SET_TIME_WRITE instead of CURRENT_TIME register.
105		 * Since we add +1 sec while writing, we need to -1 sec while
106		 * reading.
107		 */
108		read_time = readl(xrtcdev->reg_base + RTC_SET_TM_RD) - 1;
109	}
110	rtc_time64_to_tm(read_time, tm);
111
112	return 0;
113}
114
115static int xlnx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
116{
117	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
118
119	rtc_time64_to_tm(readl(xrtcdev->reg_base + RTC_ALRM), &alrm->time);
120	alrm->enabled = readl(xrtcdev->reg_base + RTC_INT_MASK) & RTC_INT_ALRM;
121
122	return 0;
123}
124
125static int xlnx_rtc_alarm_irq_enable(struct device *dev, u32 enabled)
126{
127	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
128	unsigned int status;
129	ulong timeout;
130
131	timeout = jiffies + msecs_to_jiffies(RTC_MSEC);
132
133	if (enabled) {
134		while (1) {
135			status = readl(xrtcdev->reg_base + RTC_INT_STS);
136			if (!((status & RTC_ALRM_MASK) == RTC_ALRM_MASK))
137				break;
138
139			if (time_after_eq(jiffies, timeout)) {
140				dev_err(dev, "Time out occur, while clearing alarm status bit\n");
141				return -ETIMEDOUT;
142			}
143			writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_STS);
144		}
145
 
146		writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_EN);
147	} else {
148		writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_DIS);
149	}
150
151	return 0;
152}
153
154static int xlnx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
155{
156	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
157	unsigned long alarm_time;
158
159	alarm_time = rtc_tm_to_time64(&alrm->time);
160
 
 
 
161	writel((u32)alarm_time, (xrtcdev->reg_base + RTC_ALRM));
162
163	xlnx_rtc_alarm_irq_enable(dev, alrm->enabled);
164
165	return 0;
166}
167
168static void xlnx_init_rtc(struct xlnx_rtc_dev *xrtcdev)
169{
170	u32 rtc_ctrl;
171
172	/* Enable RTC switch to battery when VCC_PSAUX is not available */
173	rtc_ctrl = readl(xrtcdev->reg_base + RTC_CTRL);
174	rtc_ctrl |= RTC_BATT_EN;
175	writel(rtc_ctrl, xrtcdev->reg_base + RTC_CTRL);
176}
177
178static int xlnx_rtc_read_offset(struct device *dev, long *offset)
179{
180	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
181	unsigned long long rtc_ppb = RTC_PPB;
182	unsigned int tick_mult = do_div(rtc_ppb, xrtcdev->freq);
183	unsigned int calibval;
184	long offset_val;
185
186	calibval = readl(xrtcdev->reg_base + RTC_CALIB_RD);
187	/* Offset with seconds ticks */
188	offset_val = calibval & RTC_TICK_MASK;
189	offset_val = offset_val - RTC_CALIB_DEF;
190	offset_val = offset_val * tick_mult;
191
192	/* Offset with fractional ticks */
193	if (calibval & RTC_FR_EN)
194		offset_val += ((calibval & RTC_FR_MASK) >> RTC_FR_DATSHIFT)
195			* (tick_mult / RTC_FR_MAX_TICKS);
196	*offset = offset_val;
197
198	return 0;
199}
200
201static int xlnx_rtc_set_offset(struct device *dev, long offset)
202{
203	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
204	unsigned long long rtc_ppb = RTC_PPB;
205	unsigned int tick_mult = do_div(rtc_ppb, xrtcdev->freq);
206	unsigned char fract_tick = 0;
207	unsigned int calibval;
208	short int  max_tick;
209	int fract_offset;
210
211	if (offset < RTC_MIN_OFFSET || offset > RTC_MAX_OFFSET)
212		return -ERANGE;
213
214	/* Number ticks for given offset */
215	max_tick = div_s64_rem(offset, tick_mult, &fract_offset);
216
217	/* Number fractional ticks for given offset */
218	if (fract_offset) {
219		if (fract_offset < 0) {
220			fract_offset = fract_offset + tick_mult;
221			max_tick--;
222		}
223		if (fract_offset > (tick_mult / RTC_FR_MAX_TICKS)) {
224			for (fract_tick = 1; fract_tick < 16; fract_tick++) {
225				if (fract_offset <=
226				    (fract_tick *
227				     (tick_mult / RTC_FR_MAX_TICKS)))
228					break;
229			}
230		}
231	}
232
233	/* Zynqmp RTC uses second and fractional tick
234	 * counters for compensation
235	 */
236	calibval = max_tick + RTC_CALIB_DEF;
237
238	if (fract_tick)
239		calibval |= RTC_FR_EN;
240
241	calibval |= (fract_tick << RTC_FR_DATSHIFT);
242
243	writel(calibval, (xrtcdev->reg_base + RTC_CALIB_WR));
244
245	return 0;
246}
247
248static const struct rtc_class_ops xlnx_rtc_ops = {
249	.set_time	  = xlnx_rtc_set_time,
250	.read_time	  = xlnx_rtc_read_time,
251	.read_alarm	  = xlnx_rtc_read_alarm,
252	.set_alarm	  = xlnx_rtc_set_alarm,
253	.alarm_irq_enable = xlnx_rtc_alarm_irq_enable,
254	.read_offset	  = xlnx_rtc_read_offset,
255	.set_offset	  = xlnx_rtc_set_offset,
256};
257
258static irqreturn_t xlnx_rtc_interrupt(int irq, void *id)
259{
260	struct xlnx_rtc_dev *xrtcdev = (struct xlnx_rtc_dev *)id;
261	unsigned int status;
262
263	status = readl(xrtcdev->reg_base + RTC_INT_STS);
264	/* Check if interrupt asserted */
265	if (!(status & (RTC_INT_SEC | RTC_INT_ALRM)))
266		return IRQ_NONE;
267
268	/* Disable RTC_INT_ALRM interrupt only */
269	writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_DIS);
270
 
 
271	if (status & RTC_INT_ALRM)
272		rtc_update_irq(xrtcdev->rtc, 1, RTC_IRQF | RTC_AF);
273
274	return IRQ_HANDLED;
275}
276
277static int xlnx_rtc_probe(struct platform_device *pdev)
278{
279	struct xlnx_rtc_dev *xrtcdev;
 
280	int ret;
 
281
282	xrtcdev = devm_kzalloc(&pdev->dev, sizeof(*xrtcdev), GFP_KERNEL);
283	if (!xrtcdev)
284		return -ENOMEM;
285
286	platform_set_drvdata(pdev, xrtcdev);
287
288	xrtcdev->rtc = devm_rtc_allocate_device(&pdev->dev);
289	if (IS_ERR(xrtcdev->rtc))
290		return PTR_ERR(xrtcdev->rtc);
291
292	xrtcdev->rtc->ops = &xlnx_rtc_ops;
293	xrtcdev->rtc->range_max = U32_MAX;
294
295	xrtcdev->reg_base = devm_platform_ioremap_resource(pdev, 0);
296	if (IS_ERR(xrtcdev->reg_base))
297		return PTR_ERR(xrtcdev->reg_base);
298
299	xrtcdev->alarm_irq = platform_get_irq_byname(pdev, "alarm");
300	if (xrtcdev->alarm_irq < 0)
 
301		return xrtcdev->alarm_irq;
 
302	ret = devm_request_irq(&pdev->dev, xrtcdev->alarm_irq,
303			       xlnx_rtc_interrupt, 0,
304			       dev_name(&pdev->dev), xrtcdev);
305	if (ret) {
306		dev_err(&pdev->dev, "request irq failed\n");
307		return ret;
308	}
309
310	xrtcdev->sec_irq = platform_get_irq_byname(pdev, "sec");
311	if (xrtcdev->sec_irq < 0)
 
312		return xrtcdev->sec_irq;
 
313	ret = devm_request_irq(&pdev->dev, xrtcdev->sec_irq,
314			       xlnx_rtc_interrupt, 0,
315			       dev_name(&pdev->dev), xrtcdev);
316	if (ret) {
317		dev_err(&pdev->dev, "request irq failed\n");
318		return ret;
319	}
320
321	/* Getting the rtc_clk info */
322	xrtcdev->rtc_clk = devm_clk_get_optional(&pdev->dev, "rtc_clk");
323	if (IS_ERR(xrtcdev->rtc_clk)) {
324		if (PTR_ERR(xrtcdev->rtc_clk) != -EPROBE_DEFER)
325			dev_warn(&pdev->dev, "Device clock not found.\n");
326	}
327	xrtcdev->freq = clk_get_rate(xrtcdev->rtc_clk);
328	if (!xrtcdev->freq) {
329		ret = of_property_read_u32(pdev->dev.of_node, "calibration",
330					   &xrtcdev->freq);
331		if (ret)
332			xrtcdev->freq = RTC_CALIB_DEF;
333	}
334	ret = readl(xrtcdev->reg_base + RTC_CALIB_RD);
335	if (!ret)
336		writel(xrtcdev->freq, (xrtcdev->reg_base + RTC_CALIB_WR));
337
338	xlnx_init_rtc(xrtcdev);
339
340	device_init_wakeup(&pdev->dev, 1);
341
342	return devm_rtc_register_device(xrtcdev->rtc);
 
 
343}
344
345static int xlnx_rtc_remove(struct platform_device *pdev)
346{
347	xlnx_rtc_alarm_irq_enable(&pdev->dev, 0);
348	device_init_wakeup(&pdev->dev, 0);
349
350	return 0;
351}
352
353static int __maybe_unused xlnx_rtc_suspend(struct device *dev)
354{
355	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 
356
357	if (device_may_wakeup(dev))
358		enable_irq_wake(xrtcdev->alarm_irq);
359	else
360		xlnx_rtc_alarm_irq_enable(dev, 0);
361
362	return 0;
363}
364
365static int __maybe_unused xlnx_rtc_resume(struct device *dev)
366{
367	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 
368
369	if (device_may_wakeup(dev))
370		disable_irq_wake(xrtcdev->alarm_irq);
371	else
372		xlnx_rtc_alarm_irq_enable(dev, 1);
373
374	return 0;
375}
376
377static SIMPLE_DEV_PM_OPS(xlnx_rtc_pm_ops, xlnx_rtc_suspend, xlnx_rtc_resume);
378
379static const struct of_device_id xlnx_rtc_of_match[] = {
380	{.compatible = "xlnx,zynqmp-rtc" },
381	{ }
382};
383MODULE_DEVICE_TABLE(of, xlnx_rtc_of_match);
384
385static struct platform_driver xlnx_rtc_driver = {
386	.probe		= xlnx_rtc_probe,
387	.remove		= xlnx_rtc_remove,
388	.driver		= {
389		.name	= KBUILD_MODNAME,
390		.pm	= &xlnx_rtc_pm_ops,
391		.of_match_table	= xlnx_rtc_of_match,
392	},
393};
394
395module_platform_driver(xlnx_rtc_driver);
396
397MODULE_DESCRIPTION("Xilinx Zynq MPSoC RTC driver");
398MODULE_AUTHOR("Xilinx Inc.");
399MODULE_LICENSE("GPL v2");
v4.6
 
  1/*
  2 * Xilinx Zynq Ultrascale+ MPSoC Real Time Clock Driver
  3 *
  4 * Copyright (C) 2015 Xilinx, Inc.
  5 *
  6 * This program is free software; you can redistribute it and/or modify it
  7 * under the terms and conditions of the GNU General Public License,
  8 * version 2, as published by the Free Software Foundation.
  9 *
 10 * This program is distributed in the hope it will be useful, but WITHOUT
 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 13 * more details.
 14 *
 15 * You should have received a copy of the GNU General Public License along with
 16 * this program. If not, see <http://www.gnu.org/licenses/>.
 17 *
 18 */
 19
 
 20#include <linux/delay.h>
 21#include <linux/init.h>
 22#include <linux/io.h>
 23#include <linux/module.h>
 24#include <linux/of.h>
 25#include <linux/platform_device.h>
 26#include <linux/rtc.h>
 27
 28/* RTC Registers */
 29#define RTC_SET_TM_WR		0x00
 30#define RTC_SET_TM_RD		0x04
 31#define RTC_CALIB_WR		0x08
 32#define RTC_CALIB_RD		0x0C
 33#define RTC_CUR_TM		0x10
 34#define RTC_CUR_TICK		0x14
 35#define RTC_ALRM		0x18
 36#define RTC_INT_STS		0x20
 37#define RTC_INT_MASK		0x24
 38#define RTC_INT_EN		0x28
 39#define RTC_INT_DIS		0x2C
 40#define RTC_CTRL		0x40
 41
 42#define RTC_FR_EN		BIT(20)
 43#define RTC_FR_DATSHIFT		16
 44#define RTC_TICK_MASK		0xFFFF
 45#define RTC_INT_SEC		BIT(0)
 46#define RTC_INT_ALRM		BIT(1)
 47#define RTC_OSC_EN		BIT(24)
 
 48
 49#define RTC_CALIB_DEF		0x198233
 50#define RTC_CALIB_MASK		0x1FFFFF
 51#define RTC_SEC_MAX_VAL		0xFFFFFFFF
 
 
 
 
 
 
 52
 53struct xlnx_rtc_dev {
 54	struct rtc_device	*rtc;
 55	void __iomem		*reg_base;
 56	int			alarm_irq;
 57	int			sec_irq;
 
 
 58};
 59
 60static int xlnx_rtc_set_time(struct device *dev, struct rtc_time *tm)
 61{
 62	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 63	unsigned long new_time;
 64
 65	new_time = rtc_tm_to_time64(tm);
 
 
 
 
 
 66
 67	if (new_time > RTC_SEC_MAX_VAL)
 68		return -EINVAL;
 69
 70	writel(new_time, xrtcdev->reg_base + RTC_SET_TM_WR);
 
 
 
 
 
 
 
 
 71
 72	return 0;
 73}
 74
 75static int xlnx_rtc_read_time(struct device *dev, struct rtc_time *tm)
 76{
 
 
 77	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 78
 79	rtc_time64_to_tm(readl(xrtcdev->reg_base + RTC_CUR_TM), tm);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 80
 81	return rtc_valid_tm(tm);
 82}
 83
 84static int xlnx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
 85{
 86	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 87
 88	rtc_time64_to_tm(readl(xrtcdev->reg_base + RTC_ALRM), &alrm->time);
 89	alrm->enabled = readl(xrtcdev->reg_base + RTC_INT_MASK) & RTC_INT_ALRM;
 90
 91	return 0;
 92}
 93
 94static int xlnx_rtc_alarm_irq_enable(struct device *dev, u32 enabled)
 95{
 96	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 97
 98	if (enabled)
 99		writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_EN);
100	else
101		writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_DIS);
 
102
103	return 0;
104}
105
106static int xlnx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
107{
108	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
109	unsigned long alarm_time;
110
111	alarm_time = rtc_tm_to_time64(&alrm->time);
112
113	if (alarm_time > RTC_SEC_MAX_VAL)
114		return -EINVAL;
115
116	writel((u32)alarm_time, (xrtcdev->reg_base + RTC_ALRM));
117
118	xlnx_rtc_alarm_irq_enable(dev, alrm->enabled);
119
120	return 0;
121}
122
123static void xlnx_init_rtc(struct xlnx_rtc_dev *xrtcdev, u32 calibval)
 
 
 
 
 
 
 
 
 
 
124{
125	/*
126	 * Based on crystal freq of 33.330 KHz
127	 * set the seconds counter and enable, set fractions counter
128	 * to default value suggested as per design spec
129	 * to correct RTC delay in frequency over period of time.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130	 */
131	calibval &= RTC_CALIB_MASK;
 
 
 
 
 
 
132	writel(calibval, (xrtcdev->reg_base + RTC_CALIB_WR));
 
 
133}
134
135static const struct rtc_class_ops xlnx_rtc_ops = {
136	.set_time	  = xlnx_rtc_set_time,
137	.read_time	  = xlnx_rtc_read_time,
138	.read_alarm	  = xlnx_rtc_read_alarm,
139	.set_alarm	  = xlnx_rtc_set_alarm,
140	.alarm_irq_enable = xlnx_rtc_alarm_irq_enable,
 
 
141};
142
143static irqreturn_t xlnx_rtc_interrupt(int irq, void *id)
144{
145	struct xlnx_rtc_dev *xrtcdev = (struct xlnx_rtc_dev *)id;
146	unsigned int status;
147
148	status = readl(xrtcdev->reg_base + RTC_INT_STS);
149	/* Check if interrupt asserted */
150	if (!(status & (RTC_INT_SEC | RTC_INT_ALRM)))
151		return IRQ_NONE;
152
153	/* Clear interrupt */
154	writel(status, xrtcdev->reg_base + RTC_INT_STS);
155
156	if (status & RTC_INT_SEC)
157		rtc_update_irq(xrtcdev->rtc, 1, RTC_IRQF | RTC_UF);
158	if (status & RTC_INT_ALRM)
159		rtc_update_irq(xrtcdev->rtc, 1, RTC_IRQF | RTC_AF);
160
161	return IRQ_HANDLED;
162}
163
164static int xlnx_rtc_probe(struct platform_device *pdev)
165{
166	struct xlnx_rtc_dev *xrtcdev;
167	struct resource *res;
168	int ret;
169	unsigned int calibvalue;
170
171	xrtcdev = devm_kzalloc(&pdev->dev, sizeof(*xrtcdev), GFP_KERNEL);
172	if (!xrtcdev)
173		return -ENOMEM;
174
175	platform_set_drvdata(pdev, xrtcdev);
176
177	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 
 
 
 
 
178
179	xrtcdev->reg_base = devm_ioremap_resource(&pdev->dev, res);
180	if (IS_ERR(xrtcdev->reg_base))
181		return PTR_ERR(xrtcdev->reg_base);
182
183	xrtcdev->alarm_irq = platform_get_irq_byname(pdev, "alarm");
184	if (xrtcdev->alarm_irq < 0) {
185		dev_err(&pdev->dev, "no irq resource\n");
186		return xrtcdev->alarm_irq;
187	}
188	ret = devm_request_irq(&pdev->dev, xrtcdev->alarm_irq,
189			       xlnx_rtc_interrupt, 0,
190			       dev_name(&pdev->dev), xrtcdev);
191	if (ret) {
192		dev_err(&pdev->dev, "request irq failed\n");
193		return ret;
194	}
195
196	xrtcdev->sec_irq = platform_get_irq_byname(pdev, "sec");
197	if (xrtcdev->sec_irq < 0) {
198		dev_err(&pdev->dev, "no irq resource\n");
199		return xrtcdev->sec_irq;
200	}
201	ret = devm_request_irq(&pdev->dev, xrtcdev->sec_irq,
202			       xlnx_rtc_interrupt, 0,
203			       dev_name(&pdev->dev), xrtcdev);
204	if (ret) {
205		dev_err(&pdev->dev, "request irq failed\n");
206		return ret;
207	}
208
209	ret = of_property_read_u32(pdev->dev.of_node, "calibration",
210				   &calibvalue);
211	if (ret)
212		calibvalue = RTC_CALIB_DEF;
 
 
 
 
 
 
 
 
 
 
 
 
213
214	xlnx_init_rtc(xrtcdev, calibvalue);
215
216	device_init_wakeup(&pdev->dev, 1);
217
218	xrtcdev->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
219					 &xlnx_rtc_ops, THIS_MODULE);
220	return PTR_ERR_OR_ZERO(xrtcdev->rtc);
221}
222
223static int xlnx_rtc_remove(struct platform_device *pdev)
224{
225	xlnx_rtc_alarm_irq_enable(&pdev->dev, 0);
226	device_init_wakeup(&pdev->dev, 0);
227
228	return 0;
229}
230
231static int __maybe_unused xlnx_rtc_suspend(struct device *dev)
232{
233	struct platform_device *pdev = to_platform_device(dev);
234	struct xlnx_rtc_dev *xrtcdev = platform_get_drvdata(pdev);
235
236	if (device_may_wakeup(&pdev->dev))
237		enable_irq_wake(xrtcdev->alarm_irq);
238	else
239		xlnx_rtc_alarm_irq_enable(dev, 0);
240
241	return 0;
242}
243
244static int __maybe_unused xlnx_rtc_resume(struct device *dev)
245{
246	struct platform_device *pdev = to_platform_device(dev);
247	struct xlnx_rtc_dev *xrtcdev = platform_get_drvdata(pdev);
248
249	if (device_may_wakeup(&pdev->dev))
250		disable_irq_wake(xrtcdev->alarm_irq);
251	else
252		xlnx_rtc_alarm_irq_enable(dev, 1);
253
254	return 0;
255}
256
257static SIMPLE_DEV_PM_OPS(xlnx_rtc_pm_ops, xlnx_rtc_suspend, xlnx_rtc_resume);
258
259static const struct of_device_id xlnx_rtc_of_match[] = {
260	{.compatible = "xlnx,zynqmp-rtc" },
261	{ }
262};
263MODULE_DEVICE_TABLE(of, xlnx_rtc_of_match);
264
265static struct platform_driver xlnx_rtc_driver = {
266	.probe		= xlnx_rtc_probe,
267	.remove		= xlnx_rtc_remove,
268	.driver		= {
269		.name	= KBUILD_MODNAME,
270		.pm	= &xlnx_rtc_pm_ops,
271		.of_match_table	= xlnx_rtc_of_match,
272	},
273};
274
275module_platform_driver(xlnx_rtc_driver);
276
277MODULE_DESCRIPTION("Xilinx Zynq MPSoC RTC driver");
278MODULE_AUTHOR("Xilinx Inc.");
279MODULE_LICENSE("GPL v2");