blob: b017caa03037e0f9efebf4d8f12f0e5e1848bb59 [file] [log] [blame]
Arve Hjønnevågb54b33d2008-10-14 17:38:04 -07001/* include/linux/android_alarm.h
2 *
3 * Copyright (C) 2006-2007 Google, Inc.
4 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 */
15
16#ifndef _LINUX_ANDROID_ALARM_H
17#define _LINUX_ANDROID_ALARM_H
18
19#include <linux/ioctl.h>
20#include <linux/time.h>
21
22enum android_alarm_type {
23 /* return code bit numbers or set alarm arg */
24 ANDROID_ALARM_RTC_WAKEUP,
25 ANDROID_ALARM_RTC,
26 ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP,
27 ANDROID_ALARM_ELAPSED_REALTIME,
Figo Wang091c9af2013-09-12 20:41:27 +080028 ANDROID_ALARM_RTC_POWEROFF_WAKEUP,
Arve Hjønnevågb54b33d2008-10-14 17:38:04 -070029 ANDROID_ALARM_SYSTEMTIME,
30
31 ANDROID_ALARM_TYPE_COUNT,
32
33 /* return code bit numbers */
34 /* ANDROID_ALARM_TIME_CHANGE = 16 */
35};
36
Arve Hjønnevågfa565402009-05-04 14:09:15 -070037#ifdef __KERNEL__
38
39#include <linux/ktime.h>
40#include <linux/rbtree.h>
41
42/*
43 * The alarm interface is similar to the hrtimer interface but adds support
44 * for wakeup from suspend. It also adds an elapsed realtime clock that can
45 * be used for periodic timers that need to keep runing while the system is
46 * suspended and not be disrupted when the wall time is set.
47 */
48
49/**
50 * struct alarm - the basic alarm structure
51 * @node: red black tree node for time ordered insertion
52 * @type: alarm type. rtc/elapsed-realtime/systemtime, wakeup/non-wakeup.
53 * @softexpires: the absolute earliest expiry time of the alarm.
54 * @expires: the absolute expiry time.
55 * @function: alarm expiry callback function
56 *
57 * The alarm structure must be initialized by alarm_init()
58 *
59 */
60
61struct alarm {
62 struct rb_node node;
63 enum android_alarm_type type;
64 ktime_t softexpires;
65 ktime_t expires;
66 void (*function)(struct alarm *);
67};
68
69void alarm_init(struct alarm *alarm,
70 enum android_alarm_type type, void (*function)(struct alarm *));
71void alarm_start_range(struct alarm *alarm, ktime_t start, ktime_t end);
72int alarm_try_to_cancel(struct alarm *alarm);
73int alarm_cancel(struct alarm *alarm);
Ashay Jaiswalc1b2e472013-05-17 15:15:02 +053074void set_power_on_alarm(long secs);
Arve Hjønnevågfa565402009-05-04 14:09:15 -070075ktime_t alarm_get_elapsed_realtime(void);
76
77/* set rtc while preserving elapsed realtime */
78int alarm_set_rtc(const struct timespec ts);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070079void alarm_update_timedelta(struct timespec tv, struct timespec ts);
Arve Hjønnevågfa565402009-05-04 14:09:15 -070080
81#endif
82
Arve Hjønnevågb54b33d2008-10-14 17:38:04 -070083enum android_alarm_return_flags {
84 ANDROID_ALARM_RTC_WAKEUP_MASK = 1U << ANDROID_ALARM_RTC_WAKEUP,
85 ANDROID_ALARM_RTC_MASK = 1U << ANDROID_ALARM_RTC,
86 ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP_MASK =
87 1U << ANDROID_ALARM_ELAPSED_REALTIME_WAKEUP,
88 ANDROID_ALARM_ELAPSED_REALTIME_MASK =
89 1U << ANDROID_ALARM_ELAPSED_REALTIME,
Figo Wang091c9af2013-09-12 20:41:27 +080090 ANDROID_ALARM_RTC_POWEROFF_WAKEUP_MASK = 1U << ANDROID_ALARM_RTC_POWEROFF_WAKEUP,
Arve Hjønnevågb54b33d2008-10-14 17:38:04 -070091 ANDROID_ALARM_SYSTEMTIME_MASK = 1U << ANDROID_ALARM_SYSTEMTIME,
92 ANDROID_ALARM_TIME_CHANGE_MASK = 1U << 16
93};
94
95/* Disable alarm */
96#define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4))
97
98/* Ack last alarm and wait for next */
99#define ANDROID_ALARM_WAIT _IO('a', 1)
100
101#define ALARM_IOW(c, type, size) _IOW('a', (c) | ((type) << 4), size)
102/* Set alarm */
103#define ANDROID_ALARM_SET(type) ALARM_IOW(2, type, struct timespec)
104#define ANDROID_ALARM_SET_AND_WAIT(type) ALARM_IOW(3, type, struct timespec)
105#define ANDROID_ALARM_GET_TIME(type) ALARM_IOW(4, type, struct timespec)
106#define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
107#define ANDROID_ALARM_BASE_CMD(cmd) (cmd & ~(_IOC(0, 0, 0xf0, 0)))
108#define ANDROID_ALARM_IOCTL_TO_TYPE(cmd) (_IOC_NR(cmd) >> 4)
109
110#endif