David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * TI OMAP1 Real Time Clock interface for Linux |
| 3 | * |
| 4 | * Copyright (C) 2003 MontaVista Software, Inc. |
| 5 | * Author: George G. Davis <gdavis@mvista.com> or <source@mvista.com> |
| 6 | * |
| 7 | * Copyright (C) 2006 David Brownell (new RTC framework) |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License |
| 11 | * as published by the Free Software Foundation; either version |
| 12 | * 2 of the License, or (at your option) any later version. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/ioport.h> |
| 19 | #include <linux/delay.h> |
| 20 | #include <linux/rtc.h> |
| 21 | #include <linux/bcd.h> |
| 22 | #include <linux/platform_device.h> |
Afzal Mohammed | 9e0344d | 2012-12-17 16:02:15 -0800 | [diff] [blame] | 23 | #include <linux/of.h> |
| 24 | #include <linux/of_device.h> |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 25 | #include <linux/pm_runtime.h> |
Sachin Kamat | 4b30c9f | 2013-07-03 15:06:00 -0700 | [diff] [blame] | 26 | #include <linux/io.h> |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 27 | |
| 28 | /* The OMAP1 RTC is a year/month/day/hours/minutes/seconds BCD clock |
| 29 | * with century-range alarm matching, driven by the 32kHz clock. |
| 30 | * |
| 31 | * The main user-visible ways it differs from PC RTCs are by omitting |
| 32 | * "don't care" alarm fields and sub-second periodic IRQs, and having |
| 33 | * an autoadjust mechanism to calibrate to the true oscillator rate. |
| 34 | * |
| 35 | * Board-specific wiring options include using split power mode with |
| 36 | * RTC_OFF_NOFF used as the reset signal (so the RTC won't be reset), |
| 37 | * and wiring RTC_WAKE_INT (so the RTC alarm can wake the system from |
Sekhar Nori | fa5b078 | 2010-10-27 15:33:05 -0700 | [diff] [blame] | 38 | * low power modes) for OMAP1 boards (OMAP-L138 has this built into |
| 39 | * the SoC). See the BOARD-SPECIFIC CUSTOMIZATION comment. |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 40 | */ |
| 41 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 42 | /* RTC registers */ |
| 43 | #define OMAP_RTC_SECONDS_REG 0x00 |
| 44 | #define OMAP_RTC_MINUTES_REG 0x04 |
| 45 | #define OMAP_RTC_HOURS_REG 0x08 |
| 46 | #define OMAP_RTC_DAYS_REG 0x0C |
| 47 | #define OMAP_RTC_MONTHS_REG 0x10 |
| 48 | #define OMAP_RTC_YEARS_REG 0x14 |
| 49 | #define OMAP_RTC_WEEKS_REG 0x18 |
| 50 | |
| 51 | #define OMAP_RTC_ALARM_SECONDS_REG 0x20 |
| 52 | #define OMAP_RTC_ALARM_MINUTES_REG 0x24 |
| 53 | #define OMAP_RTC_ALARM_HOURS_REG 0x28 |
| 54 | #define OMAP_RTC_ALARM_DAYS_REG 0x2c |
| 55 | #define OMAP_RTC_ALARM_MONTHS_REG 0x30 |
| 56 | #define OMAP_RTC_ALARM_YEARS_REG 0x34 |
| 57 | |
| 58 | #define OMAP_RTC_CTRL_REG 0x40 |
| 59 | #define OMAP_RTC_STATUS_REG 0x44 |
| 60 | #define OMAP_RTC_INTERRUPTS_REG 0x48 |
| 61 | |
| 62 | #define OMAP_RTC_COMP_LSB_REG 0x4c |
| 63 | #define OMAP_RTC_COMP_MSB_REG 0x50 |
| 64 | #define OMAP_RTC_OSC_REG 0x54 |
| 65 | |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 66 | #define OMAP_RTC_KICK0_REG 0x6c |
| 67 | #define OMAP_RTC_KICK1_REG 0x70 |
| 68 | |
Hebbar Gururaja | 8af750e | 2013-09-11 14:24:18 -0700 | [diff] [blame] | 69 | #define OMAP_RTC_IRQWAKEEN 0x7c |
| 70 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 71 | /* OMAP_RTC_CTRL_REG bit fields: */ |
Sekhar Nori | 92adb96 | 2014-06-06 14:36:05 -0700 | [diff] [blame] | 72 | #define OMAP_RTC_CTRL_SPLIT BIT(7) |
| 73 | #define OMAP_RTC_CTRL_DISABLE BIT(6) |
| 74 | #define OMAP_RTC_CTRL_SET_32_COUNTER BIT(5) |
| 75 | #define OMAP_RTC_CTRL_TEST BIT(4) |
| 76 | #define OMAP_RTC_CTRL_MODE_12_24 BIT(3) |
| 77 | #define OMAP_RTC_CTRL_AUTO_COMP BIT(2) |
| 78 | #define OMAP_RTC_CTRL_ROUND_30S BIT(1) |
| 79 | #define OMAP_RTC_CTRL_STOP BIT(0) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 80 | |
| 81 | /* OMAP_RTC_STATUS_REG bit fields: */ |
Sekhar Nori | 92adb96 | 2014-06-06 14:36:05 -0700 | [diff] [blame] | 82 | #define OMAP_RTC_STATUS_POWER_UP BIT(7) |
| 83 | #define OMAP_RTC_STATUS_ALARM BIT(6) |
| 84 | #define OMAP_RTC_STATUS_1D_EVENT BIT(5) |
| 85 | #define OMAP_RTC_STATUS_1H_EVENT BIT(4) |
| 86 | #define OMAP_RTC_STATUS_1M_EVENT BIT(3) |
| 87 | #define OMAP_RTC_STATUS_1S_EVENT BIT(2) |
| 88 | #define OMAP_RTC_STATUS_RUN BIT(1) |
| 89 | #define OMAP_RTC_STATUS_BUSY BIT(0) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 90 | |
| 91 | /* OMAP_RTC_INTERRUPTS_REG bit fields: */ |
Sekhar Nori | 92adb96 | 2014-06-06 14:36:05 -0700 | [diff] [blame] | 92 | #define OMAP_RTC_INTERRUPTS_IT_ALARM BIT(3) |
| 93 | #define OMAP_RTC_INTERRUPTS_IT_TIMER BIT(2) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 94 | |
Sekhar Nori | cd914bb | 2014-06-06 14:36:06 -0700 | [diff] [blame] | 95 | /* OMAP_RTC_OSC_REG bit fields: */ |
| 96 | #define OMAP_RTC_OSC_32KCLK_EN BIT(6) |
| 97 | |
Hebbar Gururaja | 8af750e | 2013-09-11 14:24:18 -0700 | [diff] [blame] | 98 | /* OMAP_RTC_IRQWAKEEN bit fields: */ |
Sekhar Nori | 92adb96 | 2014-06-06 14:36:05 -0700 | [diff] [blame] | 99 | #define OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN BIT(1) |
Hebbar Gururaja | 8af750e | 2013-09-11 14:24:18 -0700 | [diff] [blame] | 100 | |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 101 | /* OMAP_RTC_KICKER values */ |
| 102 | #define KICK0_VALUE 0x83e70b13 |
| 103 | #define KICK1_VALUE 0x95a4f1e0 |
| 104 | |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 105 | struct omap_rtc_device_type { |
| 106 | bool has_32kclk_en; |
| 107 | bool has_kicker; |
| 108 | bool has_irqwakeen; |
Johan Hovold | 9291e34 | 2014-12-10 15:53:04 -0800 | [diff] [blame^] | 109 | bool has_power_up_reset; |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 110 | }; |
Sekhar Nori | cd914bb | 2014-06-06 14:36:06 -0700 | [diff] [blame] | 111 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 112 | struct omap_rtc { |
| 113 | struct rtc_device *rtc; |
| 114 | void __iomem *base; |
| 115 | int irq_alarm; |
| 116 | int irq_timer; |
| 117 | u8 interrupts_reg; |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 118 | const struct omap_rtc_device_type *type; |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 119 | }; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 120 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 121 | static inline u8 rtc_read(struct omap_rtc *rtc, unsigned int reg) |
| 122 | { |
| 123 | return readb(rtc->base + reg); |
| 124 | } |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 125 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 126 | static inline void rtc_write(struct omap_rtc *rtc, unsigned int reg, u8 val) |
| 127 | { |
| 128 | writeb(val, rtc->base + reg); |
| 129 | } |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 130 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 131 | static inline void rtc_writel(struct omap_rtc *rtc, unsigned int reg, u32 val) |
| 132 | { |
| 133 | writel(val, rtc->base + reg); |
| 134 | } |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 135 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 136 | /* we rely on the rtc framework to handle locking (rtc->ops_lock), |
| 137 | * so the only other requirement is that register accesses which |
| 138 | * require BUSY to be clear are made with IRQs locally disabled |
| 139 | */ |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 140 | static void rtc_wait_not_busy(struct omap_rtc *rtc) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 141 | { |
| 142 | int count = 0; |
| 143 | u8 status; |
| 144 | |
| 145 | /* BUSY may stay active for 1/32768 second (~30 usec) */ |
| 146 | for (count = 0; count < 50; count++) { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 147 | status = rtc_read(rtc, OMAP_RTC_STATUS_REG); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 148 | if ((status & (u8)OMAP_RTC_STATUS_BUSY) == 0) |
| 149 | break; |
| 150 | udelay(1); |
| 151 | } |
| 152 | /* now we have ~15 usec to read/write various registers */ |
| 153 | } |
| 154 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 155 | static irqreturn_t rtc_irq(int irq, void *dev_id) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 156 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 157 | struct omap_rtc *rtc = dev_id; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 158 | unsigned long events = 0; |
| 159 | u8 irq_data; |
| 160 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 161 | irq_data = rtc_read(rtc, OMAP_RTC_STATUS_REG); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 162 | |
| 163 | /* alarm irq? */ |
| 164 | if (irq_data & OMAP_RTC_STATUS_ALARM) { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 165 | rtc_write(rtc, OMAP_RTC_STATUS_REG, OMAP_RTC_STATUS_ALARM); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 166 | events |= RTC_IRQF | RTC_AF; |
| 167 | } |
| 168 | |
| 169 | /* 1/sec periodic/update irq? */ |
| 170 | if (irq_data & OMAP_RTC_STATUS_1S_EVENT) |
| 171 | events |= RTC_IRQF | RTC_UF; |
| 172 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 173 | rtc_update_irq(rtc->rtc, 1, events); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 174 | |
| 175 | return IRQ_HANDLED; |
| 176 | } |
| 177 | |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 178 | static int omap_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled) |
| 179 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 180 | struct omap_rtc *rtc = dev_get_drvdata(dev); |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 181 | u8 reg, irqwake_reg = 0; |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 182 | |
| 183 | local_irq_disable(); |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 184 | rtc_wait_not_busy(rtc); |
| 185 | reg = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG); |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 186 | if (rtc->type->has_irqwakeen) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 187 | irqwake_reg = rtc_read(rtc, OMAP_RTC_IRQWAKEEN); |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 188 | |
| 189 | if (enabled) { |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 190 | reg |= OMAP_RTC_INTERRUPTS_IT_ALARM; |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 191 | irqwake_reg |= OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN; |
| 192 | } else { |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 193 | reg &= ~OMAP_RTC_INTERRUPTS_IT_ALARM; |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 194 | irqwake_reg &= ~OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN; |
| 195 | } |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 196 | rtc_wait_not_busy(rtc); |
| 197 | rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, reg); |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 198 | if (rtc->type->has_irqwakeen) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 199 | rtc_write(rtc, OMAP_RTC_IRQWAKEEN, irqwake_reg); |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 200 | local_irq_enable(); |
| 201 | |
| 202 | return 0; |
| 203 | } |
| 204 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 205 | /* this hardware doesn't support "don't care" alarm fields */ |
| 206 | static int tm2bcd(struct rtc_time *tm) |
| 207 | { |
| 208 | if (rtc_valid_tm(tm) != 0) |
| 209 | return -EINVAL; |
| 210 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 211 | tm->tm_sec = bin2bcd(tm->tm_sec); |
| 212 | tm->tm_min = bin2bcd(tm->tm_min); |
| 213 | tm->tm_hour = bin2bcd(tm->tm_hour); |
| 214 | tm->tm_mday = bin2bcd(tm->tm_mday); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 215 | |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 216 | tm->tm_mon = bin2bcd(tm->tm_mon + 1); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 217 | |
| 218 | /* epoch == 1900 */ |
| 219 | if (tm->tm_year < 100 || tm->tm_year > 199) |
| 220 | return -EINVAL; |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 221 | tm->tm_year = bin2bcd(tm->tm_year - 100); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 222 | |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | static void bcd2tm(struct rtc_time *tm) |
| 227 | { |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 228 | tm->tm_sec = bcd2bin(tm->tm_sec); |
| 229 | tm->tm_min = bcd2bin(tm->tm_min); |
| 230 | tm->tm_hour = bcd2bin(tm->tm_hour); |
| 231 | tm->tm_mday = bcd2bin(tm->tm_mday); |
| 232 | tm->tm_mon = bcd2bin(tm->tm_mon) - 1; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 233 | /* epoch == 1900 */ |
Adrian Bunk | fe20ba7 | 2008-10-18 20:28:41 -0700 | [diff] [blame] | 234 | tm->tm_year = bcd2bin(tm->tm_year) + 100; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | |
| 238 | static int omap_rtc_read_time(struct device *dev, struct rtc_time *tm) |
| 239 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 240 | struct omap_rtc *rtc = dev_get_drvdata(dev); |
| 241 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 242 | /* we don't report wday/yday/isdst ... */ |
| 243 | local_irq_disable(); |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 244 | rtc_wait_not_busy(rtc); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 245 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 246 | tm->tm_sec = rtc_read(rtc, OMAP_RTC_SECONDS_REG); |
| 247 | tm->tm_min = rtc_read(rtc, OMAP_RTC_MINUTES_REG); |
| 248 | tm->tm_hour = rtc_read(rtc, OMAP_RTC_HOURS_REG); |
| 249 | tm->tm_mday = rtc_read(rtc, OMAP_RTC_DAYS_REG); |
| 250 | tm->tm_mon = rtc_read(rtc, OMAP_RTC_MONTHS_REG); |
| 251 | tm->tm_year = rtc_read(rtc, OMAP_RTC_YEARS_REG); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 252 | |
| 253 | local_irq_enable(); |
| 254 | |
| 255 | bcd2tm(tm); |
| 256 | return 0; |
| 257 | } |
| 258 | |
| 259 | static int omap_rtc_set_time(struct device *dev, struct rtc_time *tm) |
| 260 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 261 | struct omap_rtc *rtc = dev_get_drvdata(dev); |
| 262 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 263 | if (tm2bcd(tm) < 0) |
| 264 | return -EINVAL; |
| 265 | local_irq_disable(); |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 266 | rtc_wait_not_busy(rtc); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 267 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 268 | rtc_write(rtc, OMAP_RTC_YEARS_REG, tm->tm_year); |
| 269 | rtc_write(rtc, OMAP_RTC_MONTHS_REG, tm->tm_mon); |
| 270 | rtc_write(rtc, OMAP_RTC_DAYS_REG, tm->tm_mday); |
| 271 | rtc_write(rtc, OMAP_RTC_HOURS_REG, tm->tm_hour); |
| 272 | rtc_write(rtc, OMAP_RTC_MINUTES_REG, tm->tm_min); |
| 273 | rtc_write(rtc, OMAP_RTC_SECONDS_REG, tm->tm_sec); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 274 | |
| 275 | local_irq_enable(); |
| 276 | |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | static int omap_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm) |
| 281 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 282 | struct omap_rtc *rtc = dev_get_drvdata(dev); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 283 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 284 | local_irq_disable(); |
| 285 | rtc_wait_not_busy(rtc); |
| 286 | |
| 287 | alm->time.tm_sec = rtc_read(rtc, OMAP_RTC_ALARM_SECONDS_REG); |
| 288 | alm->time.tm_min = rtc_read(rtc, OMAP_RTC_ALARM_MINUTES_REG); |
| 289 | alm->time.tm_hour = rtc_read(rtc, OMAP_RTC_ALARM_HOURS_REG); |
| 290 | alm->time.tm_mday = rtc_read(rtc, OMAP_RTC_ALARM_DAYS_REG); |
| 291 | alm->time.tm_mon = rtc_read(rtc, OMAP_RTC_ALARM_MONTHS_REG); |
| 292 | alm->time.tm_year = rtc_read(rtc, OMAP_RTC_ALARM_YEARS_REG); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 293 | |
| 294 | local_irq_enable(); |
| 295 | |
| 296 | bcd2tm(&alm->time); |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 297 | alm->enabled = !!(rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 298 | & OMAP_RTC_INTERRUPTS_IT_ALARM); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 299 | |
| 300 | return 0; |
| 301 | } |
| 302 | |
| 303 | static int omap_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm) |
| 304 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 305 | struct omap_rtc *rtc = dev_get_drvdata(dev); |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 306 | u8 reg, irqwake_reg = 0; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 307 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 308 | if (tm2bcd(&alm->time) < 0) |
| 309 | return -EINVAL; |
| 310 | |
| 311 | local_irq_disable(); |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 312 | rtc_wait_not_busy(rtc); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 313 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 314 | rtc_write(rtc, OMAP_RTC_ALARM_YEARS_REG, alm->time.tm_year); |
| 315 | rtc_write(rtc, OMAP_RTC_ALARM_MONTHS_REG, alm->time.tm_mon); |
| 316 | rtc_write(rtc, OMAP_RTC_ALARM_DAYS_REG, alm->time.tm_mday); |
| 317 | rtc_write(rtc, OMAP_RTC_ALARM_HOURS_REG, alm->time.tm_hour); |
| 318 | rtc_write(rtc, OMAP_RTC_ALARM_MINUTES_REG, alm->time.tm_min); |
| 319 | rtc_write(rtc, OMAP_RTC_ALARM_SECONDS_REG, alm->time.tm_sec); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 320 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 321 | reg = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG); |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 322 | if (rtc->type->has_irqwakeen) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 323 | irqwake_reg = rtc_read(rtc, OMAP_RTC_IRQWAKEEN); |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 324 | |
| 325 | if (alm->enabled) { |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 326 | reg |= OMAP_RTC_INTERRUPTS_IT_ALARM; |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 327 | irqwake_reg |= OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN; |
| 328 | } else { |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 329 | reg &= ~OMAP_RTC_INTERRUPTS_IT_ALARM; |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 330 | irqwake_reg &= ~OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN; |
| 331 | } |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 332 | rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, reg); |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 333 | if (rtc->type->has_irqwakeen) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 334 | rtc_write(rtc, OMAP_RTC_IRQWAKEEN, irqwake_reg); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 335 | |
| 336 | local_irq_enable(); |
| 337 | |
| 338 | return 0; |
| 339 | } |
| 340 | |
| 341 | static struct rtc_class_ops omap_rtc_ops = { |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 342 | .read_time = omap_rtc_read_time, |
| 343 | .set_time = omap_rtc_set_time, |
| 344 | .read_alarm = omap_rtc_read_alarm, |
| 345 | .set_alarm = omap_rtc_set_alarm, |
John Stultz | 16380c1 | 2011-02-02 17:02:41 -0800 | [diff] [blame] | 346 | .alarm_irq_enable = omap_rtc_alarm_irq_enable, |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 347 | }; |
| 348 | |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 349 | static const struct omap_rtc_device_type omap_rtc_default_type = { |
Johan Hovold | 9291e34 | 2014-12-10 15:53:04 -0800 | [diff] [blame^] | 350 | .has_power_up_reset = true, |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 351 | }; |
Afzal Mohammed | 9e0344d | 2012-12-17 16:02:15 -0800 | [diff] [blame] | 352 | |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 353 | static const struct omap_rtc_device_type omap_rtc_am3352_type = { |
| 354 | .has_32kclk_en = true, |
| 355 | .has_kicker = true, |
| 356 | .has_irqwakeen = true, |
| 357 | }; |
| 358 | |
| 359 | static const struct omap_rtc_device_type omap_rtc_da830_type = { |
| 360 | .has_kicker = true, |
| 361 | }; |
| 362 | |
| 363 | static const struct platform_device_id omap_rtc_id_table[] = { |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 364 | { |
Johan Hovold | a430ca2 | 2014-12-10 15:52:58 -0800 | [diff] [blame] | 365 | .name = "omap_rtc", |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 366 | .driver_data = (kernel_ulong_t)&omap_rtc_default_type, |
| 367 | }, { |
Hebbar Gururaja | 8af750e | 2013-09-11 14:24:18 -0700 | [diff] [blame] | 368 | .name = "am3352-rtc", |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 369 | .driver_data = (kernel_ulong_t)&omap_rtc_am3352_type, |
| 370 | }, { |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 371 | .name = "da830-rtc", |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 372 | .driver_data = (kernel_ulong_t)&omap_rtc_da830_type, |
| 373 | }, { |
| 374 | /* sentinel */ |
| 375 | } |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 376 | }; |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 377 | MODULE_DEVICE_TABLE(platform, omap_rtc_id_table); |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 378 | |
Afzal Mohammed | 9e0344d | 2012-12-17 16:02:15 -0800 | [diff] [blame] | 379 | static const struct of_device_id omap_rtc_of_match[] = { |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 380 | { |
| 381 | .compatible = "ti,am3352-rtc", |
| 382 | .data = &omap_rtc_am3352_type, |
| 383 | }, { |
| 384 | .compatible = "ti,da830-rtc", |
| 385 | .data = &omap_rtc_da830_type, |
| 386 | }, { |
| 387 | /* sentinel */ |
| 388 | } |
Afzal Mohammed | 9e0344d | 2012-12-17 16:02:15 -0800 | [diff] [blame] | 389 | }; |
| 390 | MODULE_DEVICE_TABLE(of, omap_rtc_of_match); |
| 391 | |
David Brownell | 71fc822 | 2008-07-23 21:30:38 -0700 | [diff] [blame] | 392 | static int __init omap_rtc_probe(struct platform_device *pdev) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 393 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 394 | struct omap_rtc *rtc; |
Vishwanathrao Badarkhe, Manish | 3765e8f | 2013-04-29 16:20:04 -0700 | [diff] [blame] | 395 | struct resource *res; |
Johan Hovold | 9291e34 | 2014-12-10 15:53:04 -0800 | [diff] [blame^] | 396 | u8 reg, mask, new_ctrl; |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 397 | const struct platform_device_id *id_entry; |
Afzal Mohammed | 9e0344d | 2012-12-17 16:02:15 -0800 | [diff] [blame] | 398 | const struct of_device_id *of_id; |
Johan Hovold | 437b37a | 2014-12-10 15:52:40 -0800 | [diff] [blame] | 399 | int ret; |
Afzal Mohammed | 9e0344d | 2012-12-17 16:02:15 -0800 | [diff] [blame] | 400 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 401 | rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL); |
| 402 | if (!rtc) |
| 403 | return -ENOMEM; |
| 404 | |
Afzal Mohammed | 9e0344d | 2012-12-17 16:02:15 -0800 | [diff] [blame] | 405 | of_id = of_match_device(omap_rtc_of_match, &pdev->dev); |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 406 | if (of_id) { |
| 407 | rtc->type = of_id->data; |
| 408 | } else { |
| 409 | id_entry = platform_get_device_id(pdev); |
| 410 | rtc->type = (void *)id_entry->driver_data; |
Sekhar Nori | 337b600 | 2014-06-06 14:36:04 -0700 | [diff] [blame] | 411 | } |
| 412 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 413 | rtc->irq_timer = platform_get_irq(pdev, 0); |
| 414 | if (rtc->irq_timer <= 0) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 415 | return -ENOENT; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 416 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 417 | rtc->irq_alarm = platform_get_irq(pdev, 1); |
| 418 | if (rtc->irq_alarm <= 0) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 419 | return -ENOENT; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 420 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 421 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 422 | rtc->base = devm_ioremap_resource(&pdev->dev, res); |
| 423 | if (IS_ERR(rtc->base)) |
| 424 | return PTR_ERR(rtc->base); |
| 425 | |
| 426 | platform_set_drvdata(pdev, rtc); |
Mark A. Greer | 8cfde8c | 2009-12-15 16:46:11 -0800 | [diff] [blame] | 427 | |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 428 | /* Enable the clock/module so that we can access the registers */ |
| 429 | pm_runtime_enable(&pdev->dev); |
| 430 | pm_runtime_get_sync(&pdev->dev); |
| 431 | |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 432 | if (rtc->type->has_kicker) { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 433 | rtc_writel(rtc, OMAP_RTC_KICK0_REG, KICK0_VALUE); |
| 434 | rtc_writel(rtc, OMAP_RTC_KICK1_REG, KICK1_VALUE); |
Afzal Mohammed | cab1458 | 2012-12-17 16:02:11 -0800 | [diff] [blame] | 435 | } |
| 436 | |
Johan Hovold | 1ed8b5d | 2014-12-10 15:52:36 -0800 | [diff] [blame] | 437 | /* |
| 438 | * disable interrupts |
| 439 | * |
| 440 | * NOTE: ALARM2 is not cleared on AM3352 if rtc_write (writeb) is used |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 441 | */ |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 442 | rtc_writel(rtc, OMAP_RTC_INTERRUPTS_REG, 0); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 443 | |
Sekhar Nori | cd914bb | 2014-06-06 14:36:06 -0700 | [diff] [blame] | 444 | /* enable RTC functional clock */ |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 445 | if (rtc->type->has_32kclk_en) { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 446 | reg = rtc_read(rtc, OMAP_RTC_OSC_REG); |
| 447 | rtc_writel(rtc, OMAP_RTC_OSC_REG, |
| 448 | reg | OMAP_RTC_OSC_32KCLK_EN); |
Johan Hovold | 44c63a5 | 2014-12-10 15:52:30 -0800 | [diff] [blame] | 449 | } |
Sekhar Nori | cd914bb | 2014-06-06 14:36:06 -0700 | [diff] [blame] | 450 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 451 | /* clear old status */ |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 452 | reg = rtc_read(rtc, OMAP_RTC_STATUS_REG); |
Johan Hovold | 9291e34 | 2014-12-10 15:53:04 -0800 | [diff] [blame^] | 453 | |
| 454 | mask = OMAP_RTC_STATUS_ALARM; |
| 455 | |
| 456 | if (rtc->type->has_power_up_reset) { |
| 457 | mask |= OMAP_RTC_STATUS_POWER_UP; |
| 458 | if (reg & OMAP_RTC_STATUS_POWER_UP) |
| 459 | dev_info(&pdev->dev, "RTC power up reset detected\n"); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 460 | } |
Johan Hovold | 9291e34 | 2014-12-10 15:53:04 -0800 | [diff] [blame^] | 461 | |
| 462 | if (reg & mask) |
| 463 | rtc_write(rtc, OMAP_RTC_STATUS_REG, reg & mask); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 464 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 465 | /* On boards with split power, RTC_ON_NOFF won't reset the RTC */ |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 466 | reg = rtc_read(rtc, OMAP_RTC_CTRL_REG); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 467 | if (reg & (u8) OMAP_RTC_CTRL_STOP) |
Johan Hovold | 397b630 | 2014-12-10 15:52:49 -0800 | [diff] [blame] | 468 | dev_info(&pdev->dev, "already running\n"); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 469 | |
| 470 | /* force to 24 hour mode */ |
Daniel Glöckner | 12b3e03 | 2011-08-03 16:21:02 -0700 | [diff] [blame] | 471 | new_ctrl = reg & (OMAP_RTC_CTRL_SPLIT|OMAP_RTC_CTRL_AUTO_COMP); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 472 | new_ctrl |= OMAP_RTC_CTRL_STOP; |
| 473 | |
| 474 | /* BOARD-SPECIFIC CUSTOMIZATION CAN GO HERE: |
| 475 | * |
Sekhar Nori | fa5b078 | 2010-10-27 15:33:05 -0700 | [diff] [blame] | 476 | * - Device wake-up capability setting should come through chip |
| 477 | * init logic. OMAP1 boards should initialize the "wakeup capable" |
| 478 | * flag in the platform device if the board is wired right for |
| 479 | * being woken up by RTC alarm. For OMAP-L138, this capability |
| 480 | * is built into the SoC by the "Deep Sleep" capability. |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 481 | * |
| 482 | * - Boards wired so RTC_ON_nOFF is used as the reset signal, |
| 483 | * rather than nPWRON_RESET, should forcibly enable split |
| 484 | * power mode. (Some chip errata report that RTC_CTRL_SPLIT |
| 485 | * is write-only, and always reads as zero...) |
| 486 | */ |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 487 | |
| 488 | if (new_ctrl & (u8) OMAP_RTC_CTRL_SPLIT) |
Johan Hovold | 397b630 | 2014-12-10 15:52:49 -0800 | [diff] [blame] | 489 | dev_info(&pdev->dev, "split power mode\n"); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 490 | |
| 491 | if (reg != new_ctrl) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 492 | rtc_write(rtc, OMAP_RTC_CTRL_REG, new_ctrl); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 493 | |
Johan Hovold | 4390ce0 | 2014-12-10 15:52:43 -0800 | [diff] [blame] | 494 | device_init_wakeup(&pdev->dev, true); |
| 495 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 496 | rtc->rtc = devm_rtc_device_register(&pdev->dev, pdev->name, |
Johan Hovold | 4390ce0 | 2014-12-10 15:52:43 -0800 | [diff] [blame] | 497 | &omap_rtc_ops, THIS_MODULE); |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 498 | if (IS_ERR(rtc->rtc)) { |
| 499 | ret = PTR_ERR(rtc->rtc); |
Johan Hovold | 4390ce0 | 2014-12-10 15:52:43 -0800 | [diff] [blame] | 500 | goto err; |
| 501 | } |
Johan Hovold | 4390ce0 | 2014-12-10 15:52:43 -0800 | [diff] [blame] | 502 | |
| 503 | /* handle periodic and alarm irqs */ |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 504 | ret = devm_request_irq(&pdev->dev, rtc->irq_timer, rtc_irq, 0, |
| 505 | dev_name(&rtc->rtc->dev), rtc); |
Johan Hovold | 4390ce0 | 2014-12-10 15:52:43 -0800 | [diff] [blame] | 506 | if (ret) |
| 507 | goto err; |
| 508 | |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 509 | if (rtc->irq_timer != rtc->irq_alarm) { |
| 510 | ret = devm_request_irq(&pdev->dev, rtc->irq_alarm, rtc_irq, 0, |
| 511 | dev_name(&rtc->rtc->dev), rtc); |
Johan Hovold | 4390ce0 | 2014-12-10 15:52:43 -0800 | [diff] [blame] | 512 | if (ret) |
| 513 | goto err; |
| 514 | } |
| 515 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 516 | return 0; |
| 517 | |
Johan Hovold | 437b37a | 2014-12-10 15:52:40 -0800 | [diff] [blame] | 518 | err: |
Johan Hovold | 7ecd9a3 | 2014-12-10 15:52:33 -0800 | [diff] [blame] | 519 | device_init_wakeup(&pdev->dev, false); |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 520 | if (rtc->type->has_kicker) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 521 | rtc_writel(rtc, OMAP_RTC_KICK0_REG, 0); |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 522 | pm_runtime_put_sync(&pdev->dev); |
| 523 | pm_runtime_disable(&pdev->dev); |
Johan Hovold | 437b37a | 2014-12-10 15:52:40 -0800 | [diff] [blame] | 524 | |
| 525 | return ret; |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 526 | } |
| 527 | |
David Brownell | 71fc822 | 2008-07-23 21:30:38 -0700 | [diff] [blame] | 528 | static int __exit omap_rtc_remove(struct platform_device *pdev) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 529 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 530 | struct omap_rtc *rtc = platform_get_drvdata(pdev); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 531 | |
| 532 | device_init_wakeup(&pdev->dev, 0); |
| 533 | |
| 534 | /* leave rtc running, but disable irqs */ |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 535 | rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, 0); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 536 | |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 537 | if (rtc->type->has_kicker) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 538 | rtc_writel(rtc, OMAP_RTC_KICK0_REG, 0); |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 539 | |
| 540 | /* Disable the clock/module */ |
| 541 | pm_runtime_put_sync(&pdev->dev); |
| 542 | pm_runtime_disable(&pdev->dev); |
| 543 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 544 | return 0; |
| 545 | } |
| 546 | |
Jingoo Han | 04ebc35 | 2013-04-29 16:21:01 -0700 | [diff] [blame] | 547 | #ifdef CONFIG_PM_SLEEP |
Jingoo Han | 04ebc35 | 2013-04-29 16:21:01 -0700 | [diff] [blame] | 548 | static int omap_rtc_suspend(struct device *dev) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 549 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 550 | struct omap_rtc *rtc = dev_get_drvdata(dev); |
| 551 | |
| 552 | rtc->interrupts_reg = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 553 | |
| 554 | /* FIXME the RTC alarm is not currently acting as a wakeup event |
Hebbar Gururaja | 8af750e | 2013-09-11 14:24:18 -0700 | [diff] [blame] | 555 | * source on some platforms, and in fact this enable() call is just |
| 556 | * saving a flag that's never used... |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 557 | */ |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 558 | if (device_may_wakeup(dev)) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 559 | enable_irq_wake(rtc->irq_alarm); |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 560 | else |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 561 | rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, 0); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 562 | |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 563 | /* Disable the clock/module */ |
Jingoo Han | 04ebc35 | 2013-04-29 16:21:01 -0700 | [diff] [blame] | 564 | pm_runtime_put_sync(dev); |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 565 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 566 | return 0; |
| 567 | } |
| 568 | |
Jingoo Han | 04ebc35 | 2013-04-29 16:21:01 -0700 | [diff] [blame] | 569 | static int omap_rtc_resume(struct device *dev) |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 570 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 571 | struct omap_rtc *rtc = dev_get_drvdata(dev); |
| 572 | |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 573 | /* Enable the clock/module so that we can access the registers */ |
Jingoo Han | 04ebc35 | 2013-04-29 16:21:01 -0700 | [diff] [blame] | 574 | pm_runtime_get_sync(dev); |
Vaibhav Hiremath | fc9bd90 | 2012-12-17 16:02:18 -0800 | [diff] [blame] | 575 | |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 576 | if (device_may_wakeup(dev)) |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 577 | disable_irq_wake(rtc->irq_alarm); |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 578 | else |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 579 | rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, rtc->interrupts_reg); |
Lokesh Vutla | ab7f580 | 2014-06-06 14:36:12 -0700 | [diff] [blame] | 580 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 581 | return 0; |
| 582 | } |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 583 | #endif |
| 584 | |
Jingoo Han | 04ebc35 | 2013-04-29 16:21:01 -0700 | [diff] [blame] | 585 | static SIMPLE_DEV_PM_OPS(omap_rtc_pm_ops, omap_rtc_suspend, omap_rtc_resume); |
| 586 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 587 | static void omap_rtc_shutdown(struct platform_device *pdev) |
| 588 | { |
Johan Hovold | 55ba953 | 2014-12-10 15:52:55 -0800 | [diff] [blame] | 589 | struct omap_rtc *rtc = platform_get_drvdata(pdev); |
| 590 | |
| 591 | rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, 0); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 592 | } |
| 593 | |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 594 | static struct platform_driver omap_rtc_driver = { |
David Brownell | 71fc822 | 2008-07-23 21:30:38 -0700 | [diff] [blame] | 595 | .remove = __exit_p(omap_rtc_remove), |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 596 | .shutdown = omap_rtc_shutdown, |
| 597 | .driver = { |
Johan Hovold | a430ca2 | 2014-12-10 15:52:58 -0800 | [diff] [blame] | 598 | .name = "omap_rtc", |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 599 | .owner = THIS_MODULE, |
Jingoo Han | 04ebc35 | 2013-04-29 16:21:01 -0700 | [diff] [blame] | 600 | .pm = &omap_rtc_pm_ops, |
Sachin Kamat | 616b734 | 2013-11-12 15:10:55 -0800 | [diff] [blame] | 601 | .of_match_table = omap_rtc_of_match, |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 602 | }, |
Johan Hovold | 2153f94 | 2014-12-10 15:53:01 -0800 | [diff] [blame] | 603 | .id_table = omap_rtc_id_table, |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 604 | }; |
| 605 | |
Jingoo Han | 09c5a36 | 2013-04-29 16:18:46 -0700 | [diff] [blame] | 606 | module_platform_driver_probe(omap_rtc_driver, omap_rtc_probe); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 607 | |
Johan Hovold | a430ca2 | 2014-12-10 15:52:58 -0800 | [diff] [blame] | 608 | MODULE_ALIAS("platform:omap_rtc"); |
David Brownell | db68b18 | 2006-12-06 20:38:36 -0800 | [diff] [blame] | 609 | MODULE_AUTHOR("George G. Davis (and others)"); |
| 610 | MODULE_LICENSE("GPL"); |