staging: vboxvideo: Atomic phase 3: Switch last bits over to atomic
[linux/fpc-iii.git] / drivers / powercap / idle_inject.c
blob24ff2a068978a17182e5e1511905cbe53c4e1199
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright 2018 Linaro Limited
5 * Author: Daniel Lezcano <daniel.lezcano@linaro.org>
7 * The idle injection framework provides a way to force CPUs to enter idle
8 * states for a specified fraction of time over a specified period.
10 * It relies on the smpboot kthreads feature providing common code for CPU
11 * hotplug and thread [un]parking.
13 * All of the kthreads used for idle injection are created at init time.
15 * Next, the users of the the idle injection framework provide a cpumask via
16 * its register function. The kthreads will be synchronized with respect to
17 * this cpumask.
19 * The idle + run duration is specified via separate helpers and that allows
20 * idle injection to be started.
22 * The idle injection kthreads will call play_idle() with the idle duration
23 * specified as per the above.
25 * After all of them have been woken up, a timer is set to start the next idle
26 * injection cycle.
28 * The timer interrupt handler will wake up the idle injection kthreads for
29 * all of the CPUs in the cpumask provided by the user.
31 * Idle injection is stopped synchronously and no leftover idle injection
32 * kthread activity after its completion is guaranteed.
34 * It is up to the user of this framework to provide a lock for higher-level
35 * synchronization to prevent race conditions like starting idle injection
36 * while unregistering from the framework.
38 #define pr_fmt(fmt) "ii_dev: " fmt
40 #include <linux/cpu.h>
41 #include <linux/hrtimer.h>
42 #include <linux/kthread.h>
43 #include <linux/sched.h>
44 #include <linux/slab.h>
45 #include <linux/smpboot.h>
47 #include <uapi/linux/sched/types.h>
49 /**
50 * struct idle_inject_thread - task on/off switch structure
51 * @tsk: task injecting the idle cycles
52 * @should_run: whether or not to run the task (for the smpboot kthread API)
54 struct idle_inject_thread {
55 struct task_struct *tsk;
56 int should_run;
59 /**
60 * struct idle_inject_device - idle injection data
61 * @timer: idle injection period timer
62 * @idle_duration_ms: duration of CPU idle time to inject
63 * @run_duration_ms: duration of CPU run time to allow
64 * @cpumask: mask of CPUs affected by idle injection
66 struct idle_inject_device {
67 struct hrtimer timer;
68 unsigned int idle_duration_ms;
69 unsigned int run_duration_ms;
70 unsigned long int cpumask[0];
73 static DEFINE_PER_CPU(struct idle_inject_thread, idle_inject_thread);
74 static DEFINE_PER_CPU(struct idle_inject_device *, idle_inject_device);
76 /**
77 * idle_inject_wakeup - Wake up idle injection threads
78 * @ii_dev: target idle injection device
80 * Every idle injection task associated with the given idle injection device
81 * and running on an online CPU will be woken up.
83 static void idle_inject_wakeup(struct idle_inject_device *ii_dev)
85 struct idle_inject_thread *iit;
86 unsigned int cpu;
88 for_each_cpu_and(cpu, to_cpumask(ii_dev->cpumask), cpu_online_mask) {
89 iit = per_cpu_ptr(&idle_inject_thread, cpu);
90 iit->should_run = 1;
91 wake_up_process(iit->tsk);
95 /**
96 * idle_inject_timer_fn - idle injection timer function
97 * @timer: idle injection hrtimer
99 * This function is called when the idle injection timer expires. It wakes up
100 * idle injection tasks associated with the timer and they, in turn, invoke
101 * play_idle() to inject a specified amount of CPU idle time.
103 * Return: HRTIMER_RESTART.
105 static enum hrtimer_restart idle_inject_timer_fn(struct hrtimer *timer)
107 unsigned int duration_ms;
108 struct idle_inject_device *ii_dev =
109 container_of(timer, struct idle_inject_device, timer);
111 duration_ms = READ_ONCE(ii_dev->run_duration_ms);
112 duration_ms += READ_ONCE(ii_dev->idle_duration_ms);
114 idle_inject_wakeup(ii_dev);
116 hrtimer_forward_now(timer, ms_to_ktime(duration_ms));
118 return HRTIMER_RESTART;
122 * idle_inject_fn - idle injection work function
123 * @cpu: the CPU owning the task
125 * This function calls play_idle() to inject a specified amount of CPU idle
126 * time.
128 static void idle_inject_fn(unsigned int cpu)
130 struct idle_inject_device *ii_dev;
131 struct idle_inject_thread *iit;
133 ii_dev = per_cpu(idle_inject_device, cpu);
134 iit = per_cpu_ptr(&idle_inject_thread, cpu);
137 * Let the smpboot main loop know that the task should not run again.
139 iit->should_run = 0;
141 play_idle(READ_ONCE(ii_dev->idle_duration_ms));
145 * idle_inject_set_duration - idle and run duration update helper
146 * @run_duration_ms: CPU run time to allow in milliseconds
147 * @idle_duration_ms: CPU idle time to inject in milliseconds
149 void idle_inject_set_duration(struct idle_inject_device *ii_dev,
150 unsigned int run_duration_ms,
151 unsigned int idle_duration_ms)
153 if (run_duration_ms && idle_duration_ms) {
154 WRITE_ONCE(ii_dev->run_duration_ms, run_duration_ms);
155 WRITE_ONCE(ii_dev->idle_duration_ms, idle_duration_ms);
160 * idle_inject_get_duration - idle and run duration retrieval helper
161 * @run_duration_ms: memory location to store the current CPU run time
162 * @idle_duration_ms: memory location to store the current CPU idle time
164 void idle_inject_get_duration(struct idle_inject_device *ii_dev,
165 unsigned int *run_duration_ms,
166 unsigned int *idle_duration_ms)
168 *run_duration_ms = READ_ONCE(ii_dev->run_duration_ms);
169 *idle_duration_ms = READ_ONCE(ii_dev->idle_duration_ms);
173 * idle_inject_start - start idle injections
174 * @ii_dev: idle injection control device structure
176 * The function starts idle injection by first waking up all of the idle
177 * injection kthreads associated with @ii_dev to let them inject CPU idle time
178 * sets up a timer to start the next idle injection period.
180 * Return: -EINVAL if the CPU idle or CPU run time is not set or 0 on success.
182 int idle_inject_start(struct idle_inject_device *ii_dev)
184 unsigned int idle_duration_ms = READ_ONCE(ii_dev->idle_duration_ms);
185 unsigned int run_duration_ms = READ_ONCE(ii_dev->run_duration_ms);
187 if (!idle_duration_ms || !run_duration_ms)
188 return -EINVAL;
190 pr_debug("Starting injecting idle cycles on CPUs '%*pbl'\n",
191 cpumask_pr_args(to_cpumask(ii_dev->cpumask)));
193 idle_inject_wakeup(ii_dev);
195 hrtimer_start(&ii_dev->timer,
196 ms_to_ktime(idle_duration_ms + run_duration_ms),
197 HRTIMER_MODE_REL);
199 return 0;
203 * idle_inject_stop - stops idle injections
204 * @ii_dev: idle injection control device structure
206 * The function stops idle injection and waits for the threads to finish work.
207 * If CPU idle time is being injected when this function runs, then it will
208 * wait until the end of the cycle.
210 * When it returns, there is no more idle injection kthread activity. The
211 * kthreads are scheduled out and the periodic timer is off.
213 void idle_inject_stop(struct idle_inject_device *ii_dev)
215 struct idle_inject_thread *iit;
216 unsigned int cpu;
218 pr_debug("Stopping idle injection on CPUs '%*pbl'\n",
219 cpumask_pr_args(to_cpumask(ii_dev->cpumask)));
221 hrtimer_cancel(&ii_dev->timer);
224 * Stopping idle injection requires all of the idle injection kthreads
225 * associated with the given cpumask to be parked and stay that way, so
226 * prevent CPUs from going online at this point. Any CPUs going online
227 * after the loop below will be covered by clearing the should_run flag
228 * that will cause the smpboot main loop to schedule them out.
230 cpu_hotplug_disable();
233 * Iterate over all (online + offline) CPUs here in case one of them
234 * goes offline with the should_run flag set so as to prevent its idle
235 * injection kthread from running when the CPU goes online again after
236 * the ii_dev has been freed.
238 for_each_cpu(cpu, to_cpumask(ii_dev->cpumask)) {
239 iit = per_cpu_ptr(&idle_inject_thread, cpu);
240 iit->should_run = 0;
242 wait_task_inactive(iit->tsk, 0);
245 cpu_hotplug_enable();
249 * idle_inject_setup - prepare the current task for idle injection
250 * @cpu: not used
252 * Called once, this function is in charge of setting the current task's
253 * scheduler parameters to make it an RT task.
255 static void idle_inject_setup(unsigned int cpu)
257 struct sched_param param = { .sched_priority = MAX_USER_RT_PRIO / 2 };
259 sched_setscheduler(current, SCHED_FIFO, &param);
263 * idle_inject_should_run - function helper for the smpboot API
264 * @cpu: CPU the kthread is running on
266 * Return: whether or not the thread can run.
268 static int idle_inject_should_run(unsigned int cpu)
270 struct idle_inject_thread *iit =
271 per_cpu_ptr(&idle_inject_thread, cpu);
273 return iit->should_run;
277 * idle_inject_register - initialize idle injection on a set of CPUs
278 * @cpumask: CPUs to be affected by idle injection
280 * This function creates an idle injection control device structure for the
281 * given set of CPUs and initializes the timer associated with it. It does not
282 * start any injection cycles.
284 * Return: NULL if memory allocation fails, idle injection control device
285 * pointer on success.
287 struct idle_inject_device *idle_inject_register(struct cpumask *cpumask)
289 struct idle_inject_device *ii_dev;
290 int cpu, cpu_rb;
292 ii_dev = kzalloc(sizeof(*ii_dev) + cpumask_size(), GFP_KERNEL);
293 if (!ii_dev)
294 return NULL;
296 cpumask_copy(to_cpumask(ii_dev->cpumask), cpumask);
297 hrtimer_init(&ii_dev->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
298 ii_dev->timer.function = idle_inject_timer_fn;
300 for_each_cpu(cpu, to_cpumask(ii_dev->cpumask)) {
302 if (per_cpu(idle_inject_device, cpu)) {
303 pr_err("cpu%d is already registered\n", cpu);
304 goto out_rollback;
307 per_cpu(idle_inject_device, cpu) = ii_dev;
310 return ii_dev;
312 out_rollback:
313 for_each_cpu(cpu_rb, to_cpumask(ii_dev->cpumask)) {
314 if (cpu == cpu_rb)
315 break;
316 per_cpu(idle_inject_device, cpu_rb) = NULL;
319 kfree(ii_dev);
321 return NULL;
325 * idle_inject_unregister - unregister idle injection control device
326 * @ii_dev: idle injection control device to unregister
328 * The function stops idle injection for the given control device,
329 * unregisters its kthreads and frees memory allocated when that device was
330 * created.
332 void idle_inject_unregister(struct idle_inject_device *ii_dev)
334 unsigned int cpu;
336 idle_inject_stop(ii_dev);
338 for_each_cpu(cpu, to_cpumask(ii_dev->cpumask))
339 per_cpu(idle_inject_device, cpu) = NULL;
341 kfree(ii_dev);
344 static struct smp_hotplug_thread idle_inject_threads = {
345 .store = &idle_inject_thread.tsk,
346 .setup = idle_inject_setup,
347 .thread_fn = idle_inject_fn,
348 .thread_comm = "idle_inject/%u",
349 .thread_should_run = idle_inject_should_run,
352 static int __init idle_inject_init(void)
354 return smpboot_register_percpu_thread(&idle_inject_threads);
356 early_initcall(idle_inject_init);