blob: 8bc6c80b184c42c763b874c1c9c344bd0e3c542f [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
21#include <linux/kernel.h>
Anton Vorontsov2fac6672009-01-06 14:42:11 -080022#include <linux/errno.h>
David Brownellf96411a2008-10-20 23:50:05 +020023#include <linux/init.h>
24#include <linux/module.h>
25#include <linux/types.h>
26#include <linux/rtc.h>
27#include <linux/bcd.h>
28#include <linux/platform_device.h>
29#include <linux/interrupt.h>
Sachin Kamatc8a60462013-02-21 16:44:28 -080030#include <linux/of.h>
David Brownellf96411a2008-10-20 23:50:05 +020031
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010032#include <linux/i2c/twl.h>
David Brownellf96411a2008-10-20 23:50:05 +020033
34
35/*
36 * RTC block register offsets (use TWL_MODULE_RTC)
37 */
Balaji T Ka6b49ff2009-12-13 22:16:31 +010038enum {
39 REG_SECONDS_REG = 0,
40 REG_MINUTES_REG,
41 REG_HOURS_REG,
42 REG_DAYS_REG,
43 REG_MONTHS_REG,
44 REG_YEARS_REG,
45 REG_WEEKS_REG,
David Brownellf96411a2008-10-20 23:50:05 +020046
Balaji T Ka6b49ff2009-12-13 22:16:31 +010047 REG_ALARM_SECONDS_REG,
48 REG_ALARM_MINUTES_REG,
49 REG_ALARM_HOURS_REG,
50 REG_ALARM_DAYS_REG,
51 REG_ALARM_MONTHS_REG,
52 REG_ALARM_YEARS_REG,
David Brownellf96411a2008-10-20 23:50:05 +020053
Balaji T Ka6b49ff2009-12-13 22:16:31 +010054 REG_RTC_CTRL_REG,
55 REG_RTC_STATUS_REG,
56 REG_RTC_INTERRUPTS_REG,
David Brownellf96411a2008-10-20 23:50:05 +020057
Balaji T Ka6b49ff2009-12-13 22:16:31 +010058 REG_RTC_COMP_LSB_REG,
59 REG_RTC_COMP_MSB_REG,
60};
Tobias Klauser2e840672010-03-05 13:44:23 -080061static const u8 twl4030_rtc_reg_map[] = {
Balaji T Ka6b49ff2009-12-13 22:16:31 +010062 [REG_SECONDS_REG] = 0x00,
63 [REG_MINUTES_REG] = 0x01,
64 [REG_HOURS_REG] = 0x02,
65 [REG_DAYS_REG] = 0x03,
66 [REG_MONTHS_REG] = 0x04,
67 [REG_YEARS_REG] = 0x05,
68 [REG_WEEKS_REG] = 0x06,
69
70 [REG_ALARM_SECONDS_REG] = 0x07,
71 [REG_ALARM_MINUTES_REG] = 0x08,
72 [REG_ALARM_HOURS_REG] = 0x09,
73 [REG_ALARM_DAYS_REG] = 0x0A,
74 [REG_ALARM_MONTHS_REG] = 0x0B,
75 [REG_ALARM_YEARS_REG] = 0x0C,
76
77 [REG_RTC_CTRL_REG] = 0x0D,
78 [REG_RTC_STATUS_REG] = 0x0E,
79 [REG_RTC_INTERRUPTS_REG] = 0x0F,
80
81 [REG_RTC_COMP_LSB_REG] = 0x10,
82 [REG_RTC_COMP_MSB_REG] = 0x11,
83};
Tobias Klauser2e840672010-03-05 13:44:23 -080084static const u8 twl6030_rtc_reg_map[] = {
Balaji T Ka6b49ff2009-12-13 22:16:31 +010085 [REG_SECONDS_REG] = 0x00,
86 [REG_MINUTES_REG] = 0x01,
87 [REG_HOURS_REG] = 0x02,
88 [REG_DAYS_REG] = 0x03,
89 [REG_MONTHS_REG] = 0x04,
90 [REG_YEARS_REG] = 0x05,
91 [REG_WEEKS_REG] = 0x06,
92
93 [REG_ALARM_SECONDS_REG] = 0x08,
94 [REG_ALARM_MINUTES_REG] = 0x09,
95 [REG_ALARM_HOURS_REG] = 0x0A,
96 [REG_ALARM_DAYS_REG] = 0x0B,
97 [REG_ALARM_MONTHS_REG] = 0x0C,
98 [REG_ALARM_YEARS_REG] = 0x0D,
99
100 [REG_RTC_CTRL_REG] = 0x10,
101 [REG_RTC_STATUS_REG] = 0x11,
102 [REG_RTC_INTERRUPTS_REG] = 0x12,
103
104 [REG_RTC_COMP_LSB_REG] = 0x13,
105 [REG_RTC_COMP_MSB_REG] = 0x14,
106};
David Brownellf96411a2008-10-20 23:50:05 +0200107
108/* RTC_CTRL_REG bitfields */
109#define BIT_RTC_CTRL_REG_STOP_RTC_M 0x01
110#define BIT_RTC_CTRL_REG_ROUND_30S_M 0x02
111#define BIT_RTC_CTRL_REG_AUTO_COMP_M 0x04
112#define BIT_RTC_CTRL_REG_MODE_12_24_M 0x08
113#define BIT_RTC_CTRL_REG_TEST_MODE_M 0x10
114#define BIT_RTC_CTRL_REG_SET_32_COUNTER_M 0x20
115#define BIT_RTC_CTRL_REG_GET_TIME_M 0x40
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700116#define BIT_RTC_CTRL_REG_RTC_V_OPT 0x80
David Brownellf96411a2008-10-20 23:50:05 +0200117
118/* RTC_STATUS_REG bitfields */
119#define BIT_RTC_STATUS_REG_RUN_M 0x02
120#define BIT_RTC_STATUS_REG_1S_EVENT_M 0x04
121#define BIT_RTC_STATUS_REG_1M_EVENT_M 0x08
122#define BIT_RTC_STATUS_REG_1H_EVENT_M 0x10
123#define BIT_RTC_STATUS_REG_1D_EVENT_M 0x20
124#define BIT_RTC_STATUS_REG_ALARM_M 0x40
125#define BIT_RTC_STATUS_REG_POWER_UP_M 0x80
126
127/* RTC_INTERRUPTS_REG bitfields */
128#define BIT_RTC_INTERRUPTS_REG_EVERY_M 0x03
129#define BIT_RTC_INTERRUPTS_REG_IT_TIMER_M 0x04
130#define BIT_RTC_INTERRUPTS_REG_IT_ALARM_M 0x08
131
132
133/* REG_SECONDS_REG through REG_YEARS_REG is how many registers? */
134#define ALL_TIME_REGS 6
135
136/*----------------------------------------------------------------------*/
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100137static u8 *rtc_reg_map;
David Brownellf96411a2008-10-20 23:50:05 +0200138
139/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100140 * Supports 1 byte read from TWL RTC register.
David Brownellf96411a2008-10-20 23:50:05 +0200141 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100142static int twl_rtc_read_u8(u8 *data, u8 reg)
David Brownellf96411a2008-10-20 23:50:05 +0200143{
144 int ret;
145
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100146 ret = twl_i2c_read_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
David Brownellf96411a2008-10-20 23:50:05 +0200147 if (ret < 0)
Balaji T Kef3b7d02009-12-13 21:30:48 +0100148 pr_err("twl_rtc: Could not read TWL"
David Brownellf96411a2008-10-20 23:50:05 +0200149 "register %X - error %d\n", reg, ret);
150 return ret;
151}
152
153/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100154 * Supports 1 byte write to TWL RTC registers.
David Brownellf96411a2008-10-20 23:50:05 +0200155 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100156static int twl_rtc_write_u8(u8 data, u8 reg)
David Brownellf96411a2008-10-20 23:50:05 +0200157{
158 int ret;
159
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100160 ret = twl_i2c_write_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
David Brownellf96411a2008-10-20 23:50:05 +0200161 if (ret < 0)
Balaji T Kef3b7d02009-12-13 21:30:48 +0100162 pr_err("twl_rtc: Could not write TWL"
David Brownellf96411a2008-10-20 23:50:05 +0200163 "register %X - error %d\n", reg, ret);
164 return ret;
165}
166
167/*
168 * Cache the value for timer/alarm interrupts register; this is
169 * only changed by callers holding rtc ops lock (or resume).
170 */
171static unsigned char rtc_irq_bits;
172
173/*
Alessandro Zummoa7483842009-01-15 13:50:52 -0800174 * Enable 1/second update and/or alarm interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200175 */
176static int set_rtc_irq_bit(unsigned char bit)
177{
178 unsigned char val;
179 int ret;
180
Venu Byravarasuce9f6502012-03-23 15:02:32 -0700181 /* if the bit is set, return from here */
182 if (rtc_irq_bits & bit)
183 return 0;
184
David Brownellf96411a2008-10-20 23:50:05 +0200185 val = rtc_irq_bits | bit;
Alessandro Zummoa7483842009-01-15 13:50:52 -0800186 val &= ~BIT_RTC_INTERRUPTS_REG_EVERY_M;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100187 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200188 if (ret == 0)
189 rtc_irq_bits = val;
190
191 return ret;
192}
193
194/*
Alessandro Zummoa7483842009-01-15 13:50:52 -0800195 * Disable update and/or alarm interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200196 */
197static int mask_rtc_irq_bit(unsigned char bit)
198{
199 unsigned char val;
200 int ret;
201
Venu Byravarasuce9f6502012-03-23 15:02:32 -0700202 /* if the bit is clear, return from here */
203 if (!(rtc_irq_bits & bit))
204 return 0;
205
David Brownellf96411a2008-10-20 23:50:05 +0200206 val = rtc_irq_bits & ~bit;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100207 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200208 if (ret == 0)
209 rtc_irq_bits = val;
210
211 return ret;
212}
213
Balaji T Kef3b7d02009-12-13 21:30:48 +0100214static int twl_rtc_alarm_irq_enable(struct device *dev, unsigned enabled)
David Brownellf96411a2008-10-20 23:50:05 +0200215{
216 int ret;
217
218 if (enabled)
219 ret = set_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
220 else
221 ret = mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
222
223 return ret;
224}
225
David Brownellf96411a2008-10-20 23:50:05 +0200226/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100227 * Gets current TWL RTC time and date parameters.
David Brownellf96411a2008-10-20 23:50:05 +0200228 *
229 * The RTC's time/alarm representation is not what gmtime(3) requires
230 * Linux to use:
231 *
232 * - Months are 1..12 vs Linux 0-11
233 * - Years are 0..99 vs Linux 1900..N (we assume 21st century)
234 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100235static int twl_rtc_read_time(struct device *dev, struct rtc_time *tm)
David Brownellf96411a2008-10-20 23:50:05 +0200236{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100237 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200238 int ret;
239 u8 save_control;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700240 u8 rtc_control;
David Brownellf96411a2008-10-20 23:50:05 +0200241
Balaji T Kef3b7d02009-12-13 21:30:48 +0100242 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700243 if (ret < 0) {
244 dev_err(dev, "%s: reading CTRL_REG, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200245 return ret;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700246 }
247 /* for twl6030/32 make sure BIT_RTC_CTRL_REG_GET_TIME_M is clear */
248 if (twl_class_is_6030()) {
249 if (save_control & BIT_RTC_CTRL_REG_GET_TIME_M) {
250 save_control &= ~BIT_RTC_CTRL_REG_GET_TIME_M;
251 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
252 if (ret < 0) {
253 dev_err(dev, "%s clr GET_TIME, error %d\n",
254 __func__, ret);
255 return ret;
256 }
257 }
258 }
David Brownellf96411a2008-10-20 23:50:05 +0200259
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700260 /* Copy RTC counting registers to static registers or latches */
261 rtc_control = save_control | BIT_RTC_CTRL_REG_GET_TIME_M;
David Brownellf96411a2008-10-20 23:50:05 +0200262
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700263 /* for twl6030/32 enable read access to static shadowed registers */
264 if (twl_class_is_6030())
265 rtc_control |= BIT_RTC_CTRL_REG_RTC_V_OPT;
266
267 ret = twl_rtc_write_u8(rtc_control, REG_RTC_CTRL_REG);
268 if (ret < 0) {
269 dev_err(dev, "%s: writing CTRL_REG, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200270 return ret;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700271 }
David Brownellf96411a2008-10-20 23:50:05 +0200272
Balaji T Kef3b7d02009-12-13 21:30:48 +0100273 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100274 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200275
276 if (ret < 0) {
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700277 dev_err(dev, "%s: reading data, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200278 return ret;
279 }
280
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700281 /* for twl6030 restore original state of rtc control register */
282 if (twl_class_is_6030()) {
283 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
284 if (ret < 0) {
285 dev_err(dev, "%s: restore CTRL_REG, error %d\n",
286 __func__, ret);
287 return ret;
288 }
289 }
290
David Brownellf96411a2008-10-20 23:50:05 +0200291 tm->tm_sec = bcd2bin(rtc_data[0]);
292 tm->tm_min = bcd2bin(rtc_data[1]);
293 tm->tm_hour = bcd2bin(rtc_data[2]);
294 tm->tm_mday = bcd2bin(rtc_data[3]);
295 tm->tm_mon = bcd2bin(rtc_data[4]) - 1;
296 tm->tm_year = bcd2bin(rtc_data[5]) + 100;
297
298 return ret;
299}
300
Balaji T Kef3b7d02009-12-13 21:30:48 +0100301static int twl_rtc_set_time(struct device *dev, struct rtc_time *tm)
David Brownellf96411a2008-10-20 23:50:05 +0200302{
303 unsigned char save_control;
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100304 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200305 int ret;
306
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100307 rtc_data[0] = bin2bcd(tm->tm_sec);
308 rtc_data[1] = bin2bcd(tm->tm_min);
309 rtc_data[2] = bin2bcd(tm->tm_hour);
310 rtc_data[3] = bin2bcd(tm->tm_mday);
311 rtc_data[4] = bin2bcd(tm->tm_mon + 1);
312 rtc_data[5] = bin2bcd(tm->tm_year - 100);
David Brownellf96411a2008-10-20 23:50:05 +0200313
314 /* Stop RTC while updating the TC registers */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100315 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200316 if (ret < 0)
317 goto out;
318
319 save_control &= ~BIT_RTC_CTRL_REG_STOP_RTC_M;
Jesper Juhl8f6b0dd2011-07-25 17:13:34 -0700320 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200321 if (ret < 0)
322 goto out;
323
324 /* update all the time registers in one shot */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100325 ret = twl_i2c_write(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100326 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200327 if (ret < 0) {
328 dev_err(dev, "rtc_set_time error %d\n", ret);
329 goto out;
330 }
331
332 /* Start back RTC */
333 save_control |= BIT_RTC_CTRL_REG_STOP_RTC_M;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100334 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200335
336out:
337 return ret;
338}
339
340/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100341 * Gets current TWL RTC alarm time.
David Brownellf96411a2008-10-20 23:50:05 +0200342 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100343static int twl_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
David Brownellf96411a2008-10-20 23:50:05 +0200344{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100345 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200346 int ret;
347
Balaji T Kef3b7d02009-12-13 21:30:48 +0100348 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100349 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200350 if (ret < 0) {
351 dev_err(dev, "rtc_read_alarm error %d\n", ret);
352 return ret;
353 }
354
355 /* some of these fields may be wildcard/"match all" */
356 alm->time.tm_sec = bcd2bin(rtc_data[0]);
357 alm->time.tm_min = bcd2bin(rtc_data[1]);
358 alm->time.tm_hour = bcd2bin(rtc_data[2]);
359 alm->time.tm_mday = bcd2bin(rtc_data[3]);
360 alm->time.tm_mon = bcd2bin(rtc_data[4]) - 1;
361 alm->time.tm_year = bcd2bin(rtc_data[5]) + 100;
362
363 /* report cached alarm enable state */
364 if (rtc_irq_bits & BIT_RTC_INTERRUPTS_REG_IT_ALARM_M)
365 alm->enabled = 1;
366
367 return ret;
368}
369
Balaji T Kef3b7d02009-12-13 21:30:48 +0100370static int twl_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm)
David Brownellf96411a2008-10-20 23:50:05 +0200371{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100372 unsigned char alarm_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200373 int ret;
374
Balaji T Kef3b7d02009-12-13 21:30:48 +0100375 ret = twl_rtc_alarm_irq_enable(dev, 0);
David Brownellf96411a2008-10-20 23:50:05 +0200376 if (ret)
377 goto out;
378
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100379 alarm_data[0] = bin2bcd(alm->time.tm_sec);
380 alarm_data[1] = bin2bcd(alm->time.tm_min);
381 alarm_data[2] = bin2bcd(alm->time.tm_hour);
382 alarm_data[3] = bin2bcd(alm->time.tm_mday);
383 alarm_data[4] = bin2bcd(alm->time.tm_mon + 1);
384 alarm_data[5] = bin2bcd(alm->time.tm_year - 100);
David Brownellf96411a2008-10-20 23:50:05 +0200385
386 /* update all the alarm registers in one shot */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100387 ret = twl_i2c_write(TWL_MODULE_RTC, alarm_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100388 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200389 if (ret) {
390 dev_err(dev, "rtc_set_alarm error %d\n", ret);
391 goto out;
392 }
393
394 if (alm->enabled)
Balaji T Kef3b7d02009-12-13 21:30:48 +0100395 ret = twl_rtc_alarm_irq_enable(dev, 1);
David Brownellf96411a2008-10-20 23:50:05 +0200396out:
397 return ret;
398}
399
Balaji T Kef3b7d02009-12-13 21:30:48 +0100400static irqreturn_t twl_rtc_interrupt(int irq, void *rtc)
David Brownellf96411a2008-10-20 23:50:05 +0200401{
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700402 unsigned long events;
David Brownellf96411a2008-10-20 23:50:05 +0200403 int ret = IRQ_NONE;
404 int res;
405 u8 rd_reg;
406
Balaji T Kef3b7d02009-12-13 21:30:48 +0100407 res = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200408 if (res)
409 goto out;
410 /*
411 * Figure out source of interrupt: ALARM or TIMER in RTC_STATUS_REG.
412 * only one (ALARM or RTC) interrupt source may be enabled
413 * at time, we also could check our results
414 * by reading RTS_INTERRUPTS_REGISTER[IT_TIMER,IT_ALARM]
415 */
416 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700417 events = RTC_IRQF | RTC_AF;
David Brownellf96411a2008-10-20 23:50:05 +0200418 else
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700419 events = RTC_IRQF | RTC_PF;
David Brownellf96411a2008-10-20 23:50:05 +0200420
Venu Byravarasu94a339d2012-03-23 15:02:33 -0700421 res = twl_rtc_write_u8(BIT_RTC_STATUS_REG_ALARM_M,
David Brownellf96411a2008-10-20 23:50:05 +0200422 REG_RTC_STATUS_REG);
423 if (res)
424 goto out;
425
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100426 if (twl_class_is_4030()) {
427 /* Clear on Read enabled. RTC_IT bit of TWL4030_INT_PWR_ISR1
428 * needs 2 reads to clear the interrupt. One read is done in
429 * do_twl_pwrirq(). Doing the second read, to clear
430 * the bit.
431 *
432 * FIXME the reason PWR_ISR1 needs an extra read is that
433 * RTC_IF retriggered until we cleared REG_ALARM_M above.
434 * But re-reading like this is a bad hack; by doing so we
435 * risk wrongly clearing status for some other IRQ (losing
436 * the interrupt). Be smarter about handling RTC_UF ...
437 */
438 res = twl_i2c_read_u8(TWL4030_MODULE_INT,
David Brownellf96411a2008-10-20 23:50:05 +0200439 &rd_reg, TWL4030_INT_PWR_ISR1);
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100440 if (res)
441 goto out;
442 }
David Brownellf96411a2008-10-20 23:50:05 +0200443
444 /* Notify RTC core on event */
445 rtc_update_irq(rtc, 1, events);
446
447 ret = IRQ_HANDLED;
448out:
449 return ret;
450}
451
Balaji T Kef3b7d02009-12-13 21:30:48 +0100452static struct rtc_class_ops twl_rtc_ops = {
453 .read_time = twl_rtc_read_time,
454 .set_time = twl_rtc_set_time,
455 .read_alarm = twl_rtc_read_alarm,
456 .set_alarm = twl_rtc_set_alarm,
457 .alarm_irq_enable = twl_rtc_alarm_irq_enable,
David Brownellf96411a2008-10-20 23:50:05 +0200458};
459
460/*----------------------------------------------------------------------*/
461
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800462static int twl_rtc_probe(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200463{
464 struct rtc_device *rtc;
Todd Poynor7e72c682011-08-10 20:20:36 -0700465 int ret = -EINVAL;
David Brownellf96411a2008-10-20 23:50:05 +0200466 int irq = platform_get_irq(pdev, 0);
467 u8 rd_reg;
468
Anton Vorontsov2fac6672009-01-06 14:42:11 -0800469 if (irq <= 0)
Todd Poynor7e72c682011-08-10 20:20:36 -0700470 goto out1;
David Brownellf96411a2008-10-20 23:50:05 +0200471
Balaji T Kef3b7d02009-12-13 21:30:48 +0100472 ret = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200473 if (ret < 0)
474 goto out1;
475
476 if (rd_reg & BIT_RTC_STATUS_REG_POWER_UP_M)
477 dev_warn(&pdev->dev, "Power up reset detected.\n");
478
479 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
480 dev_warn(&pdev->dev, "Pending Alarm interrupt detected.\n");
481
482 /* Clear RTC Power up reset and pending alarm interrupts */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100483 ret = twl_rtc_write_u8(rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200484 if (ret < 0)
485 goto out1;
486
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100487 if (twl_class_is_6030()) {
488 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
489 REG_INT_MSK_LINE_A);
490 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
491 REG_INT_MSK_STS_A);
492 }
493
Venu Byravarasuf7439bc2012-03-23 15:02:33 -0700494 dev_info(&pdev->dev, "Enabling TWL-RTC\n");
495 ret = twl_rtc_write_u8(BIT_RTC_CTRL_REG_STOP_RTC_M, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200496 if (ret < 0)
Todd Poynor7e72c682011-08-10 20:20:36 -0700497 goto out1;
David Brownellf96411a2008-10-20 23:50:05 +0200498
Kevin Hilman8dcebaa92012-09-17 14:09:17 -0700499 /* ensure interrupts are disabled, bootloaders can be strange */
500 ret = twl_rtc_write_u8(0, REG_RTC_INTERRUPTS_REG);
501 if (ret < 0)
502 dev_warn(&pdev->dev, "unable to disable interrupt\n");
503
David Brownellf96411a2008-10-20 23:50:05 +0200504 /* init cached IRQ enable bits */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100505 ret = twl_rtc_read_u8(&rtc_irq_bits, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200506 if (ret < 0)
Todd Poynor7e72c682011-08-10 20:20:36 -0700507 goto out1;
David Brownellf96411a2008-10-20 23:50:05 +0200508
Todd Poynor7e72c682011-08-10 20:20:36 -0700509 rtc = rtc_device_register(pdev->name,
510 &pdev->dev, &twl_rtc_ops, THIS_MODULE);
511 if (IS_ERR(rtc)) {
512 ret = PTR_ERR(rtc);
513 dev_err(&pdev->dev, "can't register RTC device, err %ld\n",
514 PTR_ERR(rtc));
515 goto out1;
516 }
517
518 ret = request_threaded_irq(irq, NULL, twl_rtc_interrupt,
Kevin Hilman6b91bf12012-07-11 14:02:44 -0700519 IRQF_TRIGGER_RISING | IRQF_ONESHOT,
Todd Poynor7e72c682011-08-10 20:20:36 -0700520 dev_name(&rtc->dev), rtc);
521 if (ret < 0) {
522 dev_err(&pdev->dev, "IRQ is not free.\n");
523 goto out2;
524 }
525
526 platform_set_drvdata(pdev, rtc);
527 return 0;
David Brownellf96411a2008-10-20 23:50:05 +0200528
David Brownellf96411a2008-10-20 23:50:05 +0200529out2:
David Brownellf96411a2008-10-20 23:50:05 +0200530 rtc_device_unregister(rtc);
Todd Poynor7e72c682011-08-10 20:20:36 -0700531out1:
David Brownellf96411a2008-10-20 23:50:05 +0200532 return ret;
533}
534
535/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100536 * Disable all TWL RTC module interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200537 * Sets status flag to free.
538 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800539static int twl_rtc_remove(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200540{
541 /* leave rtc running, but disable irqs */
542 struct rtc_device *rtc = platform_get_drvdata(pdev);
543 int irq = platform_get_irq(pdev, 0);
544
545 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
546 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100547 if (twl_class_is_6030()) {
548 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
549 REG_INT_MSK_LINE_A);
550 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
551 REG_INT_MSK_STS_A);
552 }
553
David Brownellf96411a2008-10-20 23:50:05 +0200554
555 free_irq(irq, rtc);
556
557 rtc_device_unregister(rtc);
558 platform_set_drvdata(pdev, NULL);
559 return 0;
560}
561
Balaji T Kef3b7d02009-12-13 21:30:48 +0100562static void twl_rtc_shutdown(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200563{
Matti Halmecafa1d82009-01-15 13:50:56 -0800564 /* mask timer interrupts, but leave alarm interrupts on to enable
565 power-on when alarm is triggered */
566 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
David Brownellf96411a2008-10-20 23:50:05 +0200567}
568
569#ifdef CONFIG_PM
570
571static unsigned char irqstat;
572
Balaji T Kef3b7d02009-12-13 21:30:48 +0100573static int twl_rtc_suspend(struct platform_device *pdev, pm_message_t state)
David Brownellf96411a2008-10-20 23:50:05 +0200574{
575 irqstat = rtc_irq_bits;
576
Kim Kyuwonf9930042009-05-12 13:19:38 -0700577 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
David Brownellf96411a2008-10-20 23:50:05 +0200578 return 0;
579}
580
Balaji T Kef3b7d02009-12-13 21:30:48 +0100581static int twl_rtc_resume(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200582{
583 set_rtc_irq_bit(irqstat);
584 return 0;
585}
586
587#else
Balaji T Kef3b7d02009-12-13 21:30:48 +0100588#define twl_rtc_suspend NULL
589#define twl_rtc_resume NULL
David Brownellf96411a2008-10-20 23:50:05 +0200590#endif
591
Sachin Kamatc8a60462013-02-21 16:44:28 -0800592#ifdef CONFIG_OF
Benoit Cousson948170f2012-01-10 15:10:59 -0800593static const struct of_device_id twl_rtc_of_match[] = {
594 {.compatible = "ti,twl4030-rtc", },
595 { },
596};
597MODULE_DEVICE_TABLE(of, twl_rtc_of_match);
Sachin Kamatc8a60462013-02-21 16:44:28 -0800598#endif
599
Balaji T Kef3b7d02009-12-13 21:30:48 +0100600MODULE_ALIAS("platform:twl_rtc");
David Brownellf96411a2008-10-20 23:50:05 +0200601
602static struct platform_driver twl4030rtc_driver = {
Balaji T Kef3b7d02009-12-13 21:30:48 +0100603 .probe = twl_rtc_probe,
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800604 .remove = twl_rtc_remove,
Balaji T Kef3b7d02009-12-13 21:30:48 +0100605 .shutdown = twl_rtc_shutdown,
606 .suspend = twl_rtc_suspend,
607 .resume = twl_rtc_resume,
David Brownellf96411a2008-10-20 23:50:05 +0200608 .driver = {
Benoit Cousson948170f2012-01-10 15:10:59 -0800609 .owner = THIS_MODULE,
610 .name = "twl_rtc",
Sachin Kamatc8a60462013-02-21 16:44:28 -0800611 .of_match_table = of_match_ptr(twl_rtc_of_match),
David Brownellf96411a2008-10-20 23:50:05 +0200612 },
613};
614
Balaji T Kef3b7d02009-12-13 21:30:48 +0100615static int __init twl_rtc_init(void)
David Brownellf96411a2008-10-20 23:50:05 +0200616{
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100617 if (twl_class_is_4030())
618 rtc_reg_map = (u8 *) twl4030_rtc_reg_map;
619 else
620 rtc_reg_map = (u8 *) twl6030_rtc_reg_map;
621
David Brownellf96411a2008-10-20 23:50:05 +0200622 return platform_driver_register(&twl4030rtc_driver);
623}
Balaji T Kef3b7d02009-12-13 21:30:48 +0100624module_init(twl_rtc_init);
David Brownellf96411a2008-10-20 23:50:05 +0200625
Balaji T Kef3b7d02009-12-13 21:30:48 +0100626static void __exit twl_rtc_exit(void)
David Brownellf96411a2008-10-20 23:50:05 +0200627{
628 platform_driver_unregister(&twl4030rtc_driver);
629}
Balaji T Kef3b7d02009-12-13 21:30:48 +0100630module_exit(twl_rtc_exit);
David Brownellf96411a2008-10-20 23:50:05 +0200631
632MODULE_AUTHOR("Texas Instruments, MontaVista Software");
633MODULE_LICENSE("GPL");