nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / tick.h
CommitLineData
906568c9
TG
1/* linux/include/linux/tick.h
2 *
3 * This file contains the structure definitions for tick related functions
4 *
5 */
6#ifndef _LINUX_TICK_H
7#define _LINUX_TICK_H
8
9#include <linux/clockchips.h>
2bbb6817 10#include <linux/irqflags.h>
33a5f626
FW
11#include <linux/percpu.h>
12#include <linux/hrtimer.h>
906568c9
TG
13
14#ifdef CONFIG_GENERIC_CLOCKEVENTS
15
16enum tick_device_mode {
17 TICKDEV_MODE_PERIODIC,
18 TICKDEV_MODE_ONESHOT,
19};
20
21struct tick_device {
22 struct clock_event_device *evtdev;
23 enum tick_device_mode mode;
24};
25
79bf2bb3
TG
26enum tick_nohz_mode {
27 NOHZ_MODE_INACTIVE,
28 NOHZ_MODE_LOWRES,
29 NOHZ_MODE_HIGHRES,
30};
31
32/**
33 * struct tick_sched - sched tick emulation and no idle tick control/stats
34 * @sched_timer: hrtimer to schedule the periodic tick in high
35 * resolution mode
f5d411c9
FW
36 * @last_tick: Store the last tick expiry time when the tick
37 * timer is modified for nohz sleeps. This is necessary
79bf2bb3 38 * to resume the tick timer operation in the timeline
f5d411c9 39 * when the CPU returns from nohz sleep.
79bf2bb3
TG
40 * @tick_stopped: Indicator that the idle tick has been stopped
41 * @idle_jiffies: jiffies at the entry to idle for idle time accounting
42 * @idle_calls: Total number of idle calls
43 * @idle_sleeps: Number of idle calls, where the sched tick was stopped
44 * @idle_entrytime: Time when the idle call was entered
5df7fa1c
TG
45 * @idle_waketime: Time when the idle was interrupted
46 * @idle_exittime: Time when the idle state was left
79bf2bb3 47 * @idle_sleeptime: Sum of the time slept in idle with sched tick stopped
0224cf4c 48 * @iowait_sleeptime: Sum of the time slept in idle with sched tick stopped, with IO outstanding
4f86d3a8 49 * @sleep_length: Duration of the current idle sleep
27185016 50 * @do_timer_lst: CPU was the last one doing do_timer before going idle
79bf2bb3
TG
51 */
52struct tick_sched {
53 struct hrtimer sched_timer;
54 unsigned long check_clocks;
55 enum tick_nohz_mode nohz_mode;
f5d411c9 56 ktime_t last_tick;
b8f8c3cf 57 int inidle;
79bf2bb3
TG
58 int tick_stopped;
59 unsigned long idle_jiffies;
60 unsigned long idle_calls;
61 unsigned long idle_sleeps;
6378ddb5 62 int idle_active;
79bf2bb3 63 ktime_t idle_entrytime;
5df7fa1c
TG
64 ktime_t idle_waketime;
65 ktime_t idle_exittime;
79bf2bb3 66 ktime_t idle_sleeptime;
0224cf4c 67 ktime_t iowait_sleeptime;
4f86d3a8 68 ktime_t sleep_length;
79bf2bb3
TG
69 unsigned long last_jiffies;
70 unsigned long next_jiffies;
71 ktime_t idle_expires;
27185016 72 int do_timer_last;
79bf2bb3
TG
73};
74
906568c9 75extern void __init tick_init(void);
79bf2bb3 76extern int tick_is_oneshot_available(void);
289f480a 77extern struct tick_device *tick_get_device(int cpu);
79bf2bb3
TG
78
79# ifdef CONFIG_HIGH_RES_TIMERS
80extern int tick_init_highres(void);
81extern int tick_program_event(ktime_t expires, int force);
82extern void tick_setup_sched_timer(void);
3c4fbe5e
MX
83# endif
84
3451d024 85# if defined CONFIG_NO_HZ_COMMON || defined CONFIG_HIGH_RES_TIMERS
79bf2bb3
TG
86extern void tick_cancel_sched_timer(int cpu);
87# else
88static inline void tick_cancel_sched_timer(int cpu) { }
3c4fbe5e 89# endif
906568c9 90
289f480a
IM
91# ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
92extern struct tick_device *tick_get_broadcast_device(void);
6b954823 93extern struct cpumask *tick_get_broadcast_mask(void);
289f480a
IM
94
95# ifdef CONFIG_TICK_ONESHOT
6b954823 96extern struct cpumask *tick_get_broadcast_oneshot_mask(void);
289f480a
IM
97# endif
98
99# endif /* BROADCAST */
100
79bf2bb3
TG
101# ifdef CONFIG_TICK_ONESHOT
102extern void tick_clock_notify(void);
103extern int tick_check_oneshot_change(int allow_nohz);
104extern struct tick_sched *tick_get_tick_sched(int cpu);
719254fa 105extern void tick_check_idle(int cpu);
cd6d95d8 106extern int tick_oneshot_mode_active(void);
3c5d92a0
MS
107# ifndef arch_needs_cpu
108# define arch_needs_cpu(cpu) (0)
109# endif
79bf2bb3
TG
110# else
111static inline void tick_clock_notify(void) { }
112static inline int tick_check_oneshot_change(int allow_nohz) { return 0; }
719254fa 113static inline void tick_check_idle(int cpu) { }
cd6d95d8 114static inline int tick_oneshot_mode_active(void) { return 0; }
79bf2bb3 115# endif
906568c9 116
79bf2bb3 117#else /* CONFIG_GENERIC_CLOCKEVENTS */
906568c9 118static inline void tick_init(void) { }
79bf2bb3
TG
119static inline void tick_cancel_sched_timer(int cpu) { }
120static inline void tick_clock_notify(void) { }
121static inline int tick_check_oneshot_change(int allow_nohz) { return 0; }
719254fa 122static inline void tick_check_idle(int cpu) { }
cd6d95d8 123static inline int tick_oneshot_mode_active(void) { return 0; }
79bf2bb3 124#endif /* !CONFIG_GENERIC_CLOCKEVENTS */
906568c9 125
3451d024 126# ifdef CONFIG_NO_HZ_COMMON
33a5f626
FW
127DECLARE_PER_CPU(struct tick_sched, tick_cpu_sched);
128
129static inline int tick_nohz_tick_stopped(void)
130{
131 return __this_cpu_read(tick_cpu_sched.tick_stopped);
132}
133
1268fbc7 134extern void tick_nohz_idle_enter(void);
280f0677
FW
135extern void tick_nohz_idle_exit(void);
136extern void tick_nohz_irq_exit(void);
4f86d3a8 137extern ktime_t tick_nohz_get_sleep_length(void);
6378ddb5 138extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time);
0224cf4c 139extern u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time);
33a5f626 140
3451d024 141# else /* !CONFIG_NO_HZ_COMMON */
33a5f626
FW
142static inline int tick_nohz_tick_stopped(void)
143{
144 return 0;
145}
146
2bbb6817
FW
147static inline void tick_nohz_idle_enter(void) { }
148static inline void tick_nohz_idle_exit(void) { }
280f0677 149
4f86d3a8
LB
150static inline ktime_t tick_nohz_get_sleep_length(void)
151{
152 ktime_t len = { .tv64 = NSEC_PER_SEC/HZ };
153
154 return len;
155}
8083e4ad 156static inline u64 get_cpu_idle_time_us(int cpu, u64 *unused) { return -1; }
0224cf4c 157static inline u64 get_cpu_iowait_time_us(int cpu, u64 *unused) { return -1; }
3451d024 158# endif /* !CONFIG_NO_HZ_COMMON */
906568c9 159
c5bfece2 160#ifdef CONFIG_NO_HZ_FULL
d1e43fa5 161extern void tick_nohz_init(void);
c5bfece2 162extern int tick_nohz_full_cpu(int cpu);
ff442c51 163extern void tick_nohz_full_check(void);
76c24fb0
FW
164extern void tick_nohz_full_kick(void);
165extern void tick_nohz_full_kick_all(void);
99e5ada9 166extern void tick_nohz_task_switch(struct task_struct *tsk);
a831881b 167#else
d1e43fa5 168static inline void tick_nohz_init(void) { }
c5bfece2 169static inline int tick_nohz_full_cpu(int cpu) { return 0; }
ff442c51 170static inline void tick_nohz_full_check(void) { }
76c24fb0
FW
171static inline void tick_nohz_full_kick(void) { }
172static inline void tick_nohz_full_kick_all(void) { }
99e5ada9 173static inline void tick_nohz_task_switch(struct task_struct *tsk) { }
a831881b
FW
174#endif
175
176
906568c9 177#endif