Fabio Estevam | 5874c7f | 2018-05-21 23:45:58 -0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // Copyright (C) 2011-2012 Freescale Semiconductor, Inc. |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 4 | |
| 5 | #include <linux/init.h> |
| 6 | #include <linux/io.h> |
| 7 | #include <linux/kernel.h> |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/of.h> |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 10 | #include <linux/platform_device.h> |
Anson Huang | e7afddb | 2019-03-27 06:18:20 +0000 | [diff] [blame] | 11 | #include <linux/pm_wakeirq.h> |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 12 | #include <linux/rtc.h> |
Sanchayan Maity | 7f89939 | 2014-12-10 15:54:17 -0800 | [diff] [blame] | 13 | #include <linux/clk.h> |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 14 | #include <linux/mfd/syscon.h> |
| 15 | #include <linux/regmap.h> |
| 16 | |
| 17 | #define SNVS_LPREGISTER_OFFSET 0x34 |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 18 | |
| 19 | /* These register offsets are relative to LP (Low Power) range */ |
| 20 | #define SNVS_LPCR 0x04 |
| 21 | #define SNVS_LPSR 0x18 |
| 22 | #define SNVS_LPSRTCMR 0x1c |
| 23 | #define SNVS_LPSRTCLR 0x20 |
| 24 | #define SNVS_LPTAR 0x24 |
| 25 | #define SNVS_LPPGDR 0x30 |
| 26 | |
| 27 | #define SNVS_LPCR_SRTC_ENV (1 << 0) |
| 28 | #define SNVS_LPCR_LPTA_EN (1 << 1) |
| 29 | #define SNVS_LPCR_LPWUI_EN (1 << 3) |
| 30 | #define SNVS_LPSR_LPTA (1 << 0) |
| 31 | |
| 32 | #define SNVS_LPPGDR_INIT 0x41736166 |
| 33 | #define CNTR_TO_SECS_SH 15 |
| 34 | |
| 35 | struct snvs_rtc_data { |
| 36 | struct rtc_device *rtc; |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 37 | struct regmap *regmap; |
| 38 | int offset; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 39 | int irq; |
Sanchayan Maity | 7f89939 | 2014-12-10 15:54:17 -0800 | [diff] [blame] | 40 | struct clk *clk; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 43 | /* Read 64 bit timer register, which could be in inconsistent state */ |
| 44 | static u64 rtc_read_lpsrt(struct snvs_rtc_data *data) |
| 45 | { |
| 46 | u32 msb, lsb; |
| 47 | |
| 48 | regmap_read(data->regmap, data->offset + SNVS_LPSRTCMR, &msb); |
| 49 | regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &lsb); |
| 50 | return (u64)msb << 32 | lsb; |
| 51 | } |
| 52 | |
| 53 | /* Read the secure real time counter, taking care to deal with the cases of the |
| 54 | * counter updating while being read. |
| 55 | */ |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 56 | static u32 rtc_read_lp_counter(struct snvs_rtc_data *data) |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 57 | { |
| 58 | u64 read1, read2; |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 59 | unsigned int timeout = 100; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 60 | |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 61 | /* As expected, the registers might update between the read of the LSB |
| 62 | * reg and the MSB reg. It's also possible that one register might be |
| 63 | * in partially modified state as well. |
| 64 | */ |
| 65 | read1 = rtc_read_lpsrt(data); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 66 | do { |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 67 | read2 = read1; |
| 68 | read1 = rtc_read_lpsrt(data); |
| 69 | } while (read1 != read2 && --timeout); |
| 70 | if (!timeout) |
| 71 | dev_err(&data->rtc->dev, "Timeout trying to get valid LPSRT Counter read\n"); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 72 | |
| 73 | /* Convert 47-bit counter to 32-bit raw second count */ |
| 74 | return (u32) (read1 >> CNTR_TO_SECS_SH); |
| 75 | } |
| 76 | |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 77 | /* Just read the lsb from the counter, dealing with inconsistent state */ |
| 78 | static int rtc_read_lp_counter_lsb(struct snvs_rtc_data *data, u32 *lsb) |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 79 | { |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 80 | u32 count1, count2; |
| 81 | unsigned int timeout = 100; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 82 | |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 83 | regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count1); |
| 84 | do { |
| 85 | count2 = count1; |
| 86 | regmap_read(data->regmap, data->offset + SNVS_LPSRTCLR, &count1); |
| 87 | } while (count1 != count2 && --timeout); |
| 88 | if (!timeout) { |
| 89 | dev_err(&data->rtc->dev, "Timeout trying to get valid LPSRT Counter read\n"); |
| 90 | return -ETIMEDOUT; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 91 | } |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 92 | |
| 93 | *lsb = count1; |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | static int rtc_write_sync_lp(struct snvs_rtc_data *data) |
| 98 | { |
| 99 | u32 count1, count2; |
| 100 | u32 elapsed; |
| 101 | unsigned int timeout = 1000; |
| 102 | int ret; |
| 103 | |
| 104 | ret = rtc_read_lp_counter_lsb(data, &count1); |
| 105 | if (ret) |
| 106 | return ret; |
| 107 | |
| 108 | /* Wait for 3 CKIL cycles, about 61.0-91.5 µs */ |
| 109 | do { |
| 110 | ret = rtc_read_lp_counter_lsb(data, &count2); |
| 111 | if (ret) |
| 112 | return ret; |
| 113 | elapsed = count2 - count1; /* wrap around _is_ handled! */ |
| 114 | } while (elapsed < 3 && --timeout); |
| 115 | if (!timeout) { |
| 116 | dev_err(&data->rtc->dev, "Timeout waiting for LPSRT Counter to change\n"); |
| 117 | return -ETIMEDOUT; |
| 118 | } |
| 119 | return 0; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static int snvs_rtc_enable(struct snvs_rtc_data *data, bool enable) |
| 123 | { |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 124 | int timeout = 1000; |
| 125 | u32 lpcr; |
| 126 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 127 | regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_SRTC_ENV, |
| 128 | enable ? SNVS_LPCR_SRTC_ENV : 0); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 129 | |
| 130 | while (--timeout) { |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 131 | regmap_read(data->regmap, data->offset + SNVS_LPCR, &lpcr); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 132 | |
| 133 | if (enable) { |
| 134 | if (lpcr & SNVS_LPCR_SRTC_ENV) |
| 135 | break; |
| 136 | } else { |
| 137 | if (!(lpcr & SNVS_LPCR_SRTC_ENV)) |
| 138 | break; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | if (!timeout) |
| 143 | return -ETIMEDOUT; |
| 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | static int snvs_rtc_read_time(struct device *dev, struct rtc_time *tm) |
| 149 | { |
| 150 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 151 | unsigned long time; |
| 152 | int ret; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 153 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 154 | if (data->clk) { |
| 155 | ret = clk_enable(data->clk); |
| 156 | if (ret) |
| 157 | return ret; |
| 158 | } |
| 159 | |
| 160 | time = rtc_read_lp_counter(data); |
Alexandre Belloni | c59a9fc | 2019-08-28 22:50:56 +0200 | [diff] [blame] | 161 | rtc_time64_to_tm(time, tm); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 162 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 163 | if (data->clk) |
| 164 | clk_disable(data->clk); |
| 165 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | static int snvs_rtc_set_time(struct device *dev, struct rtc_time *tm) |
| 170 | { |
| 171 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
Alexandre Belloni | c59a9fc | 2019-08-28 22:50:56 +0200 | [diff] [blame] | 172 | unsigned long time = rtc_tm_to_time64(tm); |
Bryan O'Donoghue | 1485991 | 2018-03-28 20:14:05 +0100 | [diff] [blame] | 173 | int ret; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 174 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 175 | if (data->clk) { |
| 176 | ret = clk_enable(data->clk); |
| 177 | if (ret) |
| 178 | return ret; |
| 179 | } |
| 180 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 181 | /* Disable RTC first */ |
Bryan O'Donoghue | 1485991 | 2018-03-28 20:14:05 +0100 | [diff] [blame] | 182 | ret = snvs_rtc_enable(data, false); |
| 183 | if (ret) |
| 184 | return ret; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 185 | |
| 186 | /* Write 32-bit time to 47-bit timer, leaving 15 LSBs blank */ |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 187 | regmap_write(data->regmap, data->offset + SNVS_LPSRTCLR, time << CNTR_TO_SECS_SH); |
| 188 | regmap_write(data->regmap, data->offset + SNVS_LPSRTCMR, time >> (32 - CNTR_TO_SECS_SH)); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 189 | |
| 190 | /* Enable RTC again */ |
Bryan O'Donoghue | 1485991 | 2018-03-28 20:14:05 +0100 | [diff] [blame] | 191 | ret = snvs_rtc_enable(data, true); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 192 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 193 | if (data->clk) |
| 194 | clk_disable(data->clk); |
| 195 | |
Bryan O'Donoghue | 1485991 | 2018-03-28 20:14:05 +0100 | [diff] [blame] | 196 | return ret; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | static int snvs_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 200 | { |
| 201 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
| 202 | u32 lptar, lpsr; |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 203 | int ret; |
| 204 | |
| 205 | if (data->clk) { |
| 206 | ret = clk_enable(data->clk); |
| 207 | if (ret) |
| 208 | return ret; |
| 209 | } |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 210 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 211 | regmap_read(data->regmap, data->offset + SNVS_LPTAR, &lptar); |
Alexandre Belloni | c59a9fc | 2019-08-28 22:50:56 +0200 | [diff] [blame] | 212 | rtc_time64_to_tm(lptar, &alrm->time); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 213 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 214 | regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 215 | alrm->pending = (lpsr & SNVS_LPSR_LPTA) ? 1 : 0; |
| 216 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 217 | if (data->clk) |
| 218 | clk_disable(data->clk); |
| 219 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | static int snvs_rtc_alarm_irq_enable(struct device *dev, unsigned int enable) |
| 224 | { |
| 225 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 226 | int ret; |
| 227 | |
| 228 | if (data->clk) { |
| 229 | ret = clk_enable(data->clk); |
| 230 | if (ret) |
| 231 | return ret; |
| 232 | } |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 233 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 234 | regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, |
| 235 | (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN), |
| 236 | enable ? (SNVS_LPCR_LPTA_EN | SNVS_LPCR_LPWUI_EN) : 0); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 237 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 238 | ret = rtc_write_sync_lp(data); |
| 239 | |
| 240 | if (data->clk) |
| 241 | clk_disable(data->clk); |
| 242 | |
| 243 | return ret; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | static int snvs_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
| 247 | { |
| 248 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
Alexandre Belloni | c59a9fc | 2019-08-28 22:50:56 +0200 | [diff] [blame] | 249 | unsigned long time = rtc_tm_to_time64(&alrm->time); |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 250 | int ret; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 251 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 252 | if (data->clk) { |
| 253 | ret = clk_enable(data->clk); |
| 254 | if (ret) |
| 255 | return ret; |
| 256 | } |
| 257 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 258 | regmap_update_bits(data->regmap, data->offset + SNVS_LPCR, SNVS_LPCR_LPTA_EN, 0); |
Trent Piepho | cd7f3a2 | 2018-05-16 16:45:51 -0700 | [diff] [blame] | 259 | ret = rtc_write_sync_lp(data); |
| 260 | if (ret) |
| 261 | return ret; |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 262 | regmap_write(data->regmap, data->offset + SNVS_LPTAR, time); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 263 | |
| 264 | /* Clear alarm interrupt status bit */ |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 265 | regmap_write(data->regmap, data->offset + SNVS_LPSR, SNVS_LPSR_LPTA); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 266 | |
Anson Huang | 4b957bd | 2020-05-22 10:19:56 +0800 | [diff] [blame] | 267 | if (data->clk) |
| 268 | clk_disable(data->clk); |
| 269 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 270 | return snvs_rtc_alarm_irq_enable(dev, alrm->enabled); |
| 271 | } |
| 272 | |
| 273 | static const struct rtc_class_ops snvs_rtc_ops = { |
| 274 | .read_time = snvs_rtc_read_time, |
| 275 | .set_time = snvs_rtc_set_time, |
| 276 | .read_alarm = snvs_rtc_read_alarm, |
| 277 | .set_alarm = snvs_rtc_set_alarm, |
| 278 | .alarm_irq_enable = snvs_rtc_alarm_irq_enable, |
| 279 | }; |
| 280 | |
| 281 | static irqreturn_t snvs_rtc_irq_handler(int irq, void *dev_id) |
| 282 | { |
| 283 | struct device *dev = dev_id; |
| 284 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
| 285 | u32 lpsr; |
| 286 | u32 events = 0; |
| 287 | |
Anson Huang | edb190c | 2019-01-11 07:09:02 +0000 | [diff] [blame] | 288 | if (data->clk) |
| 289 | clk_enable(data->clk); |
| 290 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 291 | regmap_read(data->regmap, data->offset + SNVS_LPSR, &lpsr); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 292 | |
| 293 | if (lpsr & SNVS_LPSR_LPTA) { |
| 294 | events |= (RTC_AF | RTC_IRQF); |
| 295 | |
| 296 | /* RTC alarm should be one-shot */ |
| 297 | snvs_rtc_alarm_irq_enable(dev, 0); |
| 298 | |
| 299 | rtc_update_irq(data->rtc, 1, events); |
| 300 | } |
| 301 | |
| 302 | /* clear interrupt status */ |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 303 | regmap_write(data->regmap, data->offset + SNVS_LPSR, lpsr); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 304 | |
Anson Huang | edb190c | 2019-01-11 07:09:02 +0000 | [diff] [blame] | 305 | if (data->clk) |
| 306 | clk_disable(data->clk); |
| 307 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 308 | return events ? IRQ_HANDLED : IRQ_NONE; |
| 309 | } |
| 310 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 311 | static const struct regmap_config snvs_rtc_config = { |
| 312 | .reg_bits = 32, |
| 313 | .val_bits = 32, |
| 314 | .reg_stride = 4, |
| 315 | }; |
| 316 | |
Anson Huang | 7863bd0 | 2020-03-13 22:30:49 +0800 | [diff] [blame] | 317 | static void snvs_rtc_action(void *data) |
| 318 | { |
| 319 | if (data) |
| 320 | clk_disable_unprepare(data); |
| 321 | } |
| 322 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 323 | static int snvs_rtc_probe(struct platform_device *pdev) |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 324 | { |
| 325 | struct snvs_rtc_data *data; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 326 | int ret; |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 327 | void __iomem *mmio; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 328 | |
| 329 | data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); |
| 330 | if (!data) |
| 331 | return -ENOMEM; |
| 332 | |
Anson Huang | 6fd4fe9 | 2019-07-16 15:18:58 +0800 | [diff] [blame] | 333 | data->rtc = devm_rtc_allocate_device(&pdev->dev); |
| 334 | if (IS_ERR(data->rtc)) |
| 335 | return PTR_ERR(data->rtc); |
| 336 | |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 337 | data->regmap = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, "regmap"); |
| 338 | |
| 339 | if (IS_ERR(data->regmap)) { |
| 340 | dev_warn(&pdev->dev, "snvs rtc: you use old dts file, please update it\n"); |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 341 | |
Anson Huang | 0c46b07 | 2019-04-01 05:29:13 +0000 | [diff] [blame] | 342 | mmio = devm_platform_ioremap_resource(pdev, 0); |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 343 | if (IS_ERR(mmio)) |
| 344 | return PTR_ERR(mmio); |
| 345 | |
| 346 | data->regmap = devm_regmap_init_mmio(&pdev->dev, mmio, &snvs_rtc_config); |
| 347 | } else { |
| 348 | data->offset = SNVS_LPREGISTER_OFFSET; |
| 349 | of_property_read_u32(pdev->dev.of_node, "offset", &data->offset); |
| 350 | } |
| 351 | |
Pan Bian | 7589290 | 2017-04-23 13:43:24 +0800 | [diff] [blame] | 352 | if (IS_ERR(data->regmap)) { |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 353 | dev_err(&pdev->dev, "Can't find snvs syscon\n"); |
| 354 | return -ENODEV; |
| 355 | } |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 356 | |
| 357 | data->irq = platform_get_irq(pdev, 0); |
| 358 | if (data->irq < 0) |
| 359 | return data->irq; |
| 360 | |
Sanchayan Maity | 7f89939 | 2014-12-10 15:54:17 -0800 | [diff] [blame] | 361 | data->clk = devm_clk_get(&pdev->dev, "snvs-rtc"); |
| 362 | if (IS_ERR(data->clk)) { |
| 363 | data->clk = NULL; |
| 364 | } else { |
| 365 | ret = clk_prepare_enable(data->clk); |
| 366 | if (ret) { |
| 367 | dev_err(&pdev->dev, |
| 368 | "Could not prepare or enable the snvs clock\n"); |
| 369 | return ret; |
| 370 | } |
| 371 | } |
| 372 | |
Anson Huang | 7863bd0 | 2020-03-13 22:30:49 +0800 | [diff] [blame] | 373 | ret = devm_add_action_or_reset(&pdev->dev, snvs_rtc_action, data->clk); |
| 374 | if (ret) |
| 375 | return ret; |
| 376 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 377 | platform_set_drvdata(pdev, data); |
| 378 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 379 | /* Initialize glitch detect */ |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 380 | regmap_write(data->regmap, data->offset + SNVS_LPPGDR, SNVS_LPPGDR_INIT); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 381 | |
| 382 | /* Clear interrupt status */ |
Frank Li | d482893 | 2015-05-27 00:25:57 +0800 | [diff] [blame] | 383 | regmap_write(data->regmap, data->offset + SNVS_LPSR, 0xffffffff); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 384 | |
| 385 | /* Enable RTC */ |
Bryan O'Donoghue | 1485991 | 2018-03-28 20:14:05 +0100 | [diff] [blame] | 386 | ret = snvs_rtc_enable(data, true); |
| 387 | if (ret) { |
| 388 | dev_err(&pdev->dev, "failed to enable rtc %d\n", ret); |
Anson Huang | 7863bd0 | 2020-03-13 22:30:49 +0800 | [diff] [blame] | 389 | return ret; |
Bryan O'Donoghue | 1485991 | 2018-03-28 20:14:05 +0100 | [diff] [blame] | 390 | } |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 391 | |
| 392 | device_init_wakeup(&pdev->dev, true); |
Anson Huang | e7afddb | 2019-03-27 06:18:20 +0000 | [diff] [blame] | 393 | ret = dev_pm_set_wake_irq(&pdev->dev, data->irq); |
| 394 | if (ret) |
| 395 | dev_err(&pdev->dev, "failed to enable irq wake\n"); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 396 | |
| 397 | ret = devm_request_irq(&pdev->dev, data->irq, snvs_rtc_irq_handler, |
| 398 | IRQF_SHARED, "rtc alarm", &pdev->dev); |
| 399 | if (ret) { |
| 400 | dev_err(&pdev->dev, "failed to request irq %d: %d\n", |
| 401 | data->irq, ret); |
Anson Huang | 7863bd0 | 2020-03-13 22:30:49 +0800 | [diff] [blame] | 402 | return ret; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Anson Huang | 6fd4fe9 | 2019-07-16 15:18:58 +0800 | [diff] [blame] | 405 | data->rtc->ops = &snvs_rtc_ops; |
Alexandre Belloni | 7961034 | 2019-08-28 22:50:55 +0200 | [diff] [blame] | 406 | data->rtc->range_max = U32_MAX; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 407 | |
Anson Huang | 7863bd0 | 2020-03-13 22:30:49 +0800 | [diff] [blame] | 408 | return rtc_register_device(data->rtc); |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Anson Huang | dacb6a4 | 2019-04-30 01:07:08 +0000 | [diff] [blame] | 411 | static int __maybe_unused snvs_rtc_suspend_noirq(struct device *dev) |
Stefan Agner | 119434f | 2015-05-21 17:29:35 +0200 | [diff] [blame] | 412 | { |
| 413 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
| 414 | |
Sanchayan Maity | 7f89939 | 2014-12-10 15:54:17 -0800 | [diff] [blame] | 415 | if (data->clk) |
Anson Huang | 20af677 | 2020-05-22 10:19:55 +0800 | [diff] [blame] | 416 | clk_disable(data->clk); |
Sanchayan Maity | 7f89939 | 2014-12-10 15:54:17 -0800 | [diff] [blame] | 417 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 418 | return 0; |
| 419 | } |
| 420 | |
Anson Huang | dacb6a4 | 2019-04-30 01:07:08 +0000 | [diff] [blame] | 421 | static int __maybe_unused snvs_rtc_resume_noirq(struct device *dev) |
Stefan Agner | 119434f | 2015-05-21 17:29:35 +0200 | [diff] [blame] | 422 | { |
| 423 | struct snvs_rtc_data *data = dev_get_drvdata(dev); |
| 424 | |
| 425 | if (data->clk) |
Anson Huang | 20af677 | 2020-05-22 10:19:55 +0800 | [diff] [blame] | 426 | return clk_enable(data->clk); |
Sanchayan Maity | 7f89939 | 2014-12-10 15:54:17 -0800 | [diff] [blame] | 427 | |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 428 | return 0; |
| 429 | } |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 430 | |
Sanchayan Maity | 7654e9d | 2014-12-10 15:54:20 -0800 | [diff] [blame] | 431 | static const struct dev_pm_ops snvs_rtc_pm_ops = { |
Anson Huang | dacb6a4 | 2019-04-30 01:07:08 +0000 | [diff] [blame] | 432 | SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(snvs_rtc_suspend_noirq, snvs_rtc_resume_noirq) |
Sanchayan Maity | 7654e9d | 2014-12-10 15:54:20 -0800 | [diff] [blame] | 433 | }; |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 434 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 435 | static const struct of_device_id snvs_dt_ids[] = { |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 436 | { .compatible = "fsl,sec-v4.0-mon-rtc-lp", }, |
| 437 | { /* sentinel */ } |
| 438 | }; |
| 439 | MODULE_DEVICE_TABLE(of, snvs_dt_ids); |
| 440 | |
| 441 | static struct platform_driver snvs_rtc_driver = { |
| 442 | .driver = { |
| 443 | .name = "snvs_rtc", |
Anson Huang | dacb6a4 | 2019-04-30 01:07:08 +0000 | [diff] [blame] | 444 | .pm = &snvs_rtc_pm_ops, |
Sachin Kamat | c39b371 | 2013-11-12 15:10:57 -0800 | [diff] [blame] | 445 | .of_match_table = snvs_dt_ids, |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 446 | }, |
| 447 | .probe = snvs_rtc_probe, |
Shawn Guo | 179a502 | 2012-10-04 17:13:49 -0700 | [diff] [blame] | 448 | }; |
| 449 | module_platform_driver(snvs_rtc_driver); |
| 450 | |
| 451 | MODULE_AUTHOR("Freescale Semiconductor, Inc."); |
| 452 | MODULE_DESCRIPTION("Freescale SNVS RTC Driver"); |
| 453 | MODULE_LICENSE("GPL"); |