blob: 7a00b23751208e8bb1841f8ebe9821167011fdc3 [file] [log] [blame]
Girish Mahadevan388c3082012-09-10 15:30:36 -06001/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#ifndef __ARCH_ARM_MACH_MSM_EVENT_TIMER_H
15#define __ARCH_ARM_MACH_MSM_EVENT_TIMER_H
16
17#include <linux/hrtimer.h>
18
19struct event_timer_info;
20
21#ifdef CONFIG_MSM_EVENT_TIMER
22/**
23 * add_event_timer() : Add a wakeup event. Intended to be called
24 * by clients once. Returns a handle to be used
25 * for future transactions.
26 * @function : The callback function will be called when event
27 * timer expires.
28 * @data : Callback data provided by client.
29 */
30struct event_timer_info *add_event_timer(void (*function)(void *), void *data);
31
32/** activate_event_timer() : Set the expiration time for an event in absolute
33 * ktime. This is a oneshot event timer, clients
34 * should call this again to set another expiration.
35 * @event : Event handle.
36 * @event_time : Event time in absolute ktime.
37 */
38void activate_event_timer(struct event_timer_info *event, ktime_t event_time);
39
40/**
41 * deactivate_event_timer() : Deactivate an event timer.
42 * @event: event handle.
43 */
44void deactivate_event_timer(struct event_timer_info *event);
45
46/**
47 * destroy_event_timer() : Free the event info data structure allocated during
48 * add_event_timer().
49 * @event: event handle.
50 */
51void destroy_event_timer(struct event_timer_info *event);
52
53/**
54 * get_next_event_timer() : Get the next wakeup event.
55 * returns a ktime value of the next
56 * expiring event.
57 */
58ktime_t get_next_event_time(void);
59#else
60static inline void *add_event_timer(void (*function)(void *), void *data)
61{
62 return NULL;
63}
64
65static inline void activate_event_timer(void *event, ktime_t event_time) {}
66
67static inline void deactivate_event_timer(void *event) {}
68
69static inline void destroy_event_timer(void *event) {}
70
71static inline ktime_t get_next_event_time(void)
72{
73 return ns_to_ktime(0);
74}
75
76#endif /* CONFIG_MSM_EVENT_TIMER_MANAGER */
77#endif /* __ARCH_ARM_MACH_MSM_EVENT_TIMER_H */