blob: c81c50b497b76edf116a1fb835c4a6cb497357a2 [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
19static int __rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm)
20{
21 int err;
22 if (!rtc->ops)
23 err = -ENODEV;
24 else if (!rtc->ops->read_time)
25 err = -EINVAL;
26 else {
27 memset(tm, 0, sizeof(struct rtc_time));
28 err = rtc->ops->read_time(rtc->dev.parent, tm);
29 }
30 return err;
31}
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080032
David Brownellab6a2d72007-05-08 00:33:30 -070033int rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080034{
35 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080036
37 err = mutex_lock_interruptible(&rtc->ops_lock);
38 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070039 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080040
John Stultz6610e082010-09-23 15:07:34 -070041 err = __rtc_read_time(rtc, tm);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080042 mutex_unlock(&rtc->ops_lock);
43 return err;
44}
45EXPORT_SYMBOL_GPL(rtc_read_time);
46
David Brownellab6a2d72007-05-08 00:33:30 -070047int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080048{
49 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080050
51 err = rtc_valid_tm(tm);
52 if (err != 0)
53 return err;
54
55 err = mutex_lock_interruptible(&rtc->ops_lock);
56 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070057 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080058
59 if (!rtc->ops)
60 err = -ENODEV;
Alessandro Zummobbccf832009-01-06 14:42:21 -080061 else if (rtc->ops->set_time)
David Brownellcd966202007-05-08 00:33:40 -070062 err = rtc->ops->set_time(rtc->dev.parent, tm);
Alessandro Zummobbccf832009-01-06 14:42:21 -080063 else if (rtc->ops->set_mmss) {
64 unsigned long secs;
65 err = rtc_tm_to_time(tm, &secs);
66 if (err == 0)
67 err = rtc->ops->set_mmss(rtc->dev.parent, secs);
68 } else
69 err = -EINVAL;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080070
71 mutex_unlock(&rtc->ops_lock);
72 return err;
73}
74EXPORT_SYMBOL_GPL(rtc_set_time);
75
David Brownellab6a2d72007-05-08 00:33:30 -070076int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080077{
78 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080079
80 err = mutex_lock_interruptible(&rtc->ops_lock);
81 if (err)
David Brownellb68bb262008-07-29 22:33:30 -070082 return err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080083
84 if (!rtc->ops)
85 err = -ENODEV;
86 else if (rtc->ops->set_mmss)
David Brownellcd966202007-05-08 00:33:40 -070087 err = rtc->ops->set_mmss(rtc->dev.parent, secs);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080088 else if (rtc->ops->read_time && rtc->ops->set_time) {
89 struct rtc_time new, old;
90
David Brownellcd966202007-05-08 00:33:40 -070091 err = rtc->ops->read_time(rtc->dev.parent, &old);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -080092 if (err == 0) {
93 rtc_time_to_tm(secs, &new);
94
95 /*
96 * avoid writing when we're going to change the day of
97 * the month. We will retry in the next minute. This
98 * basically means that if the RTC must not drift
99 * by more than 1 minute in 11 minutes.
100 */
101 if (!((old.tm_hour == 23 && old.tm_min == 59) ||
102 (new.tm_hour == 23 && new.tm_min == 59)))
David Brownellcd966202007-05-08 00:33:40 -0700103 err = rtc->ops->set_time(rtc->dev.parent,
David Brownellab6a2d72007-05-08 00:33:30 -0700104 &new);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800105 }
106 }
107 else
108 err = -EINVAL;
109
110 mutex_unlock(&rtc->ops_lock);
111
112 return err;
113}
114EXPORT_SYMBOL_GPL(rtc_set_mmss);
115
John Stultz6610e082010-09-23 15:07:34 -0700116int rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800117{
118 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800119
120 err = mutex_lock_interruptible(&rtc->ops_lock);
121 if (err)
David Brownellb68bb262008-07-29 22:33:30 -0700122 return err;
John Stultz6610e082010-09-23 15:07:34 -0700123 alarm->enabled = rtc->aie_timer.enabled;
124 if (alarm->enabled)
125 alarm->time = rtc_ktime_to_tm(rtc->aie_timer.node.expires);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800126 mutex_unlock(&rtc->ops_lock);
Mark Lord0e36a9a2007-10-16 01:28:21 -0700127
Mark Lord0e36a9a2007-10-16 01:28:21 -0700128 return 0;
129}
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800130EXPORT_SYMBOL_GPL(rtc_read_alarm);
131
John Stultz6610e082010-09-23 15:07:34 -0700132int __rtc_set_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
133{
134 struct rtc_time tm;
135 long now, scheduled;
136 int err;
137
138 err = rtc_valid_tm(&alarm->time);
139 if (err)
140 return err;
141 rtc_tm_to_time(&alarm->time, &scheduled);
142
143 /* Make sure we're not setting alarms in the past */
144 err = __rtc_read_time(rtc, &tm);
145 rtc_tm_to_time(&tm, &now);
146 if (scheduled <= now)
147 return -ETIME;
148 /*
149 * XXX - We just checked to make sure the alarm time is not
150 * in the past, but there is still a race window where if
151 * the is alarm set for the next second and the second ticks
152 * over right here, before we set the alarm.
153 */
154
155 if (!rtc->ops)
156 err = -ENODEV;
157 else if (!rtc->ops->set_alarm)
158 err = -EINVAL;
159 else
160 err = rtc->ops->set_alarm(rtc->dev.parent, alarm);
161
162 return err;
163}
164
David Brownellab6a2d72007-05-08 00:33:30 -0700165int rtc_set_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800166{
167 int err;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800168
David Brownellf8245c22007-05-08 00:34:07 -0700169 err = rtc_valid_tm(&alarm->time);
170 if (err != 0)
171 return err;
172
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800173 err = mutex_lock_interruptible(&rtc->ops_lock);
174 if (err)
David Brownellb68bb262008-07-29 22:33:30 -0700175 return err;
John Stultz6610e082010-09-23 15:07:34 -0700176 if (rtc->aie_timer.enabled) {
177 rtctimer_remove(rtc, &rtc->aie_timer);
178 rtc->aie_timer.enabled = 0;
179 }
180 rtc->aie_timer.node.expires = rtc_tm_to_ktime(alarm->time);
181 rtc->aie_timer.period = ktime_set(0, 0);
182 if (alarm->enabled) {
183 rtc->aie_timer.enabled = 1;
184 rtctimer_enqueue(rtc, &rtc->aie_timer);
185 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800186 mutex_unlock(&rtc->ops_lock);
John Stultz6610e082010-09-23 15:07:34 -0700187 return 0;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800188}
189EXPORT_SYMBOL_GPL(rtc_set_alarm);
190
Alessandro Zummo099e6572009-01-04 12:00:54 -0800191int rtc_alarm_irq_enable(struct rtc_device *rtc, unsigned int enabled)
192{
193 int err = mutex_lock_interruptible(&rtc->ops_lock);
194 if (err)
195 return err;
196
John Stultz6610e082010-09-23 15:07:34 -0700197 if (rtc->aie_timer.enabled != enabled) {
198 if (enabled) {
199 rtc->aie_timer.enabled = 1;
200 rtctimer_enqueue(rtc, &rtc->aie_timer);
201 } else {
202 rtctimer_remove(rtc, &rtc->aie_timer);
203 rtc->aie_timer.enabled = 0;
204 }
205 }
206
Alessandro Zummo099e6572009-01-04 12:00:54 -0800207 if (!rtc->ops)
208 err = -ENODEV;
209 else if (!rtc->ops->alarm_irq_enable)
210 err = -EINVAL;
211 else
212 err = rtc->ops->alarm_irq_enable(rtc->dev.parent, enabled);
213
214 mutex_unlock(&rtc->ops_lock);
215 return err;
216}
217EXPORT_SYMBOL_GPL(rtc_alarm_irq_enable);
218
219int rtc_update_irq_enable(struct rtc_device *rtc, unsigned int enabled)
220{
221 int err = mutex_lock_interruptible(&rtc->ops_lock);
222 if (err)
223 return err;
224
John Stultz6610e082010-09-23 15:07:34 -0700225 /* make sure we're changing state */
226 if (rtc->uie_rtctimer.enabled == enabled)
227 goto out;
228
229 if (enabled) {
230 struct rtc_time tm;
231 ktime_t now, onesec;
232
233 __rtc_read_time(rtc, &tm);
234 onesec = ktime_set(1, 0);
235 now = rtc_tm_to_ktime(tm);
236 rtc->uie_rtctimer.node.expires = ktime_add(now, onesec);
237 rtc->uie_rtctimer.period = ktime_set(1, 0);
238 rtc->uie_rtctimer.enabled = 1;
239 rtctimer_enqueue(rtc, &rtc->uie_rtctimer);
240 } else {
241 rtctimer_remove(rtc, &rtc->uie_rtctimer);
242 rtc->uie_rtctimer.enabled = 0;
Alessandro Zummo099e6572009-01-04 12:00:54 -0800243 }
Alessandro Zummo099e6572009-01-04 12:00:54 -0800244
John Stultz6610e082010-09-23 15:07:34 -0700245out:
Alessandro Zummo099e6572009-01-04 12:00:54 -0800246 mutex_unlock(&rtc->ops_lock);
Alessandro Zummo099e6572009-01-04 12:00:54 -0800247 return err;
John Stultz6610e082010-09-23 15:07:34 -0700248
Alessandro Zummo099e6572009-01-04 12:00:54 -0800249}
250EXPORT_SYMBOL_GPL(rtc_update_irq_enable);
251
John Stultz6610e082010-09-23 15:07:34 -0700252
David Brownelld728b1e2006-11-25 11:09:28 -0800253/**
John Stultz6610e082010-09-23 15:07:34 -0700254 * rtc_handle_legacy_irq - AIE, UIE and PIE event hook
255 * @rtc: pointer to the rtc device
256 *
257 * This function is called when an AIE, UIE or PIE mode interrupt
258 * has occured (or been emulated).
259 *
260 * Triggers the registered irq_task function callback.
261 */
262static void rtc_handle_legacy_irq(struct rtc_device *rtc, int num, int mode)
263{
264 unsigned long flags;
265
266 /* mark one irq of the appropriate mode */
267 spin_lock_irqsave(&rtc->irq_lock, flags);
268 rtc->irq_data = (rtc->irq_data + (num << 8)) | (RTC_IRQF|mode);
269 spin_unlock_irqrestore(&rtc->irq_lock, flags);
270
271 /* call the task func */
272 spin_lock_irqsave(&rtc->irq_task_lock, flags);
273 if (rtc->irq_task)
274 rtc->irq_task->func(rtc->irq_task->private_data);
275 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
276
277 wake_up_interruptible(&rtc->irq_queue);
278 kill_fasync(&rtc->async_queue, SIGIO, POLL_IN);
279}
280
281
282/**
283 * rtc_aie_update_irq - AIE mode rtctimer hook
284 * @private: pointer to the rtc_device
285 *
286 * This functions is called when the aie_timer expires.
287 */
288void rtc_aie_update_irq(void *private)
289{
290 struct rtc_device *rtc = (struct rtc_device *)private;
291 rtc_handle_legacy_irq(rtc, 1, RTC_AF);
292}
293
294
295/**
296 * rtc_uie_update_irq - UIE mode rtctimer hook
297 * @private: pointer to the rtc_device
298 *
299 * This functions is called when the uie_timer expires.
300 */
301void rtc_uie_update_irq(void *private)
302{
303 struct rtc_device *rtc = (struct rtc_device *)private;
304 rtc_handle_legacy_irq(rtc, 1, RTC_UF);
305}
306
307
308/**
309 * rtc_pie_update_irq - PIE mode hrtimer hook
310 * @timer: pointer to the pie mode hrtimer
311 *
312 * This function is used to emulate PIE mode interrupts
313 * using an hrtimer. This function is called when the periodic
314 * hrtimer expires.
315 */
316enum hrtimer_restart rtc_pie_update_irq(struct hrtimer *timer)
317{
318 struct rtc_device *rtc;
319 ktime_t period;
320 int count;
321 rtc = container_of(timer, struct rtc_device, pie_timer);
322
323 period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
324 count = hrtimer_forward_now(timer, period);
325
326 rtc_handle_legacy_irq(rtc, count, RTC_PF);
327
328 return HRTIMER_RESTART;
329}
330
331/**
332 * rtc_update_irq - Triggered when a RTC interrupt occurs.
David Brownellab6a2d72007-05-08 00:33:30 -0700333 * @rtc: the rtc device
David Brownelld728b1e2006-11-25 11:09:28 -0800334 * @num: how many irqs are being reported (usually one)
335 * @events: mask of RTC_IRQF with one or more of RTC_PF, RTC_AF, RTC_UF
Atsushi Nemotoe6229bec2009-06-18 16:49:09 -0700336 * Context: any
David Brownelld728b1e2006-11-25 11:09:28 -0800337 */
David Brownellab6a2d72007-05-08 00:33:30 -0700338void rtc_update_irq(struct rtc_device *rtc,
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800339 unsigned long num, unsigned long events)
340{
John Stultz6610e082010-09-23 15:07:34 -0700341 schedule_work(&rtc->irqwork);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800342}
343EXPORT_SYMBOL_GPL(rtc_update_irq);
344
Dave Young71da8902008-01-22 14:00:34 +0800345static int __rtc_match(struct device *dev, void *data)
346{
347 char *name = (char *)data;
348
Kay Sieversd4afc762009-01-06 14:42:11 -0800349 if (strcmp(dev_name(dev), name) == 0)
Dave Young71da8902008-01-22 14:00:34 +0800350 return 1;
351 return 0;
352}
353
David Brownellab6a2d72007-05-08 00:33:30 -0700354struct rtc_device *rtc_class_open(char *name)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800355{
David Brownellcd966202007-05-08 00:33:40 -0700356 struct device *dev;
David Brownellab6a2d72007-05-08 00:33:30 -0700357 struct rtc_device *rtc = NULL;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800358
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400359 dev = class_find_device(rtc_class, NULL, name, __rtc_match);
Dave Young71da8902008-01-22 14:00:34 +0800360 if (dev)
361 rtc = to_rtc_device(dev);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800362
David Brownellab6a2d72007-05-08 00:33:30 -0700363 if (rtc) {
364 if (!try_module_get(rtc->owner)) {
David Brownellcd966202007-05-08 00:33:40 -0700365 put_device(dev);
David Brownellab6a2d72007-05-08 00:33:30 -0700366 rtc = NULL;
367 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800368 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800369
David Brownellab6a2d72007-05-08 00:33:30 -0700370 return rtc;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800371}
372EXPORT_SYMBOL_GPL(rtc_class_open);
373
David Brownellab6a2d72007-05-08 00:33:30 -0700374void rtc_class_close(struct rtc_device *rtc)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800375{
David Brownellab6a2d72007-05-08 00:33:30 -0700376 module_put(rtc->owner);
David Brownellcd966202007-05-08 00:33:40 -0700377 put_device(&rtc->dev);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800378}
379EXPORT_SYMBOL_GPL(rtc_class_close);
380
David Brownellab6a2d72007-05-08 00:33:30 -0700381int rtc_irq_register(struct rtc_device *rtc, struct rtc_task *task)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800382{
383 int retval = -EBUSY;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800384
385 if (task == NULL || task->func == NULL)
386 return -EINVAL;
387
Alessandro Zummod691eb92007-10-16 01:28:15 -0700388 /* Cannot register while the char dev is in use */
Jiri Kosina372a3022007-12-04 23:45:05 -0800389 if (test_and_set_bit_lock(RTC_DEV_BUSY, &rtc->flags))
Alessandro Zummod691eb92007-10-16 01:28:15 -0700390 return -EBUSY;
391
David Brownelld728b1e2006-11-25 11:09:28 -0800392 spin_lock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800393 if (rtc->irq_task == NULL) {
394 rtc->irq_task = task;
395 retval = 0;
396 }
David Brownelld728b1e2006-11-25 11:09:28 -0800397 spin_unlock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800398
Jiri Kosina372a3022007-12-04 23:45:05 -0800399 clear_bit_unlock(RTC_DEV_BUSY, &rtc->flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700400
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800401 return retval;
402}
403EXPORT_SYMBOL_GPL(rtc_irq_register);
404
David Brownellab6a2d72007-05-08 00:33:30 -0700405void rtc_irq_unregister(struct rtc_device *rtc, struct rtc_task *task)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800406{
David Brownelld728b1e2006-11-25 11:09:28 -0800407 spin_lock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800408 if (rtc->irq_task == task)
409 rtc->irq_task = NULL;
David Brownelld728b1e2006-11-25 11:09:28 -0800410 spin_unlock_irq(&rtc->irq_task_lock);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800411}
412EXPORT_SYMBOL_GPL(rtc_irq_unregister);
413
David Brownell97144c62007-10-16 01:28:16 -0700414/**
415 * rtc_irq_set_state - enable/disable 2^N Hz periodic IRQs
416 * @rtc: the rtc device
417 * @task: currently registered with rtc_irq_register()
418 * @enabled: true to enable periodic IRQs
419 * Context: any
420 *
421 * Note that rtc_irq_set_freq() should previously have been used to
422 * specify the desired frequency of periodic IRQ task->func() callbacks.
423 */
David Brownellab6a2d72007-05-08 00:33:30 -0700424int rtc_irq_set_state(struct rtc_device *rtc, struct rtc_task *task, int enabled)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800425{
426 int err = 0;
427 unsigned long flags;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800428
429 spin_lock_irqsave(&rtc->irq_task_lock, flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700430 if (rtc->irq_task != NULL && task == NULL)
431 err = -EBUSY;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800432 if (rtc->irq_task != task)
Alessandro Zummod691eb92007-10-16 01:28:15 -0700433 err = -EACCES;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800434
John Stultz6610e082010-09-23 15:07:34 -0700435 if (enabled) {
436 ktime_t period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
437 hrtimer_start(&rtc->pie_timer, period, HRTIMER_MODE_REL);
438 } else {
439 hrtimer_cancel(&rtc->pie_timer);
440 }
441 rtc->pie_enabled = enabled;
442 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800443
444 return err;
445}
446EXPORT_SYMBOL_GPL(rtc_irq_set_state);
447
David Brownell97144c62007-10-16 01:28:16 -0700448/**
449 * rtc_irq_set_freq - set 2^N Hz periodic IRQ frequency for IRQ
450 * @rtc: the rtc device
451 * @task: currently registered with rtc_irq_register()
452 * @freq: positive frequency with which task->func() will be called
453 * Context: any
454 *
455 * Note that rtc_irq_set_state() is used to enable or disable the
456 * periodic IRQs.
457 */
David Brownellab6a2d72007-05-08 00:33:30 -0700458int rtc_irq_set_freq(struct rtc_device *rtc, struct rtc_task *task, int freq)
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800459{
Alessandro Zummo56f10c62006-06-25 05:48:20 -0700460 int err = 0;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800461 unsigned long flags;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800462
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800463 spin_lock_irqsave(&rtc->irq_task_lock, flags);
Alessandro Zummod691eb92007-10-16 01:28:15 -0700464 if (rtc->irq_task != NULL && task == NULL)
465 err = -EBUSY;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800466 if (rtc->irq_task != task)
Alessandro Zummod691eb92007-10-16 01:28:15 -0700467 err = -EACCES;
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800468 if (err == 0) {
John Stultz6610e082010-09-23 15:07:34 -0700469 rtc->irq_freq = freq;
470 if (rtc->pie_enabled) {
471 ktime_t period;
472 hrtimer_cancel(&rtc->pie_timer);
473 period = ktime_set(0, NSEC_PER_SEC/rtc->irq_freq);
474 hrtimer_start(&rtc->pie_timer, period,
475 HRTIMER_MODE_REL);
476 }
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800477 }
John Stultz6610e082010-09-23 15:07:34 -0700478 spin_unlock_irqrestore(&rtc->irq_task_lock, flags);
Alessandro Zummo0c86edc2006-03-27 01:16:37 -0800479 return err;
480}
David Brownell2601a462006-11-25 11:09:27 -0800481EXPORT_SYMBOL_GPL(rtc_irq_set_freq);
John Stultz6610e082010-09-23 15:07:34 -0700482
483/**
484 * rtctimer_enqueue - Adds a rtc_timer to the rtc_device timerqueue
485 * @rtc rtc device
486 * @timer timer being added.
487 *
488 * Enqueues a timer onto the rtc devices timerqueue and sets
489 * the next alarm event appropriately.
490 *
491 * Must hold ops_lock for proper serialization of timerqueue
492 */
493void rtctimer_enqueue(struct rtc_device *rtc, struct rtc_timer *timer)
494{
495 timerqueue_add(&rtc->timerqueue, &timer->node);
496 if (&timer->node == timerqueue_getnext(&rtc->timerqueue)) {
497 struct rtc_wkalrm alarm;
498 int err;
499 alarm.time = rtc_ktime_to_tm(timer->node.expires);
500 alarm.enabled = 1;
501 err = __rtc_set_alarm(rtc, &alarm);
502 if (err == -ETIME)
503 schedule_work(&rtc->irqwork);
504 }
505}
506
507/**
508 * rtctimer_remove - Removes a rtc_timer from the rtc_device timerqueue
509 * @rtc rtc device
510 * @timer timer being removed.
511 *
512 * Removes a timer onto the rtc devices timerqueue and sets
513 * the next alarm event appropriately.
514 *
515 * Must hold ops_lock for proper serialization of timerqueue
516 */
517void rtctimer_remove(struct rtc_device *rtc, struct rtc_timer *timer)
518{
519 struct timerqueue_node *next = timerqueue_getnext(&rtc->timerqueue);
520 timerqueue_del(&rtc->timerqueue, &timer->node);
521
522 if (next == &timer->node) {
523 struct rtc_wkalrm alarm;
524 int err;
525 next = timerqueue_getnext(&rtc->timerqueue);
526 if (!next)
527 return;
528 alarm.time = rtc_ktime_to_tm(next->expires);
529 alarm.enabled = 1;
530 err = __rtc_set_alarm(rtc, &alarm);
531 if (err == -ETIME)
532 schedule_work(&rtc->irqwork);
533 }
534}
535
536/**
537 * rtctimer_do_work - Expires rtc timers
538 * @rtc rtc device
539 * @timer timer being removed.
540 *
541 * Expires rtc timers. Reprograms next alarm event if needed.
542 * Called via worktask.
543 *
544 * Serializes access to timerqueue via ops_lock mutex
545 */
546void rtctimer_do_work(struct work_struct *work)
547{
548 struct rtc_timer *timer;
549 struct timerqueue_node *next;
550 ktime_t now;
551 struct rtc_time tm;
552
553 struct rtc_device *rtc =
554 container_of(work, struct rtc_device, irqwork);
555
556 mutex_lock(&rtc->ops_lock);
557again:
558 __rtc_read_time(rtc, &tm);
559 now = rtc_tm_to_ktime(tm);
560 while ((next = timerqueue_getnext(&rtc->timerqueue))) {
561 if (next->expires.tv64 > now.tv64)
562 break;
563
564 /* expire timer */
565 timer = container_of(next, struct rtc_timer, node);
566 timerqueue_del(&rtc->timerqueue, &timer->node);
567 timer->enabled = 0;
568 if (timer->task.func)
569 timer->task.func(timer->task.private_data);
570
571 /* Re-add/fwd periodic timers */
572 if (ktime_to_ns(timer->period)) {
573 timer->node.expires = ktime_add(timer->node.expires,
574 timer->period);
575 timer->enabled = 1;
576 timerqueue_add(&rtc->timerqueue, &timer->node);
577 }
578 }
579
580 /* Set next alarm */
581 if (next) {
582 struct rtc_wkalrm alarm;
583 int err;
584 alarm.time = rtc_ktime_to_tm(next->expires);
585 alarm.enabled = 1;
586 err = __rtc_set_alarm(rtc, &alarm);
587 if (err == -ETIME)
588 goto again;
589 }
590
591 mutex_unlock(&rtc->ops_lock);
592}
593
594
595/* rtctimer_init - Initializes an rtc_timer
596 * @timer: timer to be intiialized
597 * @f: function pointer to be called when timer fires
598 * @data: private data passed to function pointer
599 *
600 * Kernel interface to initializing an rtc_timer.
601 */
602void rtctimer_init(struct rtc_timer *timer, void (*f)(void* p), void* data)
603{
604 timerqueue_init(&timer->node);
605 timer->enabled = 0;
606 timer->task.func = f;
607 timer->task.private_data = data;
608}
609
610/* rtctimer_start - Sets an rtc_timer to fire in the future
611 * @ rtc: rtc device to be used
612 * @ timer: timer being set
613 * @ expires: time at which to expire the timer
614 * @ period: period that the timer will recur
615 *
616 * Kernel interface to set an rtc_timer
617 */
618int rtctimer_start(struct rtc_device *rtc, struct rtc_timer* timer,
619 ktime_t expires, ktime_t period)
620{
621 int ret = 0;
622 mutex_lock(&rtc->ops_lock);
623 if (timer->enabled)
624 rtctimer_remove(rtc, timer);
625
626 timer->node.expires = expires;
627 timer->period = period;
628
629 timer->enabled = 1;
630 rtctimer_enqueue(rtc, timer);
631
632 mutex_unlock(&rtc->ops_lock);
633 return ret;
634}
635
636/* rtctimer_cancel - Stops an rtc_timer
637 * @ rtc: rtc device to be used
638 * @ timer: timer being set
639 *
640 * Kernel interface to cancel an rtc_timer
641 */
642int rtctimer_cancel(struct rtc_device *rtc, struct rtc_timer* timer)
643{
644 int ret = 0;
645 mutex_lock(&rtc->ops_lock);
646 if (timer->enabled)
647 rtctimer_remove(rtc, timer);
648 timer->enabled = 0;
649 mutex_unlock(&rtc->ops_lock);
650 return ret;
651}
652
653