Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 1 | /* |
| 2 | * SuperH On-Chip RTC Support |
| 3 | * |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 4 | * Copyright (C) 2006 - 2009 Paul Mundt |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 5 | * Copyright (C) 2006 Jamie Lenehan |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 6 | * Copyright (C) 2008 Angelo Castello |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 7 | * |
| 8 | * Based on the old arch/sh/kernel/cpu/rtc.c by: |
| 9 | * |
| 10 | * Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org> |
| 11 | * Copyright (C) 1999 Tetsuya Okada & Niibe Yutaka |
| 12 | * |
| 13 | * This file is subject to the terms and conditions of the GNU General Public |
| 14 | * License. See the file "COPYING" in the main directory of this archive |
| 15 | * for more details. |
| 16 | */ |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/bcd.h> |
| 20 | #include <linux/rtc.h> |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/platform_device.h> |
| 23 | #include <linux/seq_file.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/spinlock.h> |
Jamie Lenehan | 31ccb08 | 2006-12-07 17:23:50 +0900 | [diff] [blame] | 26 | #include <linux/io.h> |
Jonathan Cameron | 5d2a503 | 2009-01-06 14:42:12 -0800 | [diff] [blame] | 27 | #include <linux/log2.h> |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 28 | #include <linux/clk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 30 | #ifdef CONFIG_SUPERH |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 31 | #include <asm/rtc.h> |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 32 | #else |
| 33 | /* Default values for RZ/A RTC */ |
| 34 | #define rtc_reg_size sizeof(u16) |
| 35 | #define RTC_BIT_INVERTED 0 /* no chip bugs */ |
| 36 | #define RTC_CAP_4_DIGIT_YEAR (1 << 0) |
| 37 | #define RTC_DEF_CAPABILITIES RTC_CAP_4_DIGIT_YEAR |
| 38 | #endif |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 39 | |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 40 | #define DRV_NAME "sh-rtc" |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 41 | |
| 42 | #define RTC_REG(r) ((r) * rtc_reg_size) |
| 43 | |
Jamie Lenehan | 31ccb08 | 2006-12-07 17:23:50 +0900 | [diff] [blame] | 44 | #define R64CNT RTC_REG(0) |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 45 | |
| 46 | #define RSECCNT RTC_REG(1) /* RTC sec */ |
| 47 | #define RMINCNT RTC_REG(2) /* RTC min */ |
| 48 | #define RHRCNT RTC_REG(3) /* RTC hour */ |
| 49 | #define RWKCNT RTC_REG(4) /* RTC week */ |
| 50 | #define RDAYCNT RTC_REG(5) /* RTC day */ |
| 51 | #define RMONCNT RTC_REG(6) /* RTC month */ |
| 52 | #define RYRCNT RTC_REG(7) /* RTC year */ |
| 53 | #define RSECAR RTC_REG(8) /* ALARM sec */ |
| 54 | #define RMINAR RTC_REG(9) /* ALARM min */ |
| 55 | #define RHRAR RTC_REG(10) /* ALARM hour */ |
| 56 | #define RWKAR RTC_REG(11) /* ALARM week */ |
| 57 | #define RDAYAR RTC_REG(12) /* ALARM day */ |
| 58 | #define RMONAR RTC_REG(13) /* ALARM month */ |
| 59 | #define RCR1 RTC_REG(14) /* Control */ |
| 60 | #define RCR2 RTC_REG(15) /* Control */ |
| 61 | |
Paul Mundt | ff1b750 | 2007-11-26 17:56:31 +0900 | [diff] [blame] | 62 | /* |
| 63 | * Note on RYRAR and RCR3: Up until this point most of the register |
| 64 | * definitions are consistent across all of the available parts. However, |
| 65 | * the placement of the optional RYRAR and RCR3 (the RYRAR control |
| 66 | * register used to control RYRCNT/RYRAR compare) varies considerably |
| 67 | * across various parts, occasionally being mapped in to a completely |
| 68 | * unrelated address space. For proper RYRAR support a separate resource |
| 69 | * would have to be handed off, but as this is purely optional in |
| 70 | * practice, we simply opt not to support it, thereby keeping the code |
| 71 | * quite a bit more simplified. |
| 72 | */ |
| 73 | |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 74 | /* ALARM Bits - or with BCD encoded value */ |
| 75 | #define AR_ENB 0x80 /* Enable for alarm cmp */ |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 76 | |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 77 | /* Period Bits */ |
| 78 | #define PF_HP 0x100 /* Enable Half Period to support 8,32,128Hz */ |
| 79 | #define PF_COUNT 0x200 /* Half periodic counter */ |
| 80 | #define PF_OXS 0x400 /* Periodic One x Second */ |
| 81 | #define PF_KOU 0x800 /* Kernel or User periodic request 1=kernel */ |
| 82 | #define PF_MASK 0xf00 |
| 83 | |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 84 | /* RCR1 Bits */ |
| 85 | #define RCR1_CF 0x80 /* Carry Flag */ |
| 86 | #define RCR1_CIE 0x10 /* Carry Interrupt Enable */ |
| 87 | #define RCR1_AIE 0x08 /* Alarm Interrupt Enable */ |
| 88 | #define RCR1_AF 0x01 /* Alarm Flag */ |
| 89 | |
| 90 | /* RCR2 Bits */ |
| 91 | #define RCR2_PEF 0x80 /* PEriodic interrupt Flag */ |
| 92 | #define RCR2_PESMASK 0x70 /* Periodic interrupt Set */ |
| 93 | #define RCR2_RTCEN 0x08 /* ENable RTC */ |
| 94 | #define RCR2_ADJ 0x04 /* ADJustment (30-second) */ |
| 95 | #define RCR2_RESET 0x02 /* Reset bit */ |
| 96 | #define RCR2_START 0x01 /* Start bit */ |
| 97 | |
| 98 | struct sh_rtc { |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 99 | void __iomem *regbase; |
| 100 | unsigned long regsize; |
| 101 | struct resource *res; |
| 102 | int alarm_irq; |
| 103 | int periodic_irq; |
| 104 | int carry_irq; |
| 105 | struct clk *clk; |
| 106 | struct rtc_device *rtc_dev; |
| 107 | spinlock_t lock; |
| 108 | unsigned long capabilities; /* See asm/rtc.h for cap bits */ |
| 109 | unsigned short periodic_freq; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 110 | }; |
| 111 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 112 | static int __sh_rtc_interrupt(struct sh_rtc *rtc) |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 113 | { |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 114 | unsigned int tmp, pending; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 115 | |
| 116 | tmp = readb(rtc->regbase + RCR1); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 117 | pending = tmp & RCR1_CF; |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 118 | tmp &= ~RCR1_CF; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 119 | writeb(tmp, rtc->regbase + RCR1); |
| 120 | |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 121 | /* Users have requested One x Second IRQ */ |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 122 | if (pending && rtc->periodic_freq & PF_OXS) |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 123 | rtc_update_irq(rtc->rtc_dev, 1, RTC_UF | RTC_IRQF); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 124 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 125 | return pending; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 126 | } |
| 127 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 128 | static int __sh_rtc_alarm(struct sh_rtc *rtc) |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 129 | { |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 130 | unsigned int tmp, pending; |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 131 | |
| 132 | tmp = readb(rtc->regbase + RCR1); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 133 | pending = tmp & RCR1_AF; |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 134 | tmp &= ~(RCR1_AF | RCR1_AIE); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 135 | writeb(tmp, rtc->regbase + RCR1); |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 136 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 137 | if (pending) |
| 138 | rtc_update_irq(rtc->rtc_dev, 1, RTC_AF | RTC_IRQF); |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 139 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 140 | return pending; |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 141 | } |
| 142 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 143 | static int __sh_rtc_periodic(struct sh_rtc *rtc) |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 144 | { |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 145 | struct rtc_device *rtc_dev = rtc->rtc_dev; |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 146 | unsigned int tmp, pending; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 147 | |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 148 | tmp = readb(rtc->regbase + RCR2); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 149 | pending = tmp & RCR2_PEF; |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 150 | tmp &= ~RCR2_PEF; |
| 151 | writeb(tmp, rtc->regbase + RCR2); |
| 152 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 153 | if (!pending) |
| 154 | return 0; |
| 155 | |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 156 | /* Half period enabled than one skipped and the next notified */ |
| 157 | if ((rtc->periodic_freq & PF_HP) && (rtc->periodic_freq & PF_COUNT)) |
| 158 | rtc->periodic_freq &= ~PF_COUNT; |
| 159 | else { |
| 160 | if (rtc->periodic_freq & PF_HP) |
| 161 | rtc->periodic_freq |= PF_COUNT; |
Alexandre Belloni | ec623ff | 2018-07-25 16:45:39 +0200 | [diff] [blame^] | 162 | rtc_update_irq(rtc->rtc_dev, 1, RTC_PF | RTC_IRQF); |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 163 | } |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 164 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 165 | return pending; |
| 166 | } |
| 167 | |
| 168 | static irqreturn_t sh_rtc_interrupt(int irq, void *dev_id) |
| 169 | { |
| 170 | struct sh_rtc *rtc = dev_id; |
| 171 | int ret; |
| 172 | |
| 173 | spin_lock(&rtc->lock); |
| 174 | ret = __sh_rtc_interrupt(rtc); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 175 | spin_unlock(&rtc->lock); |
| 176 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 177 | return IRQ_RETVAL(ret); |
| 178 | } |
| 179 | |
| 180 | static irqreturn_t sh_rtc_alarm(int irq, void *dev_id) |
| 181 | { |
| 182 | struct sh_rtc *rtc = dev_id; |
| 183 | int ret; |
| 184 | |
| 185 | spin_lock(&rtc->lock); |
| 186 | ret = __sh_rtc_alarm(rtc); |
| 187 | spin_unlock(&rtc->lock); |
| 188 | |
| 189 | return IRQ_RETVAL(ret); |
| 190 | } |
| 191 | |
| 192 | static irqreturn_t sh_rtc_periodic(int irq, void *dev_id) |
| 193 | { |
| 194 | struct sh_rtc *rtc = dev_id; |
| 195 | int ret; |
| 196 | |
| 197 | spin_lock(&rtc->lock); |
| 198 | ret = __sh_rtc_periodic(rtc); |
| 199 | spin_unlock(&rtc->lock); |
| 200 | |
| 201 | return IRQ_RETVAL(ret); |
| 202 | } |
| 203 | |
| 204 | static irqreturn_t sh_rtc_shared(int irq, void *dev_id) |
| 205 | { |
| 206 | struct sh_rtc *rtc = dev_id; |
| 207 | int ret; |
| 208 | |
| 209 | spin_lock(&rtc->lock); |
| 210 | ret = __sh_rtc_interrupt(rtc); |
| 211 | ret |= __sh_rtc_alarm(rtc); |
| 212 | ret |= __sh_rtc_periodic(rtc); |
| 213 | spin_unlock(&rtc->lock); |
| 214 | |
| 215 | return IRQ_RETVAL(ret); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 216 | } |
| 217 | |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 218 | static inline void sh_rtc_setaie(struct device *dev, unsigned int enable) |
| 219 | { |
| 220 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
| 221 | unsigned int tmp; |
| 222 | |
| 223 | spin_lock_irq(&rtc->lock); |
| 224 | |
| 225 | tmp = readb(rtc->regbase + RCR1); |
| 226 | |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 227 | if (enable) |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 228 | tmp |= RCR1_AIE; |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 229 | else |
| 230 | tmp &= ~RCR1_AIE; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 231 | |
| 232 | writeb(tmp, rtc->regbase + RCR1); |
| 233 | |
| 234 | spin_unlock_irq(&rtc->lock); |
| 235 | } |
| 236 | |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 237 | static int sh_rtc_proc(struct device *dev, struct seq_file *seq) |
| 238 | { |
| 239 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
| 240 | unsigned int tmp; |
| 241 | |
| 242 | tmp = readb(rtc->regbase + RCR1); |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 243 | seq_printf(seq, "carry_IRQ\t: %s\n", (tmp & RCR1_CIE) ? "yes" : "no"); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 244 | |
| 245 | tmp = readb(rtc->regbase + RCR2); |
| 246 | seq_printf(seq, "periodic_IRQ\t: %s\n", |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 247 | (tmp & RCR2_PESMASK) ? "yes" : "no"); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 248 | |
| 249 | return 0; |
| 250 | } |
| 251 | |
Magnus Damm | 9cd88b9 | 2009-03-19 10:05:58 +0000 | [diff] [blame] | 252 | static inline void sh_rtc_setcie(struct device *dev, unsigned int enable) |
| 253 | { |
| 254 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
| 255 | unsigned int tmp; |
| 256 | |
| 257 | spin_lock_irq(&rtc->lock); |
| 258 | |
| 259 | tmp = readb(rtc->regbase + RCR1); |
| 260 | |
| 261 | if (!enable) |
| 262 | tmp &= ~RCR1_CIE; |
| 263 | else |
| 264 | tmp |= RCR1_CIE; |
| 265 | |
| 266 | writeb(tmp, rtc->regbase + RCR1); |
| 267 | |
| 268 | spin_unlock_irq(&rtc->lock); |
| 269 | } |
| 270 | |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 271 | static int sh_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled) |
| 272 | { |
| 273 | sh_rtc_setaie(dev, enabled); |
| 274 | return 0; |
| 275 | } |
| 276 | |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 277 | static int sh_rtc_read_time(struct device *dev, struct rtc_time *tm) |
| 278 | { |
Wolfram Sang | 85368bb | 2018-04-19 16:06:14 +0200 | [diff] [blame] | 279 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 280 | unsigned int sec128, sec2, yr, yr100, cf_bit; |
| 281 | |
| 282 | do { |
| 283 | unsigned int tmp; |
| 284 | |
| 285 | spin_lock_irq(&rtc->lock); |
| 286 | |
| 287 | tmp = readb(rtc->regbase + RCR1); |
| 288 | tmp &= ~RCR1_CF; /* Clear CF-bit */ |
| 289 | tmp |= RCR1_CIE; |
| 290 | writeb(tmp, rtc->regbase + RCR1); |
| 291 | |
| 292 | sec128 = readb(rtc->regbase + R64CNT); |
| 293 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 294 | tm->tm_sec = bcd2bin(readb(rtc->regbase + RSECCNT)); |
| 295 | tm->tm_min = bcd2bin(readb(rtc->regbase + RMINCNT)); |
| 296 | tm->tm_hour = bcd2bin(readb(rtc->regbase + RHRCNT)); |
| 297 | tm->tm_wday = bcd2bin(readb(rtc->regbase + RWKCNT)); |
| 298 | tm->tm_mday = bcd2bin(readb(rtc->regbase + RDAYCNT)); |
| 299 | tm->tm_mon = bcd2bin(readb(rtc->regbase + RMONCNT)) - 1; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 300 | |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 301 | if (rtc->capabilities & RTC_CAP_4_DIGIT_YEAR) { |
| 302 | yr = readw(rtc->regbase + RYRCNT); |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 303 | yr100 = bcd2bin(yr >> 8); |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 304 | yr &= 0xff; |
| 305 | } else { |
| 306 | yr = readb(rtc->regbase + RYRCNT); |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 307 | yr100 = bcd2bin((yr == 0x99) ? 0x19 : 0x20); |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 308 | } |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 309 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 310 | tm->tm_year = (yr100 * 100 + bcd2bin(yr)) - 1900; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 311 | |
| 312 | sec2 = readb(rtc->regbase + R64CNT); |
| 313 | cf_bit = readb(rtc->regbase + RCR1) & RCR1_CF; |
| 314 | |
| 315 | spin_unlock_irq(&rtc->lock); |
| 316 | } while (cf_bit != 0 || ((sec128 ^ sec2) & RTC_BIT_INVERTED) != 0); |
| 317 | |
| 318 | #if RTC_BIT_INVERTED != 0 |
| 319 | if ((sec128 & RTC_BIT_INVERTED)) |
| 320 | tm->tm_sec--; |
| 321 | #endif |
| 322 | |
Magnus Damm | 9cd88b9 | 2009-03-19 10:05:58 +0000 | [diff] [blame] | 323 | /* only keep the carry interrupt enabled if UIE is on */ |
| 324 | if (!(rtc->periodic_freq & PF_OXS)) |
| 325 | sh_rtc_setcie(dev, 0); |
| 326 | |
Paul Mundt | 435c55d | 2007-05-08 11:56:27 +0900 | [diff] [blame] | 327 | dev_dbg(dev, "%s: tm is secs=%d, mins=%d, hours=%d, " |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 328 | "mday=%d, mon=%d, year=%d, wday=%d\n", |
Harvey Harrison | 2a4e2b878 | 2008-04-28 02:12:00 -0700 | [diff] [blame] | 329 | __func__, |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 330 | tm->tm_sec, tm->tm_min, tm->tm_hour, |
Jamie Lenehan | a161479 | 2006-12-08 14:49:30 +0900 | [diff] [blame] | 331 | tm->tm_mday, tm->tm_mon + 1, tm->tm_year, tm->tm_wday); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 332 | |
Alexandre Belloni | 22652ba | 2018-02-19 16:23:56 +0100 | [diff] [blame] | 333 | return 0; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | static int sh_rtc_set_time(struct device *dev, struct rtc_time *tm) |
| 337 | { |
Wolfram Sang | 85368bb | 2018-04-19 16:06:14 +0200 | [diff] [blame] | 338 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 339 | unsigned int tmp; |
| 340 | int year; |
| 341 | |
| 342 | spin_lock_irq(&rtc->lock); |
| 343 | |
| 344 | /* Reset pre-scaler & stop RTC */ |
| 345 | tmp = readb(rtc->regbase + RCR2); |
| 346 | tmp |= RCR2_RESET; |
Markus Brunner | 699bc66 | 2007-07-26 17:31:28 +0900 | [diff] [blame] | 347 | tmp &= ~RCR2_START; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 348 | writeb(tmp, rtc->regbase + RCR2); |
| 349 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 350 | writeb(bin2bcd(tm->tm_sec), rtc->regbase + RSECCNT); |
| 351 | writeb(bin2bcd(tm->tm_min), rtc->regbase + RMINCNT); |
| 352 | writeb(bin2bcd(tm->tm_hour), rtc->regbase + RHRCNT); |
| 353 | writeb(bin2bcd(tm->tm_wday), rtc->regbase + RWKCNT); |
| 354 | writeb(bin2bcd(tm->tm_mday), rtc->regbase + RDAYCNT); |
| 355 | writeb(bin2bcd(tm->tm_mon + 1), rtc->regbase + RMONCNT); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 356 | |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 357 | if (rtc->capabilities & RTC_CAP_4_DIGIT_YEAR) { |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 358 | year = (bin2bcd((tm->tm_year + 1900) / 100) << 8) | |
| 359 | bin2bcd(tm->tm_year % 100); |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 360 | writew(year, rtc->regbase + RYRCNT); |
| 361 | } else { |
| 362 | year = tm->tm_year % 100; |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 363 | writeb(bin2bcd(year), rtc->regbase + RYRCNT); |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 364 | } |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 365 | |
| 366 | /* Start RTC */ |
| 367 | tmp = readb(rtc->regbase + RCR2); |
| 368 | tmp &= ~RCR2_RESET; |
| 369 | tmp |= RCR2_RTCEN | RCR2_START; |
| 370 | writeb(tmp, rtc->regbase + RCR2); |
| 371 | |
| 372 | spin_unlock_irq(&rtc->lock); |
| 373 | |
| 374 | return 0; |
| 375 | } |
| 376 | |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 377 | static inline int sh_rtc_read_alarm_value(struct sh_rtc *rtc, int reg_off) |
| 378 | { |
| 379 | unsigned int byte; |
| 380 | int value = 0xff; /* return 0xff for ignored values */ |
| 381 | |
| 382 | byte = readb(rtc->regbase + reg_off); |
| 383 | if (byte & AR_ENB) { |
| 384 | byte &= ~AR_ENB; /* strip the enable bit */ |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 385 | value = bcd2bin(byte); |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | return value; |
| 389 | } |
| 390 | |
| 391 | static int sh_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *wkalrm) |
| 392 | { |
Wolfram Sang | 85368bb | 2018-04-19 16:06:14 +0200 | [diff] [blame] | 393 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 394 | struct rtc_time *tm = &wkalrm->time; |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 395 | |
| 396 | spin_lock_irq(&rtc->lock); |
| 397 | |
| 398 | tm->tm_sec = sh_rtc_read_alarm_value(rtc, RSECAR); |
| 399 | tm->tm_min = sh_rtc_read_alarm_value(rtc, RMINAR); |
| 400 | tm->tm_hour = sh_rtc_read_alarm_value(rtc, RHRAR); |
| 401 | tm->tm_wday = sh_rtc_read_alarm_value(rtc, RWKAR); |
| 402 | tm->tm_mday = sh_rtc_read_alarm_value(rtc, RDAYAR); |
| 403 | tm->tm_mon = sh_rtc_read_alarm_value(rtc, RMONAR); |
| 404 | if (tm->tm_mon > 0) |
| 405 | tm->tm_mon -= 1; /* RTC is 1-12, tm_mon is 0-11 */ |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 406 | |
David Brownell | 0d103e9 | 2007-01-10 23:15:32 -0800 | [diff] [blame] | 407 | wkalrm->enabled = (readb(rtc->regbase + RCR1) & RCR1_AIE) ? 1 : 0; |
| 408 | |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 409 | spin_unlock_irq(&rtc->lock); |
| 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | static inline void sh_rtc_write_alarm_value(struct sh_rtc *rtc, |
| 415 | int value, int reg_off) |
| 416 | { |
| 417 | /* < 0 for a value that is ignored */ |
| 418 | if (value < 0) |
| 419 | writeb(0, rtc->regbase + reg_off); |
| 420 | else |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 421 | writeb(bin2bcd(value) | AR_ENB, rtc->regbase + reg_off); |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 422 | } |
| 423 | |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 424 | static int sh_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *wkalrm) |
| 425 | { |
Wolfram Sang | 85368bb | 2018-04-19 16:06:14 +0200 | [diff] [blame] | 426 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 427 | unsigned int rcr1; |
| 428 | struct rtc_time *tm = &wkalrm->time; |
Uwe Kleine-König | 8441189 | 2016-06-28 10:43:48 +0200 | [diff] [blame] | 429 | int mon; |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 430 | |
| 431 | spin_lock_irq(&rtc->lock); |
| 432 | |
Jamie Lenehan | 15c945c | 2007-01-22 20:40:41 -0800 | [diff] [blame] | 433 | /* disable alarm interrupt and clear the alarm flag */ |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 434 | rcr1 = readb(rtc->regbase + RCR1); |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 435 | rcr1 &= ~(RCR1_AF | RCR1_AIE); |
Jamie Lenehan | 15c945c | 2007-01-22 20:40:41 -0800 | [diff] [blame] | 436 | writeb(rcr1, rtc->regbase + RCR1); |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 437 | |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 438 | /* set alarm time */ |
| 439 | sh_rtc_write_alarm_value(rtc, tm->tm_sec, RSECAR); |
| 440 | sh_rtc_write_alarm_value(rtc, tm->tm_min, RMINAR); |
| 441 | sh_rtc_write_alarm_value(rtc, tm->tm_hour, RHRAR); |
| 442 | sh_rtc_write_alarm_value(rtc, tm->tm_wday, RWKAR); |
| 443 | sh_rtc_write_alarm_value(rtc, tm->tm_mday, RDAYAR); |
| 444 | mon = tm->tm_mon; |
| 445 | if (mon >= 0) |
| 446 | mon += 1; |
| 447 | sh_rtc_write_alarm_value(rtc, mon, RMONAR); |
| 448 | |
Jamie Lenehan | 15c945c | 2007-01-22 20:40:41 -0800 | [diff] [blame] | 449 | if (wkalrm->enabled) { |
| 450 | rcr1 |= RCR1_AIE; |
| 451 | writeb(rcr1, rtc->regbase + RCR1); |
| 452 | } |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 453 | |
| 454 | spin_unlock_irq(&rtc->lock); |
| 455 | |
| 456 | return 0; |
| 457 | } |
| 458 | |
Bhumika Goyal | 8bc57e7 | 2017-01-05 22:25:05 +0530 | [diff] [blame] | 459 | static const struct rtc_class_ops sh_rtc_ops = { |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 460 | .read_time = sh_rtc_read_time, |
| 461 | .set_time = sh_rtc_set_time, |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 462 | .read_alarm = sh_rtc_read_alarm, |
| 463 | .set_alarm = sh_rtc_set_alarm, |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 464 | .proc = sh_rtc_proc, |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 465 | .alarm_irq_enable = sh_rtc_alarm_irq_enable, |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 466 | }; |
| 467 | |
Alessandro Zummo | 5c9740a | 2009-08-20 13:25:11 +0900 | [diff] [blame] | 468 | static int __init sh_rtc_probe(struct platform_device *pdev) |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 469 | { |
| 470 | struct sh_rtc *rtc; |
| 471 | struct resource *res; |
Magnus Damm | edf2247 | 2009-03-19 10:10:44 +0000 | [diff] [blame] | 472 | struct rtc_time r; |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 473 | char clk_name[6]; |
| 474 | int clk_id, ret; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 475 | |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 476 | rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 477 | if (unlikely(!rtc)) |
| 478 | return -ENOMEM; |
| 479 | |
| 480 | spin_lock_init(&rtc->lock); |
| 481 | |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 482 | /* get periodic/carry/alarm irqs */ |
roel kluin | 2641dc9 | 2008-09-10 19:34:44 +0200 | [diff] [blame] | 483 | ret = platform_get_irq(pdev, 0); |
Anton Vorontsov | 2fac667 | 2009-01-06 14:42:11 -0800 | [diff] [blame] | 484 | if (unlikely(ret <= 0)) { |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 485 | dev_err(&pdev->dev, "No IRQ resource\n"); |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 486 | return -ENOENT; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 487 | } |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 488 | |
roel kluin | 2641dc9 | 2008-09-10 19:34:44 +0200 | [diff] [blame] | 489 | rtc->periodic_irq = ret; |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 490 | rtc->carry_irq = platform_get_irq(pdev, 1); |
| 491 | rtc->alarm_irq = platform_get_irq(pdev, 2); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 492 | |
| 493 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 494 | if (!res) |
| 495 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 496 | if (unlikely(res == NULL)) { |
| 497 | dev_err(&pdev->dev, "No IO resource\n"); |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 498 | return -ENOENT; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 499 | } |
| 500 | |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 501 | rtc->regsize = resource_size(res); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 502 | |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 503 | rtc->res = devm_request_mem_region(&pdev->dev, res->start, |
| 504 | rtc->regsize, pdev->name); |
| 505 | if (unlikely(!rtc->res)) |
| 506 | return -EBUSY; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 507 | |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 508 | rtc->regbase = devm_ioremap_nocache(&pdev->dev, rtc->res->start, |
| 509 | rtc->regsize); |
| 510 | if (unlikely(!rtc->regbase)) |
| 511 | return -EINVAL; |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 512 | |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 513 | if (!pdev->dev.of_node) { |
| 514 | clk_id = pdev->id; |
| 515 | /* With a single device, the clock id is still "rtc0" */ |
| 516 | if (clk_id < 0) |
| 517 | clk_id = 0; |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 518 | |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 519 | snprintf(clk_name, sizeof(clk_name), "rtc%d", clk_id); |
| 520 | } else |
| 521 | snprintf(clk_name, sizeof(clk_name), "fck"); |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 522 | |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 523 | rtc->clk = devm_clk_get(&pdev->dev, clk_name); |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 524 | if (IS_ERR(rtc->clk)) { |
| 525 | /* |
| 526 | * No error handling for rtc->clk intentionally, not all |
| 527 | * platforms will have a unique clock for the RTC, and |
| 528 | * the clk API can handle the struct clk pointer being |
| 529 | * NULL. |
| 530 | */ |
| 531 | rtc->clk = NULL; |
| 532 | } |
| 533 | |
| 534 | clk_enable(rtc->clk); |
| 535 | |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 536 | rtc->capabilities = RTC_DEF_CAPABILITIES; |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 537 | |
| 538 | #ifdef CONFIG_SUPERH |
Jingoo Han | e58c18d | 2013-11-12 15:10:52 -0800 | [diff] [blame] | 539 | if (dev_get_platdata(&pdev->dev)) { |
| 540 | struct sh_rtc_platform_info *pinfo = |
| 541 | dev_get_platdata(&pdev->dev); |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 542 | |
| 543 | /* |
| 544 | * Some CPUs have special capabilities in addition to the |
| 545 | * default set. Add those in here. |
| 546 | */ |
| 547 | rtc->capabilities |= pinfo->capabilities; |
| 548 | } |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 549 | #endif |
Paul Mundt | ad89f87 | 2007-08-03 14:19:58 +0900 | [diff] [blame] | 550 | |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 551 | if (rtc->carry_irq <= 0) { |
| 552 | /* register shared periodic/carry/alarm irq */ |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 553 | ret = devm_request_irq(&pdev->dev, rtc->periodic_irq, |
| 554 | sh_rtc_shared, 0, "sh-rtc", rtc); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 555 | if (unlikely(ret)) { |
| 556 | dev_err(&pdev->dev, |
| 557 | "request IRQ failed with %d, IRQ %d\n", ret, |
| 558 | rtc->periodic_irq); |
| 559 | goto err_unmap; |
| 560 | } |
| 561 | } else { |
| 562 | /* register periodic/carry/alarm irqs */ |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 563 | ret = devm_request_irq(&pdev->dev, rtc->periodic_irq, |
| 564 | sh_rtc_periodic, 0, "sh-rtc period", rtc); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 565 | if (unlikely(ret)) { |
| 566 | dev_err(&pdev->dev, |
| 567 | "request period IRQ failed with %d, IRQ %d\n", |
| 568 | ret, rtc->periodic_irq); |
| 569 | goto err_unmap; |
| 570 | } |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 571 | |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 572 | ret = devm_request_irq(&pdev->dev, rtc->carry_irq, |
| 573 | sh_rtc_interrupt, 0, "sh-rtc carry", rtc); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 574 | if (unlikely(ret)) { |
| 575 | dev_err(&pdev->dev, |
| 576 | "request carry IRQ failed with %d, IRQ %d\n", |
| 577 | ret, rtc->carry_irq); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 578 | goto err_unmap; |
| 579 | } |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 580 | |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 581 | ret = devm_request_irq(&pdev->dev, rtc->alarm_irq, |
| 582 | sh_rtc_alarm, 0, "sh-rtc alarm", rtc); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 583 | if (unlikely(ret)) { |
| 584 | dev_err(&pdev->dev, |
| 585 | "request alarm IRQ failed with %d, IRQ %d\n", |
| 586 | ret, rtc->alarm_irq); |
Magnus Damm | 5e084a1 | 2009-02-24 22:11:03 +0900 | [diff] [blame] | 587 | goto err_unmap; |
| 588 | } |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 589 | } |
| 590 | |
Alessandro Zummo | 5c9740a | 2009-08-20 13:25:11 +0900 | [diff] [blame] | 591 | platform_set_drvdata(pdev, rtc); |
| 592 | |
Magnus Damm | 9cd88b9 | 2009-03-19 10:05:58 +0000 | [diff] [blame] | 593 | /* everything disabled by default */ |
Magnus Damm | 9cd88b9 | 2009-03-19 10:05:58 +0000 | [diff] [blame] | 594 | sh_rtc_setaie(&pdev->dev, 0); |
| 595 | sh_rtc_setcie(&pdev->dev, 0); |
Magnus Damm | edf2247 | 2009-03-19 10:10:44 +0000 | [diff] [blame] | 596 | |
Jingoo Han | 0209aff | 2013-07-03 15:07:11 -0700 | [diff] [blame] | 597 | rtc->rtc_dev = devm_rtc_device_register(&pdev->dev, "sh", |
Alessandro Zummo | 5c9740a | 2009-08-20 13:25:11 +0900 | [diff] [blame] | 598 | &sh_rtc_ops, THIS_MODULE); |
| 599 | if (IS_ERR(rtc->rtc_dev)) { |
| 600 | ret = PTR_ERR(rtc->rtc_dev); |
Alessandro Zummo | 5c9740a | 2009-08-20 13:25:11 +0900 | [diff] [blame] | 601 | goto err_unmap; |
| 602 | } |
| 603 | |
| 604 | rtc->rtc_dev->max_user_freq = 256; |
| 605 | |
Magnus Damm | edf2247 | 2009-03-19 10:10:44 +0000 | [diff] [blame] | 606 | /* reset rtc to epoch 0 if time is invalid */ |
| 607 | if (rtc_read_time(rtc->rtc_dev, &r) < 0) { |
| 608 | rtc_time_to_tm(0, &r); |
| 609 | rtc_set_time(rtc->rtc_dev, &r); |
| 610 | } |
| 611 | |
Magnus Damm | 7a8fe8e | 2009-03-19 10:14:41 +0000 | [diff] [blame] | 612 | device_init_wakeup(&pdev->dev, 1); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 613 | return 0; |
| 614 | |
Paul Mundt | 0305794 | 2008-04-25 17:58:42 +0900 | [diff] [blame] | 615 | err_unmap: |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 616 | clk_disable(rtc->clk); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 617 | |
| 618 | return ret; |
| 619 | } |
| 620 | |
Alessandro Zummo | 5c9740a | 2009-08-20 13:25:11 +0900 | [diff] [blame] | 621 | static int __exit sh_rtc_remove(struct platform_device *pdev) |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 622 | { |
| 623 | struct sh_rtc *rtc = platform_get_drvdata(pdev); |
| 624 | |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 625 | sh_rtc_setaie(&pdev->dev, 0); |
Magnus Damm | 9cd88b9 | 2009-03-19 10:05:58 +0000 | [diff] [blame] | 626 | sh_rtc_setcie(&pdev->dev, 0); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 627 | |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 628 | clk_disable(rtc->clk); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 629 | |
| 630 | return 0; |
| 631 | } |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 632 | |
| 633 | static void sh_rtc_set_irq_wake(struct device *dev, int enabled) |
| 634 | { |
Wolfram Sang | 85368bb | 2018-04-19 16:06:14 +0200 | [diff] [blame] | 635 | struct sh_rtc *rtc = dev_get_drvdata(dev); |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 636 | |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 637 | irq_set_irq_wake(rtc->periodic_irq, enabled); |
Paul Mundt | 063adc7 | 2009-04-16 14:12:22 +0900 | [diff] [blame] | 638 | |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 639 | if (rtc->carry_irq > 0) { |
Thomas Gleixner | dced35a | 2011-03-28 17:49:12 +0200 | [diff] [blame] | 640 | irq_set_irq_wake(rtc->carry_irq, enabled); |
| 641 | irq_set_irq_wake(rtc->alarm_irq, enabled); |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 642 | } |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Arnd Bergmann | 5d05e81 | 2017-04-19 19:52:43 +0200 | [diff] [blame] | 645 | static int __maybe_unused sh_rtc_suspend(struct device *dev) |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 646 | { |
| 647 | if (device_may_wakeup(dev)) |
| 648 | sh_rtc_set_irq_wake(dev, 1); |
| 649 | |
| 650 | return 0; |
| 651 | } |
| 652 | |
Arnd Bergmann | 5d05e81 | 2017-04-19 19:52:43 +0200 | [diff] [blame] | 653 | static int __maybe_unused sh_rtc_resume(struct device *dev) |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 654 | { |
| 655 | if (device_may_wakeup(dev)) |
| 656 | sh_rtc_set_irq_wake(dev, 0); |
| 657 | |
| 658 | return 0; |
| 659 | } |
| 660 | |
Jingoo Han | 0ed5054 | 2013-04-29 16:20:00 -0700 | [diff] [blame] | 661 | static SIMPLE_DEV_PM_OPS(sh_rtc_pm_ops, sh_rtc_suspend, sh_rtc_resume); |
Magnus Damm | faa9fa8 | 2009-04-01 14:45:17 +0000 | [diff] [blame] | 662 | |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 663 | static const struct of_device_id sh_rtc_of_match[] = { |
| 664 | { .compatible = "renesas,sh-rtc", }, |
| 665 | { /* sentinel */ } |
| 666 | }; |
| 667 | MODULE_DEVICE_TABLE(of, sh_rtc_of_match); |
| 668 | |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 669 | static struct platform_driver sh_rtc_platform_driver = { |
| 670 | .driver = { |
Jamie Lenehan | 1b73e6a | 2006-12-08 15:26:15 +0900 | [diff] [blame] | 671 | .name = DRV_NAME, |
Jingoo Han | 0ed5054 | 2013-04-29 16:20:00 -0700 | [diff] [blame] | 672 | .pm = &sh_rtc_pm_ops, |
Chris Brandt | dab5aec | 2017-03-29 10:30:29 -0700 | [diff] [blame] | 673 | .of_match_table = sh_rtc_of_match, |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 674 | }, |
Alessandro Zummo | 5c9740a | 2009-08-20 13:25:11 +0900 | [diff] [blame] | 675 | .remove = __exit_p(sh_rtc_remove), |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 676 | }; |
| 677 | |
Jingoo Han | deed5a9 | 2013-04-29 16:18:51 -0700 | [diff] [blame] | 678 | module_platform_driver_probe(sh_rtc_platform_driver, sh_rtc_probe); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 679 | |
| 680 | MODULE_DESCRIPTION("SuperH on-chip RTC driver"); |
Angelo Castello | b420b1a | 2008-03-06 12:50:53 +0900 | [diff] [blame] | 681 | MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>, " |
| 682 | "Jamie Lenehan <lenehan@twibble.org>, " |
| 683 | "Angelo Castello <angelo.castello@st.com>"); |
Paul Mundt | 317a610 | 2006-09-27 17:13:19 +0900 | [diff] [blame] | 684 | MODULE_LICENSE("GPL"); |
Kay Sievers | ad28a07 | 2008-04-10 21:29:25 -0700 | [diff] [blame] | 685 | MODULE_ALIAS("platform:" DRV_NAME); |