perf tools: Don't clone maps from parent when synthesizing forks
[linux/fpc-iii.git] / drivers / cpuidle / poll_state.c
blob85792d371add6558ffd429da2b0b6638c64ac921
1 /*
2 * poll_state.c - Polling idle state
4 * This file is released under the GPLv2.
5 */
7 #include <linux/cpuidle.h>
8 #include <linux/sched.h>
9 #include <linux/sched/clock.h>
10 #include <linux/sched/idle.h>
12 #define POLL_IDLE_RELAX_COUNT 200
14 static int __cpuidle poll_idle(struct cpuidle_device *dev,
15 struct cpuidle_driver *drv, int index)
17 u64 time_start = local_clock();
19 dev->poll_time_limit = false;
21 local_irq_enable();
22 if (!current_set_polling_and_test()) {
23 u64 limit = (u64)drv->states[1].target_residency * NSEC_PER_USEC;
24 unsigned int loop_count = 0;
26 while (!need_resched()) {
27 cpu_relax();
28 if (loop_count++ < POLL_IDLE_RELAX_COUNT)
29 continue;
31 loop_count = 0;
32 if (local_clock() - time_start > limit) {
33 dev->poll_time_limit = true;
34 break;
38 current_clr_polling();
40 return index;
43 void cpuidle_poll_state_init(struct cpuidle_driver *drv)
45 struct cpuidle_state *state = &drv->states[0];
47 snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
48 snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
49 state->exit_latency = 0;
50 state->target_residency = 0;
51 state->power_usage = -1;
52 state->enter = poll_idle;
53 state->disabled = false;
54 state->flags = CPUIDLE_FLAG_POLLING;
56 EXPORT_SYMBOL_GPL(cpuidle_poll_state_init);