Linux Audio

Check our new training course

Loading...
v5.9
  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/delay.h>
 10#include <linux/init.h>
 11#include <linux/io.h>
 12#include <linux/module.h>
 13#include <linux/of.h>
 14#include <linux/platform_device.h>
 15#include <linux/rtc.h>
 16
 17/* RTC Registers */
 18#define RTC_SET_TM_WR		0x00
 19#define RTC_SET_TM_RD		0x04
 20#define RTC_CALIB_WR		0x08
 21#define RTC_CALIB_RD		0x0C
 22#define RTC_CUR_TM		0x10
 23#define RTC_CUR_TICK		0x14
 24#define RTC_ALRM		0x18
 25#define RTC_INT_STS		0x20
 26#define RTC_INT_MASK		0x24
 27#define RTC_INT_EN		0x28
 28#define RTC_INT_DIS		0x2C
 29#define RTC_CTRL		0x40
 30
 31#define RTC_FR_EN		BIT(20)
 32#define RTC_FR_DATSHIFT		16
 33#define RTC_TICK_MASK		0xFFFF
 34#define RTC_INT_SEC		BIT(0)
 35#define RTC_INT_ALRM		BIT(1)
 36#define RTC_OSC_EN		BIT(24)
 37#define RTC_BATT_EN		BIT(31)
 38
 39#define RTC_CALIB_DEF		0x198233
 40#define RTC_CALIB_MASK		0x1FFFFF
 41#define RTC_ALRM_MASK          BIT(1)
 42#define RTC_MSEC               1000
 43
 44struct xlnx_rtc_dev {
 45	struct rtc_device	*rtc;
 46	void __iomem		*reg_base;
 47	int			alarm_irq;
 48	int			sec_irq;
 49	unsigned int		calibval;
 50};
 51
 52static int xlnx_rtc_set_time(struct device *dev, struct rtc_time *tm)
 53{
 54	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 55	unsigned long new_time;
 56
 57	/*
 58	 * The value written will be updated after 1 sec into the
 59	 * seconds read register, so we need to program time +1 sec
 60	 * to get the correct time on read.
 61	 */
 62	new_time = rtc_tm_to_time64(tm) + 1;
 63
 
 
 
 64	/*
 65	 * Writing into calibration register will clear the Tick Counter and
 66	 * force the next second to be signaled exactly in 1 second period
 67	 */
 68	xrtcdev->calibval &= RTC_CALIB_MASK;
 69	writel(xrtcdev->calibval, (xrtcdev->reg_base + RTC_CALIB_WR));
 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	/*
178	 * Based on crystal freq of 33.330 KHz
179	 * set the seconds counter and enable, set fractions counter
180	 * to default value suggested as per design spec
181	 * to correct RTC delay in frequency over period of time.
182	 */
183	xrtcdev->calibval &= RTC_CALIB_MASK;
184	writel(xrtcdev->calibval, (xrtcdev->reg_base + RTC_CALIB_WR));
185}
186
187static const struct rtc_class_ops xlnx_rtc_ops = {
188	.set_time	  = xlnx_rtc_set_time,
189	.read_time	  = xlnx_rtc_read_time,
190	.read_alarm	  = xlnx_rtc_read_alarm,
191	.set_alarm	  = xlnx_rtc_set_alarm,
192	.alarm_irq_enable = xlnx_rtc_alarm_irq_enable,
193};
194
195static irqreturn_t xlnx_rtc_interrupt(int irq, void *id)
196{
197	struct xlnx_rtc_dev *xrtcdev = (struct xlnx_rtc_dev *)id;
198	unsigned int status;
199
200	status = readl(xrtcdev->reg_base + RTC_INT_STS);
201	/* Check if interrupt asserted */
202	if (!(status & (RTC_INT_SEC | RTC_INT_ALRM)))
203		return IRQ_NONE;
204
205	/* Disable RTC_INT_ALRM interrupt only */
206	writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_DIS);
207
208	if (status & RTC_INT_ALRM)
209		rtc_update_irq(xrtcdev->rtc, 1, RTC_IRQF | RTC_AF);
210
211	return IRQ_HANDLED;
212}
213
214static int xlnx_rtc_probe(struct platform_device *pdev)
215{
216	struct xlnx_rtc_dev *xrtcdev;
 
217	int ret;
218
219	xrtcdev = devm_kzalloc(&pdev->dev, sizeof(*xrtcdev), GFP_KERNEL);
220	if (!xrtcdev)
221		return -ENOMEM;
222
223	platform_set_drvdata(pdev, xrtcdev);
224
225	xrtcdev->rtc = devm_rtc_allocate_device(&pdev->dev);
226	if (IS_ERR(xrtcdev->rtc))
227		return PTR_ERR(xrtcdev->rtc);
228
229	xrtcdev->rtc->ops = &xlnx_rtc_ops;
230	xrtcdev->rtc->range_max = U32_MAX;
231
232	xrtcdev->reg_base = devm_platform_ioremap_resource(pdev, 0);
233	if (IS_ERR(xrtcdev->reg_base))
234		return PTR_ERR(xrtcdev->reg_base);
235
236	xrtcdev->alarm_irq = platform_get_irq_byname(pdev, "alarm");
237	if (xrtcdev->alarm_irq < 0)
 
238		return xrtcdev->alarm_irq;
 
239	ret = devm_request_irq(&pdev->dev, xrtcdev->alarm_irq,
240			       xlnx_rtc_interrupt, 0,
241			       dev_name(&pdev->dev), xrtcdev);
242	if (ret) {
243		dev_err(&pdev->dev, "request irq failed\n");
244		return ret;
245	}
246
247	xrtcdev->sec_irq = platform_get_irq_byname(pdev, "sec");
248	if (xrtcdev->sec_irq < 0)
 
249		return xrtcdev->sec_irq;
 
250	ret = devm_request_irq(&pdev->dev, xrtcdev->sec_irq,
251			       xlnx_rtc_interrupt, 0,
252			       dev_name(&pdev->dev), xrtcdev);
253	if (ret) {
254		dev_err(&pdev->dev, "request irq failed\n");
255		return ret;
256	}
257
258	ret = of_property_read_u32(pdev->dev.of_node, "calibration",
259				   &xrtcdev->calibval);
260	if (ret)
261		xrtcdev->calibval = RTC_CALIB_DEF;
262
263	xlnx_init_rtc(xrtcdev);
264
265	device_init_wakeup(&pdev->dev, 1);
266
267	return rtc_register_device(xrtcdev->rtc);
 
 
268}
269
270static int xlnx_rtc_remove(struct platform_device *pdev)
271{
272	xlnx_rtc_alarm_irq_enable(&pdev->dev, 0);
273	device_init_wakeup(&pdev->dev, 0);
274
275	return 0;
276}
277
278static int __maybe_unused xlnx_rtc_suspend(struct device *dev)
279{
280	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 
281
282	if (device_may_wakeup(dev))
283		enable_irq_wake(xrtcdev->alarm_irq);
284	else
285		xlnx_rtc_alarm_irq_enable(dev, 0);
286
287	return 0;
288}
289
290static int __maybe_unused xlnx_rtc_resume(struct device *dev)
291{
292	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 
293
294	if (device_may_wakeup(dev))
295		disable_irq_wake(xrtcdev->alarm_irq);
296	else
297		xlnx_rtc_alarm_irq_enable(dev, 1);
298
299	return 0;
300}
301
302static SIMPLE_DEV_PM_OPS(xlnx_rtc_pm_ops, xlnx_rtc_suspend, xlnx_rtc_resume);
303
304static const struct of_device_id xlnx_rtc_of_match[] = {
305	{.compatible = "xlnx,zynqmp-rtc" },
306	{ }
307};
308MODULE_DEVICE_TABLE(of, xlnx_rtc_of_match);
309
310static struct platform_driver xlnx_rtc_driver = {
311	.probe		= xlnx_rtc_probe,
312	.remove		= xlnx_rtc_remove,
313	.driver		= {
314		.name	= KBUILD_MODNAME,
315		.pm	= &xlnx_rtc_pm_ops,
316		.of_match_table	= xlnx_rtc_of_match,
317	},
318};
319
320module_platform_driver(xlnx_rtc_driver);
321
322MODULE_DESCRIPTION("Xilinx Zynq MPSoC RTC driver");
323MODULE_AUTHOR("Xilinx Inc.");
324MODULE_LICENSE("GPL v2");
v4.17
 
  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#define RTC_BATT_EN		BIT(31)
 49
 50#define RTC_CALIB_DEF		0x198233
 51#define RTC_CALIB_MASK		0x1FFFFF
 52#define RTC_SEC_MAX_VAL		0xFFFFFFFF
 
 53
 54struct xlnx_rtc_dev {
 55	struct rtc_device	*rtc;
 56	void __iomem		*reg_base;
 57	int			alarm_irq;
 58	int			sec_irq;
 59	int			calibval;
 60};
 61
 62static int xlnx_rtc_set_time(struct device *dev, struct rtc_time *tm)
 63{
 64	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 65	unsigned long new_time;
 66
 67	/*
 68	 * The value written will be updated after 1 sec into the
 69	 * seconds read register, so we need to program time +1 sec
 70	 * to get the correct time on read.
 71	 */
 72	new_time = rtc_tm_to_time64(tm) + 1;
 73
 74	if (new_time > RTC_SEC_MAX_VAL)
 75		return -EINVAL;
 76
 77	/*
 78	 * Writing into calibration register will clear the Tick Counter and
 79	 * force the next second to be signaled exactly in 1 second period
 80	 */
 81	xrtcdev->calibval &= RTC_CALIB_MASK;
 82	writel(xrtcdev->calibval, (xrtcdev->reg_base + RTC_CALIB_WR));
 83
 84	writel(new_time, xrtcdev->reg_base + RTC_SET_TM_WR);
 85
 86	/*
 87	 * Clear the rtc interrupt status register after setting the
 88	 * time. During a read_time function, the code should read the
 89	 * RTC_INT_STATUS register and if bit 0 is still 0, it means
 90	 * that one second has not elapsed yet since RTC was set and
 91	 * the current time should be read from SET_TIME_READ register;
 92	 * otherwise, CURRENT_TIME register is read to report the time
 93	 */
 94	writel(RTC_INT_SEC, xrtcdev->reg_base + RTC_INT_STS);
 95
 96	return 0;
 97}
 98
 99static int xlnx_rtc_read_time(struct device *dev, struct rtc_time *tm)
