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*6bbad585SAlexandre Belloni int rtcirq, err; 2039aa449beSKevin Wells u32 tmp; 2049aa449beSKevin Wells 2059aa449beSKevin Wells rtcirq = platform_get_irq(pdev, 0); 206529af7d1SVladimir Zapolskiy if (rtcirq < 0) { 2079aa449beSKevin Wells dev_warn(&pdev->dev, "Can't get interrupt resource\n"); 2089aa449beSKevin Wells rtcirq = -1; 2099aa449beSKevin Wells } 2109aa449beSKevin Wells 2119aa449beSKevin Wells rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL); 2125c336b0aSJingoo Han if (unlikely(!rtc)) 2139aa449beSKevin Wells return -ENOMEM; 2145c336b0aSJingoo Han 2159aa449beSKevin Wells rtc->irq = rtcirq; 2169aa449beSKevin Wells 2177c1d69eeSJulia Lawall res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 2187c1d69eeSJulia Lawall rtc->rtc_base = devm_ioremap_resource(&pdev->dev, res); 2197c1d69eeSJulia Lawall if (IS_ERR(rtc->rtc_base)) 2207c1d69eeSJulia Lawall return PTR_ERR(rtc->rtc_base); 2219aa449beSKevin Wells 2229aa449beSKevin Wells spin_lock_init(&rtc->lock); 2239aa449beSKevin Wells 2249aa449beSKevin Wells /* 22525985edcSLucas De Marchi * The RTC is on a separate power domain and can keep it's state 2269aa449beSKevin Wells * across a chip power cycle. If the RTC has never been previously 2279aa449beSKevin Wells * setup, then set it up now for the first time. 2289aa449beSKevin Wells */ 2299aa449beSKevin Wells tmp = rtc_readl(rtc, LPC32XX_RTC_CTRL); 2309aa449beSKevin Wells if (rtc_readl(rtc, LPC32XX_RTC_KEY) != LPC32XX_RTC_KEY_ONSW_LOADVAL) { 2319aa449beSKevin Wells tmp &= ~(LPC32XX_RTC_CTRL_SW_RESET | 2329aa449beSKevin Wells LPC32XX_RTC_CTRL_CNTR_DIS | 2339aa449beSKevin Wells LPC32XX_RTC_CTRL_MATCH0 | 2349aa449beSKevin Wells LPC32XX_RTC_CTRL_MATCH1 | 2359aa449beSKevin Wells LPC32XX_RTC_CTRL_ONSW_MATCH0 | 2369aa449beSKevin Wells LPC32XX_RTC_CTRL_ONSW_MATCH1 | 2379aa449beSKevin Wells LPC32XX_RTC_CTRL_ONSW_FORCE_HI); 2389aa449beSKevin Wells rtc_writel(rtc, LPC32XX_RTC_CTRL, tmp); 2399aa449beSKevin Wells 2409aa449beSKevin Wells /* Clear latched interrupt states */ 2419aa449beSKevin Wells rtc_writel(rtc, LPC32XX_RTC_MATCH0, 0xFFFFFFFF); 2429aa449beSKevin Wells rtc_writel(rtc, LPC32XX_RTC_INTSTAT, 2439aa449beSKevin Wells LPC32XX_RTC_INTSTAT_MATCH0 | 2449aa449beSKevin Wells LPC32XX_RTC_INTSTAT_MATCH1 | 2459aa449beSKevin Wells LPC32XX_RTC_INTSTAT_ONSW); 2469aa449beSKevin Wells 2479aa449beSKevin Wells /* Write key value to RTC so it won't reload on reset */ 2489aa449beSKevin Wells rtc_writel(rtc, LPC32XX_RTC_KEY, 2499aa449beSKevin Wells LPC32XX_RTC_KEY_ONSW_LOADVAL); 2509aa449beSKevin Wells } else { 2519aa449beSKevin Wells rtc_writel(rtc, LPC32XX_RTC_CTRL, 2529aa449beSKevin Wells tmp & ~LPC32XX_RTC_CTRL_MATCH0); 2539aa449beSKevin Wells } 2549aa449beSKevin Wells 2559aa449beSKevin Wells platform_set_drvdata(pdev, rtc); 2569aa449beSKevin Wells 257*6bbad585SAlexandre Belloni rtc->rtc = devm_rtc_allocate_device(&pdev->dev); 258*6bbad585SAlexandre Belloni if (IS_ERR(rtc->rtc)) 2599aa449beSKevin Wells return PTR_ERR(rtc->rtc); 260*6bbad585SAlexandre Belloni 261*6bbad585SAlexandre Belloni rtc->rtc->ops = &lpc32xx_rtc_ops; 262*6bbad585SAlexandre Belloni 263*6bbad585SAlexandre Belloni err = rtc_register_device(rtc->rtc); 264*6bbad585SAlexandre Belloni if (err) 265*6bbad585SAlexandre Belloni return err; 2669aa449beSKevin Wells 2679aa449beSKevin Wells /* 2689aa449beSKevin Wells * IRQ is enabled after device registration in case alarm IRQ 2699aa449beSKevin Wells * is pending upon suspend exit. 2709aa449beSKevin Wells */ 2719aa449beSKevin Wells if (rtc->irq >= 0) { 2729aa449beSKevin Wells if (devm_request_irq(&pdev->dev, rtc->irq, 2739aa449beSKevin Wells lpc32xx_rtc_alarm_interrupt, 2742f6e5f94SYong Zhang 0, pdev->name, rtc) < 0) { 2759aa449beSKevin Wells dev_warn(&pdev->dev, "Can't request interrupt.\n"); 2769aa449beSKevin Wells rtc->irq = -1; 2779aa449beSKevin Wells } else { 2789aa449beSKevin Wells device_init_wakeup(&pdev->dev, 1); 2799aa449beSKevin Wells } 2809aa449beSKevin Wells } 2819aa449beSKevin Wells 2829aa449beSKevin Wells return 0; 2839aa449beSKevin Wells } 2849aa449beSKevin Wells 2855a167f45SGreg Kroah-Hartman static int lpc32xx_rtc_remove(struct platform_device *pdev) 2869aa449beSKevin Wells { 2879aa449beSKevin Wells struct lpc32xx_rtc *rtc = platform_get_drvdata(pdev); 2889aa449beSKevin Wells 2899aa449beSKevin Wells if (rtc->irq >= 0) 2909aa449beSKevin Wells device_init_wakeup(&pdev->dev, 0); 2919aa449beSKevin Wells 2929aa449beSKevin Wells return 0; 2939aa449beSKevin Wells } 2949aa449beSKevin Wells 2959aa449beSKevin Wells #ifdef CONFIG_PM 2969aa449beSKevin Wells static int lpc32xx_rtc_suspend(struct device *dev) 2979aa449beSKevin Wells { 29885368bb9SWolfram Sang struct lpc32xx_rtc *rtc = dev_get_drvdata(dev); 2999aa449beSKevin Wells 3009aa449beSKevin Wells if (rtc->irq >= 0) { 30185368bb9SWolfram Sang if (device_may_wakeup(dev)) 3029aa449beSKevin Wells enable_irq_wake(rtc->irq); 3039aa449beSKevin Wells else 3049aa449beSKevin Wells disable_irq_wake(rtc->irq); 3059aa449beSKevin Wells } 3069aa449beSKevin Wells 3079aa449beSKevin Wells return 0; 3089aa449beSKevin Wells } 3099aa449beSKevin Wells 3109aa449beSKevin Wells static int lpc32xx_rtc_resume(struct device *dev) 3119aa449beSKevin Wells { 31285368bb9SWolfram Sang struct lpc32xx_rtc *rtc = dev_get_drvdata(dev); 3139aa449beSKevin Wells 31485368bb9SWolfram Sang if (rtc->irq >= 0 && device_may_wakeup(dev)) 3159aa449beSKevin Wells disable_irq_wake(rtc->irq); 3169aa449beSKevin Wells 3179aa449beSKevin Wells return 0; 3189aa449beSKevin Wells } 3199aa449beSKevin Wells 3209aa449beSKevin Wells /* Unconditionally disable the alarm */ 3219aa449beSKevin Wells static int lpc32xx_rtc_freeze(struct device *dev) 3229aa449beSKevin Wells { 32385368bb9SWolfram Sang struct lpc32xx_rtc *rtc = dev_get_drvdata(dev); 3249aa449beSKevin Wells 3259aa449beSKevin Wells spin_lock_irq(&rtc->lock); 3269aa449beSKevin Wells 3279aa449beSKevin Wells rtc_writel(rtc, LPC32XX_RTC_CTRL, 3289aa449beSKevin Wells rtc_readl(rtc, LPC32XX_RTC_CTRL) & 3299aa449beSKevin Wells ~LPC32XX_RTC_CTRL_MATCH0); 3309aa449beSKevin Wells 3319aa449beSKevin Wells spin_unlock_irq(&rtc->lock); 3329aa449beSKevin Wells 3339aa449beSKevin Wells return 0; 3349aa449beSKevin Wells } 3359aa449beSKevin Wells 3369aa449beSKevin Wells static int lpc32xx_rtc_thaw(struct device *dev) 3379aa449beSKevin Wells { 33885368bb9SWolfram Sang struct lpc32xx_rtc *rtc = dev_get_drvdata(dev); 3399aa449beSKevin Wells 3409aa449beSKevin Wells if (rtc->alarm_enabled) { 3419aa449beSKevin Wells spin_lock_irq(&rtc->lock); 3429aa449beSKevin Wells 3439aa449beSKevin Wells rtc_writel(rtc, LPC32XX_RTC_CTRL, 3449aa449beSKevin Wells rtc_readl(rtc, LPC32XX_RTC_CTRL) | 3459aa449beSKevin Wells LPC32XX_RTC_CTRL_MATCH0); 3469aa449beSKevin Wells 3479aa449beSKevin Wells spin_unlock_irq(&rtc->lock); 3489aa449beSKevin Wells } 3499aa449beSKevin Wells 3509aa449beSKevin Wells return 0; 3519aa449beSKevin Wells } 3529aa449beSKevin Wells 3539aa449beSKevin Wells static const struct dev_pm_ops lpc32xx_rtc_pm_ops = { 3549aa449beSKevin Wells .suspend = lpc32xx_rtc_suspend, 3559aa449beSKevin Wells .resume = lpc32xx_rtc_resume, 3569aa449beSKevin Wells .freeze = lpc32xx_rtc_freeze, 3579aa449beSKevin Wells .thaw = lpc32xx_rtc_thaw, 3589aa449beSKevin Wells .restore = lpc32xx_rtc_resume 3599aa449beSKevin Wells }; 3609aa449beSKevin Wells 3619aa449beSKevin Wells #define LPC32XX_RTC_PM_OPS (&lpc32xx_rtc_pm_ops) 3629aa449beSKevin Wells #else 3639aa449beSKevin Wells #define LPC32XX_RTC_PM_OPS NULL 3649aa449beSKevin Wells #endif 3659aa449beSKevin Wells 366e862e7c4SRoland Stigge #ifdef CONFIG_OF 367e862e7c4SRoland Stigge static const struct of_device_id lpc32xx_rtc_match[] = { 368e862e7c4SRoland Stigge { .compatible = "nxp,lpc3220-rtc" }, 369e862e7c4SRoland Stigge { } 370e862e7c4SRoland Stigge }; 371e862e7c4SRoland Stigge MODULE_DEVICE_TABLE(of, lpc32xx_rtc_match); 372e862e7c4SRoland Stigge #endif 373e862e7c4SRoland Stigge 3749aa449beSKevin Wells static struct platform_driver lpc32xx_rtc_driver = { 3759aa449beSKevin Wells .probe = lpc32xx_rtc_probe, 3765a167f45SGreg Kroah-Hartman .remove = lpc32xx_rtc_remove, 3779aa449beSKevin Wells .driver = { 378*6bbad585SAlexandre Belloni .name = "rtc-lpc32xx", 379e862e7c4SRoland Stigge .pm = LPC32XX_RTC_PM_OPS, 380e862e7c4SRoland Stigge .of_match_table = of_match_ptr(lpc32xx_rtc_match), 3819aa449beSKevin Wells }, 3829aa449beSKevin Wells }; 3839aa449beSKevin Wells 3840c4eae66SAxel Lin module_platform_driver(lpc32xx_rtc_driver); 3859aa449beSKevin Wells 3869aa449beSKevin Wells MODULE_AUTHOR("Kevin Wells <wellsk40@gmail.com"); 3879aa449beSKevin Wells MODULE_DESCRIPTION("RTC driver for the LPC32xx SoC"); 3889aa449beSKevin Wells MODULE_LICENSE("GPL"); 3899aa449beSKevin Wells MODULE_ALIAS("platform:rtc-lpc32xx"); 390