Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * cpuidle-pseries - idle state cpuidle driver.
4 * Adapted from drivers/idle/intel_idle.c and
5 * drivers/acpi/processor_idle.c
6 *
7 */
8
9#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/moduleparam.h>
13#include <linux/cpuidle.h>
14#include <linux/cpu.h>
15#include <linux/notifier.h>
16
17#include <asm/paca.h>
18#include <asm/reg.h>
19#include <asm/machdep.h>
20#include <asm/firmware.h>
21#include <asm/runlatch.h>
22#include <asm/idle.h>
23#include <asm/plpar_wrappers.h>
24#include <asm/rtas.h>
25
26static struct cpuidle_driver pseries_idle_driver = {
27 .name = "pseries_idle",
28 .owner = THIS_MODULE,
29};
30
31static int max_idle_state __read_mostly;
32static struct cpuidle_state *cpuidle_state_table __read_mostly;
33static u64 snooze_timeout __read_mostly;
34static bool snooze_timeout_en __read_mostly;
35
36static __cpuidle
37int snooze_loop(struct cpuidle_device *dev, struct cpuidle_driver *drv,
38 int index)
39{
40 u64 snooze_exit_time;
41
42 set_thread_flag(TIF_POLLING_NRFLAG);
43
44 pseries_idle_prolog();
45 raw_local_irq_enable();
46 snooze_exit_time = get_tb() + snooze_timeout;
47 dev->poll_time_limit = false;
48
49 while (!need_resched()) {
50 HMT_low();
51 HMT_very_low();
52 if (likely(snooze_timeout_en) && get_tb() > snooze_exit_time) {
53 /*
54 * Task has not woken up but we are exiting the polling
55 * loop anyway. Require a barrier after polling is
56 * cleared to order subsequent test of need_resched().
57 */
58 dev->poll_time_limit = true;
59 clear_thread_flag(TIF_POLLING_NRFLAG);
60 smp_mb();
61 break;
62 }
63 }
64
65 HMT_medium();
66 clear_thread_flag(TIF_POLLING_NRFLAG);
67
68 raw_local_irq_disable();
69
70 pseries_idle_epilog();
71
72 return index;
73}
74
75static __cpuidle void check_and_cede_processor(void)
76{
77 /*
78 * Ensure our interrupt state is properly tracked,
79 * also checks if no interrupt has occurred while we
80 * were soft-disabled
81 */
82 if (prep_irq_for_idle()) {
83 cede_processor();
84#ifdef CONFIG_TRACE_IRQFLAGS
85 /* Ensure that H_CEDE returns with IRQs on */
86 if (WARN_ON(!(mfmsr() & MSR_EE)))
87 __hard_irq_enable();
88#endif
89 }
90}
91
92/*
93 * XCEDE: Extended CEDE states discovered through the
94 * "ibm,get-systems-parameter" RTAS call with the token
95 * CEDE_LATENCY_TOKEN
96 */
97
98/*
99 * Section 7.3.16 System Parameters Option of PAPR version 2.8.1 has a
100 * table with all the parameters to ibm,get-system-parameters.
101 * CEDE_LATENCY_TOKEN corresponds to the token value for Cede Latency
102 * Settings Information.
103 */
104#define CEDE_LATENCY_TOKEN 45
105
106/*
107 * If the platform supports the cede latency settings information system
108 * parameter it must provide the following information in the NULL terminated
109 * parameter string:
110 *
111 * a. The first byte is the length āNā of each cede latency setting record minus
112 * one (zero indicates a length of 1 byte).
113 *
114 * b. For each supported cede latency setting a cede latency setting record
115 * consisting of the first āNā bytes as per the following table.
116 *
117 * -----------------------------
118 * | Field | Field |
119 * | Name | Length |
120 * -----------------------------
121 * | Cede Latency | 1 Byte |
122 * | Specifier Value | |
123 * -----------------------------
124 * | Maximum wakeup | |
125 * | latency in | 8 Bytes |
126 * | tb-ticks | |
127 * -----------------------------
128 * | Responsive to | |
129 * | external | 1 Byte |
130 * | interrupts | |
131 * -----------------------------
132 *
133 * This version has cede latency record size = 10.
134 *
135 * The structure xcede_latency_payload represents a) and b) with
136 * xcede_latency_record representing the table in b).
137 *
138 * xcede_latency_parameter is what gets returned by
139 * ibm,get-systems-parameter RTAS call when made with
140 * CEDE_LATENCY_TOKEN.
141 *
142 * These structures are only used to represent the data obtained by the RTAS
143 * call. The data is in big-endian.
144 */
145struct xcede_latency_record {
146 u8 hint;
147 __be64 latency_ticks;
148 u8 wake_on_irqs;
149} __packed;
150
151// Make space for 16 records, which "should be enough".
152struct xcede_latency_payload {
153 u8 record_size;
154 struct xcede_latency_record records[16];
155} __packed;
156
157struct xcede_latency_parameter {
158 __be16 payload_size;
159 struct xcede_latency_payload payload;
160 u8 null_char;
161} __packed;
162
163static unsigned int nr_xcede_records;
164static struct xcede_latency_parameter xcede_latency_parameter __initdata;
165
166static int __init parse_cede_parameters(void)
167{
168 struct xcede_latency_payload *payload;
169 u32 total_xcede_records_size;
170 u8 xcede_record_size;
171 u16 payload_size;
172 int ret, i;
173
174 ret = rtas_call(rtas_token("ibm,get-system-parameter"), 3, 1,
175 NULL, CEDE_LATENCY_TOKEN, __pa(&xcede_latency_parameter),
176 sizeof(xcede_latency_parameter));
177 if (ret) {
178 pr_err("xcede: Error parsing CEDE_LATENCY_TOKEN\n");
179 return ret;
180 }
181
182 payload_size = be16_to_cpu(xcede_latency_parameter.payload_size);
183 payload = &xcede_latency_parameter.payload;
184
185 xcede_record_size = payload->record_size + 1;
186
187 if (xcede_record_size != sizeof(struct xcede_latency_record)) {
188 pr_err("xcede: Expected record-size %lu. Observed size %u.\n",
189 sizeof(struct xcede_latency_record), xcede_record_size);
190 return -EINVAL;
191 }
192
193 pr_info("xcede: xcede_record_size = %d\n", xcede_record_size);
194
195 /*
196 * Since the payload_size includes the last NULL byte and the
197 * xcede_record_size, the remaining bytes correspond to array of all
198 * cede_latency settings.
199 */
200 total_xcede_records_size = payload_size - 2;
201 nr_xcede_records = total_xcede_records_size / xcede_record_size;
202
203 for (i = 0; i < nr_xcede_records; i++) {
204 struct xcede_latency_record *record = &payload->records[i];
205 u64 latency_ticks = be64_to_cpu(record->latency_ticks);
206 u8 wake_on_irqs = record->wake_on_irqs;
207 u8 hint = record->hint;
208
209 pr_info("xcede: Record %d : hint = %u, latency = 0x%llx tb ticks, Wake-on-irq = %u\n",
210 i, hint, latency_ticks, wake_on_irqs);
211 }
212
213 return 0;
214}
215
216#define NR_DEDICATED_STATES 2 /* snooze, CEDE */
217static u8 cede_latency_hint[NR_DEDICATED_STATES];
218
219static __cpuidle
220int dedicated_cede_loop(struct cpuidle_device *dev, struct cpuidle_driver *drv,
221 int index)
222{
223 u8 old_latency_hint;
224
225 pseries_idle_prolog();
226 get_lppaca()->donate_dedicated_cpu = 1;
227 old_latency_hint = get_lppaca()->cede_latency_hint;
228 get_lppaca()->cede_latency_hint = cede_latency_hint[index];
229
230 HMT_medium();
231 check_and_cede_processor();
232
233 raw_local_irq_disable();
234 get_lppaca()->donate_dedicated_cpu = 0;
235 get_lppaca()->cede_latency_hint = old_latency_hint;
236
237 pseries_idle_epilog();
238
239 return index;
240}
241
242static __cpuidle
243int shared_cede_loop(struct cpuidle_device *dev, struct cpuidle_driver *drv,
244 int index)
245{
246
247 pseries_idle_prolog();
248
249 /*
250 * Yield the processor to the hypervisor. We return if
251 * an external interrupt occurs (which are driven prior
252 * to returning here) or if a prod occurs from another
253 * processor. When returning here, external interrupts
254 * are enabled.
255 */
256 check_and_cede_processor();
257
258 raw_local_irq_disable();
259 pseries_idle_epilog();
260
261 return index;
262}
263
264/*
265 * States for dedicated partition case.
266 */
267static struct cpuidle_state dedicated_states[NR_DEDICATED_STATES] = {
268 { /* Snooze */
269 .name = "snooze",
270 .desc = "snooze",
271 .exit_latency = 0,
272 .target_residency = 0,
273 .enter = &snooze_loop,
274 .flags = CPUIDLE_FLAG_POLLING },
275 { /* CEDE */
276 .name = "CEDE",
277 .desc = "CEDE",
278 .exit_latency = 10,
279 .target_residency = 100,
280 .enter = &dedicated_cede_loop },
281};
282
283/*
284 * States for shared partition case.
285 */
286static struct cpuidle_state shared_states[] = {
287 { /* Snooze */
288 .name = "snooze",
289 .desc = "snooze",
290 .exit_latency = 0,
291 .target_residency = 0,
292 .enter = &snooze_loop,
293 .flags = CPUIDLE_FLAG_POLLING },
294 { /* Shared Cede */
295 .name = "Shared Cede",
296 .desc = "Shared Cede",
297 .exit_latency = 10,
298 .target_residency = 100,
299 .enter = &shared_cede_loop },
300};
301
302static int pseries_cpuidle_cpu_online(unsigned int cpu)
303{
304 struct cpuidle_device *dev = per_cpu(cpuidle_devices, cpu);
305
306 if (dev && cpuidle_get_driver()) {
307 cpuidle_pause_and_lock();
308 cpuidle_enable_device(dev);
309 cpuidle_resume_and_unlock();
310 }
311 return 0;
312}
313
314static int pseries_cpuidle_cpu_dead(unsigned int cpu)
315{
316 struct cpuidle_device *dev = per_cpu(cpuidle_devices, cpu);
317
318 if (dev && cpuidle_get_driver()) {
319 cpuidle_pause_and_lock();
320 cpuidle_disable_device(dev);
321 cpuidle_resume_and_unlock();
322 }
323 return 0;
324}
325
326/*
327 * pseries_cpuidle_driver_init()
328 */
329static int pseries_cpuidle_driver_init(void)
330{
331 int idle_state;
332 struct cpuidle_driver *drv = &pseries_idle_driver;
333
334 drv->state_count = 0;
335
336 for (idle_state = 0; idle_state < max_idle_state; ++idle_state) {
337 /* Is the state not enabled? */
338 if (cpuidle_state_table[idle_state].enter == NULL)
339 continue;
340
341 drv->states[drv->state_count] = /* structure copy */
342 cpuidle_state_table[idle_state];
343
344 drv->state_count += 1;
345 }
346
347 return 0;
348}
349
350static void __init fixup_cede0_latency(void)
351{
352 struct xcede_latency_payload *payload;
353 u64 min_xcede_latency_us = UINT_MAX;
354 int i;
355
356 if (parse_cede_parameters())
357 return;
358
359 pr_info("cpuidle: Skipping the %d Extended CEDE idle states\n",
360 nr_xcede_records);
361
362 payload = &xcede_latency_parameter.payload;
363
364 /*
365 * The CEDE idle state maps to CEDE(0). While the hypervisor
366 * does not advertise CEDE(0) exit latency values, it does
367 * advertise the latency values of the extended CEDE states.
368 * We use the lowest advertised exit latency value as a proxy
369 * for the exit latency of CEDE(0).
370 */
371 for (i = 0; i < nr_xcede_records; i++) {
372 struct xcede_latency_record *record = &payload->records[i];
373 u8 hint = record->hint;
374 u64 latency_tb = be64_to_cpu(record->latency_ticks);
375 u64 latency_us = DIV_ROUND_UP_ULL(tb_to_ns(latency_tb), NSEC_PER_USEC);
376
377 /*
378 * We expect the exit latency of an extended CEDE
379 * state to be non-zero, it to since it takes at least
380 * a few nanoseconds to wakeup the idle CPU and
381 * dispatch the virtual processor into the Linux
382 * Guest.
383 *
384 * So we consider only non-zero value for performing
385 * the fixup of CEDE(0) latency.
386 */
387 if (latency_us == 0) {
388 pr_warn("cpuidle: Skipping xcede record %d [hint=%d]. Exit latency = 0us\n",
389 i, hint);
390 continue;
391 }
392
393 if (latency_us < min_xcede_latency_us)
394 min_xcede_latency_us = latency_us;
395 }
396
397 if (min_xcede_latency_us != UINT_MAX) {
398 dedicated_states[1].exit_latency = min_xcede_latency_us;
399 dedicated_states[1].target_residency = 10 * (min_xcede_latency_us);
400 pr_info("cpuidle: Fixed up CEDE exit latency to %llu us\n",
401 min_xcede_latency_us);
402 }
403
404}
405
406/*
407 * pseries_idle_probe()
408 * Choose state table for shared versus dedicated partition
409 */
410static int __init pseries_idle_probe(void)
411{
412
413 if (cpuidle_disable != IDLE_NO_OVERRIDE)
414 return -ENODEV;
415
416 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
417 if (lppaca_shared_proc()) {
418 cpuidle_state_table = shared_states;
419 max_idle_state = ARRAY_SIZE(shared_states);
420 } else {
421 /*
422 * Use firmware provided latency values
423 * starting with POWER10 platforms. In the
424 * case that we are running on a POWER10
425 * platform but in an earlier compat mode, we
426 * can still use the firmware provided values.
427 *
428 * However, on platforms prior to POWER10, we
429 * cannot rely on the accuracy of the firmware
430 * provided latency values. On such platforms,
431 * go with the conservative default estimate
432 * of 10us.
433 */
434 if (cpu_has_feature(CPU_FTR_ARCH_31) || pvr_version_is(PVR_POWER10))
435 fixup_cede0_latency();
436 cpuidle_state_table = dedicated_states;
437 max_idle_state = NR_DEDICATED_STATES;
438 }
439 } else
440 return -ENODEV;
441
442 if (max_idle_state > 1) {
443 snooze_timeout_en = true;
444 snooze_timeout = cpuidle_state_table[1].target_residency *
445 tb_ticks_per_usec;
446 }
447 return 0;
448}
449
450static int __init pseries_processor_idle_init(void)
451{
452 int retval;
453
454 retval = pseries_idle_probe();
455 if (retval)
456 return retval;
457
458 pseries_cpuidle_driver_init();
459 retval = cpuidle_register(&pseries_idle_driver, NULL);
460 if (retval) {
461 printk(KERN_DEBUG "Registration of pseries driver failed.\n");
462 return retval;
463 }
464
465 retval = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
466 "cpuidle/pseries:online",
467 pseries_cpuidle_cpu_online, NULL);
468 WARN_ON(retval < 0);
469 retval = cpuhp_setup_state_nocalls(CPUHP_CPUIDLE_DEAD,
470 "cpuidle/pseries:DEAD", NULL,
471 pseries_cpuidle_cpu_dead);
472 WARN_ON(retval < 0);
473 printk(KERN_DEBUG "pseries_idle_driver registered\n");
474 return 0;
475}
476
477device_initcall(pseries_processor_idle_init);
1/*
2 * cpuidle-pseries - idle state cpuidle driver.
3 * 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>
14#include <linux/notifier.h>
15
16#include <asm/paca.h>
17#include <asm/reg.h>
18#include <asm/machdep.h>
19#include <asm/firmware.h>
20#include <asm/runlatch.h>
21#include <asm/plpar_wrappers.h>
22
23struct cpuidle_driver pseries_idle_driver = {
24 .name = "pseries_idle",
25 .owner = THIS_MODULE,
26};
27
28static int max_idle_state;
29static struct cpuidle_state *cpuidle_state_table;
30
31static inline void idle_loop_prolog(unsigned long *in_purr)
32{
33 ppc64_runlatch_off();
34 *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
42static inline void idle_loop_epilog(unsigned long in_purr)
43{
44 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);
49 get_lppaca()->idle = 0;
50
51 if (irqs_disabled())
52 local_irq_enable();
53 ppc64_runlatch_on();
54}
55
56static int snooze_loop(struct cpuidle_device *dev,
57 struct cpuidle_driver *drv,
58 int index)
59{
60 unsigned long in_purr;
61
62 idle_loop_prolog(&in_purr);
63 local_irq_enable();
64 set_thread_flag(TIF_POLLING_NRFLAG);
65
66 while (!need_resched()) {
67 HMT_low();
68 HMT_very_low();
69 }
70
71 HMT_medium();
72 clear_thread_flag(TIF_POLLING_NRFLAG);
73 smp_mb();
74
75 idle_loop_epilog(in_purr);
76
77 return index;
78}
79
80static void check_and_cede_processor(void)
81{
82 /*
83 * Ensure our interrupt state is properly tracked,
84 * also checks if no interrupt has occurred while we
85 * were soft-disabled
86 */
87 if (prep_irq_for_idle()) {
88 cede_processor();
89#ifdef CONFIG_TRACE_IRQFLAGS
90 /* Ensure that H_CEDE returns with IRQs on */
91 if (WARN_ON(!(mfmsr() & MSR_EE)))
92 __hard_irq_enable();
93#endif
94 }
95}
96
97static int dedicated_cede_loop(struct cpuidle_device *dev,
98 struct cpuidle_driver *drv,
99 int index)
100{
101 unsigned long in_purr;
102
103 idle_loop_prolog(&in_purr);
104 get_lppaca()->donate_dedicated_cpu = 1;
105
106 HMT_medium();
107 check_and_cede_processor();
108
109 get_lppaca()->donate_dedicated_cpu = 0;
110
111 idle_loop_epilog(in_purr);
112
113 return index;
114}
115
116static int shared_cede_loop(struct cpuidle_device *dev,
117 struct cpuidle_driver *drv,
118 int index)
119{
120 unsigned long in_purr;
121
122 idle_loop_prolog(&in_purr);
123
124 /*
125 * Yield the processor to the hypervisor. We return if
126 * an external interrupt occurs (which are driven prior
127 * to returning here) or if a prod occurs from another
128 * processor. When returning here, external interrupts
129 * are enabled.
130 */
131 check_and_cede_processor();
132
133 idle_loop_epilog(in_purr);
134
135 return index;
136}
137
138/*
139 * States for dedicated partition case.
140 */
141static struct cpuidle_state dedicated_states[] = {
142 { /* Snooze */
143 .name = "snooze",
144 .desc = "snooze",
145 .flags = CPUIDLE_FLAG_TIME_VALID,
146 .exit_latency = 0,
147 .target_residency = 0,
148 .enter = &snooze_loop },
149 { /* CEDE */
150 .name = "CEDE",
151 .desc = "CEDE",
152 .flags = CPUIDLE_FLAG_TIME_VALID,
153 .exit_latency = 10,
154 .target_residency = 100,
155 .enter = &dedicated_cede_loop },
156};
157
158/*
159 * States for shared partition case.
160 */
161static struct cpuidle_state shared_states[] = {
162 { /* Shared Cede */
163 .name = "Shared Cede",
164 .desc = "Shared Cede",
165 .flags = CPUIDLE_FLAG_TIME_VALID,
166 .exit_latency = 0,
167 .target_residency = 0,
168 .enter = &shared_cede_loop },
169};
170
171static int pseries_cpuidle_add_cpu_notifier(struct notifier_block *n,
172 unsigned long action, void *hcpu)
173{
174 int hotcpu = (unsigned long)hcpu;
175 struct cpuidle_device *dev =
176 per_cpu(cpuidle_devices, hotcpu);
177
178 if (dev && cpuidle_get_driver()) {
179 switch (action) {
180 case CPU_ONLINE:
181 case CPU_ONLINE_FROZEN:
182 cpuidle_pause_and_lock();
183 cpuidle_enable_device(dev);
184 cpuidle_resume_and_unlock();
185 break;
186
187 case CPU_DEAD:
188 case CPU_DEAD_FROZEN:
189 cpuidle_pause_and_lock();
190 cpuidle_disable_device(dev);
191 cpuidle_resume_and_unlock();
192 break;
193
194 default:
195 return NOTIFY_DONE;
196 }
197 }
198 return NOTIFY_OK;
199}
200
201static struct notifier_block setup_hotplug_notifier = {
202 .notifier_call = pseries_cpuidle_add_cpu_notifier,
203};
204
205/*
206 * pseries_cpuidle_driver_init()
207 */
208static int pseries_cpuidle_driver_init(void)
209{
210 int idle_state;
211 struct cpuidle_driver *drv = &pseries_idle_driver;
212
213 drv->state_count = 0;
214
215 for (idle_state = 0; idle_state < max_idle_state; ++idle_state) {
216 /* Is the state not enabled? */
217 if (cpuidle_state_table[idle_state].enter == NULL)
218 continue;
219
220 drv->states[drv->state_count] = /* structure copy */
221 cpuidle_state_table[idle_state];
222
223 drv->state_count += 1;
224 }
225
226 return 0;
227}
228
229/*
230 * pseries_idle_probe()
231 * Choose state table for shared versus dedicated partition
232 */
233static int pseries_idle_probe(void)
234{
235
236 if (cpuidle_disable != IDLE_NO_OVERRIDE)
237 return -ENODEV;
238
239 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
240 if (lppaca_shared_proc(get_lppaca())) {
241 cpuidle_state_table = shared_states;
242 max_idle_state = ARRAY_SIZE(shared_states);
243 } else {
244 cpuidle_state_table = dedicated_states;
245 max_idle_state = ARRAY_SIZE(dedicated_states);
246 }
247 } else
248 return -ENODEV;
249
250 return 0;
251}
252
253static int __init pseries_processor_idle_init(void)
254{
255 int retval;
256
257 retval = pseries_idle_probe();
258 if (retval)
259 return retval;
260
261 pseries_cpuidle_driver_init();
262 retval = cpuidle_register(&pseries_idle_driver, NULL);
263 if (retval) {
264 printk(KERN_DEBUG "Registration of pseries driver failed.\n");
265 return retval;
266 }
267
268 register_cpu_notifier(&setup_hotplug_notifier);
269 printk(KERN_DEBUG "pseries_idle_driver registered\n");
270 return 0;
271}
272
273device_initcall(pseries_processor_idle_init);