blob: 176720b7b9e5083195b3bd789dbf5a8a622cd6c8 [file] [log] [blame]
David Brownellf96411a2008-10-20 23:50:05 +02001/*
Balaji T Kef3b7d02009-12-13 21:30:48 +01002 * rtc-twl.c -- TWL Real Time Clock interface
David Brownellf96411a2008-10-20 23:50:05 +02003 *
4 * Copyright (C) 2007 MontaVista Software, Inc
5 * Author: Alexandre Rusev <source@mvista.com>
6 *
7 * Based on original TI driver twl4030-rtc.c
8 * Copyright (C) 2006 Texas Instruments, Inc.
9 *
10 * Based on rtc-omap.c
11 * Copyright (C) 2003 MontaVista Software, Inc.
12 * Author: George G. Davis <gdavis@mvista.com> or <source@mvista.com>
13 * Copyright (C) 2006 David Brownell
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
Joe Perchesa737e832015-04-16 12:46:14 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
David Brownellf96411a2008-10-20 23:50:05 +020023#include <linux/kernel.h>
Anton Vorontsov2fac6672009-01-06 14:42:11 -080024#include <linux/errno.h>
David Brownellf96411a2008-10-20 23:50:05 +020025#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/rtc.h>
29#include <linux/bcd.h>
30#include <linux/platform_device.h>
31#include <linux/interrupt.h>
Sachin Kamatc8a60462013-02-21 16:44:28 -080032#include <linux/of.h>
David Brownellf96411a2008-10-20 23:50:05 +020033
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010034#include <linux/i2c/twl.h>
David Brownellf96411a2008-10-20 23:50:05 +020035
36
37/*
38 * RTC block register offsets (use TWL_MODULE_RTC)
39 */
Balaji T Ka6b49ff2009-12-13 22:16:31 +010040enum {
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 Brownellf96411a2008-10-20 23:50:05 +020048
Balaji T Ka6b49ff2009-12-13 22:16:31 +010049 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 Brownellf96411a2008-10-20 23:50:05 +020055
Balaji T Ka6b49ff2009-12-13 22:16:31 +010056 REG_RTC_CTRL_REG,
57 REG_RTC_STATUS_REG,
58 REG_RTC_INTERRUPTS_REG,
David Brownellf96411a2008-10-20 23:50:05 +020059
Balaji T Ka6b49ff2009-12-13 22:16:31 +010060 REG_RTC_COMP_LSB_REG,
61 REG_RTC_COMP_MSB_REG,
62};
Tobias Klauser2e840672010-03-05 13:44:23 -080063static const u8 twl4030_rtc_reg_map[] = {
Balaji T Ka6b49ff2009-12-13 22:16:31 +010064 [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 Klauser2e840672010-03-05 13:44:23 -080086static const u8 twl6030_rtc_reg_map[] = {
Balaji T Ka6b49ff2009-12-13 22:16:31 +010087 [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 Brownellf96411a2008-10-20 23:50:05 +0200109
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 Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700118#define BIT_RTC_CTRL_REG_RTC_V_OPT 0x80
David Brownellf96411a2008-10-20 23:50:05 +0200119
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/*----------------------------------------------------------------------*/
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100139static u8 *rtc_reg_map;
David Brownellf96411a2008-10-20 23:50:05 +0200140
141/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100142 * Supports 1 byte read from TWL RTC register.
David Brownellf96411a2008-10-20 23:50:05 +0200143 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100144static int twl_rtc_read_u8(u8 *data, u8 reg)
David Brownellf96411a2008-10-20 23:50:05 +0200145{
146 int ret;
147
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100148 ret = twl_i2c_read_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
David Brownellf96411a2008-10-20 23:50:05 +0200149 if (ret < 0)
Joe Perchesa737e832015-04-16 12:46:14 -0700150 pr_err("Could not read TWL register %X - error %d\n", reg, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200151 return ret;
152}
153
154/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100155 * Supports 1 byte write to TWL RTC registers.
David Brownellf96411a2008-10-20 23:50:05 +0200156 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100157static int twl_rtc_write_u8(u8 data, u8 reg)
David Brownellf96411a2008-10-20 23:50:05 +0200158{
159 int ret;
160
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100161 ret = twl_i2c_write_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
David Brownellf96411a2008-10-20 23:50:05 +0200162 if (ret < 0)
Joe Perchesa737e832015-04-16 12:46:14 -0700163 pr_err("Could not write TWL register %X - error %d\n",
164 reg, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200165 return ret;
166}
167
168/*
169 * Cache the value for timer/alarm interrupts register; this is
170 * only changed by callers holding rtc ops lock (or resume).
171 */
172static unsigned char rtc_irq_bits;
173
174/*
Alessandro Zummoa7483842009-01-15 13:50:52 -0800175 * Enable 1/second update and/or alarm interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200176 */
177static int set_rtc_irq_bit(unsigned char bit)
178{
179 unsigned char val;
180 int ret;
181
Venu Byravarasuce9f6502012-03-23 15:02:32 -0700182 /* if the bit is set, return from here */
183 if (rtc_irq_bits & bit)
184 return 0;
185
David Brownellf96411a2008-10-20 23:50:05 +0200186 val = rtc_irq_bits | bit;
Alessandro Zummoa7483842009-01-15 13:50:52 -0800187 val &= ~BIT_RTC_INTERRUPTS_REG_EVERY_M;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100188 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200189 if (ret == 0)
190 rtc_irq_bits = val;
191
192 return ret;
193}
194
195/*
Alessandro Zummoa7483842009-01-15 13:50:52 -0800196 * Disable update and/or alarm interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200197 */
198static int mask_rtc_irq_bit(unsigned char bit)
199{
200 unsigned char val;
201 int ret;
202
Venu Byravarasuce9f6502012-03-23 15:02:32 -0700203 /* if the bit is clear, return from here */
204 if (!(rtc_irq_bits & bit))
205 return 0;
206
David Brownellf96411a2008-10-20 23:50:05 +0200207 val = rtc_irq_bits & ~bit;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100208 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200209 if (ret == 0)
210 rtc_irq_bits = val;
211
212 return ret;
213}
214
Balaji T Kef3b7d02009-12-13 21:30:48 +0100215static int twl_rtc_alarm_irq_enable(struct device *dev, unsigned enabled)
David Brownellf96411a2008-10-20 23:50:05 +0200216{
Kevin Hilmanae845892013-07-03 15:07:53 -0700217 struct platform_device *pdev = to_platform_device(dev);
218 int irq = platform_get_irq(pdev, 0);
219 static bool twl_rtc_wake_enabled;
David Brownellf96411a2008-10-20 23:50:05 +0200220 int ret;
221
Kevin Hilmanae845892013-07-03 15:07:53 -0700222 if (enabled) {
David Brownellf96411a2008-10-20 23:50:05 +0200223 ret = set_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
Kevin Hilmanae845892013-07-03 15:07:53 -0700224 if (device_can_wakeup(dev) && !twl_rtc_wake_enabled) {
225 enable_irq_wake(irq);
226 twl_rtc_wake_enabled = true;
227 }
228 } else {
David Brownellf96411a2008-10-20 23:50:05 +0200229 ret = mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
Kevin Hilmanae845892013-07-03 15:07:53 -0700230 if (twl_rtc_wake_enabled) {
231 disable_irq_wake(irq);
232 twl_rtc_wake_enabled = false;
233 }
234 }
David Brownellf96411a2008-10-20 23:50:05 +0200235
236 return ret;
237}
238
David Brownellf96411a2008-10-20 23:50:05 +0200239/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100240 * Gets current TWL RTC time and date parameters.
David Brownellf96411a2008-10-20 23:50:05 +0200241 *
242 * The RTC's time/alarm representation is not what gmtime(3) requires
243 * Linux to use:
244 *
245 * - Months are 1..12 vs Linux 0-11
246 * - Years are 0..99 vs Linux 1900..N (we assume 21st century)
247 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100248static int twl_rtc_read_time(struct device *dev, struct rtc_time *tm)
David Brownellf96411a2008-10-20 23:50:05 +0200249{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100250 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200251 int ret;
252 u8 save_control;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700253 u8 rtc_control;
David Brownellf96411a2008-10-20 23:50:05 +0200254
Balaji T Kef3b7d02009-12-13 21:30:48 +0100255 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700256 if (ret < 0) {
257 dev_err(dev, "%s: reading CTRL_REG, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200258 return ret;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700259 }
260 /* for twl6030/32 make sure BIT_RTC_CTRL_REG_GET_TIME_M is clear */
261 if (twl_class_is_6030()) {
262 if (save_control & BIT_RTC_CTRL_REG_GET_TIME_M) {
263 save_control &= ~BIT_RTC_CTRL_REG_GET_TIME_M;
264 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
265 if (ret < 0) {
266 dev_err(dev, "%s clr GET_TIME, error %d\n",
267 __func__, ret);
268 return ret;
269 }
270 }
271 }
David Brownellf96411a2008-10-20 23:50:05 +0200272
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700273 /* Copy RTC counting registers to static registers or latches */
274 rtc_control = save_control | BIT_RTC_CTRL_REG_GET_TIME_M;
David Brownellf96411a2008-10-20 23:50:05 +0200275
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700276 /* for twl6030/32 enable read access to static shadowed registers */
277 if (twl_class_is_6030())
278 rtc_control |= BIT_RTC_CTRL_REG_RTC_V_OPT;
279
280 ret = twl_rtc_write_u8(rtc_control, REG_RTC_CTRL_REG);
281 if (ret < 0) {
282 dev_err(dev, "%s: writing CTRL_REG, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200283 return ret;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700284 }
David Brownellf96411a2008-10-20 23:50:05 +0200285
Balaji T Kef3b7d02009-12-13 21:30:48 +0100286 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100287 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200288
289 if (ret < 0) {
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700290 dev_err(dev, "%s: reading data, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200291 return ret;
292 }
293
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700294 /* for twl6030 restore original state of rtc control register */
295 if (twl_class_is_6030()) {
296 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
297 if (ret < 0) {
298 dev_err(dev, "%s: restore CTRL_REG, error %d\n",
299 __func__, ret);
300 return ret;
301 }
302 }
303
David Brownellf96411a2008-10-20 23:50:05 +0200304 tm->tm_sec = bcd2bin(rtc_data[0]);
305 tm->tm_min = bcd2bin(rtc_data[1]);
306 tm->tm_hour = bcd2bin(rtc_data[2]);
307 tm->tm_mday = bcd2bin(rtc_data[3]);
308 tm->tm_mon = bcd2bin(rtc_data[4]) - 1;
309 tm->tm_year = bcd2bin(rtc_data[5]) + 100;
310
311 return ret;
312}
313
Balaji T Kef3b7d02009-12-13 21:30:48 +0100314static int twl_rtc_set_time(struct device *dev, struct rtc_time *tm)
David Brownellf96411a2008-10-20 23:50:05 +0200315{
316 unsigned char save_control;
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100317 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200318 int ret;
319
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100320 rtc_data[0] = bin2bcd(tm->tm_sec);
321 rtc_data[1] = bin2bcd(tm->tm_min);
322 rtc_data[2] = bin2bcd(tm->tm_hour);
323 rtc_data[3] = bin2bcd(tm->tm_mday);
324 rtc_data[4] = bin2bcd(tm->tm_mon + 1);
325 rtc_data[5] = bin2bcd(tm->tm_year - 100);
David Brownellf96411a2008-10-20 23:50:05 +0200326
327 /* Stop RTC while updating the TC registers */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100328 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200329 if (ret < 0)
330 goto out;
331
332 save_control &= ~BIT_RTC_CTRL_REG_STOP_RTC_M;
Jesper Juhl8f6b0dd2011-07-25 17:13:34 -0700333 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200334 if (ret < 0)
335 goto out;
336
337 /* update all the time registers in one shot */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100338 ret = twl_i2c_write(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100339 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200340 if (ret < 0) {
341 dev_err(dev, "rtc_set_time error %d\n", ret);
342 goto out;
343 }
344
345 /* Start back RTC */
346 save_control |= BIT_RTC_CTRL_REG_STOP_RTC_M;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100347 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200348
349out:
350 return ret;
351}
352
353/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100354 * Gets current TWL RTC alarm time.
David Brownellf96411a2008-10-20 23:50:05 +0200355 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100356static int twl_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
David Brownellf96411a2008-10-20 23:50:05 +0200357{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100358 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200359 int ret;
360
Balaji T Kef3b7d02009-12-13 21:30:48 +0100361 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100362 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200363 if (ret < 0) {
364 dev_err(dev, "rtc_read_alarm error %d\n", ret);
365 return ret;
366 }
367
368 /* some of these fields may be wildcard/"match all" */
369 alm->time.tm_sec = bcd2bin(rtc_data[0]);
370 alm->time.tm_min = bcd2bin(rtc_data[1]);
371 alm->time.tm_hour = bcd2bin(rtc_data[2]);
372 alm->time.tm_mday = bcd2bin(rtc_data[3]);
373 alm->time.tm_mon = bcd2bin(rtc_data[4]) - 1;
374 alm->time.tm_year = bcd2bin(rtc_data[5]) + 100;
375
376 /* report cached alarm enable state */
377 if (rtc_irq_bits & BIT_RTC_INTERRUPTS_REG_IT_ALARM_M)
378 alm->enabled = 1;
379
380 return ret;
381}
382
Balaji T Kef3b7d02009-12-13 21:30:48 +0100383static int twl_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm)
David Brownellf96411a2008-10-20 23:50:05 +0200384{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100385 unsigned char alarm_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200386 int ret;
387
Balaji T Kef3b7d02009-12-13 21:30:48 +0100388 ret = twl_rtc_alarm_irq_enable(dev, 0);
David Brownellf96411a2008-10-20 23:50:05 +0200389 if (ret)
390 goto out;
391
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100392 alarm_data[0] = bin2bcd(alm->time.tm_sec);
393 alarm_data[1] = bin2bcd(alm->time.tm_min);
394 alarm_data[2] = bin2bcd(alm->time.tm_hour);
395 alarm_data[3] = bin2bcd(alm->time.tm_mday);
396 alarm_data[4] = bin2bcd(alm->time.tm_mon + 1);
397 alarm_data[5] = bin2bcd(alm->time.tm_year - 100);
David Brownellf96411a2008-10-20 23:50:05 +0200398
399 /* update all the alarm registers in one shot */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100400 ret = twl_i2c_write(TWL_MODULE_RTC, alarm_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100401 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200402 if (ret) {
403 dev_err(dev, "rtc_set_alarm error %d\n", ret);
404 goto out;
405 }
406
407 if (alm->enabled)
Balaji T Kef3b7d02009-12-13 21:30:48 +0100408 ret = twl_rtc_alarm_irq_enable(dev, 1);
David Brownellf96411a2008-10-20 23:50:05 +0200409out:
410 return ret;
411}
412
Balaji T Kef3b7d02009-12-13 21:30:48 +0100413static irqreturn_t twl_rtc_interrupt(int irq, void *rtc)
David Brownellf96411a2008-10-20 23:50:05 +0200414{
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700415 unsigned long events;
David Brownellf96411a2008-10-20 23:50:05 +0200416 int ret = IRQ_NONE;
417 int res;
418 u8 rd_reg;
419
Balaji T Kef3b7d02009-12-13 21:30:48 +0100420 res = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200421 if (res)
422 goto out;
423 /*
424 * Figure out source of interrupt: ALARM or TIMER in RTC_STATUS_REG.
425 * only one (ALARM or RTC) interrupt source may be enabled
426 * at time, we also could check our results
427 * by reading RTS_INTERRUPTS_REGISTER[IT_TIMER,IT_ALARM]
428 */
429 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700430 events = RTC_IRQF | RTC_AF;
David Brownellf96411a2008-10-20 23:50:05 +0200431 else
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700432 events = RTC_IRQF | RTC_PF;
David Brownellf96411a2008-10-20 23:50:05 +0200433
Venu Byravarasu94a339d2012-03-23 15:02:33 -0700434 res = twl_rtc_write_u8(BIT_RTC_STATUS_REG_ALARM_M,
David Brownellf96411a2008-10-20 23:50:05 +0200435 REG_RTC_STATUS_REG);
436 if (res)
437 goto out;
438
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100439 if (twl_class_is_4030()) {
440 /* Clear on Read enabled. RTC_IT bit of TWL4030_INT_PWR_ISR1
441 * needs 2 reads to clear the interrupt. One read is done in
442 * do_twl_pwrirq(). Doing the second read, to clear
443 * the bit.
444 *
445 * FIXME the reason PWR_ISR1 needs an extra read is that
446 * RTC_IF retriggered until we cleared REG_ALARM_M above.
447 * But re-reading like this is a bad hack; by doing so we
448 * risk wrongly clearing status for some other IRQ (losing
449 * the interrupt). Be smarter about handling RTC_UF ...
450 */
451 res = twl_i2c_read_u8(TWL4030_MODULE_INT,
David Brownellf96411a2008-10-20 23:50:05 +0200452 &rd_reg, TWL4030_INT_PWR_ISR1);
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100453 if (res)
454 goto out;
455 }
David Brownellf96411a2008-10-20 23:50:05 +0200456
457 /* Notify RTC core on event */
458 rtc_update_irq(rtc, 1, events);
459
460 ret = IRQ_HANDLED;
461out:
462 return ret;
463}
464
Julia Lawall34c7b3a2016-08-31 10:05:25 +0200465static const struct rtc_class_ops twl_rtc_ops = {
Balaji T Kef3b7d02009-12-13 21:30:48 +0100466 .read_time = twl_rtc_read_time,
467 .set_time = twl_rtc_set_time,
468 .read_alarm = twl_rtc_read_alarm,
469 .set_alarm = twl_rtc_set_alarm,
470 .alarm_irq_enable = twl_rtc_alarm_irq_enable,
David Brownellf96411a2008-10-20 23:50:05 +0200471};
472
473/*----------------------------------------------------------------------*/
474
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800475static int twl_rtc_probe(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200476{
477 struct rtc_device *rtc;
Todd Poynor7e72c682011-08-10 20:20:36 -0700478 int ret = -EINVAL;
David Brownellf96411a2008-10-20 23:50:05 +0200479 int irq = platform_get_irq(pdev, 0);
480 u8 rd_reg;
481
Anton Vorontsov2fac6672009-01-06 14:42:11 -0800482 if (irq <= 0)
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800483 return ret;
David Brownellf96411a2008-10-20 23:50:05 +0200484
Peter Ujfalusid3869ff2013-07-03 15:07:55 -0700485 /* Initialize the register map */
486 if (twl_class_is_4030())
487 rtc_reg_map = (u8 *)twl4030_rtc_reg_map;
488 else
489 rtc_reg_map = (u8 *)twl6030_rtc_reg_map;
490
Balaji T Kef3b7d02009-12-13 21:30:48 +0100491 ret = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200492 if (ret < 0)
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800493 return ret;
David Brownellf96411a2008-10-20 23:50:05 +0200494
495 if (rd_reg & BIT_RTC_STATUS_REG_POWER_UP_M)
496 dev_warn(&pdev->dev, "Power up reset detected.\n");
497
498 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
499 dev_warn(&pdev->dev, "Pending Alarm interrupt detected.\n");
500
501 /* Clear RTC Power up reset and pending alarm interrupts */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100502 ret = twl_rtc_write_u8(rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200503 if (ret < 0)
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800504 return ret;
David Brownellf96411a2008-10-20 23:50:05 +0200505
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100506 if (twl_class_is_6030()) {
507 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
508 REG_INT_MSK_LINE_A);
509 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
510 REG_INT_MSK_STS_A);
511 }
512
Venu Byravarasuf7439bc2012-03-23 15:02:33 -0700513 dev_info(&pdev->dev, "Enabling TWL-RTC\n");
514 ret = twl_rtc_write_u8(BIT_RTC_CTRL_REG_STOP_RTC_M, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200515 if (ret < 0)
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800516 return ret;
David Brownellf96411a2008-10-20 23:50:05 +0200517
Kevin Hilman8dcebaa92012-09-17 14:09:17 -0700518 /* ensure interrupts are disabled, bootloaders can be strange */
519 ret = twl_rtc_write_u8(0, REG_RTC_INTERRUPTS_REG);
520 if (ret < 0)
521 dev_warn(&pdev->dev, "unable to disable interrupt\n");
522
David Brownellf96411a2008-10-20 23:50:05 +0200523 /* init cached IRQ enable bits */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100524 ret = twl_rtc_read_u8(&rtc_irq_bits, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200525 if (ret < 0)
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800526 return ret;
David Brownellf96411a2008-10-20 23:50:05 +0200527
Grygorii Strashkob99b94b2013-07-31 13:53:41 -0700528 device_init_wakeup(&pdev->dev, 1);
529
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800530 rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
531 &twl_rtc_ops, THIS_MODULE);
Todd Poynor7e72c682011-08-10 20:20:36 -0700532 if (IS_ERR(rtc)) {
Todd Poynor7e72c682011-08-10 20:20:36 -0700533 dev_err(&pdev->dev, "can't register RTC device, err %ld\n",
534 PTR_ERR(rtc));
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800535 return PTR_ERR(rtc);
Todd Poynor7e72c682011-08-10 20:20:36 -0700536 }
537
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800538 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
539 twl_rtc_interrupt,
540 IRQF_TRIGGER_RISING | IRQF_ONESHOT,
541 dev_name(&rtc->dev), rtc);
Todd Poynor7e72c682011-08-10 20:20:36 -0700542 if (ret < 0) {
543 dev_err(&pdev->dev, "IRQ is not free.\n");
Jingoo Hanf53eeb82014-01-23 15:55:06 -0800544 return ret;
Todd Poynor7e72c682011-08-10 20:20:36 -0700545 }
546
547 platform_set_drvdata(pdev, rtc);
548 return 0;
David Brownellf96411a2008-10-20 23:50:05 +0200549}
550
551/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100552 * Disable all TWL RTC module interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200553 * Sets status flag to free.
554 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800555static int twl_rtc_remove(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200556{
557 /* leave rtc running, but disable irqs */
David Brownellf96411a2008-10-20 23:50:05 +0200558 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
559 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100560 if (twl_class_is_6030()) {
561 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
562 REG_INT_MSK_LINE_A);
563 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
564 REG_INT_MSK_STS_A);
565 }
566
David Brownellf96411a2008-10-20 23:50:05 +0200567 return 0;
568}
569
Balaji T Kef3b7d02009-12-13 21:30:48 +0100570static void twl_rtc_shutdown(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200571{
Matti Halmecafa1d82009-01-15 13:50:56 -0800572 /* mask timer interrupts, but leave alarm interrupts on to enable
573 power-on when alarm is triggered */
574 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
David Brownellf96411a2008-10-20 23:50:05 +0200575}
576
Jingoo Hanb9d8c462013-04-29 16:21:04 -0700577#ifdef CONFIG_PM_SLEEP
David Brownellf96411a2008-10-20 23:50:05 +0200578static unsigned char irqstat;
579
Jingoo Hanb9d8c462013-04-29 16:21:04 -0700580static int twl_rtc_suspend(struct device *dev)
David Brownellf96411a2008-10-20 23:50:05 +0200581{
582 irqstat = rtc_irq_bits;
583
Kim Kyuwonf9930042009-05-12 13:19:38 -0700584 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
David Brownellf96411a2008-10-20 23:50:05 +0200585 return 0;
586}
587
Jingoo Hanb9d8c462013-04-29 16:21:04 -0700588static int twl_rtc_resume(struct device *dev)
David Brownellf96411a2008-10-20 23:50:05 +0200589{
590 set_rtc_irq_bit(irqstat);
591 return 0;
592}
David Brownellf96411a2008-10-20 23:50:05 +0200593#endif
594
Jingoo Hanb9d8c462013-04-29 16:21:04 -0700595static SIMPLE_DEV_PM_OPS(twl_rtc_pm_ops, twl_rtc_suspend, twl_rtc_resume);
596
Sachin Kamatc8a60462013-02-21 16:44:28 -0800597#ifdef CONFIG_OF
Benoit Cousson948170f2012-01-10 15:10:59 -0800598static const struct of_device_id twl_rtc_of_match[] = {
599 {.compatible = "ti,twl4030-rtc", },
600 { },
601};
602MODULE_DEVICE_TABLE(of, twl_rtc_of_match);
Sachin Kamatc8a60462013-02-21 16:44:28 -0800603#endif
604
Balaji T Kef3b7d02009-12-13 21:30:48 +0100605MODULE_ALIAS("platform:twl_rtc");
David Brownellf96411a2008-10-20 23:50:05 +0200606
607static struct platform_driver twl4030rtc_driver = {
Balaji T Kef3b7d02009-12-13 21:30:48 +0100608 .probe = twl_rtc_probe,
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800609 .remove = twl_rtc_remove,
Balaji T Kef3b7d02009-12-13 21:30:48 +0100610 .shutdown = twl_rtc_shutdown,
David Brownellf96411a2008-10-20 23:50:05 +0200611 .driver = {
Benoit Cousson948170f2012-01-10 15:10:59 -0800612 .name = "twl_rtc",
Jingoo Hanb9d8c462013-04-29 16:21:04 -0700613 .pm = &twl_rtc_pm_ops,
Sachin Kamatc8a60462013-02-21 16:44:28 -0800614 .of_match_table = of_match_ptr(twl_rtc_of_match),
David Brownellf96411a2008-10-20 23:50:05 +0200615 },
616};
617
Peter Ujfalusi5ee67482013-07-03 15:07:56 -0700618module_platform_driver(twl4030rtc_driver);
David Brownellf96411a2008-10-20 23:50:05 +0200619
620MODULE_AUTHOR("Texas Instruments, MontaVista Software");
621MODULE_LICENSE("GPL");