1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>
30
31#include <linux/i2c/twl.h>
32
33
34
35
36
37enum {
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,
45
46 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,
52
53 REG_RTC_CTRL_REG,
54 REG_RTC_STATUS_REG,
55 REG_RTC_INTERRUPTS_REG,
56
57 REG_RTC_COMP_LSB_REG,
58 REG_RTC_COMP_MSB_REG,
59};
60static const u8 twl4030_rtc_reg_map[] = {
61 [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};
83static const u8 twl6030_rtc_reg_map[] = {
84 [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};
106
107
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
115
116
117#define BIT_RTC_STATUS_REG_RUN_M 0x02
118#define BIT_RTC_STATUS_REG_1S_EVENT_M 0x04
119#define BIT_RTC_STATUS_REG_1M_EVENT_M 0x08
120#define BIT_RTC_STATUS_REG_1H_EVENT_M 0x10
121#define BIT_RTC_STATUS_REG_1D_EVENT_M 0x20
122#define BIT_RTC_STATUS_REG_ALARM_M 0x40
123#define BIT_RTC_STATUS_REG_POWER_UP_M 0x80
124
125
126#define BIT_RTC_INTERRUPTS_REG_EVERY_M 0x03
127#define BIT_RTC_INTERRUPTS_REG_IT_TIMER_M 0x04
128#define BIT_RTC_INTERRUPTS_REG_IT_ALARM_M 0x08
129
130
131
132#define ALL_TIME_REGS 6
133
134
135static u8 *rtc_reg_map;
136
137
138
139
140static int twl_rtc_read_u8(u8 *data, u8 reg)
141{
142 int ret;
143
144 ret = twl_i2c_read_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
145 if (ret < 0)
146 pr_err("twl_rtc: Could not read TWL"
147 "register %X - error %d\n", reg, ret);
148 return ret;
149}
150
151
152
153
154static int twl_rtc_write_u8(u8 data, u8 reg)
155{
156 int ret;
157
158 ret = twl_i2c_write_u8(TWL_MODULE_RTC, data, (rtc_reg_map[reg]));
159 if (ret < 0)
160 pr_err("twl_rtc: Could not write TWL"
161 "register %X - error %d\n", reg, ret);
162 return ret;
163}
164
165
166
167
168
169static unsigned char rtc_irq_bits;
170
171
172
173
174static int set_rtc_irq_bit(unsigned char bit)
175{
176 unsigned char val;
177 int ret;
178
179 val = rtc_irq_bits | bit;
180 val &= ~BIT_RTC_INTERRUPTS_REG_EVERY_M;
181 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
182 if (ret == 0)
183 rtc_irq_bits = val;
184
185 return ret;
186}
187
188
189
190
191static int mask_rtc_irq_bit(unsigned char bit)
192{
193 unsigned char val;
194 int ret;
195
196 val = rtc_irq_bits & ~bit;
197 ret = twl_rtc_write_u8(val, REG_RTC_INTERRUPTS_REG);
198 if (ret == 0)
199 rtc_irq_bits = val;
200
201 return ret;
202}
203
204static int twl_rtc_alarm_irq_enable(struct device *dev, unsigned enabled)
205{
206 int ret;
207
208 if (enabled)
209 ret = set_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
210 else
211 ret = mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
212
213 return ret;
214}
215
216
217
218
219
220
221
222
223
224
225static int twl_rtc_read_time(struct device *dev, struct rtc_time *tm)
226{
227 unsigned char rtc_data[ALL_TIME_REGS + 1];
228 int ret;
229 u8 save_control;
230
231 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
232 if (ret < 0)
233 return ret;
234
235 save_control |= BIT_RTC_CTRL_REG_GET_TIME_M;
236
237 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
238 if (ret < 0)
239 return ret;
240
241 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
242 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
243
244 if (ret < 0) {
245 dev_err(dev, "rtc_read_time error %d\n", ret);
246 return ret;
247 }
248
249 tm->tm_sec = bcd2bin(rtc_data[0]);
250 tm->tm_min = bcd2bin(rtc_data[1]);
251 tm->tm_hour = bcd2bin(rtc_data[2]);
252 tm->tm_mday = bcd2bin(rtc_data[3]);
253 tm->tm_mon = bcd2bin(rtc_data[4]) - 1;
254 tm->tm_year = bcd2bin(rtc_data[5]) + 100;
255
256 return ret;
257}
258
259static int twl_rtc_set_time(struct device *dev, struct rtc_time *tm)
260{
261 unsigned char save_control;
262 unsigned char rtc_data[ALL_TIME_REGS + 1];
263 int ret;
264
265 rtc_data[1] = bin2bcd(tm->tm_sec);
266 rtc_data[2] = bin2bcd(tm->tm_min);
267 rtc_data[3] = bin2bcd(tm->tm_hour);
268 rtc_data[4] = bin2bcd(tm->tm_mday);
269 rtc_data[5] = bin2bcd(tm->tm_mon + 1);
270 rtc_data[6] = bin2bcd(tm->tm_year - 100);
271
272
273 ret = twl_rtc_read_u8(&save_control, REG_RTC_CTRL_REG);
274 if (ret < 0)
275 goto out;
276
277 save_control &= ~BIT_RTC_CTRL_REG_STOP_RTC_M;
278 twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
279 if (ret < 0)
280 goto out;
281
282
283 ret = twl_i2c_write(TWL_MODULE_RTC, rtc_data,
284 (rtc_reg_map[REG_SECONDS_REG]), ALL_TIME_REGS);
285 if (ret < 0) {
286 dev_err(dev, "rtc_set_time error %d\n", ret);
287 goto out;
288 }
289
290
291 save_control |= BIT_RTC_CTRL_REG_STOP_RTC_M;
292 ret = twl_rtc_write_u8(save_control, REG_RTC_CTRL_REG);
293
294out:
295 return ret;
296}
297
298
299
300
301static int twl_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
302{
303 unsigned char rtc_data[ALL_TIME_REGS + 1];
304 int ret;
305
306 ret = twl_i2c_read(TWL_MODULE_RTC, rtc_data,
307 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
308 if (ret < 0) {
309 dev_err(dev, "rtc_read_alarm error %d\n", ret);
310 return ret;
311 }
312
313
314 alm->time.tm_sec = bcd2bin(rtc_data[0]);
315 alm->time.tm_min = bcd2bin(rtc_data[1]);
316 alm->time.tm_hour = bcd2bin(rtc_data[2]);
317 alm->time.tm_mday = bcd2bin(rtc_data[3]);
318 alm->time.tm_mon = bcd2bin(rtc_data[4]) - 1;
319 alm->time.tm_year = bcd2bin(rtc_data[5]) + 100;
320
321
322 if (rtc_irq_bits & BIT_RTC_INTERRUPTS_REG_IT_ALARM_M)
323 alm->enabled = 1;
324
325 return ret;
326}
327
328static int twl_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm)
329{
330 unsigned char alarm_data[ALL_TIME_REGS + 1];
331 int ret;
332
333 ret = twl_rtc_alarm_irq_enable(dev, 0);
334 if (ret)
335 goto out;
336
337 alarm_data[1] = bin2bcd(alm->time.tm_sec);
338 alarm_data[2] = bin2bcd(alm->time.tm_min);
339 alarm_data[3] = bin2bcd(alm->time.tm_hour);
340 alarm_data[4] = bin2bcd(alm->time.tm_mday);
341 alarm_data[5] = bin2bcd(alm->time.tm_mon + 1);
342 alarm_data[6] = bin2bcd(alm->time.tm_year - 100);
343
344
345 ret = twl_i2c_write(TWL_MODULE_RTC, alarm_data,
346 (rtc_reg_map[REG_ALARM_SECONDS_REG]), ALL_TIME_REGS);
347 if (ret) {
348 dev_err(dev, "rtc_set_alarm error %d\n", ret);
349 goto out;
350 }
351
352 if (alm->enabled)
353 ret = twl_rtc_alarm_irq_enable(dev, 1);
354out:
355 return ret;
356}
357
358static irqreturn_t twl_rtc_interrupt(int irq, void *rtc)
359{
360 unsigned long events = 0;
361 int ret = IRQ_NONE;
362 int res;
363 u8 rd_reg;
364
365#ifdef CONFIG_LOCKDEP
366
367
368
369
370 local_irq_enable();
371#endif
372
373 res = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
374 if (res)
375 goto out;
376
377
378
379
380
381
382 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
383 events |= RTC_IRQF | RTC_AF;
384 else
385 events |= RTC_IRQF | RTC_UF;
386
387 res = twl_rtc_write_u8(rd_reg | BIT_RTC_STATUS_REG_ALARM_M,
388 REG_RTC_STATUS_REG);
389 if (res)
390 goto out;
391
392 if (twl_class_is_4030()) {
393
394
395
396
397
398
399
400
401
402
403
404 res = twl_i2c_read_u8(TWL4030_MODULE_INT,
405 &rd_reg, TWL4030_INT_PWR_ISR1);
406 if (res)
407 goto out;
408 }
409
410
411 rtc_update_irq(rtc, 1, events);
412
413 ret = IRQ_HANDLED;
414out:
415 return ret;
416}
417
418static struct rtc_class_ops twl_rtc_ops = {
419 .read_time = twl_rtc_read_time,
420 .set_time = twl_rtc_set_time,
421 .read_alarm = twl_rtc_read_alarm,
422 .set_alarm = twl_rtc_set_alarm,
423 .alarm_irq_enable = twl_rtc_alarm_irq_enable,
424};
425
426
427
428static int __devinit twl_rtc_probe(struct platform_device *pdev)
429{
430 struct rtc_device *rtc;
431 int ret = 0;
432 int irq = platform_get_irq(pdev, 0);
433 u8 rd_reg;
434
435 if (irq <= 0)
436 return -EINVAL;
437
438 rtc = rtc_device_register(pdev->name,
439 &pdev->dev, &twl_rtc_ops, THIS_MODULE);
440 if (IS_ERR(rtc)) {
441 ret = PTR_ERR(rtc);
442 dev_err(&pdev->dev, "can't register RTC device, err %ld\n",
443 PTR_ERR(rtc));
444 goto out0;
445
446 }
447
448 platform_set_drvdata(pdev, rtc);
449
450 ret = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG);
451 if (ret < 0)
452 goto out1;
453
454 if (rd_reg & BIT_RTC_STATUS_REG_POWER_UP_M)
455 dev_warn(&pdev->dev, "Power up reset detected.\n");
456
457 if (rd_reg & BIT_RTC_STATUS_REG_ALARM_M)
458 dev_warn(&pdev->dev, "Pending Alarm interrupt detected.\n");
459
460
461 ret = twl_rtc_write_u8(rd_reg, REG_RTC_STATUS_REG);
462 if (ret < 0)
463 goto out1;
464
465 ret = request_irq(irq, twl_rtc_interrupt,
466 IRQF_TRIGGER_RISING,
467 dev_name(&rtc->dev), rtc);
468 if (ret < 0) {
469 dev_err(&pdev->dev, "IRQ is not free.\n");
470 goto out1;
471 }
472
473 if (twl_class_is_6030()) {
474 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
475 REG_INT_MSK_LINE_A);
476 twl6030_interrupt_unmask(TWL6030_RTC_INT_MASK,
477 REG_INT_MSK_STS_A);
478 }
479
480
481 ret = twl_rtc_read_u8(&rd_reg, REG_RTC_CTRL_REG);
482 if (ret < 0)
483 goto out2;
484
485 if (!(rd_reg & BIT_RTC_CTRL_REG_STOP_RTC_M)) {
486 dev_info(&pdev->dev, "Enabling TWL-RTC.\n");
487 rd_reg = BIT_RTC_CTRL_REG_STOP_RTC_M;
488 ret = twl_rtc_write_u8(rd_reg, REG_RTC_CTRL_REG);
489 if (ret < 0)
490 goto out2;
491 }
492
493
494 ret = twl_rtc_read_u8(&rtc_irq_bits, REG_RTC_INTERRUPTS_REG);
495 if (ret < 0)
496 goto out2;
497
498 return ret;
499
500out2:
501 free_irq(irq, rtc);
502out1:
503 rtc_device_unregister(rtc);
504out0:
505 return ret;
506}
507
508
509
510
511
512static int __devexit twl_rtc_remove(struct platform_device *pdev)
513{
514
515 struct rtc_device *rtc = platform_get_drvdata(pdev);
516 int irq = platform_get_irq(pdev, 0);
517
518 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
519 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
520 if (twl_class_is_6030()) {
521 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
522 REG_INT_MSK_LINE_A);
523 twl6030_interrupt_mask(TWL6030_RTC_INT_MASK,
524 REG_INT_MSK_STS_A);
525 }
526
527
528 free_irq(irq, rtc);
529
530 rtc_device_unregister(rtc);
531 platform_set_drvdata(pdev, NULL);
532 return 0;
533}
534
535static void twl_rtc_shutdown(struct platform_device *pdev)
536{
537
538
539 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
540}
541
542#ifdef CONFIG_PM
543
544static unsigned char irqstat;
545
546static int twl_rtc_suspend(struct platform_device *pdev, pm_message_t state)
547{
548 irqstat = rtc_irq_bits;
549
550 mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
551 return 0;
552}
553
554static int twl_rtc_resume(struct platform_device *pdev)
555{
556 set_rtc_irq_bit(irqstat);
557 return 0;
558}
559
560#else
561#define twl_rtc_suspend NULL
562#define twl_rtc_resume NULL
563#endif
564
565MODULE_ALIAS("platform:twl_rtc");
566
567static struct platform_driver twl4030rtc_driver = {
568 .probe = twl_rtc_probe,
569 .remove = __devexit_p(twl_rtc_remove),
570 .shutdown = twl_rtc_shutdown,
571 .suspend = twl_rtc_suspend,
572 .resume = twl_rtc_resume,
573 .driver = {
574 .owner = THIS_MODULE,
575 .name = "twl_rtc",
576 },
577};
578
579static int __init twl_rtc_init(void)
580{
581 if (twl_class_is_4030())
582 rtc_reg_map = (u8 *) twl4030_rtc_reg_map;
583 else
584 rtc_reg_map = (u8 *) twl6030_rtc_reg_map;
585
586 return platform_driver_register(&twl4030rtc_driver);
587}
588module_init(twl_rtc_init);
589
590static void __exit twl_rtc_exit(void)
591{
592 platform_driver_unregister(&twl4030rtc_driver);
593}
594module_exit(twl_rtc_exit);
595
596MODULE_AUTHOR("Texas Instruments, MontaVista Software");
597MODULE_LICENSE("GPL");
598