mm: account for MAP_SHARED mappings using VM_MAYSHARE and not VM_SHARED in hugetlbfs
[linux-2.6/mini2440.git] / drivers / rtc / rtc-twl4030.c
blobad35f76c46b7f1a2ee84f7b12e883b50e5e299cf
1 /*
2 * rtc-twl4030.c -- TWL4030 Real Time Clock interface
4 * Copyright (C) 2007 MontaVista Software, Inc
5 * Author: Alexandre Rusev <source@mvista.com>
7 * Based on original TI driver twl4030-rtc.c
8 * Copyright (C) 2006 Texas Instruments, Inc.
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
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.
21 #include <linux/kernel.h>
22 #include <linux/errno.h>
23 #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>
31 #include <linux/i2c/twl4030.h>
35 * RTC block register offsets (use TWL_MODULE_RTC)
37 #define REG_SECONDS_REG 0x00
38 #define REG_MINUTES_REG 0x01
39 #define REG_HOURS_REG 0x02
40 #define REG_DAYS_REG 0x03
41 #define REG_MONTHS_REG 0x04
42 #define REG_YEARS_REG 0x05
43 #define REG_WEEKS_REG 0x06
45 #define REG_ALARM_SECONDS_REG 0x07
46 #define REG_ALARM_MINUTES_REG 0x08
47 #define REG_ALARM_HOURS_REG 0x09
48 #define REG_ALARM_DAYS_REG 0x0A
49 #define REG_ALARM_MONTHS_REG 0x0B
50 #define REG_ALARM_YEARS_REG 0x0C
52 #define REG_RTC_CTRL_REG 0x0D
53 #define REG_RTC_STATUS_REG 0x0E
54 #define REG_RTC_INTERRUPTS_REG 0x0F
56 #define REG_RTC_COMP_LSB_REG 0x10
57 #define REG_RTC_COMP_MSB_REG 0x11
59 /* RTC_CTRL_REG bitfields */
60 #define BIT_RTC_CTRL_REG_STOP_RTC_M 0x01
61 #define BIT_RTC_CTRL_REG_ROUND_30S_M 0x02
62 #define BIT_RTC_CTRL_REG_AUTO_COMP_M 0x04
63 #define BIT_RTC_CTRL_REG_MODE_12_24_M 0x08
64 #define BIT_RTC_CTRL_REG_TEST_MODE_M 0x10
65 #define BIT_RTC_CTRL_REG_SET_32_COUNTER_M 0x20
66 #define BIT_RTC_CTRL_REG_GET_TIME_M 0x40
68 /* RTC_STATUS_REG bitfields */
69 #define BIT_RTC_STATUS_REG_RUN_M 0x02
70 #define BIT_RTC_STATUS_REG_1S_EVENT_M 0x04
71 #define BIT_RTC_STATUS_REG_1M_EVENT_M 0x08
72 #define BIT_RTC_STATUS_REG_1H_EVENT_M 0x10
73 #define BIT_RTC_STATUS_REG_1D_EVENT_M 0x20
74 #define BIT_RTC_STATUS_REG_ALARM_M 0x40
75 #define BIT_RTC_STATUS_REG_POWER_UP_M 0x80
77 /* RTC_INTERRUPTS_REG bitfields */
78 #define BIT_RTC_INTERRUPTS_REG_EVERY_M 0x03
79 #define BIT_RTC_INTERRUPTS_REG_IT_TIMER_M 0x04
80 #define BIT_RTC_INTERRUPTS_REG_IT_ALARM_M 0x08
83 /* REG_SECONDS_REG through REG_YEARS_REG is how many registers? */
84 #define ALL_TIME_REGS 6
86 /*----------------------------------------------------------------------*/
89 * Supports 1 byte read from TWL4030 RTC register.
91 static int twl4030_rtc_read_u8(u8 *data, u8 reg)
93 int ret;
95 ret = twl4030_i2c_read_u8(TWL4030_MODULE_RTC, data, reg);
96 if (ret < 0)
97 pr_err("twl4030_rtc: Could not read TWL4030"
98 "register %X - error %d\n", reg, ret);
99 return ret;
103 * Supports 1 byte write to TWL4030 RTC registers.
105 static int twl4030_rtc_write_u8(u8 data, u8 reg)
107 int ret;
109 ret = twl4030_i2c_write_u8(TWL4030_MODULE_RTC, data, reg);
110 if (ret < 0)
111 pr_err("twl4030_rtc: Could not write TWL4030"
112 "register %X - error %d\n", reg, ret);
113 return ret;
117 * Cache the value for timer/alarm interrupts register; this is
118 * only changed by callers holding rtc ops lock (or resume).
120 static unsigned char rtc_irq_bits;
123 * Enable 1/second update and/or alarm interrupts.
125 static int set_rtc_irq_bit(unsigned char bit)
127 unsigned char val;
128 int ret;
130 val = rtc_irq_bits | bit;
131 val &= ~BIT_RTC_INTERRUPTS_REG_EVERY_M;
132 ret = twl4030_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
133 if (ret == 0)
134 rtc_irq_bits = val;
136 return ret;
140 * Disable update and/or alarm interrupts.
142 static int mask_rtc_irq_bit(unsigned char bit)
144 unsigned char val;
145 int ret;
147 val = rtc_irq_bits & ~bit;
148 ret = twl4030_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
149 if (ret == 0)
150 rtc_irq_bits = val;
152 return ret;
155 static int twl4030_rtc_alarm_irq_enable(struct device *dev, unsigned enabled)
157 int ret;
159 if (enabled)
160 ret = set_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
161 else
162 ret = mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
164 return ret;
167 static int twl4030_rtc_update_irq_enable(struct device *dev, unsigned enabled)
169 int ret;
171 if (enabled)
172 ret = set_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
173 else
174 ret = mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
176 return ret;
180 * Gets current TWL4030 RTC time and date parameters.
182 * The RTC's time/alarm representation is not what gmtime(3) requires
183 * Linux to use:
185 * - Months are 1..12 vs Linux 0-11
186 * - Years are 0..99 vs Linux 1900..N (we assume 21st century)
188 static int twl4030_rtc_read_time(struct device *dev, struct rtc_time *tm)
190 unsigned char rtc_data[ALL_TIME_REGS + 1];
191 int ret;
192 u8 save_control;
194 ret = twl4030_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
195 if (ret < 0)
196 return ret;
198 save_control |= BIT_RTC_CTRL_REG_GET_TIME_M;
200 ret = twl4030_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
201 if (ret < 0)
202 return ret;
204 ret = twl4030_i2c_read(TWL4030_MODULE_RTC, rtc_data,
205 REG_SECONDS_REG, ALL_TIME_REGS);
207 if (ret < 0) {
208 dev_err(dev, "rtc_read_time error %d\n", ret);
209 return ret;
212 tm->tm_sec = bcd2bin(rtc_data[0]);
213 tm->tm_min = bcd2bin(rtc_data[1]);
214 tm->tm_hour = bcd2bin(rtc_data[2]);
215 tm->tm_mday = bcd2bin(rtc_data[3]);
216 tm->tm_mon = bcd2bin(rtc_data[4]) - 1;
217 tm->tm_year = bcd2bin(rtc_data[5]) + 100;
219 return ret;
222 static int twl4030_rtc_set_time(struct device *dev, struct rtc_time *tm)
224 unsigned char save_control;
225 unsigned char rtc_data[ALL_TIME_REGS + 1];
226 int ret;
228 rtc_data[1] = bin2bcd(tm->tm_sec);
229 rtc_data[2] = bin2bcd(tm->tm_min);
230 rtc_data[3] = bin2bcd(tm->tm_hour);
231 rtc_data[4] = bin2bcd(tm->tm_mday);
232 rtc_data[5] = bin2bcd(tm->tm_mon + 1);
233 rtc_data[6] = bin2bcd(tm->tm_year - 100);
235 /* Stop RTC while updating the TC registers */
236 ret = twl4030_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
237 if (ret < 0)
238 goto out;
240 save_control &= ~BIT_RTC_CTRL_REG_STOP_RTC_M;
241 twl4030_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
242 if (ret < 0)
243 goto out;
245 /* update all the time registers in one shot */
246 ret = twl4030_i2c_write(TWL4030_MODULE_RTC, rtc_data,
247 REG_SECONDS_REG, ALL_TIME_REGS);
248 if (ret < 0) {
249 dev_err(dev, "rtc_set_time error %d\n", ret);
250 goto out;
253 /* Start back RTC */
254 save_control |= BIT_RTC_CTRL_REG_STOP_RTC_M;
255 ret = twl4030_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
257 out:
258 return ret;
262 * Gets current TWL4030 RTC alarm time.
264 static int twl4030_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
266 unsigned char rtc_data[ALL_TIME_REGS + 1];
267 int ret;
269 ret = twl4030_i2c_read(TWL4030_MODULE_RTC, rtc_data,
270 REG_ALARM_SECONDS_REG, ALL_TIME_REGS);
271 if (ret < 0) {
272 dev_err(dev, "rtc_read_alarm error %d\n", ret);
273 return ret;
276 /* some of these fields may be wildcard/"match all" */
277 alm->time.tm_sec = bcd2bin(rtc_data[0]);
278 alm->time.tm_min = bcd2bin(rtc_data[1]);
279 alm->time.tm_hour = bcd2bin(rtc_data[2]);
280 alm->time.tm_mday = bcd2bin(rtc_data[3]);
281 alm->time.tm_mon = bcd2bin(rtc_data[4]) - 1;
282 alm->time.tm_year = bcd2bin(rtc_data[5]) + 100;
284 /* report cached alarm enable state */
285 if (rtc_irq_bits & BIT_RTC_INTERRUPTS_REG_IT_ALARM_M)
286 alm->enabled = 1;
288 return ret;
291 static int twl4030_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm)
293 unsigned char alarm_data[ALL_TIME_REGS + 1];
294 int ret;
296 ret = twl4030_rtc_alarm_irq_enable(dev, 0);
297 if (ret)
298 goto out;
300 alarm_data[1] = bin2bcd(alm->time.tm_sec);
301 alarm_data[2] = bin2bcd(alm->time.tm_min);
302 alarm_data[3] = bin2bcd(alm->time.tm_hour);
303 alarm_data[4] = bin2bcd(alm->time.tm_mday);
304 alarm_data[5] = bin2bcd(alm->time.tm_mon + 1);
305 alarm_data[6] = bin2bcd(alm->time.tm_year - 100);
307 /* update all the alarm registers in one shot */
308 ret = twl4030_i2c_write(TWL4030_MODULE_RTC, alarm_data,
309 REG_ALARM_SECONDS_REG, ALL_TIME_REGS);
310 if (ret) {
311 dev_err(dev, "rtc_set_alarm error %d\n", ret);
312 goto out;
315 if (alm->enabled)
316 ret = twl4030_rtc_alarm_irq_enable(dev, 1);
317 out:
318 return ret;
321 static irqreturn_t twl4030_rtc_interrupt(int irq, void *rtc)
323 unsigned long events = 0;
324 int ret = IRQ_NONE;
325 int res;
326 u8 rd_reg;
328 #ifdef CONFIG_LOCKDEP
329 /* WORKAROUND for lockdep forcing IRQF_DISABLED on us, which
330 * we don't want and can't tolerate. Although it might be
331 * friendlier not to borrow this thread context...
333 local_irq_enable();
334 #endif
336 res = twl4030_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
337 if (res)
338 goto out;
340 * Figure out source of interrupt: ALARM or TIMER in RTC_STATUS_REG.
341 * only one (ALARM or RTC) interrupt source may be enabled
342 * at time, we also could check our results
343 * by reading RTS_INTERRUPTS_REGISTER[IT_TIMER,IT_ALARM]
345 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
346 events |= RTC_IRQF | RTC_AF;
347 else
348 events |= RTC_IRQF | RTC_UF;
350 res = twl4030_rtc_write_u8(rd_reg | BIT_RTC_STATUS_REG_ALARM_M,
351 REG_RTC_STATUS_REG);
352 if (res)
353 goto out;
355 /* Clear on Read enabled. RTC_IT bit of TWL4030_INT_PWR_ISR1
356 * needs 2 reads to clear the interrupt. One read is done in
357 * do_twl4030_pwrirq(). Doing the second read, to clear
358 * the bit.
360 * FIXME the reason PWR_ISR1 needs an extra read is that
361 * RTC_IF retriggered until we cleared REG_ALARM_M above.
362 * But re-reading like this is a bad hack; by doing so we
363 * risk wrongly clearing status for some other IRQ (losing
364 * the interrupt). Be smarter about handling RTC_UF ...
366 res = twl4030_i2c_read_u8(TWL4030_MODULE_INT,
367 &rd_reg, TWL4030_INT_PWR_ISR1);
368 if (res)
369 goto out;
371 /* Notify RTC core on event */
372 rtc_update_irq(rtc, 1, events);
374 ret = IRQ_HANDLED;
375 out:
376 return ret;
379 static struct rtc_class_ops twl4030_rtc_ops = {
380 .read_time = twl4030_rtc_read_time,
381 .set_time = twl4030_rtc_set_time,
382 .read_alarm = twl4030_rtc_read_alarm,
383 .set_alarm = twl4030_rtc_set_alarm,
384 .alarm_irq_enable = twl4030_rtc_alarm_irq_enable,
385 .update_irq_enable = twl4030_rtc_update_irq_enable,
388 /*----------------------------------------------------------------------*/
390 static int __devinit twl4030_rtc_probe(struct platform_device *pdev)
392 struct rtc_device *rtc;
393 int ret = 0;
394 int irq = platform_get_irq(pdev, 0);
395 u8 rd_reg;
397 if (irq <= 0)
398 return -EINVAL;
400 rtc = rtc_device_register(pdev->name,
401 &pdev->dev, &twl4030_rtc_ops, THIS_MODULE);
402 if (IS_ERR(rtc)) {
403 ret = PTR_ERR(rtc);
404 dev_err(&pdev->dev, "can't register RTC device, err %ld\n",
405 PTR_ERR(rtc));
406 goto out0;
410 platform_set_drvdata(pdev, rtc);
412 ret = twl4030_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
413 if (ret < 0)
414 goto out1;
416 if (rd_reg & BIT_RTC_STATUS_REG_POWER_UP_M)
417 dev_warn(&pdev->dev, "Power up reset detected.\n");
419 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
420 dev_warn(&pdev->dev, "Pending Alarm interrupt detected.\n");
422 /* Clear RTC Power up reset and pending alarm interrupts */
423 ret = twl4030_rtc_write_u8(rd_reg, REG_RTC_STATUS_REG);
424 if (ret < 0)
425 goto out1;
427 ret = request_irq(irq, twl4030_rtc_interrupt,
428 IRQF_TRIGGER_RISING,
429 rtc->dev.bus_id, rtc);
430 if (ret < 0) {
431 dev_err(&pdev->dev, "IRQ is not free.\n");
432 goto out1;
435 /* Check RTC module status, Enable if it is off */
436 ret = twl4030_rtc_read_u8(&rd_reg, REG_RTC_CTRL_REG);
437 if (ret < 0)
438 goto out2;
440 if (!(rd_reg & BIT_RTC_CTRL_REG_STOP_RTC_M)) {
441 dev_info(&pdev->dev, "Enabling TWL4030-RTC.\n");
442 rd_reg = BIT_RTC_CTRL_REG_STOP_RTC_M;
443 ret = twl4030_rtc_write_u8(rd_reg, REG_RTC_CTRL_REG);
444 if (ret < 0)
445 goto out2;
448 /* init cached IRQ enable bits */
449 ret = twl4030_rtc_read_u8(&rtc_irq_bits, REG_RTC_INTERRUPTS_REG);
450 if (ret < 0)
451 goto out2;
453 return ret;
455 out2:
456 free_irq(irq, rtc);
457 out1:
458 rtc_device_unregister(rtc);
459 out0:
460 return ret;
464 * Disable all TWL4030 RTC module interrupts.
465 * Sets status flag to free.
467 static int __devexit twl4030_rtc_remove(struct platform_device *pdev)
469 /* leave rtc running, but disable irqs */
470 struct rtc_device *rtc = platform_get_drvdata(pdev);
471 int irq = platform_get_irq(pdev, 0);
473 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
474 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
476 free_irq(irq, rtc);
478 rtc_device_unregister(rtc);
479 platform_set_drvdata(pdev, NULL);
480 return 0;
483 static void twl4030_rtc_shutdown(struct platform_device *pdev)
485 /* mask timer interrupts, but leave alarm interrupts on to enable
486 power-on when alarm is triggered */
487 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
490 #ifdef CONFIG_PM
492 static unsigned char irqstat;
494 static int twl4030_rtc_suspend(struct platform_device *pdev, pm_message_t state)
496 irqstat = rtc_irq_bits;
498 /* REVISIT alarm may need to wake us from sleep */
499 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M |
500 BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
501 return 0;
504 static int twl4030_rtc_resume(struct platform_device *pdev)
506 set_rtc_irq_bit(irqstat);
507 return 0;
510 #else
511 #define twl4030_rtc_suspend NULL
512 #define twl4030_rtc_resume NULL
513 #endif
515 MODULE_ALIAS("platform:twl4030_rtc");
517 static struct platform_driver twl4030rtc_driver = {
518 .probe = twl4030_rtc_probe,
519 .remove = __devexit_p(twl4030_rtc_remove),
520 .shutdown = twl4030_rtc_shutdown,
521 .suspend = twl4030_rtc_suspend,
522 .resume = twl4030_rtc_resume,
523 .driver = {
524 .owner = THIS_MODULE,
525 .name = "twl4030_rtc",
529 static int __init twl4030_rtc_init(void)
531 return platform_driver_register(&twl4030rtc_driver);
533 module_init(twl4030_rtc_init);
535 static void __exit twl4030_rtc_exit(void)
537 platform_driver_unregister(&twl4030rtc_driver);
539 module_exit(twl4030_rtc_exit);
541 MODULE_AUTHOR("Texas Instruments, MontaVista Software");
542 MODULE_LICENSE("GPL");