100{
101	u32 status;
102	unsigned long read_time;
103	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
104
105	status = readl(xrtcdev->reg_base + RTC_INT_STS);
106
107	if (status & RTC_INT_SEC) {
108		/*
109		 * RTC has updated the CURRENT_TIME with the time written into
110		 * SET_TIME_WRITE register.
111		 */
112		rtc_time64_to_tm(readl(xrtcdev->reg_base + RTC_CUR_TM), tm);
113	} else {
114		/*
115		 * Time written in SET_TIME_WRITE has not yet updated into
116		 * the seconds read register, so read the time from the
117		 * SET_TIME_WRITE instead of CURRENT_TIME register.
118		 * Since we add +1 sec while writing, we need to -1 sec while
119		 * reading.
120		 */
121		read_time = readl(xrtcdev->reg_base + RTC_SET_TM_RD) - 1;
122		rtc_time64_to_tm(read_time, tm);
123	}
 
124
125	return 0;
126}
127
128static int xlnx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
129{
130	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
131
132	rtc_time64_to_tm(readl(xrtcdev->reg_base + RTC_ALRM), &alrm->time);
133	alrm->enabled = readl(xrtcdev->reg_base + RTC_INT_MASK) & RTC_INT_ALRM;
134
135	return 0;
136}
137
138static int xlnx_rtc_alarm_irq_enable(struct device *dev, u32 enabled)
139{
140	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
142	if (enabled)
143		writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_EN);
144	else
145		writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_DIS);
 
