Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 2 | /* |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 3 | * rtc-twl.c -- TWL Real Time Clock interface |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2007 MontaVista Software, Inc |
| 6 | * Author: Alexandre Rusev <source@mvista.com> |
| 7 | * |
| 8 | * Based on original TI driver twl4030-rtc.c |
| 9 | * Copyright (C) 2006 Texas Instruments, Inc. |
| 10 | * |
| 11 | * Based on rtc-omap.c |
| 12 | * Copyright (C) 2003 MontaVista Software, Inc. |
| 13 | * Author: George G. Davis <gdavis@mvista.com> or <source@mvista.com> |
| 14 | * Copyright (C) 2006 David Brownell |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 15 | */ |
| 16 | |
Joe Perches | a737e83 | 2015-04-16 12:46:14 -0700 | [diff] [blame] | 17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 18 | |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 19 | #include <linux/kernel.h> |
Anton Vorontsov | 2fac667 | 2009-01-06 14:42:11 -0800 | [diff] [blame] | 20 | #include <linux/errno.h> |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 21 | #include <linux/init.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/types.h> |
| 24 | #include <linux/rtc.h> |
| 25 | #include <linux/bcd.h> |
| 26 | #include <linux/platform_device.h> |
| 27 | #include <linux/interrupt.h> |
Sachin Kamat | c8a6046 | 2013-02-21 16:44:28 -0800 | [diff] [blame] | 28 | #include <linux/of.h> |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 29 | |
Wolfram Sang | a205425 | 2017-08-14 18:34:24 +0200 | [diff] [blame] | 30 | #include <linux/mfd/twl.h> |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 31 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 32 | enum twl_class { |
| 33 | TWL_4030 = 0, |
| 34 | TWL_6030, |
| 35 | }; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 36 | |
| 37 | /* |
| 38 | * RTC block register offsets (use TWL_MODULE_RTC) |
| 39 | */ |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 40 | enum { |
| 41 | REG_SECONDS_REG = 0, |
| 42 | REG_MINUTES_REG, |
| 43 | REG_HOURS_REG, |
| 44 | REG_DAYS_REG, |
| 45 | REG_MONTHS_REG, |
| 46 | REG_YEARS_REG, |
| 47 | REG_WEEKS_REG, |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 48 | |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 49 | REG_ALARM_SECONDS_REG, |
| 50 | REG_ALARM_MINUTES_REG, |
| 51 | REG_ALARM_HOURS_REG, |
| 52 | REG_ALARM_DAYS_REG, |
| 53 | REG_ALARM_MONTHS_REG, |
| 54 | REG_ALARM_YEARS_REG, |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 55 | |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 56 | REG_RTC_CTRL_REG, |
| 57 | REG_RTC_STATUS_REG, |
| 58 | REG_RTC_INTERRUPTS_REG, |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 59 | |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 60 | REG_RTC_COMP_LSB_REG, |
| 61 | REG_RTC_COMP_MSB_REG, |
| 62 | }; |
Tobias Klauser | 2e84067 | 2010-03-05 13:44:23 -0800 | [diff] [blame] | 63 | static const u8 twl4030_rtc_reg_map[] = { |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 64 | [REG_SECONDS_REG] = 0x00, |
| 65 | [REG_MINUTES_REG] = 0x01, |
| 66 | [REG_HOURS_REG] = 0x02, |
| 67 | [REG_DAYS_REG] = 0x03, |
| 68 | [REG_MONTHS_REG] = 0x04, |
| 69 | [REG_YEARS_REG] = 0x05, |
| 70 | [REG_WEEKS_REG] = 0x06, |
| 71 | |
| 72 | [REG_ALARM_SECONDS_REG] = 0x07, |
| 73 | [REG_ALARM_MINUTES_REG] = 0x08, |
| 74 | [REG_ALARM_HOURS_REG] = 0x09, |
| 75 | [REG_ALARM_DAYS_REG] = 0x0A, |
| 76 | [REG_ALARM_MONTHS_REG] = 0x0B, |
| 77 | [REG_ALARM_YEARS_REG] = 0x0C, |
| 78 | |
| 79 | [REG_RTC_CTRL_REG] = 0x0D, |
| 80 | [REG_RTC_STATUS_REG] = 0x0E, |
| 81 | [REG_RTC_INTERRUPTS_REG] = 0x0F, |
| 82 | |
| 83 | [REG_RTC_COMP_LSB_REG] = 0x10, |
| 84 | [REG_RTC_COMP_MSB_REG] = 0x11, |
| 85 | }; |
Tobias Klauser | 2e84067 | 2010-03-05 13:44:23 -0800 | [diff] [blame] | 86 | static const u8 twl6030_rtc_reg_map[] = { |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 87 | [REG_SECONDS_REG] = 0x00, |
| 88 | [REG_MINUTES_REG] = 0x01, |
| 89 | [REG_HOURS_REG] = 0x02, |
| 90 | [REG_DAYS_REG] = 0x03, |
| 91 | [REG_MONTHS_REG] = 0x04, |
| 92 | [REG_YEARS_REG] = 0x05, |
| 93 | [REG_WEEKS_REG] = 0x06, |
| 94 | |
| 95 | [REG_ALARM_SECONDS_REG] = 0x08, |
| 96 | [REG_ALARM_MINUTES_REG] = 0x09, |
| 97 | [REG_ALARM_HOURS_REG] = 0x0A, |
| 98 | [REG_ALARM_DAYS_REG] = 0x0B, |
| 99 | [REG_ALARM_MONTHS_REG] = 0x0C, |
| 100 | [REG_ALARM_YEARS_REG] = 0x0D, |
| 101 | |
| 102 | [REG_RTC_CTRL_REG] = 0x10, |
| 103 | [REG_RTC_STATUS_REG] = 0x11, |
| 104 | [REG_RTC_INTERRUPTS_REG] = 0x12, |
| 105 | |
| 106 | [REG_RTC_COMP_LSB_REG] = 0x13, |
| 107 | [REG_RTC_COMP_MSB_REG] = 0x14, |
| 108 | }; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 109 | |
| 110 | /* RTC_CTRL_REG bitfields */ |
| 111 | #define BIT_RTC_CTRL_REG_STOP_RTC_M 0x01 |
| 112 | #define BIT_RTC_CTRL_REG_ROUND_30S_M 0x02 |
| 113 | #define BIT_RTC_CTRL_REG_AUTO_COMP_M 0x04 |
| 114 | #define BIT_RTC_CTRL_REG_MODE_12_24_M 0x08 |
| 115 | #define BIT_RTC_CTRL_REG_TEST_MODE_M 0x10 |
| 116 | #define BIT_RTC_CTRL_REG_SET_32_COUNTER_M 0x20 |
| 117 | #define BIT_RTC_CTRL_REG_GET_TIME_M 0x40 |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 118 | #define BIT_RTC_CTRL_REG_RTC_V_OPT 0x80 |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 119 | |
| 120 | /* RTC_STATUS_REG bitfields */ |
| 121 | #define BIT_RTC_STATUS_REG_RUN_M 0x02 |
| 122 | #define BIT_RTC_STATUS_REG_1S_EVENT_M 0x04 |
| 123 | #define BIT_RTC_STATUS_REG_1M_EVENT_M 0x08 |
| 124 | #define BIT_RTC_STATUS_REG_1H_EVENT_M 0x10 |
| 125 | #define BIT_RTC_STATUS_REG_1D_EVENT_M 0x20 |
| 126 | #define BIT_RTC_STATUS_REG_ALARM_M 0x40 |
| 127 | #define BIT_RTC_STATUS_REG_POWER_UP_M 0x80 |
| 128 | |
| 129 | /* RTC_INTERRUPTS_REG bitfields */ |
| 130 | #define BIT_RTC_INTERRUPTS_REG_EVERY_M 0x03 |
| 131 | #define BIT_RTC_INTERRUPTS_REG_IT_TIMER_M 0x04 |
| 132 | #define BIT_RTC_INTERRUPTS_REG_IT_ALARM_M 0x08 |
| 133 | |
| 134 | |
| 135 | /* REG_SECONDS_REG through REG_YEARS_REG is how many registers? */ |
| 136 | #define ALL_TIME_REGS 6 |
| 137 | |
| 138 | /*----------------------------------------------------------------------*/ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 139 | struct twl_rtc { |
| 140 | struct device *dev; |
| 141 | struct rtc_device *rtc; |
| 142 | u8 *reg_map; |
| 143 | /* |
| 144 | * Cache the value for timer/alarm interrupts register; this is |
| 145 | * only changed by callers holding rtc ops lock (or resume). |
| 146 | */ |
| 147 | unsigned char rtc_irq_bits; |
| 148 | bool wake_enabled; |
| 149 | #ifdef CONFIG_PM_SLEEP |
| 150 | unsigned char irqstat; |
| 151 | #endif |
| 152 | enum twl_class class; |
| 153 | }; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 154 | |
| 155 | /* |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 156 | * Supports 1 byte read from TWL RTC register. |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 157 | */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 158 | static int twl_rtc_read_u8(struct twl_rtc *twl_rtc, u8 *data, u8 reg) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 159 | { |
| 160 | int ret; |
| 161 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 162 | ret = twl_i2c_read_u8(TWL_MODULE_RTC, data, (twl_rtc->reg_map[reg])); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 163 | if (ret < 0) |
Joe Perches | a737e83 | 2015-04-16 12:46:14 -0700 | [diff] [blame] | 164 | pr_err("Could not read TWL register %X - error %d\n", reg, ret); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 165 | return ret; |
| 166 | } |
| 167 | |
| 168 | /* |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 169 | * Supports 1 byte write to TWL RTC registers. |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 170 | */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 171 | static int twl_rtc_write_u8(struct twl_rtc *twl_rtc, u8 data, u8 reg) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 172 | { |
| 173 | int ret; |
| 174 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 175 | ret = twl_i2c_write_u8(TWL_MODULE_RTC, data, (twl_rtc->reg_map[reg])); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 176 | if (ret < 0) |
Joe Perches | a737e83 | 2015-04-16 12:46:14 -0700 | [diff] [blame] | 177 | pr_err("Could not write TWL register %X - error %d\n", |
| 178 | reg, ret); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 179 | return ret; |
| 180 | } |
| 181 | |
| 182 | /* |
Alessandro Zummo | a748384 | 2009-01-15 13:50:52 -0800 | [diff] [blame] | 183 | * Enable 1/second update and/or alarm interrupts. |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 184 | */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 185 | static int set_rtc_irq_bit(struct twl_rtc *twl_rtc, unsigned char bit) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 186 | { |
| 187 | unsigned char val; |
| 188 | int ret; |
| 189 | |
Venu Byravarasu | ce9f650 | 2012-03-23 15:02:32 -0700 | [diff] [blame] | 190 | /* if the bit is set, return from here */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 191 | if (twl_rtc->rtc_irq_bits & bit) |
Venu Byravarasu | ce9f650 | 2012-03-23 15:02:32 -0700 | [diff] [blame] | 192 | return 0; |
| 193 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 194 | val = twl_rtc->rtc_irq_bits | bit; |
Alessandro Zummo | a748384 | 2009-01-15 13:50:52 -0800 | [diff] [blame] | 195 | val &= ~BIT_RTC_INTERRUPTS_REG_EVERY_M; |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 196 | ret = twl_rtc_write_u8(twl_rtc, val, REG_RTC_INTERRUPTS_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 197 | if (ret == 0) |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 198 | twl_rtc->rtc_irq_bits = val; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 199 | |
| 200 | return ret; |
| 201 | } |
| 202 | |
| 203 | /* |
Alessandro Zummo | a748384 | 2009-01-15 13:50:52 -0800 | [diff] [blame] | 204 | * Disable update and/or alarm interrupts. |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 205 | */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 206 | static int mask_rtc_irq_bit(struct twl_rtc *twl_rtc, unsigned char bit) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 207 | { |
| 208 | unsigned char val; |
| 209 | int ret; |
| 210 | |
Venu Byravarasu | ce9f650 | 2012-03-23 15:02:32 -0700 | [diff] [blame] | 211 | /* if the bit is clear, return from here */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 212 | if (!(twl_rtc->rtc_irq_bits & bit)) |
Venu Byravarasu | ce9f650 | 2012-03-23 15:02:32 -0700 | [diff] [blame] | 213 | return 0; |
| 214 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 215 | val = twl_rtc->rtc_irq_bits & ~bit; |
| 216 | ret = twl_rtc_write_u8(twl_rtc, val, REG_RTC_INTERRUPTS_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 217 | if (ret == 0) |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 218 | twl_rtc->rtc_irq_bits = val; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 219 | |
| 220 | return ret; |
| 221 | } |
| 222 | |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 223 | static int twl_rtc_alarm_irq_enable(struct device *dev, unsigned enabled) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 224 | { |
Kevin Hilman | ae84589 | 2013-07-03 15:07:53 -0700 | [diff] [blame] | 225 | struct platform_device *pdev = to_platform_device(dev); |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 226 | struct twl_rtc *twl_rtc = dev_get_drvdata(dev); |
Kevin Hilman | ae84589 | 2013-07-03 15:07:53 -0700 | [diff] [blame] | 227 | int irq = platform_get_irq(pdev, 0); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 228 | int ret; |
| 229 | |
Kevin Hilman | ae84589 | 2013-07-03 15:07:53 -0700 | [diff] [blame] | 230 | if (enabled) { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 231 | ret = set_rtc_irq_bit(twl_rtc, |
| 232 | BIT_RTC_INTERRUPTS_REG_IT_ALARM_M); |
| 233 | if (device_can_wakeup(dev) && !twl_rtc->wake_enabled) { |
Kevin Hilman | ae84589 | 2013-07-03 15:07:53 -0700 | [diff] [blame] | 234 | enable_irq_wake(irq); |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 235 | twl_rtc->wake_enabled = true; |
Kevin Hilman | ae84589 | 2013-07-03 15:07:53 -0700 | [diff] [blame] | 236 | } |
| 237 | } else { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 238 | ret = mask_rtc_irq_bit(twl_rtc, |
| 239 | BIT_RTC_INTERRUPTS_REG_IT_ALARM_M); |
| 240 | if (twl_rtc->wake_enabled) { |
Kevin Hilman | ae84589 | 2013-07-03 15:07:53 -0700 | [diff] [blame] | 241 | disable_irq_wake(irq); |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 242 | twl_rtc->wake_enabled = false; |
Kevin Hilman | ae84589 | 2013-07-03 15:07:53 -0700 | [diff] [blame] | 243 | } |
| 244 | } |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 245 | |
| 246 | return ret; |
| 247 | } |
| 248 | |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 249 | /* |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 250 | * Gets current TWL RTC time and date parameters. |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 251 | * |
| 252 | * The RTC's time/alarm representation is not what gmtime(3) requires |
| 253 | * Linux to use: |
| 254 | * |
| 255 | * - Months are 1..12 vs Linux 0-11 |
| 256 | * - Years are 0..99 vs Linux 1900..N (we assume 21st century) |
| 257 | */ |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 258 | static int twl_rtc_read_time(struct device *dev, struct rtc_time *tm) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 259 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 260 | struct twl_rtc *twl_rtc = dev_get_drvdata(dev); |
Peter Ujfalusi | 14591d8 | 2012-11-13 09:28:45 +0100 | [diff] [blame] | 261 | unsigned char rtc_data[ALL_TIME_REGS]; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 262 | int ret; |
| 263 | u8 save_control; |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 264 | u8 rtc_control; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 265 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 266 | ret = twl_rtc_read_u8(twl_rtc, &save_control, REG_RTC_CTRL_REG); |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 267 | if (ret < 0) { |
| 268 | dev_err(dev, "%s: reading CTRL_REG, error %d\n", __func__, ret); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 269 | return ret; |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 270 | } |
| 271 | /* for twl6030/32 make sure BIT_RTC_CTRL_REG_GET_TIME_M is clear */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 272 | if (twl_rtc->class == TWL_6030) { |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 273 | if (save_control & BIT_RTC_CTRL_REG_GET_TIME_M) { |
| 274 | save_control &= ~BIT_RTC_CTRL_REG_GET_TIME_M; |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 275 | ret = twl_rtc_write_u8(twl_rtc, save_control, |
| 276 | REG_RTC_CTRL_REG); |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 277 | if (ret < 0) { |
| 278 | dev_err(dev, "%s clr GET_TIME, error %d\n", |
| 279 | __func__, ret); |
| 280 | return ret; |
| 281 | } |
| 282 | } |
| 283 | } |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 284 | |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 285 | /* Copy RTC counting registers to static registers or latches */ |
| 286 | rtc_control = save_control | BIT_RTC_CTRL_REG_GET_TIME_M; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 287 | |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 288 | /* for twl6030/32 enable read access to static shadowed registers */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 289 | if (twl_rtc->class == TWL_6030) |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 290 | rtc_control |= BIT_RTC_CTRL_REG_RTC_V_OPT; |
| 291 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 292 | ret = twl_rtc_write_u8(twl_rtc, rtc_control, REG_RTC_CTRL_REG); |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 293 | if (ret < 0) { |
| 294 | dev_err(dev, "%s: writing CTRL_REG, error %d\n", __func__, ret); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 295 | return ret; |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 296 | } |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 297 | |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 298 | ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data, |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 299 | (twl_rtc->reg_map[REG_SECONDS_REG]), ALL_TIME_REGS); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 300 | |
| 301 | if (ret < 0) { |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 302 | dev_err(dev, "%s: reading data, error %d\n", __func__, ret); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 303 | return ret; |
| 304 | } |
| 305 | |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 306 | /* for twl6030 restore original state of rtc control register */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 307 | if (twl_rtc->class == TWL_6030) { |
| 308 | ret = twl_rtc_write_u8(twl_rtc, save_control, REG_RTC_CTRL_REG); |
Konstantin Shlyakhovoy | f3ec434 | 2012-04-12 12:49:15 -0700 | [diff] [blame] | 309 | if (ret < 0) { |
| 310 | dev_err(dev, "%s: restore CTRL_REG, error %d\n", |
| 311 | __func__, ret); |
| 312 | return ret; |
| 313 | } |
| 314 | } |
| 315 | |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 316 | tm->tm_sec = bcd2bin(rtc_data[0]); |
| 317 | tm->tm_min = bcd2bin(rtc_data[1]); |
| 318 | tm->tm_hour = bcd2bin(rtc_data[2]); |
| 319 | tm->tm_mday = bcd2bin(rtc_data[3]); |
| 320 | tm->tm_mon = bcd2bin(rtc_data[4]) - 1; |
| 321 | tm->tm_year = bcd2bin(rtc_data[5]) + 100; |
| 322 | |
| 323 | return ret; |
| 324 | } |
| 325 | |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 326 | static int twl_rtc_set_time(struct device *dev, struct rtc_time *tm) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 327 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 328 | struct twl_rtc *twl_rtc = dev_get_drvdata(dev); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 329 | unsigned char save_control; |
Peter Ujfalusi | 14591d8 | 2012-11-13 09:28:45 +0100 | [diff] [blame] | 330 | unsigned char rtc_data[ALL_TIME_REGS]; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 331 | int ret; |
| 332 | |
Peter Ujfalusi | 14591d8 | 2012-11-13 09:28:45 +0100 | [diff] [blame] | 333 | rtc_data[0] = bin2bcd(tm->tm_sec); |
| 334 | rtc_data[1] = bin2bcd(tm->tm_min); |
| 335 | rtc_data[2] = bin2bcd(tm->tm_hour); |
| 336 | rtc_data[3] = bin2bcd(tm->tm_mday); |
| 337 | rtc_data[4] = bin2bcd(tm->tm_mon + 1); |
| 338 | rtc_data[5] = bin2bcd(tm->tm_year - 100); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 339 | |
| 340 | /* Stop RTC while updating the TC registers */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 341 | ret = twl_rtc_read_u8(twl_rtc, &save_control, REG_RTC_CTRL_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 342 | if (ret < 0) |
| 343 | goto out; |
| 344 | |
| 345 | save_control &= ~BIT_RTC_CTRL_REG_STOP_RTC_M; |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 346 | ret = twl_rtc_write_u8(twl_rtc, save_control, REG_RTC_CTRL_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 347 | if (ret < 0) |
| 348 | goto out; |
| 349 | |
| 350 | /* update all the time registers in one shot */ |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 351 | ret = twl_i2c_write(TWL_MODULE_RTC, rtc_data, |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 352 | (twl_rtc->reg_map[REG_SECONDS_REG]), ALL_TIME_REGS); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 353 | if (ret < 0) { |
| 354 | dev_err(dev, "rtc_set_time error %d\n", ret); |
| 355 | goto out; |
| 356 | } |
| 357 | |
| 358 | /* Start back RTC */ |
| 359 | save_control |= BIT_RTC_CTRL_REG_STOP_RTC_M; |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 360 | ret = twl_rtc_write_u8(twl_rtc, save_control, REG_RTC_CTRL_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 361 | |
| 362 | out: |
| 363 | return ret; |
| 364 | } |
| 365 | |
| 366 | /* |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 367 | * Gets current TWL RTC alarm time. |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 368 | */ |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 369 | static int twl_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 370 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 371 | struct twl_rtc *twl_rtc = dev_get_drvdata(dev); |
Peter Ujfalusi | 14591d8 | 2012-11-13 09:28:45 +0100 | [diff] [blame] | 372 | unsigned char rtc_data[ALL_TIME_REGS]; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 373 | int ret; |
| 374 | |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 375 | ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data, |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 376 | twl_rtc->reg_map[REG_ALARM_SECONDS_REG], ALL_TIME_REGS); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 377 | if (ret < 0) { |
| 378 | dev_err(dev, "rtc_read_alarm error %d\n", ret); |
| 379 | return ret; |
| 380 | } |
| 381 | |
| 382 | /* some of these fields may be wildcard/"match all" */ |
| 383 | alm->time.tm_sec = bcd2bin(rtc_data[0]); |
| 384 | alm->time.tm_min = bcd2bin(rtc_data[1]); |
| 385 | alm->time.tm_hour = bcd2bin(rtc_data[2]); |
| 386 | alm->time.tm_mday = bcd2bin(rtc_data[3]); |
| 387 | alm->time.tm_mon = bcd2bin(rtc_data[4]) - 1; |
| 388 | alm->time.tm_year = bcd2bin(rtc_data[5]) + 100; |
| 389 | |
| 390 | /* report cached alarm enable state */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 391 | if (twl_rtc->rtc_irq_bits & BIT_RTC_INTERRUPTS_REG_IT_ALARM_M) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 392 | alm->enabled = 1; |
| 393 | |
| 394 | return ret; |
| 395 | } |
| 396 | |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 397 | static int twl_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 398 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 399 | struct twl_rtc *twl_rtc = dev_get_drvdata(dev); |
| 400 | |
Peter Ujfalusi | 14591d8 | 2012-11-13 09:28:45 +0100 | [diff] [blame] | 401 | unsigned char alarm_data[ALL_TIME_REGS]; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 402 | int ret; |
| 403 | |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 404 | ret = twl_rtc_alarm_irq_enable(dev, 0); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 405 | if (ret) |
| 406 | goto out; |
| 407 | |
Peter Ujfalusi | 14591d8 | 2012-11-13 09:28:45 +0100 | [diff] [blame] | 408 | alarm_data[0] = bin2bcd(alm->time.tm_sec); |
| 409 | alarm_data[1] = bin2bcd(alm->time.tm_min); |
| 410 | alarm_data[2] = bin2bcd(alm->time.tm_hour); |
| 411 | alarm_data[3] = bin2bcd(alm->time.tm_mday); |
| 412 | alarm_data[4] = bin2bcd(alm->time.tm_mon + 1); |
| 413 | alarm_data[5] = bin2bcd(alm->time.tm_year - 100); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 414 | |
| 415 | /* update all the alarm registers in one shot */ |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 416 | ret = twl_i2c_write(TWL_MODULE_RTC, alarm_data, |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 417 | twl_rtc->reg_map[REG_ALARM_SECONDS_REG], ALL_TIME_REGS); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 418 | if (ret) { |
| 419 | dev_err(dev, "rtc_set_alarm error %d\n", ret); |
| 420 | goto out; |
| 421 | } |
| 422 | |
| 423 | if (alm->enabled) |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 424 | ret = twl_rtc_alarm_irq_enable(dev, 1); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 425 | out: |
| 426 | return ret; |
| 427 | } |
| 428 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 429 | static irqreturn_t twl_rtc_interrupt(int irq, void *data) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 430 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 431 | struct twl_rtc *twl_rtc = data; |
Venu Byravarasu | 2778ebc | 2012-03-23 15:02:34 -0700 | [diff] [blame] | 432 | unsigned long events; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 433 | int ret = IRQ_NONE; |
| 434 | int res; |
| 435 | u8 rd_reg; |
| 436 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 437 | res = twl_rtc_read_u8(twl_rtc, &rd_reg, REG_RTC_STATUS_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 438 | if (res) |
| 439 | goto out; |
| 440 | /* |
| 441 | * Figure out source of interrupt: ALARM or TIMER in RTC_STATUS_REG. |
| 442 | * only one (ALARM or RTC) interrupt source may be enabled |
| 443 | * at time, we also could check our results |
| 444 | * by reading RTS_INTERRUPTS_REGISTER[IT_TIMER,IT_ALARM] |
| 445 | */ |
| 446 | if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M) |
Venu Byravarasu | 2778ebc | 2012-03-23 15:02:34 -0700 | [diff] [blame] | 447 | events = RTC_IRQF | RTC_AF; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 448 | else |
Venu Byravarasu | 2778ebc | 2012-03-23 15:02:34 -0700 | [diff] [blame] | 449 | events = RTC_IRQF | RTC_PF; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 450 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 451 | res = twl_rtc_write_u8(twl_rtc, BIT_RTC_STATUS_REG_ALARM_M, |
| 452 | REG_RTC_STATUS_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 453 | if (res) |
| 454 | goto out; |
| 455 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 456 | if (twl_rtc->class == TWL_4030) { |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 457 | /* Clear on Read enabled. RTC_IT bit of TWL4030_INT_PWR_ISR1 |
| 458 | * needs 2 reads to clear the interrupt. One read is done in |
| 459 | * do_twl_pwrirq(). Doing the second read, to clear |
| 460 | * the bit. |
| 461 | * |
| 462 | * FIXME the reason PWR_ISR1 needs an extra read is that |
| 463 | * RTC_IF retriggered until we cleared REG_ALARM_M above. |
| 464 | * But re-reading like this is a bad hack; by doing so we |
| 465 | * risk wrongly clearing status for some other IRQ (losing |
| 466 | * the interrupt). Be smarter about handling RTC_UF ... |
| 467 | */ |
| 468 | res = twl_i2c_read_u8(TWL4030_MODULE_INT, |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 469 | &rd_reg, TWL4030_INT_PWR_ISR1); |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 470 | if (res) |
| 471 | goto out; |
| 472 | } |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 473 | |
| 474 | /* Notify RTC core on event */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 475 | rtc_update_irq(twl_rtc->rtc, 1, events); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 476 | |
| 477 | ret = IRQ_HANDLED; |
| 478 | out: |
| 479 | return ret; |
| 480 | } |
| 481 | |
Julia Lawall | 34c7b3a | 2016-08-31 10:05:25 +0200 | [diff] [blame] | 482 | static const struct rtc_class_ops twl_rtc_ops = { |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 483 | .read_time = twl_rtc_read_time, |
| 484 | .set_time = twl_rtc_set_time, |
| 485 | .read_alarm = twl_rtc_read_alarm, |
| 486 | .set_alarm = twl_rtc_set_alarm, |
| 487 | .alarm_irq_enable = twl_rtc_alarm_irq_enable, |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 488 | }; |
| 489 | |
| 490 | /*----------------------------------------------------------------------*/ |
| 491 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 492 | static int twl_rtc_probe(struct platform_device *pdev) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 493 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 494 | struct twl_rtc *twl_rtc; |
Nicolae Rosia | 1c02cbfe | 2016-11-23 10:55:57 +0200 | [diff] [blame] | 495 | struct device_node *np = pdev->dev.of_node; |
Todd Poynor | 7e72c68 | 2011-08-10 20:20:36 -0700 | [diff] [blame] | 496 | int ret = -EINVAL; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 497 | int irq = platform_get_irq(pdev, 0); |
| 498 | u8 rd_reg; |
| 499 | |
Nicolae Rosia | 1c02cbfe | 2016-11-23 10:55:57 +0200 | [diff] [blame] | 500 | if (!np) { |
| 501 | dev_err(&pdev->dev, "no DT info\n"); |
| 502 | return -EINVAL; |
| 503 | } |
| 504 | |
Anton Vorontsov | 2fac667 | 2009-01-06 14:42:11 -0800 | [diff] [blame] | 505 | if (irq <= 0) |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 506 | return ret; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 507 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 508 | twl_rtc = devm_kzalloc(&pdev->dev, sizeof(*twl_rtc), GFP_KERNEL); |
| 509 | if (!twl_rtc) |
| 510 | return -ENOMEM; |
Peter Ujfalusi | d3869ff | 2013-07-03 15:07:55 -0700 | [diff] [blame] | 511 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 512 | if (twl_class_is_4030()) { |
| 513 | twl_rtc->class = TWL_4030; |
| 514 | twl_rtc->reg_map = (u8 *)twl4030_rtc_reg_map; |
| 515 | } else if (twl_class_is_6030()) { |
| 516 | twl_rtc->class = TWL_6030; |
| 517 | twl_rtc->reg_map = (u8 *)twl6030_rtc_reg_map; |
| 518 | } else { |
| 519 | dev_err(&pdev->dev, "TWL Class not supported.\n"); |
| 520 | return -EINVAL; |
| 521 | } |
| 522 | |
| 523 | ret = twl_rtc_read_u8(twl_rtc, &rd_reg, REG_RTC_STATUS_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 524 | if (ret < 0) |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 525 | return ret; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 526 | |
| 527 | if (rd_reg & BIT_RTC_STATUS_REG_POWER_UP_M) |
| 528 | dev_warn(&pdev->dev, "Power up reset detected.\n"); |
| 529 | |
| 530 | if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M) |
| 531 | dev_warn(&pdev->dev, "Pending Alarm interrupt detected.\n"); |
| 532 | |
| 533 | /* Clear RTC Power up reset and pending alarm interrupts */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 534 | ret = twl_rtc_write_u8(twl_rtc, rd_reg, REG_RTC_STATUS_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 535 | if (ret < 0) |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 536 | return ret; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 537 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 538 | if (twl_rtc->class == TWL_6030) { |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 539 | twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK, |
| 540 | REG_INT_MSK_LINE_A); |
| 541 | twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK, |
| 542 | REG_INT_MSK_STS_A); |
| 543 | } |
| 544 | |
Venu Byravarasu | f7439bc | 2012-03-23 15:02:33 -0700 | [diff] [blame] | 545 | dev_info(&pdev->dev, "Enabling TWL-RTC\n"); |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 546 | ret = twl_rtc_write_u8(twl_rtc, BIT_RTC_CTRL_REG_STOP_RTC_M, |
| 547 | REG_RTC_CTRL_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 548 | if (ret < 0) |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 549 | return ret; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 550 | |
Kevin Hilman | 8dcebaa9 | 2012-09-17 14:09:17 -0700 | [diff] [blame] | 551 | /* ensure interrupts are disabled, bootloaders can be strange */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 552 | ret = twl_rtc_write_u8(twl_rtc, 0, REG_RTC_INTERRUPTS_REG); |
Kevin Hilman | 8dcebaa9 | 2012-09-17 14:09:17 -0700 | [diff] [blame] | 553 | if (ret < 0) |
| 554 | dev_warn(&pdev->dev, "unable to disable interrupt\n"); |
| 555 | |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 556 | /* init cached IRQ enable bits */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 557 | ret = twl_rtc_read_u8(twl_rtc, &twl_rtc->rtc_irq_bits, |
| 558 | REG_RTC_INTERRUPTS_REG); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 559 | if (ret < 0) |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 560 | return ret; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 561 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 562 | platform_set_drvdata(pdev, twl_rtc); |
Grygorii Strashko | b99b94b | 2013-07-31 13:53:41 -0700 | [diff] [blame] | 563 | device_init_wakeup(&pdev->dev, 1); |
| 564 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 565 | twl_rtc->rtc = devm_rtc_device_register(&pdev->dev, pdev->name, |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 566 | &twl_rtc_ops, THIS_MODULE); |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 567 | if (IS_ERR(twl_rtc->rtc)) { |
Todd Poynor | 7e72c68 | 2011-08-10 20:20:36 -0700 | [diff] [blame] | 568 | dev_err(&pdev->dev, "can't register RTC device, err %ld\n", |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 569 | PTR_ERR(twl_rtc->rtc)); |
| 570 | return PTR_ERR(twl_rtc->rtc); |
Todd Poynor | 7e72c68 | 2011-08-10 20:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 573 | ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, |
| 574 | twl_rtc_interrupt, |
| 575 | IRQF_TRIGGER_RISING | IRQF_ONESHOT, |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 576 | dev_name(&twl_rtc->rtc->dev), twl_rtc); |
Todd Poynor | 7e72c68 | 2011-08-10 20:20:36 -0700 | [diff] [blame] | 577 | if (ret < 0) { |
| 578 | dev_err(&pdev->dev, "IRQ is not free.\n"); |
Jingoo Han | f53eeb8 | 2014-01-23 15:55:06 -0800 | [diff] [blame] | 579 | return ret; |
Todd Poynor | 7e72c68 | 2011-08-10 20:20:36 -0700 | [diff] [blame] | 580 | } |
| 581 | |
Todd Poynor | 7e72c68 | 2011-08-10 20:20:36 -0700 | [diff] [blame] | 582 | return 0; |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | /* |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 586 | * Disable all TWL RTC module interrupts. |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 587 | * Sets status flag to free. |
| 588 | */ |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 589 | static int twl_rtc_remove(struct platform_device *pdev) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 590 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 591 | struct twl_rtc *twl_rtc = platform_get_drvdata(pdev); |
| 592 | |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 593 | /* leave rtc running, but disable irqs */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 594 | mask_rtc_irq_bit(twl_rtc, BIT_RTC_INTERRUPTS_REG_IT_ALARM_M); |
| 595 | mask_rtc_irq_bit(twl_rtc, BIT_RTC_INTERRUPTS_REG_IT_TIMER_M); |
| 596 | if (twl_rtc->class == TWL_6030) { |
Balaji T K | a6b49ff | 2009-12-13 22:16:31 +0100 | [diff] [blame] | 597 | twl6030_interrupt_mask(TWL6030_RTC_INT_MASK, |
| 598 | REG_INT_MSK_LINE_A); |
| 599 | twl6030_interrupt_mask(TWL6030_RTC_INT_MASK, |
| 600 | REG_INT_MSK_STS_A); |
| 601 | } |
| 602 | |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 603 | return 0; |
| 604 | } |
| 605 | |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 606 | static void twl_rtc_shutdown(struct platform_device *pdev) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 607 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 608 | struct twl_rtc *twl_rtc = platform_get_drvdata(pdev); |
| 609 | |
Matti Halme | cafa1d8 | 2009-01-15 13:50:56 -0800 | [diff] [blame] | 610 | /* mask timer interrupts, but leave alarm interrupts on to enable |
| 611 | power-on when alarm is triggered */ |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 612 | mask_rtc_irq_bit(twl_rtc, BIT_RTC_INTERRUPTS_REG_IT_TIMER_M); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 613 | } |
| 614 | |
Jingoo Han | b9d8c46 | 2013-04-29 16:21:04 -0700 | [diff] [blame] | 615 | #ifdef CONFIG_PM_SLEEP |
Jingoo Han | b9d8c46 | 2013-04-29 16:21:04 -0700 | [diff] [blame] | 616 | static int twl_rtc_suspend(struct device *dev) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 617 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 618 | struct twl_rtc *twl_rtc = dev_get_drvdata(dev); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 619 | |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 620 | twl_rtc->irqstat = twl_rtc->rtc_irq_bits; |
| 621 | |
| 622 | mask_rtc_irq_bit(twl_rtc, BIT_RTC_INTERRUPTS_REG_IT_TIMER_M); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 623 | return 0; |
| 624 | } |
| 625 | |
Jingoo Han | b9d8c46 | 2013-04-29 16:21:04 -0700 | [diff] [blame] | 626 | static int twl_rtc_resume(struct device *dev) |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 627 | { |
Nicolae Rosia | e3e7f95 | 2016-11-23 10:55:56 +0200 | [diff] [blame] | 628 | struct twl_rtc *twl_rtc = dev_get_drvdata(dev); |
| 629 | |
| 630 | set_rtc_irq_bit(twl_rtc, twl_rtc->irqstat); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 631 | return 0; |
| 632 | } |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 633 | #endif |
| 634 | |
Jingoo Han | b9d8c46 | 2013-04-29 16:21:04 -0700 | [diff] [blame] | 635 | static SIMPLE_DEV_PM_OPS(twl_rtc_pm_ops, twl_rtc_suspend, twl_rtc_resume); |
| 636 | |
Benoit Cousson | 948170f | 2012-01-10 15:10:59 -0800 | [diff] [blame] | 637 | static const struct of_device_id twl_rtc_of_match[] = { |
| 638 | {.compatible = "ti,twl4030-rtc", }, |
| 639 | { }, |
| 640 | }; |
| 641 | MODULE_DEVICE_TABLE(of, twl_rtc_of_match); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 642 | |
| 643 | static struct platform_driver twl4030rtc_driver = { |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 644 | .probe = twl_rtc_probe, |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 645 | .remove = twl_rtc_remove, |
Balaji T K | ef3b7d0 | 2009-12-13 21:30:48 +0100 | [diff] [blame] | 646 | .shutdown = twl_rtc_shutdown, |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 647 | .driver = { |
Benoit Cousson | 948170f | 2012-01-10 15:10:59 -0800 | [diff] [blame] | 648 | .name = "twl_rtc", |
Jingoo Han | b9d8c46 | 2013-04-29 16:21:04 -0700 | [diff] [blame] | 649 | .pm = &twl_rtc_pm_ops, |
Nicolae Rosia | 1c02cbfe | 2016-11-23 10:55:57 +0200 | [diff] [blame] | 650 | .of_match_table = twl_rtc_of_match, |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 651 | }, |
| 652 | }; |
| 653 | |
Peter Ujfalusi | 5ee6748 | 2013-07-03 15:07:56 -0700 | [diff] [blame] | 654 | module_platform_driver(twl4030rtc_driver); |
David Brownell | f96411a | 2008-10-20 23:50:05 +0200 | [diff] [blame] | 655 | |
| 656 | MODULE_AUTHOR("Texas Instruments, MontaVista Software"); |
| 657 | MODULE_LICENSE("GPL"); |