1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_ALARMTIMER_H
3 #define _LINUX_ALARMTIMER_H
5 #include <linux/time.h>
6 #include <linux/hrtimer.h>
7 #include <linux/timerqueue.h>
10 enum alarmtimer_type
{
14 /* Supported types end here */
17 /* Used for tracing information. No usable types. */
18 ALARM_REALTIME_FREEZER
,
19 ALARM_BOOTTIME_FREEZER
,
22 enum alarmtimer_restart
{
28 #define ALARMTIMER_STATE_INACTIVE 0x00
29 #define ALARMTIMER_STATE_ENQUEUED 0x01
32 * struct alarm - Alarm timer structure
33 * @node: timerqueue node for adding to the event list this value
34 * also includes the expiration time.
35 * @timer: hrtimer used to schedule events while running
36 * @function: Function pointer to be executed when the timer fires.
37 * @type: Alarm type (BOOTTIME/REALTIME).
38 * @state: Flag that represents if the alarm is set to fire or not.
39 * @data: Internal data value.
42 struct timerqueue_node node
;
44 enum alarmtimer_restart (*function
)(struct alarm
*, ktime_t now
);
45 enum alarmtimer_type type
;
50 void alarm_init(struct alarm
*alarm
, enum alarmtimer_type type
,
51 enum alarmtimer_restart (*function
)(struct alarm
*, ktime_t
));
52 void alarm_start(struct alarm
*alarm
, ktime_t start
);
53 void alarm_start_relative(struct alarm
*alarm
, ktime_t start
);
54 void alarm_restart(struct alarm
*alarm
);
55 int alarm_try_to_cancel(struct alarm
*alarm
);
56 int alarm_cancel(struct alarm
*alarm
);
58 u64
alarm_forward(struct alarm
*alarm
, ktime_t now
, ktime_t interval
);
59 u64
alarm_forward_now(struct alarm
*alarm
, ktime_t interval
);
60 ktime_t
alarm_expires_remaining(const struct alarm
*alarm
);
62 /* Provide way to access the rtc device being used by alarmtimers */
63 struct rtc_device
*alarmtimer_get_rtcdev(void);