blob: 32d86bc5d3f70f913b2f98d0145eb7775a8ee1f3 [file] [log] [blame]
Deepthi Dharwar707827f2011-11-30 02:46:42 +00001/*
Deepthi Dharwar962e7bd2014-01-14 16:26:02 +05302 * cpuidle-pseries - idle state cpuidle driver.
Deepthi Dharwar707827f2011-11-30 02:46:42 +00003 * Adapted from drivers/idle/intel_idle.c and
4 * drivers/acpi/processor_idle.c
5 *
6 */
7
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/init.h>
11#include <linux/moduleparam.h>
12#include <linux/cpuidle.h>
13#include <linux/cpu.h>
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +000014#include <linux/notifier.h>
Deepthi Dharwar707827f2011-11-30 02:46:42 +000015
16#include <asm/paca.h>
17#include <asm/reg.h>
Deepthi Dharwar707827f2011-11-30 02:46:42 +000018#include <asm/machdep.h>
19#include <asm/firmware.h>
Deepthi Dharwar212bebb2013-08-22 15:23:52 +053020#include <asm/plpar_wrappers.h>
Deepthi Dharwar707827f2011-11-30 02:46:42 +000021
22struct cpuidle_driver pseries_idle_driver = {
Daniel Lezcano1ca80942013-04-03 12:15:22 +000023 .name = "pseries_idle",
24 .owner = THIS_MODULE,
Deepthi Dharwar707827f2011-11-30 02:46:42 +000025};
26
27#define MAX_IDLE_STATE_COUNT 2
28
29static int max_idle_state = MAX_IDLE_STATE_COUNT - 1;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000030static struct cpuidle_state *cpuidle_state_table;
31
Daniel Lezcano1ca80942013-04-03 12:15:22 +000032static inline void idle_loop_prolog(unsigned long *in_purr)
Deepthi Dharwar707827f2011-11-30 02:46:42 +000033{
Deepthi Dharwar707827f2011-11-30 02:46:42 +000034 *in_purr = mfspr(SPRN_PURR);
35 /*
36 * Indicate to the HV that we are idle. Now would be
37 * a good time to find other work to dispatch.
38 */
39 get_lppaca()->idle = 1;
40}
41
Daniel Lezcano1ca80942013-04-03 12:15:22 +000042static inline void idle_loop_epilog(unsigned long in_purr)
Deepthi Dharwar707827f2011-11-30 02:46:42 +000043{
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +100044 u64 wait_cycles;
45
46 wait_cycles = be64_to_cpu(get_lppaca()->wait_state_cycles);
47 wait_cycles += mfspr(SPRN_PURR) - in_purr;
48 get_lppaca()->wait_state_cycles = cpu_to_be64(wait_cycles);
Deepthi Dharwar707827f2011-11-30 02:46:42 +000049 get_lppaca()->idle = 0;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000050}
51
52static int snooze_loop(struct cpuidle_device *dev,
53 struct cpuidle_driver *drv,
54 int index)
55{
56 unsigned long in_purr;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000057
Daniel Lezcano1ca80942013-04-03 12:15:22 +000058 idle_loop_prolog(&in_purr);
Deepthi Dharwar83dac592012-10-03 18:42:26 +000059 local_irq_enable();
60 set_thread_flag(TIF_POLLING_NRFLAG);
Deepthi Dharwar707827f2011-11-30 02:46:42 +000061
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +053062 while (!need_resched()) {
Deepthi Dharwar83dac592012-10-03 18:42:26 +000063 HMT_low();
64 HMT_very_low();
Deepthi Dharwar707827f2011-11-30 02:46:42 +000065 }
66
Deepthi Dharwar707827f2011-11-30 02:46:42 +000067 HMT_medium();
Deepthi Dharwar83dac592012-10-03 18:42:26 +000068 clear_thread_flag(TIF_POLLING_NRFLAG);
69 smp_mb();
70
Daniel Lezcano1ca80942013-04-03 12:15:22 +000071 idle_loop_epilog(in_purr);
72
Deepthi Dharwar707827f2011-11-30 02:46:42 +000073 return index;
74}
75
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110076static void check_and_cede_processor(void)
77{
78 /*
Benjamin Herrenschmidtbe2cf202012-07-10 18:36:40 +100079 * Ensure our interrupt state is properly tracked,
80 * also checks if no interrupt has occurred while we
81 * were soft-disabled
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110082 */
Benjamin Herrenschmidtbe2cf202012-07-10 18:36:40 +100083 if (prep_irq_for_idle()) {
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110084 cede_processor();
Benjamin Herrenschmidtbe2cf202012-07-10 18:36:40 +100085#ifdef CONFIG_TRACE_IRQFLAGS
86 /* Ensure that H_CEDE returns with IRQs on */
87 if (WARN_ON(!(mfmsr() & MSR_EE)))
88 __hard_irq_enable();
89#endif
90 }
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110091}
92
Deepthi Dharwar707827f2011-11-30 02:46:42 +000093static int dedicated_cede_loop(struct cpuidle_device *dev,
94 struct cpuidle_driver *drv,
95 int index)
96{
97 unsigned long in_purr;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000098
Daniel Lezcano1ca80942013-04-03 12:15:22 +000099 idle_loop_prolog(&in_purr);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000100 get_lppaca()->donate_dedicated_cpu = 1;
101
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000102 HMT_medium();
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100103 check_and_cede_processor();
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000104
105 get_lppaca()->donate_dedicated_cpu = 0;
Daniel Lezcano1ca80942013-04-03 12:15:22 +0000106
107 idle_loop_epilog(in_purr);
108
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000109 return index;
110}
111
112static int shared_cede_loop(struct cpuidle_device *dev,
113 struct cpuidle_driver *drv,
114 int index)
115{
116 unsigned long in_purr;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000117
Daniel Lezcano1ca80942013-04-03 12:15:22 +0000118 idle_loop_prolog(&in_purr);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000119
120 /*
121 * Yield the processor to the hypervisor. We return if
122 * an external interrupt occurs (which are driven prior
123 * to returning here) or if a prod occurs from another
124 * processor. When returning here, external interrupts
125 * are enabled.
126 */
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100127 check_and_cede_processor();
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000128
Daniel Lezcano1ca80942013-04-03 12:15:22 +0000129 idle_loop_epilog(in_purr);
130
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000131 return index;
132}
133
134/*
135 * States for dedicated partition case.
136 */
137static struct cpuidle_state dedicated_states[MAX_IDLE_STATE_COUNT] = {
138 { /* Snooze */
139 .name = "snooze",
140 .desc = "snooze",
141 .flags = CPUIDLE_FLAG_TIME_VALID,
142 .exit_latency = 0,
143 .target_residency = 0,
144 .enter = &snooze_loop },
145 { /* CEDE */
146 .name = "CEDE",
147 .desc = "CEDE",
148 .flags = CPUIDLE_FLAG_TIME_VALID,
Deepthi Dharwar83dac592012-10-03 18:42:26 +0000149 .exit_latency = 10,
150 .target_residency = 100,
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000151 .enter = &dedicated_cede_loop },
152};
153
154/*
155 * States for shared partition case.
156 */
157static struct cpuidle_state shared_states[MAX_IDLE_STATE_COUNT] = {
158 { /* Shared Cede */
159 .name = "Shared Cede",
160 .desc = "Shared Cede",
161 .flags = CPUIDLE_FLAG_TIME_VALID,
162 .exit_latency = 0,
163 .target_residency = 0,
164 .enter = &shared_cede_loop },
165};
166
Deepthi Dharwar8ea959a2012-10-03 18:42:18 +0000167void update_smt_snooze_delay(int cpu, int residency)
168{
169 struct cpuidle_driver *drv = cpuidle_get_driver();
170 struct cpuidle_device *dev = per_cpu(cpuidle_devices, cpu);
171
172 if (cpuidle_state_table != dedicated_states)
173 return;
174
175 if (residency < 0) {
176 /* Disable the Nap state on that cpu */
177 if (dev)
178 dev->states_usage[1].disable = 1;
179 } else
180 if (drv)
Deepthi Dharwar83dac592012-10-03 18:42:26 +0000181 drv->states[1].target_residency = residency;
Deepthi Dharwar8ea959a2012-10-03 18:42:18 +0000182}
183
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000184static int pseries_cpuidle_add_cpu_notifier(struct notifier_block *n,
185 unsigned long action, void *hcpu)
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000186{
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000187 int hotcpu = (unsigned long)hcpu;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000188 struct cpuidle_device *dev =
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530189 per_cpu(cpuidle_devices, hotcpu);
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000190
Deepthi Dharwar852d8cb2012-07-03 20:07:22 +0000191 if (dev && cpuidle_get_driver()) {
192 switch (action) {
193 case CPU_ONLINE:
194 case CPU_ONLINE_FROZEN:
195 cpuidle_pause_and_lock();
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000196 cpuidle_enable_device(dev);
Deepthi Dharwar852d8cb2012-07-03 20:07:22 +0000197 cpuidle_resume_and_unlock();
198 break;
199
200 case CPU_DEAD:
201 case CPU_DEAD_FROZEN:
202 cpuidle_pause_and_lock();
203 cpuidle_disable_device(dev);
204 cpuidle_resume_and_unlock();
205 break;
206
207 default:
208 return NOTIFY_DONE;
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000209 }
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000210 }
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000211 return NOTIFY_OK;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000212}
213
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000214static struct notifier_block setup_hotplug_notifier = {
215 .notifier_call = pseries_cpuidle_add_cpu_notifier,
216};
217
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000218/*
219 * pseries_cpuidle_driver_init()
220 */
221static int pseries_cpuidle_driver_init(void)
222{
223 int idle_state;
224 struct cpuidle_driver *drv = &pseries_idle_driver;
225
226 drv->state_count = 0;
227
228 for (idle_state = 0; idle_state < MAX_IDLE_STATE_COUNT; ++idle_state) {
229
230 if (idle_state > max_idle_state)
231 break;
232
233 /* is the state not enabled? */
234 if (cpuidle_state_table[idle_state].enter == NULL)
235 continue;
236
237 drv->states[drv->state_count] = /* structure copy */
238 cpuidle_state_table[idle_state];
239
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000240 drv->state_count += 1;
241 }
242
243 return 0;
244}
245
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000246/*
247 * pseries_idle_probe()
248 * Choose state table for shared versus dedicated partition
249 */
250static int pseries_idle_probe(void)
251{
252
Deepthi Dharware8bb3e02011-11-30 02:47:03 +0000253 if (cpuidle_disable != IDLE_NO_OVERRIDE)
254 return -ENODEV;
255
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000256 if (max_idle_state == 0) {
257 printk(KERN_DEBUG "pseries processor idle disabled.\n");
258 return -EPERM;
259 }
260
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530261 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
262 if (lppaca_shared_proc(get_lppaca()))
263 cpuidle_state_table = shared_states;
264 else
265 cpuidle_state_table = dedicated_states;
266 } else
267 return -ENODEV;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000268
269 return 0;
270}
271
272static int __init pseries_processor_idle_init(void)
273{
274 int retval;
275
276 retval = pseries_idle_probe();
277 if (retval)
278 return retval;
279
280 pseries_cpuidle_driver_init();
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530281 retval = cpuidle_register(&pseries_idle_driver, NULL);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000282 if (retval) {
283 printk(KERN_DEBUG "Registration of pseries driver failed.\n");
284 return retval;
285 }
286
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000287 register_cpu_notifier(&setup_hotplug_notifier);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000288 printk(KERN_DEBUG "pseries_idle_driver registered\n");
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000289 return 0;
290}
291
292static void __exit pseries_processor_idle_exit(void)
293{
294
Deepthi Dharwar852d8cb2012-07-03 20:07:22 +0000295 unregister_cpu_notifier(&setup_hotplug_notifier);
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530296 cpuidle_unregister(&pseries_idle_driver);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000297 return;
298}
299
300module_init(pseries_processor_idle_init);
301module_exit(pseries_processor_idle_exit);
302
303MODULE_AUTHOR("Deepthi Dharwar <deepthi@linux.vnet.ibm.com>");
304MODULE_DESCRIPTION("Cpuidle driver for POWER");
305MODULE_LICENSE("GPL");