Re: [PATCH V9] powercap/drivers/idle_injection: Add an idle injection framework
From: "Rafael J. Wysocki" <rafael@kernel.org>
Date: 2018-06-25 08:28:06
Also in:
lkml
On Mon, Jun 25, 2018 at 10:23 AM, Rafael J. Wysocki [off-list ref] wrote:
On Tue, Jun 19, 2018 at 3:23 PM, Daniel Lezcano [off-list ref] wrote:quoted
Initially, the cpu_cooling device for ARM was changed by adding a new policy inserting idle cycles. The intel_powerclamp driver does a similar action. Instead of implementing idle injections privately in the cpu_cooling device, move the idle injection code in a dedicated framework and give the opportunity to other frameworks to make use of it. The framework relies on the smpboot kthreads which handles via its main loop the common code for hotplugging and [un]parking. This code was previously tested with the cpu cooling device and went through several iterations. It results now in split code and API exported in the header file. It was tested with the cpu cooling device with success. Signed-off-by: Daniel Lezcano <redacted> Cc: Viresh Kumar <viresh.kumar@linaro.org> Cc: Eduardo Valentin <edubezval@gmail.com> Cc: Javi Merino <javi.merino@kernel.org> Cc: Leo Yan <redacted> Cc: Kevin Wangtao <redacted> Cc: Vincent Guittot <vincent.guittot@linaro.org> Cc: Rui Zhang <rui.zhang@intel.com> Cc: Daniel Thompson <redacted> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Andrea Parri <redacted> --- V9: - Unconditionnally reset the should_run flag for all kthreads belonging to the cpumask and remove the park() callback (Viresh Kumar) - Fix up the typos in the comments (Viresh Kumar) V8: - Rollback only what was modified - Add the park() callback to reset the should_run flag V7: - Replace count approach by htimer_forward and restart (Peter Zijlstra) - Wait for task inactive when stopping the idle injections - Changed the comments and description V6: - Move count to wake up function (Viresh Kumar) - Split atomic/non-atomic context to wake up tasks - Add the park callback to handle unplug/inject race - Replace atomic by READ_ONCE and WRITE_ONCE (Peter Zijlstra) V5: - Move init_completion in the init function (Viresh Kumar) - Increment task count in the wakeup function (Viresh Kumar) - Remove rollback at init time (Viresh Kumar) V4: - Wait for completion when stopping (Viresh Kumar) - Check init already done and rollback (Viresh Kumar) V3: - Fixed typos (Viresh Kumar) - Removed extra blank line (Viresh Kumar) - Added full stop (Viresh Kumar) - Fixed Return kerneldoc format (Viresh Kumar) - Fixed multiple kthreads initialization (Viresh Kumar) - Fixed rollbacking the actions in the unregister function (Viresh Kumar) - Make idle injection kthreads name hardcoded - Kthreads are created in the initcall process V2: Fixed checkpatch warnings Signed-off-by: Daniel Lezcano <redacted> --- drivers/powercap/Kconfig | 10 ++ drivers/powercap/Makefile | 1 + drivers/powercap/idle_injection.c | 362 ++++++++++++++++++++++++++++++++++++++ include/linux/idle_injection.h | 29 +++ 4 files changed, 402 insertions(+) create mode 100644 drivers/powercap/idle_injection.c create mode 100644 include/linux/idle_injection.hdiff --git a/drivers/powercap/Kconfig b/drivers/powercap/Kconfig index 85727ef..a767ef2 100644 --- a/drivers/powercap/Kconfig +++ b/drivers/powercap/Kconfig@@ -29,4 +29,14 @@ config INTEL_RAPL controller, CPU core (Power Plance 0), graphics uncore (Power Plane 1), etc. +config IDLE_INJECTION + bool "Idle injection framework" + depends on CPU_IDLE + default n + help + This enables support for the idle injection framework. It + provides a way to force idle periods on a set of specified + CPUs for power capping. Idle period can be injected + synchronously on a set of specified CPUs or alternatively + on a per CPU basis. endifdiff --git a/drivers/powercap/Makefile b/drivers/powercap/Makefile index 0a21ef3..c3bbfee 100644 --- a/drivers/powercap/Makefile +++ b/drivers/powercap/Makefile@@ -1,2 +1,3 @@ obj-$(CONFIG_POWERCAP) += powercap_sys.o obj-$(CONFIG_INTEL_RAPL) += intel_rapl.o +obj-$(CONFIG_IDLE_INJECTION) += idle_injection.odiff --git a/drivers/powercap/idle_injection.c b/drivers/powercap/idle_injection.c new file mode 100644 index 0000000..50ce348 --- /dev/null +++ b/drivers/powercap/idle_injection.c@@ -0,0 +1,362 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright 2018 Linaro Limited + * + * Author: Daniel Lezcano <daniel.lezcano@linaro.org> + * + * The idle injection framework proposes a way to force a cpu to enter + * an idle state during a specified amount of time for a specified + * period. + * + * It relies on the smpboot kthreads which handles, via its main loop, + * the common code for hotplugging and [un]parking. + * + * At init time, all the kthreads are created. + * + * A cpumask is specified as parameter for the idle injection + * registering function. The kthreads will be synchronized regarding + * this cpumask. + * + * The idle + run duration is specified via the helpers and then the + * idle injection can be started at this point. + * + * A kthread will call play_idle() with the specified idle duration + * from above. + * + * A timer is set after waking up all the tasks, to the next idle + * injection cycle. + * + * The task handling the timer interrupt will wakeup all the kthreads + * belonging to the cpumask. + * + * Stopping the idle injection is synchronous, when the function + * returns, there is the guarantee there is no more idle injection + * kthread in activity. + * + * It is up to the user of this framework to provide a lock at an + * upper level to prevent stupid things to happen, like starting while + * we are unregistering. + */The English above and elsewhere needs some polishing IMO, but I can take care of that. :-)quoted
+#define pr_fmt(fmt) "ii_dev: " fmt + +#include <linux/cpu.h> +#include <linux/freezer.h> +#include <linux/hrtimer.h> +#include <linux/kthread.h> +#include <linux/sched.h> +#include <linux/slab.h> +#include <linux/smpboot.h> + +#include <uapi/linux/sched/types.h> + +/** + * struct idle_injection_thread - task on/off switch structure + * @tsk: a pointer to a task_struct injecting the idle cycles + * @should_run: a integer used as a boolean by the smpboot kthread API + */ +struct idle_injection_thread { + struct task_struct *tsk; + int should_run; +};
Besides, if you don't mind, I would shorten idle_injection_ prefix everywhere to idle_inject_ which is shorter and carries the same information IMO.