2 * Copyright (C) 2007-2009 ST-Ericsson AB
3 * License terms: GNU General Public License (GPL) version 2
4 * RTC clock driver for the AB3100 Analog Baseband Chip
5 * Author: Linus Walleij <linus.walleij@stericsson.com>
7 #include <linux/module.h>
8 #include <linux/kernel.h>
9 #include <linux/init.h>
10 #include <linux/platform_device.h>
11 #include <linux/rtc.h>
12 #include <linux/mfd/ab3100.h>
14 /* Clock rate in Hz */
15 #define AB3100_RTC_CLOCK_RATE 32768
18 * The AB3100 RTC registers. These are the same for
21 * Bit 0: RTC Monitor cleared=0, active=1, if you set it
22 * to 1 it remains active until RTC power is lost.
23 * Bit 1: 32 kHz Oscillator, 0 = on, 1 = bypass
24 * Bit 2: Alarm on, 0 = off, 1 = on
25 * Bit 3: 32 kHz buffer disabling, 0 = enabled, 1 = disabled
27 #define AB3100_RTC 0x53
28 /* default setting, buffer disabled, alarm on */
29 #define RTC_SETTING 0x30
30 /* Alarm when AL0-AL3 == TI0-TI3 */
31 #define AB3100_AL0 0x56
32 #define AB3100_AL1 0x57
33 #define AB3100_AL2 0x58
34 #define AB3100_AL3 0x59
35 /* This 48-bit register that counts up at 32768 Hz */
36 #define AB3100_TI0 0x5a
37 #define AB3100_TI1 0x5b
38 #define AB3100_TI2 0x5c
39 #define AB3100_TI3 0x5d
40 #define AB3100_TI4 0x5e
41 #define AB3100_TI5 0x5f
44 * RTC clock functions and device struct declaration
46 static int ab3100_rtc_set_mmss(struct device
*dev
, unsigned long secs
)
48 struct ab3100
*ab3100_data
= dev_get_drvdata(dev
);
49 u8 regs
[] = {AB3100_TI0
, AB3100_TI1
, AB3100_TI2
,
50 AB3100_TI3
, AB3100_TI4
, AB3100_TI5
};
52 u64 fat_time
= (u64
) secs
* AB3100_RTC_CLOCK_RATE
* 2;
56 buf
[0] = (fat_time
) & 0xFF;
57 buf
[1] = (fat_time
>> 8) & 0xFF;
58 buf
[2] = (fat_time
>> 16) & 0xFF;
59 buf
[3] = (fat_time
>> 24) & 0xFF;
60 buf
[4] = (fat_time
>> 32) & 0xFF;
61 buf
[5] = (fat_time
>> 40) & 0xFF;
63 for (i
= 0; i
< 6; i
++) {
64 err
= ab3100_set_register_interruptible(ab3100_data
,
70 /* Set the flag to mark that the clock is now set */
71 return ab3100_mask_and_set_register_interruptible(ab3100_data
,
77 static int ab3100_rtc_read_time(struct device
*dev
, struct rtc_time
*tm
)
79 struct ab3100
*ab3100_data
= dev_get_drvdata(dev
);
84 err
= ab3100_get_register_interruptible(ab3100_data
,
89 if (!(rtcval
& 0x01)) {
90 dev_info(dev
, "clock not set (lost power)");
96 /* Read out time registers */
97 err
= ab3100_get_register_page_interruptible(ab3100_data
,
103 fat_time
= ((u64
) buf
[5] << 40) | ((u64
) buf
[4] << 32) |
104 ((u64
) buf
[3] << 24) | ((u64
) buf
[2] << 16) |
105 ((u64
) buf
[1] << 8) | (u64
) buf
[0];
106 time
= (unsigned long) (fat_time
/
107 (u64
) (AB3100_RTC_CLOCK_RATE
* 2));
110 rtc_time_to_tm(time
, tm
);
112 return rtc_valid_tm(tm
);
115 static int ab3100_rtc_read_alarm(struct device
*dev
, struct rtc_wkalrm
*alarm
)
117 struct ab3100
*ab3100_data
= dev_get_drvdata(dev
);
124 /* Figure out if alarm is enabled or not */
125 err
= ab3100_get_register_interruptible(ab3100_data
,
126 AB3100_RTC
, &rtcval
);
133 /* No idea how this could be represented */
135 /* Read out alarm registers, only 4 bytes */
136 err
= ab3100_get_register_page_interruptible(ab3100_data
,
140 fat_time
= ((u64
) buf
[3] << 40) | ((u64
) buf
[2] << 32) |
141 ((u64
) buf
[1] << 24) | ((u64
) buf
[0] << 16);
142 time
= (unsigned long) (fat_time
/ (u64
) (AB3100_RTC_CLOCK_RATE
* 2));
144 rtc_time_to_tm(time
, &alarm
->time
);
146 return rtc_valid_tm(&alarm
->time
);
149 static int ab3100_rtc_set_alarm(struct device
*dev
, struct rtc_wkalrm
*alarm
)
151 struct ab3100
*ab3100_data
= dev_get_drvdata(dev
);
152 u8 regs
[] = {AB3100_AL0
, AB3100_AL1
, AB3100_AL2
, AB3100_AL3
};
153 unsigned char buf
[4];
159 rtc_tm_to_time(&alarm
->time
, &secs
);
160 fat_time
= (u64
) secs
* AB3100_RTC_CLOCK_RATE
* 2;
161 buf
[0] = (fat_time
>> 16) & 0xFF;
162 buf
[1] = (fat_time
>> 24) & 0xFF;
163 buf
[2] = (fat_time
>> 32) & 0xFF;
164 buf
[3] = (fat_time
>> 40) & 0xFF;
167 for (i
= 0; i
< 4; i
++) {
168 err
= ab3100_set_register_interruptible(ab3100_data
,
173 /* Then enable the alarm */
174 return ab3100_mask_and_set_register_interruptible(ab3100_data
,
175 AB3100_RTC
, ~(1 << 2),
176 alarm
->enabled
<< 2);
179 static int ab3100_rtc_irq_enable(struct device
*dev
, unsigned int enabled
)
181 struct ab3100
*ab3100_data
= dev_get_drvdata(dev
);
184 * It's not possible to enable/disable the alarm IRQ for this RTC.
185 * It does not actually trigger any IRQ: instead its only function is
186 * to power up the system, if it wasn't on. This will manifest as
187 * a "power up cause" in the AB3100 power driver (battery charging etc)
188 * and need to be handled there instead.
191 return ab3100_mask_and_set_register_interruptible(ab3100_data
,
192 AB3100_RTC
, ~(1 << 2),
195 return ab3100_mask_and_set_register_interruptible(ab3100_data
,
196 AB3100_RTC
, ~(1 << 2),
200 static const struct rtc_class_ops ab3100_rtc_ops
= {
201 .read_time
= ab3100_rtc_read_time
,
202 .set_mmss
= ab3100_rtc_set_mmss
,
203 .read_alarm
= ab3100_rtc_read_alarm
,
204 .set_alarm
= ab3100_rtc_set_alarm
,
205 .alarm_irq_enable
= ab3100_rtc_irq_enable
,
208 static int __init
ab3100_rtc_probe(struct platform_device
*pdev
)
212 struct rtc_device
*rtc
;
213 struct ab3100
*ab3100_data
= platform_get_drvdata(pdev
);
215 /* The first RTC register needs special treatment */
216 err
= ab3100_get_register_interruptible(ab3100_data
,
217 AB3100_RTC
, ®val
);
219 dev_err(&pdev
->dev
, "unable to read RTC register\n");
223 if ((regval
& 0xFE) != RTC_SETTING
) {
224 dev_warn(&pdev
->dev
, "not default value in RTC reg 0x%x\n",
228 if ((regval
& 1) == 0) {
230 * Set bit to detect power loss.
231 * This bit remains until RTC power is lost.
233 regval
= 1 | RTC_SETTING
;
234 err
= ab3100_set_register_interruptible(ab3100_data
,
236 /* Ignore any error on this write */
239 rtc
= rtc_device_register("ab3100-rtc", &pdev
->dev
, &ab3100_rtc_ops
,
249 static int __exit
ab3100_rtc_remove(struct platform_device
*pdev
)
251 struct rtc_device
*rtc
= platform_get_drvdata(pdev
);
253 rtc_device_unregister(rtc
);
257 static struct platform_driver ab3100_rtc_driver
= {
259 .name
= "ab3100-rtc",
260 .owner
= THIS_MODULE
,
262 .remove
= __exit_p(ab3100_rtc_remove
),
265 static int __init
ab3100_rtc_init(void)
267 return platform_driver_probe(&ab3100_rtc_driver
,
271 static void __exit
ab3100_rtc_exit(void)
273 platform_driver_unregister(&ab3100_rtc_driver
);
276 module_init(ab3100_rtc_init
);
277 module_exit(ab3100_rtc_exit
);
279 MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>");
280 MODULE_DESCRIPTION("AB3100 RTC Driver");
281 MODULE_LICENSE("GPL");