blob: 166ccd711ec970c365c4743ed0e808a8049f0c63 [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>
Preeti U Murthy3f67d962014-02-12 10:18:45 +053020#include <asm/runlatch.h>
Deepthi Dharwar212bebb2013-08-22 15:23:52 +053021#include <asm/plpar_wrappers.h>
Deepthi Dharwar707827f2011-11-30 02:46:42 +000022
23struct cpuidle_driver pseries_idle_driver = {
Daniel Lezcano1ca80942013-04-03 12:15:22 +000024 .name = "pseries_idle",
25 .owner = THIS_MODULE,
Deepthi Dharwar707827f2011-11-30 02:46:42 +000026};
27
Deepthi Dharwarbf7f61f2014-01-14 16:26:28 +053028static int max_idle_state;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000029static struct cpuidle_state *cpuidle_state_table;
Shilpasri G Bhat78eaa102015-06-18 16:53:11 +053030static u64 snooze_timeout;
31static bool snooze_timeout_en;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000032
Daniel Lezcano1ca80942013-04-03 12:15:22 +000033static inline void idle_loop_prolog(unsigned long *in_purr)
Deepthi Dharwar707827f2011-11-30 02:46:42 +000034{
Nicolas Pitred8c6ad32014-01-29 12:45:10 -050035 ppc64_runlatch_off();
Deepthi Dharwar707827f2011-11-30 02:46:42 +000036 *in_purr = mfspr(SPRN_PURR);
37 /*
38 * Indicate to the HV that we are idle. Now would be
39 * a good time to find other work to dispatch.
40 */
41 get_lppaca()->idle = 1;
42}
43
Daniel Lezcano1ca80942013-04-03 12:15:22 +000044static inline void idle_loop_epilog(unsigned long in_purr)
Deepthi Dharwar707827f2011-11-30 02:46:42 +000045{
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +100046 u64 wait_cycles;
47
48 wait_cycles = be64_to_cpu(get_lppaca()->wait_state_cycles);
49 wait_cycles += mfspr(SPRN_PURR) - in_purr;
50 get_lppaca()->wait_state_cycles = cpu_to_be64(wait_cycles);
Deepthi Dharwar707827f2011-11-30 02:46:42 +000051 get_lppaca()->idle = 0;
Nicolas Pitred8c6ad32014-01-29 12:45:10 -050052
53 if (irqs_disabled())
54 local_irq_enable();
55 ppc64_runlatch_on();
Deepthi Dharwar707827f2011-11-30 02:46:42 +000056}
57
58static int snooze_loop(struct cpuidle_device *dev,
59 struct cpuidle_driver *drv,
60 int index)
61{
62 unsigned long in_purr;
Shilpasri G Bhat78eaa102015-06-18 16:53:11 +053063 u64 snooze_exit_time;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000064
Daniel Lezcano1ca80942013-04-03 12:15:22 +000065 idle_loop_prolog(&in_purr);
Deepthi Dharwar83dac592012-10-03 18:42:26 +000066 local_irq_enable();
67 set_thread_flag(TIF_POLLING_NRFLAG);
Shilpasri G Bhat78eaa102015-06-18 16:53:11 +053068 snooze_exit_time = get_tb() + snooze_timeout;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000069
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +053070 while (!need_resched()) {
Deepthi Dharwar83dac592012-10-03 18:42:26 +000071 HMT_low();
72 HMT_very_low();
Shilpasri G Bhat78eaa102015-06-18 16:53:11 +053073 if (snooze_timeout_en && get_tb() > snooze_exit_time)
74 break;
Deepthi Dharwar707827f2011-11-30 02:46:42 +000075 }
76
Deepthi Dharwar707827f2011-11-30 02:46:42 +000077 HMT_medium();
Deepthi Dharwar83dac592012-10-03 18:42:26 +000078 clear_thread_flag(TIF_POLLING_NRFLAG);
79 smp_mb();
80
Daniel Lezcano1ca80942013-04-03 12:15:22 +000081 idle_loop_epilog(in_purr);
82
Deepthi Dharwar707827f2011-11-30 02:46:42 +000083 return index;
84}
85
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110086static void check_and_cede_processor(void)
87{
88 /*
Benjamin Herrenschmidtbe2cf202012-07-10 18:36:40 +100089 * Ensure our interrupt state is properly tracked,
90 * also checks if no interrupt has occurred while we
91 * were soft-disabled
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110092 */
Benjamin Herrenschmidtbe2cf202012-07-10 18:36:40 +100093 if (prep_irq_for_idle()) {
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110094 cede_processor();
Benjamin Herrenschmidtbe2cf202012-07-10 18:36:40 +100095#ifdef CONFIG_TRACE_IRQFLAGS
96 /* Ensure that H_CEDE returns with IRQs on */
97 if (WARN_ON(!(mfmsr() & MSR_EE)))
98 __hard_irq_enable();
99#endif
100 }
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100101}
102
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000103static int dedicated_cede_loop(struct cpuidle_device *dev,
104 struct cpuidle_driver *drv,
105 int index)
106{
107 unsigned long in_purr;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000108
Daniel Lezcano1ca80942013-04-03 12:15:22 +0000109 idle_loop_prolog(&in_purr);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000110 get_lppaca()->donate_dedicated_cpu = 1;
111
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000112 HMT_medium();
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100113 check_and_cede_processor();
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000114
115 get_lppaca()->donate_dedicated_cpu = 0;
Daniel Lezcano1ca80942013-04-03 12:15:22 +0000116
117 idle_loop_epilog(in_purr);
118
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000119 return index;
120}
121
122static int shared_cede_loop(struct cpuidle_device *dev,
123 struct cpuidle_driver *drv,
124 int index)
125{
126 unsigned long in_purr;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000127
Daniel Lezcano1ca80942013-04-03 12:15:22 +0000128 idle_loop_prolog(&in_purr);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000129
130 /*
131 * Yield the processor to the hypervisor. We return if
132 * an external interrupt occurs (which are driven prior
133 * to returning here) or if a prod occurs from another
134 * processor. When returning here, external interrupts
135 * are enabled.
136 */
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100137 check_and_cede_processor();
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000138
Daniel Lezcano1ca80942013-04-03 12:15:22 +0000139 idle_loop_epilog(in_purr);
140
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000141 return index;
142}
143
144/*
145 * States for dedicated partition case.
146 */
Deepthi Dharwarbf7f61f2014-01-14 16:26:28 +0530147static struct cpuidle_state dedicated_states[] = {
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000148 { /* Snooze */
149 .name = "snooze",
150 .desc = "snooze",
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000151 .exit_latency = 0,
152 .target_residency = 0,
153 .enter = &snooze_loop },
154 { /* CEDE */
155 .name = "CEDE",
156 .desc = "CEDE",
Deepthi Dharwar83dac592012-10-03 18:42:26 +0000157 .exit_latency = 10,
158 .target_residency = 100,
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000159 .enter = &dedicated_cede_loop },
160};
161
162/*
163 * States for shared partition case.
164 */
Deepthi Dharwarbf7f61f2014-01-14 16:26:28 +0530165static struct cpuidle_state shared_states[] = {
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000166 { /* Shared Cede */
167 .name = "Shared Cede",
168 .desc = "Shared Cede",
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000169 .exit_latency = 0,
170 .target_residency = 0,
171 .enter = &shared_cede_loop },
172};
173
Sebastian Andrzej Siewior529351f2016-08-18 14:57:25 +0200174static int pseries_cpuidle_cpu_online(unsigned int cpu)
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000175{
Sebastian Andrzej Siewior529351f2016-08-18 14:57:25 +0200176 struct cpuidle_device *dev = per_cpu(cpuidle_devices, cpu);
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000177
Deepthi Dharwar852d8cb2012-07-03 20:07:22 +0000178 if (dev && cpuidle_get_driver()) {
Sebastian Andrzej Siewior529351f2016-08-18 14:57:25 +0200179 cpuidle_pause_and_lock();
180 cpuidle_enable_device(dev);
181 cpuidle_resume_and_unlock();
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000182 }
Sebastian Andrzej Siewior529351f2016-08-18 14:57:25 +0200183 return 0;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000184}
185
Sebastian Andrzej Siewior529351f2016-08-18 14:57:25 +0200186static int pseries_cpuidle_cpu_dead(unsigned int cpu)
187{
188 struct cpuidle_device *dev = per_cpu(cpuidle_devices, cpu);
189
190 if (dev && cpuidle_get_driver()) {
191 cpuidle_pause_and_lock();
192 cpuidle_disable_device(dev);
193 cpuidle_resume_and_unlock();
194 }
195 return 0;
196}
Deepthi Dharwar16aaaff2012-05-20 18:34:27 +0000197
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000198/*
199 * pseries_cpuidle_driver_init()
200 */
201static int pseries_cpuidle_driver_init(void)
202{
203 int idle_state;
204 struct cpuidle_driver *drv = &pseries_idle_driver;
205
206 drv->state_count = 0;
207
Deepthi Dharwarbf7f61f2014-01-14 16:26:28 +0530208 for (idle_state = 0; idle_state < max_idle_state; ++idle_state) {
209 /* Is the state not enabled? */
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000210 if (cpuidle_state_table[idle_state].enter == NULL)
211 continue;
212
213 drv->states[drv->state_count] = /* structure copy */
214 cpuidle_state_table[idle_state];
215
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000216 drv->state_count += 1;
217 }
218
219 return 0;
220}
221
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000222/*
223 * pseries_idle_probe()
224 * Choose state table for shared versus dedicated partition
225 */
226static int pseries_idle_probe(void)
227{
228
Deepthi Dharware8bb3e02011-11-30 02:47:03 +0000229 if (cpuidle_disable != IDLE_NO_OVERRIDE)
230 return -ENODEV;
231
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530232 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Deepthi Dharwarbf7f61f2014-01-14 16:26:28 +0530233 if (lppaca_shared_proc(get_lppaca())) {
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530234 cpuidle_state_table = shared_states;
Deepthi Dharwarbf7f61f2014-01-14 16:26:28 +0530235 max_idle_state = ARRAY_SIZE(shared_states);
236 } else {
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530237 cpuidle_state_table = dedicated_states;
Deepthi Dharwarbf7f61f2014-01-14 16:26:28 +0530238 max_idle_state = ARRAY_SIZE(dedicated_states);
239 }
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530240 } else
241 return -ENODEV;
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000242
Shilpasri G Bhat78eaa102015-06-18 16:53:11 +0530243 if (max_idle_state > 1) {
244 snooze_timeout_en = true;
245 snooze_timeout = cpuidle_state_table[1].target_residency *
246 tb_ticks_per_usec;
247 }
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000248 return 0;
249}
250
251static int __init pseries_processor_idle_init(void)
252{
253 int retval;
254
255 retval = pseries_idle_probe();
256 if (retval)
257 return retval;
258
259 pseries_cpuidle_driver_init();
Deepthi Dharwarb69dbba02014-01-14 16:26:09 +0530260 retval = cpuidle_register(&pseries_idle_driver, NULL);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000261 if (retval) {
262 printk(KERN_DEBUG "Registration of pseries driver failed.\n");
263 return retval;
264 }
265
Sebastian Andrzej Siewior529351f2016-08-18 14:57:25 +0200266 retval = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
267 "cpuidle/pseries:online",
268 pseries_cpuidle_cpu_online, NULL);
269 WARN_ON(retval < 0);
270 retval = cpuhp_setup_state_nocalls(CPUHP_CPUIDLE_DEAD,
271 "cpuidle/pseries:DEAD", NULL,
272 pseries_cpuidle_cpu_dead);
273 WARN_ON(retval < 0);
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000274 printk(KERN_DEBUG "pseries_idle_driver registered\n");
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000275 return 0;
276}
277
Deepthi Dharwar12431c62014-01-14 16:26:18 +0530278device_initcall(pseries_processor_idle_init);