blob: 0760ca1cb009dab5f0f844a1f706f8c089fbf27f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
John Stultzff3ead92011-01-11 09:42:13 -08002#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
10enum alarmtimer_type {
11 ALARM_REALTIME,
12 ALARM_BOOTTIME,
13
Baolin Wang4a057542016-11-28 14:35:21 -080014 /* Supported types end here */
John Stultzff3ead92011-01-11 09:42:13 -080015 ALARM_NUMTYPE,
Baolin Wang4a057542016-11-28 14:35:21 -080016
17 /* Used for tracing information. No usable types. */
18 ALARM_REALTIME_FREEZER,
19 ALARM_BOOTTIME_FREEZER,
John Stultzff3ead92011-01-11 09:42:13 -080020};
21
John Stultz4b413082011-08-10 10:37:59 -070022enum alarmtimer_restart {
23 ALARMTIMER_NORESTART,
24 ALARMTIMER_RESTART,
25};
26
John Stultza28cde82011-08-10 12:30:21 -070027
28#define ALARMTIMER_STATE_INACTIVE 0x00
29#define ALARMTIMER_STATE_ENQUEUED 0x01
John Stultza28cde82011-08-10 12:30:21 -070030
John Stultz180bf812011-04-28 12:58:11 -070031/**
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 Patelaf4afb42016-06-14 11:00:42 +020035 * @timer: hrtimer used to schedule events while running
John Stultz180bf812011-04-28 12:58:11 -070036 * @function: Function pointer to be executed when the timer fires.
Pratyush Patelaf4afb42016-06-14 11:00:42 +020037 * @type: Alarm type (BOOTTIME/REALTIME).
38 * @state: Flag that represents if the alarm is set to fire or not.
John Stultz180bf812011-04-28 12:58:11 -070039 * @data: Internal data value.
40 */
John Stultzff3ead92011-01-11 09:42:13 -080041struct alarm {
42 struct timerqueue_node node;
John Stultzdae373b2012-09-13 19:12:16 -040043 struct hrtimer timer;
John Stultz4b413082011-08-10 10:37:59 -070044 enum alarmtimer_restart (*function)(struct alarm *, ktime_t now);
John Stultzff3ead92011-01-11 09:42:13 -080045 enum alarmtimer_type type;
John Stultza28cde82011-08-10 12:30:21 -070046 int state;
John Stultzff3ead92011-01-11 09:42:13 -080047 void *data;
48};
49
50void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
John Stultz4b413082011-08-10 10:37:59 -070051 enum alarmtimer_restart (*function)(struct alarm *, ktime_t));
Thomas Gleixnerb1932172015-04-14 21:09:18 +000052void alarm_start(struct alarm *alarm, ktime_t start);
53void alarm_start_relative(struct alarm *alarm, ktime_t start);
Todd Poynor6cffe002013-05-15 14:38:11 -070054void alarm_restart(struct alarm *alarm);
John Stultz9082c462011-08-10 12:41:36 -070055int alarm_try_to_cancel(struct alarm *alarm);
56int alarm_cancel(struct alarm *alarm);
John Stultzff3ead92011-01-11 09:42:13 -080057
John Stultzdce75a82011-08-10 11:31:03 -070058u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval);
Todd Poynor6cffe002013-05-15 14:38:11 -070059u64 alarm_forward_now(struct alarm *alarm, ktime_t interval);
60ktime_t alarm_expires_remaining(const struct alarm *alarm);
John Stultzdce75a82011-08-10 11:31:03 -070061
John Stultz57c498f2012-04-20 12:31:45 -070062/* Provide way to access the rtc device being used by alarmtimers */
63struct rtc_device *alarmtimer_get_rtcdev(void);
64
John Stultzff3ead92011-01-11 09:42:13 -080065#endif