146
147	return 0;
148}
149
150static int xlnx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
151{
152	struct xlnx_rtc_dev *xrtcdev = dev_get_drvdata(dev);
153	unsigned long alarm_time;
154
155	alarm_time = rtc_tm_to_time64(&alrm->time);
156
157	if (alarm_time > RTC_SEC_MAX_VAL)
158		return -EINVAL;
159
160	writel((u32)alarm_time, (xrtcdev->reg_base + RTC_ALRM));
161
162	xlnx_rtc_alarm_irq_enable(dev, alrm->enabled);
163
164	return 0;
165}
166
167static void xlnx_init_rtc(struct xlnx_rtc_dev *xrtcdev)
168{
169	u32 rtc_ctrl;
170
171	/* Enable RTC switch to battery when VCC_PSAUX is not available */
172	rtc_ctrl = readl(xrtcdev->reg_base + RTC_CTRL);
173	rtc_ctrl |= RTC_BATT_EN;
174	writel(rtc_ctrl, xrtcdev->reg_base + RTC_CTRL);
175
176	/*
177	 * Based on crystal freq of 33.330 KHz
178	 * set the seconds counter and enable, set fractions counter
179	 * to default value suggested as per design spec
180	 * to correct RTC delay in frequency over period of time.
181	 */
182	xrtcdev->calibval &= RTC_CALIB_MASK;
183	writel(xrtcdev->calibval, (xrtcdev->reg_base + RTC_CALIB_WR));
184}
185
186static const struct rtc_class_ops xlnx_rtc_ops = {
187	.set_time	  = xlnx_rtc_set_time,
188	.read_time	  = xlnx_rtc_read_time,
189	.read_alarm	  = xlnx_rtc_read_alarm,
190	.set_alarm	  = xlnx_rtc_set_alarm,
191	.alarm_irq_enable = xlnx_rtc_alarm_irq_enable,
192};
193
194static irqreturn_t xlnx_rtc_interrupt(int irq, void *id)
195{
196	struct xlnx_rtc_dev *xrtcdev = (struct xlnx_rtc_dev *)id;
197	unsigned int status;
198
199	status = readl(xrtcdev->reg_base + RTC_INT_STS);
200	/* Check if interrupt asserted */
201	if (!(status & (RTC_INT_SEC | RTC_INT_ALRM)))
202		return IRQ_NONE;
203
204	/* Clear RTC_INT_ALRM interrupt only */
205	writel(RTC_INT_ALRM, xrtcdev->reg_base + RTC_INT_STS);
206
207	if (status & RTC_INT_ALRM)
208		rtc_update_irq(xrtcdev->rtc, 1, RTC_IRQF | RTC_AF);
209
210	return IRQ_HANDLED;
211}
212
213static int xlnx_rtc_probe(struct platform_device *pdev)
214{
215	struct xlnx_rtc_dev *xrtcdev;
216	struct resource *res;
217	int ret;
218
219	xrtcdev = devm_kzalloc(&pdev->dev, sizeof(*xrtcdev), GFP_KERNEL);
220	if (!xrtcdev)
221		return -ENOMEM;
222
223	platform_set_drvdata(pdev, xrtcdev);
224
225	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 
 
 
 
 
226
227	xrtcdev->reg_base = devm_ioremap_resource(&pdev->dev, res);
228	if (IS_ERR(xrtcdev->reg_base))
229		return PTR_ERR(xrtcdev->reg_base);
230
231	xrtcdev->alarm_irq = platform_get_irq_byname(pdev, "alarm");
232	if (xrtcdev->alarm_irq < 0) {
233		dev_err(&pdev->dev, "no irq resource\n");
234		return xrtcdev->alarm_irq;
235	}
236	ret = devm_request_irq(&pdev->dev, xrtcdev->alarm_irq,
237			       xlnx_rtc_interrupt, 0,
238			       dev_name(&pdev->dev), xrtcdev);
239	if (ret) {
240		dev_err(&pdev->dev, "request irq failed\n");
241		return ret;
242	}
243
244	xrtcdev->sec_irq = platform_get_irq_byname(pdev, "sec");
245	if (xrtcdev->sec_irq < 0) {
246		dev_err(&pdev->dev, "no irq resource\n");
247		return xrtcdev->sec_irq;
248	}
249	ret = devm_request_irq(&pdev->dev, xrtcdev->sec_irq,
250			       xlnx_rtc_interrupt, 0,
251			       dev_name(&pdev->dev), xrtcdev);
252	if (ret) {
253		dev_err(&pdev->dev, "request irq failed\n");
254		return ret;
255	}
256
257	ret = of_property_read_u32(pdev->dev.of_node, "calibration",
258				   &xrtcdev->calibval);
259	if (ret)
260		xrtcdev->calibval = RTC_CALIB_DEF;
261
262	xlnx_init_rtc(xrtcdev);
263
264	device_init_wakeup(&pdev->dev, 1);
265
266	xrtcdev->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
267					 &xlnx_rtc_ops, THIS_MODULE);
268	return PTR_ERR_OR_ZERO(xrtcdev->rtc);
269}
270
271static int xlnx_rtc_remove(struct platform_device *pdev)
272{
273	xlnx_rtc_alarm_irq_enable(&pdev->dev, 0);
274	device_init_wakeup(&pdev->dev, 0);
275
276	return 0;
277}
278
279static int __maybe_unused xlnx_rtc_suspend(struct device *dev)
280{
281	struct platform_device *pdev = to_platform_device(dev);
282	struct xlnx_rtc_dev *xrtcdev = platform_get_drvdata(pdev);
283
284	if (device_may_wakeup(&pdev->dev))
285		enable_irq_wake(xrtcdev->alarm_irq);
286	else
287		xlnx_rtc_alarm_irq_enable(dev, 0);
288
289	return 0;
290}
291
292static int __maybe_unused xlnx_rtc_resume(struct device *dev)
293{
294	struct platform_device *pdev = to_platform_device(dev);
295	struct xlnx_rtc_dev *xrtcdev = platform_get_drvdata(pdev);
296
297	if (device_may_wakeup(&pdev->dev))
298		disable_irq_wake(xrtcdev->alarm_irq);
299	else
300		xlnx_rtc_alarm_irq_enable(dev, 1);
301
302	return 0;
303}
304
305static SIMPLE_DEV_PM_OPS(xlnx_rtc_pm_ops, xlnx_rtc_suspend, xlnx_rtc_resume);
306
307static const struct of_device_id xlnx_rtc_of_match[] = {
308	{.compatible = "xlnx,zynqmp-rtc" },
309	{ }
310};
311MODULE_DEVICE_TABLE(of, xlnx_rtc_of_match);
312
313static struct platform_driver xlnx_rtc_driver = {
314	.probe		= xlnx_rtc_probe,
315	.remove		= xlnx_rtc_remove,
316	.driver		= {
317		.name	= KBUILD_MODNAME,
318		.pm	= &xlnx_rtc_pm_ops,
319		.of_match_table	= xlnx_rtc_of_match,
320	},
321};
322
323module_platform_driver(xlnx_rtc_driver);
324
325MODULE_DESCRIPTION("Xilinx Zynq MPSoC RTC driver");
326MODULE_AUTHOR("Xilinx Inc.");
327MODULE_LICENSE("GPL v2");