Alexandre Belloni | 7d624621 | 2019-04-07 23:10:27 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007-2009 ST-Ericsson AB |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 4 | * Real Time Clock interface for ST-Ericsson AB COH 901 331 RTC. |
| 5 | * Author: Linus Walleij <linus.walleij@stericsson.com> |
| 6 | * Based on rtc-pl031.c by Deepak Saxena <dsaxena@plexity.net> |
| 7 | * Copyright 2006 (c) MontaVista Software, Inc. |
| 8 | */ |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/module.h> |
Randy Dunlap | ac31672 | 2018-06-19 22:47:28 -0700 | [diff] [blame] | 11 | #include <linux/mod_devicetable.h> |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 12 | #include <linux/rtc.h> |
| 13 | #include <linux/clk.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/pm.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * Registers in the COH 901 331 |
| 22 | */ |
| 23 | /* Alarm value 32bit (R/W) */ |
| 24 | #define COH901331_ALARM 0x00U |
| 25 | /* Used to set current time 32bit (R/W) */ |
| 26 | #define COH901331_SET_TIME 0x04U |
| 27 | /* Indication if current time is valid 32bit (R/-) */ |
| 28 | #define COH901331_VALID 0x08U |
| 29 | /* Read the current time 32bit (R/-) */ |
| 30 | #define COH901331_CUR_TIME 0x0cU |
| 31 | /* Event register for the "alarm" interrupt */ |
| 32 | #define COH901331_IRQ_EVENT 0x10U |
| 33 | /* Mask register for the "alarm" interrupt */ |
| 34 | #define COH901331_IRQ_MASK 0x14U |
| 35 | /* Force register for the "alarm" interrupt */ |
| 36 | #define COH901331_IRQ_FORCE 0x18U |
| 37 | |
| 38 | /* |
| 39 | * Reference to RTC block clock |
| 40 | * Notice that the frequent clk_enable()/clk_disable() on this |
| 41 | * clock is mainly to be able to turn on/off other clocks in the |
| 42 | * hierarchy as needed, the RTC clock is always on anyway. |
| 43 | */ |
| 44 | struct coh901331_port { |
| 45 | struct rtc_device *rtc; |
| 46 | struct clk *clk; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 47 | void __iomem *virtbase; |
| 48 | int irq; |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 49 | #ifdef CONFIG_PM_SLEEP |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 50 | u32 irqmaskstore; |
| 51 | #endif |
| 52 | }; |
| 53 | |
| 54 | static irqreturn_t coh901331_interrupt(int irq, void *data) |
| 55 | { |
| 56 | struct coh901331_port *rtap = data; |
| 57 | |
| 58 | clk_enable(rtap->clk); |
| 59 | /* Ack IRQ */ |
| 60 | writel(1, rtap->virtbase + COH901331_IRQ_EVENT); |
Linus Walleij | 378ce74 | 2009-11-14 01:03:24 +0100 | [diff] [blame] | 61 | /* |
| 62 | * Disable the interrupt. This is necessary because |
| 63 | * the RTC lives on a lower-clocked line and will |
| 64 | * not release the IRQ line until after a few (slower) |
| 65 | * clock cycles. The interrupt will be re-enabled when |
| 66 | * a new alarm is set anyway. |
| 67 | */ |
| 68 | writel(0, rtap->virtbase + COH901331_IRQ_MASK); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 69 | clk_disable(rtap->clk); |
Linus Walleij | 378ce74 | 2009-11-14 01:03:24 +0100 | [diff] [blame] | 70 | |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 71 | /* Set alarm flag */ |
| 72 | rtc_update_irq(rtap->rtc, 1, RTC_AF); |
| 73 | |
| 74 | return IRQ_HANDLED; |
| 75 | } |
| 76 | |
| 77 | static int coh901331_read_time(struct device *dev, struct rtc_time *tm) |
| 78 | { |
| 79 | struct coh901331_port *rtap = dev_get_drvdata(dev); |
| 80 | |
| 81 | clk_enable(rtap->clk); |
| 82 | /* Check if the time is valid */ |
Alexandre Belloni | 9cf2f9b | 2019-04-07 23:10:25 +0200 | [diff] [blame] | 83 | if (!readl(rtap->virtbase + COH901331_VALID)) { |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 84 | clk_disable(rtap->clk); |
Alexandre Belloni | 9cf2f9b | 2019-04-07 23:10:25 +0200 | [diff] [blame] | 85 | return -EINVAL; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 86 | } |
Alexandre Belloni | 9cf2f9b | 2019-04-07 23:10:25 +0200 | [diff] [blame] | 87 | |
| 88 | rtc_time64_to_tm(readl(rtap->virtbase + COH901331_CUR_TIME), tm); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 89 | clk_disable(rtap->clk); |
Alexandre Belloni | 9cf2f9b | 2019-04-07 23:10:25 +0200 | [diff] [blame] | 90 | return 0; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Alexandre Belloni | febad79 | 2019-04-07 23:10:26 +0200 | [diff] [blame] | 93 | static int coh901331_set_time(struct device *dev, struct rtc_time *tm) |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 94 | { |
| 95 | struct coh901331_port *rtap = dev_get_drvdata(dev); |
| 96 | |
| 97 | clk_enable(rtap->clk); |
Alexandre Belloni | febad79 | 2019-04-07 23:10:26 +0200 | [diff] [blame] | 98 | writel(rtc_tm_to_time64(tm), rtap->virtbase + COH901331_SET_TIME); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 99 | clk_disable(rtap->clk); |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | static int coh901331_read_alarm(struct device *dev, struct rtc_wkalrm *alarm) |
| 105 | { |
| 106 | struct coh901331_port *rtap = dev_get_drvdata(dev); |
| 107 | |
| 108 | clk_enable(rtap->clk); |
Alexandre Belloni | 9cf2f9b | 2019-04-07 23:10:25 +0200 | [diff] [blame] | 109 | rtc_time64_to_tm(readl(rtap->virtbase + COH901331_ALARM), &alarm->time); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 110 | alarm->pending = readl(rtap->virtbase + COH901331_IRQ_EVENT) & 1U; |
| 111 | alarm->enabled = readl(rtap->virtbase + COH901331_IRQ_MASK) & 1U; |
| 112 | clk_disable(rtap->clk); |
| 113 | |
| 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | static int coh901331_set_alarm(struct device *dev, struct rtc_wkalrm *alarm) |
| 118 | { |
| 119 | struct coh901331_port *rtap = dev_get_drvdata(dev); |
Alexandre Belloni | 9cf2f9b | 2019-04-07 23:10:25 +0200 | [diff] [blame] | 120 | unsigned long time = rtc_tm_to_time64(&alarm->time); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 121 | |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 122 | clk_enable(rtap->clk); |
| 123 | writel(time, rtap->virtbase + COH901331_ALARM); |
| 124 | writel(alarm->enabled, rtap->virtbase + COH901331_IRQ_MASK); |
| 125 | clk_disable(rtap->clk); |
| 126 | |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | static int coh901331_alarm_irq_enable(struct device *dev, unsigned int enabled) |
| 131 | { |
| 132 | struct coh901331_port *rtap = dev_get_drvdata(dev); |
| 133 | |
| 134 | clk_enable(rtap->clk); |
| 135 | if (enabled) |
| 136 | writel(1, rtap->virtbase + COH901331_IRQ_MASK); |
| 137 | else |
| 138 | writel(0, rtap->virtbase + COH901331_IRQ_MASK); |
| 139 | clk_disable(rtap->clk); |
Linus Walleij | 378ce74 | 2009-11-14 01:03:24 +0100 | [diff] [blame] | 140 | |
| 141 | return 0; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Julia Lawall | 34c7b3a | 2016-08-31 10:05:25 +0200 | [diff] [blame] | 144 | static const struct rtc_class_ops coh901331_ops = { |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 145 | .read_time = coh901331_read_time, |
Alexandre Belloni | febad79 | 2019-04-07 23:10:26 +0200 | [diff] [blame] | 146 | .set_time = coh901331_set_time, |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 147 | .read_alarm = coh901331_read_alarm, |
| 148 | .set_alarm = coh901331_set_alarm, |
| 149 | .alarm_irq_enable = coh901331_alarm_irq_enable, |
| 150 | }; |
| 151 | |
| 152 | static int __exit coh901331_remove(struct platform_device *pdev) |
| 153 | { |
Jingoo Han | 3a02893 | 2013-07-03 15:07:12 -0700 | [diff] [blame] | 154 | struct coh901331_port *rtap = platform_get_drvdata(pdev); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 155 | |
Jingoo Han | 7fcbf5f | 2013-07-03 15:06:16 -0700 | [diff] [blame] | 156 | if (rtap) |
Linus Walleij | 8384dfe | 2012-07-30 14:41:31 -0700 | [diff] [blame] | 157 | clk_unprepare(rtap->clk); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 158 | |
| 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | |
| 163 | static int __init coh901331_probe(struct platform_device *pdev) |
| 164 | { |
| 165 | int ret; |
| 166 | struct coh901331_port *rtap; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 167 | |
Linus Walleij | 36ac1d24 | 2012-07-30 14:41:32 -0700 | [diff] [blame] | 168 | rtap = devm_kzalloc(&pdev->dev, |
| 169 | sizeof(struct coh901331_port), GFP_KERNEL); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 170 | if (!rtap) |
| 171 | return -ENOMEM; |
| 172 | |
YueHaibing | 09ef18b | 2019-10-06 18:29:20 +0800 | [diff] [blame] | 173 | rtap->virtbase = devm_platform_ioremap_resource(pdev, 0); |
Jingoo Han | daaf90f | 2014-04-03 14:49:47 -0700 | [diff] [blame] | 174 | if (IS_ERR(rtap->virtbase)) |
| 175 | return PTR_ERR(rtap->virtbase); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 176 | |
| 177 | rtap->irq = platform_get_irq(pdev, 0); |
Linus Walleij | 36ac1d24 | 2012-07-30 14:41:32 -0700 | [diff] [blame] | 178 | if (devm_request_irq(&pdev->dev, rtap->irq, coh901331_interrupt, 0, |
| 179 | "RTC COH 901 331 Alarm", rtap)) |
| 180 | return -EIO; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 181 | |
Jingoo Han | 3b759d7 | 2013-02-21 16:45:38 -0800 | [diff] [blame] | 182 | rtap->clk = devm_clk_get(&pdev->dev, NULL); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 183 | if (IS_ERR(rtap->clk)) { |
| 184 | ret = PTR_ERR(rtap->clk); |
| 185 | dev_err(&pdev->dev, "could not get clock\n"); |
Linus Walleij | 36ac1d24 | 2012-07-30 14:41:32 -0700 | [diff] [blame] | 186 | return ret; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 187 | } |
| 188 | |
Alexandre Belloni | 06cfd66 | 2019-04-07 23:10:24 +0200 | [diff] [blame] | 189 | rtap->rtc = devm_rtc_allocate_device(&pdev->dev); |
| 190 | if (IS_ERR(rtap->rtc)) |
| 191 | return PTR_ERR(rtap->rtc); |
| 192 | |
| 193 | rtap->rtc->ops = &coh901331_ops; |
| 194 | rtap->rtc->range_max = U32_MAX; |
| 195 | |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 196 | /* We enable/disable the clock only to assure it works */ |
Linus Walleij | 8384dfe | 2012-07-30 14:41:31 -0700 | [diff] [blame] | 197 | ret = clk_prepare_enable(rtap->clk); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 198 | if (ret) { |
| 199 | dev_err(&pdev->dev, "could not enable clock\n"); |
Jingoo Han | 3b759d7 | 2013-02-21 16:45:38 -0800 | [diff] [blame] | 200 | return ret; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 201 | } |
| 202 | clk_disable(rtap->clk); |
| 203 | |
Linus Walleij | 9cf3b5f | 2011-04-17 20:32:19 +0200 | [diff] [blame] | 204 | platform_set_drvdata(pdev, rtap); |
Alexandre Belloni | 06cfd66 | 2019-04-07 23:10:24 +0200 | [diff] [blame] | 205 | |
| 206 | ret = rtc_register_device(rtap->rtc); |
| 207 | if (ret) |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 208 | goto out_no_rtc; |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 209 | |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 210 | return 0; |
| 211 | |
| 212 | out_no_rtc: |
Linus Walleij | 8384dfe | 2012-07-30 14:41:31 -0700 | [diff] [blame] | 213 | clk_unprepare(rtap->clk); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 214 | return ret; |
| 215 | } |
| 216 | |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 217 | #ifdef CONFIG_PM_SLEEP |
| 218 | static int coh901331_suspend(struct device *dev) |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 219 | { |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 220 | struct coh901331_port *rtap = dev_get_drvdata(dev); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 221 | |
| 222 | /* |
| 223 | * If this RTC alarm will be used for waking the system up, |
| 224 | * don't disable it of course. Else we just disable the alarm |
| 225 | * and await suspension. |
| 226 | */ |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 227 | if (device_may_wakeup(dev)) { |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 228 | enable_irq_wake(rtap->irq); |
| 229 | } else { |
| 230 | clk_enable(rtap->clk); |
| 231 | rtap->irqmaskstore = readl(rtap->virtbase + COH901331_IRQ_MASK); |
| 232 | writel(0, rtap->virtbase + COH901331_IRQ_MASK); |
| 233 | clk_disable(rtap->clk); |
| 234 | } |
Linus Walleij | 8384dfe | 2012-07-30 14:41:31 -0700 | [diff] [blame] | 235 | clk_unprepare(rtap->clk); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 236 | return 0; |
| 237 | } |
| 238 | |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 239 | static int coh901331_resume(struct device *dev) |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 240 | { |
Kangjie Lu | 5910fa0 | 2018-12-25 20:43:33 -0600 | [diff] [blame] | 241 | int ret; |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 242 | struct coh901331_port *rtap = dev_get_drvdata(dev); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 243 | |
Kangjie Lu | 5910fa0 | 2018-12-25 20:43:33 -0600 | [diff] [blame] | 244 | ret = clk_prepare(rtap->clk); |
| 245 | if (ret) |
| 246 | return ret; |
| 247 | |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 248 | if (device_may_wakeup(dev)) { |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 249 | disable_irq_wake(rtap->irq); |
James Hogan | 5a98c04 | 2010-03-05 13:44:31 -0800 | [diff] [blame] | 250 | } else { |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 251 | clk_enable(rtap->clk); |
| 252 | writel(rtap->irqmaskstore, rtap->virtbase + COH901331_IRQ_MASK); |
| 253 | clk_disable(rtap->clk); |
James Hogan | 5a98c04 | 2010-03-05 13:44:31 -0800 | [diff] [blame] | 254 | } |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 255 | return 0; |
| 256 | } |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 257 | #endif |
| 258 | |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 259 | static SIMPLE_DEV_PM_OPS(coh901331_pm_ops, coh901331_suspend, coh901331_resume); |
| 260 | |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 261 | static void coh901331_shutdown(struct platform_device *pdev) |
| 262 | { |
Jingoo Han | 3a02893 | 2013-07-03 15:07:12 -0700 | [diff] [blame] | 263 | struct coh901331_port *rtap = platform_get_drvdata(pdev); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 264 | |
| 265 | clk_enable(rtap->clk); |
| 266 | writel(0, rtap->virtbase + COH901331_IRQ_MASK); |
Julia Lawall | 828296d | 2012-10-04 17:14:07 -0700 | [diff] [blame] | 267 | clk_disable_unprepare(rtap->clk); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Linus Walleij | a16b6c6 | 2013-04-19 13:03:13 +0200 | [diff] [blame] | 270 | static const struct of_device_id coh901331_dt_match[] = { |
| 271 | { .compatible = "stericsson,coh901331" }, |
| 272 | {}, |
| 273 | }; |
Javier Martinez Canillas | 73798d5 | 2015-08-27 13:52:02 +0200 | [diff] [blame] | 274 | MODULE_DEVICE_TABLE(of, coh901331_dt_match); |
Linus Walleij | a16b6c6 | 2013-04-19 13:03:13 +0200 | [diff] [blame] | 275 | |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 276 | static struct platform_driver coh901331_driver = { |
| 277 | .driver = { |
| 278 | .name = "rtc-coh901331", |
Jingoo Han | 62068e2 | 2013-04-29 16:21:00 -0700 | [diff] [blame] | 279 | .pm = &coh901331_pm_ops, |
Linus Walleij | a16b6c6 | 2013-04-19 13:03:13 +0200 | [diff] [blame] | 280 | .of_match_table = coh901331_dt_match, |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 281 | }, |
| 282 | .remove = __exit_p(coh901331_remove), |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 283 | .shutdown = coh901331_shutdown, |
| 284 | }; |
| 285 | |
Jingoo Han | 4fdf7a9 | 2013-04-29 16:18:37 -0700 | [diff] [blame] | 286 | module_platform_driver_probe(coh901331_driver, coh901331_probe); |
Linus Walleij | aa958f5 | 2009-09-22 16:46:24 -0700 | [diff] [blame] | 287 | |
| 288 | MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>"); |
| 289 | MODULE_DESCRIPTION("ST-Ericsson AB COH 901 331 RTC Driver"); |
| 290 | MODULE_LICENSE("GPL"); |