diff options
| author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2014-01-26 23:42:01 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2014-02-11 03:58:30 -0500 |
| commit | cf37b6b48428d6be8f8762b3599d529c44644fb2 (patch) | |
| tree | 3143f2b2c7c4480290f0b809c407e5cab8d01304 /kernel | |
| parent | 16f8b05abe33575b5fc0833cab1286bd6227f255 (diff) | |
sched/idle: Move cpu/idle.c to sched/idle.c
Integration of cpuidle with the scheduler requires that the idle loop be
closely integrated with the scheduler proper. Moving cpu/idle.c into the
sched directory will allow for a smoother integration, and eliminate a
subdirectory which contained only one source file.
Signed-off-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/alpine.LFD.2.11.1401301102210.1652@knanqh.ubzr
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/Makefile | 1 | ||||
| -rw-r--r-- | kernel/cpu/Makefile | 1 | ||||
| -rw-r--r-- | kernel/sched/Makefile | 2 | ||||
| -rw-r--r-- | kernel/sched/idle.c | 144 |
4 files changed, 145 insertions, 3 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index bc010ee272b6..6f1c7e5cfca1 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
| @@ -22,7 +22,6 @@ obj-y += sched/ | |||
| 22 | obj-y += locking/ | 22 | obj-y += locking/ |
| 23 | obj-y += power/ | 23 | obj-y += power/ |
| 24 | obj-y += printk/ | 24 | obj-y += printk/ |
| 25 | obj-y += cpu/ | ||
| 26 | obj-y += irq/ | 25 | obj-y += irq/ |
| 27 | obj-y += rcu/ | 26 | obj-y += rcu/ |
| 28 | 27 | ||
diff --git a/kernel/cpu/Makefile b/kernel/cpu/Makefile deleted file mode 100644 index 59ab052ef7a0..000000000000 --- a/kernel/cpu/Makefile +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | obj-y = idle.o | ||
diff --git a/kernel/sched/Makefile b/kernel/sched/Makefile index 9a95c8c2af2a..ab32b7b0db5c 100644 --- a/kernel/sched/Makefile +++ b/kernel/sched/Makefile | |||
| @@ -13,7 +13,7 @@ endif | |||
| 13 | 13 | ||
| 14 | obj-y += core.o proc.o clock.o cputime.o | 14 | obj-y += core.o proc.o clock.o cputime.o |
| 15 | obj-y += idle_task.o fair.o rt.o deadline.o stop_task.o | 15 | obj-y += idle_task.o fair.o rt.o deadline.o stop_task.o |
| 16 | obj-y += wait.o completion.o | 16 | obj-y += wait.o completion.o idle.o |
| 17 | obj-$(CONFIG_SMP) += cpupri.o cpudeadline.o | 17 | obj-$(CONFIG_SMP) += cpupri.o cpudeadline.o |
| 18 | obj-$(CONFIG_SCHED_AUTOGROUP) += auto_group.o | 18 | obj-$(CONFIG_SCHED_AUTOGROUP) += auto_group.o |
| 19 | obj-$(CONFIG_SCHEDSTATS) += stats.o | 19 | obj-$(CONFIG_SCHEDSTATS) += stats.o |
diff --git a/kernel/sched/idle.c b/kernel/sched/idle.c new file mode 100644 index 000000000000..14ca43430aee --- /dev/null +++ b/kernel/sched/idle.c | |||
| @@ -0,0 +1,144 @@ | |||
| 1 | /* | ||
| 2 | * Generic entry point for the idle threads | ||
| 3 | */ | ||
| 4 | #include <linux/sched.h> | ||
| 5 | #include <linux/cpu.h> | ||
| 6 | #include <linux/cpuidle.h> | ||
| 7 | #include <linux/tick.h> | ||
| 8 | #include <linux/mm.h> | ||
| 9 | #include <linux/stackprotector.h> | ||
| 10 | |||
| 11 | #include <asm/tlb.h> | ||
| 12 | |||
| 13 | #include <trace/events/power.h> | ||
| 14 | |||
| 15 | static int __read_mostly cpu_idle_force_poll; | ||
| 16 | |||
| 17 | void cpu_idle_poll_ctrl(bool enable) | ||
| 18 | { | ||
| 19 | if (enable) { | ||
| 20 | cpu_idle_force_poll++; | ||
| 21 | } else { | ||
| 22 | cpu_idle_force_poll--; | ||
| 23 | WARN_ON_ONCE(cpu_idle_force_poll < 0); | ||
| 24 | } | ||
| 25 | } | ||
| 26 | |||
| 27 | #ifdef CONFIG_GENERIC_IDLE_POLL_SETUP | ||
| 28 | static int __init cpu_idle_poll_setup(char *__unused) | ||
| 29 | { | ||
| 30 | cpu_idle_force_poll = 1; | ||
| 31 | return 1; | ||
| 32 | } | ||
| 33 | __setup("nohlt", cpu_idle_poll_setup); | ||
| 34 | |||
| 35 | static int __init cpu_idle_nopoll_setup(char *__unused) | ||
| 36 | { | ||
| 37 | cpu_idle_force_poll = 0; | ||
| 38 | return 1; | ||
| 39 | } | ||
| 40 | __setup("hlt", cpu_idle_nopoll_setup); | ||
| 41 | #endif | ||
| 42 | |||
| 43 | static inline int cpu_idle_poll(void) | ||
| 44 | { | ||
| 45 | rcu_idle_enter(); | ||
| 46 | trace_cpu_idle_rcuidle(0, smp_processor_id()); | ||
| 47 | local_irq_enable(); | ||
| 48 | while (!tif_need_resched()) | ||
| 49 | cpu_relax(); | ||
| 50 | trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id()); | ||
| 51 | rcu_idle_exit(); | ||
| 52 | return 1; | ||
| 53 | } | ||
| 54 | |||
| 55 | /* Weak implementations for optional arch specific functions */ | ||
| 56 | void __weak arch_cpu_idle_prepare(void) { } | ||
| 57 | void __weak arch_cpu_idle_enter(void) { } | ||
| 58 | void __weak arch_cpu_idle_exit(void) { } | ||
| 59 | void __weak arch_cpu_idle_dead(void) { } | ||
| 60 | void __weak arch_cpu_idle(void) | ||
| 61 | { | ||
| 62 | cpu_idle_force_poll = 1; | ||
| 63 | local_irq_enable(); | ||
| 64 | } | ||
| 65 | |||
| 66 | /* | ||
| 67 | * Generic idle loop implementation | ||
| 68 | */ | ||
| 69 | static void cpu_idle_loop(void) | ||
| 70 | { | ||
| 71 | while (1) { | ||
| 72 | tick_nohz_idle_enter(); | ||
| 73 | |||
| 74 | while (!need_resched()) { | ||
| 75 | check_pgt_cache(); | ||
| 76 | rmb(); | ||
| 77 | |||
| 78 | if (cpu_is_offline(smp_processor_id())) | ||
| 79 | arch_cpu_idle_dead(); | ||
| 80 | |||
| 81 | local_irq_disable(); | ||
| 82 | arch_cpu_idle_enter(); | ||
| 83 | |||
| 84 | /* | ||
| 85 | * In poll mode we reenable interrupts and spin. | ||
| 86 | * | ||
| 87 | * Also if we detected in the wakeup from idle | ||
| 88 | * path that the tick broadcast device expired | ||
| 89 | * for us, we don't want to go deep idle as we | ||
| 90 | * know that the IPI is going to arrive right | ||
| 91 | * away | ||
| 92 | */ | ||
| 93 | if (cpu_idle_force_poll || tick_check_broadcast_expired()) { | ||
| 94 | cpu_idle_poll(); | ||
| 95 | } else { | ||
| 96 | if (!current_clr_polling_and_test()) { | ||
| 97 | stop_critical_timings(); | ||
| 98 | rcu_idle_enter(); | ||
| 99 | if (cpuidle_idle_call()) | ||
| 100 | arch_cpu_idle(); | ||
| 101 | if (WARN_ON_ONCE(irqs_disabled())) | ||
| 102 | local_irq_enable(); | ||
| 103 | rcu_idle_exit(); | ||
| 104 | start_critical_timings(); | ||
| 105 | } else { | ||
| 106 | local_irq_enable(); | ||
| 107 | } | ||
| 108 | __current_set_polling(); | ||
| 109 | } | ||
| 110 | arch_cpu_idle_exit(); | ||
| 111 | /* | ||
| 112 | * We need to test and propagate the TIF_NEED_RESCHED | ||
| 113 | * bit here because we might not have send the | ||
| 114 | * reschedule IPI to idle tasks. | ||
| 115 | */ | ||
| 116 | if (tif_need_resched()) | ||
| 117 | set_preempt_need_resched(); | ||
| 118 | } | ||
| 119 | tick_nohz_idle_exit(); | ||
| 120 | schedule_preempt_disabled(); | ||
| 121 | } | ||
| 122 | } | ||
| 123 | |||
| 124 | void cpu_startup_entry(enum cpuhp_state state) | ||
| 125 | { | ||
| 126 | /* | ||
| 127 | * This #ifdef needs to die, but it's too late in the cycle to | ||
| 128 | * make this generic (arm and sh have never invoked the canary | ||
| 129 | * init for the non boot cpus!). Will be fixed in 3.11 | ||
| 130 | */ | ||
| 131 | #ifdef CONFIG_X86 | ||
| 132 | /* | ||
| 133 | * If we're the non-boot CPU, nothing set the stack canary up | ||
| 134 | * for us. The boot CPU already has it initialized but no harm | ||
| 135 | * in doing it again. This is a good place for updating it, as | ||
| 136 | * we wont ever return from this function (so the invalid | ||
| 137 | * canaries already on the stack wont ever trigger). | ||
| 138 | */ | ||
| 139 | boot_init_stack_canary(); | ||
| 140 | #endif | ||
| 141 | __current_set_polling(); | ||
| 142 | arch_cpu_idle_prepare(); | ||
| 143 | cpu_idle_loop(); | ||
| 144 | } | ||
