blob: ccd4ad370b32fc2a2685c4103ed9902f137ee50b [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>
30
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010031#include <linux/i2c/twl.h>
David Brownellf96411a2008-10-20 23:50:05 +020032
33
34/*
35 * RTC block register offsets (use TWL_MODULE_RTC)
36 */
Balaji T Ka6b49ff2009-12-13 22:16:31 +010037enum {
38 REG_SECONDS_REG = 0,
39 REG_MINUTES_REG,
40 REG_HOURS_REG,
41 REG_DAYS_REG,
42 REG_MONTHS_REG,
43 REG_YEARS_REG,
44 REG_WEEKS_REG,
David Brownellf96411a2008-10-20 23:50:05 +020045
Balaji T Ka6b49ff2009-12-13 22:16:31 +010046 REG_ALARM_SECONDS_REG,
47 REG_ALARM_MINUTES_REG,
48 REG_ALARM_HOURS_REG,
49 REG_ALARM_DAYS_REG,
50 REG_ALARM_MONTHS_REG,
51 REG_ALARM_YEARS_REG,
David Brownellf96411a2008-10-20 23:50:05 +020052
Balaji T Ka6b49ff2009-12-13 22:16:31 +010053 REG_RTC_CTRL_REG,
54 REG_RTC_STATUS_REG,
55 REG_RTC_INTERRUPTS_REG,
David Brownellf96411a2008-10-20 23:50:05 +020056
Balaji T Ka6b49ff2009-12-13 22:16:31 +010057 REG_RTC_COMP_LSB_REG,
58 REG_RTC_COMP_MSB_REG,
59};
Tobias Klauser2e840672010-03-05 13:44:23 -080060static const u8 twl4030_rtc_reg_map[] = {
Balaji T Ka6b49ff2009-12-13 22:16:31 +010061 [REG_SECONDS_REG] = 0x00,
62 [REG_MINUTES_REG] = 0x01,
63 [REG_HOURS_REG] = 0x02,
64 [REG_DAYS_REG] = 0x03,
65 [REG_MONTHS_REG] = 0x04,
66 [REG_YEARS_REG] = 0x05,
67 [REG_WEEKS_REG] = 0x06,
68
69 [REG_ALARM_SECONDS_REG] = 0x07,
70 [REG_ALARM_MINUTES_REG] = 0x08,
71 [REG_ALARM_HOURS_REG] = 0x09,
72 [REG_ALARM_DAYS_REG] = 0x0A,
73 [REG_ALARM_MONTHS_REG] = 0x0B,
74 [REG_ALARM_YEARS_REG] = 0x0C,
75
76 [REG_RTC_CTRL_REG] = 0x0D,
77 [REG_RTC_STATUS_REG] = 0x0E,
78 [REG_RTC_INTERRUPTS_REG] = 0x0F,
79
80 [REG_RTC_COMP_LSB_REG] = 0x10,
81 [REG_RTC_COMP_MSB_REG] = 0x11,
82};
Tobias Klauser2e840672010-03-05 13:44:23 -080083static const u8 twl6030_rtc_reg_map[] = {
Balaji T Ka6b49ff2009-12-13 22:16:31 +010084 [REG_SECONDS_REG] = 0x00,
85 [REG_MINUTES_REG] = 0x01,
86 [REG_HOURS_REG] = 0x02,
87 [REG_DAYS_REG] = 0x03,
88 [REG_MONTHS_REG] = 0x04,
89 [REG_YEARS_REG] = 0x05,
90 [REG_WEEKS_REG] = 0x06,
91
92 [REG_ALARM_SECONDS_REG] = 0x08,
93 [REG_ALARM_MINUTES_REG] = 0x09,
94 [REG_ALARM_HOURS_REG] = 0x0A,
95 [REG_ALARM_DAYS_REG] = 0x0B,
96 [REG_ALARM_MONTHS_REG] = 0x0C,
97 [REG_ALARM_YEARS_REG] = 0x0D,
98
99 [REG_RTC_CTRL_REG] = 0x10,
100 [REG_RTC_STATUS_REG] = 0x11,
101 [REG_RTC_INTERRUPTS_REG] = 0x12,
102
103 [REG_RTC_COMP_LSB_REG] = 0x13,
104 [REG_RTC_COMP_MSB_REG] = 0x14,
105};
David Brownellf96411a2008-10-20 23:50:05 +0200106
107/* RTC_CTRL_REG bitfields */
108#define BIT_RTC_CTRL_REG_STOP_RTC_M 0x01
109#define BIT_RTC_CTRL_REG_ROUND_30S_M 0x02
110#define BIT_RTC_CTRL_REG_AUTO_COMP_M 0x04
111#define BIT_RTC_CTRL_REG_MODE_12_24_M 0x08
112#define BIT_RTC_CTRL_REG_TEST_MODE_M 0x10
113#define BIT_RTC_CTRL_REG_SET_32_COUNTER_M 0x20
114#define BIT_RTC_CTRL_REG_GET_TIME_M 0x40
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700115#define BIT_RTC_CTRL_REG_RTC_V_OPT 0x80
David Brownellf96411a2008-10-20 23:50:05 +0200116
117/* RTC_STATUS_REG bitfields */
118#define BIT_RTC_STATUS_REG_RUN_M 0x02
119#define BIT_RTC_STATUS_REG_1S_EVENT_M 0x04
120#define BIT_RTC_STATUS_REG_1M_EVENT_M 0x08
121#define BIT_RTC_STATUS_REG_1H_EVENT_M 0x10
122#define BIT_RTC_STATUS_REG_1D_EVENT_M 0x20
123#define BIT_RTC_STATUS_REG_ALARM_M 0x40
124#define BIT_RTC_STATUS_REG_POWER_UP_M 0x80
125
126/* RTC_INTERRUPTS_REG bitfields */
127#define BIT_RTC_INTERRUPTS_REG_EVERY_M 0x03
128#define BIT_RTC_INTERRUPTS_REG_IT_TIMER_M 0x04
129#define BIT_RTC_INTERRUPTS_REG_IT_ALARM_M 0x08
130
131
132/* REG_SECONDS_REG through REG_YEARS_REG is how many registers? */
133#define ALL_TIME_REGS 6
134
135/*----------------------------------------------------------------------*/
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100136static u8 *rtc_reg_map;
David Brownellf96411a2008-10-20 23:50:05 +0200137
138/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100139 * Supports 1 byte read from TWL RTC register.
David Brownellf96411a2008-10-20 23:50:05 +0200140 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100141static int twl_rtc_read_u8(u8 *data, u8 reg)
David Brownellf96411a2008-10-20 23:50:05 +0200142{
143 int ret;
144
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100145 ret = twl_i2c_read_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
David Brownellf96411a2008-10-20 23:50:05 +0200146 if (ret < 0)
Balaji T Kef3b7d02009-12-13 21:30:48 +0100147 pr_err("twl_rtc: Could not read TWL"
David Brownellf96411a2008-10-20 23:50:05 +0200148 "register %X - error %d\n", reg, ret);
149 return ret;
150}
151
152/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100153 * Supports 1 byte write to TWL RTC registers.
David Brownellf96411a2008-10-20 23:50:05 +0200154 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100155static int twl_rtc_write_u8(u8 data, u8 reg)
David Brownellf96411a2008-10-20 23:50:05 +0200156{
157 int ret;
158
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100159 ret = twl_i2c_write_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
David Brownellf96411a2008-10-20 23:50:05 +0200160 if (ret < 0)
Balaji T Kef3b7d02009-12-13 21:30:48 +0100161 pr_err("twl_rtc: Could not write TWL"
David Brownellf96411a2008-10-20 23:50:05 +0200162 "register %X - error %d\n", reg, ret);
163 return ret;
164}
165
166/*
167 * Cache the value for timer/alarm interrupts register; this is
168 * only changed by callers holding rtc ops lock (or resume).
169 */
170static unsigned char rtc_irq_bits;
171
172/*
Alessandro Zummoa7483842009-01-15 13:50:52 -0800173 * Enable 1/second update and/or alarm interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200174 */
175static int set_rtc_irq_bit(unsigned char bit)
176{
177 unsigned char val;
178 int ret;
179
Venu Byravarasuce9f6502012-03-23 15:02:32 -0700180 /* if the bit is set, return from here */
181 if (rtc_irq_bits & bit)
182 return 0;
183
David Brownellf96411a2008-10-20 23:50:05 +0200184 val = rtc_irq_bits | bit;
Alessandro Zummoa7483842009-01-15 13:50:52 -0800185 val &= ~BIT_RTC_INTERRUPTS_REG_EVERY_M;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100186 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200187 if (ret == 0)
188 rtc_irq_bits = val;
189
190 return ret;
191}
192
193/*
Alessandro Zummoa7483842009-01-15 13:50:52 -0800194 * Disable update and/or alarm interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200195 */
196static int mask_rtc_irq_bit(unsigned char bit)
197{
198 unsigned char val;
199 int ret;
200
Venu Byravarasuce9f6502012-03-23 15:02:32 -0700201 /* if the bit is clear, return from here */
202 if (!(rtc_irq_bits & bit))
203 return 0;
204
David Brownellf96411a2008-10-20 23:50:05 +0200205 val = rtc_irq_bits & ~bit;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100206 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200207 if (ret == 0)
208 rtc_irq_bits = val;
209
210 return ret;
211}
212
Balaji T Kef3b7d02009-12-13 21:30:48 +0100213static int twl_rtc_alarm_irq_enable(struct device *dev, unsigned enabled)
David Brownellf96411a2008-10-20 23:50:05 +0200214{
215 int ret;
216
217 if (enabled)
218 ret = set_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
219 else
220 ret = mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
221
222 return ret;
223}
224
David Brownellf96411a2008-10-20 23:50:05 +0200225/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100226 * Gets current TWL RTC time and date parameters.
David Brownellf96411a2008-10-20 23:50:05 +0200227 *
228 * The RTC's time/alarm representation is not what gmtime(3) requires
229 * Linux to use:
230 *
231 * - Months are 1..12 vs Linux 0-11
232 * - Years are 0..99 vs Linux 1900..N (we assume 21st century)
233 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100234static int twl_rtc_read_time(struct device *dev, struct rtc_time *tm)
David Brownellf96411a2008-10-20 23:50:05 +0200235{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100236 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200237 int ret;
238 u8 save_control;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700239 u8 rtc_control;
David Brownellf96411a2008-10-20 23:50:05 +0200240
Balaji T Kef3b7d02009-12-13 21:30:48 +0100241 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700242 if (ret < 0) {
243 dev_err(dev, "%s: reading CTRL_REG, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200244 return ret;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700245 }
246 /* for twl6030/32 make sure BIT_RTC_CTRL_REG_GET_TIME_M is clear */
247 if (twl_class_is_6030()) {
248 if (save_control & BIT_RTC_CTRL_REG_GET_TIME_M) {
249 save_control &= ~BIT_RTC_CTRL_REG_GET_TIME_M;
250 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
251 if (ret < 0) {
252 dev_err(dev, "%s clr GET_TIME, error %d\n",
253 __func__, ret);
254 return ret;
255 }
256 }
257 }
David Brownellf96411a2008-10-20 23:50:05 +0200258
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700259 /* Copy RTC counting registers to static registers or latches */
260 rtc_control = save_control | BIT_RTC_CTRL_REG_GET_TIME_M;
David Brownellf96411a2008-10-20 23:50:05 +0200261
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700262 /* for twl6030/32 enable read access to static shadowed registers */
263 if (twl_class_is_6030())
264 rtc_control |= BIT_RTC_CTRL_REG_RTC_V_OPT;
265
266 ret = twl_rtc_write_u8(rtc_control, REG_RTC_CTRL_REG);
267 if (ret < 0) {
268 dev_err(dev, "%s: writing CTRL_REG, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200269 return ret;
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700270 }
David Brownellf96411a2008-10-20 23:50:05 +0200271
Balaji T Kef3b7d02009-12-13 21:30:48 +0100272 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100273 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200274
275 if (ret < 0) {
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700276 dev_err(dev, "%s: reading data, error %d\n", __func__, ret);
David Brownellf96411a2008-10-20 23:50:05 +0200277 return ret;
278 }
279
Konstantin Shlyakhovoyf3ec4342012-04-12 12:49:15 -0700280 /* for twl6030 restore original state of rtc control register */
281 if (twl_class_is_6030()) {
282 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
283 if (ret < 0) {
284 dev_err(dev, "%s: restore CTRL_REG, error %d\n",
285 __func__, ret);
286 return ret;
287 }
288 }
289
David Brownellf96411a2008-10-20 23:50:05 +0200290 tm->tm_sec = bcd2bin(rtc_data[0]);
291 tm->tm_min = bcd2bin(rtc_data[1]);
292 tm->tm_hour = bcd2bin(rtc_data[2]);
293 tm->tm_mday = bcd2bin(rtc_data[3]);
294 tm->tm_mon = bcd2bin(rtc_data[4]) - 1;
295 tm->tm_year = bcd2bin(rtc_data[5]) + 100;
296
297 return ret;
298}
299
Balaji T Kef3b7d02009-12-13 21:30:48 +0100300static int twl_rtc_set_time(struct device *dev, struct rtc_time *tm)
David Brownellf96411a2008-10-20 23:50:05 +0200301{
302 unsigned char save_control;
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100303 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200304 int ret;
305
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100306 rtc_data[0] = bin2bcd(tm->tm_sec);
307 rtc_data[1] = bin2bcd(tm->tm_min);
308 rtc_data[2] = bin2bcd(tm->tm_hour);
309 rtc_data[3] = bin2bcd(tm->tm_mday);
310 rtc_data[4] = bin2bcd(tm->tm_mon + 1);
311 rtc_data[5] = bin2bcd(tm->tm_year - 100);
David Brownellf96411a2008-10-20 23:50:05 +0200312
313 /* Stop RTC while updating the TC registers */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100314 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200315 if (ret < 0)
316 goto out;
317
318 save_control &= ~BIT_RTC_CTRL_REG_STOP_RTC_M;
Jesper Juhl8f6b0dd2011-07-25 17:13:34 -0700319 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200320 if (ret < 0)
321 goto out;
322
323 /* update all the time registers in one shot */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100324 ret = twl_i2c_write(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100325 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200326 if (ret < 0) {
327 dev_err(dev, "rtc_set_time error %d\n", ret);
328 goto out;
329 }
330
331 /* Start back RTC */
332 save_control |= BIT_RTC_CTRL_REG_STOP_RTC_M;
Balaji T Kef3b7d02009-12-13 21:30:48 +0100333 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200334
335out:
336 return ret;
337}
338
339/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100340 * Gets current TWL RTC alarm time.
David Brownellf96411a2008-10-20 23:50:05 +0200341 */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100342static int twl_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
David Brownellf96411a2008-10-20 23:50:05 +0200343{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100344 unsigned char rtc_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200345 int ret;
346
Balaji T Kef3b7d02009-12-13 21:30:48 +0100347 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100348 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200349 if (ret < 0) {
350 dev_err(dev, "rtc_read_alarm error %d\n", ret);
351 return ret;
352 }
353
354 /* some of these fields may be wildcard/"match all" */
355 alm->time.tm_sec = bcd2bin(rtc_data[0]);
356 alm->time.tm_min = bcd2bin(rtc_data[1]);
357 alm->time.tm_hour = bcd2bin(rtc_data[2]);
358 alm->time.tm_mday = bcd2bin(rtc_data[3]);
359 alm->time.tm_mon = bcd2bin(rtc_data[4]) - 1;
360 alm->time.tm_year = bcd2bin(rtc_data[5]) + 100;
361
362 /* report cached alarm enable state */
363 if (rtc_irq_bits & BIT_RTC_INTERRUPTS_REG_IT_ALARM_M)
364 alm->enabled = 1;
365
366 return ret;
367}
368
Balaji T Kef3b7d02009-12-13 21:30:48 +0100369static int twl_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm)
David Brownellf96411a2008-10-20 23:50:05 +0200370{
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100371 unsigned char alarm_data[ALL_TIME_REGS];
David Brownellf96411a2008-10-20 23:50:05 +0200372 int ret;
373
Balaji T Kef3b7d02009-12-13 21:30:48 +0100374 ret = twl_rtc_alarm_irq_enable(dev, 0);
David Brownellf96411a2008-10-20 23:50:05 +0200375 if (ret)
376 goto out;
377
Peter Ujfalusi14591d82012-11-13 09:28:45 +0100378 alarm_data[0] = bin2bcd(alm->time.tm_sec);
379 alarm_data[1] = bin2bcd(alm->time.tm_min);
380 alarm_data[2] = bin2bcd(alm->time.tm_hour);
381 alarm_data[3] = bin2bcd(alm->time.tm_mday);
382 alarm_data[4] = bin2bcd(alm->time.tm_mon + 1);
383 alarm_data[5] = bin2bcd(alm->time.tm_year - 100);
David Brownellf96411a2008-10-20 23:50:05 +0200384
385 /* update all the alarm registers in one shot */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100386 ret = twl_i2c_write(TWL_MODULE_RTC, alarm_data,
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100387 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
David Brownellf96411a2008-10-20 23:50:05 +0200388 if (ret) {
389 dev_err(dev, "rtc_set_alarm error %d\n", ret);
390 goto out;
391 }
392
393 if (alm->enabled)
Balaji T Kef3b7d02009-12-13 21:30:48 +0100394 ret = twl_rtc_alarm_irq_enable(dev, 1);
David Brownellf96411a2008-10-20 23:50:05 +0200395out:
396 return ret;
397}
398
Balaji T Kef3b7d02009-12-13 21:30:48 +0100399static irqreturn_t twl_rtc_interrupt(int irq, void *rtc)
David Brownellf96411a2008-10-20 23:50:05 +0200400{
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700401 unsigned long events;
David Brownellf96411a2008-10-20 23:50:05 +0200402 int ret = IRQ_NONE;
403 int res;
404 u8 rd_reg;
405
Balaji T Kef3b7d02009-12-13 21:30:48 +0100406 res = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200407 if (res)
408 goto out;
409 /*
410 * Figure out source of interrupt: ALARM or TIMER in RTC_STATUS_REG.
411 * only one (ALARM or RTC) interrupt source may be enabled
412 * at time, we also could check our results
413 * by reading RTS_INTERRUPTS_REGISTER[IT_TIMER,IT_ALARM]
414 */
415 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700416 events = RTC_IRQF | RTC_AF;
David Brownellf96411a2008-10-20 23:50:05 +0200417 else
Venu Byravarasu2778ebc2012-03-23 15:02:34 -0700418 events = RTC_IRQF | RTC_PF;
David Brownellf96411a2008-10-20 23:50:05 +0200419
Venu Byravarasu94a339d2012-03-23 15:02:33 -0700420 res = twl_rtc_write_u8(BIT_RTC_STATUS_REG_ALARM_M,
David Brownellf96411a2008-10-20 23:50:05 +0200421 REG_RTC_STATUS_REG);
422 if (res)
423 goto out;
424
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100425 if (twl_class_is_4030()) {
426 /* Clear on Read enabled. RTC_IT bit of TWL4030_INT_PWR_ISR1
427 * needs 2 reads to clear the interrupt. One read is done in
428 * do_twl_pwrirq(). Doing the second read, to clear
429 * the bit.
430 *
431 * FIXME the reason PWR_ISR1 needs an extra read is that
432 * RTC_IF retriggered until we cleared REG_ALARM_M above.
433 * But re-reading like this is a bad hack; by doing so we
434 * risk wrongly clearing status for some other IRQ (losing
435 * the interrupt). Be smarter about handling RTC_UF ...
436 */
437 res = twl_i2c_read_u8(TWL4030_MODULE_INT,
David Brownellf96411a2008-10-20 23:50:05 +0200438 &rd_reg, TWL4030_INT_PWR_ISR1);
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100439 if (res)
440 goto out;
441 }
David Brownellf96411a2008-10-20 23:50:05 +0200442
443 /* Notify RTC core on event */
444 rtc_update_irq(rtc, 1, events);
445
446 ret = IRQ_HANDLED;
447out:
448 return ret;
449}
450
Balaji T Kef3b7d02009-12-13 21:30:48 +0100451static struct rtc_class_ops twl_rtc_ops = {
452 .read_time = twl_rtc_read_time,
453 .set_time = twl_rtc_set_time,
454 .read_alarm = twl_rtc_read_alarm,
455 .set_alarm = twl_rtc_set_alarm,
456 .alarm_irq_enable = twl_rtc_alarm_irq_enable,
David Brownellf96411a2008-10-20 23:50:05 +0200457};
458
459/*----------------------------------------------------------------------*/
460
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800461static int twl_rtc_probe(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200462{
463 struct rtc_device *rtc;
Todd Poynor7e72c682011-08-10 20:20:36 -0700464 int ret = -EINVAL;
David Brownellf96411a2008-10-20 23:50:05 +0200465 int irq = platform_get_irq(pdev, 0);
466 u8 rd_reg;
467
Anton Vorontsov2fac6672009-01-06 14:42:11 -0800468 if (irq <= 0)
Todd Poynor7e72c682011-08-10 20:20:36 -0700469 goto out1;
David Brownellf96411a2008-10-20 23:50:05 +0200470
Balaji T Kef3b7d02009-12-13 21:30:48 +0100471 ret = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200472 if (ret < 0)
473 goto out1;
474
475 if (rd_reg & BIT_RTC_STATUS_REG_POWER_UP_M)
476 dev_warn(&pdev->dev, "Power up reset detected.\n");
477
478 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
479 dev_warn(&pdev->dev, "Pending Alarm interrupt detected.\n");
480
481 /* Clear RTC Power up reset and pending alarm interrupts */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100482 ret = twl_rtc_write_u8(rd_reg, REG_RTC_STATUS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200483 if (ret < 0)
484 goto out1;
485
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100486 if (twl_class_is_6030()) {
487 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
488 REG_INT_MSK_LINE_A);
489 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
490 REG_INT_MSK_STS_A);
491 }
492
Venu Byravarasuf7439bc2012-03-23 15:02:33 -0700493 dev_info(&pdev->dev, "Enabling TWL-RTC\n");
494 ret = twl_rtc_write_u8(BIT_RTC_CTRL_REG_STOP_RTC_M, REG_RTC_CTRL_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200495 if (ret < 0)
Todd Poynor7e72c682011-08-10 20:20:36 -0700496 goto out1;
David Brownellf96411a2008-10-20 23:50:05 +0200497
Kevin Hilman8dcebaa92012-09-17 14:09:17 -0700498 /* ensure interrupts are disabled, bootloaders can be strange */
499 ret = twl_rtc_write_u8(0, REG_RTC_INTERRUPTS_REG);
500 if (ret < 0)
501 dev_warn(&pdev->dev, "unable to disable interrupt\n");
502
David Brownellf96411a2008-10-20 23:50:05 +0200503 /* init cached IRQ enable bits */
Balaji T Kef3b7d02009-12-13 21:30:48 +0100504 ret = twl_rtc_read_u8(&rtc_irq_bits, REG_RTC_INTERRUPTS_REG);
David Brownellf96411a2008-10-20 23:50:05 +0200505 if (ret < 0)
Todd Poynor7e72c682011-08-10 20:20:36 -0700506 goto out1;
David Brownellf96411a2008-10-20 23:50:05 +0200507
Todd Poynor7e72c682011-08-10 20:20:36 -0700508 rtc = rtc_device_register(pdev->name,
509 &pdev->dev, &twl_rtc_ops, THIS_MODULE);
510 if (IS_ERR(rtc)) {
511 ret = PTR_ERR(rtc);
512 dev_err(&pdev->dev, "can't register RTC device, err %ld\n",
513 PTR_ERR(rtc));
514 goto out1;
515 }
516
517 ret = request_threaded_irq(irq, NULL, twl_rtc_interrupt,
Kevin Hilman6b91bf12012-07-11 14:02:44 -0700518 IRQF_TRIGGER_RISING | IRQF_ONESHOT,
Todd Poynor7e72c682011-08-10 20:20:36 -0700519 dev_name(&rtc->dev), rtc);
520 if (ret < 0) {
521 dev_err(&pdev->dev, "IRQ is not free.\n");
522 goto out2;
523 }
524
525 platform_set_drvdata(pdev, rtc);
526 return 0;
David Brownellf96411a2008-10-20 23:50:05 +0200527
David Brownellf96411a2008-10-20 23:50:05 +0200528out2:
David Brownellf96411a2008-10-20 23:50:05 +0200529 rtc_device_unregister(rtc);
Todd Poynor7e72c682011-08-10 20:20:36 -0700530out1:
David Brownellf96411a2008-10-20 23:50:05 +0200531 return ret;
532}
533
534/*
Balaji T Kef3b7d02009-12-13 21:30:48 +0100535 * Disable all TWL RTC module interrupts.
David Brownellf96411a2008-10-20 23:50:05 +0200536 * Sets status flag to free.
537 */
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800538static int twl_rtc_remove(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200539{
540 /* leave rtc running, but disable irqs */
541 struct rtc_device *rtc = platform_get_drvdata(pdev);
542 int irq = platform_get_irq(pdev, 0);
543
544 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
545 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100546 if (twl_class_is_6030()) {
547 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
548 REG_INT_MSK_LINE_A);
549 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
550 REG_INT_MSK_STS_A);
551 }
552
David Brownellf96411a2008-10-20 23:50:05 +0200553
554 free_irq(irq, rtc);
555
556 rtc_device_unregister(rtc);
557 platform_set_drvdata(pdev, NULL);
558 return 0;
559}
560
Balaji T Kef3b7d02009-12-13 21:30:48 +0100561static void twl_rtc_shutdown(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200562{
Matti Halmecafa1d82009-01-15 13:50:56 -0800563 /* mask timer interrupts, but leave alarm interrupts on to enable
564 power-on when alarm is triggered */
565 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
David Brownellf96411a2008-10-20 23:50:05 +0200566}
567
568#ifdef CONFIG_PM
569
570static unsigned char irqstat;
571
Balaji T Kef3b7d02009-12-13 21:30:48 +0100572static int twl_rtc_suspend(struct platform_device *pdev, pm_message_t state)
David Brownellf96411a2008-10-20 23:50:05 +0200573{
574 irqstat = rtc_irq_bits;
575
Kim Kyuwonf9930042009-05-12 13:19:38 -0700576 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
David Brownellf96411a2008-10-20 23:50:05 +0200577 return 0;
578}
579
Balaji T Kef3b7d02009-12-13 21:30:48 +0100580static int twl_rtc_resume(struct platform_device *pdev)
David Brownellf96411a2008-10-20 23:50:05 +0200581{
582 set_rtc_irq_bit(irqstat);
583 return 0;
584}
585
586#else
Balaji T Kef3b7d02009-12-13 21:30:48 +0100587#define twl_rtc_suspend NULL
588#define twl_rtc_resume NULL
David Brownellf96411a2008-10-20 23:50:05 +0200589#endif
590
Benoit Cousson948170f2012-01-10 15:10:59 -0800591static const struct of_device_id twl_rtc_of_match[] = {
592 {.compatible = "ti,twl4030-rtc", },
593 { },
594};
595MODULE_DEVICE_TABLE(of, twl_rtc_of_match);
Balaji T Kef3b7d02009-12-13 21:30:48 +0100596MODULE_ALIAS("platform:twl_rtc");
David Brownellf96411a2008-10-20 23:50:05 +0200597
598static struct platform_driver twl4030rtc_driver = {
Balaji T Kef3b7d02009-12-13 21:30:48 +0100599 .probe = twl_rtc_probe,
Greg Kroah-Hartman5a167f42012-12-21 13:09:38 -0800600 .remove = twl_rtc_remove,
Balaji T Kef3b7d02009-12-13 21:30:48 +0100601 .shutdown = twl_rtc_shutdown,
602 .suspend = twl_rtc_suspend,
603 .resume = twl_rtc_resume,
David Brownellf96411a2008-10-20 23:50:05 +0200604 .driver = {
Benoit Cousson948170f2012-01-10 15:10:59 -0800605 .owner = THIS_MODULE,
606 .name = "twl_rtc",
607 .of_match_table = twl_rtc_of_match,
David Brownellf96411a2008-10-20 23:50:05 +0200608 },
609};
610
Balaji T Kef3b7d02009-12-13 21:30:48 +0100611static int __init twl_rtc_init(void)
David Brownellf96411a2008-10-20 23:50:05 +0200612{
Balaji T Ka6b49ff2009-12-13 22:16:31 +0100613 if (twl_class_is_4030())
614 rtc_reg_map = (u8 *) twl4030_rtc_reg_map;
615 else
616 rtc_reg_map = (u8 *) twl6030_rtc_reg_map;
617
David Brownellf96411a2008-10-20 23:50:05 +0200618 return platform_driver_register(&twl4030rtc_driver);
619}
Balaji T Kef3b7d02009-12-13 21:30:48 +0100620module_init(twl_rtc_init);
David Brownellf96411a2008-10-20 23:50:05 +0200621
Balaji T Kef3b7d02009-12-13 21:30:48 +0100622static void __exit twl_rtc_exit(void)
David Brownellf96411a2008-10-20 23:50:05 +0200623{
624 platform_driver_unregister(&twl4030rtc_driver);
625}
Balaji T Kef3b7d02009-12-13 21:30:48 +0100626module_exit(twl_rtc_exit);
David Brownellf96411a2008-10-20 23:50:05 +0200627
628MODULE_AUTHOR("Texas Instruments, MontaVista Software");
629MODULE_LICENSE("GPL");