aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2014-03-03 02:48:51 -0500
committerIngo Molnar <mingo@kernel.org>2014-03-11 06:52:45 -0400
commit30cdd69e2a266505ca8229c944d361ff350a6959 (patch)
treed92aad45235d3855429050a1acfb08e588704d34 /kernel
parent907e30f1bb4a9656d351aa705c1e5931da908701 (diff)
cpuidle/idle: Move the cpuidle_idle_call function to idle.c
The cpuidle_idle_call does nothing more than calling the three individuals function and is no longer used by any arch specific code but only in the cpuidle framework code. We can move this function into the idle task code to ensure better proximity to the scheduler code. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Cc: rjw@rjwysocki.net Cc: preeti@linux.vnet.ibm.com Link: http://lkml.kernel.org/r/1393832934-11625-2-git-send-email-daniel.lezcano@linaro.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sched/idle.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c
index b7976a127178..d5aaf5eb4531 100644
--- a/kernel/sched/idle.c
+++ b/kernel/sched/idle.c
@@ -63,6 +63,62 @@ void __weak arch_cpu_idle(void)
63 local_irq_enable(); 63 local_irq_enable();
64} 64}
65 65
66#ifdef CONFIG_CPU_IDLE
67/**
68 * cpuidle_idle_call - the main idle function
69 *
70 * NOTE: no locks or semaphores should be used here
71 * return non-zero on failure
72 */
73static int cpuidle_idle_call(void)
74{
75 struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
76 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
77 int next_state, entered_state, ret;
78 bool broadcast;
79
80 ret = cpuidle_enabled(drv, dev);
81 if (ret < 0)
82 return ret;
83
84 /* ask the governor for the next state */
85 next_state = cpuidle_select(drv, dev);
86
87 if (need_resched()) {
88 dev->last_residency = 0;
89 /* give the governor an opportunity to reflect on the outcome */
90 cpuidle_reflect(dev, next_state);
91 local_irq_enable();
92 return 0;
93 }
94
95 broadcast = !!(drv->states[next_state].flags & CPUIDLE_FLAG_TIMER_STOP);
96
97 if (broadcast &&
98 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu))
99 return -EBUSY;
100
101 trace_cpu_idle_rcuidle(next_state, dev->cpu);
102
103 entered_state = cpuidle_enter(drv, dev, next_state);
104
105 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
106
107 if (broadcast)
108 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu);
109
110 /* give the governor an opportunity to reflect on the outcome */
111 cpuidle_reflect(dev, entered_state);
112
113 return 0;
114}
115#else
116static inline int cpuidle_idle_call(void)
117{
118 return -ENODEV;
119}
120#endif
121
66/* 122/*
67 * Generic idle loop implementation 123 * Generic idle loop implementation
68 */ 124 */