xref: /openbmc/linux/drivers/rtc/rtc-lpc32xx.c (revision ba4a84f5ab6ef91394d745812131a443514f4a99)
19aa449beSKevin Wells /*
29aa449beSKevin Wells  * Copyright (C) 2010 NXP Semiconductors
39aa449beSKevin Wells  *
49aa449beSKevin Wells  * This program is free software; you can redistribute it and/or modify
59aa449beSKevin Wells  * it under the terms of the GNU General Public License as published by
69aa449beSKevin Wells  * the Free Software Foundation; either version 2 of the License, or
79aa449beSKevin Wells  * (at your option) any later version.
89aa449beSKevin Wells  *
99aa449beSKevin Wells  *  You should have received a copy of the GNU General Public License along
109aa449beSKevin Wells  *  with this program; if not, write to the Free Software Foundation, Inc.,
119aa449beSKevin Wells  *  675 Mass Ave, Cambridge, MA 02139, USA.
129aa449beSKevin Wells  */
139aa449beSKevin Wells 
149aa449beSKevin Wells #include <linux/kernel.h>
159aa449beSKevin Wells #include <linux/module.h>
169aa449beSKevin Wells #include <linux/init.h>
179aa449beSKevin Wells #include <linux/platform_device.h>
189aa449beSKevin Wells #include <linux/spinlock.h>
199aa449beSKevin Wells #include <linux/rtc.h>
209aa449beSKevin Wells #include <linux/slab.h>
219aa449beSKevin Wells #include <linux/io.h>
22e862e7c4SRoland Stigge #include <linux/of.h>
239aa449beSKevin Wells 
249aa449beSKevin Wells /*
259aa449beSKevin Wells  * Clock and Power control register offsets
269aa449beSKevin Wells  */
279aa449beSKevin Wells #define LPC32XX_RTC_UCOUNT		0x00
289aa449beSKevin Wells #define LPC32XX_RTC_DCOUNT		0x04
299aa449beSKevin Wells #define LPC32XX_RTC_MATCH0		0x08
309aa449beSKevin Wells #define LPC32XX_RTC_MATCH1		0x0C
319aa449beSKevin Wells #define LPC32XX_RTC_CTRL		0x10
329aa449beSKevin Wells #define LPC32XX_RTC_INTSTAT		0x14
339aa449beSKevin Wells #define LPC32XX_RTC_KEY			0x18
349aa449beSKevin Wells #define LPC32XX_RTC_SRAM		0x80
359aa449beSKevin Wells 
369aa449beSKevin Wells #define LPC32XX_RTC_CTRL_MATCH0		(1 << 0)
379aa449beSKevin Wells #define LPC32XX_RTC_CTRL_MATCH1		(1 << 1)
389aa449beSKevin Wells #define LPC32XX_RTC_CTRL_ONSW_MATCH0	(1 << 2)
399aa449beSKevin Wells #define LPC32XX_RTC_CTRL_ONSW_MATCH1	(1 << 3)
409aa449beSKevin Wells #define LPC32XX_RTC_CTRL_SW_RESET	(1 << 4)
419aa449beSKevin Wells #define LPC32XX_RTC_CTRL_CNTR_DIS	(1 << 6)
429aa449beSKevin Wells #define LPC32XX_RTC_CTRL_ONSW_FORCE_HI	(1 << 7)
439aa449beSKevin Wells 
449aa449beSKevin Wells #define LPC32XX_RTC_INTSTAT_MATCH0	(1 << 0)
459aa449beSKevin Wells #define LPC32XX_RTC_INTSTAT_MATCH1	(1 << 1)
469aa449beSKevin Wells #define LPC32XX_RTC_INTSTAT_ONSW	(1 << 2)
479aa449beSKevin Wells 
489aa449beSKevin Wells #define LPC32XX_RTC_KEY_ONSW_LOADVAL	0xB5C13F27
499aa449beSKevin Wells 
509aa449beSKevin Wells #define rtc_readl(dev, reg) \
519aa449beSKevin Wells 	__raw_readl((dev)->rtc_base + (reg))
529aa449beSKevin Wells #define rtc_writel(dev, reg, val) \
539aa449beSKevin Wells 	__raw_writel((val), (dev)->rtc_base + (reg))
549aa449beSKevin Wells 
559aa449beSKevin Wells struct lpc32xx_rtc {
569aa449beSKevin Wells 	void __iomem *rtc_base;
579aa449beSKevin Wells 	int irq;
589aa449beSKevin Wells 	unsigned char alarm_enabled;
599aa449beSKevin Wells 	struct rtc_device *rtc;
609aa449beSKevin Wells 	spinlock_t lock;
619aa449beSKevin Wells };
629aa449beSKevin Wells 
639aa449beSKevin Wells static int lpc32xx_rtc_read_time(struct device *dev, struct rtc_time *time)
649aa449beSKevin Wells {
659aa449beSKevin Wells 	unsigned long elapsed_sec;
669aa449beSKevin Wells 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
679aa449beSKevin Wells 
689aa449beSKevin Wells 	elapsed_sec = rtc_readl(rtc, LPC32XX_RTC_UCOUNT);
699aa449beSKevin Wells 	rtc_time_to_tm(elapsed_sec, time);
709aa449beSKevin Wells 
71ab62670eSAlexandre Belloni 	return 0;
729aa449beSKevin Wells }
739aa449beSKevin Wells 
749aa449beSKevin Wells static int lpc32xx_rtc_set_mmss(struct device *dev, unsigned long secs)
759aa449beSKevin Wells {
769aa449beSKevin Wells 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
779aa449beSKevin Wells 	u32 tmp;
789aa449beSKevin Wells 
799aa449beSKevin Wells 	spin_lock_irq(&rtc->lock);
809aa449beSKevin Wells 
819aa449beSKevin Wells 	/* RTC must be disabled during count update */
829aa449beSKevin Wells 	tmp = rtc_readl(rtc, LPC32XX_RTC_CTRL);
839aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_CTRL, tmp | LPC32XX_RTC_CTRL_CNTR_DIS);
849aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_UCOUNT, secs);
859aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_DCOUNT, 0xFFFFFFFF - secs);
869aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_CTRL, tmp &= ~LPC32XX_RTC_CTRL_CNTR_DIS);
879aa449beSKevin Wells 
889aa449beSKevin Wells 	spin_unlock_irq(&rtc->lock);
899aa449beSKevin Wells 
909aa449beSKevin Wells 	return 0;
919aa449beSKevin Wells }
929aa449beSKevin Wells 
939aa449beSKevin Wells static int lpc32xx_rtc_read_alarm(struct device *dev,
949aa449beSKevin Wells 	struct rtc_wkalrm *wkalrm)
959aa449beSKevin Wells {
969aa449beSKevin Wells 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
979aa449beSKevin Wells 
989aa449beSKevin Wells 	rtc_time_to_tm(rtc_readl(rtc, LPC32XX_RTC_MATCH0), &wkalrm->time);
999aa449beSKevin Wells 	wkalrm->enabled = rtc->alarm_enabled;
1009aa449beSKevin Wells 	wkalrm->pending = !!(rtc_readl(rtc, LPC32XX_RTC_INTSTAT) &
1019aa449beSKevin Wells 		LPC32XX_RTC_INTSTAT_MATCH0);
1029aa449beSKevin Wells 
1039aa449beSKevin Wells 	return rtc_valid_tm(&wkalrm->time);
1049aa449beSKevin Wells }
1059aa449beSKevin Wells 
1069aa449beSKevin Wells static int lpc32xx_rtc_set_alarm(struct device *dev,
1079aa449beSKevin Wells 	struct rtc_wkalrm *wkalrm)
1089aa449beSKevin Wells {
1099aa449beSKevin Wells 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
1109aa449beSKevin Wells 	unsigned long alarmsecs;
1119aa449beSKevin Wells 	u32 tmp;
1129aa449beSKevin Wells 	int ret;
1139aa449beSKevin Wells 
1149aa449beSKevin Wells 	ret = rtc_tm_to_time(&wkalrm->time, &alarmsecs);
1159aa449beSKevin Wells 	if (ret < 0) {
1169aa449beSKevin Wells 		dev_warn(dev, "Failed to convert time: %d\n", ret);
1179aa449beSKevin Wells 		return ret;
1189aa449beSKevin Wells 	}
1199aa449beSKevin Wells 
1209aa449beSKevin Wells 	spin_lock_irq(&rtc->lock);
1219aa449beSKevin Wells 
1229aa449beSKevin Wells 	/* Disable alarm during update */
1239aa449beSKevin Wells 	tmp = rtc_readl(rtc, LPC32XX_RTC_CTRL);
1249aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_CTRL, tmp & ~LPC32XX_RTC_CTRL_MATCH0);
1259aa449beSKevin Wells 
1269aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_MATCH0, alarmsecs);
1279aa449beSKevin Wells 
1289aa449beSKevin Wells 	rtc->alarm_enabled = wkalrm->enabled;
1299aa449beSKevin Wells 	if (wkalrm->enabled) {
1309aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_INTSTAT,
1319aa449beSKevin Wells 			   LPC32XX_RTC_INTSTAT_MATCH0);
1329aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_CTRL, tmp |
1339aa449beSKevin Wells 			   LPC32XX_RTC_CTRL_MATCH0);
1349aa449beSKevin Wells 	}
1359aa449beSKevin Wells 
1369aa449beSKevin Wells 	spin_unlock_irq(&rtc->lock);
1379aa449beSKevin Wells 
1389aa449beSKevin Wells 	return 0;
1399aa449beSKevin Wells }
1409aa449beSKevin Wells 
1419aa449beSKevin Wells static int lpc32xx_rtc_alarm_irq_enable(struct device *dev,
1429aa449beSKevin Wells 	unsigned int enabled)
1439aa449beSKevin Wells {
1449aa449beSKevin Wells 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
1459aa449beSKevin Wells 	u32 tmp;
1469aa449beSKevin Wells 
1479aa449beSKevin Wells 	spin_lock_irq(&rtc->lock);
1489aa449beSKevin Wells 	tmp = rtc_readl(rtc, LPC32XX_RTC_CTRL);
1499aa449beSKevin Wells 
1509aa449beSKevin Wells 	if (enabled) {
1519aa449beSKevin Wells 		rtc->alarm_enabled = 1;
1529aa449beSKevin Wells 		tmp |= LPC32XX_RTC_CTRL_MATCH0;
1539aa449beSKevin Wells 	} else {
1549aa449beSKevin Wells 		rtc->alarm_enabled = 0;
1559aa449beSKevin Wells 		tmp &= ~LPC32XX_RTC_CTRL_MATCH0;
1569aa449beSKevin Wells 	}
1579aa449beSKevin Wells 
1589aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_CTRL, tmp);
1599aa449beSKevin Wells 	spin_unlock_irq(&rtc->lock);
1609aa449beSKevin Wells 
1619aa449beSKevin Wells 	return 0;
1629aa449beSKevin Wells }
1639aa449beSKevin Wells 
1649aa449beSKevin Wells static irqreturn_t lpc32xx_rtc_alarm_interrupt(int irq, void *dev)
1659aa449beSKevin Wells {
1669aa449beSKevin Wells 	struct lpc32xx_rtc *rtc = dev;
1679aa449beSKevin Wells 
1689aa449beSKevin Wells 	spin_lock(&rtc->lock);
1699aa449beSKevin Wells 
1709aa449beSKevin Wells 	/* Disable alarm interrupt */
1719aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_CTRL,
1729aa449beSKevin Wells 		rtc_readl(rtc, LPC32XX_RTC_CTRL) &
1739aa449beSKevin Wells 			  ~LPC32XX_RTC_CTRL_MATCH0);
1749aa449beSKevin Wells 	rtc->alarm_enabled = 0;
1759aa449beSKevin Wells 
1769aa449beSKevin Wells 	/*
1779aa449beSKevin Wells 	 * Write a large value to the match value so the RTC won't
1789aa449beSKevin Wells 	 * keep firing the match status
1799aa449beSKevin Wells 	 */
1809aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_MATCH0, 0xFFFFFFFF);
1819aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_INTSTAT, LPC32XX_RTC_INTSTAT_MATCH0);
1829aa449beSKevin Wells 
1839aa449beSKevin Wells 	spin_unlock(&rtc->lock);
1849aa449beSKevin Wells 
1859aa449beSKevin Wells 	rtc_update_irq(rtc->rtc, 1, RTC_IRQF | RTC_AF);
1869aa449beSKevin Wells 
1879aa449beSKevin Wells 	return IRQ_HANDLED;
1889aa449beSKevin Wells }
1899aa449beSKevin Wells 
1909aa449beSKevin Wells static const struct rtc_class_ops lpc32xx_rtc_ops = {
1919aa449beSKevin Wells 	.read_time		= lpc32xx_rtc_read_time,
1929aa449beSKevin Wells 	.set_mmss		= lpc32xx_rtc_set_mmss,
1939aa449beSKevin Wells 	.read_alarm		= lpc32xx_rtc_read_alarm,
1949aa449beSKevin Wells 	.set_alarm		= lpc32xx_rtc_set_alarm,
1959aa449beSKevin Wells 	.alarm_irq_enable	= lpc32xx_rtc_alarm_irq_enable,
1969aa449beSKevin Wells };
1979aa449beSKevin Wells 
1985a167f45SGreg Kroah-Hartman static int lpc32xx_rtc_probe(struct platform_device *pdev)
1999aa449beSKevin Wells {
2009aa449beSKevin Wells 	struct resource *res;
2019aa449beSKevin Wells 	struct lpc32xx_rtc *rtc;
202*ba4a84f5SAlexandre Belloni 	int err;
2039aa449beSKevin Wells 	u32 tmp;
2049aa449beSKevin Wells 
2059aa449beSKevin Wells 	rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
2065c336b0aSJingoo Han 	if (unlikely(!rtc))
2079aa449beSKevin Wells 		return -ENOMEM;
2085c336b0aSJingoo Han 
2097c1d69eeSJulia Lawall 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2107c1d69eeSJulia Lawall 	rtc->rtc_base = devm_ioremap_resource(&pdev->dev, res);
2117c1d69eeSJulia Lawall 	if (IS_ERR(rtc->rtc_base))
2127c1d69eeSJulia Lawall 		return PTR_ERR(rtc->rtc_base);
2139aa449beSKevin Wells 
2149aa449beSKevin Wells 	spin_lock_init(&rtc->lock);
2159aa449beSKevin Wells 
2169aa449beSKevin Wells 	/*
21725985edcSLucas De Marchi 	 * The RTC is on a separate power domain and can keep it's state
2189aa449beSKevin Wells 	 * across a chip power cycle. If the RTC has never been previously
2199aa449beSKevin Wells 	 * setup, then set it up now for the first time.
2209aa449beSKevin Wells 	 */
2219aa449beSKevin Wells 	tmp = rtc_readl(rtc, LPC32XX_RTC_CTRL);
2229aa449beSKevin Wells 	if (rtc_readl(rtc, LPC32XX_RTC_KEY) != LPC32XX_RTC_KEY_ONSW_LOADVAL) {
2239aa449beSKevin Wells 		tmp &= ~(LPC32XX_RTC_CTRL_SW_RESET |
2249aa449beSKevin Wells 			LPC32XX_RTC_CTRL_CNTR_DIS |
2259aa449beSKevin Wells 			LPC32XX_RTC_CTRL_MATCH0 |
2269aa449beSKevin Wells 			LPC32XX_RTC_CTRL_MATCH1 |
2279aa449beSKevin Wells 			LPC32XX_RTC_CTRL_ONSW_MATCH0 |
2289aa449beSKevin Wells 			LPC32XX_RTC_CTRL_ONSW_MATCH1 |
2299aa449beSKevin Wells 			LPC32XX_RTC_CTRL_ONSW_FORCE_HI);
2309aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_CTRL, tmp);
2319aa449beSKevin Wells 
2329aa449beSKevin Wells 		/* Clear latched interrupt states */
2339aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_MATCH0, 0xFFFFFFFF);
2349aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_INTSTAT,
2359aa449beSKevin Wells 			   LPC32XX_RTC_INTSTAT_MATCH0 |
2369aa449beSKevin Wells 			   LPC32XX_RTC_INTSTAT_MATCH1 |
2379aa449beSKevin Wells 			   LPC32XX_RTC_INTSTAT_ONSW);
2389aa449beSKevin Wells 
2399aa449beSKevin Wells 		/* Write key value to RTC so it won't reload on reset */
2409aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_KEY,
2419aa449beSKevin Wells 			   LPC32XX_RTC_KEY_ONSW_LOADVAL);
2429aa449beSKevin Wells 	} else {
2439aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_CTRL,
2449aa449beSKevin Wells 			   tmp & ~LPC32XX_RTC_CTRL_MATCH0);
2459aa449beSKevin Wells 	}
2469aa449beSKevin Wells 
2479aa449beSKevin Wells 	platform_set_drvdata(pdev, rtc);
2489aa449beSKevin Wells 
2496bbad585SAlexandre Belloni 	rtc->rtc = devm_rtc_allocate_device(&pdev->dev);
2506bbad585SAlexandre Belloni 	if (IS_ERR(rtc->rtc))
2519aa449beSKevin Wells 		return PTR_ERR(rtc->rtc);
2526bbad585SAlexandre Belloni 
2536bbad585SAlexandre Belloni 	rtc->rtc->ops = &lpc32xx_rtc_ops;
2543a134269SAlexandre Belloni 	rtc->rtc->range_max = U32_MAX;
2556bbad585SAlexandre Belloni 
2566bbad585SAlexandre Belloni 	err = rtc_register_device(rtc->rtc);
2576bbad585SAlexandre Belloni 	if (err)
2586bbad585SAlexandre Belloni 		return err;
2599aa449beSKevin Wells 
2609aa449beSKevin Wells 	/*
2619aa449beSKevin Wells 	 * IRQ is enabled after device registration in case alarm IRQ
2629aa449beSKevin Wells 	 * is pending upon suspend exit.
2639aa449beSKevin Wells 	 */
264*ba4a84f5SAlexandre Belloni 	rtc->irq = platform_get_irq(pdev, 0);
265*ba4a84f5SAlexandre Belloni 	if (rtc->irq < 0) {
266*ba4a84f5SAlexandre Belloni 		dev_warn(&pdev->dev, "Can't get interrupt resource\n");
267*ba4a84f5SAlexandre Belloni 	} else {
2689aa449beSKevin Wells 		if (devm_request_irq(&pdev->dev, rtc->irq,
2699aa449beSKevin Wells 				     lpc32xx_rtc_alarm_interrupt,
2702f6e5f94SYong Zhang 				     0, pdev->name, rtc) < 0) {
2719aa449beSKevin Wells 			dev_warn(&pdev->dev, "Can't request interrupt.\n");
2729aa449beSKevin Wells 			rtc->irq = -1;
2739aa449beSKevin Wells 		} else {
2749aa449beSKevin Wells 			device_init_wakeup(&pdev->dev, 1);
2759aa449beSKevin Wells 		}
2769aa449beSKevin Wells 	}
2779aa449beSKevin Wells 
2789aa449beSKevin Wells 	return 0;
2799aa449beSKevin Wells }
2809aa449beSKevin Wells 
2815a167f45SGreg Kroah-Hartman static int lpc32xx_rtc_remove(struct platform_device *pdev)
2829aa449beSKevin Wells {
2839aa449beSKevin Wells 	struct lpc32xx_rtc *rtc = platform_get_drvdata(pdev);
2849aa449beSKevin Wells 
2859aa449beSKevin Wells 	if (rtc->irq >= 0)
2869aa449beSKevin Wells 		device_init_wakeup(&pdev->dev, 0);
2879aa449beSKevin Wells 
2889aa449beSKevin Wells 	return 0;
2899aa449beSKevin Wells }
2909aa449beSKevin Wells 
2919aa449beSKevin Wells #ifdef CONFIG_PM
2929aa449beSKevin Wells static int lpc32xx_rtc_suspend(struct device *dev)
2939aa449beSKevin Wells {
29485368bb9SWolfram Sang 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
2959aa449beSKevin Wells 
2969aa449beSKevin Wells 	if (rtc->irq >= 0) {
29785368bb9SWolfram Sang 		if (device_may_wakeup(dev))
2989aa449beSKevin Wells 			enable_irq_wake(rtc->irq);
2999aa449beSKevin Wells 		else
3009aa449beSKevin Wells 			disable_irq_wake(rtc->irq);
3019aa449beSKevin Wells 	}
3029aa449beSKevin Wells 
3039aa449beSKevin Wells 	return 0;
3049aa449beSKevin Wells }
3059aa449beSKevin Wells 
3069aa449beSKevin Wells static int lpc32xx_rtc_resume(struct device *dev)
3079aa449beSKevin Wells {
30885368bb9SWolfram Sang 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
3099aa449beSKevin Wells 
31085368bb9SWolfram Sang 	if (rtc->irq >= 0 && device_may_wakeup(dev))
3119aa449beSKevin Wells 		disable_irq_wake(rtc->irq);
3129aa449beSKevin Wells 
3139aa449beSKevin Wells 	return 0;
3149aa449beSKevin Wells }
3159aa449beSKevin Wells 
3169aa449beSKevin Wells /* Unconditionally disable the alarm */
3179aa449beSKevin Wells static int lpc32xx_rtc_freeze(struct device *dev)
3189aa449beSKevin Wells {
31985368bb9SWolfram Sang 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
3209aa449beSKevin Wells 
3219aa449beSKevin Wells 	spin_lock_irq(&rtc->lock);
3229aa449beSKevin Wells 
3239aa449beSKevin Wells 	rtc_writel(rtc, LPC32XX_RTC_CTRL,
3249aa449beSKevin Wells 		rtc_readl(rtc, LPC32XX_RTC_CTRL) &
3259aa449beSKevin Wells 			  ~LPC32XX_RTC_CTRL_MATCH0);
3269aa449beSKevin Wells 
3279aa449beSKevin Wells 	spin_unlock_irq(&rtc->lock);
3289aa449beSKevin Wells 
3299aa449beSKevin Wells 	return 0;
3309aa449beSKevin Wells }
3319aa449beSKevin Wells 
3329aa449beSKevin Wells static int lpc32xx_rtc_thaw(struct device *dev)
3339aa449beSKevin Wells {
33485368bb9SWolfram Sang 	struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
3359aa449beSKevin Wells 
3369aa449beSKevin Wells 	if (rtc->alarm_enabled) {
3379aa449beSKevin Wells 		spin_lock_irq(&rtc->lock);
3389aa449beSKevin Wells 
3399aa449beSKevin Wells 		rtc_writel(rtc, LPC32XX_RTC_CTRL,
3409aa449beSKevin Wells 			   rtc_readl(rtc, LPC32XX_RTC_CTRL) |
3419aa449beSKevin Wells 			   LPC32XX_RTC_CTRL_MATCH0);
3429aa449beSKevin Wells 
3439aa449beSKevin Wells 		spin_unlock_irq(&rtc->lock);
3449aa449beSKevin Wells 	}
3459aa449beSKevin Wells 
3469aa449beSKevin Wells 	return 0;
3479aa449beSKevin Wells }
3489aa449beSKevin Wells 
3499aa449beSKevin Wells static const struct dev_pm_ops lpc32xx_rtc_pm_ops = {
3509aa449beSKevin Wells 	.suspend = lpc32xx_rtc_suspend,
3519aa449beSKevin Wells 	.resume = lpc32xx_rtc_resume,
3529aa449beSKevin Wells 	.freeze = lpc32xx_rtc_freeze,
3539aa449beSKevin Wells 	.thaw = lpc32xx_rtc_thaw,
3549aa449beSKevin Wells 	.restore = lpc32xx_rtc_resume
3559aa449beSKevin Wells };
3569aa449beSKevin Wells 
3579aa449beSKevin Wells #define LPC32XX_RTC_PM_OPS (&lpc32xx_rtc_pm_ops)
3589aa449beSKevin Wells #else
3599aa449beSKevin Wells #define LPC32XX_RTC_PM_OPS NULL
3609aa449beSKevin Wells #endif
3619aa449beSKevin Wells 
362e862e7c4SRoland Stigge #ifdef CONFIG_OF
363e862e7c4SRoland Stigge static const struct of_device_id lpc32xx_rtc_match[] = {
364e862e7c4SRoland Stigge 	{ .compatible = "nxp,lpc3220-rtc" },
365e862e7c4SRoland Stigge 	{ }
366e862e7c4SRoland Stigge };
367e862e7c4SRoland Stigge MODULE_DEVICE_TABLE(of, lpc32xx_rtc_match);
368e862e7c4SRoland Stigge #endif
369e862e7c4SRoland Stigge 
3709aa449beSKevin Wells static struct platform_driver lpc32xx_rtc_driver = {
3719aa449beSKevin Wells 	.probe		= lpc32xx_rtc_probe,
3725a167f45SGreg Kroah-Hartman 	.remove		= lpc32xx_rtc_remove,
3739aa449beSKevin Wells 	.driver = {
3746bbad585SAlexandre Belloni 		.name	= "rtc-lpc32xx",
375e862e7c4SRoland Stigge 		.pm	= LPC32XX_RTC_PM_OPS,
376e862e7c4SRoland Stigge 		.of_match_table = of_match_ptr(lpc32xx_rtc_match),
3779aa449beSKevin Wells 	},
3789aa449beSKevin Wells };
3799aa449beSKevin Wells 
3800c4eae66SAxel Lin module_platform_driver(lpc32xx_rtc_driver);
3819aa449beSKevin Wells 
3829aa449beSKevin Wells MODULE_AUTHOR("Kevin Wells <wellsk40@gmail.com");
3839aa449beSKevin Wells MODULE_DESCRIPTION("RTC driver for the LPC32xx SoC");
3849aa449beSKevin Wells MODULE_LICENSE("GPL");
3859aa449beSKevin Wells MODULE_ALIAS("platform:rtc-lpc32xx");
386