blob: 03eb798ad3ed9cfa0b418ac6cc1325bf6572e249 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 *
4 * Copyright (C) 2016 ARM Limited
5 */
6
7#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
9#include <linux/atomic.h>
10#include <linux/completion.h>
11#include <linux/cpu.h>
12#include <linux/cpuidle.h>
13#include <linux/cpu_pm.h>
14#include <linux/kernel.h>
15#include <linux/kthread.h>
16#include <uapi/linux/sched/types.h>
17#include <linux/module.h>
18#include <linux/preempt.h>
19#include <linux/psci.h>
20#include <linux/slab.h>
21#include <linux/tick.h>
22#include <linux/topology.h>
23
24#include <asm/cpuidle.h>
25
26#include <uapi/linux/psci.h>
27
28#define NUM_SUSPEND_CYCLE (10)
29
30static unsigned int nb_available_cpus;
31static int tos_resident_cpu = -1;
32
33static atomic_t nb_active_threads;
34static struct completion suspend_threads_started =
35 COMPLETION_INITIALIZER(suspend_threads_started);
36static struct completion suspend_threads_done =
37 COMPLETION_INITIALIZER(suspend_threads_done);
38
39/*
40 * We assume that PSCI operations are used if they are available. This is not
41 * necessarily true on arm64, since the decision is based on the
42 * "enable-method" property of each CPU in the DT, but given that there is no
43 * arch-specific way to check this, we assume that the DT is sensible.
44 */
45static int psci_ops_check(void)
46{
47 int migrate_type = -1;
48 int cpu;
49
50 if (!(psci_ops.cpu_off && psci_ops.cpu_on && psci_ops.cpu_suspend)) {
51 pr_warn("Missing PSCI operations, aborting tests\n");
52 return -EOPNOTSUPP;
53 }
54
55 if (psci_ops.migrate_info_type)
56 migrate_type = psci_ops.migrate_info_type();
57
58 if (migrate_type == PSCI_0_2_TOS_UP_MIGRATE ||
59 migrate_type == PSCI_0_2_TOS_UP_NO_MIGRATE) {
60 /* There is a UP Trusted OS, find on which core it resides. */
61 for_each_online_cpu(cpu)
62 if (psci_tos_resident_on(cpu)) {
63 tos_resident_cpu = cpu;
64 break;
65 }
66 if (tos_resident_cpu == -1)
67 pr_warn("UP Trusted OS resides on no online CPU\n");
68 }
69
70 return 0;
71}
72
73/*
74 * offlined_cpus is a temporary array but passing it as an argument avoids
75 * multiple allocations.
76 */
77static unsigned int down_and_up_cpus(const struct cpumask *cpus,
78 struct cpumask *offlined_cpus)
79{
80 int cpu;
81 int err = 0;
82
83 cpumask_clear(offlined_cpus);
84
85 /* Try to power down all CPUs in the mask. */
86 for_each_cpu(cpu, cpus) {
87 int ret = cpu_down(cpu);
88
89 /*
90 * cpu_down() checks the number of online CPUs before the TOS
91 * resident CPU.
92 */
93 if (cpumask_weight(offlined_cpus) + 1 == nb_available_cpus) {
94 if (ret != -EBUSY) {
95 pr_err("Unexpected return code %d while trying "
96 "to power down last online CPU %d\n",
97 ret, cpu);
98 ++err;
99 }
100 } else if (cpu == tos_resident_cpu) {
101 if (ret != -EPERM) {
102 pr_err("Unexpected return code %d while trying "
103 "to power down TOS resident CPU %d\n",
104 ret, cpu);
105 ++err;
106 }
107 } else if (ret != 0) {
108 pr_err("Error occurred (%d) while trying "
109 "to power down CPU %d\n", ret, cpu);
110 ++err;
111 }
112
113 if (ret == 0)
114 cpumask_set_cpu(cpu, offlined_cpus);
115 }
116
117 /* Try to power up all the CPUs that have been offlined. */
118 for_each_cpu(cpu, offlined_cpus) {
119 int ret = cpu_up(cpu);
120
121 if (ret != 0) {
122 pr_err("Error occurred (%d) while trying "
123 "to power up CPU %d\n", ret, cpu);
124 ++err;
125 } else {
126 cpumask_clear_cpu(cpu, offlined_cpus);
127 }
128 }
129
130 /*
131 * Something went bad at some point and some CPUs could not be turned
132 * back on.
133 */
134 WARN_ON(!cpumask_empty(offlined_cpus) ||
135 num_online_cpus() != nb_available_cpus);
136
137 return err;
138}
139
140static void free_cpu_groups(int num, cpumask_var_t **pcpu_groups)
141{
142 int i;
143 cpumask_var_t *cpu_groups = *pcpu_groups;
144
145 for (i = 0; i < num; ++i)
146 free_cpumask_var(cpu_groups[i]);
147 kfree(cpu_groups);
148}
149
150static int alloc_init_cpu_groups(cpumask_var_t **pcpu_groups)
151{
152 int num_groups = 0;
153 cpumask_var_t tmp, *cpu_groups;
154
155 if (!alloc_cpumask_var(&tmp, GFP_KERNEL))
156 return -ENOMEM;
157
158 cpu_groups = kcalloc(nb_available_cpus, sizeof(cpu_groups),
159 GFP_KERNEL);
Olivier Deprez0e641232021-09-23 10:07:05 +0200160 if (!cpu_groups) {
161 free_cpumask_var(tmp);
David Brazdil0f672f62019-12-10 10:32:29 +0000162 return -ENOMEM;
Olivier Deprez0e641232021-09-23 10:07:05 +0200163 }
David Brazdil0f672f62019-12-10 10:32:29 +0000164
165 cpumask_copy(tmp, cpu_online_mask);
166
167 while (!cpumask_empty(tmp)) {
168 const struct cpumask *cpu_group =
169 topology_core_cpumask(cpumask_any(tmp));
170
171 if (!alloc_cpumask_var(&cpu_groups[num_groups], GFP_KERNEL)) {
Olivier Deprez0e641232021-09-23 10:07:05 +0200172 free_cpumask_var(tmp);
David Brazdil0f672f62019-12-10 10:32:29 +0000173 free_cpu_groups(num_groups, &cpu_groups);
174 return -ENOMEM;
175 }
176 cpumask_copy(cpu_groups[num_groups++], cpu_group);
177 cpumask_andnot(tmp, tmp, cpu_group);
178 }
179
180 free_cpumask_var(tmp);
181 *pcpu_groups = cpu_groups;
182
183 return num_groups;
184}
185
186static int hotplug_tests(void)
187{
188 int i, nb_cpu_group, err = -ENOMEM;
189 cpumask_var_t offlined_cpus, *cpu_groups;
190 char *page_buf;
191
192 if (!alloc_cpumask_var(&offlined_cpus, GFP_KERNEL))
193 return err;
194
195 nb_cpu_group = alloc_init_cpu_groups(&cpu_groups);
196 if (nb_cpu_group < 0)
197 goto out_free_cpus;
198 page_buf = (char *)__get_free_page(GFP_KERNEL);
199 if (!page_buf)
200 goto out_free_cpu_groups;
201
202 err = 0;
203 /*
204 * Of course the last CPU cannot be powered down and cpu_down() should
205 * refuse doing that.
206 */
207 pr_info("Trying to turn off and on again all CPUs\n");
208 err += down_and_up_cpus(cpu_online_mask, offlined_cpus);
209
210 /*
211 * Take down CPUs by cpu group this time. When the last CPU is turned
212 * off, the cpu group itself should shut down.
213 */
214 for (i = 0; i < nb_cpu_group; ++i) {
215 ssize_t len = cpumap_print_to_pagebuf(true, page_buf,
216 cpu_groups[i]);
217 /* Remove trailing newline. */
218 page_buf[len - 1] = '\0';
219 pr_info("Trying to turn off and on again group %d (CPUs %s)\n",
220 i, page_buf);
221 err += down_and_up_cpus(cpu_groups[i], offlined_cpus);
222 }
223
224 free_page((unsigned long)page_buf);
225out_free_cpu_groups:
226 free_cpu_groups(nb_cpu_group, &cpu_groups);
227out_free_cpus:
228 free_cpumask_var(offlined_cpus);
229 return err;
230}
231
232static void dummy_callback(struct timer_list *unused) {}
233
234static int suspend_cpu(struct cpuidle_device *dev,
235 struct cpuidle_driver *drv, int index)
236{
237 struct cpuidle_state *state = &drv->states[index];
238 bool broadcast = state->flags & CPUIDLE_FLAG_TIMER_STOP;
239 int ret;
240
241 arch_cpu_idle_enter();
242
243 if (broadcast) {
244 /*
245 * The local timer will be shut down, we need to enter tick
246 * broadcast.
247 */
248 ret = tick_broadcast_enter();
249 if (ret) {
250 /*
251 * In the absence of hardware broadcast mechanism,
252 * this CPU might be used to broadcast wakeups, which
253 * may be why entering tick broadcast has failed.
254 * There is little the kernel can do to work around
255 * that, so enter WFI instead (idle state 0).
256 */
257 cpu_do_idle();
258 ret = 0;
259 goto out_arch_exit;
260 }
261 }
262
263 ret = state->enter(dev, drv, index);
264
265 if (broadcast)
266 tick_broadcast_exit();
267
268out_arch_exit:
269 arch_cpu_idle_exit();
270
271 return ret;
272}
273
274static int suspend_test_thread(void *arg)
275{
276 int cpu = (long)arg;
277 int i, nb_suspend = 0, nb_shallow_sleep = 0, nb_err = 0;
278 struct sched_param sched_priority = { .sched_priority = MAX_RT_PRIO-1 };
279 struct cpuidle_device *dev;
280 struct cpuidle_driver *drv;
281 /* No need for an actual callback, we just want to wake up the CPU. */
282 struct timer_list wakeup_timer;
283
284 /* Wait for the main thread to give the start signal. */
285 wait_for_completion(&suspend_threads_started);
286
287 /* Set maximum priority to preempt all other threads on this CPU. */
288 if (sched_setscheduler_nocheck(current, SCHED_FIFO, &sched_priority))
289 pr_warn("Failed to set suspend thread scheduler on CPU %d\n",
290 cpu);
291
292 dev = this_cpu_read(cpuidle_devices);
293 drv = cpuidle_get_cpu_driver(dev);
294
295 pr_info("CPU %d entering suspend cycles, states 1 through %d\n",
296 cpu, drv->state_count - 1);
297
298 timer_setup_on_stack(&wakeup_timer, dummy_callback, 0);
299 for (i = 0; i < NUM_SUSPEND_CYCLE; ++i) {
300 int index;
301 /*
302 * Test all possible states, except 0 (which is usually WFI and
303 * doesn't use PSCI).
304 */
305 for (index = 1; index < drv->state_count; ++index) {
306 int ret;
307 struct cpuidle_state *state = &drv->states[index];
308
309 /*
310 * Set the timer to wake this CPU up in some time (which
311 * should be largely sufficient for entering suspend).
312 * If the local tick is disabled when entering suspend,
313 * suspend_cpu() takes care of switching to a broadcast
314 * tick, so the timer will still wake us up.
315 */
316 mod_timer(&wakeup_timer, jiffies +
317 usecs_to_jiffies(state->target_residency));
318
319 /* IRQs must be disabled during suspend operations. */
320 local_irq_disable();
321
322 ret = suspend_cpu(dev, drv, index);
323
324 /*
325 * We have woken up. Re-enable IRQs to handle any
326 * pending interrupt, do not wait until the end of the
327 * loop.
328 */
329 local_irq_enable();
330
331 if (ret == index) {
332 ++nb_suspend;
333 } else if (ret >= 0) {
334 /* We did not enter the expected state. */
335 ++nb_shallow_sleep;
336 } else {
337 pr_err("Failed to suspend CPU %d: error %d "
338 "(requested state %d, cycle %d)\n",
339 cpu, ret, index, i);
340 ++nb_err;
341 }
342 }
343 }
344
345 /*
346 * Disable the timer to make sure that the timer will not trigger
347 * later.
348 */
349 del_timer(&wakeup_timer);
350 destroy_timer_on_stack(&wakeup_timer);
351
352 if (atomic_dec_return_relaxed(&nb_active_threads) == 0)
353 complete(&suspend_threads_done);
354
355 /* Give up on RT scheduling and wait for termination. */
356 sched_priority.sched_priority = 0;
357 if (sched_setscheduler_nocheck(current, SCHED_NORMAL, &sched_priority))
358 pr_warn("Failed to set suspend thread scheduler on CPU %d\n",
359 cpu);
360 for (;;) {
361 /* Needs to be set first to avoid missing a wakeup. */
362 set_current_state(TASK_INTERRUPTIBLE);
363 if (kthread_should_park())
364 break;
365 schedule();
366 }
367
368 pr_info("CPU %d suspend test results: success %d, shallow states %d, errors %d\n",
369 cpu, nb_suspend, nb_shallow_sleep, nb_err);
370
371 kthread_parkme();
372
373 return nb_err;
374}
375
376static int suspend_tests(void)
377{
378 int i, cpu, err = 0;
379 struct task_struct **threads;
380 int nb_threads = 0;
381
382 threads = kmalloc_array(nb_available_cpus, sizeof(*threads),
383 GFP_KERNEL);
384 if (!threads)
385 return -ENOMEM;
386
387 /*
388 * Stop cpuidle to prevent the idle tasks from entering a deep sleep
389 * mode, as it might interfere with the suspend threads on other CPUs.
390 * This does not prevent the suspend threads from using cpuidle (only
391 * the idle tasks check this status). Take the idle lock so that
392 * the cpuidle driver and device look-up can be carried out safely.
393 */
394 cpuidle_pause_and_lock();
395
396 for_each_online_cpu(cpu) {
397 struct task_struct *thread;
398 /* Check that cpuidle is available on that CPU. */
399 struct cpuidle_device *dev = per_cpu(cpuidle_devices, cpu);
400 struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
401
402 if (!dev || !drv) {
403 pr_warn("cpuidle not available on CPU %d, ignoring\n",
404 cpu);
405 continue;
406 }
407
408 thread = kthread_create_on_cpu(suspend_test_thread,
409 (void *)(long)cpu, cpu,
410 "psci_suspend_test");
411 if (IS_ERR(thread))
412 pr_err("Failed to create kthread on CPU %d\n", cpu);
413 else
414 threads[nb_threads++] = thread;
415 }
416
417 if (nb_threads < 1) {
418 err = -ENODEV;
419 goto out;
420 }
421
422 atomic_set(&nb_active_threads, nb_threads);
423
424 /*
425 * Wake up the suspend threads. To avoid the main thread being preempted
426 * before all the threads have been unparked, the suspend threads will
427 * wait for the completion of suspend_threads_started.
428 */
429 for (i = 0; i < nb_threads; ++i)
430 wake_up_process(threads[i]);
431 complete_all(&suspend_threads_started);
432
433 wait_for_completion(&suspend_threads_done);
434
435
436 /* Stop and destroy all threads, get return status. */
437 for (i = 0; i < nb_threads; ++i) {
438 err += kthread_park(threads[i]);
439 err += kthread_stop(threads[i]);
440 }
441 out:
442 cpuidle_resume_and_unlock();
443 kfree(threads);
444 return err;
445}
446
447static int __init psci_checker(void)
448{
449 int ret;
450
451 /*
452 * Since we're in an initcall, we assume that all the CPUs that all
453 * CPUs that can be onlined have been onlined.
454 *
455 * The tests assume that hotplug is enabled but nobody else is using it,
456 * otherwise the results will be unpredictable. However, since there
457 * is no userspace yet in initcalls, that should be fine, as long as
458 * no torture test is running at the same time (see Kconfig).
459 */
460 nb_available_cpus = num_online_cpus();
461
462 /* Check PSCI operations are set up and working. */
463 ret = psci_ops_check();
464 if (ret)
465 return ret;
466
467 pr_info("PSCI checker started using %u CPUs\n", nb_available_cpus);
468
469 pr_info("Starting hotplug tests\n");
470 ret = hotplug_tests();
471 if (ret == 0)
472 pr_info("Hotplug tests passed OK\n");
473 else if (ret > 0)
474 pr_err("%d error(s) encountered in hotplug tests\n", ret);
475 else {
476 pr_err("Out of memory\n");
477 return ret;
478 }
479
480 pr_info("Starting suspend tests (%d cycles per state)\n",
481 NUM_SUSPEND_CYCLE);
482 ret = suspend_tests();
483 if (ret == 0)
484 pr_info("Suspend tests passed OK\n");
485 else if (ret > 0)
486 pr_err("%d error(s) encountered in suspend tests\n", ret);
487 else {
488 switch (ret) {
489 case -ENOMEM:
490 pr_err("Out of memory\n");
491 break;
492 case -ENODEV:
493 pr_warn("Could not start suspend tests on any CPU\n");
494 break;
495 }
496 }
497
498 pr_info("PSCI checker completed\n");
499 return ret < 0 ? ret : 0;
500}
501late_initcall(psci_checker);