blob: 1a57e03e169dd7e0e672867410ccdf9c277ed204 [file] [log] [blame]
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -07001/*
2 * Copyright (C) ST-Ericsson SA 2010
3 *
4 * License terms: GNU General Public License (GPL) version 2
5 * Author: Virupax Sadashivpetimath <virupax.sadashivpetimath@stericsson.com>
6 *
7 * RTC clock driver for the RTC part of the AB8500 Power management chip.
8 * Based on RTC clock driver for the AB3100 Analog Baseband Chip by
9 * Linus Walleij <linus.walleij@stericsson.com>
10 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/platform_device.h>
16#include <linux/rtc.h>
Mattias Wallin47c16972010-09-10 17:47:56 +020017#include <linux/mfd/abx500.h>
Linus Walleijee66e652011-12-02 14:16:33 +010018#include <linux/mfd/abx500/ab8500.h>
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070019#include <linux/delay.h>
Lee Jonesad49fcb2012-07-11 14:02:17 -070020#include <linux/of.h>
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070021
Mattias Wallin47c16972010-09-10 17:47:56 +020022#define AB8500_RTC_SOFF_STAT_REG 0x00
23#define AB8500_RTC_CC_CONF_REG 0x01
24#define AB8500_RTC_READ_REQ_REG 0x02
25#define AB8500_RTC_WATCH_TSECMID_REG 0x03
26#define AB8500_RTC_WATCH_TSECHI_REG 0x04
27#define AB8500_RTC_WATCH_TMIN_LOW_REG 0x05
28#define AB8500_RTC_WATCH_TMIN_MID_REG 0x06
29#define AB8500_RTC_WATCH_TMIN_HI_REG 0x07
30#define AB8500_RTC_ALRM_MIN_LOW_REG 0x08
31#define AB8500_RTC_ALRM_MIN_MID_REG 0x09
32#define AB8500_RTC_ALRM_MIN_HI_REG 0x0A
33#define AB8500_RTC_STAT_REG 0x0B
34#define AB8500_RTC_BKUP_CHG_REG 0x0C
35#define AB8500_RTC_FORCE_BKUP_REG 0x0D
36#define AB8500_RTC_CALIB_REG 0x0E
37#define AB8500_RTC_SWITCH_STAT_REG 0x0F
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070038
39/* RtcReadRequest bits */
40#define RTC_READ_REQUEST 0x01
41#define RTC_WRITE_REQUEST 0x02
42
43/* RtcCtrl bits */
44#define RTC_ALARM_ENA 0x04
45#define RTC_STATUS_DATA 0x01
46
47#define COUNTS_PER_SEC (0xF000 / 60)
48#define AB8500_RTC_EPOCH 2000
49
Mattias Wallin47c16972010-09-10 17:47:56 +020050static const u8 ab8500_rtc_time_regs[] = {
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070051 AB8500_RTC_WATCH_TMIN_HI_REG, AB8500_RTC_WATCH_TMIN_MID_REG,
52 AB8500_RTC_WATCH_TMIN_LOW_REG, AB8500_RTC_WATCH_TSECHI_REG,
53 AB8500_RTC_WATCH_TSECMID_REG
54};
55
Mattias Wallin47c16972010-09-10 17:47:56 +020056static const u8 ab8500_rtc_alarm_regs[] = {
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070057 AB8500_RTC_ALRM_MIN_HI_REG, AB8500_RTC_ALRM_MIN_MID_REG,
58 AB8500_RTC_ALRM_MIN_LOW_REG
59};
60
61/* Calculate the seconds from 1970 to 01-01-2000 00:00:00 */
62static unsigned long get_elapsed_seconds(int year)
63{
64 unsigned long secs;
65 struct rtc_time tm = {
66 .tm_year = year - 1900,
67 .tm_mday = 1,
68 };
69
70 /*
71 * This function calculates secs from 1970 and not from
72 * 1900, even if we supply the offset from year 1900.
73 */
74 rtc_tm_to_time(&tm, &secs);
75 return secs;
76}
77
78static int ab8500_rtc_read_time(struct device *dev, struct rtc_time *tm)
79{
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070080 unsigned long timeout = jiffies + HZ;
81 int retval, i;
82 unsigned long mins, secs;
83 unsigned char buf[ARRAY_SIZE(ab8500_rtc_time_regs)];
Mattias Wallin47c16972010-09-10 17:47:56 +020084 u8 value;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070085
86 /* Request a data read */
Mattias Wallin47c16972010-09-10 17:47:56 +020087 retval = abx500_set_register_interruptible(dev,
88 AB8500_RTC, AB8500_RTC_READ_REQ_REG, RTC_READ_REQUEST);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070089 if (retval < 0)
90 return retval;
91
92 /* Early AB8500 chips will not clear the rtc read request bit */
Mattias Wallin47c16972010-09-10 17:47:56 +020093 if (abx500_get_chip_id(dev) == 0) {
Linus Walleij012e52e2012-01-10 15:10:41 -080094 usleep_range(1000, 1000);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -070095 } else {
96 /* Wait for some cycles after enabling the rtc read in ab8500 */
97 while (time_before(jiffies, timeout)) {
Mattias Wallin47c16972010-09-10 17:47:56 +020098 retval = abx500_get_register_interruptible(dev,
99 AB8500_RTC, AB8500_RTC_READ_REQ_REG, &value);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700100 if (retval < 0)
101 return retval;
102
Mattias Wallin47c16972010-09-10 17:47:56 +0200103 if (!(value & RTC_READ_REQUEST))
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700104 break;
105
Linus Walleij012e52e2012-01-10 15:10:41 -0800106 usleep_range(1000, 5000);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700107 }
108 }
109
110 /* Read the Watchtime registers */
111 for (i = 0; i < ARRAY_SIZE(ab8500_rtc_time_regs); i++) {
Mattias Wallin47c16972010-09-10 17:47:56 +0200112 retval = abx500_get_register_interruptible(dev,
113 AB8500_RTC, ab8500_rtc_time_regs[i], &value);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700114 if (retval < 0)
115 return retval;
Mattias Wallin47c16972010-09-10 17:47:56 +0200116 buf[i] = value;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700117 }
118
119 mins = (buf[0] << 16) | (buf[1] << 8) | buf[2];
120
121 secs = (buf[3] << 8) | buf[4];
122 secs = secs / COUNTS_PER_SEC;
123 secs = secs + (mins * 60);
124
125 /* Add back the initially subtracted number of seconds */
126 secs += get_elapsed_seconds(AB8500_RTC_EPOCH);
127
128 rtc_time_to_tm(secs, tm);
129 return rtc_valid_tm(tm);
130}
131
132static int ab8500_rtc_set_time(struct device *dev, struct rtc_time *tm)
133{
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700134 int retval, i;
135 unsigned char buf[ARRAY_SIZE(ab8500_rtc_time_regs)];
136 unsigned long no_secs, no_mins, secs = 0;
137
138 if (tm->tm_year < (AB8500_RTC_EPOCH - 1900)) {
139 dev_dbg(dev, "year should be equal to or greater than %d\n",
140 AB8500_RTC_EPOCH);
141 return -EINVAL;
142 }
143
144 /* Get the number of seconds since 1970 */
145 rtc_tm_to_time(tm, &secs);
146
147 /*
148 * Convert it to the number of seconds since 01-01-2000 00:00:00, since
149 * we only have a small counter in the RTC.
150 */
151 secs -= get_elapsed_seconds(AB8500_RTC_EPOCH);
152
153 no_mins = secs / 60;
154
155 no_secs = secs % 60;
156 /* Make the seconds count as per the RTC resolution */
157 no_secs = no_secs * COUNTS_PER_SEC;
158
159 buf[4] = no_secs & 0xFF;
160 buf[3] = (no_secs >> 8) & 0xFF;
161
162 buf[2] = no_mins & 0xFF;
163 buf[1] = (no_mins >> 8) & 0xFF;
164 buf[0] = (no_mins >> 16) & 0xFF;
165
166 for (i = 0; i < ARRAY_SIZE(ab8500_rtc_time_regs); i++) {
Mattias Wallin47c16972010-09-10 17:47:56 +0200167 retval = abx500_set_register_interruptible(dev, AB8500_RTC,
168 ab8500_rtc_time_regs[i], buf[i]);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700169 if (retval < 0)
170 return retval;
171 }
172
173 /* Request a data write */
Mattias Wallin47c16972010-09-10 17:47:56 +0200174 return abx500_set_register_interruptible(dev, AB8500_RTC,
175 AB8500_RTC_READ_REQ_REG, RTC_WRITE_REQUEST);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700176}
177
178static int ab8500_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
179{
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700180 int retval, i;
Mattias Wallin47c16972010-09-10 17:47:56 +0200181 u8 rtc_ctrl, value;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700182 unsigned char buf[ARRAY_SIZE(ab8500_rtc_alarm_regs)];
183 unsigned long secs, mins;
184
185 /* Check if the alarm is enabled or not */
Mattias Wallin47c16972010-09-10 17:47:56 +0200186 retval = abx500_get_register_interruptible(dev, AB8500_RTC,
187 AB8500_RTC_STAT_REG, &rtc_ctrl);
188 if (retval < 0)
189 return retval;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700190
191 if (rtc_ctrl & RTC_ALARM_ENA)
192 alarm->enabled = 1;
193 else
194 alarm->enabled = 0;
195
196 alarm->pending = 0;
197
198 for (i = 0; i < ARRAY_SIZE(ab8500_rtc_alarm_regs); i++) {
Mattias Wallin47c16972010-09-10 17:47:56 +0200199 retval = abx500_get_register_interruptible(dev, AB8500_RTC,
200 ab8500_rtc_alarm_regs[i], &value);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700201 if (retval < 0)
202 return retval;
Mattias Wallin47c16972010-09-10 17:47:56 +0200203 buf[i] = value;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700204 }
205
206 mins = (buf[0] << 16) | (buf[1] << 8) | (buf[2]);
207 secs = mins * 60;
208
209 /* Add back the initially subtracted number of seconds */
210 secs += get_elapsed_seconds(AB8500_RTC_EPOCH);
211
212 rtc_time_to_tm(secs, &alarm->time);
213
214 return rtc_valid_tm(&alarm->time);
215}
216
217static int ab8500_rtc_irq_enable(struct device *dev, unsigned int enabled)
218{
Mattias Wallin47c16972010-09-10 17:47:56 +0200219 return abx500_mask_and_set_register_interruptible(dev, AB8500_RTC,
220 AB8500_RTC_STAT_REG, RTC_ALARM_ENA,
221 enabled ? RTC_ALARM_ENA : 0);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700222}
223
224static int ab8500_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alarm)
225{
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700226 int retval, i;
227 unsigned char buf[ARRAY_SIZE(ab8500_rtc_alarm_regs)];
Ramesh Chandrasekarandc43d4a2012-07-30 14:41:41 -0700228 unsigned long mins, secs = 0, cursec = 0;
229 struct rtc_time curtm;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700230
231 if (alarm->time.tm_year < (AB8500_RTC_EPOCH - 1900)) {
232 dev_dbg(dev, "year should be equal to or greater than %d\n",
233 AB8500_RTC_EPOCH);
234 return -EINVAL;
235 }
236
237 /* Get the number of seconds since 1970 */
238 rtc_tm_to_time(&alarm->time, &secs);
239
240 /*
Ramesh Chandrasekarandc43d4a2012-07-30 14:41:41 -0700241 * Check whether alarm is set less than 1min.
242 * Since our RTC doesn't support alarm resolution less than 1min,
243 * return -EINVAL, so UIE EMUL can take it up, incase of UIE_ON
244 */
245 ab8500_rtc_read_time(dev, &curtm); /* Read current time */
246 rtc_tm_to_time(&curtm, &cursec);
247 if ((secs - cursec) < 59) {
248 dev_dbg(dev, "Alarm less than 1 minute not supported\r\n");
249 return -EINVAL;
250 }
251
252 /*
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700253 * Convert it to the number of seconds since 01-01-2000 00:00:00, since
254 * we only have a small counter in the RTC.
255 */
256 secs -= get_elapsed_seconds(AB8500_RTC_EPOCH);
257
258 mins = secs / 60;
259
260 buf[2] = mins & 0xFF;
261 buf[1] = (mins >> 8) & 0xFF;
262 buf[0] = (mins >> 16) & 0xFF;
263
264 /* Set the alarm time */
265 for (i = 0; i < ARRAY_SIZE(ab8500_rtc_alarm_regs); i++) {
Mattias Wallin47c16972010-09-10 17:47:56 +0200266 retval = abx500_set_register_interruptible(dev, AB8500_RTC,
267 ab8500_rtc_alarm_regs[i], buf[i]);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700268 if (retval < 0)
269 return retval;
270 }
271
272 return ab8500_rtc_irq_enable(dev, alarm->enabled);
273}
274
Mark Godfreydda367a2012-01-10 15:10:42 -0800275
276static int ab8500_rtc_set_calibration(struct device *dev, int calibration)
277{
278 int retval;
279 u8 rtccal = 0;
280
281 /*
282 * Check that the calibration value (which is in units of 0.5
283 * parts-per-million) is in the AB8500's range for RtcCalibration
284 * register. -128 (0x80) is not permitted because the AB8500 uses
285 * a sign-bit rather than two's complement, so 0x80 is just another
286 * representation of zero.
287 */
288 if ((calibration < -127) || (calibration > 127)) {
289 dev_err(dev, "RtcCalibration value outside permitted range\n");
290 return -EINVAL;
291 }
292
293 /*
294 * The AB8500 uses sign (in bit7) and magnitude (in bits0-7)
295 * so need to convert to this sort of representation before writing
296 * into RtcCalibration register...
297 */
298 if (calibration >= 0)
299 rtccal = 0x7F & calibration;
300 else
301 rtccal = ~(calibration - 1) | 0x80;
302
303 retval = abx500_set_register_interruptible(dev, AB8500_RTC,
304 AB8500_RTC_CALIB_REG, rtccal);
305
306 return retval;
307}
308
309static int ab8500_rtc_get_calibration(struct device *dev, int *calibration)
310{
311 int retval;
312 u8 rtccal = 0;
313
314 retval = abx500_get_register_interruptible(dev, AB8500_RTC,
315 AB8500_RTC_CALIB_REG, &rtccal);
316 if (retval >= 0) {
317 /*
318 * The AB8500 uses sign (in bit7) and magnitude (in bits0-7)
319 * so need to convert value from RtcCalibration register into
320 * a two's complement signed value...
321 */
322 if (rtccal & 0x80)
323 *calibration = 0 - (rtccal & 0x7F);
324 else
325 *calibration = 0x7F & rtccal;
326 }
327
328 return retval;
329}
330
331static ssize_t ab8500_sysfs_store_rtc_calibration(struct device *dev,
332 struct device_attribute *attr,
333 const char *buf, size_t count)
334{
335 int retval;
336 int calibration = 0;
337
338 if (sscanf(buf, " %i ", &calibration) != 1) {
339 dev_err(dev, "Failed to store RTC calibration attribute\n");
340 return -EINVAL;
341 }
342
343 retval = ab8500_rtc_set_calibration(dev, calibration);
344
345 return retval ? retval : count;
346}
347
348static ssize_t ab8500_sysfs_show_rtc_calibration(struct device *dev,
349 struct device_attribute *attr, char *buf)
350{
351 int retval = 0;
352 int calibration = 0;
353
354 retval = ab8500_rtc_get_calibration(dev, &calibration);
355 if (retval < 0) {
356 dev_err(dev, "Failed to read RTC calibration attribute\n");
357 sprintf(buf, "0\n");
358 return retval;
359 }
360
361 return sprintf(buf, "%d\n", calibration);
362}
363
364static DEVICE_ATTR(rtc_calibration, S_IRUGO | S_IWUSR,
365 ab8500_sysfs_show_rtc_calibration,
366 ab8500_sysfs_store_rtc_calibration);
367
368static int ab8500_sysfs_rtc_register(struct device *dev)
369{
370 return device_create_file(dev, &dev_attr_rtc_calibration);
371}
372
373static void ab8500_sysfs_rtc_unregister(struct device *dev)
374{
375 device_remove_file(dev, &dev_attr_rtc_calibration);
376}
377
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700378static irqreturn_t rtc_alarm_handler(int irq, void *data)
379{
380 struct rtc_device *rtc = data;
381 unsigned long events = RTC_IRQF | RTC_AF;
382
383 dev_dbg(&rtc->dev, "%s\n", __func__);
384 rtc_update_irq(rtc, 1, events);
385
386 return IRQ_HANDLED;
387}
388
389static const struct rtc_class_ops ab8500_rtc_ops = {
390 .read_time = ab8500_rtc_read_time,
391 .set_time = ab8500_rtc_set_time,
392 .read_alarm = ab8500_rtc_read_alarm,
393 .set_alarm = ab8500_rtc_set_alarm,
394 .alarm_irq_enable = ab8500_rtc_irq_enable,
395};
396
397static int __devinit ab8500_rtc_probe(struct platform_device *pdev)
398{
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700399 int err;
400 struct rtc_device *rtc;
Mattias Wallin47c16972010-09-10 17:47:56 +0200401 u8 rtc_ctrl;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700402 int irq;
403
404 irq = platform_get_irq_byname(pdev, "ALARM");
405 if (irq < 0)
406 return irq;
407
408 /* For RTC supply test */
Mattias Wallin47c16972010-09-10 17:47:56 +0200409 err = abx500_mask_and_set_register_interruptible(&pdev->dev, AB8500_RTC,
410 AB8500_RTC_STAT_REG, RTC_STATUS_DATA, RTC_STATUS_DATA);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700411 if (err < 0)
412 return err;
413
414 /* Wait for reset by the PorRtc */
Linus Walleij012e52e2012-01-10 15:10:41 -0800415 usleep_range(1000, 5000);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700416
Mattias Wallin47c16972010-09-10 17:47:56 +0200417 err = abx500_get_register_interruptible(&pdev->dev, AB8500_RTC,
418 AB8500_RTC_STAT_REG, &rtc_ctrl);
419 if (err < 0)
420 return err;
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700421
422 /* Check if the RTC Supply fails */
423 if (!(rtc_ctrl & RTC_STATUS_DATA)) {
424 dev_err(&pdev->dev, "RTC supply failure\n");
425 return -ENODEV;
426 }
427
Andrew Lynnb62581e2012-01-10 15:10:38 -0800428 device_init_wakeup(&pdev->dev, true);
429
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700430 rtc = rtc_device_register("ab8500-rtc", &pdev->dev, &ab8500_rtc_ops,
431 THIS_MODULE);
432 if (IS_ERR(rtc)) {
433 dev_err(&pdev->dev, "Registration failed\n");
434 err = PTR_ERR(rtc);
435 return err;
436 }
437
Robert Marklund10d065e2012-01-10 15:10:35 -0800438 err = request_threaded_irq(irq, NULL, rtc_alarm_handler,
Lee Jones3cfd16a2012-07-11 14:02:16 -0700439 IRQF_NO_SUSPEND | IRQF_ONESHOT, "ab8500-rtc", rtc);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700440 if (err < 0) {
441 rtc_device_unregister(rtc);
442 return err;
443 }
444
445 platform_set_drvdata(pdev, rtc);
446
Mark Godfreydda367a2012-01-10 15:10:42 -0800447 err = ab8500_sysfs_rtc_register(&pdev->dev);
448 if (err) {
449 dev_err(&pdev->dev, "sysfs RTC failed to register\n");
450 return err;
451 }
452
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700453 return 0;
454}
455
456static int __devexit ab8500_rtc_remove(struct platform_device *pdev)
457{
458 struct rtc_device *rtc = platform_get_drvdata(pdev);
459 int irq = platform_get_irq_byname(pdev, "ALARM");
460
Mark Godfreydda367a2012-01-10 15:10:42 -0800461 ab8500_sysfs_rtc_unregister(&pdev->dev);
462
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700463 free_irq(irq, rtc);
464 rtc_device_unregister(rtc);
465 platform_set_drvdata(pdev, NULL);
466
467 return 0;
468}
469
Lee Jonesad49fcb2012-07-11 14:02:17 -0700470static const struct of_device_id ab8500_rtc_match[] = {
471 { .compatible = "stericsson,ab8500-rtc", },
472 {}
473};
474
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700475static struct platform_driver ab8500_rtc_driver = {
476 .driver = {
477 .name = "ab8500-rtc",
478 .owner = THIS_MODULE,
Lee Jonesad49fcb2012-07-11 14:02:17 -0700479 .of_match_table = ab8500_rtc_match,
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700480 },
481 .probe = ab8500_rtc_probe,
482 .remove = __devexit_p(ab8500_rtc_remove),
483};
484
Axel Lin0c4eae62012-01-10 15:10:48 -0800485module_platform_driver(ab8500_rtc_driver);
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700486
Virupax Sadashivpetimath0af62f42010-05-26 14:42:14 -0700487MODULE_AUTHOR("Virupax Sadashivpetimath <virupax.sadashivpetimath@stericsson.com>");
488MODULE_DESCRIPTION("AB8500 RTC Driver");
489MODULE_LICENSE("GPL v2");