2 * RTC subsystem, interface functions
4 * Copyright (C) 2005 Tower Technologies
5 * Author: Alessandro Zummo <a.zummo@towertech.it>
7 * based on arch/arm/common/rtctime.c
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.
14 #include <linux/rtc.h>
15 #include <linux/sched.h>
16 #include <linux/module.h>
17 #include <linux/log2.h>
18 #include <linux/workqueue.h>
20 #define CREATE_TRACE_POINTS
21 #include <trace/events/rtc.h>
23 static int rtc_timer_enqueue(struct rtc_device
*rtc
, struct rtc_timer
*timer
);
24 static void rtc_timer_remove(struct rtc_device
*rtc
, struct rtc_timer
*timer
);
26 static void rtc_add_offset(struct rtc_device
*rtc
, struct rtc_time
*tm
)
30 if (!rtc
->offset_secs
)
33 secs
= rtc_tm_to_time64(tm
);
36 * Since the reading time values from RTC device are always in the RTC
37 * original valid range, but we need to skip the overlapped region
38 * between expanded range and original range, which is no need to add
41 if ((rtc
->start_secs
> rtc
->range_min
&& secs
>= rtc
->start_secs
) ||
42 (rtc
->start_secs
< rtc
->range_min
&&
43 secs
<= (rtc
->start_secs
+ rtc
->range_max
- rtc
->range_min
)))
46 rtc_time64_to_tm(secs
+ rtc
->offset_secs
, tm
);
49 static void rtc_subtract_offset(struct rtc_device
*rtc
, struct rtc_time
*tm
)
53 if (!rtc
->offset_secs
)
56 secs
= rtc_tm_to_time64(tm
);
59 * If the setting time values are in the valid range of RTC hardware
60 * device, then no need to subtract the offset when setting time to RTC
61 * device. Otherwise we need to subtract the offset to make the time
62 * values are valid for RTC hardware device.
64 if (secs
>= rtc
->range_min
&& secs
<= rtc
->range_max
)
67 rtc_time64_to_tm(secs
- rtc
->offset_secs
, tm
);
70 static int rtc_valid_range(struct rtc_device
*rtc
, struct rtc_time
*tm
)
72 if (rtc
->range_min
!= rtc
->range_max
) {
73 time64_t time
= rtc_tm_to_time64(tm
);
74 time64_t range_min
= rtc
->set_start_time
? rtc
->start_secs
:
76 time64_t range_max
= rtc
->set_start_time
?
77 (rtc
->start_secs
+ rtc
->range_max
- rtc
->range_min
) :
80 if (time
< range_min
|| time
> range_max
)
87 static int __rtc_read_time(struct rtc_device
*rtc
, struct rtc_time
*tm
)
92 else if (!rtc
->ops
->read_time
)
95 memset(tm
, 0, sizeof(struct rtc_time
));
96 err
= rtc
->ops
->read_time(rtc
->dev
.parent
, tm
);
98 dev_dbg(&rtc
->dev
, "read_time: fail to read: %d\n",
103 rtc_add_offset(rtc
, tm
);
105 err
= rtc_valid_tm(tm
);
107 dev_dbg(&rtc
->dev
, "read_time: rtc_time isn't valid\n");
112 int rtc_read_time(struct rtc_device
*rtc
, struct rtc_time
*tm
)
116 err
= mutex_lock_interruptible(&rtc
->ops_lock
);
120 err
= __rtc_read_time(rtc
, tm
);
121 mutex_unlock(&rtc
->ops_lock
);
123 trace_rtc_read_time(rtc_tm_to_time64(tm
), err
);
126 EXPORT_SYMBOL_GPL(rtc_read_time
);
128 int rtc_set_time(struct rtc_device
*rtc
, struct rtc_time
*tm
)
132 err
= rtc_valid_tm(tm
);
136 err
= rtc_valid_range(rtc
, tm
);
140 rtc_subtract_offset(rtc
, tm
);
142 err
= mutex_lock_interruptible(&rtc
->ops_lock
);
148 else if (rtc
->ops
->set_time
)
149 err
= rtc
->ops
->set_time(rtc
->dev
.parent
, tm
);
150 else if (rtc
->ops
->set_mmss64
) {
151 time64_t secs64
= rtc_tm_to_time64(tm
);
153 err
= rtc
->ops
->set_mmss64(rtc
->dev
.parent
, secs64
);
154 } else if (rtc
->ops
->set_mmss
) {
155 time64_t secs64
= rtc_tm_to_time64(tm
);
156 err
= rtc
->ops
->set_mmss(rtc
->dev
.parent
, secs64
);
160 pm_stay_awake(rtc
->dev
.parent
);
161 mutex_unlock(&rtc
->ops_lock
);
162 /* A timer might have just expired */
163 schedule_work(&rtc
->irqwork
);
165 trace_rtc_set_time(rtc_tm_to_time64(tm
), err
);
168 EXPORT_SYMBOL_GPL(rtc_set_time
);
170 static int rtc_read_alarm_internal(struct rtc_device
*rtc
, struct rtc_wkalrm
*alarm
)
174 err
= mutex_lock_interruptible(&rtc
->ops_lock
);
178 if (rtc
->ops
== NULL
)
180 else if (!rtc
->ops
->read_alarm
)
185 alarm
->time
.tm_sec
= -1;
186 alarm
->time
.tm_min
= -1;
187 alarm
->time
.tm_hour
= -1;
188 alarm
->time
.tm_mday
= -1;
189 alarm
->time
.tm_mon
= -1;
190 alarm
->time
.tm_year
= -1;
191 alarm
->time
.tm_wday
= -1;
192 alarm
->time
.tm_yday
= -1;
193 alarm
->time
.tm_isdst
= -1;
194 err
= rtc
->ops
->read_alarm(rtc
->dev
.parent
, alarm
);
197 mutex_unlock(&rtc
->ops_lock
);
199 trace_rtc_read_alarm(rtc_tm_to_time64(&alarm
->time
), err
);
203 int __rtc_read_alarm(struct rtc_device
*rtc
, struct rtc_wkalrm
*alarm
)
206 struct rtc_time before
, now
;
208 time64_t t_now
, t_alm
;
209 enum { none
, day
, month
, year
} missing
= none
;
212 /* The lower level RTC driver may return -1 in some fields,
213 * creating invalid alarm->time values, for reasons like:
215 * - The hardware may not be capable of filling them in;
216 * many alarms match only on time-of-day fields, not
217 * day/month/year calendar data.
219 * - Some hardware uses illegal values as "wildcard" match
220 * values, which non-Linux firmware (like a BIOS) may try
221 * to set up as e.g. "alarm 15 minutes after each hour".
222 * Linux uses only oneshot alarms.
224 * When we see that here, we deal with it by using values from
225 * a current RTC timestamp for any missing (-1) values. The
226 * RTC driver prevents "periodic alarm" modes.
228 * But this can be racey, because some fields of the RTC timestamp
229 * may have wrapped in the interval since we read the RTC alarm,
230 * which would lead to us inserting inconsistent values in place
233 * Reading the alarm and timestamp in the reverse sequence
234 * would have the same race condition, and not solve the issue.
236 * So, we must first read the RTC timestamp,
237 * then read the RTC alarm value,
238 * and then read a second RTC timestamp.
240 * If any fields of the second timestamp have changed
241 * when compared with the first timestamp, then we know
242 * our timestamp may be inconsistent with that used by
243 * the low-level rtc_read_alarm_internal() function.
245 * So, when the two timestamps disagree, we just loop and do
246 * the process again to get a fully consistent set of values.
248 * This could all instead be done in the lower level driver,
249 * but since more than one lower level RTC implementation needs it,
250 * then it's probably best best to do it here instead of there..
253 /* Get the "before" timestamp */
254 err
= rtc_read_time(rtc
, &before
);
259 memcpy(&before
, &now
, sizeof(struct rtc_time
));
262 /* get the RTC alarm values, which may be incomplete */
263 err
= rtc_read_alarm_internal(rtc
, alarm
);
267 /* full-function RTCs won't have such missing fields */
268 if (rtc_valid_tm(&alarm
->time
) == 0) {
269 rtc_add_offset(rtc
, &alarm
->time
);
273 /* get the "after" timestamp, to detect wrapped fields */
274 err
= rtc_read_time(rtc
, &now
);
278 /* note that tm_sec is a "don't care" value here: */
279 } while ( before
.tm_min
!= now
.tm_min
280 || before
.tm_hour
!= now
.tm_hour
281 || before
.tm_mon
!= now
.tm_mon
282 || before
.tm_year
!= now
.tm_year
);
284 /* Fill in the missing alarm fields using the timestamp; we
285 * know there's at least one since alarm->time is invalid.
287 if (alarm
->time
.tm_sec
== -1)
288 alarm
->time
.tm_sec
= now
.tm_sec
;
289 if (alarm
->time
.tm_min
== -1)
290 alarm
->time
.tm_min
= now
.tm_min
;
291 if (alarm
->time
.tm_hour
== -1)
292 alarm
->time
.tm_hour
= now
.tm_hour
;
294 /* For simplicity, only support date rollover for now */
295 if (alarm
->time
.tm_mday
< 1 || alarm
->time
.tm_mday
> 31) {
296 alarm
->time
.tm_mday
= now
.tm_mday
;
299 if ((unsigned)alarm
->time
.tm_mon
>= 12) {
300 alarm
->time
.tm_mon
= now
.tm_mon
;
304 if (alarm
->time
.tm_year
== -1) {
305 alarm
->time
.tm_year
= now
.tm_year
;
310 /* Can't proceed if alarm is still invalid after replacing
313 err
= rtc_valid_tm(&alarm
->time
);
317 /* with luck, no rollover is needed */
318 t_now
= rtc_tm_to_time64(&now
);
319 t_alm
= rtc_tm_to_time64(&alarm
->time
);
325 /* 24 hour rollover ... if it's now 10am Monday, an alarm that
326 * that will trigger at 5am will do so at 5am Tuesday, which
327 * could also be in the next month or year. This is a common
328 * case, especially for PCs.
331 dev_dbg(&rtc
->dev
, "alarm rollover: %s\n", "day");
332 t_alm
+= 24 * 60 * 60;
333 rtc_time64_to_tm(t_alm
, &alarm
->time
);
336 /* Month rollover ... if it's the 31th, an alarm on the 3rd will
337 * be next month. An alarm matching on the 30th, 29th, or 28th
338 * may end up in the month after that! Many newer PCs support
339 * this type of alarm.
342 dev_dbg(&rtc
->dev
, "alarm rollover: %s\n", "month");
344 if (alarm
->time
.tm_mon
< 11)
345 alarm
->time
.tm_mon
++;
347 alarm
->time
.tm_mon
= 0;
348 alarm
->time
.tm_year
++;
350 days
= rtc_month_days(alarm
->time
.tm_mon
,
351 alarm
->time
.tm_year
);
352 } while (days
< alarm
->time
.tm_mday
);
355 /* Year rollover ... easy except for leap years! */
357 dev_dbg(&rtc
->dev
, "alarm rollover: %s\n", "year");
359 alarm
->time
.tm_year
++;
360 } while (!is_leap_year(alarm
->time
.tm_year
+ 1900)
361 && rtc_valid_tm(&alarm
->time
) != 0);
365 dev_warn(&rtc
->dev
, "alarm rollover not handled\n");
368 err
= rtc_valid_tm(&alarm
->time
);
372 dev_warn(&rtc
->dev
, "invalid alarm value: %d-%d-%d %d:%d:%d\n",
373 alarm
->time
.tm_year
+ 1900, alarm
->time
.tm_mon
+ 1,
374 alarm
->time
.tm_mday
, alarm
->time
.tm_hour
, alarm
->time
.tm_min
,
381 int rtc_read_alarm(struct rtc_device
*rtc
, struct rtc_wkalrm
*alarm
)
385 err
= mutex_lock_interruptible(&rtc
->ops_lock
);
388 if (rtc
->ops
== NULL
)
390 else if (!rtc
->ops
->read_alarm
)
393 memset(alarm
, 0, sizeof(struct rtc_wkalrm
));
394 alarm
->enabled
= rtc
->aie_timer
.enabled
;
395 alarm
->time
= rtc_ktime_to_tm(rtc
->aie_timer
.node
.expires
);
397 mutex_unlock(&rtc
->ops_lock
);
399 trace_rtc_read_alarm(rtc_tm_to_time64(&alarm
->time
), err
);
402 EXPORT_SYMBOL_GPL(rtc_read_alarm
);
404 static int __rtc_set_alarm(struct rtc_device
*rtc
, struct rtc_wkalrm
*alarm
)
407 time64_t now
, scheduled
;
410 err
= rtc_valid_tm(&alarm
->time
);
414 scheduled
= rtc_tm_to_time64(&alarm
->time
);
416 /* Make sure we're not setting alarms in the past */
417 err
= __rtc_read_time(rtc
, &tm
);
420 now
= rtc_tm_to_time64(&tm
);
421 if (scheduled
<= now
)
424 * XXX - We just checked to make sure the alarm time is not
425 * in the past, but there is still a race window where if
426 * the is alarm set for the next second and the second ticks
427 * over right here, before we set the alarm.
430 rtc_subtract_offset(rtc
, &alarm
->time
);
434 else if (!rtc
->ops
->set_alarm
)
437 err
= rtc
->ops
->set_alarm(rtc
->dev
.parent
, alarm
);
439 trace_rtc_set_alarm(rtc_tm_to_time64(&alarm
->time
), err
);
443 int rtc_set_alarm(struct rtc_device
*rtc
, struct rtc_wkalrm
*alarm
)
449 else if (!rtc
->ops
->set_alarm
)
452 err
= rtc_valid_tm(&alarm
->time
);
456 err
= rtc_valid_range(rtc
, &alarm
->time
);
460 err
= mutex_lock_interruptible(&rtc
->ops_lock
);
463 if (rtc
->aie_timer
.enabled
)
464 rtc_timer_remove(rtc
, &rtc
->aie_timer
);
466 rtc
->aie_timer
.node
.expires
= rtc_tm_to_ktime(alarm
->time
);
467 rtc
->aie_timer
.period
= 0;
469 err
= rtc_timer_enqueue(rtc
, &rtc
->aie_timer
);
471 mutex_unlock(&rtc
->ops_lock
);
475 EXPORT_SYMBOL_GPL(rtc_set_alarm
);
477 /* Called once per device from rtc_device_register */
478 int rtc_initialize_alarm(struct rtc_device
*rtc
, struct rtc_wkalrm
*alarm
)
483 err
= rtc_valid_tm(&alarm
->time
);
487 err
= rtc_read_time(rtc
, &now
);
491 err
= mutex_lock_interruptible(&rtc
->ops_lock
);
495 rtc
->aie_timer
.node
.expires
= rtc_tm_to_ktime(alarm
->time
);
496 rtc
->aie_timer
.period
= 0;
498 /* Alarm has to be enabled & in the future for us to enqueue it */
499 if (alarm
->enabled
&& (rtc_tm_to_ktime(now
) <
500 rtc
->aie_timer
.node
.expires
)) {
502 rtc
->aie_timer
.enabled
= 1;
503 timerqueue_add(&rtc
->timerqueue
, &rtc
->aie_timer
.node
);
504 trace_rtc_timer_enqueue(&rtc
->aie_timer
);
506 mutex_unlock(&rtc
->ops_lock
);
509 EXPORT_SYMBOL_GPL(rtc_initialize_alarm
);
511 int rtc_alarm_irq_enable(struct rtc_device
*rtc
, unsigned int enabled
)
513 int err
= mutex_lock_interruptible(&rtc
->ops_lock
);
517 if (rtc
->aie_timer
.enabled
!= enabled
) {
519 err
= rtc_timer_enqueue(rtc
, &rtc
->aie_timer
);
521 rtc_timer_remove(rtc
, &rtc
->aie_timer
);
528 else if (!rtc
->ops
->alarm_irq_enable
)
531 err
= rtc
->ops
->alarm_irq_enable(rtc
->dev
.parent
, enabled
);
533 mutex_unlock(&rtc
->ops_lock
);
535 trace_rtc_alarm_irq_enable(enabled
, err
);
538 EXPORT_SYMBOL_GPL(rtc_alarm_irq_enable
);
540 int rtc_update_irq_enable(struct rtc_device
*rtc
, unsigned int enabled
)
542 int err
= mutex_lock_interruptible(&rtc
->ops_lock
);
546 #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
547 if (enabled
== 0 && rtc
->uie_irq_active
) {
548 mutex_unlock(&rtc
->ops_lock
);
549 return rtc_dev_update_irq_enable_emul(rtc
, 0);
552 /* make sure we're changing state */
553 if (rtc
->uie_rtctimer
.enabled
== enabled
)
556 if (rtc
->uie_unsupported
) {
565 __rtc_read_time(rtc
, &tm
);
566 onesec
= ktime_set(1, 0);
567 now
= rtc_tm_to_ktime(tm
);
568 rtc
->uie_rtctimer
.node
.expires
= ktime_add(now
, onesec
);
569 rtc
->uie_rtctimer
.period
= ktime_set(1, 0);
570 err
= rtc_timer_enqueue(rtc
, &rtc
->uie_rtctimer
);
572 rtc_timer_remove(rtc
, &rtc
->uie_rtctimer
);
575 mutex_unlock(&rtc
->ops_lock
);
576 #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL
578 * Enable emulation if the driver did not provide
579 * the update_irq_enable function pointer or if returned
580 * -EINVAL to signal that it has been configured without
581 * interrupts or that are not available at the moment.
584 err
= rtc_dev_update_irq_enable_emul(rtc
, enabled
);
589 EXPORT_SYMBOL_GPL(rtc_update_irq_enable
);
593 * rtc_handle_legacy_irq - AIE, UIE and PIE event hook
594 * @rtc: pointer to the rtc device
596 * This function is called when an AIE, UIE or PIE mode interrupt
597 * has occurred (or been emulated).
599 * Triggers the registered irq_task function callback.
601 void rtc_handle_legacy_irq(struct rtc_device
*rtc
, int num
, int mode
)
605 /* mark one irq of the appropriate mode */
606 spin_lock_irqsave(&rtc
->irq_lock
, flags
);
607 rtc
->irq_data
= (rtc
->irq_data
+ (num
<< 8)) | (RTC_IRQF
|mode
);
608 spin_unlock_irqrestore(&rtc
->irq_lock
, flags
);
610 wake_up_interruptible(&rtc
->irq_queue
);
611 kill_fasync(&rtc
->async_queue
, SIGIO
, POLL_IN
);
616 * rtc_aie_update_irq - AIE mode rtctimer hook
617 * @private: pointer to the rtc_device
619 * This functions is called when the aie_timer expires.
621 void rtc_aie_update_irq(void *private)
623 struct rtc_device
*rtc
= (struct rtc_device
*)private;
624 rtc_handle_legacy_irq(rtc
, 1, RTC_AF
);
629 * rtc_uie_update_irq - UIE mode rtctimer hook
630 * @private: pointer to the rtc_device
632 * This functions is called when the uie_timer expires.
634 void rtc_uie_update_irq(void *private)
636 struct rtc_device
*rtc
= (struct rtc_device
*)private;
637 rtc_handle_legacy_irq(rtc
, 1, RTC_UF
);
642 * rtc_pie_update_irq - PIE mode hrtimer hook
643 * @timer: pointer to the pie mode hrtimer
645 * This function is used to emulate PIE mode interrupts
646 * using an hrtimer. This function is called when the periodic
649 enum hrtimer_restart
rtc_pie_update_irq(struct hrtimer
*timer
)
651 struct rtc_device
*rtc
;
654 rtc
= container_of(timer
, struct rtc_device
, pie_timer
);
656 period
= NSEC_PER_SEC
/ rtc
->irq_freq
;
657 count
= hrtimer_forward_now(timer
, period
);
659 rtc_handle_legacy_irq(rtc
, count
, RTC_PF
);
661 return HRTIMER_RESTART
;
665 * rtc_update_irq - Triggered when a RTC interrupt occurs.
666 * @rtc: the rtc device
667 * @num: how many irqs are being reported (usually one)
668 * @events: mask of RTC_IRQF with one or more of RTC_PF, RTC_AF, RTC_UF
671 void rtc_update_irq(struct rtc_device
*rtc
,
672 unsigned long num
, unsigned long events
)
674 if (IS_ERR_OR_NULL(rtc
))
677 pm_stay_awake(rtc
->dev
.parent
);
678 schedule_work(&rtc
->irqwork
);
680 EXPORT_SYMBOL_GPL(rtc_update_irq
);
682 static int __rtc_match(struct device
*dev
, const void *data
)
684 const char *name
= data
;
686 if (strcmp(dev_name(dev
), name
) == 0)
691 struct rtc_device
*rtc_class_open(const char *name
)
694 struct rtc_device
*rtc
= NULL
;
696 dev
= class_find_device(rtc_class
, NULL
, name
, __rtc_match
);
698 rtc
= to_rtc_device(dev
);
701 if (!try_module_get(rtc
->owner
)) {
709 EXPORT_SYMBOL_GPL(rtc_class_open
);
711 void rtc_class_close(struct rtc_device
*rtc
)
713 module_put(rtc
->owner
);
714 put_device(&rtc
->dev
);
716 EXPORT_SYMBOL_GPL(rtc_class_close
);
718 static int rtc_update_hrtimer(struct rtc_device
*rtc
, int enabled
)
721 * We always cancel the timer here first, because otherwise
722 * we could run into BUG_ON(timer->state != HRTIMER_STATE_CALLBACK);
723 * when we manage to start the timer before the callback
724 * returns HRTIMER_RESTART.
726 * We cannot use hrtimer_cancel() here as a running callback
727 * could be blocked on rtc->irq_task_lock and hrtimer_cancel()
728 * would spin forever.
730 if (hrtimer_try_to_cancel(&rtc
->pie_timer
) < 0)
734 ktime_t period
= NSEC_PER_SEC
/ rtc
->irq_freq
;
736 hrtimer_start(&rtc
->pie_timer
, period
, HRTIMER_MODE_REL
);
742 * rtc_irq_set_state - enable/disable 2^N Hz periodic IRQs
743 * @rtc: the rtc device
744 * @task: currently registered with rtc_irq_register()
745 * @enabled: true to enable periodic IRQs
748 * Note that rtc_irq_set_freq() should previously have been used to
749 * specify the desired frequency of periodic IRQ.
751 int rtc_irq_set_state(struct rtc_device
*rtc
, int enabled
)
755 while (rtc_update_hrtimer(rtc
, enabled
) < 0)
758 rtc
->pie_enabled
= enabled
;
760 trace_rtc_irq_set_state(enabled
, err
);
765 * rtc_irq_set_freq - set 2^N Hz periodic IRQ frequency for IRQ
766 * @rtc: the rtc device
767 * @task: currently registered with rtc_irq_register()
768 * @freq: positive frequency
771 * Note that rtc_irq_set_state() is used to enable or disable the
774 int rtc_irq_set_freq(struct rtc_device
*rtc
, int freq
)
778 if (freq
<= 0 || freq
> RTC_MAX_FREQ
)
781 rtc
->irq_freq
= freq
;
782 while (rtc
->pie_enabled
&& rtc_update_hrtimer(rtc
, 1) < 0)
785 trace_rtc_irq_set_freq(freq
, err
);
790 * rtc_timer_enqueue - Adds a rtc_timer to the rtc_device timerqueue
792 * @timer timer being added.
794 * Enqueues a timer onto the rtc devices timerqueue and sets
795 * the next alarm event appropriately.
797 * Sets the enabled bit on the added timer.
799 * Must hold ops_lock for proper serialization of timerqueue
801 static int rtc_timer_enqueue(struct rtc_device
*rtc
, struct rtc_timer
*timer
)
803 struct timerqueue_node
*next
= timerqueue_getnext(&rtc
->timerqueue
);
808 __rtc_read_time(rtc
, &tm
);
809 now
= rtc_tm_to_ktime(tm
);
811 /* Skip over expired timers */
813 if (next
->expires
>= now
)
815 next
= timerqueue_iterate_next(next
);
818 timerqueue_add(&rtc
->timerqueue
, &timer
->node
);
819 trace_rtc_timer_enqueue(timer
);
820 if (!next
|| ktime_before(timer
->node
.expires
, next
->expires
)) {
821 struct rtc_wkalrm alarm
;
823 alarm
.time
= rtc_ktime_to_tm(timer
->node
.expires
);
825 err
= __rtc_set_alarm(rtc
, &alarm
);
827 pm_stay_awake(rtc
->dev
.parent
);
828 schedule_work(&rtc
->irqwork
);
830 timerqueue_del(&rtc
->timerqueue
, &timer
->node
);
831 trace_rtc_timer_dequeue(timer
);
839 static void rtc_alarm_disable(struct rtc_device
*rtc
)
841 if (!rtc
->ops
|| !rtc
->ops
->alarm_irq_enable
)
844 rtc
->ops
->alarm_irq_enable(rtc
->dev
.parent
, false);
845 trace_rtc_alarm_irq_enable(0, 0);
849 * rtc_timer_remove - Removes a rtc_timer from the rtc_device timerqueue
851 * @timer timer being removed.
853 * Removes a timer onto the rtc devices timerqueue and sets
854 * the next alarm event appropriately.
856 * Clears the enabled bit on the removed timer.
858 * Must hold ops_lock for proper serialization of timerqueue
860 static void rtc_timer_remove(struct rtc_device
*rtc
, struct rtc_timer
*timer
)
862 struct timerqueue_node
*next
= timerqueue_getnext(&rtc
->timerqueue
);
863 timerqueue_del(&rtc
->timerqueue
, &timer
->node
);
864 trace_rtc_timer_dequeue(timer
);
866 if (next
== &timer
->node
) {
867 struct rtc_wkalrm alarm
;
869 next
= timerqueue_getnext(&rtc
->timerqueue
);
871 rtc_alarm_disable(rtc
);
874 alarm
.time
= rtc_ktime_to_tm(next
->expires
);
876 err
= __rtc_set_alarm(rtc
, &alarm
);
878 pm_stay_awake(rtc
->dev
.parent
);
879 schedule_work(&rtc
->irqwork
);
885 * rtc_timer_do_work - Expires rtc timers
887 * @timer timer being removed.
889 * Expires rtc timers. Reprograms next alarm event if needed.
890 * Called via worktask.
892 * Serializes access to timerqueue via ops_lock mutex
894 void rtc_timer_do_work(struct work_struct
*work
)
896 struct rtc_timer
*timer
;
897 struct timerqueue_node
*next
;
901 struct rtc_device
*rtc
=
902 container_of(work
, struct rtc_device
, irqwork
);
904 mutex_lock(&rtc
->ops_lock
);
906 __rtc_read_time(rtc
, &tm
);
907 now
= rtc_tm_to_ktime(tm
);
908 while ((next
= timerqueue_getnext(&rtc
->timerqueue
))) {
909 if (next
->expires
> now
)
913 timer
= container_of(next
, struct rtc_timer
, node
);
914 timerqueue_del(&rtc
->timerqueue
, &timer
->node
);
915 trace_rtc_timer_dequeue(timer
);
918 timer
->func(timer
->private_data
);
920 trace_rtc_timer_fired(timer
);
921 /* Re-add/fwd periodic timers */
922 if (ktime_to_ns(timer
->period
)) {
923 timer
->node
.expires
= ktime_add(timer
->node
.expires
,
926 timerqueue_add(&rtc
->timerqueue
, &timer
->node
);
927 trace_rtc_timer_enqueue(timer
);
933 struct rtc_wkalrm alarm
;
937 alarm
.time
= rtc_ktime_to_tm(next
->expires
);
940 err
= __rtc_set_alarm(rtc
, &alarm
);
947 timer
= container_of(next
, struct rtc_timer
, node
);
948 timerqueue_del(&rtc
->timerqueue
, &timer
->node
);
949 trace_rtc_timer_dequeue(timer
);
951 dev_err(&rtc
->dev
, "__rtc_set_alarm: err=%d\n", err
);
955 rtc_alarm_disable(rtc
);
957 pm_relax(rtc
->dev
.parent
);
958 mutex_unlock(&rtc
->ops_lock
);
962 /* rtc_timer_init - Initializes an rtc_timer
963 * @timer: timer to be intiialized
964 * @f: function pointer to be called when timer fires
965 * @data: private data passed to function pointer
967 * Kernel interface to initializing an rtc_timer.
969 void rtc_timer_init(struct rtc_timer
*timer
, void (*f
)(void *p
), void *data
)
971 timerqueue_init(&timer
->node
);
974 timer
->private_data
= data
;
977 /* rtc_timer_start - Sets an rtc_timer to fire in the future
978 * @ rtc: rtc device to be used
979 * @ timer: timer being set
980 * @ expires: time at which to expire the timer
981 * @ period: period that the timer will recur
983 * Kernel interface to set an rtc_timer
985 int rtc_timer_start(struct rtc_device
*rtc
, struct rtc_timer
*timer
,
986 ktime_t expires
, ktime_t period
)
989 mutex_lock(&rtc
->ops_lock
);
991 rtc_timer_remove(rtc
, timer
);
993 timer
->node
.expires
= expires
;
994 timer
->period
= period
;
996 ret
= rtc_timer_enqueue(rtc
, timer
);
998 mutex_unlock(&rtc
->ops_lock
);
1002 /* rtc_timer_cancel - Stops an rtc_timer
1003 * @ rtc: rtc device to be used
1004 * @ timer: timer being set
1006 * Kernel interface to cancel an rtc_timer
1008 void rtc_timer_cancel(struct rtc_device
*rtc
, struct rtc_timer
*timer
)
1010 mutex_lock(&rtc
->ops_lock
);
1012 rtc_timer_remove(rtc
, timer
);
1013 mutex_unlock(&rtc
->ops_lock
);
1017 * rtc_read_offset - Read the amount of rtc offset in parts per billion
1018 * @ rtc: rtc device to be used
1019 * @ offset: the offset in parts per billion
1021 * see below for details.
1023 * Kernel interface to read rtc clock offset
1024 * Returns 0 on success, or a negative number on error.
1025 * If read_offset() is not implemented for the rtc, return -EINVAL
1027 int rtc_read_offset(struct rtc_device
*rtc
, long *offset
)
1034 if (!rtc
->ops
->read_offset
)
1037 mutex_lock(&rtc
->ops_lock
);
1038 ret
= rtc
->ops
->read_offset(rtc
->dev
.parent
, offset
);
1039 mutex_unlock(&rtc
->ops_lock
);
1041 trace_rtc_read_offset(*offset
, ret
);
1046 * rtc_set_offset - Adjusts the duration of the average second
1047 * @ rtc: rtc device to be used
1048 * @ offset: the offset in parts per billion
1050 * Some rtc's allow an adjustment to the average duration of a second
1051 * to compensate for differences in the actual clock rate due to temperature,
1052 * the crystal, capacitor, etc.
1054 * The adjustment applied is as follows:
1055 * t = t0 * (1 + offset * 1e-9)
1056 * where t0 is the measured length of 1 RTC second with offset = 0
1058 * Kernel interface to adjust an rtc clock offset.
1059 * Return 0 on success, or a negative number on error.
1060 * If the rtc offset is not setable (or not implemented), return -EINVAL
1062 int rtc_set_offset(struct rtc_device
*rtc
, long offset
)
1069 if (!rtc
->ops
->set_offset
)
1072 mutex_lock(&rtc
->ops_lock
);
1073 ret
= rtc
->ops
->set_offset(rtc
->dev
.parent
, offset
);
1074 mutex_unlock(&rtc
->ops_lock
);
1076 trace_rtc_set_offset(offset
, ret
);