Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 2 | #ifndef _LINUX_ALARMTIMER_H |
| 3 | #define _LINUX_ALARMTIMER_H |
| 4 | |
| 5 | #include <linux/time.h> |
| 6 | #include <linux/hrtimer.h> |
| 7 | #include <linux/timerqueue.h> |
| 8 | #include <linux/rtc.h> |
| 9 | |
| 10 | enum alarmtimer_type { |
| 11 | ALARM_REALTIME, |
| 12 | ALARM_BOOTTIME, |
| 13 | |
Baolin Wang | 4a05754 | 2016-11-28 14:35:21 -0800 | [diff] [blame] | 14 | /* Supported types end here */ |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 15 | ALARM_NUMTYPE, |
Baolin Wang | 4a05754 | 2016-11-28 14:35:21 -0800 | [diff] [blame] | 16 | |
| 17 | /* Used for tracing information. No usable types. */ |
| 18 | ALARM_REALTIME_FREEZER, |
| 19 | ALARM_BOOTTIME_FREEZER, |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 20 | }; |
| 21 | |
John Stultz | 4b41308 | 2011-08-10 10:37:59 -0700 | [diff] [blame] | 22 | enum alarmtimer_restart { |
| 23 | ALARMTIMER_NORESTART, |
| 24 | ALARMTIMER_RESTART, |
| 25 | }; |
| 26 | |
John Stultz | a28cde8 | 2011-08-10 12:30:21 -0700 | [diff] [blame] | 27 | |
| 28 | #define ALARMTIMER_STATE_INACTIVE 0x00 |
| 29 | #define ALARMTIMER_STATE_ENQUEUED 0x01 |
John Stultz | a28cde8 | 2011-08-10 12:30:21 -0700 | [diff] [blame] | 30 | |
John Stultz | 180bf81 | 2011-04-28 12:58:11 -0700 | [diff] [blame] | 31 | /** |
| 32 | * struct alarm - Alarm timer structure |
| 33 | * @node: timerqueue node for adding to the event list this value |
| 34 | * also includes the expiration time. |
Pratyush Patel | af4afb4 | 2016-06-14 11:00:42 +0200 | [diff] [blame] | 35 | * @timer: hrtimer used to schedule events while running |
John Stultz | 180bf81 | 2011-04-28 12:58:11 -0700 | [diff] [blame] | 36 | * @function: Function pointer to be executed when the timer fires. |
Pratyush Patel | af4afb4 | 2016-06-14 11:00:42 +0200 | [diff] [blame] | 37 | * @type: Alarm type (BOOTTIME/REALTIME). |
| 38 | * @state: Flag that represents if the alarm is set to fire or not. |
John Stultz | 180bf81 | 2011-04-28 12:58:11 -0700 | [diff] [blame] | 39 | * @data: Internal data value. |
| 40 | */ |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 41 | struct alarm { |
| 42 | struct timerqueue_node node; |
John Stultz | dae373b | 2012-09-13 19:12:16 -0400 | [diff] [blame] | 43 | struct hrtimer timer; |
John Stultz | 4b41308 | 2011-08-10 10:37:59 -0700 | [diff] [blame] | 44 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t now); |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 45 | enum alarmtimer_type type; |
John Stultz | a28cde8 | 2011-08-10 12:30:21 -0700 | [diff] [blame] | 46 | int state; |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 47 | void *data; |
| 48 | }; |
| 49 | |
| 50 | void alarm_init(struct alarm *alarm, enum alarmtimer_type type, |
John Stultz | 4b41308 | 2011-08-10 10:37:59 -0700 | [diff] [blame] | 51 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t)); |
Thomas Gleixner | b193217 | 2015-04-14 21:09:18 +0000 | [diff] [blame] | 52 | void alarm_start(struct alarm *alarm, ktime_t start); |
| 53 | void alarm_start_relative(struct alarm *alarm, ktime_t start); |
Todd Poynor | 6cffe00 | 2013-05-15 14:38:11 -0700 | [diff] [blame] | 54 | void alarm_restart(struct alarm *alarm); |
John Stultz | 9082c46 | 2011-08-10 12:41:36 -0700 | [diff] [blame] | 55 | int alarm_try_to_cancel(struct alarm *alarm); |
| 56 | int alarm_cancel(struct alarm *alarm); |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 57 | |
John Stultz | dce75a8 | 2011-08-10 11:31:03 -0700 | [diff] [blame] | 58 | u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval); |
Todd Poynor | 6cffe00 | 2013-05-15 14:38:11 -0700 | [diff] [blame] | 59 | u64 alarm_forward_now(struct alarm *alarm, ktime_t interval); |
| 60 | ktime_t alarm_expires_remaining(const struct alarm *alarm); |
John Stultz | dce75a8 | 2011-08-10 11:31:03 -0700 | [diff] [blame] | 61 | |
John Stultz | 57c498f | 2012-04-20 12:31:45 -0700 | [diff] [blame] | 62 | /* Provide way to access the rtc device being used by alarmtimers */ |
| 63 | struct rtc_device *alarmtimer_get_rtcdev(void); |
| 64 | |
John Stultz | ff3ead9 | 2011-01-11 09:42:13 -0800 | [diff] [blame] | 65 | #endif |