blob: 413ae05379156751df8773ad70821c6af2254cfe [file] [log] [blame]
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08001/*
2 * RTC subsystem, interface functions
3 *
4 * Copyright (C) 2005 Tower Technologies
5 * Author: Alessandro Zummo <a.zummo@towertech.it>
6 *
7 * based on arch/arm/common/rtctime.c
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12*/
13
14#include <linux/rtc.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040015#include <linux/sched.h>
David Brownell97144c62007-10-16 01:28:16 -070016#include <linux/log2.h>
John Stultz6610e082010-09-23 15:07:34 -070017#include <linux/workqueue.h>
18
John Stultzaa0be0f2011-01-20 15:26:12 -080019static int rtc_timer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer);
20static void rtc_timer_remove(struct rtc_device *rtc, struct rtc_timer *timer);
21
John Stultz6610e082010-09-23 15:07:34 -070022static int __rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm)
23{
24 int err;
25 if (!rtc->ops)
26 err = -ENODEV;
27 else if (!rtc->ops->read_time)
28 err = -EINVAL;
29 else {
30 memset(tm, 0, sizeof(struct rtc_time));
31 err = rtc->ops->read_time(rtc->dev.parent, tm);
32 }
33 return err;
34}
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080035
David Brownellab6a2d72007-05-08 00:33:30 -070036int rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080037{
38 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080039
40 err = mutex_lock_interruptible(&rtc->ops_lock);
41 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070042 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080043
John Stultz6610e082010-09-23 15:07:34 -070044 err = __rtc_read_time(rtc, tm);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080045 mutex_unlock(&rtc->ops_lock);
46 return err;
47}
48EXPORT_SYMBOL_GPL(rtc_read_time);
49
David Brownellab6a2d72007-05-08 00:33:30 -070050int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080051{
52 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080053
54 err = rtc_valid_tm(tm);
55 if (err != 0)
56 return err;
57
58 err = mutex_lock_interruptible(&rtc->ops_lock);
59 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070060 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080061
62 if (!rtc->ops)
63 err = -ENODEV;
Alessandro Zummobbccf832009-01-06 14:42:21 -080064 else if (rtc->ops->set_time)
David Brownellcd966202007-05-08 00:33:40 -070065 err = rtc->ops->set_time(rtc->dev.parent, tm);
Alessandro Zummobbccf832009-01-06 14:42:21 -080066 else if (rtc->ops->set_mmss) {
67 unsigned long secs;
68 err = rtc_tm_to_time(tm, &secs);
69 if (err == 0)
70 err = rtc->ops->set_mmss(rtc->dev.parent, secs);
71 } else
72 err = -EINVAL;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080073
74 mutex_unlock(&rtc->ops_lock);
75 return err;
76}
77EXPORT_SYMBOL_GPL(rtc_set_time);
78
David Brownellab6a2d72007-05-08 00:33:30 -070079int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080080{
81 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080082
83 err = mutex_lock_interruptible(&rtc->ops_lock);
84 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070085 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080086
87 if (!rtc->ops)
88 err = -ENODEV;
89 else if (rtc->ops->set_mmss)
David Brownellcd966202007-05-08 00:33:40 -070090 err = rtc->ops->set_mmss(rtc->dev.parent, secs);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080091 else if (rtc->ops->read_time && rtc->ops->set_time) {
92 struct rtc_time new, old;
93
David Brownellcd966202007-05-08 00:33:40 -070094 err = rtc->ops->read_time(rtc->dev.parent, &old);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080095 if (err == 0) {
96 rtc_time_to_tm(secs, &new);
97
98 /*
99 * avoid writing when we're going to change the day of
100 * the month. We will retry in the next minute. This
101 * basically means that if the RTC must not drift
102 * by more than 1 minute in 11 minutes.
103 */
104 if (!((old.tm_hour == 23 && old.tm_min == 59) ||
105 (new.tm_hour == 23 && new.tm_min == 59)))
David Brownellcd966202007-05-08 00:33:40 -0700106 err = rtc->ops->set_time(rtc->dev.parent,
David Brownellab6a2d72007-05-08 00:33:30 -0700107 &new);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800108 }
109 }
110 else
111 err = -EINVAL;
112
113 mutex_unlock(&rtc->ops_lock);
114
115 return err;
116}
117EXPORT_SYMBOL_GPL(rtc_set_mmss);
118
John Stultz6610e082010-09-23 15:07:34 -0700119int rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800120{
121 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800122
123 err = mutex_lock_interruptible(&rtc->ops_lock);
124 if (err)
David Brownellb68bb262008-07-29 22:33:30 -0700125 return err;
John Stultzd5553a52011-01-20 15:26:13 -0800126 if (rtc->ops == NULL)
127 err = -ENODEV;
128 else if (!rtc->ops->read_alarm)
129 err = -EINVAL;
130 else {
131 memset(alarm, 0, sizeof(struct rtc_wkalrm));
132 alarm->enabled = rtc->aie_timer.enabled;
John Stultz6610e082010-09-23 15:07:34 -0700133 alarm->time = rtc_ktime_to_tm(rtc->aie_timer.node.expires);
John Stultzd5553a52011-01-20 15:26:13 -0800134 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800135 mutex_unlock(&rtc->ops_lock);
Mark Lord0e36a9a2007-10-16 01:28:21 -0700136
John Stultzd5553a52011-01-20 15:26:13 -0800137 return err;
Mark Lord0e36a9a2007-10-16 01:28:21 -0700138}
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800139EXPORT_SYMBOL_GPL(rtc_read_alarm);
140
John Stultz6610e082010-09-23 15:07:34 -0700141int __rtc_set_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
142{
143 struct rtc_time tm;
144 long now, scheduled;
145 int err;
146
147 err = rtc_valid_tm(&alarm->time);
148 if (err)
149 return err;
150 rtc_tm_to_time(&alarm->time, &scheduled);
151
152 /* Make sure we're not setting alarms in the past */
153 err = __rtc_read_time(rtc, &tm);
154 rtc_tm_to_time(&tm, &now);
155 if (scheduled <= now)
156 return -ETIME;
157 /*
158 * XXX - We just checked to make sure the alarm time is not
159 * in the past, but there is still a race window where if
160 * the is alarm set for the next second and the second ticks
161 * over right here, before we set the alarm.
162 */
163
164 if (!rtc->ops)
165 err = -ENODEV;
166 else if (!rtc->ops->set_alarm)
167 err = -EINVAL;
168 else
169 err = rtc->ops->set_alarm(rtc->dev.parent, alarm);
170
171 return err;
172}
173
David Brownellab6a2d72007-05-08 00:33:30 -0700174int rtc_set_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800175{
176 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800177
David Brownellf8245c22007-05-08 00:34:07 -0700178 err = rtc_valid_tm(&alarm->time);
179 if (err != 0)
180 return err;
181
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800182 err = mutex_lock_interruptible(&rtc->ops_lock);
183 if (err)
David Brownellb68bb262008-07-29 22:33:30 -0700184 return err;
John Stultz6610e082010-09-23 15:07:34 -0700185 if (rtc->aie_timer.enabled) {
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100186 rtc_timer_remove(rtc, &rtc->aie_timer);
John Stultz6610e082010-09-23 15:07:34 -0700187 }
188 rtc->aie_timer.node.expires = rtc_tm_to_ktime(alarm->time);
189 rtc->aie_timer.period = ktime_set(0, 0);
190 if (alarm->enabled) {
John Stultzaa0be0f2011-01-20 15:26:12 -0800191 err = rtc_timer_enqueue(rtc, &rtc->aie_timer);
John Stultz6610e082010-09-23 15:07:34 -0700192 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800193 mutex_unlock(&rtc->ops_lock);
John Stultzaa0be0f2011-01-20 15:26:12 -0800194 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800195}
196EXPORT_SYMBOL_GPL(rtc_set_alarm);
197
Alessandro Zummo099e6572009-01-04 12:00:54 -0800198int rtc_alarm_irq_enable(struct rtc_device *rtc, unsigned int enabled)
199{
200 int err = mutex_lock_interruptible(&rtc->ops_lock);
201 if (err)
202 return err;
203
John Stultz6610e082010-09-23 15:07:34 -0700204 if (rtc->aie_timer.enabled != enabled) {
John Stultzaa0be0f2011-01-20 15:26:12 -0800205 if (enabled)
206 err = rtc_timer_enqueue(rtc, &rtc->aie_timer);
207 else
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100208 rtc_timer_remove(rtc, &rtc->aie_timer);
John Stultz6610e082010-09-23 15:07:34 -0700209 }
210
John Stultzaa0be0f2011-01-20 15:26:12 -0800211 if (err)
Uwe Kleine-König516373b2011-02-14 11:33:17 +0100212 /* nothing */;
213 else if (!rtc->ops)
Alessandro Zummo099e6572009-01-04 12:00:54 -0800214 err = -ENODEV;
215 else if (!rtc->ops->alarm_irq_enable)
216 err = -EINVAL;
217 else
218 err = rtc->ops->alarm_irq_enable(rtc->dev.parent, enabled);
219
220 mutex_unlock(&rtc->ops_lock);
221 return err;
222}
223EXPORT_SYMBOL_GPL(rtc_alarm_irq_enable);
224
225int rtc_update_irq_enable(struct rtc_device *rtc, unsigned int enabled)
226{
227 int err = mutex_lock_interruptible(&rtc->ops_lock);
228 if (err)
229 return err;
230
John Stultz6610e082010-09-23 15:07:34 -0700231 /* make sure we're changing state */
232 if (rtc->uie_rtctimer.enabled == enabled)
233 goto out;
234
235 if (enabled) {
236 struct rtc_time tm;
237 ktime_t now, onesec;
238
239 __rtc_read_time(rtc, &tm);
240 onesec = ktime_set(1, 0);
241 now = rtc_tm_to_ktime(tm);
242 rtc->uie_rtctimer.node.expires = ktime_add(now, onesec);
243 rtc->uie_rtctimer.period = ktime_set(1, 0);
John Stultzaa0be0f2011-01-20 15:26:12 -0800244 err = rtc_timer_enqueue(rtc, &rtc->uie_rtctimer);
245 } else
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100246 rtc_timer_remove(rtc, &rtc->uie_rtctimer);
Alessandro Zummo099e6572009-01-04 12:00:54 -0800247
John Stultz6610e082010-09-23 15:07:34 -0700248out:
Alessandro Zummo099e6572009-01-04 12:00:54 -0800249 mutex_unlock(&rtc->ops_lock);
Alessandro Zummo099e6572009-01-04 12:00:54 -0800250 return err;
John Stultz6610e082010-09-23 15:07:34 -0700251
Alessandro Zummo099e6572009-01-04 12:00:54 -0800252}
253EXPORT_SYMBOL_GPL(rtc_update_irq_enable);
254
John Stultz6610e082010-09-23 15:07:34 -0700255
David Brownelld728b1e2006-11-25 11:09:28 -0800256/**
John Stultz6610e082010-09-23 15:07:34 -0700257 * rtc_handle_legacy_irq - AIE, UIE and PIE event hook
258 * @rtc: pointer to the rtc device
259 *
260 * This function is called when an AIE, UIE or PIE mode interrupt
261 * has occured (or been emulated).
262 *
263 * Triggers the registered irq_task function callback.
264 */
265static void rtc_handle_legacy_irq(struct rtc_device *rtc, int num, int mode)
266{
267 unsigned long flags;
268
269 /* mark one irq of the appropriate mode */
270 spin_lock_irqsave(&rtc->irq_lock, flags);
271 rtc->irq_data = (rtc->irq_data + (num << 8)) | (RTC_IRQF|mode);
272 spin_unlock_irqrestore(&rtc->irq_lock, flags);
273
274 /* call the task func */
275 spin_lock_irqsave(&rtc->irq_task_lock, flags);
276 if (rtc->irq_task)
277 rtc->irq_task->func(rtc->irq_task->private_data);
278 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
279
280 wake_up_interruptible(&rtc->irq_queue);
281 kill_fasync(&rtc->async_queue, SIGIO, POLL_IN);
282}
283
284
285/**
286 * rtc_aie_update_irq - AIE mode rtctimer hook
287 * @private: pointer to the rtc_device
288 *
289 * This functions is called when the aie_timer expires.
290 */
291void rtc_aie_update_irq(void *private)
292{
293 struct rtc_device *rtc = (struct rtc_device *)private;
294 rtc_handle_legacy_irq(rtc, 1, RTC_AF);
295}
296
297
298/**
299 * rtc_uie_update_irq - UIE mode rtctimer hook
300 * @private: pointer to the rtc_device
301 *
302 * This functions is called when the uie_timer expires.
303 */
304void rtc_uie_update_irq(void *private)
305{
306 struct rtc_device *rtc = (struct rtc_device *)private;
307 rtc_handle_legacy_irq(rtc, 1, RTC_UF);
308}
309
310
311/**
312 * rtc_pie_update_irq - PIE mode hrtimer hook
313 * @timer: pointer to the pie mode hrtimer
314 *
315 * This function is used to emulate PIE mode interrupts
316 * using an hrtimer. This function is called when the periodic
317 * hrtimer expires.
318 */
319enum hrtimer_restart rtc_pie_update_irq(struct hrtimer *timer)
320{
321 struct rtc_device *rtc;
322 ktime_t period;
323 int count;
324 rtc = container_of(timer, struct rtc_device, pie_timer);
325
326 period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
327 count = hrtimer_forward_now(timer, period);
328
329 rtc_handle_legacy_irq(rtc, count, RTC_PF);
330
331 return HRTIMER_RESTART;
332}
333
334/**
335 * rtc_update_irq - Triggered when a RTC interrupt occurs.
David Brownellab6a2d72007-05-08 00:33:30 -0700336 * @rtc: the rtc device
David Brownelld728b1e2006-11-25 11:09:28 -0800337 * @num: how many irqs are being reported (usually one)
338 * @events: mask of RTC_IRQF with one or more of RTC_PF, RTC_AF, RTC_UF
Atsushi Nemotoe6229bec2009-06-18 16:49:09 -0700339 * Context: any
David Brownelld728b1e2006-11-25 11:09:28 -0800340 */
David Brownellab6a2d72007-05-08 00:33:30 -0700341void rtc_update_irq(struct rtc_device *rtc,
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800342 unsigned long num, unsigned long events)
343{
John Stultz6610e082010-09-23 15:07:34 -0700344 schedule_work(&rtc->irqwork);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800345}
346EXPORT_SYMBOL_GPL(rtc_update_irq);
347
Dave Young71da8902008-01-22 14:00:34 +0800348static int __rtc_match(struct device *dev, void *data)
349{
350 char *name = (char *)data;
351
Kay Sieversd4afc762009-01-06 14:42:11 -0800352 if (strcmp(dev_name(dev), name) == 0)
Dave Young71da8902008-01-22 14:00:34 +0800353 return 1;
354 return 0;
355}
356
David Brownellab6a2d72007-05-08 00:33:30 -0700357struct rtc_device *rtc_class_open(char *name)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800358{
David Brownellcd966202007-05-08 00:33:40 -0700359 struct device *dev;
David Brownellab6a2d72007-05-08 00:33:30 -0700360 struct rtc_device *rtc = NULL;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800361
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400362 dev = class_find_device(rtc_class, NULL, name, __rtc_match);
Dave Young71da8902008-01-22 14:00:34 +0800363 if (dev)
364 rtc = to_rtc_device(dev);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800365
David Brownellab6a2d72007-05-08 00:33:30 -0700366 if (rtc) {
367 if (!try_module_get(rtc->owner)) {
David Brownellcd966202007-05-08 00:33:40 -0700368 put_device(dev);
David Brownellab6a2d72007-05-08 00:33:30 -0700369 rtc = NULL;
370 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800371 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800372
David Brownellab6a2d72007-05-08 00:33:30 -0700373 return rtc;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800374}
375EXPORT_SYMBOL_GPL(rtc_class_open);
376
David Brownellab6a2d72007-05-08 00:33:30 -0700377void rtc_class_close(struct rtc_device *rtc)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800378{
David Brownellab6a2d72007-05-08 00:33:30 -0700379 module_put(rtc->owner);
David Brownellcd966202007-05-08 00:33:40 -0700380 put_device(&rtc->dev);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800381}
382EXPORT_SYMBOL_GPL(rtc_class_close);
383
David Brownellab6a2d72007-05-08 00:33:30 -0700384int rtc_irq_register(struct rtc_device *rtc, struct rtc_task *task)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800385{
386 int retval = -EBUSY;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800387
388 if (task == NULL || task->func == NULL)
389 return -EINVAL;
390
Alessandro Zummod691eb92007-10-16 01:28:15 -0700391 /* Cannot register while the char dev is in use */
Jiri Kosina372a3022007-12-04 23:45:05 -0800392 if (test_and_set_bit_lock(RTC_DEV_BUSY, &rtc->flags))
Alessandro Zummod691eb92007-10-16 01:28:15 -0700393 return -EBUSY;
394
David Brownelld728b1e2006-11-25 11:09:28 -0800395 spin_lock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800396 if (rtc->irq_task == NULL) {
397 rtc->irq_task = task;
398 retval = 0;
399 }
David Brownelld728b1e2006-11-25 11:09:28 -0800400 spin_unlock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800401
Jiri Kosina372a3022007-12-04 23:45:05 -0800402 clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700403
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800404 return retval;
405}
406EXPORT_SYMBOL_GPL(rtc_irq_register);
407
David Brownellab6a2d72007-05-08 00:33:30 -0700408void rtc_irq_unregister(struct rtc_device *rtc, struct rtc_task *task)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800409{
David Brownelld728b1e2006-11-25 11:09:28 -0800410 spin_lock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800411 if (rtc->irq_task == task)
412 rtc->irq_task = NULL;
David Brownelld728b1e2006-11-25 11:09:28 -0800413 spin_unlock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800414}
415EXPORT_SYMBOL_GPL(rtc_irq_unregister);
416
David Brownell97144c62007-10-16 01:28:16 -0700417/**
418 * rtc_irq_set_state - enable/disable 2^N Hz periodic IRQs
419 * @rtc: the rtc device
420 * @task: currently registered with rtc_irq_register()
421 * @enabled: true to enable periodic IRQs
422 * Context: any
423 *
424 * Note that rtc_irq_set_freq() should previously have been used to
425 * specify the desired frequency of periodic IRQ task->func() callbacks.
426 */
David Brownellab6a2d72007-05-08 00:33:30 -0700427int rtc_irq_set_state(struct rtc_device *rtc, struct rtc_task *task, int enabled)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800428{
429 int err = 0;
430 unsigned long flags;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800431
432 spin_lock_irqsave(&rtc->irq_task_lock, flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700433 if (rtc->irq_task != NULL && task == NULL)
434 err = -EBUSY;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800435 if (rtc->irq_task != task)
Alessandro Zummod691eb92007-10-16 01:28:15 -0700436 err = -EACCES;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800437
John Stultz6610e082010-09-23 15:07:34 -0700438 if (enabled) {
439 ktime_t period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
440 hrtimer_start(&rtc->pie_timer, period, HRTIMER_MODE_REL);
441 } else {
442 hrtimer_cancel(&rtc->pie_timer);
443 }
444 rtc->pie_enabled = enabled;
445 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800446
447 return err;
448}
449EXPORT_SYMBOL_GPL(rtc_irq_set_state);
450
David Brownell97144c62007-10-16 01:28:16 -0700451/**
452 * rtc_irq_set_freq - set 2^N Hz periodic IRQ frequency for IRQ
453 * @rtc: the rtc device
454 * @task: currently registered with rtc_irq_register()
455 * @freq: positive frequency with which task->func() will be called
456 * Context: any
457 *
458 * Note that rtc_irq_set_state() is used to enable or disable the
459 * periodic IRQs.
460 */
David Brownellab6a2d72007-05-08 00:33:30 -0700461int rtc_irq_set_freq(struct rtc_device *rtc, struct rtc_task *task, int freq)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800462{
Alessandro Zummo56f10c62006-06-25 05:48:20 -0700463 int err = 0;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800464 unsigned long flags;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800465
Marcelo Roberto Jimenez83a06bf2011-02-02 16:04:02 -0200466 if (freq <= 0)
467 return -EINVAL;
468
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800469 spin_lock_irqsave(&rtc->irq_task_lock, flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700470 if (rtc->irq_task != NULL && task == NULL)
471 err = -EBUSY;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800472 if (rtc->irq_task != task)
Alessandro Zummod691eb92007-10-16 01:28:15 -0700473 err = -EACCES;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800474 if (err == 0) {
John Stultz6610e082010-09-23 15:07:34 -0700475 rtc->irq_freq = freq;
476 if (rtc->pie_enabled) {
477 ktime_t period;
478 hrtimer_cancel(&rtc->pie_timer);
479 period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
480 hrtimer_start(&rtc->pie_timer, period,
481 HRTIMER_MODE_REL);
482 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800483 }
John Stultz6610e082010-09-23 15:07:34 -0700484 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800485 return err;
486}
David Brownell2601a462006-11-25 11:09:27 -0800487EXPORT_SYMBOL_GPL(rtc_irq_set_freq);
John Stultz6610e082010-09-23 15:07:34 -0700488
489/**
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100490 * rtc_timer_enqueue - Adds a rtc_timer to the rtc_device timerqueue
John Stultz6610e082010-09-23 15:07:34 -0700491 * @rtc rtc device
492 * @timer timer being added.
493 *
494 * Enqueues a timer onto the rtc devices timerqueue and sets
495 * the next alarm event appropriately.
496 *
John Stultzaa0be0f2011-01-20 15:26:12 -0800497 * Sets the enabled bit on the added timer.
498 *
John Stultz6610e082010-09-23 15:07:34 -0700499 * Must hold ops_lock for proper serialization of timerqueue
500 */
John Stultzaa0be0f2011-01-20 15:26:12 -0800501static int rtc_timer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer)
John Stultz6610e082010-09-23 15:07:34 -0700502{
John Stultzaa0be0f2011-01-20 15:26:12 -0800503 timer->enabled = 1;
John Stultz6610e082010-09-23 15:07:34 -0700504 timerqueue_add(&rtc->timerqueue, &timer->node);
505 if (&timer->node == timerqueue_getnext(&rtc->timerqueue)) {
506 struct rtc_wkalrm alarm;
507 int err;
508 alarm.time = rtc_ktime_to_tm(timer->node.expires);
509 alarm.enabled = 1;
510 err = __rtc_set_alarm(rtc, &alarm);
511 if (err == -ETIME)
512 schedule_work(&rtc->irqwork);
John Stultzaa0be0f2011-01-20 15:26:12 -0800513 else if (err) {
514 timerqueue_del(&rtc->timerqueue, &timer->node);
515 timer->enabled = 0;
516 return err;
517 }
John Stultz6610e082010-09-23 15:07:34 -0700518 }
John Stultzaa0be0f2011-01-20 15:26:12 -0800519 return 0;
John Stultz6610e082010-09-23 15:07:34 -0700520}
521
522/**
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100523 * rtc_timer_remove - Removes a rtc_timer from the rtc_device timerqueue
John Stultz6610e082010-09-23 15:07:34 -0700524 * @rtc rtc device
525 * @timer timer being removed.
526 *
527 * Removes a timer onto the rtc devices timerqueue and sets
528 * the next alarm event appropriately.
529 *
John Stultzaa0be0f2011-01-20 15:26:12 -0800530 * Clears the enabled bit on the removed timer.
531 *
John Stultz6610e082010-09-23 15:07:34 -0700532 * Must hold ops_lock for proper serialization of timerqueue
533 */
John Stultzaa0be0f2011-01-20 15:26:12 -0800534static void rtc_timer_remove(struct rtc_device *rtc, struct rtc_timer *timer)
John Stultz6610e082010-09-23 15:07:34 -0700535{
536 struct timerqueue_node *next = timerqueue_getnext(&rtc->timerqueue);
537 timerqueue_del(&rtc->timerqueue, &timer->node);
John Stultzaa0be0f2011-01-20 15:26:12 -0800538 timer->enabled = 0;
John Stultz6610e082010-09-23 15:07:34 -0700539 if (next == &timer->node) {
540 struct rtc_wkalrm alarm;
541 int err;
542 next = timerqueue_getnext(&rtc->timerqueue);
543 if (!next)
544 return;
545 alarm.time = rtc_ktime_to_tm(next->expires);
546 alarm.enabled = 1;
547 err = __rtc_set_alarm(rtc, &alarm);
548 if (err == -ETIME)
549 schedule_work(&rtc->irqwork);
550 }
551}
552
553/**
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100554 * rtc_timer_do_work - Expires rtc timers
John Stultz6610e082010-09-23 15:07:34 -0700555 * @rtc rtc device
556 * @timer timer being removed.
557 *
558 * Expires rtc timers. Reprograms next alarm event if needed.
559 * Called via worktask.
560 *
561 * Serializes access to timerqueue via ops_lock mutex
562 */
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100563void rtc_timer_do_work(struct work_struct *work)
John Stultz6610e082010-09-23 15:07:34 -0700564{
565 struct rtc_timer *timer;
566 struct timerqueue_node *next;
567 ktime_t now;
568 struct rtc_time tm;
569
570 struct rtc_device *rtc =
571 container_of(work, struct rtc_device, irqwork);
572
573 mutex_lock(&rtc->ops_lock);
574again:
575 __rtc_read_time(rtc, &tm);
576 now = rtc_tm_to_ktime(tm);
577 while ((next = timerqueue_getnext(&rtc->timerqueue))) {
578 if (next->expires.tv64 > now.tv64)
579 break;
580
581 /* expire timer */
582 timer = container_of(next, struct rtc_timer, node);
583 timerqueue_del(&rtc->timerqueue, &timer->node);
584 timer->enabled = 0;
585 if (timer->task.func)
586 timer->task.func(timer->task.private_data);
587
588 /* Re-add/fwd periodic timers */
589 if (ktime_to_ns(timer->period)) {
590 timer->node.expires = ktime_add(timer->node.expires,
591 timer->period);
592 timer->enabled = 1;
593 timerqueue_add(&rtc->timerqueue, &timer->node);
594 }
595 }
596
597 /* Set next alarm */
598 if (next) {
599 struct rtc_wkalrm alarm;
600 int err;
601 alarm.time = rtc_ktime_to_tm(next->expires);
602 alarm.enabled = 1;
603 err = __rtc_set_alarm(rtc, &alarm);
604 if (err == -ETIME)
605 goto again;
606 }
607
608 mutex_unlock(&rtc->ops_lock);
609}
610
611
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100612/* rtc_timer_init - Initializes an rtc_timer
John Stultz6610e082010-09-23 15:07:34 -0700613 * @timer: timer to be intiialized
614 * @f: function pointer to be called when timer fires
615 * @data: private data passed to function pointer
616 *
617 * Kernel interface to initializing an rtc_timer.
618 */
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100619void rtc_timer_init(struct rtc_timer *timer, void (*f)(void* p), void* data)
John Stultz6610e082010-09-23 15:07:34 -0700620{
621 timerqueue_init(&timer->node);
622 timer->enabled = 0;
623 timer->task.func = f;
624 timer->task.private_data = data;
625}
626
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100627/* rtc_timer_start - Sets an rtc_timer to fire in the future
John Stultz6610e082010-09-23 15:07:34 -0700628 * @ rtc: rtc device to be used
629 * @ timer: timer being set
630 * @ expires: time at which to expire the timer
631 * @ period: period that the timer will recur
632 *
633 * Kernel interface to set an rtc_timer
634 */
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100635int rtc_timer_start(struct rtc_device *rtc, struct rtc_timer* timer,
John Stultz6610e082010-09-23 15:07:34 -0700636 ktime_t expires, ktime_t period)
637{
638 int ret = 0;
639 mutex_lock(&rtc->ops_lock);
640 if (timer->enabled)
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100641 rtc_timer_remove(rtc, timer);
John Stultz6610e082010-09-23 15:07:34 -0700642
643 timer->node.expires = expires;
644 timer->period = period;
645
John Stultzaa0be0f2011-01-20 15:26:12 -0800646 ret = rtc_timer_enqueue(rtc, timer);
John Stultz6610e082010-09-23 15:07:34 -0700647
648 mutex_unlock(&rtc->ops_lock);
649 return ret;
650}
651
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100652/* rtc_timer_cancel - Stops an rtc_timer
John Stultz6610e082010-09-23 15:07:34 -0700653 * @ rtc: rtc device to be used
654 * @ timer: timer being set
655 *
656 * Kernel interface to cancel an rtc_timer
657 */
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100658int rtc_timer_cancel(struct rtc_device *rtc, struct rtc_timer* timer)
John Stultz6610e082010-09-23 15:07:34 -0700659{
660 int ret = 0;
661 mutex_lock(&rtc->ops_lock);
662 if (timer->enabled)
Thomas Gleixner96c8f062010-12-13 22:45:48 +0100663 rtc_timer_remove(rtc, timer);
John Stultz6610e082010-09-23 15:07:34 -0700664 mutex_unlock(&rtc->ops_lock);
665 return ret;
666}
667
668