poll_state.c 1.4 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * poll_state.c - Polling idle state
 *
 * This file is released under the GPLv2.
 */

#include <linux/cpuidle.h>
#include <linux/sched.h>
9
#include <linux/sched/clock.h>
10 11
#include <linux/sched/idle.h>

12
#define POLL_IDLE_RELAX_COUNT	200
13

14 15 16
static int __cpuidle poll_idle(struct cpuidle_device *dev,
			       struct cpuidle_driver *drv, int index)
{
17 18
	u64 time_start = local_clock();

19 20
	dev->poll_time_limit = false;

21 22
	local_irq_enable();
	if (!current_set_polling_and_test()) {
23
		unsigned int loop_count = 0;
24 25 26 27 28 29 30 31 32 33
		u64 limit = TICK_USEC;
		int i;

		for (i = 1; i < drv->state_count; i++) {
			if (drv->states[i].disabled || dev->states_usage[i].disable)
				continue;

			limit = (u64)drv->states[i].target_residency * NSEC_PER_USEC;
			break;
		}
34

35
		while (!need_resched()) {
36
			cpu_relax();
37 38
			if (loop_count++ < POLL_IDLE_RELAX_COUNT)
				continue;
39

40
			loop_count = 0;
41
			if (local_clock() - time_start > limit) {
42
				dev->poll_time_limit = true;
43
				break;
44
			}
45
		}
46 47 48 49 50 51
	}
	current_clr_polling();

	return index;
}

52
void cpuidle_poll_state_init(struct cpuidle_driver *drv)
53 54 55 56 57 58 59 60 61 62 63 64
{
	struct cpuidle_state *state = &drv->states[0];

	snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
	snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
	state->exit_latency = 0;
	state->target_residency = 0;
	state->power_usage = -1;
	state->enter = poll_idle;
	state->disabled = false;
	state->flags = CPUIDLE_FLAG_POLLING;
}
65
EXPORT_SYMBOL_GPL(cpuidle_poll_state_init);