2011-01-11 17:42:13 +00:00
|
|
|
#ifndef _LINUX_ALARMTIMER_H
|
|
|
|
#define _LINUX_ALARMTIMER_H
|
|
|
|
|
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/hrtimer.h>
|
|
|
|
#include <linux/timerqueue.h>
|
|
|
|
#include <linux/rtc.h>
|
2015-07-07 10:30:55 +00:00
|
|
|
#include <linux/types.h>
|
2011-01-11 17:42:13 +00:00
|
|
|
|
|
|
|
enum alarmtimer_type {
|
|
|
|
ALARM_REALTIME,
|
|
|
|
ALARM_BOOTTIME,
|
2015-07-07 10:30:55 +00:00
|
|
|
ALARM_POWEROFF_REALTIME,
|
2011-01-11 17:42:13 +00:00
|
|
|
|
|
|
|
ALARM_NUMTYPE,
|
|
|
|
};
|
|
|
|
|
2011-08-10 17:37:59 +00:00
|
|
|
enum alarmtimer_restart {
|
|
|
|
ALARMTIMER_NORESTART,
|
|
|
|
ALARMTIMER_RESTART,
|
|
|
|
};
|
|
|
|
|
2011-08-10 19:30:21 +00:00
|
|
|
|
|
|
|
#define ALARMTIMER_STATE_INACTIVE 0x00
|
|
|
|
#define ALARMTIMER_STATE_ENQUEUED 0x01
|
|
|
|
|
2017-04-18 01:29:57 +00:00
|
|
|
#define pr_alarm(debug_level_mask, args...) \
|
|
|
|
do { \
|
|
|
|
if (debug_mask & ANDROID_ALARM_PRINT_##debug_level_mask) { \
|
|
|
|
pr_info(args); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2011-04-28 19:58:11 +00:00
|
|
|
/**
|
|
|
|
* struct alarm - Alarm timer structure
|
|
|
|
* @node: timerqueue node for adding to the event list this value
|
|
|
|
* also includes the expiration time.
|
|
|
|
* @period: Period for recuring alarms
|
|
|
|
* @function: Function pointer to be executed when the timer fires.
|
|
|
|
* @type: Alarm type (BOOTTIME/REALTIME)
|
|
|
|
* @enabled: Flag that represents if the alarm is set to fire or not
|
|
|
|
* @data: Internal data value.
|
|
|
|
*/
|
2011-01-11 17:42:13 +00:00
|
|
|
struct alarm {
|
|
|
|
struct timerqueue_node node;
|
2012-09-13 23:12:16 +00:00
|
|
|
struct hrtimer timer;
|
2011-08-10 17:37:59 +00:00
|
|
|
enum alarmtimer_restart (*function)(struct alarm *, ktime_t now);
|
2011-01-11 17:42:13 +00:00
|
|
|
enum alarmtimer_type type;
|
2011-08-10 19:30:21 +00:00
|
|
|
int state;
|
2011-01-11 17:42:13 +00:00
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
|
|
|
void alarm_init(struct alarm *alarm, enum alarmtimer_type type,
|
2011-08-10 17:37:59 +00:00
|
|
|
enum alarmtimer_restart (*function)(struct alarm *, ktime_t));
|
2012-09-13 23:12:16 +00:00
|
|
|
int alarm_start(struct alarm *alarm, ktime_t start);
|
2013-05-11 00:41:06 +00:00
|
|
|
int alarm_start_relative(struct alarm *alarm, ktime_t start);
|
2013-05-08 22:49:18 +00:00
|
|
|
void alarm_restart(struct alarm *alarm);
|
2011-08-10 19:41:36 +00:00
|
|
|
int alarm_try_to_cancel(struct alarm *alarm);
|
|
|
|
int alarm_cancel(struct alarm *alarm);
|
2015-07-07 10:30:55 +00:00
|
|
|
void set_power_on_alarm(void);
|
2015-01-30 11:44:48 +00:00
|
|
|
void power_on_alarm_init(void);
|
2015-07-07 10:30:55 +00:00
|
|
|
enum alarmtimer_type clock2alarm(clockid_t clockid);
|
2017-04-18 01:29:57 +00:00
|
|
|
#ifdef CONFIG_RTC_AUTO_PWRON
|
|
|
|
int alarm_set_alarm(char *alarm_data);
|
|
|
|
#endif /* CONFIG_AUTO_PWRON */
|
2011-01-11 17:42:13 +00:00
|
|
|
|
2011-08-10 18:31:03 +00:00
|
|
|
u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval);
|
2013-05-11 00:10:42 +00:00
|
|
|
u64 alarm_forward_now(struct alarm *alarm, ktime_t interval);
|
2013-05-08 03:43:29 +00:00
|
|
|
ktime_t alarm_expires_remaining(const struct alarm *alarm);
|
2011-08-10 18:31:03 +00:00
|
|
|
|
2012-04-20 19:31:45 +00:00
|
|
|
/* Provide way to access the rtc device being used by alarmtimers */
|
|
|
|
struct rtc_device *alarmtimer_get_rtcdev(void);
|
2017-04-18 01:29:57 +00:00
|
|
|
#if defined(CONFIG_RTC_AUTO_PWRON)
|
|
|
|
int alarm_set_alarm_boot(char *alarm_data);
|
|
|
|
#endif
|
|
|
|
|
2015-01-06 07:33:49 +00:00
|
|
|
#ifdef CONFIG_RTC_DRV_QPNP
|
|
|
|
extern bool poweron_alarm;
|
|
|
|
#endif
|
2012-04-20 19:31:45 +00:00
|
|
|
|
2011-01-11 17:42:13 +00:00
|
|
|
#endif
|