@@ -103,6 +103,7 @@ extern void tick_nohz_idle_enter(void);
extern void tick_nohz_idle_exit(void);
extern void tick_nohz_irq_exit(void);
extern ktime_t tick_nohz_get_sleep_length(void);
+extern ktime_t tick_nohz_get_next_wakeup(void);
extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time);
extern u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time);
#else /* !CONFIG_NO_HZ_COMMON */
@@ -116,6 +117,15 @@ static inline ktime_t tick_nohz_get_sleep_length(void)
return len;
}
+
+static inline ktime_t tick_nohz_get_next_wakeup(void)
+{
+ ktime_t len = { .tv64 = NSEC_PER_SEC/HZ };
+
+ /* Next wake up is the tick period, assume it starts now */
+ return ktime_add(len, ktime_get());
+}
+
static inline u64 get_cpu_idle_time_us(int cpu, u64 *unused) { return -1; }
static inline u64 get_cpu_iowait_time_us(int cpu, u64 *unused) { return -1; }
#endif /* !CONFIG_NO_HZ_COMMON */
@@ -870,6 +870,14 @@ ktime_t tick_nohz_get_sleep_length(void)
return ts->sleep_length;
}
+ktime_t tick_nohz_get_next_wakeup(void)
+{
+ struct clock_event_device *dev =
+ __this_cpu_read(tick_cpu_device.evtdev);
+
+ return dev->next_event;
+}
+
static void tick_nohz_account_idle_ticks(struct tick_sched *ts)
{
#ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
CPUidle governors use the sleep time of the CPU to determine the idle state of the CPU. However, to determine a common sleep time between CPUs that enter idle at different times, the tick_nohz_get_sleep_length() API is not very helpful. Add API to read the next event for the CPU. The value can be evaluated at any time to determine the remaining sleep time of the CPU. Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Lina Iyer <lina.iyer@linaro.org> --- include/linux/tick.h | 10 ++++++++++ kernel/time/tick-sched.c | 8 ++++++++ 2 files changed, 18 insertions(+) -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html