2 * cpuidle-powernv - idle state cpuidle driver.
3 * Adapted from drivers/cpuidle/cpuidle-pseries
7 #include <linux/kernel.h>
8 #include <linux/module.h>
9 #include <linux/init.h>
10 #include <linux/moduleparam.h>
11 #include <linux/cpuidle.h>
12 #include <linux/cpu.h>
13 #include <linux/notifier.h>
15 #include <asm/machdep.h>
16 #include <asm/firmware.h>
18 struct cpuidle_driver powernv_idle_driver = {
19 .name = "powernv_idle",
23 static int max_idle_state;
24 static struct cpuidle_state *cpuidle_state_table;
26 static int snooze_loop(struct cpuidle_device *dev,
27 struct cpuidle_driver *drv,
31 set_thread_flag(TIF_POLLING_NRFLAG);
33 while (!need_resched()) {
39 clear_thread_flag(TIF_POLLING_NRFLAG);
44 static int nap_loop(struct cpuidle_device *dev,
45 struct cpuidle_driver *drv,
53 * States for dedicated partition case.
55 static struct cpuidle_state powernv_states[] = {
59 .flags = CPUIDLE_FLAG_TIME_VALID,
61 .target_residency = 0,
62 .enter = &snooze_loop },
66 .flags = CPUIDLE_FLAG_TIME_VALID,
68 .target_residency = 100,
72 static int powernv_cpuidle_add_cpu_notifier(struct notifier_block *n,
73 unsigned long action, void *hcpu)
75 int hotcpu = (unsigned long)hcpu;
76 struct cpuidle_device *dev =
77 per_cpu(cpuidle_devices, hotcpu);
79 if (dev && cpuidle_get_driver()) {
82 case CPU_ONLINE_FROZEN:
83 cpuidle_pause_and_lock();
84 cpuidle_enable_device(dev);
85 cpuidle_resume_and_unlock();
90 cpuidle_pause_and_lock();
91 cpuidle_disable_device(dev);
92 cpuidle_resume_and_unlock();
102 static struct notifier_block setup_hotplug_notifier = {
103 .notifier_call = powernv_cpuidle_add_cpu_notifier,
107 * powernv_cpuidle_driver_init()
109 static int powernv_cpuidle_driver_init(void)
112 struct cpuidle_driver *drv = &powernv_idle_driver;
114 drv->state_count = 0;
116 for (idle_state = 0; idle_state < max_idle_state; ++idle_state) {
117 /* Is the state not enabled? */
118 if (cpuidle_state_table[idle_state].enter == NULL)
121 drv->states[drv->state_count] = /* structure copy */
122 cpuidle_state_table[idle_state];
124 drv->state_count += 1;
131 * powernv_idle_probe()
132 * Choose state table for shared versus dedicated partition
134 static int powernv_idle_probe(void)
137 if (cpuidle_disable != IDLE_NO_OVERRIDE)
140 if (firmware_has_feature(FW_FEATURE_OPALv3)) {
141 cpuidle_state_table = powernv_states;
142 max_idle_state = ARRAY_SIZE(powernv_states);
149 static int __init powernv_processor_idle_init(void)
153 retval = powernv_idle_probe();
157 powernv_cpuidle_driver_init();
158 retval = cpuidle_register(&powernv_idle_driver, NULL);
160 printk(KERN_DEBUG "Registration of powernv driver failed.\n");
164 register_cpu_notifier(&setup_hotplug_notifier);
165 printk(KERN_DEBUG "powernv_idle_driver registered\n");
169 device_initcall(powernv_processor_idle_init);