#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/cpu.h>
#include <linux/cpuidle.h>
#include <linux/hrtimer.h>
#include <asm/proc-fns.h>
#include <mach/iomap.h>
Go to the source code of this file.
device_initcall |
( |
tegra_cpuidle_init |
| ) |
|
Initial value:= {
.name = "tegra_idle",
.state_count = 1,
.states = {
[0] = {
.enter = tegra_idle_enter_lp3,
.exit_latency = 10,
.target_residency = 10,
.power_usage = 600,
.name = "LP3",
.desc = "CPU flow-controlled",
},
},
}
Definition at line 37 of file cpuidle.c.